/*ANIMATE.CSS*/

.animated {

    -webkit-animation-duration: 1s;

    animation-duration: 1s;

    -webkit-animation-fill-mode: both;

    animation-fill-mode: both;

}

.animated.infinite {

    -webkit-animation-iteration-count: infinite;

    animation-iteration-count: infinite;

}

.animated.hinge {

    -webkit-animation-duration: 2s;

    animation-duration: 2s;

}

.animated.bounceIn,

.animated.bounceOut {

    -webkit-animation-duration: 0.75s;

    animation-duration: 0.75s;

}

.animated.flipOutX,

.animated.flipOutY {

    -webkit-animation-duration: 0.75s;

    animation-duration: 0.75s;

}

@-webkit-keyframes bounce {

    0,

    20%,

    53%,

    80%,

    100% {

        -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);

        animation-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-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);

        animation-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-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);

        animation-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-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);

        animation-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-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);

        animation-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-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);

        animation-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;

    transform-origin: center bottom;

}

@-webkit-keyframes flash {

    0,

    50%,

    100% {

        opacity: 1;

    }

    25%,

    75% {

        opacity: 0;

    }

}

@keyframes flash {

    0,

    50%,

    100% {

        opacity: 1;

    }

    25%,

    75% {

        opacity: 0;

    }

}

.flash {

    -webkit-animation-name: flash;

    animation-name: flash;

}

@-webkit-keyframes pulse {

    0 {

        -webkit-transform: scale3d(1, 1, 1);

        transform: scale3d(1, 1, 1);

    }

    50% {

        -webkit-transform: scale3d(1.05, 1.05, 1.05);

        transform: scale3d(1.05, 1.05, 1.05);

    }

    100% {

        -webkit-transform: scale3d(1, 1, 1);

        transform: scale3d(1, 1, 1);

    }

}

@keyframes pulse {

    0 {

        -webkit-transform: scale3d(1, 1, 1);

        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, 0);

        transform: rotate3d(0, 0, 1, 0);

    }

}

@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, 0);

        transform: rotate3d(0, 0, 1, 0);

    }

}

.swing {

    -webkit-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;

}

@-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 jello {

    11.1% {

        -webkit-transform: none;

        transform: none;

    }

    22.2% {

        -webkit-transform: skewX(-12.5deg) skewY(-12.5deg);

        transform: skewX(-12.5deg) skewY(-12.5deg);

    }

    33.3% {

        -webkit-transform: skewX(6.25deg) skewY(6.25deg);

        transform: skewX(6.25deg) skewY(6.25deg);

    }

    44.4% {

        -webkit-transform: skewX(-3.125deg) skewY(-3.125deg);

        transform: skewX(-3.125deg) skewY(-3.125deg);

    }

    55.5% {

        -webkit-transform: skewX(1.5625deg) skewY(1.5625deg);

        transform: skewX(1.5625deg) skewY(1.5625deg);

    }

    66.6% {

        -webkit-transform: skewX(-0.78125deg) skewY(-0.78125deg);

        transform: skewX(-0.78125deg) skewY(-0.78125deg);

    }

    77.7% {

        -webkit-transform: skewX(0.390625deg) skewY(0.390625deg);

        transform: skewX(0.390625deg) skewY(0.390625deg);

    }

    88.8% {

        -webkit-transform: skewX(-0.1953125deg) skewY(-0.1953125deg);

        transform: skewX(-0.1953125deg) skewY(-0.1953125deg);

    }

    100% {

        -webkit-transform: none;

        transform: none;

    }

}

@keyframes jello {

    11.1% {

        -webkit-transform: none;

        transform: none;

    }

    22.2% {

        -webkit-transform: skewX(-12.5deg) skewY(-12.5deg);

        transform: skewX(-12.5deg) skewY(-12.5deg);

    }

    33.3% {

        -webkit-transform: skewX(6.25deg) skewY(6.25deg);

        transform: skewX(6.25deg) skewY(6.25deg);

    }

    44.4% {

        -webkit-transform: skewX(-3.125deg) skewY(-3.125deg);

        transform: skewX(-3.125deg) skewY(-3.125deg);

    }

    55.5% {

        -webkit-transform: skewX(1.5625deg) skewY(1.5625deg);

        transform: skewX(1.5625deg) skewY(1.5625deg);

    }

    66.6% {

        -webkit-transform: skewX(-0.78125deg) skewY(-0.78125deg);

        transform: skewX(-0.78125deg) skewY(-0.78125deg);

    }

    77.7% {

        -webkit-transform: skewX(0.390625deg) skewY(0.390625deg);

        transform: skewX(0.390625deg) skewY(0.390625deg);

    }

    88.8% {

        -webkit-transform: skewX(-0.1953125deg) skewY(-0.1953125deg);

        transform: skewX(-0.1953125deg) skewY(-0.1953125deg);

    }

    100% {

        -webkit-transform: none;

        transform: none;

    }

}

.jello {

    -webkit-animation-name: jello;

    animation-name: jello;

    -webkit-transform-origin: center;

    transform-origin: center;

}

@-webkit-keyframes bounceIn {

    0,

    20%,

    40%,

    60%,

    80%,

    100% {

        -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);

        animation-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-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);

        animation-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-keyframes bounceInDown {

    0,

    60%,

    75%,

    90%,

    100% {

        -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);

        animation-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-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);

        animation-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-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);

        animation-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-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);

        animation-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-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);

        animation-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-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);

        animation-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-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);

        animation-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-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);

        animation-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 bounceOut {

    20% {

        -webkit-transform: scale3d(0.9, 0.9, 0.9);

        transform: scale3d(0.9, 0.9, 0.9);

    }

    50%,

    55% {

        opacity: 1;

        -webkit-transform: scale3d(1.1, 1.1, 1.1);

        transform: scale3d(1.1, 1.1, 1.1);

    }

    100% {

        opacity: 0;

        -webkit-transform: scale3d(0.3, 0.3, 0.3);

        transform: scale3d(0.3, 0.3, 0.3);

    }

}

@keyframes bounceOut {

    20% {

        -webkit-transform: scale3d(0.9, 0.9, 0.9);

        transform: scale3d(0.9, 0.9, 0.9);

    }

    50%,

    55% {

        opacity: 1;

        -webkit-transform: scale3d(1.1, 1.1, 1.1);

        transform: scale3d(1.1, 1.1, 1.1);

    }

    100% {

        opacity: 0;

        -webkit-transform: scale3d(0.3, 0.3, 0.3);

        transform: scale3d(0.3, 0.3, 0.3);

    }

}

.bounceOut {

    -webkit-animation-name: bounceOut;

    animation-name: bounceOut;

}

@-webkit-keyframes bounceOutDown {

    20% {

        -webkit-transform: translate3d(0, 10px, 0);

        transform: translate3d(0, 10px, 0);

    }

    40%,

    45% {

        opacity: 1;

        -webkit-transform: translate3d(0, -20px, 0);

        transform: translate3d(0, -20px, 0);

    }

    100% {

        opacity: 0;

        -webkit-transform: translate3d(0, 2000px, 0);

        transform: translate3d(0, 2000px, 0);

    }

}

@keyframes bounceOutDown {

    20% {

        -webkit-transform: translate3d(0, 10px, 0);

        transform: translate3d(0, 10px, 0);

    }

    40%,

    45% {

        opacity: 1;

        -webkit-transform: translate3d(0, -20px, 0);

        transform: translate3d(0, -20px, 0);

    }

    100% {

        opacity: 0;

        -webkit-transform: translate3d(0, 2000px, 0);

        transform: translate3d(0, 2000px, 0);

    }

}

.bounceOutDown {

    -webkit-animation-name: bounceOutDown;

    animation-name: bounceOutDown;

}

@-webkit-keyframes bounceOutLeft {

    20% {

        opacity: 1;

        -webkit-transform: translate3d(20px, 0, 0);

        transform: translate3d(20px, 0, 0);

    }

    100% {

        opacity: 0;

        -webkit-transform: translate3d(-2000px, 0, 0);

        transform: translate3d(-2000px, 0, 0);

    }

}

@keyframes bounceOutLeft {

    20% {

        opacity: 1;

        -webkit-transform: translate3d(20px, 0, 0);

        transform: translate3d(20px, 0, 0);

    }

    100% {

        opacity: 0;

        -webkit-transform: translate3d(-2000px, 0, 0);

        transform: translate3d(-2000px, 0, 0);

    }

}

.bounceOutLeft {

    -webkit-animation-name: bounceOutLeft;

    animation-name: bounceOutLeft;

}

@-webkit-keyframes bounceOutRight {

    20% {

        opacity: 1;

        -webkit-transform: translate3d(-20px, 0, 0);

        transform: translate3d(-20px, 0, 0);

    }

    100% {

        opacity: 0;

        -webkit-transform: translate3d(2000px, 0, 0);

        transform: translate3d(2000px, 0, 0);

    }

}

@keyframes bounceOutRight {

    20% {

        opacity: 1;

        -webkit-transform: translate3d(-20px, 0, 0);

        transform: translate3d(-20px, 0, 0);

    }

    100% {

        opacity: 0;

        -webkit-transform: translate3d(2000px, 0, 0);

        transform: translate3d(2000px, 0, 0);

    }

}

.bounceOutRight {

    -webkit-animation-name: bounceOutRight;

    animation-name: bounceOutRight;

}

@-webkit-keyframes bounceOutUp {

    20% {

        -webkit-transform: translate3d(0, -10px, 0);

        transform: translate3d(0, -10px, 0);

    }

    40%,

    45% {

        opacity: 1;

        -webkit-transform: translate3d(0, 20px, 0);

        transform: translate3d(0, 20px, 0);

    }

    100% {

        opacity: 0;

        -webkit-transform: translate3d(0, -2000px, 0);

        transform: translate3d(0, -2000px, 0);

    }

}

@keyframes bounceOutUp {

    20% {

        -webkit-transform: translate3d(0, -10px, 0);

        transform: translate3d(0, -10px, 0);

    }

    40%,

    45% {

        opacity: 1;

        -webkit-transform: translate3d(0, 20px, 0);

        transform: translate3d(0, 20px, 0);

    }

    100% {

        opacity: 0;

        -webkit-transform: translate3d(0, -2000px, 0);

        transform: translate3d(0, -2000px, 0);

    }

}

.bounceOutUp {

    -webkit-animation-name: bounceOutUp;

    animation-name: bounceOutUp;

}

@-webkit-keyframes fadeIn {

    0 {

        opacity: 0;

    }

    100% {

        opacity: 1;

    }

}

@keyframes fadeIn {

    0 {

        opacity: 0;

    }

    100% {

        opacity: 1;

    }

}

.fadeIn {

    -webkit-animation-name: fadeIn;

    animation-name: fadeIn;

}

@-webkit-keyframes fadeInDown {

    0 {

        opacity: 0;

        -webkit-transform: translate3d(0, -100%, 0);

        transform: translate3d(0, -100%, 0);

    }

    100% {

        opacity: 1;

        -webkit-transform: none;

        transform: none;

    }

}

@keyframes fadeInDown {

    0 {

        opacity: 0;

        -webkit-transform: translate3d(0, -100%, 0);

        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 fadeOut {

    0 {

        opacity: 1;

    }

    100% {

        opacity: 0;

    }

}

@keyframes fadeOut {

    0 {

        opacity: 1;

    }

    100% {

        opacity: 0;

    }

}

.fadeOut {

    -webkit-animation-name: fadeOut;

    animation-name: fadeOut;

}

@-webkit-keyframes fadeOutDown {

    0 {

        opacity: 1;

    }

    100% {

        opacity: 0;

        -webkit-transform: translate3d(0, 100%, 0);

        transform: translate3d(0, 100%, 0);

    }

}

@keyframes fadeOutDown {

    0 {

        opacity: 1;

    }

    100% {

        opacity: 0;

        -webkit-transform: translate3d(0, 100%, 0);

        transform: translate3d(0, 100%, 0);

    }

}

.fadeOutDown {

    -webkit-animation-name: fadeOutDown;

    animation-name: fadeOutDown;

}

@-webkit-keyframes fadeOutDownBig {

    0 {

        opacity: 1;

    }

    100% {

        opacity: 0;

        -webkit-transform: translate3d(0, 2000px, 0);

        transform: translate3d(0, 2000px, 0);

    }

}

@keyframes fadeOutDownBig {

    0 {

        opacity: 1;

    }

    100% {

        opacity: 0;

        -webkit-transform: translate3d(0, 2000px, 0);

        transform: translate3d(0, 2000px, 0);

    }

}

.fadeOutDownBig {

    -webkit-animation-name: fadeOutDownBig;

    animation-name: fadeOutDownBig;

}

@-webkit-keyframes fadeOutLeft {

    0 {

        opacity: 1;

    }

    100% {

        opacity: 0;

        -webkit-transform: translate3d(-100%, 0, 0);

        transform: translate3d(-100%, 0, 0);

    }

}

@keyframes fadeOutLeft {

    0 {

        opacity: 1;

    }

    100% {

        opacity: 0;

        -webkit-transform: translate3d(-100%, 0, 0);

        transform: translate3d(-100%, 0, 0);

    }

}

.fadeOutLeft {

    -webkit-animation-name: fadeOutLeft;

    animation-name: fadeOutLeft;

}

@-webkit-keyframes fadeOutLeftBig {

    0 {

        opacity: 1;

    }

    100% {

        opacity: 0;

        -webkit-transform: translate3d(-2000px, 0, 0);

        transform: translate3d(-2000px, 0, 0);

    }

}

@keyframes fadeOutLeftBig {

    0 {

        opacity: 1;

    }

    100% {

        opacity: 0;

        -webkit-transform: translate3d(-2000px, 0, 0);

        transform: translate3d(-2000px, 0, 0);

    }

}

.fadeOutLeftBig {

    -webkit-animation-name: fadeOutLeftBig;

    animation-name: fadeOutLeftBig;

}

@-webkit-keyframes fadeOutRight {

    0 {

        opacity: 1;

    }

    100% {

        opacity: 0;

        -webkit-transform: translate3d(100%, 0, 0);

        transform: translate3d(100%, 0, 0);

    }

}

@keyframes fadeOutRight {

    0 {

        opacity: 1;

    }

    100% {

        opacity: 0;

        -webkit-transform: translate3d(100%, 0, 0);

        transform: translate3d(100%, 0, 0);

    }

}

.fadeOutRight {

    -webkit-animation-name: fadeOutRight;

    animation-name: fadeOutRight;

}

@-webkit-keyframes fadeOutRightBig {

    0 {

        opacity: 1;

    }

    100% {

        opacity: 0;

        -webkit-transform: translate3d(2000px, 0, 0);

        transform: translate3d(2000px, 0, 0);

    }

}

@keyframes fadeOutRightBig {

    0 {

        opacity: 1;

    }

    100% {

        opacity: 0;

        -webkit-transform: translate3d(2000px, 0, 0);

        transform: translate3d(2000px, 0, 0);

    }

}

.fadeOutRightBig {

    -webkit-animation-name: fadeOutRightBig;

    animation-name: fadeOutRightBig;

}

@-webkit-keyframes fadeOutUp {

    0 {

        opacity: 1;

    }

    100% {

        opacity: 0;

        -webkit-transform: translate3d(0, -100%, 0);

        transform: translate3d(0, -100%, 0);

    }

}

@keyframes fadeOutUp {

    0 {

        opacity: 1;

    }

    100% {

        opacity: 0;

        -webkit-transform: translate3d(0, -100%, 0);

        transform: translate3d(0, -100%, 0);

    }

}

.fadeOutUp {

    -webkit-animation-name: fadeOutUp;

    animation-name: fadeOutUp;

}

@-webkit-keyframes fadeOutUpBig {

    0 {

        opacity: 1;

    }

    100% {

        opacity: 0;

        -webkit-transform: translate3d(0, -2000px, 0);

        transform: translate3d(0, -2000px, 0);

    }

}

@keyframes fadeOutUpBig {

    0 {

        opacity: 1;

    }

    100% {

        opacity: 0;

        -webkit-transform: translate3d(0, -2000px, 0);

        transform: translate3d(0, -2000px, 0);

    }

}

.fadeOutUpBig {

    -webkit-animation-name: fadeOutUpBig;

    animation-name: fadeOutUpBig;

}

@-webkit-keyframes flip {

    0 {

        -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -360deg);

        transform: perspective(400px) rotate3d(0, 1, 0, -360deg);

        -webkit-animation-timing-function: ease-out;

        animation-timing-function: ease-out;

    }

    40% {

        -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);

        transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);

        -webkit-animation-timing-function: ease-out;

        animation-timing-function: ease-out;

    }

    50% {

        -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);

        transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);

        -webkit-animation-timing-function: ease-in;

        animation-timing-function: ease-in;

    }

    80% {

        -webkit-transform: perspective(400px) scale3d(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-animation-timing-function: ease-in;

        animation-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-animation-timing-function: ease-in;

        animation-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-animation-timing-function: ease-in;

        animation-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-animation-timing-function: ease-in;

        animation-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-animation-timing-function: ease-in;

        animation-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-animation-timing-function: ease-in;

        animation-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-animation-timing-function: ease-in;

        animation-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-animation-timing-function: ease-in;

        animation-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 flipOutX {

    0 {

        -webkit-transform: perspective(400px);

        transform: perspective(400px);

    }

    30% {

        -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);

        transform: perspective(400px) rotate3d(1, 0, 0, -20deg);

        opacity: 1;

    }

    100% {

        -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);

        transform: perspective(400px) rotate3d(1, 0, 0, 90deg);

        opacity: 0;

    }

}

@keyframes flipOutX {

    0 {

        -webkit-transform: perspective(400px);

        transform: perspective(400px);

    }

    30% {

        -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);

        transform: perspective(400px) rotate3d(1, 0, 0, -20deg);

        opacity: 1;

    }

    100% {

        -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);

        transform: perspective(400px) rotate3d(1, 0, 0, 90deg);

        opacity: 0;

    }

}

.flipOutX {

    -webkit-animation-name: flipOutX;

    animation-name: flipOutX;

    -webkit-backface-visibility: visible !important;

    backface-visibility: visible !important;

}

@-webkit-keyframes flipOutY {

    0 {

        -webkit-transform: perspective(400px);

        transform: perspective(400px);

    }

    30% {

        -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -15deg);

        transform: perspective(400px) rotate3d(0, 1, 0, -15deg);

        opacity: 1;

    }

    100% {

        -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);

        transform: perspective(400px) rotate3d(0, 1, 0, 90deg);

        opacity: 0;

    }

}

@keyframes flipOutY {

    0 {

        -webkit-transform: perspective(400px);

        transform: perspective(400px);

    }

    30% {

        -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -15deg);

        transform: perspective(400px) rotate3d(0, 1, 0, -15deg);

        opacity: 1;

    }

    100% {

        -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);

        transform: perspective(400px) rotate3d(0, 1, 0, 90deg);

        opacity: 0;

    }

}

.flipOutY {

    -webkit-backface-visibility: visible !important;

    backface-visibility: visible !important;

    -webkit-animation-name: flipOutY;

    animation-name: flipOutY;

}

@-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 lightSpeedOut {

    0 {

        opacity: 1;

    }

    100% {

        -webkit-transform: translate3d(100%, 0, 0) skewX(30deg);

        transform: translate3d(100%, 0, 0) skewX(30deg);

        opacity: 0;

    }

}

@keyframes lightSpeedOut {

    0 {

        opacity: 1;

    }

    100% {

        -webkit-transform: translate3d(100%, 0, 0) skewX(30deg);

        transform: translate3d(100%, 0, 0) skewX(30deg);

        opacity: 0;

    }

}

.lightSpeedOut {

    -webkit-animation-name: lightSpeedOut;

    animation-name: lightSpeedOut;

    -webkit-animation-timing-function: ease-in;

    animation-timing-function: ease-in;

}

@-webkit-keyframes rotateIn {

    0 {

        -webkit-transform-origin: center;

        transform-origin: center;

        -webkit-transform: rotate3d(0, 0, 1, -200deg);

        transform: rotate3d(0, 0, 1, -200deg);

        opacity: 0;

    }

    100% {

        -webkit-transform-origin: center;

        transform-origin: center;

        -webkit-transform: none;

        transform: none;

        opacity: 1;

    }

}

@keyframes rotateIn {

    0 {

        -webkit-transform-origin: center;

        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 rotateOut {

    0 {

        -webkit-transform-origin: center;

        transform-origin: center;

        opacity: 1;

    }

    100% {

        -webkit-transform-origin: center;

        transform-origin: center;

        -webkit-transform: rotate3d(0, 0, 1, 200deg);

        transform: rotate3d(0, 0, 1, 200deg);

        opacity: 0;

    }

}

@keyframes rotateOut {

    0 {

        -webkit-transform-origin: center;

        transform-origin: center;

        opacity: 1;

    }

    100% {

        -webkit-transform-origin: center;

        transform-origin: center;

        -webkit-transform: rotate3d(0, 0, 1, 200deg);

        transform: rotate3d(0, 0, 1, 200deg);

        opacity: 0;

    }

}

.rotateOut {

    -webkit-animation-name: rotateOut;

    animation-name: rotateOut;

}

@-webkit-keyframes rotateOutDownLeft {

    0 {

        -webkit-transform-origin: left bottom;

        transform-origin: left bottom;

        opacity: 1;

    }

    100% {

        -webkit-transform-origin: left bottom;

        transform-origin: left bottom;

        -webkit-transform: rotate3d(0, 0, 1, 45deg);

        transform: rotate3d(0, 0, 1, 45deg);

        opacity: 0;

    }

}

@keyframes rotateOutDownLeft {

    0 {

        -webkit-transform-origin: left bottom;

        transform-origin: left bottom;

        opacity: 1;

    }

    100% {

        -webkit-transform-origin: left bottom;

        transform-origin: left bottom;

        -webkit-transform: rotate3d(0, 0, 1, 45deg);

        transform: rotate3d(0, 0, 1, 45deg);

        opacity: 0;

    }

}

.rotateOutDownLeft {

    -webkit-animation-name: rotateOutDownLeft;

    animation-name: rotateOutDownLeft;

}

@-webkit-keyframes rotateOutDownRight {

    0 {

        -webkit-transform-origin: right bottom;

        transform-origin: right bottom;

        opacity: 1;

    }

    100% {

        -webkit-transform-origin: right bottom;

        transform-origin: right bottom;

        -webkit-transform: rotate3d(0, 0, 1, -45deg);

        transform: rotate3d(0, 0, 1, -45deg);

        opacity: 0;

    }

}

@keyframes rotateOutDownRight {

    0 {

        -webkit-transform-origin: right bottom;

        transform-origin: right bottom;

        opacity: 1;

    }

    100% {

        -webkit-transform-origin: right bottom;

        transform-origin: right bottom;

        -webkit-transform: rotate3d(0, 0, 1, -45deg);

        transform: rotate3d(0, 0, 1, -45deg);

        opacity: 0;

    }

}

.rotateOutDownRight {

    -webkit-animation-name: rotateOutDownRight;

    animation-name: rotateOutDownRight;

}

@-webkit-keyframes rotateOutUpLeft {

    0 {

        -webkit-transform-origin: left bottom;

        transform-origin: left bottom;

        opacity: 1;

    }

    100% {

        -webkit-transform-origin: left bottom;

        transform-origin: left bottom;

        -webkit-transform: rotate3d(0, 0, 1, -45deg);

        transform: rotate3d(0, 0, 1, -45deg);

        opacity: 0;

    }

}

@keyframes rotateOutUpLeft {

    0 {

        -webkit-transform-origin: left bottom;

        transform-origin: left bottom;

        opacity: 1;

    }

    100% {

        -webkit-transform-origin: left bottom;

        transform-origin: left bottom;

        -webkit-transform: rotate3d(0, 0, 1, -45deg);

        transform: rotate3d(0, 0, 1, -45deg);

        opacity: 0;

    }

}

.rotateOutUpLeft {

    -webkit-animation-name: rotateOutUpLeft;

    animation-name: rotateOutUpLeft;

}

@-webkit-keyframes rotateOutUpRight {

    0 {

        -webkit-transform-origin: right bottom;

        transform-origin: right bottom;

        opacity: 1;

    }

    100% {

        -webkit-transform-origin: right bottom;

        transform-origin: right bottom;

        -webkit-transform: rotate3d(0, 0, 1, 90deg);

        transform: rotate3d(0, 0, 1, 90deg);

        opacity: 0;

    }

}

@keyframes rotateOutUpRight {

    0 {

        -webkit-transform-origin: right bottom;

        transform-origin: right bottom;

        opacity: 1;

    }

    100% {

        -webkit-transform-origin: right bottom;

        transform-origin: right bottom;

        -webkit-transform: rotate3d(0, 0, 1, 90deg);

        transform: rotate3d(0, 0, 1, 90deg);

        opacity: 0;

    }

}

.rotateOutUpRight {

    -webkit-animation-name: rotateOutUpRight;

    animation-name: rotateOutUpRight;

}

@-webkit-keyframes hinge {

    0 {

        -webkit-transform-origin: top left;

        transform-origin: top left;

        -webkit-animation-timing-function: ease-in-out;

        animation-timing-function: ease-in-out;

    }

    20%,

    60% {

        -webkit-transform: rotate3d(0, 0, 1, 80deg);

        transform: rotate3d(0, 0, 1, 80deg);

        -webkit-transform-origin: top left;

        transform-origin: top left;

        -webkit-animation-timing-function: ease-in-out;

        animation-timing-function: ease-in-out;

    }

    40%,

    80% {

        -webkit-transform: rotate3d(0, 0, 1, 60deg);

        transform: rotate3d(0, 0, 1, 60deg);

        -webkit-transform-origin: top left;

        transform-origin: top left;

        -webkit-animation-timing-function: ease-in-out;

        animation-timing-function: ease-in-out;

        opacity: 1;

    }

    100% {

        -webkit-transform: translate3d(0, 700px, 0);

        transform: translate3d(0, 700px, 0);

        opacity: 0;

    }

}

@keyframes hinge {

    0 {

        -webkit-transform-origin: top left;

        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;

}

@-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;

}

@-webkit-keyframes rollOut {

    0 {

        opacity: 1;

    }

    100% {

        opacity: 0;

        -webkit-transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);

        transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);

    }

}

@keyframes rollOut {

    0 {

        opacity: 1;

    }

    100% {

        opacity: 0;

        -webkit-transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);

        transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);

    }

}

.rollOut {

    -webkit-animation-name: rollOut;

    animation-name: rollOut;

}

@-webkit-keyframes zoomIn {

    0 {

        opacity: 0;

        -webkit-transform: scale3d(0.3, 0.3, 0.3);

        transform: scale3d(0.3, 0.3, 0.3);

    }

    50% {

        opacity: 1;

    }

}

@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 zoomOut {

    0 {

        opacity: 1;

    }

    50% {

        opacity: 0;

        -webkit-transform: scale3d(0.3, 0.3, 0.3);

        transform: scale3d(0.3, 0.3, 0.3);

    }

    100% {

        opacity: 0;

    }

}

@keyframes zoomOut {

    0 {

        opacity: 1;

    }

    50% {

        opacity: 0;

        -webkit-transform: scale3d(0.3, 0.3, 0.3);

        transform: scale3d(0.3, 0.3, 0.3);

    }

    100% {

        opacity: 0;

    }

}

.zoomOut {

    -webkit-animation-name: zoomOut;

    animation-name: zoomOut;

}

@-webkit-keyframes zoomOutDown {

    40% {

        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.55, 0.055, 0.675, 0.19);

        animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);

    }

    100% {

        opacity: 0;

        -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);

        transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);

        -webkit-transform-origin: center bottom;

        transform-origin: center bottom;

        -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);

        animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);

    }

}

@keyframes zoomOutDown {

    40% {

        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.55, 0.055, 0.675, 0.19);

        animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);

    }

    100% {

        opacity: 0;

        -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);

        transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);

        -webkit-transform-origin: center bottom;

        transform-origin: center bottom;

        -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);

        animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);

    }

}

.zoomOutDown {

    -webkit-animation-name: zoomOutDown;

    animation-name: zoomOutDown;

}

@-webkit-keyframes zoomOutLeft {

    40% {

        opacity: 1;

        -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);

        transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);

    }

    100% {

        opacity: 0;

        -webkit-transform: scale(0.1) translate3d(-2000px, 0, 0);

        transform: scale(0.1) translate3d(-2000px, 0, 0);

        -webkit-transform-origin: left center;

        transform-origin: left center;

    }

}

@keyframes zoomOutLeft {

    40% {

        opacity: 1;

        -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);

        transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);

    }

    100% {

        opacity: 0;

        -webkit-transform: scale(0.1) translate3d(-2000px, 0, 0);

        transform: scale(0.1) translate3d(-2000px, 0, 0);

        -webkit-transform-origin: left center;

        transform-origin: left center;

    }

}

.zoomOutLeft {

    -webkit-animation-name: zoomOutLeft;

    animation-name: zoomOutLeft;

}

@-webkit-keyframes zoomOutRight {

    40% {

        opacity: 1;

        -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);

        transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);

    }

    100% {

        opacity: 0;

        -webkit-transform: scale(0.1) translate3d(2000px, 0, 0);

        transform: scale(0.1) translate3d(2000px, 0, 0);

        -webkit-transform-origin: right center;

        transform-origin: right center;

    }

}

@keyframes zoomOutRight {

    40% {

        opacity: 1;

        -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);

        transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);

    }

    100% {

        opacity: 0;

        -webkit-transform: scale(0.1) translate3d(2000px, 0, 0);

        transform: scale(0.1) translate3d(2000px, 0, 0);

        -webkit-transform-origin: right center;

        transform-origin: right center;

    }

}

.zoomOutRight {

    -webkit-animation-name: zoomOutRight;

    animation-name: zoomOutRight;

}

@-webkit-keyframes zoomOutUp {

    40% {

        opacity: 1;

        -webkit-transform: scale3d(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.55, 0.055, 0.675, 0.19);

        animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);

    }

    100% {

        opacity: 0;

        -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);

        transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);

        -webkit-transform-origin: center bottom;

        transform-origin: center bottom;

        -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);

        animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);

    }

}

@keyframes zoomOutUp {

    40% {

        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.55, 0.055, 0.675, 0.19);

        animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);

    }

    100% {

        opacity: 0;

        -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);

        transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);

        -webkit-transform-origin: center bottom;

        transform-origin: center bottom;

        -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);

        animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);

    }

}

.zoomOutUp {

    -webkit-animation-name: zoomOutUp;

    animation-name: zoomOutUp;

}

@-webkit-keyframes slideInDown {

    0 {

        -webkit-transform: translate3d(0, -100%, 0);

        transform: translate3d(0, -100%, 0);

        visibility: visible;

    }

    100% {

        -webkit-transform: translate3d(0, 0, 0);

        transform: translate3d(0, 0, 0);

    }

}

@keyframes slideInDown {

    0 {

        -webkit-transform: translate3d(0, -100%, 0);

        transform: translate3d(0, -100%, 0);

        visibility: visible;

    }

    100% {

        -webkit-transform: translate3d(0, 0, 0);

        transform: translate3d(0, 0, 0);

    }

}

.slideInDown {

    -webkit-animation-name: slideInDown;

    animation-name: slideInDown;

}

@-webkit-keyframes slideInLeft {

    0 {

        -webkit-transform: translate3d(-100%, 0, 0);

        transform: translate3d(-100%, 0, 0);

        visibility: visible;

    }

    100% {

        -webkit-transform: translate3d(0, 0, 0);

        transform: translate3d(0, 0, 0);

    }

}

@keyframes slideInLeft {

    0 {

        -webkit-transform: translate3d(-100%, 0, 0);

        transform: translate3d(-100%, 0, 0);

        visibility: visible;

    }

    100% {

        -webkit-transform: translate3d(0, 0, 0);

        transform: translate3d(0, 0, 0);

    }

}

.slideInLeft {

    -webkit-animation-name: slideInLeft;

    animation-name: slideInLeft;

}

@-webkit-keyframes slideInRight {

    0 {

        -webkit-transform: translate3d(100%, 0, 0);

        transform: translate3d(100%, 0, 0);

        visibility: visible;

    }

    100% {

        -webkit-transform: translate3d(0, 0, 0);

        transform: translate3d(0, 0, 0);

    }

}

@keyframes slideInRight {

    0 {

        -webkit-transform: translate3d(100%, 0, 0);

        transform: translate3d(100%, 0, 0);

        visibility: visible;

    }

    100% {

        -webkit-transform: translate3d(0, 0, 0);

        transform: translate3d(0, 0, 0);

    }

}

.slideInRight {

    -webkit-animation-name: slideInRight;

    animation-name: slideInRight;

}

@-webkit-keyframes slideInUp {

    0 {

        -webkit-transform: translate3d(0, 100%, 0);

        transform: translate3d(0, 100%, 0);

        visibility: visible;

    }

    100% {

        -webkit-transform: translate3d(0, 0, 0);

        transform: translate3d(0, 0, 0);

    }

}

@keyframes slideInUp {

    0 {

        -webkit-transform: translate3d(0, 100%, 0);

        transform: translate3d(0, 100%, 0);

        visibility: visible;

    }

    100% {

        -webkit-transform: translate3d(0, 0, 0);

        transform: translate3d(0, 0, 0);

    }

}

.slideInUp {

    -webkit-animation-name: slideInUp;

    animation-name: slideInUp;

}

@-webkit-keyframes slideOutDown {

    0 {

        -webkit-transform: translate3d(0, 0, 0);

        transform: translate3d(0, 0, 0);

    }

    100% {

        visibility: hidden;

        -webkit-transform: translate3d(0, 100%, 0);

        transform: translate3d(0, 100%, 0);

    }

}

@keyframes slideOutDown {

    0 {

        -webkit-transform: translate3d(0, 0, 0);

        transform: translate3d(0, 0, 0);

    }

    100% {

        visibility: hidden;

        -webkit-transform: translate3d(0, 100%, 0);

        transform: translate3d(0, 100%, 0);

    }

}

.slideOutDown {

    -webkit-animation-name: slideOutDown;

    animation-name: slideOutDown;

}

@-webkit-keyframes slideOutLeft {

    0 {

        -webkit-transform: translate3d(0, 0, 0);

        transform: translate3d(0, 0, 0);

    }

    100% {

        visibility: hidden;

        -webkit-transform: translate3d(-100%, 0, 0);

        transform: translate3d(-100%, 0, 0);

    }

}

@keyframes slideOutLeft {

    0 {

        -webkit-transform: translate3d(0, 0, 0);

        transform: translate3d(0, 0, 0);

    }

    100% {

        visibility: hidden;

        -webkit-transform: translate3d(-100%, 0, 0);

        transform: translate3d(-100%, 0, 0);

    }

}

.slideOutLeft {

    -webkit-animation-name: slideOutLeft;

    animation-name: slideOutLeft;

}

@-webkit-keyframes slideOutRight {

    0 {

        -webkit-transform: translate3d(0, 0, 0);

        transform: translate3d(0, 0, 0);

    }

    100% {

        visibility: hidden;

        -webkit-transform: translate3d(100%, 0, 0);

        transform: translate3d(100%, 0, 0);

    }

}

@keyframes slideOutRight {

    0 {

        -webkit-transform: translate3d(0, 0, 0);

        transform: translate3d(0, 0, 0);

    }

    100% {

        visibility: hidden;

        -webkit-transform: translate3d(100%, 0, 0);

        transform: translate3d(100%, 0, 0);

    }

}

.slideOutRight {

    -webkit-animation-name: slideOutRight;

    animation-name: slideOutRight;

}

@-webkit-keyframes slideOutUp {

    0 {

        -webkit-transform: translate3d(0, 0, 0);

        transform: translate3d(0, 0, 0);

    }

    100% {

        visibility: hidden;

        -webkit-transform: translate3d(0, -100%, 0);

        transform: translate3d(0, -100%, 0);

    }

}

@keyframes slideOutUp {

    0 {

        -webkit-transform: translate3d(0, 0, 0);

        transform: translate3d(0, 0, 0);

    }

    100% {

        visibility: hidden;

        -webkit-transform: translate3d(0, -100%, 0);

        transform: translate3d(0, -100%, 0);

    }

}

.slideOutUp {

    -webkit-animation-name: slideOutUp;

    animation-name: slideOutUp;

}





/*BOOTSTRAP.MIN.CSS*/

/*!

 * Bootstrap v3.3.4 (http://getbootstrap.com)

 * Copyright 2011-2015 Twitter, Inc.

 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)

 *//*! normalize.css v3.0.2 | MIT License | git.io/normalize */

html {

    font-family: sans-serif;

    -webkit-text-size-adjust: 100%;

    -ms-text-size-adjust: 100%;

}

body {

    margin: 0;

}

article,

aside,

details,

figcaption,

figure,

footer,

header,

hgroup,

main,

menu,

nav,

section,

summary {

    display: block;

}

audio,

canvas,

progress,

video {

    display: inline-block;

    vertical-align: baseline;

}

audio:not([controls]) {

    display: none;

    height: 0;

}

[hidden],

template {

    display: none;

}

a {

    background-color: transparent;

}

a:active,

a:hover {

    outline: 0;

}

abbr[title] {

    border-bottom: 1px dotted;

}

b,

strong {

    font-weight: 700;

}

dfn {

    font-style: italic;

}

h1 {

    margin: 0.67em 0;

    font-size: 2em;

}

mark {

    color: #000;

    background: #ff0;

}

small {

    font-size: 80%;

}

sub,

sup {

    position: relative;

    font-size: 75%;

    line-height: 0;

    vertical-align: baseline;

}

sup {

    top: -0.5em;

}

sub {

    bottom: -0.25em;

}

img {

    border: 0;

}

svg:not(:root) {

    overflow: hidden;

}

figure {

    margin: 1em 40px;

}

hr {

    height: 0;

    -webkit-box-sizing: content-box;

    -moz-box-sizing: content-box;

    box-sizing: content-box;

}

pre {

    overflow: auto;

}

code,

kbd,

pre,

samp {

    font-family: monospace, monospace;

    font-size: 1em;

}

button,

input,

optgroup,

select,

textarea {

    margin: 0;

    font: inherit;

    color: inherit;

}

button {

    overflow: visible;

}

button,

select {

    text-transform: none;

}

button,

html input[type="button"],

input[type="reset"],

input[type="submit"] {

    -webkit-appearance: button;

    cursor: pointer;

}

button[disabled],

html input[disabled] {

    cursor: default;

}

button::-moz-focus-inner,

input::-moz-focus-inner {

    padding: 0;

    border: 0;

}

input {

    line-height: normal;

}

input[type="checkbox"],

input[type="radio"] {

    -webkit-box-sizing: border-box;

    -moz-box-sizing: border-box;

    box-sizing: border-box;

    padding: 0;

}

input[type="number"]::-webkit-inner-spin-button,

input[type="number"]::-webkit-outer-spin-button {

    height: auto;

}

input[type="search"] {

    -webkit-box-sizing: content-box;

    -moz-box-sizing: content-box;

    box-sizing: content-box;

    -webkit-appearance: textfield;

}

input[type="search"]::-webkit-search-cancel-button,

input[type="search"]::-webkit-search-decoration {

    -webkit-appearance: none;

}

fieldset {

    padding: 0.35em 0.625em 0.75em;

    margin: 0 2px;

    border: 1px solid silver;

}

legend {

    padding: 0;

    border: 0;

}

textarea {

    overflow: auto;

}

optgroup {

    font-weight: 700;

}

table {

    border-spacing: 0;

    border-collapse: collapse;

}

td,

th {

    padding: 0;

} /*! Source: https://github.com/h5bp/html5-boilerplate/blob/master/src/css/main.css */

@media print {

    *,

    :after,

    :before {

        color: #000 !important;

        text-shadow: none !important;

        background: 0 0 !important;

        -webkit-box-shadow: none !important;

        box-shadow: none !important;

    }

    a,

    a:visited {

        text-decoration: underline;

    }

    a[href]:after {

        content: " (" attr(href) ")";

    }

    abbr[title]:after {

        content: " (" attr(title) ")";

    }

    a[href^="javascript:"]:after,

    a[href^="#"]:after {

        content: "";

    }

    blockquote,

    pre {

        border: 1px solid #999;

        page-break-inside: avoid;

    }

    thead {

        display: table-header-group;

    }

    img,

    tr {

        page-break-inside: avoid;

    }

    img {

        max-width: 100% !important;

    }

    h2,

    h3,

    p {

        orphans: 3;

        widows: 3;

    }

    h2,

    h3 {

        page-break-after: avoid;

    }

    select {

        background: #fff !important;

    }

    .navbar {

        display: none;

    }

    .btn > .caret,

    .dropup > .btn > .caret {

        border-top-color: #000 !important;

    }

    .label {

        border: 1px solid #000;

    }

    .table {

        border-collapse: collapse !important;

    }

    .table td,

    .table th {

        background-color: #fff !important;

    }

    .table-bordered td,

    .table-bordered th {

        border: 1px solid #ddd !important;

    }

}

@font-face {

    font-family: "Glyphicons Halflings";

    src: url(../fonts/glyphicons-halflings-regular.eot);

    src: url(../fonts/glyphicons-halflings-regular.eot?#iefix) format("embedded-opentype"), url(../fonts/glyphicons-halflings-regular.woff2) format("woff2"), url(../fonts/glyphicons-halflings-regular.woff) format("woff"),

        url(../fonts/glyphicons-halflings-regular.ttf) format("truetype"), url(../fonts/glyphicons-halflings-regular.svg#glyphicons_halflingsregular) format("svg");

}

.glyphicon {

    position: relative;

    top: 1px;

    display: inline-block;

    font-family: "Glyphicons Halflings";

    font-style: normal;

    font-weight: 400;

    line-height: 1;

    -webkit-font-smoothing: antialiased;

    -moz-osx-font-smoothing: grayscale;

}

.glyphicon-asterisk:before {

    content: "\2a";

}

.glyphicon-plus:before {

    content: "\2b";

}

.glyphicon-eur:before,

.glyphicon-euro:before {

    content: "\20ac";

}

.glyphicon-minus:before {

    content: "\2212";

}

.glyphicon-cloud:before {

    content: "\2601";

}

.glyphicon-envelope:before {

    content: "\2709";

}

.glyphicon-pencil:before {

    content: "\270f";

}

.glyphicon-glass:before {

    content: "\e001";

}

.glyphicon-music:before {

    content: "\e002";

}

.glyphicon-search:before {

    content: "\e003";

}

.glyphicon-heart:before {

    content: "\e005";

}

.glyphicon-star:before {

    content: "\e006";

}

.glyphicon-star-empty:before {

    content: "\e007";

}

.glyphicon-user:before {

    content: "\e008";

}

.glyphicon-film:before {

    content: "\e009";

}

.glyphicon-th-large:before {

    content: "\e010";

}

.glyphicon-th:before {

    content: "\e011";

}

.glyphicon-th-list:before {

    content: "\e012";

}

.glyphicon-ok:before {

    content: "\e013";

}

.glyphicon-remove:before {

    content: "\e014";

}

.glyphicon-zoom-in:before {

    content: "\e015";

}

.glyphicon-zoom-out:before {

    content: "\e016";

}

.glyphicon-off:before {

    content: "\e017";

}

.glyphicon-signal:before {

    content: "\e018";

}

.glyphicon-cog:before {

    content: "\e019";

}

.glyphicon-trash:before {

    content: "\e020";

}

.glyphicon-home:before {

    content: "\e021";

}

.glyphicon-file:before {

    content: "\e022";

}

.glyphicon-time:before {

    content: "\e023";

}

.glyphicon-road:before {

    content: "\e024";

}

.glyphicon-download-alt:before {

    content: "\e025";

}

.glyphicon-download:before {

    content: "\e026";

}

.glyphicon-upload:before {

    content: "\e027";

}

.glyphicon-inbox:before {

    content: "\e028";

}

.glyphicon-play-circle:before {

    content: "\e029";

}

.glyphicon-repeat:before {

    content: "\e030";

}

.glyphicon-refresh:before {

    content: "\e031";

}

.glyphicon-list-alt:before {

    content: "\e032";

}

.glyphicon-lock:before {

    content: "\e033";

}

.glyphicon-flag:before {

    content: "\e034";

}

.glyphicon-headphones:before {

    content: "\e035";

}

.glyphicon-volume-off:before {

    content: "\e036";

}

.glyphicon-volume-down:before {

    content: "\e037";

}

.glyphicon-volume-up:before {

    content: "\e038";

}

.glyphicon-qrcode:before {

    content: "\e039";

}

.glyphicon-barcode:before {

    content: "\e040";

}

.glyphicon-tag:before {

    content: "\e041";

}

.glyphicon-tags:before {

    content: "\e042";

}

.glyphicon-book:before {

    content: "\e043";

}

.glyphicon-bookmark:before {

    content: "\e044";

}

.glyphicon-print:before {

    content: "\e045";

}

.glyphicon-camera:before {

    content: "\e046";

}

.glyphicon-font:before {

    content: "\e047";

}

.glyphicon-bold:before {

    content: "\e048";

}

.glyphicon-italic:before {

    content: "\e049";

}

.glyphicon-text-height:before {

    content: "\e050";

}

.glyphicon-text-width:before {

    content: "\e051";

}

.glyphicon-align-left:before {

    content: "\e052";

}

.glyphicon-align-center:before {

    content: "\e053";

}

.glyphicon-align-right:before {

    content: "\e054";

}

.glyphicon-align-justify:before {

    content: "\e055";

}

.glyphicon-list:before {

    content: "\e056";

}

.glyphicon-indent-left:before {

    content: "\e057";

}

.glyphicon-indent-right:before {

    content: "\e058";

}

.glyphicon-facetime-video:before {

    content: "\e059";

}

.glyphicon-picture:before {

    content: "\e060";

}

.glyphicon-map-marker:before {

    content: "\e062";

}

.glyphicon-adjust:before {

    content: "\e063";

}

.glyphicon-tint:before {

    content: "\e064";

}

.glyphicon-edit:before {

    content: "\e065";

}

.glyphicon-share:before {

    content: "\e066";

}

.glyphicon-check:before {

    content: "\e067";

}

.glyphicon-move:before {

    content: "\e068";

}

.glyphicon-step-backward:before {

    content: "\e069";

}

.glyphicon-fast-backward:before {

    content: "\e070";

}

.glyphicon-backward:before {

    content: "\e071";

}

.glyphicon-play:before {

    content: "\e072";

}

.glyphicon-pause:before {

    content: "\e073";

}

.glyphicon-stop:before {

    content: "\e074";

}

.glyphicon-forward:before {

    content: "\e075";

}

.glyphicon-fast-forward:before {

    content: "\e076";

}

.glyphicon-step-forward:before {

    content: "\e077";

}

.glyphicon-eject:before {

    content: "\e078";

}

.glyphicon-chevron-left:before {

    content: "\e079";

}

.glyphicon-chevron-right:before {

    content: "\e080";

}

.glyphicon-plus-sign:before {

    content: "\e081";

}

.glyphicon-minus-sign:before {

    content: "\e082";

}

.glyphicon-remove-sign:before {

    content: "\e083";

}

.glyphicon-ok-sign:before {

    content: "\e084";

}

.glyphicon-question-sign:before {

    content: "\e085";

}

.glyphicon-info-sign:before {

    content: "\e086";

}

.glyphicon-screenshot:before {

    content: "\e087";

}

.glyphicon-remove-circle:before {

    content: "\e088";

}

.glyphicon-ok-circle:before {

    content: "\e089";

}

.glyphicon-ban-circle:before {

    content: "\e090";

}

.glyphicon-arrow-left:before {

    content: "\e091";

}

.glyphicon-arrow-right:before {

    content: "\e092";

}

.glyphicon-arrow-up:before {

    content: "\e093";

}

.glyphicon-arrow-down:before {

    content: "\e094";

}

.glyphicon-share-alt:before {

    content: "\e095";

}

.glyphicon-resize-full:before {

    content: "\e096";

}

.glyphicon-resize-small:before {

    content: "\e097";

}

.glyphicon-exclamation-sign:before {

    content: "\e101";

}

.glyphicon-gift:before {

    content: "\e102";

}

.glyphicon-leaf:before {

    content: "\e103";

}

.glyphicon-fire:before {

    content: "\e104";

}

.glyphicon-eye-open:before {

    content: "\e105";

}

.glyphicon-eye-close:before {

    content: "\e106";

}

.glyphicon-warning-sign:before {

    content: "\e107";

}

.glyphicon-plane:before {

    content: "\e108";

}

.glyphicon-calendar:before {

    content: "\e109";

}

.glyphicon-random:before {

    content: "\e110";

}

.glyphicon-comment:before {

    content: "\e111";

}

.glyphicon-magnet:before {

    content: "\e112";

}

.glyphicon-chevron-up:before {

    content: "\e113";

}

.glyphicon-chevron-down:before {

    content: "\e114";

}

.glyphicon-retweet:before {

    content: "\e115";

}

.glyphicon-shopping-cart:before {

    content: "\e116";

}

.glyphicon-folder-close:before {

    content: "\e117";

}

.glyphicon-folder-open:before {

    content: "\e118";

}

.glyphicon-resize-vertical:before {

    content: "\e119";

}

.glyphicon-resize-horizontal:before {

    content: "\e120";

}

.glyphicon-hdd:before {

    content: "\e121";

}

.glyphicon-bullhorn:before {

    content: "\e122";

}

.glyphicon-bell:before {

    content: "\e123";

}

.glyphicon-certificate:before {

    content: "\e124";

}

.glyphicon-thumbs-up:before {

    content: "\e125";

}

.glyphicon-thumbs-down:before {

    content: "\e126";

}

.glyphicon-hand-right:before {

    content: "\e127";

}

.glyphicon-hand-left:before {

    content: "\e128";

}

.glyphicon-hand-up:before {

    content: "\e129";

}

.glyphicon-hand-down:before {

    content: "\e130";

}

.glyphicon-circle-arrow-right:before {

    content: "\e131";

}

.glyphicon-circle-arrow-left:before {

    content: "\e132";

}

.glyphicon-circle-arrow-up:before {

    content: "\e133";

}

.glyphicon-circle-arrow-down:before {

    content: "\e134";

}

.glyphicon-globe:before {

    content: "\e135";

}

.glyphicon-wrench:before {

    content: "\e136";

}

.glyphicon-tasks:before {

    content: "\e137";

}

.glyphicon-filter:before {

    content: "\e138";

}

.glyphicon-briefcase:before {

    content: "\e139";

}

.glyphicon-fullscreen:before {

    content: "\e140";

}

.glyphicon-dashboard:before {

    content: "\e141";

}

.glyphicon-paperclip:before {

    content: "\e142";

}

.glyphicon-heart-empty:before {

    content: "\e143";

}

.glyphicon-link:before {

    content: "\e144";

}

.glyphicon-phone:before {

    content: "\e145";

}

.glyphicon-pushpin:before {

    content: "\e146";

}

.glyphicon-usd:before {

    content: "\e148";

}

.glyphicon-gbp:before {

    content: "\e149";

}

.glyphicon-sort:before {

    content: "\e150";

}

.glyphicon-sort-by-alphabet:before {

    content: "\e151";

}

.glyphicon-sort-by-alphabet-alt:before {

    content: "\e152";

}

.glyphicon-sort-by-order:before {

    content: "\e153";

}

.glyphicon-sort-by-order-alt:before {

    content: "\e154";

}

.glyphicon-sort-by-attributes:before {

    content: "\e155";

}

.glyphicon-sort-by-attributes-alt:before {

    content: "\e156";

}

.glyphicon-unchecked:before {

    content: "\e157";

}

.glyphicon-expand:before {

    content: "\e158";

}

.glyphicon-collapse-down:before {

    content: "\e159";

}

.glyphicon-collapse-up:before {

    content: "\e160";

}

.glyphicon-log-in:before {

    content: "\e161";

}

.glyphicon-flash:before {

    content: "\e162";

}

.glyphicon-log-out:before {

    content: "\e163";

}

.glyphicon-new-window:before {

    content: "\e164";

}

.glyphicon-record:before {

    content: "\e165";

}

.glyphicon-save:before {

    content: "\e166";

}

.glyphicon-open:before {

    content: "\e167";

}

.glyphicon-saved:before {

    content: "\e168";

}

.glyphicon-import:before {

    content: "\e169";

}

.glyphicon-export:before {

    content: "\e170";

}

.glyphicon-send:before {

    content: "\e171";

}

.glyphicon-floppy-disk:before {

    content: "\e172";

}

.glyphicon-floppy-saved:before {

    content: "\e173";

}

.glyphicon-floppy-remove:before {

    content: "\e174";

}

.glyphicon-floppy-save:before {

    content: "\e175";

}

.glyphicon-floppy-open:before {

    content: "\e176";

}

.glyphicon-credit-card:before {

    content: "\e177";

}

.glyphicon-transfer:before {

    content: "\e178";

}

.glyphicon-cutlery:before {

    content: "\e179";

}

.glyphicon-header:before {

    content: "\e180";

}

.glyphicon-compressed:before {

    content: "\e181";

}

.glyphicon-earphone:before {

    content: "\e182";

}

.glyphicon-phone-alt:before {

    content: "\e183";

}

.glyphicon-tower:before {

    content: "\e184";

}

.glyphicon-stats:before {

    content: "\e185";

}

.glyphicon-sd-video:before {

    content: "\e186";

}

.glyphicon-hd-video:before {

    content: "\e187";

}

.glyphicon-subtitles:before {

    content: "\e188";

}

.glyphicon-sound-stereo:before {

    content: "\e189";

}

.glyphicon-sound-dolby:before {

    content: "\e190";

}

.glyphicon-sound-5-1:before {

    content: "\e191";

}

.glyphicon-sound-6-1:before {

    content: "\e192";

}

.glyphicon-sound-7-1:before {

    content: "\e193";

}

.glyphicon-copyright-mark:before {

    content: "\e194";

}

.glyphicon-registration-mark:before {

    content: "\e195";

}

.glyphicon-cloud-download:before {

    content: "\e197";

}

.glyphicon-cloud-upload:before {

    content: "\e198";

}

.glyphicon-tree-conifer:before {

    content: "\e199";

}

.glyphicon-tree-deciduous:before {

    content: "\e200";

}

.glyphicon-cd:before {

    content: "\e201";

}

.glyphicon-save-file:before {

    content: "\e202";

}

.glyphicon-open-file:before {

    content: "\e203";

}

.glyphicon-level-up:before {

    content: "\e204";

}

.glyphicon-copy:before {

    content: "\e205";

}

.glyphicon-paste:before {

    content: "\e206";

}

.glyphicon-alert:before {

    content: "\e209";

}

.glyphicon-equalizer:before {

    content: "\e210";

}

.glyphicon-king:before {

    content: "\e211";

}

.glyphicon-queen:before {

    content: "\e212";

}

.glyphicon-pawn:before {

    content: "\e213";

}

.glyphicon-bishop:before {

    content: "\e214";

}

.glyphicon-knight:before {

    content: "\e215";

}

.glyphicon-baby-formula:before {

    content: "\e216";

}

.glyphicon-tent:before {

    content: "\26fa";

}

.glyphicon-blackboard:before {

    content: "\e218";

}

.glyphicon-bed:before {

    content: "\e219";

}

.glyphicon-apple:before {

    content: "\f8ff";

}

.glyphicon-erase:before {

    content: "\e221";

}

.glyphicon-hourglass:before {

    content: "\231b";

}

.glyphicon-lamp:before {

    content: "\e223";

}

.glyphicon-duplicate:before {

    content: "\e224";

}

.glyphicon-piggy-bank:before {

    content: "\e225";

}

.glyphicon-scissors:before {

    content: "\e226";

}

.glyphicon-bitcoin:before {

    content: "\e227";

}

.glyphicon-btc:before {

    content: "\e227";

}

.glyphicon-xbt:before {

    content: "\e227";

}

.glyphicon-yen:before {

    content: "\00a5";

}

.glyphicon-jpy:before {

    content: "\00a5";

}

.glyphicon-ruble:before {

    content: "\20bd";

}

.glyphicon-rub:before {

    content: "\20bd";

}

.glyphicon-scale:before {

    content: "\e230";

}

.glyphicon-ice-lolly:before {

    content: "\e231";

}

.glyphicon-ice-lolly-tasted:before {

    content: "\e232";

}

.glyphicon-education:before {

    content: "\e233";

}

.glyphicon-option-horizontal:before {

    content: "\e234";

}

.glyphicon-option-vertical:before {

    content: "\e235";

}

.glyphicon-menu-hamburger:before {

    content: "\e236";

}

.glyphicon-modal-window:before {

    content: "\e237";

}

.glyphicon-oil:before {

    content: "\e238";

}

.glyphicon-grain:before {

    content: "\e239";

}

.glyphicon-sunglasses:before {

    content: "\e240";

}

.glyphicon-text-size:before {

    content: "\e241";

}

.glyphicon-text-color:before {

    content: "\e242";

}

.glyphicon-text-background:before {

    content: "\e243";

}

.glyphicon-object-align-top:before {

    content: "\e244";

}

.glyphicon-object-align-bottom:before {

    content: "\e245";

}

.glyphicon-object-align-horizontal:before {

    content: "\e246";

}

.glyphicon-object-align-left:before {

    content: "\e247";

}

.glyphicon-object-align-vertical:before {

    content: "\e248";

}

.glyphicon-object-align-right:before {

    content: "\e249";

}

.glyphicon-triangle-right:before {

    content: "\e250";

}

.glyphicon-triangle-left:before {

    content: "\e251";

}

.glyphicon-triangle-bottom:before {

    content: "\e252";

}

.glyphicon-triangle-top:before {

    content: "\e253";

}

.glyphicon-console:before {

    content: "\e254";

}

.glyphicon-superscript:before {

    content: "\e255";

}

.glyphicon-subscript:before {

    content: "\e256";

}

.glyphicon-menu-left:before {

    content: "\e257";

}

.glyphicon-menu-right:before {

    content: "\e258";

}

.glyphicon-menu-down:before {

    content: "\e259";

}

.glyphicon-menu-up:before {

    content: "\e260";

}

* {

    -webkit-box-sizing: border-box;

    -moz-box-sizing: border-box;

    box-sizing: border-box;

}

:after,

:before {

    -webkit-box-sizing: border-box;

    -moz-box-sizing: border-box;

    box-sizing: border-box;

}

html {

    font-size: 10px;

    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);

}

body {

    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;

    font-size: 14px;

    line-height: 1.42857143;

    color: #333;

    background-color: #fff;

}

button,

input,

select,

textarea {

    font-family: inherit;

    font-size: inherit;

    line-height: inherit;

}

a {

    color: #337ab7;

    text-decoration: none;

}

a:focus,

a:hover {

    color: #23527c;

    text-decoration: underline;

}

a:focus {

    outline: thin dotted;

    outline: 5px auto -webkit-focus-ring-color;

    outline-offset: -2px;

}

figure {

    margin: 0;

}

img {

    vertical-align: middle;

}

.carousel-inner > .item > a > img,

.carousel-inner > .item > img,

.img-responsive,

.thumbnail a > img,

.thumbnail > img {

    display: block;

    max-width: 100%;

    height: auto;

}

.img-rounded {

    border-radius: 6px;

}

.img-thumbnail {

    display: inline-block;

    max-width: 100%;

    height: auto;

    padding: 4px;

    line-height: 1.42857143;

    background-color: #fff;

    border: 1px solid #ddd;

    border-radius: 4px;

    -webkit-transition: all 0.2s ease-in-out;

    -o-transition: all 0.2s ease-in-out;

    transition: all 0.2s ease-in-out;

}

.img-circle {

    border-radius: 50%;

}

hr {

    margin-top: 20px;

    margin-bottom: 20px;

    border: 0;

    border-top: 1px solid #eee;

}

.sr-only {

    position: absolute;

    width: 1px;

    height: 1px;

    padding: 0;

    margin: -1px;

    overflow: hidden;

    clip: rect(0, 0, 0, 0);

    border: 0;

}

.sr-only-focusable:active,

.sr-only-focusable:focus {

    position: static;

    width: auto;

    height: auto;

    margin: 0;

    overflow: visible;

    clip: auto;

}

[role="button"] {

    cursor: pointer;

}

.h1,

.h2,

.h3,

.h4,

.h5,

.h6,

h1,

h2,

h3,

h4,

h5,

h6 {

    font-family: inherit;

    font-weight: 500;

    line-height: 1.1;

    color: inherit;

}

.h1 .small,

.h1 small,

.h2 .small,

.h2 small,

.h3 .small,

.h3 small,

.h4 .small,

.h4 small,

.h5 .small,

.h5 small,

.h6 .small,

.h6 small,

h1 .small,

h1 small,

h2 .small,

h2 small,

h3 .small,

h3 small,

h4 .small,

h4 small,

h5 .small,

h5 small,

h6 .small,

h6 small {

    font-weight: 400;

    line-height: 1;

    color: #777;

}

.h1,

.h2,

.h3,

h1,

h2,

h3 {

    margin-top: 20px;

    margin-bottom: 10px;

}

.h1 .small,

.h1 small,

.h2 .small,

.h2 small,

.h3 .small,

.h3 small,

h1 .small,

h1 small,

h2 .small,

h2 small,

h3 .small,

h3 small {

    font-size: 65%;

}

.h4,

.h5,

.h6,

h4,

h5,

h6 {

    margin-top: 10px;

    margin-bottom: 10px;

}

.h4 .small,

.h4 small,

.h5 .small,

.h5 small,

.h6 .small,

.h6 small,

h4 .small,

h4 small,

h5 .small,

h5 small,

h6 .small,

h6 small {

    font-size: 75%;

}

.h1,

h1 {

    font-size: 36px;

}

.h2,

h2 {

    font-size: 30px;

}

.h3,

h3 {

    font-size: 24px;

}

.h4,

h4 {

    font-size: 18px;

}

.h5,

h5 {

    font-size: 14px;

}

.h6,

h6 {

    font-size: 12px;

}

p {

    margin: 0 0 10px;

}

.lead {

    margin-bottom: 20px;

    font-size: 16px;

    font-weight: 300;

    line-height: 1.4;

}

@media (min-width: 768px) {

    .lead {

        font-size: 21px;

    }

}

.small,

small {

    font-size: 85%;

}

.mark,

mark {

    padding: 0.2em;

    background-color: #fcf8e3;

}

.text-left {

    text-align: left;

}

.text-right {

    text-align: right;

}

.text-center {

    text-align: center;

}

.text-justify {

    text-align: justify;

}

.text-nowrap {

    white-space: nowrap;

}

.text-lowercase {

    text-transform: lowercase;

}

.text-uppercase {

    text-transform: none;

}

.text-capitalize {

    text-transform: capitalize;

}

.text-muted {

    color: #777;

}

.text-primary {

    color: #337ab7;

}

a.text-primary:hover {

    color: #286090;

}

.text-success {

    color: #3c763d;

}

a.text-success:hover {

    color: #2b542c;

}

.text-info {

    color: #31708f;

}

a.text-info:hover {

    color: #245269;

}

.text-warning {

    color: #8a6d3b;

}

a.text-warning:hover {

    color: #66512c;

}

.text-danger {

    color: #a94442;

}

a.text-danger:hover {

    color: #843534;

}

.bg-primary {

    color: #fff;

    background-color: #337ab7;

}

a.bg-primary:hover {

    background-color: #286090;

}

.bg-success {

    background-color: #dff0d8;

}

a.bg-success:hover {

    background-color: #c1e2b3;

}

.bg-info {

    background-color: #d9edf7;

}

a.bg-info:hover {

    background-color: #afd9ee;

}

.bg-warning {

    background-color: #fcf8e3;

}

a.bg-warning:hover {

    background-color: #f7ecb5;

}

.bg-danger {

    background-color: #f2dede;

}

a.bg-danger:hover {

    background-color: #e4b9b9;

}

.page-header {

    padding-bottom: 9px;

    margin: 40px 0 20px;

    border-bottom: 1px solid #eee;

}

ol,

ul {

    margin-top: 0;

    margin-bottom: 10px;

}

ol ol,

ol ul,

ul ol,

ul ul {

    margin-bottom: 0;

}

.list-unstyled {

    padding-left: 0;

    list-style: none;

}

.list-inline {

    padding-left: 0;

    margin-left: -5px;

    list-style: none;

}

.list-inline > li {

    display: inline-block;

    padding-right: 5px;

    padding-left: 5px;

}

dl {

    margin-top: 0;

    margin-bottom: 20px;

}

dd,

dt {

    line-height: 1.42857143;

}

dt {

    font-weight: 700;

}

dd {

    margin-left: 0;

}

@media (min-width: 768px) {

    .dl-horizontal dt {

        float: left;

        width: 160px;

        overflow: hidden;

        clear: left;

        text-align: right;

        text-overflow: ellipsis;

        white-space: nowrap;

    }

    .dl-horizontal dd {

        margin-left: 180px;

    }

}

abbr[data-original-title],

abbr[title] {

    cursor: help;

    border-bottom: 1px dotted #777;

}

.initialism {

    font-size: 90%;

    text-transform: uppercase;

}

blockquote {

    padding: 10px 20px;

    margin: 0 0 20px;

    font-size: 17.5px;

    border-left: 5px solid #eee;

}

blockquote ol:last-child,

blockquote p:last-child,

blockquote ul:last-child {

    margin-bottom: 0;

}

blockquote .small,

blockquote footer,

blockquote small {

    display: block;

    font-size: 80%;

    line-height: 1.42857143;

    color: #777;

}

blockquote .small:before,

blockquote footer:before,

blockquote small:before {

    content: "\2014 \00A0";

}

.blockquote-reverse,

blockquote.pull-right {

    padding-right: 15px;

    padding-left: 0;

    text-align: right;

    border-right: 5px solid #eee;

    border-left: 0;

}

.blockquote-reverse .small:before,

.blockquote-reverse footer:before,

.blockquote-reverse small:before,

blockquote.pull-right .small:before,

blockquote.pull-right footer:before,

blockquote.pull-right small:before {

    content: "";

}

.blockquote-reverse .small:after,

.blockquote-reverse footer:after,

.blockquote-reverse small:after,

blockquote.pull-right .small:after,

blockquote.pull-right footer:after,

blockquote.pull-right small:after {

    content: "\00A0 \2014";

}

address {

    margin-bottom: 20px;

    font-style: normal;

    line-height: 1.42857143;

}

code,

kbd,

pre,

samp {

    font-family: Menlo, Monaco, Consolas, "Courier New", monospace;

}

code {

    padding: 2px 4px;

    font-size: 90%;

    color: #c7254e;

    background-color: #f9f2f4;

    border-radius: 4px;

}

kbd {

    padding: 2px 4px;

    font-size: 90%;

    color: #fff;

    background-color: #333;

    border-radius: 3px;

    -webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.25);

    box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.25);

}

kbd kbd {

    padding: 0;

    font-size: 100%;

    font-weight: 700;

    -webkit-box-shadow: none;

    box-shadow: none;

}

pre {

    display: block;

    padding: 9.5px;

    margin: 0 0 10px;

    font-size: 13px;

    line-height: 1.42857143;

    color: #333;

    word-break: break-all;

    word-wrap: break-word;

    background-color: #f5f5f5;

    border: 1px solid #ccc;

    border-radius: 4px;

}

pre code {

    padding: 0;

    font-size: inherit;

    color: inherit;

    white-space: pre-wrap;

    background-color: transparent;

    border-radius: 0;

}

.pre-scrollable {

    max-height: 340px;

    overflow-y: scroll;

}

.container {

    padding-right: 15px;

    padding-left: 15px;

    margin-right: auto;

    margin-left: auto;

    width: 90vw !important;

}

@media (min-width: 768px) {

    .container {

        width: 750px;

    }

}

@media (min-width: 992px) {

    .container {

        width: 970px;

    }

}

@media (min-width: 1200px) {

    .container {

        width: 1170px;

    }

}

.container-fluid {

    padding-right: 15px;

    padding-left: 15px;

    margin-right: auto;

    margin-left: auto;

}

.row {

    margin-right: -15px;

    margin-left: -15px;

}

.col-lg-1,

.col-lg-10,

.col-lg-11,

.col-lg-12,

.col-lg-2,

.col-lg-3,

.col-lg-4,

.col-lg-5,

.col-lg-6,

.col-lg-7,

.col-lg-8,

.col-lg-9,

.col-md-1,

.col-md-10,

.col-md-11,

.col-md-12,

.col-md-2,

.col-md-3,

.col-md-4,

.col-md-5,

.col-md-6,

.col-md-7,

.col-md-8,

.col-md-9,

.col-sm-1,

.col-sm-10,

.col-sm-11,

.col-sm-12,

.col-sm-2,

.col-sm-3,

.col-sm-4,

.col-sm-5,

.col-sm-6,

.col-sm-7,

.col-sm-8,

.col-sm-9,

.col-xs-1,

.col-xs-10,

.col-xs-11,

.col-xs-12,

.col-xs-2,

.col-xs-3,

.col-xs-4,

.col-xs-5,

.col-xs-6,

.col-xs-7,

.col-xs-8,

.col-xs-9 {

    position: relative;

    min-height: 1px;

    padding-right: 15px;

    padding-left: 15px;

}

.col-xs-1,

.col-xs-10,

.col-xs-11,

.col-xs-12,

.col-xs-2,

.col-xs-3,

.col-xs-4,

.col-xs-5,

.col-xs-6,

.col-xs-7,

.col-xs-8,

.col-xs-9 {

    float: left;

}

.col-xs-12 {

    width: 100%;

}

.col-xs-11 {

    width: 91.66666667%;

}

.col-xs-10 {

    width: 83.33333333%;

}

.col-xs-9 {

    width: 75%;

}

.col-xs-8 {

    width: 66.66666667%;

}

.col-xs-7 {

    width: 58.33333333%;

}

.col-xs-6 {

    width: 50%;

}

.col-xs-5 {

    width: 41.66666667%;

}

.col-xs-4 {

    width: 33.33333333%;

}

.col-xs-3 {

    width: 25%;

}

.col-xs-2 {

    width: 16.66666667%;

}

.col-xs-1 {

    width: 8.33333333%;

}

.col-xs-pull-12 {

    right: 100%;

}

.col-xs-pull-11 {

    right: 91.66666667%;

}

.col-xs-pull-10 {

    right: 83.33333333%;

}

.col-xs-pull-9 {

    right: 75%;

}

.col-xs-pull-8 {

    right: 66.66666667%;

}

.col-xs-pull-7 {

    right: 58.33333333%;

}

.col-xs-pull-6 {

    right: 50%;

}

.col-xs-pull-5 {

    right: 41.66666667%;

}

.col-xs-pull-4 {

    right: 33.33333333%;

}

.col-xs-pull-3 {

    right: 25%;

}

.col-xs-pull-2 {

    right: 16.66666667%;

}

.col-xs-pull-1 {

    right: 8.33333333%;

}

.col-xs-pull-0 {

    right: auto;

}

.col-xs-push-12 {

    left: 100%;

}

.col-xs-push-11 {

    left: 91.66666667%;

}

.col-xs-push-10 {

    left: 83.33333333%;

}

.col-xs-push-9 {

    left: 75%;

}

.col-xs-push-8 {

    left: 66.66666667%;

}

.col-xs-push-7 {

    left: 58.33333333%;

}

.col-xs-push-6 {

    left: 50%;

}

.col-xs-push-5 {

    left: 41.66666667%;

}

.col-xs-push-4 {

    left: 33.33333333%;

}

.col-xs-push-3 {

    left: 25%;

}

.col-xs-push-2 {

    left: 16.66666667%;

}

.col-xs-push-1 {

    left: 8.33333333%;

}

.col-xs-push-0 {

    left: auto;

}

.col-xs-offset-12 {

    margin-left: 100%;

}

.col-xs-offset-11 {

    margin-left: 91.66666667%;

}

.col-xs-offset-10 {

    margin-left: 83.33333333%;

}

.col-xs-offset-9 {

    margin-left: 75%;

}

.col-xs-offset-8 {

    margin-left: 66.66666667%;

}

.col-xs-offset-7 {

    margin-left: 58.33333333%;

}

.col-xs-offset-6 {

    margin-left: 50%;

}

.col-xs-offset-5 {

    margin-left: 41.66666667%;

}

.col-xs-offset-4 {

    margin-left: 33.33333333%;

}

.col-xs-offset-3 {

    margin-left: 25%;

}

.col-xs-offset-2 {

    margin-left: 16.66666667%;

}

.col-xs-offset-1 {

    margin-left: 8.33333333%;

}

.col-xs-offset-0 {

    margin-left: 0;

}

@media (min-width: 768px) {

    .col-sm-1,

    .col-sm-10,

    .col-sm-11,

    .col-sm-12,

    .col-sm-2,

    .col-sm-3,

    .col-sm-4,

    .col-sm-5,

    .col-sm-6,

    .col-sm-7,

    .col-sm-8,

    .col-sm-9 {

        float: left;

    }

    .col-sm-12 {

        width: 100%;

    }

    .col-sm-11 {

        width: 91.66666667%;

    }

    .col-sm-10 {

        width: 83.33333333%;

    }

    .col-sm-9 {

        width: 75%;

    }

    .col-sm-8 {

        width: 66.66666667%;

    }

    .col-sm-7 {

        width: 58.33333333%;

    }

    .col-sm-6 {

        width: 50%;

    }

    .col-sm-5 {

        width: 41.66666667%;

    }

    .col-sm-4 {

        width: 33.33333333%;

    }

    .col-sm-3 {

        width: 25%;

    }

    .col-sm-2 {

        width: 16.66666667%;

    }

    .col-sm-1 {

        width: 8.33333333%;

    }

    .col-sm-pull-12 {

        right: 100%;

    }

    .col-sm-pull-11 {

        right: 91.66666667%;

    }

    .col-sm-pull-10 {

        right: 83.33333333%;

    }

    .col-sm-pull-9 {

        right: 75%;

    }

    .col-sm-pull-8 {

        right: 66.66666667%;

    }

    .col-sm-pull-7 {

        right: 58.33333333%;

    }

    .col-sm-pull-6 {

        right: 50%;

    }

    .col-sm-pull-5 {

        right: 41.66666667%;

    }

    .col-sm-pull-4 {

        right: 33.33333333%;

    }

    .col-sm-pull-3 {

        right: 25%;

    }

    .col-sm-pull-2 {

        right: 16.66666667%;

    }

    .col-sm-pull-1 {

        right: 8.33333333%;

    }

    .col-sm-pull-0 {

        right: auto;

    }

    .col-sm-push-12 {

        left: 100%;

    }

    .col-sm-push-11 {

        left: 91.66666667%;

    }

    .col-sm-push-10 {

        left: 83.33333333%;

    }

    .col-sm-push-9 {

        left: 75%;

    }

    .col-sm-push-8 {

        left: 66.66666667%;

    }

    .col-sm-push-7 {

        left: 58.33333333%;

    }

    .col-sm-push-6 {

        left: 50%;

    }

    .col-sm-push-5 {

        left: 41.66666667%;

    }

    .col-sm-push-4 {

        left: 33.33333333%;

    }

    .col-sm-push-3 {

        left: 25%;

    }

    .col-sm-push-2 {

        left: 16.66666667%;

    }

    .col-sm-push-1 {

        left: 8.33333333%;

    }

    .col-sm-push-0 {

        left: auto;

    }

    .col-sm-offset-12 {

        margin-left: 100%;

    }

    .col-sm-offset-11 {

        margin-left: 91.66666667%;

    }

    .col-sm-offset-10 {

        margin-left: 83.33333333%;

    }

    .col-sm-offset-9 {

        margin-left: 75%;

    }

    .col-sm-offset-8 {

        margin-left: 66.66666667%;

    }

    .col-sm-offset-7 {

        margin-left: 58.33333333%;

    }

    .col-sm-offset-6 {

        margin-left: 50%;

    }

    .col-sm-offset-5 {

        margin-left: 41.66666667%;

    }

    .col-sm-offset-4 {

        margin-left: 33.33333333%;

    }

    .col-sm-offset-3 {

        margin-left: 25%;

    }

    .col-sm-offset-2 {

        margin-left: 16.66666667%;

    }

    .col-sm-offset-1 {

        margin-left: 8.33333333%;

    }

    .col-sm-offset-0 {

        margin-left: 0;

    }

}

@media (min-width: 992px) {

    .col-md-1,

    .col-md-10,

    .col-md-11,

    .col-md-12,

    .col-md-2,

    .col-md-3,

    .col-md-4,

    .col-md-5,

    .col-md-6,

    .col-md-7,

    .col-md-8,

    .col-md-9 {

        float: left;

    }

    .col-md-12 {

        width: 100%;

    }

    .col-md-11 {

        width: 91.66666667%;

    }

    .col-md-10 {

        width: 83.33333333%;

    }

    .col-md-9 {

        width: 75%;

    }

    .col-md-8 {

        width: 66.66666667%;

    }

    .col-md-7 {

        width: 58.33333333%;

    }

    .col-md-6 {

        width: 50%;

    }

    .col-md-5 {

        width: 41.66666667%;

    }

    .col-md-4 {

        width: 33.33333333%;

    }

    .col-md-3 {

        width: 25%;

    }

    .col-md-2 {

        width: 16.66666667%;

    }

    .col-md-1 {

        width: 8.33333333%;

    }

    .col-md-pull-12 {

        right: 100%;

    }

    .col-md-pull-11 {

        right: 91.66666667%;

    }

    .col-md-pull-10 {

        right: 83.33333333%;

    }

    .col-md-pull-9 {

        right: 75%;

    }

    .col-md-pull-8 {

        right: 66.66666667%;

    }

    .col-md-pull-7 {

        right: 58.33333333%;

    }

    .col-md-pull-6 {

        right: 50%;

    }

    .col-md-pull-5 {

        right: 41.66666667%;

    }

    .col-md-pull-4 {

        right: 33.33333333%;

    }

    .col-md-pull-3 {

        right: 25%;

    }

    .col-md-pull-2 {

        right: 16.66666667%;

    }

    .col-md-pull-1 {

        right: 8.33333333%;

    }

    .col-md-pull-0 {

        right: auto;

    }

    .col-md-push-12 {

        left: 100%;

    }

    .col-md-push-11 {

        left: 91.66666667%;

    }

    .col-md-push-10 {

        left: 83.33333333%;

    }

    .col-md-push-9 {

        left: 75%;

    }

    .col-md-push-8 {

        left: 66.66666667%;

    }

    .col-md-push-7 {

        left: 58.33333333%;

    }

    .col-md-push-6 {

        left: 50%;

    }

    .col-md-push-5 {

        left: 41.66666667%;

    }

    .col-md-push-4 {

        left: 33.33333333%;

    }

    .col-md-push-3 {

        left: 25%;

    }

    .col-md-push-2 {

        left: 16.66666667%;

    }

    .col-md-push-1 {

        left: 8.33333333%;

    }

    .col-md-push-0 {

        left: auto;

    }

    .col-md-offset-12 {

        margin-left: 100%;

    }

    .col-md-offset-11 {

        margin-left: 91.66666667%;

    }

    .col-md-offset-10 {

        margin-left: 83.33333333%;

    }

    .col-md-offset-9 {

        margin-left: 75%;

    }

    .col-md-offset-8 {

        margin-left: 66.66666667%;

    }

    .col-md-offset-7 {

        margin-left: 58.33333333%;

    }

    .col-md-offset-6 {

        margin-left: 50%;

    }

    .col-md-offset-5 {

        margin-left: 41.66666667%;

    }

    .col-md-offset-4 {

        margin-left: 33.33333333%;

    }

    .col-md-offset-3 {

        margin-left: 25%;

    }

    .col-md-offset-2 {

        margin-left: 16.66666667%;

    }

    .col-md-offset-1 {

        margin-left: 8.33333333%;

    }

    .col-md-offset-0 {

        margin-left: 0;

    }

}

@media (min-width: 1200px) {

    .col-lg-1,

    .col-lg-10,

    .col-lg-11,

    .col-lg-12,

    .col-lg-2,

    .col-lg-3,

    .col-lg-4,

    .col-lg-5,

    .col-lg-6,

    .col-lg-7,

    .col-lg-8,

    .col-lg-9 {

        float: left;

    }

    .col-lg-12 {

        width: 100%;

    }

    .col-lg-11 {

        width: 91.66666667%;

    }

    .col-lg-10 {

        width: 83.33333333%;

    }

    .col-lg-9 {

        width: 75%;

    }

    .col-lg-8 {

        width: 66.66666667%;

    }

    .col-lg-7 {

        width: 58.33333333%;

    }

    .col-lg-6 {

        width: 50%;

    }

    .col-lg-5 {

        width: 41.66666667%;

    }

    .col-lg-4 {

        width: 33.33333333%;

    }

    .col-lg-3 {

        width: 25%;

    }

    .col-lg-2 {

        width: 16.66666667%;

    }

    .col-lg-1 {

        width: 8.33333333%;

    }

    .col-lg-pull-12 {

        right: 100%;

    }

    .col-lg-pull-11 {

        right: 91.66666667%;

    }

    .col-lg-pull-10 {

        right: 83.33333333%;

    }

    .col-lg-pull-9 {

        right: 75%;

    }

    .col-lg-pull-8 {

        right: 66.66666667%;

    }

    .col-lg-pull-7 {

        right: 58.33333333%;

    }

    .col-lg-pull-6 {

        right: 50%;

    }

    .col-lg-pull-5 {

        right: 41.66666667%;

    }

    .col-lg-pull-4 {

        right: 33.33333333%;

    }

    .col-lg-pull-3 {

        right: 25%;

    }

    .col-lg-pull-2 {

        right: 16.66666667%;

    }

    .col-lg-pull-1 {

        right: 8.33333333%;

    }

    .col-lg-pull-0 {

        right: auto;

    }

    .col-lg-push-12 {

        left: 100%;

    }

    .col-lg-push-11 {

        left: 91.66666667%;

    }

    .col-lg-push-10 {

        left: 83.33333333%;

    }

    .col-lg-push-9 {

        left: 75%;

    }

    .col-lg-push-8 {

        left: 66.66666667%;

    }

    .col-lg-push-7 {

        left: 58.33333333%;

    }

    .col-lg-push-6 {

        left: 50%;

    }

    .col-lg-push-5 {

        left: 41.66666667%;

    }

    .col-lg-push-4 {

        left: 33.33333333%;

    }

    .col-lg-push-3 {

        left: 25%;

    }

    .col-lg-push-2 {

        left: 16.66666667%;

    }

    .col-lg-push-1 {

        left: 8.33333333%;

    }

    .col-lg-push-0 {

        left: auto;

    }

    .col-lg-offset-12 {

        margin-left: 100%;

    }

    .col-lg-offset-11 {

        margin-left: 91.66666667%;

    }

    .col-lg-offset-10 {

        margin-left: 83.33333333%;

    }

    .col-lg-offset-9 {

        margin-left: 75%;

    }

    .col-lg-offset-8 {

        margin-left: 66.66666667%;

    }

    .col-lg-offset-7 {

        margin-left: 58.33333333%;

    }

    .col-lg-offset-6 {

        margin-left: 50%;

    }

    .col-lg-offset-5 {

        margin-left: 41.66666667%;

    }

    .col-lg-offset-4 {

        margin-left: 33.33333333%;

    }

    .col-lg-offset-3 {

        margin-left: 25%;

    }

    .col-lg-offset-2 {

        margin-left: 16.66666667%;

    }

    .col-lg-offset-1 {

        margin-left: 8.33333333%;

    }

    .col-lg-offset-0 {

        margin-left: 0;

    }

}

table {

    background-color: transparent;

}

caption {

    padding-top: 8px;

    padding-bottom: 8px;

    color: #777;

    text-align: left;

}

th {

    text-align: left;

}

.table {

    width: 100%;

    max-width: 100%;

    margin-bottom: 20px;

}

.table > tbody > tr > td,

.table > tbody > tr > th,

.table > tfoot > tr > td,

.table > tfoot > tr > th,

.table > thead > tr > td,

.table > thead > tr > th {

    padding: 8px;

    line-height: 1.42857143;

    vertical-align: top;

    border-top: 1px solid #ddd;

}

.table > thead > tr > th {

    vertical-align: bottom;

    border-bottom: 2px solid #ddd;

}

.table > caption + thead > tr:first-child > td,

.table > caption + thead > tr:first-child > th,

.table > colgroup + thead > tr:first-child > td,

.table > colgroup + thead > tr:first-child > th,

.table > thead:first-child > tr:first-child > td,

.table > thead:first-child > tr:first-child > th {

    border-top: 0;

}

.table > tbody + tbody {

    border-top: 2px solid #ddd;

}

.table .table {

    background-color: #fff;

}

.table-condensed > tbody > tr > td,

.table-condensed > tbody > tr > th,

.table-condensed > tfoot > tr > td,

.table-condensed > tfoot > tr > th,

.table-condensed > thead > tr > td,

.table-condensed > thead > tr > th {

    padding: 5px;

}

.table-bordered {

    border: 1px solid #ddd;

}

.table-bordered > tbody > tr > td,

.table-bordered > tbody > tr > th,

.table-bordered > tfoot > tr > td,

.table-bordered > tfoot > tr > th,

.table-bordered > thead > tr > td,

.table-bordered > thead > tr > th {

    border: 1px solid #ddd;

}

.table-bordered > thead > tr > td,

.table-bordered > thead > tr > th {

    border-bottom-width: 2px;

}

.table-striped > tbody > tr:nth-of-type(odd) {

    background-color: #f9f9f9;

}

.table-hover > tbody > tr:hover {

    background-color: #f5f5f5;

}

table col[class*="col-"] {

    position: static;

    display: table-column;

    float: none;

}

table td[class*="col-"],

table th[class*="col-"] {

    position: static;

    display: table-cell;

    float: none;

}

.table > tbody > tr.active > td,

.table > tbody > tr.active > th,

.table > tbody > tr > td.active,

.table > tbody > tr > th.active,

.table > tfoot > tr.active > td,

.table > tfoot > tr.active > th,

.table > tfoot > tr > td.active,

.table > tfoot > tr > th.active,

.table > thead > tr.active > td,

.table > thead > tr.active > th,

.table > thead > tr > td.active,

.table > thead > tr > th.active {

    background-color: #f5f5f5;

}

.table-hover > tbody > tr.active:hover > td,

.table-hover > tbody > tr.active:hover > th,

.table-hover > tbody > tr:hover > .active,

.table-hover > tbody > tr > td.active:hover,

.table-hover > tbody > tr > th.active:hover {

    background-color: #e8e8e8;

}

.table > tbody > tr.success > td,

.table > tbody > tr.success > th,

.table > tbody > tr > td.success,

.table > tbody > tr > th.success,

.table > tfoot > tr.success > td,

.table > tfoot > tr.success > th,

.table > tfoot > tr > td.success,

.table > tfoot > tr > th.success,

.table > thead > tr.success > td,

.table > thead > tr.success > th,

.table > thead > tr > td.success,

.table > thead > tr > th.success {

    background-color: #dff0d8;

}

.table-hover > tbody > tr.success:hover > td,

.table-hover > tbody > tr.success:hover > th,

.table-hover > tbody > tr:hover > .success,

.table-hover > tbody > tr > td.success:hover,

.table-hover > tbody > tr > th.success:hover {

    background-color: #d0e9c6;

}

.table > tbody > tr.info > td,

.table > tbody > tr.info > th,

.table > tbody > tr > td.info,

.table > tbody > tr > th.info,

.table > tfoot > tr.info > td,

.table > tfoot > tr.info > th,

.table > tfoot > tr > td.info,

.table > tfoot > tr > th.info,

.table > thead > tr.info > td,

.table > thead > tr.info > th,

.table > thead > tr > td.info,

.table > thead > tr > th.info {

    background-color: #d9edf7;

}

.table-hover > tbody > tr.info:hover > td,

.table-hover > tbody > tr.info:hover > th,

.table-hover > tbody > tr:hover > .info,

.table-hover > tbody > tr > td.info:hover,

.table-hover > tbody > tr > th.info:hover {

    background-color: #c4e3f3;

}

.table > tbody > tr.warning > td,

.table > tbody > tr.warning > th,

.table > tbody > tr > td.warning,

.table > tbody > tr > th.warning,

.table > tfoot > tr.warning > td,

.table > tfoot > tr.warning > th,

.table > tfoot > tr > td.warning,

.table > tfoot > tr > th.warning,

.table > thead > tr.warning > td,

.table > thead > tr.warning > th,

.table > thead > tr > td.warning,

.table > thead > tr > th.warning {

    background-color: #fcf8e3;

}

.table-hover > tbody > tr.warning:hover > td,

.table-hover > tbody > tr.warning:hover > th,

.table-hover > tbody > tr:hover > .warning,

.table-hover > tbody > tr > td.warning:hover,

.table-hover > tbody > tr > th.warning:hover {

    background-color: #faf2cc;

}

.table > tbody > tr.danger > td,

.table > tbody > tr.danger > th,

.table > tbody > tr > td.danger,

.table > tbody > tr > th.danger,

.table > tfoot > tr.danger > td,

.table > tfoot > tr.danger > th,

.table > tfoot > tr > td.danger,

.table > tfoot > tr > th.danger,

.table > thead > tr.danger > td,

.table > thead > tr.danger > th,

.table > thead > tr > td.danger,

.table > thead > tr > th.danger {

    background-color: #f2dede;

}

.table-hover > tbody > tr.danger:hover > td,

.table-hover > tbody > tr.danger:hover > th,

.table-hover > tbody > tr:hover > .danger,

.table-hover > tbody > tr > td.danger:hover,

.table-hover > tbody > tr > th.danger:hover {

    background-color: #ebcccc;

}

.table-responsive {

    min-height: 0.01%;

    overflow-x: auto;

}

@media screen and (max-width: 767px) {

    .table-responsive {

        width: 100%;

        margin-bottom: 15px;

        overflow-y: hidden;

        -ms-overflow-style: -ms-autohiding-scrollbar;

        border: 1px solid #ddd;

    }

    .table-responsive > .table {

        margin-bottom: 0;

    }

    .table-responsive > .table > tbody > tr > td,

    .table-responsive > .table > tbody > tr > th,

    .table-responsive > .table > tfoot > tr > td,

    .table-responsive > .table > tfoot > tr > th,

    .table-responsive > .table > thead > tr > td,

    .table-responsive > .table > thead > tr > th {

        white-space: nowrap;

    }

    .table-responsive > .table-bordered {

        border: 0;

    }

    .table-responsive > .table-bordered > tbody > tr > td:first-child,

    .table-responsive > .table-bordered > tbody > tr > th:first-child,

    .table-responsive > .table-bordered > tfoot > tr > td:first-child,

    .table-responsive > .table-bordered > tfoot > tr > th:first-child,

    .table-responsive > .table-bordered > thead > tr > td:first-child,

    .table-responsive > .table-bordered > thead > tr > th:first-child {

        border-left: 0;

    }

    .table-responsive > .table-bordered > tbody > tr > td:last-child,

    .table-responsive > .table-bordered > tbody > tr > th:last-child,

    .table-responsive > .table-bordered > tfoot > tr > td:last-child,

    .table-responsive > .table-bordered > tfoot > tr > th:last-child,

    .table-responsive > .table-bordered > thead > tr > td:last-child,

    .table-responsive > .table-bordered > thead > tr > th:last-child {

        border-right: 0;

    }

    .table-responsive > .table-bordered > tbody > tr:last-child > td,

    .table-responsive > .table-bordered > tbody > tr:last-child > th,

    .table-responsive > .table-bordered > tfoot > tr:last-child > td,

    .table-responsive > .table-bordered > tfoot > tr:last-child > th {

        border-bottom: 0;

    }

}

fieldset {

    min-width: 0;

    padding: 0;

    margin: 0;

    border: 0;

}

legend {

    display: block;

    width: 100%;

    padding: 0;

    margin-bottom: 20px;

    font-size: 21px;

    line-height: inherit;

    color: #333;

    border: 0;

    border-bottom: 1px solid #e5e5e5;

}

label {

    display: inline-block;

    max-width: 100%;

    margin-bottom: 5px;

    font-weight: 700;

}

input[type="search"] {

    -webkit-box-sizing: border-box;

    -moz-box-sizing: border-box;

    box-sizing: border-box;

}

input[type="checkbox"],

input[type="radio"] {

    margin: 4px 0 0;

    margin-top: 1px \9;

    line-height: normal;

}

input[type="file"] {

    display: block;

}

input[type="range"] {

    display: block;

    width: 100%;

}

select[multiple],

select[size] {

    height: auto;

}

input[type="file"]:focus,

input[type="checkbox"]:focus,

input[type="radio"]:focus {

    outline: thin dotted;

    outline: 5px auto -webkit-focus-ring-color;

    outline-offset: -2px;

}

output {

    display: block;

    padding-top: 7px;

    font-size: 14px;

    line-height: 1.42857143;

    color: #555;

}

.form-control {

    display: block;

    width: 100%;

    height: 34px;

    padding: 6px 12px;

    font-size: 14px;

    line-height: 1.42857143;

    color: #555;

    background-color: #fff;

    background-image: none;

    border: 1px solid #ccc;

    border-radius: 4px;

    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);

    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);

    -webkit-transition: border-color ease-in-out 0.15s, -webkit-box-shadow ease-in-out 0.15s;

    -o-transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;

    transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;

    border-radius: 6px;

}

.form-control:focus {

    border-color: #66afe9;

    outline: 0;

    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);

    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);

}

.form-control::-moz-placeholder {

    color: #999;

    opacity: 1;

}

.form-control:-ms-input-placeholder {

    color: #999;

}

.form-control::-webkit-input-placeholder {

    color: #999;

}

.form-control[disabled],

.form-control[readonly],

fieldset[disabled] .form-control {

    background-color: #eee;

    opacity: 1;

}

.form-control[disabled],

fieldset[disabled] .form-control {

    cursor: not-allowed;

}

textarea.form-control {

    height: auto;

}

input[type="search"] {

    -webkit-appearance: none;

}

@media screen and (-webkit-min-device-pixel-ratio: 0) {

    input[type="date"],

    input[type="time"],

    input[type="datetime-local"],

    input[type="month"] {

        line-height: 34px;

    }

    .input-group-sm input[type="date"],

    .input-group-sm input[type="time"],

    .input-group-sm input[type="datetime-local"],

    .input-group-sm input[type="month"],

    input[type="date"].input-sm,

    input[type="time"].input-sm,

    input[type="datetime-local"].input-sm,

    input[type="month"].input-sm {

        line-height: 30px;

    }

    .input-group-lg input[type="date"],

    .input-group-lg input[type="time"],

    .input-group-lg input[type="datetime-local"],

    .input-group-lg input[type="month"],

    input[type="date"].input-lg,

    input[type="time"].input-lg,

    input[type="datetime-local"].input-lg,

    input[type="month"].input-lg {

        line-height: 46px;

    }

}

.form-group {

    margin-bottom: 15px;

}

.checkbox,

.radio {

    position: relative;

    display: block;

    margin-top: 10px;

    margin-bottom: 10px;

}

.checkbox label,

.radio label {

    min-height: 20px;

    padding-left: 20px;

    margin-bottom: 0;

    font-weight: 400;

    cursor: pointer;

}

.checkbox input[type="checkbox"],

.checkbox-inline input[type="checkbox"],

.radio input[type="radio"],

.radio-inline input[type="radio"] {

    position: absolute;

    margin-top: 4px \9;

    margin-left: -20px;

}

.checkbox + .checkbox,

.radio + .radio {

    margin-top: -5px;

}

.checkbox-inline,

.radio-inline {

    position: relative;

    display: inline-block;

    padding-left: 20px;

    margin-bottom: 0;

    font-weight: 400;

    vertical-align: middle;

    cursor: pointer;

}

.checkbox-inline + .checkbox-inline,

.radio-inline + .radio-inline {

    margin-top: 0;

    margin-left: 10px;

}

fieldset[disabled] input[type="checkbox"],

fieldset[disabled] input[type="radio"],

input[type="checkbox"].disabled,

input[type="checkbox"][disabled],

input[type="radio"].disabled,

input[type="radio"][disabled] {

    cursor: not-allowed;

}

.checkbox-inline.disabled,

.radio-inline.disabled,

fieldset[disabled] .checkbox-inline,

fieldset[disabled] .radio-inline {

    cursor: not-allowed;

}

.checkbox.disabled label,

.radio.disabled label,

fieldset[disabled] .checkbox label,

fieldset[disabled] .radio label {

    cursor: not-allowed;

}

.form-control-static {

    min-height: 34px;

    padding-top: 7px;

    padding-bottom: 7px;

    margin-bottom: 0;

}

.form-control-static.input-lg,

.form-control-static.input-sm {

    padding-right: 0;

    padding-left: 0;

}

.input-sm {

    height: 30px;

    padding: 5px 10px;

    font-size: 12px;

    line-height: 1.5;

    border-radius: 3px;

}

select.input-sm {

    height: 30px;

    line-height: 30px;

}

select[multiple].input-sm,

textarea.input-sm {

    height: auto;

}

.form-group-sm .form-control {

    height: 30px;

    padding: 5px 10px;

    font-size: 12px;

    line-height: 1.5;

    border-radius: 3px;

}

select.form-group-sm .form-control {

    height: 30px;

    line-height: 30px;

}

select[multiple].form-group-sm .form-control,

textarea.form-group-sm .form-control {

    height: auto;

}

.form-group-sm .form-control-static {

    height: 30px;

    min-height: 32px;

    padding: 5px 10px;

    font-size: 12px;

    line-height: 1.5;

}

.input-lg {

    height: 46px;

    padding: 10px 16px;

    font-size: 18px;

    line-height: 1.3333333;

    border-radius: 6px;

}

select.input-lg {

    height: 46px;

    line-height: 46px;

}

select[multiple].input-lg,

textarea.input-lg {

    height: auto;

}

.form-group-lg .form-control {

    height: 46px;

    padding: 10px 16px;

    font-size: 18px;

    line-height: 1.3333333;

    border-radius: 6px;

}

select.form-group-lg .form-control {

    height: 46px;

    line-height: 46px;

}

select[multiple].form-group-lg .form-control,

textarea.form-group-lg .form-control {

    height: auto;

}

.form-group-lg .form-control-static {

    height: 46px;

    min-height: 38px;

    padding: 10px 16px;

    font-size: 18px;

    line-height: 1.3333333;

}

.has-feedback {

    position: relative;

}

.has-feedback .form-control {

    padding-right: 42.5px;

}

.form-control-feedback {

    position: absolute;

    top: 0;

    right: 0;

    z-index: 2;

    display: block;

    width: 34px;

    height: 34px;

    line-height: 34px;

    text-align: center;

    pointer-events: none;

}

.input-lg + .form-control-feedback {

    width: 46px;

    height: 46px;

    line-height: 46px;

}

.input-sm + .form-control-feedback {

    width: 30px;

    height: 30px;

    line-height: 30px;

}

.has-success .checkbox,

.has-success .checkbox-inline,

.has-success .control-label,

.has-success .help-block,

.has-success .radio,

.has-success .radio-inline,

.has-success.checkbox label,

.has-success.checkbox-inline label,

.has-success.radio label,

.has-success.radio-inline label {

    color: #3c763d;

}

.has-success .form-control {

    border-color: #3c763d;

    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);

    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);

}

.has-success .form-control:focus {

    border-color: #2b542c;

    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #67b168;

    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #67b168;

}

.has-success .input-group-addon {

    color: #3c763d;

    background-color: #dff0d8;

    border-color: #3c763d;

}

.has-success .form-control-feedback {

    color: #3c763d;

}

.has-warning .checkbox,

.has-warning .checkbox-inline,

.has-warning .control-label,

.has-warning .help-block,

.has-warning .radio,

.has-warning .radio-inline,

.has-warning.checkbox label,

.has-warning.checkbox-inline label,

.has-warning.radio label,

.has-warning.radio-inline label {

    color: #8a6d3b;

}

.has-warning .form-control {

    border-color: #8a6d3b;

    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);

    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);

}

.has-warning .form-control:focus {

    border-color: #66512c;

    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #c0a16b;

    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #c0a16b;

}

.has-warning .input-group-addon {

    color: #8a6d3b;

    background-color: #fcf8e3;

    border-color: #8a6d3b;

}

.has-warning .form-control-feedback {

    color: #8a6d3b;

}

.has-error .checkbox,

.has-error .checkbox-inline,

.has-error .control-label,

.has-error .help-block,

.has-error .radio,

.has-error .radio-inline,

.has-error.checkbox label,

.has-error.checkbox-inline label,

.has-error.radio label,

.has-error.radio-inline label {

    color: #a94442;

}

.has-error .form-control {

    border-color: #a94442;

    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);

    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);

}

.has-error .form-control:focus {

    border-color: #843534;

    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #ce8483;

    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #ce8483;

}

.has-error .input-group-addon {

    color: #a94442;

    background-color: #f2dede;

    border-color: #a94442;

}

.has-error .form-control-feedback {

    color: #a94442;

}

.has-feedback label ~ .form-control-feedback {

    top: 25px;

}

.has-feedback label.sr-only ~ .form-control-feedback {

    top: 0;

}

.help-block {

    display: block;

    margin-top: 5px;

    margin-bottom: 10px;

    color: #737373;

}

@media (min-width: 768px) {

    .form-inline .form-group {

        display: inline-block;

        margin-bottom: 0;

        vertical-align: middle;

    }

    .form-inline .form-control {

        display: inline-block;

        width: auto;

        vertical-align: middle;

    }

    .form-inline .form-control-static {

        display: inline-block;

    }

    .form-inline .input-group {

        display: inline-table;

        vertical-align: middle;

    }

    .form-inline .input-group .form-control,

    .form-inline .input-group .input-group-addon,

    .form-inline .input-group .input-group-btn {

        width: auto;

    }

    .form-inline .input-group > .form-control {

        width: 100%;

    }

    .form-inline .control-label {

        margin-bottom: 0;

        vertical-align: middle;

    }

    .form-inline .checkbox,

    .form-inline .radio {

        display: inline-block;

        margin-top: 0;

        margin-bottom: 0;

        vertical-align: middle;

    }

    .form-inline .checkbox label,

    .form-inline .radio label {

        padding-left: 0;

    }

    .form-inline .checkbox input[type="checkbox"],

    .form-inline .radio input[type="radio"] {

        position: relative;

        margin-left: 0;

    }

    .form-inline .has-feedback .form-control-feedback {

        top: 0;

    }

}

.form-horizontal .checkbox,

.form-horizontal .checkbox-inline,

.form-horizontal .radio,

.form-horizontal .radio-inline {

    padding-top: 7px;

    margin-top: 0;

    margin-bottom: 0;

}

.form-horizontal .checkbox,

.form-horizontal .radio {

    min-height: 27px;

}

.form-horizontal .form-group {

    margin-right: -15px;

    margin-left: -15px;

}

@media (min-width: 768px) {

    .form-horizontal .control-label {

        padding-top: 7px;

        margin-bottom: 0;

        text-align: right;

    }

}

.form-horizontal .has-feedback .form-control-feedback {

    right: 15px;

}

@media (min-width: 768px) {

    .form-horizontal .form-group-lg .control-label {

        padding-top: 14.33px;

    }

}

@media (min-width: 768px) {

    .form-horizontal .form-group-sm .control-label {

        padding-top: 6px;

    }

}

.btn {

    display: inline-block;

    padding: 6px 12px;

    margin-bottom: 0;

    font-size: 14px;

    font-weight: 400;

    line-height: 1.42857143;

    text-align: center;

    white-space: nowrap;

    vertical-align: middle;

    -ms-touch-action: manipulation;

    touch-action: manipulation;

    cursor: pointer;

    -webkit-user-select: none;

    -moz-user-select: none;

    -ms-user-select: none;

    user-select: none;

    background-image: none;

    border: 1px solid transparent;

    border-radius: 4px;

}

.btn.active.focus,

.btn.active:focus,

.btn.focus,

.btn:active.focus,

.btn:active:focus,

.btn:focus {

    outline: thin dotted;

    outline: 5px auto -webkit-focus-ring-color;

    outline-offset: -2px;

}

.btn.focus,

.btn:focus,

.btn:hover {

    color: #333;

    text-decoration: none;

}

.btn.active,

.btn:active {

    background-image: none;

    outline: 0;

    -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);

    box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);

}

.btn.disabled,

.btn[disabled],

fieldset[disabled] .btn {

    pointer-events: none;

    cursor: not-allowed;

    filter: alpha(opacity=65);

    -webkit-box-shadow: none;

    box-shadow: none;

    opacity: 0.65;

}

.btn-default {

    color: #333;

    background-color: #fff;

    border-color: #ccc;

}

.btn-default.active,

.btn-default.focus,

.btn-default:active,

.btn-default:focus,

.btn-default:hover,

.open > .dropdown-toggle.btn-default {

    color: #333;

    background-color: #e6e6e6;

    border-color: #adadad;

}

.btn-default.active,

.btn-default:active,

.open > .dropdown-toggle.btn-default {

    background-image: none;

}

.btn-default.disabled,

.btn-default.disabled.active,

.btn-default.disabled.focus,

.btn-default.disabled:active,

.btn-default.disabled:focus,

.btn-default.disabled:hover,

.btn-default[disabled],

.btn-default[disabled].active,

.btn-default[disabled].focus,

.btn-default[disabled]:active,

.btn-default[disabled]:focus,

.btn-default[disabled]:hover,

fieldset[disabled] .btn-default,

fieldset[disabled] .btn-default.active,

fieldset[disabled] .btn-default.focus,

fieldset[disabled] .btn-default:active,

fieldset[disabled] .btn-default:focus,

fieldset[disabled] .btn-default:hover {

    background-color: #fff;

    border-color: #ccc;

}

.btn-default .badge {

    color: #fff;

    background-color: #333;

}

.btn-primary {

    color: #fff;

    background-color: #337ab7;

    border-color: #2e6da4;

}

.btn-primary.active,

.btn-primary.focus,

.btn-primary:active,

.btn-primary:focus,

.btn-primary:hover,

.open > .dropdown-toggle.btn-primary {

    color: #fff;

    background-color: #286090;

    border-color: #204d74;

}

.btn-primary.active,

.btn-primary:active,

.open > .dropdown-toggle.btn-primary {

    background-image: none;

}

.btn-primary.disabled,

.btn-primary.disabled.active,

.btn-primary.disabled.focus,

.btn-primary.disabled:active,

.btn-primary.disabled:focus,

.btn-primary.disabled:hover,

.btn-primary[disabled],

.btn-primary[disabled].active,

.btn-primary[disabled].focus,

.btn-primary[disabled]:active,

.btn-primary[disabled]:focus,

.btn-primary[disabled]:hover,

fieldset[disabled] .btn-primary,

fieldset[disabled] .btn-primary.active,

fieldset[disabled] .btn-primary.focus,

fieldset[disabled] .btn-primary:active,

fieldset[disabled] .btn-primary:focus,

fieldset[disabled] .btn-primary:hover {

    background-color: #337ab7;

    border-color: #2e6da4;

}

.btn-primary .badge {

    color: #337ab7;

    background-color: #fff;

}

.btn-success {

    color: #fff;

    background-color: #5cb85c;

    border-color: #4cae4c;

}

.btn-success.active,

.btn-success.focus,

.btn-success:active,

.btn-success:focus,

.btn-success:hover,

.open > .dropdown-toggle.btn-success {

    color: #fff;

    background-color: #449d44;

    border-color: #398439;

}

.btn-success.active,

.btn-success:active,

.open > .dropdown-toggle.btn-success {

    background-image: none;

}

.btn-success.disabled,

.btn-success.disabled.active,

.btn-success.disabled.focus,

.btn-success.disabled:active,

.btn-success.disabled:focus,

.btn-success.disabled:hover,

.btn-success[disabled],

.btn-success[disabled].active,

.btn-success[disabled].focus,

.btn-success[disabled]:active,

.btn-success[disabled]:focus,

.btn-success[disabled]:hover,

fieldset[disabled] .btn-success,

fieldset[disabled] .btn-success.active,

fieldset[disabled] .btn-success.focus,

fieldset[disabled] .btn-success:active,

fieldset[disabled] .btn-success:focus,

fieldset[disabled] .btn-success:hover {

    background-color: #5cb85c;

    border-color: #4cae4c;

}

.btn-success .badge {

    color: #5cb85c;

    background-color: #fff;

}

.btn-info {

    color: #fff;

    background-color: #5bc0de;

    border-color: #46b8da;

}

.btn-info.active,

.btn-info.focus,

.btn-info:active,

.btn-info:focus,

.btn-info:hover,

.open > .dropdown-toggle.btn-info {

    color: #fff;

    background-color: #31b0d5;

    border-color: #269abc;

}

.btn-info.active,

.btn-info:active,

.open > .dropdown-toggle.btn-info {

    background-image: none;

}

.btn-info.disabled,

.btn-info.disabled.active,

.btn-info.disabled.focus,

.btn-info.disabled:active,

.btn-info.disabled:focus,

.btn-info.disabled:hover,

.btn-info[disabled],

.btn-info[disabled].active,

.btn-info[disabled].focus,

.btn-info[disabled]:active,

.btn-info[disabled]:focus,

.btn-info[disabled]:hover,

fieldset[disabled] .btn-info,

fieldset[disabled] .btn-info.active,

fieldset[disabled] .btn-info.focus,

fieldset[disabled] .btn-info:active,

fieldset[disabled] .btn-info:focus,

fieldset[disabled] .btn-info:hover {

    background-color: #5bc0de;

    border-color: #46b8da;

}

.btn-info .badge {

    color: #5bc0de;

    background-color: #fff;

}

.btn-warning {

    color: #fff;

    background-color: #f0ad4e;

    border-color: #eea236;

}

.btn-warning.active,

.btn-warning.focus,

.btn-warning:active,

.btn-warning:focus,

.btn-warning:hover,

.open > .dropdown-toggle.btn-warning {

    color: #fff;

    background-color: #ec971f;

    border-color: #d58512;

}

.btn-warning.active,

.btn-warning:active,

.open > .dropdown-toggle.btn-warning {

    background-image: none;

}

.btn-warning.disabled,

.btn-warning.disabled.active,

.btn-warning.disabled.focus,

.btn-warning.disabled:active,

.btn-warning.disabled:focus,

.btn-warning.disabled:hover,

.btn-warning[disabled],

.btn-warning[disabled].active,

.btn-warning[disabled].focus,

.btn-warning[disabled]:active,

.btn-warning[disabled]:focus,

.btn-warning[disabled]:hover,

fieldset[disabled] .btn-warning,

fieldset[disabled] .btn-warning.active,

fieldset[disabled] .btn-warning.focus,

fieldset[disabled] .btn-warning:active,

fieldset[disabled] .btn-warning:focus,

fieldset[disabled] .btn-warning:hover {

    background-color: #f0ad4e;

    border-color: #eea236;

}

.btn-warning .badge {

    color: #f0ad4e;

    background-color: #fff;

}

.btn-danger {

    color: #fff;

    background-color: #d9534f;

    border-color: #d43f3a;

}

.btn-danger.active,

.btn-danger.focus,

.btn-danger:active,

.btn-danger:focus,

.btn-danger:hover,

.open > .dropdown-toggle.btn-danger {

    color: #fff;

    background-color: #c9302c;

    border-color: #ac2925;

}

.btn-danger.active,

.btn-danger:active,

.open > .dropdown-toggle.btn-danger {

    background-image: none;

}

.btn-danger.disabled,

.btn-danger.disabled.active,

.btn-danger.disabled.focus,

.btn-danger.disabled:active,

.btn-danger.disabled:focus,

.btn-danger.disabled:hover,

.btn-danger[disabled],

.btn-danger[disabled].active,

.btn-danger[disabled].focus,

.btn-danger[disabled]:active,

.btn-danger[disabled]:focus,

.btn-danger[disabled]:hover,

fieldset[disabled] .btn-danger,

fieldset[disabled] .btn-danger.active,

fieldset[disabled] .btn-danger.focus,

fieldset[disabled] .btn-danger:active,

fieldset[disabled] .btn-danger:focus,

fieldset[disabled] .btn-danger:hover {

    background-color: #d9534f;

    border-color: #d43f3a;

}

.btn-danger .badge {

    color: #d9534f;

    background-color: #fff;

}

.btn-link {

    font-weight: 400;

    color: #337ab7;

    border-radius: 0;

}

.btn-link,

.btn-link.active,

.btn-link:active,

.btn-link[disabled],

fieldset[disabled] .btn-link {

    background-color: transparent;

    -webkit-box-shadow: none;

    box-shadow: none;

}

.btn-link,

.btn-link:active,

.btn-link:focus,

.btn-link:hover {

    border-color: transparent;

}

.btn-link:focus,

.btn-link:hover {

    color: #23527c;

    text-decoration: underline;

    background-color: transparent;

}

.btn-link[disabled]:focus,

.btn-link[disabled]:hover,

fieldset[disabled] .btn-link:focus,

fieldset[disabled] .btn-link:hover {

    color: #777;

    text-decoration: none;

}

.btn-group-lg > .btn,

.btn-lg {

    padding: 10px 16px;

    font-size: 18px;

    line-height: 1.3333333;

    border-radius: 6px;

}

.btn-group-sm > .btn,

.btn-sm {

    padding: 5px 10px;

    font-size: 12px;

    line-height: 1.5;

    border-radius: 3px;

}

.btn-group-xs > .btn,

.btn-xs {

    padding: 1px 5px;

    font-size: 12px;

    line-height: 1.5;

    border-radius: 3px;

}

.btn-block {

    display: block;

    width: 100%;

}

.btn-block + .btn-block {

    margin-top: 5px;

}

input[type="button"].btn-block,

input[type="reset"].btn-block,

input[type="submit"].btn-block {

    width: 100%;

}

.fade {

    opacity: 0;

    -webkit-transition: opacity 0.15s linear;

    -o-transition: opacity 0.15s linear;

    transition: opacity 0.15s linear;

}

.fade.in {

    opacity: 1;

}

.collapse {

    display: none;

}

.collapse.in {

    display: block;

}

tr.collapse.in {

    display: table-row;

}

tbody.collapse.in {

    display: table-row-group;

}

.collapsing {

    position: relative;

    height: 0;

    overflow: hidden;

    -webkit-transition-timing-function: ease;

    -o-transition-timing-function: ease;

    transition-timing-function: ease;

    -webkit-transition-duration: 0.35s;

    -o-transition-duration: 0.35s;

    transition-duration: 0.35s;

    -webkit-transition-property: height, visibility;

    -o-transition-property: height, visibility;

    transition-property: height, visibility;

}

.caret {

    display: inline-block;

    width: 0;

    height: 0;

    margin-left: 2px;

    vertical-align: middle;

    border-top: 4px dashed;

    border-right: 4px solid transparent;

    border-left: 4px solid transparent;

}

.dropdown,

.dropup {

    position: relative;

}

.dropdown-toggle:focus {

    outline: 0;

}

.dropdown-menu {

    position: absolute;

    top: 100%;

    left: 0;

    z-index: 1000;

    display: none;

    float: left;

    min-width: 160px;

    padding: 5px 0;

    margin: 2px 0 0;

    font-size: 14px;

    text-align: left;

    list-style: none;

    background-color: #fff;

    -webkit-background-clip: padding-box;

    background-clip: padding-box;

    border: 1px solid #ccc;

    border: 1px solid rgba(0, 0, 0, 0.15);

    border-radius: 4px;

    -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);

    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);

}

.dropdown-menu.pull-right {

    right: 0;

    left: auto;

}

.dropdown-menu .divider {

    height: 1px;

    margin: 9px 0;

    overflow: hidden;

    background-color: #e5e5e5;

}

.dropdown-menu > li > a {

    display: block;

    padding: 3px 20px;

    clear: both;

    font-weight: 400;

    line-height: 1.42857143;

    color: #333;

    white-space: nowrap;

}

.dropdown-menu > li > a:focus,

.dropdown-menu > li > a:hover {

    color: #262626;

    text-decoration: none;

    background-color: #f5f5f5;

}

.dropdown-menu > .active > a,

.dropdown-menu > .active > a:focus,

.dropdown-menu > .active > a:hover {

    color: #fff;

    text-decoration: none;

    background-color: #337ab7;

    outline: 0;

}

.dropdown-menu > .disabled > a,

.dropdown-menu > .disabled > a:focus,

.dropdown-menu > .disabled > a:hover {

    color: #777;

}

.dropdown-menu > .disabled > a:focus,

.dropdown-menu > .disabled > a:hover {

    text-decoration: none;

    cursor: not-allowed;

    background-color: transparent;

    background-image: none;

    filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);

}

.open > .dropdown-menu {

    display: block;

}

.open > a {

    outline: 0;

}

.dropdown-menu-right {

    right: 0;

    left: auto;

}

.dropdown-menu-left {

    right: auto;

    left: 0;

}

.dropdown-header {

    display: block;

    padding: 3px 20px;

    font-size: 12px;

    line-height: 1.42857143;

    color: #777;

    white-space: nowrap;

}

.dropdown-backdrop {

    position: fixed;

    top: 0;

    right: 0;

    bottom: 0;

    left: 0;

    z-index: 990;

}

.pull-right > .dropdown-menu {

    right: 0;

    left: auto;

}

.dropup .caret,

.navbar-fixed-bottom .dropdown .caret {

    content: "";

    border-top: 0;

    border-bottom: 4px solid;

}

.dropup .dropdown-menu,

.navbar-fixed-bottom .dropdown .dropdown-menu {

    top: auto;

    bottom: 100%;

    margin-bottom: 2px;

}

@media (min-width: 768px) {

    .navbar-right .dropdown-menu {

        right: 0;

        left: auto;

    }

    .navbar-right .dropdown-menu-left {

        right: auto;

        left: 0;

    }

}

.btn-group,

.btn-group-vertical {

    position: relative;

    display: inline-block;

    vertical-align: middle;

}

.btn-group-vertical > .btn,

.btn-group > .btn {

    position: relative;

    float: left;

}

.btn-group-vertical > .btn.active,

.btn-group-vertical > .btn:active,

.btn-group-vertical > .btn:focus,

.btn-group-vertical > .btn:hover,

.btn-group > .btn.active,

.btn-group > .btn:active,

.btn-group > .btn:focus,

.btn-group > .btn:hover {

    z-index: 2;

}

.btn-group .btn + .btn,

.btn-group .btn + .btn-group,

.btn-group .btn-group + .btn,

.btn-group .btn-group + .btn-group {

    margin-left: -1px;

}

.btn-toolbar {

    margin-left: -5px;

}

.btn-toolbar .btn-group,

.btn-toolbar .input-group {

    float: left;

}

.btn-toolbar > .btn,

.btn-toolbar > .btn-group,

.btn-toolbar > .input-group {

    margin-left: 5px;

}

.btn-group > .btn:not(:first-child):not(:last-child):not(.dropdown-toggle) {

    border-radius: 0;

}

.btn-group > .btn:first-child {

    margin-left: 0;

}

.btn-group > .btn:first-child:not(:last-child):not(.dropdown-toggle) {

    border-top-right-radius: 0;

    border-bottom-right-radius: 0;

}

.btn-group > .btn:last-child:not(:first-child),

.btn-group > .dropdown-toggle:not(:first-child) {

    border-top-left-radius: 0;

    border-bottom-left-radius: 0;

}

.btn-group > .btn-group {

    float: left;

}

.btn-group > .btn-group:not(:first-child):not(:last-child) > .btn {

    border-radius: 0;

}

.btn-group > .btn-group:first-child:not(:last-child) > .btn:last-child,

.btn-group > .btn-group:first-child:not(:last-child) > .dropdown-toggle {

    border-top-right-radius: 0;

    border-bottom-right-radius: 0;

}

.btn-group > .btn-group:last-child:not(:first-child) > .btn:first-child {

    border-top-left-radius: 0;

    border-bottom-left-radius: 0;

}

.btn-group .dropdown-toggle:active,

.btn-group.open .dropdown-toggle {

    outline: 0;

}

.btn-group > .btn + .dropdown-toggle {

    padding-right: 8px;

    padding-left: 8px;

}

.btn-group > .btn-lg + .dropdown-toggle {

    padding-right: 12px;

    padding-left: 12px;

}

.btn-group.open .dropdown-toggle {

    -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);

    box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);

}

.btn-group.open .dropdown-toggle.btn-link {

    -webkit-box-shadow: none;

    box-shadow: none;

}

.btn .caret {

    margin-left: 0;

}

.btn-lg .caret {

    border-width: 5px 5px 0;

    border-bottom-width: 0;

}

.dropup .btn-lg .caret {

    border-width: 0 5px 5px;

}

.btn-group-vertical > .btn,

.btn-group-vertical > .btn-group,

.btn-group-vertical > .btn-group > .btn {

    display: block;

    float: none;

    width: 100%;

    max-width: 100%;

}

.btn-group-vertical > .btn-group > .btn {

    float: none;

}

.btn-group-vertical > .btn + .btn,

.btn-group-vertical > .btn + .btn-group,

.btn-group-vertical > .btn-group + .btn,

.btn-group-vertical > .btn-group + .btn-group {

    margin-top: -1px;

    margin-left: 0;

}

.btn-group-vertical > .btn:not(:first-child):not(:last-child) {

    border-radius: 0;

}

.btn-group-vertical > .btn:first-child:not(:last-child) {

    border-top-right-radius: 4px;

    border-bottom-right-radius: 0;

    border-bottom-left-radius: 0;

}

.btn-group-vertical > .btn:last-child:not(:first-child) {

    border-top-left-radius: 0;

    border-top-right-radius: 0;

    border-bottom-left-radius: 4px;

}

.btn-group-vertical > .btn-group:not(:first-child):not(:last-child) > .btn {

    border-radius: 0;

}

.btn-group-vertical > .btn-group:first-child:not(:last-child) > .btn:last-child,

.btn-group-vertical > .btn-group:first-child:not(:last-child) > .dropdown-toggle {

    border-bottom-right-radius: 0;

    border-bottom-left-radius: 0;

}

.btn-group-vertical > .btn-group:last-child:not(:first-child) > .btn:first-child {

    border-top-left-radius: 0;

    border-top-right-radius: 0;

}

.btn-group-justified {

    display: table;

    width: 100%;

    table-layout: fixed;

    border-collapse: separate;

}

.btn-group-justified > .btn,

.btn-group-justified > .btn-group {

    display: table-cell;

    float: none;

    width: 1%;

}

.btn-group-justified > .btn-group .btn {

    width: 100%;

}

.btn-group-justified > .btn-group .dropdown-menu {

    left: auto;

}

[data-toggle="buttons"] > .btn input[type="checkbox"],

[data-toggle="buttons"] > .btn input[type="radio"],

[data-toggle="buttons"] > .btn-group > .btn input[type="checkbox"],

[data-toggle="buttons"] > .btn-group > .btn input[type="radio"] {

    position: absolute;

    clip: rect(0, 0, 0, 0);

    pointer-events: none;

}

.input-group {

    position: relative;

    display: table;

    border-collapse: separate;

}

.input-group[class*="col-"] {

    float: none;

    padding-right: 0;

    padding-left: 0;

}

.input-group .form-control {

    position: relative;

    z-index: 2;

    float: left;

    width: 100%;

    margin-bottom: 0;

}

.input-group-lg > .form-control,

.input-group-lg > .input-group-addon,

.input-group-lg > .input-group-btn > .btn {

    height: 46px;

    padding: 10px 16px;

    font-size: 18px;

    line-height: 1.3333333;

    border-radius: 6px;

}

select.input-group-lg > .form-control,

select.input-group-lg > .input-group-addon,

select.input-group-lg > .input-group-btn > .btn {

    height: 46px;

    line-height: 46px;

}

select[multiple].input-group-lg > .form-control,

select[multiple].input-group-lg > .input-group-addon,

select[multiple].input-group-lg > .input-group-btn > .btn,

textarea.input-group-lg > .form-control,

textarea.input-group-lg > .input-group-addon,

textarea.input-group-lg > .input-group-btn > .btn {

    height: auto;

}

.input-group-sm > .form-control,

.input-group-sm > .input-group-addon,

.input-group-sm > .input-group-btn > .btn {

    height: 30px;

    padding: 5px 10px;

    font-size: 12px;

    line-height: 1.5;

    border-radius: 3px;

}

select.input-group-sm > .form-control,

select.input-group-sm > .input-group-addon,

select.input-group-sm > .input-group-btn > .btn {

    height: 30px;

    line-height: 30px;

}

select[multiple].input-group-sm > .form-control,

select[multiple].input-group-sm > .input-group-addon,

select[multiple].input-group-sm > .input-group-btn > .btn,

textarea.input-group-sm > .form-control,

textarea.input-group-sm > .input-group-addon,

textarea.input-group-sm > .input-group-btn > .btn {

    height: auto;

}

.input-group .form-control,

.input-group-addon,

.input-group-btn {

    display: table-cell;

}

.input-group .form-control:not(:first-child):not(:last-child),

.input-group-addon:not(:first-child):not(:last-child),

.input-group-btn:not(:first-child):not(:last-child) {

    border-radius: 0;

}

.input-group-addon,

.input-group-btn {

    width: 1%;

    white-space: nowrap;

    vertical-align: middle;

}

.input-group-addon {

    padding: 6px 12px;

    font-size: 14px;

    font-weight: 400;

    line-height: 1;

    color: #555;

    text-align: center;

    background-color: #eee;

    border: 1px solid #ccc;

    border-radius: 4px;

}

.input-group-addon.input-sm {

    padding: 5px 10px;

    font-size: 12px;

    border-radius: 3px;

}

.input-group-addon.input-lg {

    padding: 10px 16px;

    font-size: 18px;

    border-radius: 6px;

}

.input-group-addon input[type="checkbox"],

.input-group-addon input[type="radio"] {

    margin-top: 0;

}

.input-group .form-control:first-child,

.input-group-addon:first-child,

.input-group-btn:first-child > .btn,

.input-group-btn:first-child > .btn-group > .btn,

.input-group-btn:first-child > .dropdown-toggle,

.input-group-btn:last-child > .btn-group:not(:last-child) > .btn,

.input-group-btn:last-child > .btn:not(:last-child):not(.dropdown-toggle) {

    border-top-right-radius: 0;

    border-bottom-right-radius: 0;

}

.input-group-addon:first-child {

    border-right: 0;

}

.input-group .form-control:last-child,

.input-group-addon:last-child,

.input-group-btn:first-child > .btn-group:not(:first-child) > .btn,

.input-group-btn:first-child > .btn:not(:first-child),

.input-group-btn:last-child > .btn,

.input-group-btn:last-child > .btn-group > .btn,

.input-group-btn:last-child > .dropdown-toggle {

    border-top-left-radius: 0;

    border-bottom-left-radius: 0;

}

.input-group-addon:last-child {

    border-left: 0;

}

.input-group-btn {

    position: relative;

    font-size: 0;

    white-space: nowrap;

}

.input-group-btn > .btn {

    position: relative;

}

.input-group-btn > .btn + .btn {

    margin-left: -1px;

}

.input-group-btn > .btn:active,

.input-group-btn > .btn:focus,

.input-group-btn > .btn:hover {

    z-index: 2;

}

.input-group-btn:first-child > .btn,

.input-group-btn:first-child > .btn-group {

    margin-right: -1px;

}

.input-group-btn:last-child > .btn,

.input-group-btn:last-child > .btn-group {

    margin-left: -1px;

}

.nav {

    padding-left: 0;

    margin-bottom: 0;

    list-style: none;

}

.nav > li {

    position: relative;

    display: block;

}

.nav > li > a {

    position: relative;

    display: block;

    padding: 20px 14px;

}

.nav > li > a:focus,

.nav > li > a:hover {

    text-decoration: none;

    background-color: #eee;

}

.nav > li.disabled > a {

    color: #777;

}

.nav > li.disabled > a:focus,

.nav > li.disabled > a:hover {

    color: #777;

    text-decoration: none;

    cursor: not-allowed;

    background-color: transparent;

}

.nav .open > a,

.nav .open > a:focus,

.nav .open > a:hover {

    background-color: #eee;

    border-color: #337ab7;

}

.nav .nav-divider {

    height: 1px;

    margin: 9px 0;

    overflow: hidden;

    background-color: #e5e5e5;

}

.nav > li > a > img {

    max-width: none;

}

.nav-tabs {

    border-bottom: 1px solid #ddd;

}

.nav-tabs > li {

    float: left;

    margin-bottom: -1px;

}

.nav-tabs > li > a {

    margin-right: 2px;

    line-height: 1.42857143;

    border: 1px solid transparent;

    border-radius: 4px 4px 0 0;

}

.nav-tabs > li > a:hover {

    border-color: #eee #eee #ddd;

}

.nav-tabs > li.active > a,

.nav-tabs > li.active > a:focus,

.nav-tabs > li.active > a:hover {

    color: #555;

    cursor: default;

    background-color: #fff;

    border: 1px solid #ddd;

    border-bottom-color: transparent;

}

.nav-tabs.nav-justified {

    width: 100%;

    border-bottom: 0;

}

.nav-tabs.nav-justified > li {

    float: none;

}

.nav-tabs.nav-justified > li > a {

    margin-bottom: 5px;

    text-align: center;

}

.nav-tabs.nav-justified > .dropdown .dropdown-menu {

    top: auto;

    left: auto;

}

@media (min-width: 768px) {

    .nav-tabs.nav-justified > li {

        display: table-cell;

        width: 1%;

    }

    .nav-tabs.nav-justified > li > a {

        margin-bottom: 0;

    }

}

.nav-tabs.nav-justified > li > a {

    margin-right: 0;

    border-radius: 4px;

}

.nav-tabs.nav-justified > .active > a,

.nav-tabs.nav-justified > .active > a:focus,

.nav-tabs.nav-justified > .active > a:hover {

    border: 1px solid #ddd;

}

@media (min-width: 768px) {

    .nav-tabs.nav-justified > li > a {

        border-bottom: 1px solid #ddd;

        border-radius: 4px 4px 0 0;

    }

    .nav-tabs.nav-justified > .active > a,

    .nav-tabs.nav-justified > .active > a:focus,

    .nav-tabs.nav-justified > .active > a:hover {

        border-bottom-color: #fff;

    }

}

.nav-pills > li {

    float: left;

}

.nav-pills > li > a {

    border-radius: 4px;

}

.nav-pills > li + li {

    margin-left: 2px;

}

.nav-pills > li.active > a,

.nav-pills > li.active > a:focus,

.nav-pills > li.active > a:hover {

    color: #fff;

    background-color: #337ab7;

}

.nav-stacked > li {

    float: none;

}

.nav-stacked > li + li {

    margin-top: 2px;

    margin-left: 0;

}

.nav-justified {

    width: 100%;

}

.nav-justified > li {

    float: none;

}

.nav-justified > li > a {

    margin-bottom: 5px;

    text-align: center;

}

.nav-justified > .dropdown .dropdown-menu {

    top: auto;

    left: auto;

}

@media (min-width: 768px) {

    .nav-justified > li {

        display: table-cell;

        width: 1%;

    }

    .nav-justified > li > a {

        margin-bottom: 0;

    }

}

.nav-tabs-justified {

    border-bottom: 0;

}

.nav-tabs-justified > li > a {

    margin-right: 0;

    border-radius: 4px;

}

.nav-tabs-justified > .active > a,

.nav-tabs-justified > .active > a:focus,

.nav-tabs-justified > .active > a:hover {

    border: 1px solid #ddd;

}

@media (min-width: 768px) {

    .nav-tabs-justified > li > a {

        border-bottom: 1px solid #ddd;

        border-radius: 4px 4px 0 0;

    }

    .nav-tabs-justified > .active > a,

    .nav-tabs-justified > .active > a:focus,

    .nav-tabs-justified > .active > a:hover {

        border-bottom-color: #fff;

    }

}

.tab-content > .tab-pane {

    display: none;

}

.tab-content > .active {

    display: block;

}

.nav-tabs .dropdown-menu {

    margin-top: -1px;

    border-top-left-radius: 0;

    border-top-right-radius: 0;

}

.navbar {

    position: relative;

    min-height: 50px;

    margin-bottom: 20px;

    border: 1px solid transparent;

}

@media (min-width: 768px) {

    .navbar {

        border-radius: 4px;

    }

}

@media (min-width: 768px) {

    .navbar-header {

        float: left;

    }

}

.navbar-collapse {

    padding-right: 15px;

    padding-left: 15px;

    overflow-x: visible;

    -webkit-overflow-scrolling: touch;

    border-top: 1px solid transparent;

    -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);

    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);

}

.navbar-collapse.in {

    overflow-y: auto;

}

@media (min-width: 768px) {

    .navbar-collapse {

        width: auto;

        border-top: 0;

        -webkit-box-shadow: none;

        box-shadow: none;

    }

    .navbar-collapse.collapse {

        display: block !important;

        height: auto !important;

        padding-bottom: 0;

        overflow: visible !important;

    }

    .navbar-collapse.in {

        overflow-y: visible;

    }

    .navbar-fixed-bottom .navbar-collapse,

    .navbar-fixed-top .navbar-collapse,

    .navbar-static-top .navbar-collapse {

        padding-right: 0;

        padding-left: 0;

    }

}

.navbar-fixed-bottom .navbar-collapse,

.navbar-fixed-top .navbar-collapse {

    max-height: 340px;

}

@media (max-device-width: 480px) and (orientation: landscape) {

    .navbar-fixed-bottom .navbar-collapse,

    .navbar-fixed-top .navbar-collapse {

        max-height: 200px;

    }

}

.container-fluid > .navbar-collapse,

.container-fluid > .navbar-header,

.container > .navbar-collapse,

.container > .navbar-header {

    margin-right: -15px;

    margin-left: -15px;

}

@media (min-width: 768px) {

    .container-fluid > .navbar-collapse,

    .container-fluid > .navbar-header,

    .container > .navbar-collapse,

    .container > .navbar-header {

        margin-right: 0;

        margin-left: 0;

    }

}

.navbar-static-top {

    z-index: 1000;

    border-width: 0 0 1px;

}

@media (min-width: 768px) {

    .navbar-static-top {

        border-radius: 0;

    }

}

.navbar-fixed-bottom,

.navbar-fixed-top {

    position: fixed;

    right: 0;

    left: 0;

    z-index: 1030;

}

@media (min-width: 768px) {

    .navbar-fixed-bottom,

    .navbar-fixed-top {

        border-radius: 0;

    }

}

.navbar-fixed-top {

    top: 0;

    border-width: 0 0 1px;

}

.navbar-fixed-bottom {

    bottom: 0;

    margin-bottom: 0;

    border-width: 1px 0 0;

}

.navbar-brand {

    float: left;

    height: 50px;

    padding: 6px 15px;

    font-size: 18px;

    line-height: 20px;

}

.navbar-brand:focus,

.navbar-brand:hover {

    text-decoration: none;

}

.navbar-brand > img {

    display: block;

}

@media (min-width: 768px) {

    .navbar > .container .navbar-brand,

    .navbar > .container-fluid .navbar-brand {

        margin-left: -15px;

    }

}

.navbar-toggle {

    position: relative;

    float: right;

    padding: 9px 10px;

    margin-top: 8px;

    margin-right: 15px;

    margin-bottom: 8px;

    background-color: #fc3d83;

    margin-left: 135px;

    background-image: none;

    border: 1px solid transparent;

    border-radius: 4px;

}

.navbar-toggle:focus {

    outline: 0;

}

.navbar-toggle .icon-bar {

    display: block;

    width: 22px;

    height: 2px;

    border-radius: 1px;

}

.navbar-toggle .icon-bar + .icon-bar {

    margin-top: 4px;

}

@media (min-width: 768px) {

    .navbar-toggle {

        display: none;

    }

}

.navbar-nav {

    margin: 7.5px -15px;

}

.navbar-nav > li > a {

    padding-top: 10px;

    padding-bottom: 10px;

    line-height: 20px;

}

@media (max-width: 767px) {

    .navbar-nav .open .dropdown-menu {

        position: static;

        float: none;

        width: auto;

        margin-top: 0;

        background-color: transparent;

        border: 0;

        -webkit-box-shadow: none;

        box-shadow: none;

    }

    .navbar-nav .open .dropdown-menu .dropdown-header,

    .navbar-nav .open .dropdown-menu > li > a {

        padding: 5px 15px 5px 25px;

    }

    .navbar-nav .open .dropdown-menu > li > a {

        line-height: 20px;

    }

    .navbar-nav .open .dropdown-menu > li > a:focus,

    .navbar-nav .open .dropdown-menu > li > a:hover {

        background-image: none;

    }

}

@media (min-width: 768px) {

    .navbar-nav {

        float: left;

        margin: 0;

    }

    .navbar-nav > li {

        float: left;

    }

    .navbar-nav > li > a {

        padding-top: 15px;

        padding-bottom: 15px;

    }

}

.navbar-form {

    padding: 10px 15px;

    margin-top: 8px;

    margin-right: -15px;

    margin-bottom: 8px;

    margin-left: -15px;

    border-top: 1px solid transparent;

    border-bottom: 1px solid transparent;

    -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.1);

    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.1);

}

@media (min-width: 768px) {

    .navbar-form .form-group {

        display: inline-block;

        margin-bottom: 0;

        vertical-align: middle;

    }

    .navbar-form .form-control {

        display: inline-block;

        width: auto;

        vertical-align: middle;

    }

    .navbar-form .form-control-static {

        display: inline-block;

    }

    .navbar-form .input-group {

        display: inline-table;

        vertical-align: middle;

    }

    .navbar-form .input-group .form-control,

    .navbar-form .input-group .input-group-addon,

    .navbar-form .input-group .input-group-btn {

        width: auto;

    }

    .navbar-form .input-group > .form-control {

        width: 100%;

    }

    .navbar-form .control-label {

        margin-bottom: 0;

        vertical-align: middle;

    }

    .navbar-form .checkbox,

    .navbar-form .radio {

        display: inline-block;

        margin-top: 0;

        margin-bottom: 0;

        vertical-align: middle;

    }

    .navbar-form .checkbox label,

    .navbar-form .radio label {

        padding-left: 0;

    }

    .navbar-form .checkbox input[type="checkbox"],

    .navbar-form .radio input[type="radio"] {

        position: relative;

        margin-left: 0;

    }

    .navbar-form .has-feedback .form-control-feedback {

        top: 0;

    }

}

@media (max-width: 767px) {

    .navbar-form .form-group {

        margin-bottom: 5px;

    }

    .navbar-form .form-group:last-child {

        margin-bottom: 0;

    }

}

@media (min-width: 768px) {

    .navbar-form {

        width: auto;

        padding-top: 0;

        padding-bottom: 0;

        margin-right: 0;

        margin-left: 0;

        border: 0;

        -webkit-box-shadow: none;

        box-shadow: none;

    }

}

.navbar-nav > li > .dropdown-menu {

    margin-top: 0;

    border-top-left-radius: 0;

    border-top-right-radius: 0;

}

.navbar-fixed-bottom .navbar-nav > li > .dropdown-menu {

    margin-bottom: 0;

    border-top-left-radius: 4px;

    border-top-right-radius: 4px;

    border-bottom-right-radius: 0;

    border-bottom-left-radius: 0;

}

.navbar-btn {

    margin-top: 8px;

    margin-bottom: 8px;

}

.navbar-btn.btn-sm {

    margin-top: 10px;

    margin-bottom: 10px;

}

.navbar-btn.btn-xs {

    margin-top: 14px;

    margin-bottom: 14px;

}

.navbar-text {

    margin-top: 15px;

    margin-bottom: 15px;

}

@media (min-width: 768px) {

    .navbar-text {

        float: left;

        margin-right: 15px;

        margin-left: 15px;

    }

}

@media (min-width: 768px) {

    .navbar-left {

        float: left !important;

    }

    .navbar-right {

        float: right !important;

        margin-right: -15px;

    }

    .navbar-right ~ .navbar-right {

        margin-right: 0;

    }

}

.navbar-default {

    background-color: #f8f8f8;

    border-color: #e7e7e7;

}

.navbar-default .navbar-brand {

    color: #777;

}

.navbar-default .navbar-brand:focus,

.navbar-default .navbar-brand:hover {

    color: #5e5e5e;

    background-color: transparent;

}

.navbar-default .navbar-text {

    color: #777;

}

.navbar-default .navbar-nav > li > a {

    color: #777;

}

.navbar-default .navbar-nav > li > a:focus,

.navbar-default .navbar-nav > li > a:hover {

    color: #333;

    background-color: transparent;

}

.navbar-default .navbar-nav > .active > a,

.navbar-default .navbar-nav > .active > a:focus,

.navbar-default .navbar-nav > .active > a:hover {

    color: #555;

    background-color: #e7e7e7;

}

.navbar-default .navbar-nav > .disabled > a,

.navbar-default .navbar-nav > .disabled > a:focus,

.navbar-default .navbar-nav > .disabled > a:hover {

    color: #ccc;

    background-color: transparent;

}

.navbar-default .navbar-toggle {

    border-color: #ddd;

}

.navbar-default .navbar-toggle:focus,

.navbar-default .navbar-toggle:hover {

    background-color: #ddd;

}

.navbar-default .navbar-toggle .icon-bar {

    background-color: #888;

}

.navbar-default .navbar-collapse,

.navbar-default .navbar-form {

    border-color: #e7e7e7;

}

.navbar-default .navbar-nav > .open > a,

.navbar-default .navbar-nav > .open > a:focus,

.navbar-default .navbar-nav > .open > a:hover {

    color: #555;

    background-color: #e7e7e7;

}

@media (max-width: 767px) {

    .navbar-default .navbar-nav .open .dropdown-menu > li > a {

        color: #777;

    }

    .navbar-default .navbar-nav .open .dropdown-menu > li > a:focus,

    .navbar-default .navbar-nav .open .dropdown-menu > li > a:hover {

        color: #333;

        background-color: transparent;

    }

    .navbar-default .navbar-nav .open .dropdown-menu > .active > a,

    .navbar-default .navbar-nav .open .dropdown-menu > .active > a:focus,

    .navbar-default .navbar-nav .open .dropdown-menu > .active > a:hover {

        color: #555;

        background-color: #e7e7e7;

    }

    .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a,

    .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:focus,

    .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:hover {

        color: #ccc;

        background-color: transparent;

    }

}

.navbar-default .navbar-link {

    color: #777;

}

.navbar-default .navbar-link:hover {

    color: #333;

}

.navbar-default .btn-link {

    color: #777;

}

.navbar-default .btn-link:focus,

.navbar-default .btn-link:hover {

    color: #333;

}

.navbar-default .btn-link[disabled]:focus,

.navbar-default .btn-link[disabled]:hover,

fieldset[disabled] .navbar-default .btn-link:focus,

fieldset[disabled] .navbar-default .btn-link:hover {

    color: #ccc;

}

.navbar-inverse {

    background-color: #222;

    border-color: #080808;

}

.navbar-inverse .navbar-brand {

    color: #9d9d9d;

}

.navbar-inverse .navbar-brand:focus,

.navbar-inverse .navbar-brand:hover {

    color: #fff;

    background-color: transparent;

}

.navbar-inverse .navbar-text {

    color: #9d9d9d;

}

.navbar-inverse .navbar-nav > li > a {

    color: #9d9d9d;

}

.navbar-inverse .navbar-nav > li > a:focus,

.navbar-inverse .navbar-nav > li > a:hover {

    color: #fff;

    background-color: transparent;

}

.navbar-inverse .navbar-nav > .active > a,

.navbar-inverse .navbar-nav > .active > a:focus,

.navbar-inverse .navbar-nav > .active > a:hover {

    color: #fff;

    background-color: #080808;

}

.navbar-inverse .navbar-nav > .disabled > a,

.navbar-inverse .navbar-nav > .disabled > a:focus,

.navbar-inverse .navbar-nav > .disabled > a:hover {

    color: #444;

    background-color: transparent;

}

.navbar-inverse .navbar-toggle {

    border-color: #333;

}

.navbar-inverse .navbar-toggle:focus,

.navbar-inverse .navbar-toggle:hover {

    background-color: #333;

}

.navbar-inverse .navbar-toggle .icon-bar {

    background-color: #fff;

}

.navbar-inverse .navbar-collapse,

.navbar-inverse .navbar-form {

    border-color: #101010;

}

.navbar-inverse .navbar-nav > .open > a,

.navbar-inverse .navbar-nav > .open > a:focus,

.navbar-inverse .navbar-nav > .open > a:hover {

    color: #fff;

    background-color: #080808;

}

@media (max-width: 767px) {

    .navbar-inverse .navbar-nav .open .dropdown-menu > .dropdown-header {

        border-color: #080808;

    }

    .navbar-inverse .navbar-nav .open .dropdown-menu .divider {

        background-color: #080808;

    }

    .navbar-inverse .navbar-nav .open .dropdown-menu > li > a {

        color: #9d9d9d;

    }

    .navbar-inverse .navbar-nav .open .dropdown-menu > li > a:focus,

    .navbar-inverse .navbar-nav .open .dropdown-menu > li > a:hover {

        color: #fff;

        background-color: transparent;

    }

    .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a,

    .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:focus,

    .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:hover {

        color: #fff;

        background-color: #080808;

    }

    .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a,

    .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:focus,

    .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:hover {

        color: #444;

        background-color: transparent;

    }

}

.navbar-inverse .navbar-link {

    color: #9d9d9d;

}

.navbar-inverse .navbar-link:hover {

    color: #fff;

}

.navbar-inverse .btn-link {

    color: #9d9d9d;

}

.navbar-inverse .btn-link:focus,

.navbar-inverse .btn-link:hover {

    color: #fff;

}

.navbar-inverse .btn-link[disabled]:focus,

.navbar-inverse .btn-link[disabled]:hover,

fieldset[disabled] .navbar-inverse .btn-link:focus,

fieldset[disabled] .navbar-inverse .btn-link:hover {

    color: #444;

}

.breadcrumb {

    padding: 8px 15px;

    margin-bottom: 20px;

    list-style: none;

    background-color: #f5f5f5;

    border-radius: 4px;

}

.breadcrumb > li {

    display: inline-block;

}

.breadcrumb > li + li:before {

    padding: 0 5px;

    color: #ccc;

    content: "/\00a0";

}

.breadcrumb > .active {

    color: #777;

}

.pagination {

    display: inline-block;

    padding-left: 0;

    margin: 20px 0;

    border-radius: 4px;

}

.pagination > li {

    display: inline;

}

.pagination > li > a,

.pagination > li > span {

    position: relative;

    float: left;

    padding: 6px 12px;

    margin-left: -1px;

    line-height: 1.42857143;

    color: #337ab7;

    text-decoration: none;

    background-color: #fff;

    border: 1px solid #ddd;

}

.pagination > li:first-child > a,

.pagination > li:first-child > span {

    margin-left: 0;

    border-top-left-radius: 4px;

    border-bottom-left-radius: 4px;

}

.pagination > li:last-child > a,

.pagination > li:last-child > span {

    border-top-right-radius: 4px;

    border-bottom-right-radius: 4px;

}

.pagination > li > a:focus,

.pagination > li > a:hover,

.pagination > li > span:focus,

.pagination > li > span:hover {

    color: #23527c;

    background-color: #eee;

    border-color: #ddd;

}

.pagination > .active > a,

.pagination > .active > a:focus,

.pagination > .active > a:hover,

.pagination > .active > span,

.pagination > .active > span:focus,

.pagination > .active > span:hover {

    z-index: 2;

    color: #fff;

    cursor: default;

    background-color: #337ab7;

    border-color: #337ab7;

}

.pagination > .disabled > a,

.pagination > .disabled > a:focus,

.pagination > .disabled > a:hover,

.pagination > .disabled > span,

.pagination > .disabled > span:focus,

.pagination > .disabled > span:hover {

    color: #777;

    cursor: not-allowed;

    background-color: #fff;

    border-color: #ddd;

}

.pagination-lg > li > a,

.pagination-lg > li > span {

    padding: 10px 16px;

    font-size: 18px;

}

.pagination-lg > li:first-child > a,

.pagination-lg > li:first-child > span {

    border-top-left-radius: 6px;

    border-bottom-left-radius: 6px;

}

.pagination-lg > li:last-child > a,

.pagination-lg > li:last-child > span {

    border-top-right-radius: 6px;

    border-bottom-right-radius: 6px;

}

.pagination-sm > li > a,

.pagination-sm > li > span {

    padding: 5px 10px;

    font-size: 12px;

}

.pagination-sm > li:first-child > a,

.pagination-sm > li:first-child > span {

    border-top-left-radius: 3px;

    border-bottom-left-radius: 3px;

}

.pagination-sm > li:last-child > a,

.pagination-sm > li:last-child > span {

    border-top-right-radius: 3px;

    border-bottom-right-radius: 3px;

}

.pager {

    padding-left: 0;

    margin: 20px 0;

    text-align: center;

    list-style: none;

}

.pager li {

    display: inline;

}

.pager li > a,

.pager li > span {

    display: inline-block;

    padding: 5px 14px;

    background-color: #fff;

    border: 1px solid #ddd;

    border-radius: 15px;

}

.pager li > a:focus,

.pager li > a:hover {

    text-decoration: none;

    background-color: #eee;

}

.pager .next > a,

.pager .next > span {

    float: right;

}

.pager .previous > a,

.pager .previous > span {

    float: left;

}

.pager .disabled > a,

.pager .disabled > a:focus,

.pager .disabled > a:hover,

.pager .disabled > span {

    color: #777;

    cursor: not-allowed;

    background-color: #fff;

}

.label {

    display: inline;

    padding: 0.2em 0.6em 0.3em;

    font-size: 75%;

    font-weight: 700;

    line-height: 1;

    color: #fff;

    text-align: center;

    white-space: nowrap;

    vertical-align: baseline;

    border-radius: 0.25em;

}

a.label:focus,

a.label:hover {

    color: #fff;

    text-decoration: none;

    cursor: pointer;

}

.label:empty {

    display: none;

}

.btn .label {

    position: relative;

    top: -1px;

}

.label-default {

    background-color: #777;

}

.label-default[href]:focus,

.label-default[href]:hover {

    background-color: #5e5e5e;

}

.label-primary {

    background-color: #337ab7;

}

.label-primary[href]:focus,

.label-primary[href]:hover {

    background-color: #286090;

}

.label-success {

    background-color: #5cb85c;

}

.label-success[href]:focus,

.label-success[href]:hover {

    background-color: #449d44;

}

.label-info {

    background-color: #5bc0de;

}

.label-info[href]:focus,

.label-info[href]:hover {

    background-color: #31b0d5;

}

.label-warning {

    background-color: #f0ad4e;

}

.label-warning[href]:focus,

.label-warning[href]:hover {

    background-color: #ec971f;

}

.label-danger {

    background-color: #d9534f;

}

.label-danger[href]:focus,

.label-danger[href]:hover {

    background-color: #c9302c;

}

.badge {

    display: inline-block;

    min-width: 10px;

    padding: 3px 7px;

    font-size: 12px;

    font-weight: 700;

    line-height: 1;

    color: #fff;

    text-align: center;

    white-space: nowrap;

    vertical-align: baseline;

    background-color: #777;

    border-radius: 10px;

}

.badge:empty {

    display: none;

}

.btn .badge {

    position: relative;

    top: -1px;

}

.btn-group-xs > .btn .badge,

.btn-xs .badge {

    top: 0;

    padding: 1px 5px;

}

a.badge:focus,

a.badge:hover {

    color: #fff;

    text-decoration: none;

    cursor: pointer;

}

.list-group-item.active > .badge,

.nav-pills > .active > a > .badge {

    color: #337ab7;

    background-color: #fff;

}

.list-group-item > .badge {

    float: right;

}

.list-group-item > .badge + .badge {

    margin-right: 5px;

}

.nav-pills > li > a > .badge {

    margin-left: 3px;

}

.jumbotron {

    padding: 30px 15px;

    margin-bottom: 30px;

    color: inherit;

    background-color: #eee;

}

.jumbotron .h1,

.jumbotron h1 {

    color: inherit;

}

.jumbotron p {

    margin-bottom: 15px;

    font-size: 21px;

    font-weight: 200;

}

.jumbotron > hr {

    border-top-color: #d5d5d5;

}

.container .jumbotron,

.container-fluid .jumbotron {

    border-radius: 6px;

}

.jumbotron .container {

    max-width: 100%;

}

@media screen and (min-width: 768px) {

    .jumbotron {

        padding: 48px 0;

    }

    .container .jumbotron,

    .container-fluid .jumbotron {

        padding-right: 60px;

        padding-left: 60px;

    }

    .jumbotron .h1,

    .jumbotron h1 {

        font-size: 63px;

    }

}

.thumbnail {

    display: block;

    padding: 4px;

    margin-bottom: 20px;

    line-height: 1.42857143;

    background-color: #fff;

    border: 1px solid #ddd;

    border-radius: 4px;

    -webkit-transition: border 0.2s ease-in-out;

    -o-transition: border 0.2s ease-in-out;

    transition: border 0.2s ease-in-out;

}

.thumbnail a > img,

.thumbnail > img {

    margin-right: auto;

    margin-left: auto;

}

a.thumbnail.active,

a.thumbnail:focus,

a.thumbnail:hover {

    border-color: #337ab7;

}

.thumbnail .caption {

    padding: 9px;

    color: #333;

}

.alert {

    padding: 15px;

    margin-bottom: 20px;

    border: 1px solid transparent;

    border-radius: 4px;

}

.alert h4 {

    margin-top: 0;

    color: inherit;

}

.alert .alert-link {

    font-weight: 700;

}

.alert > p,

.alert > ul {

    margin-bottom: 0;

}

.alert > p + p {

    margin-top: 5px;

}

.alert-dismissable,

.alert-dismissible {

    padding-right: 35px;

}

.alert-dismissable .close,

.alert-dismissible .close {

    position: relative;

    top: -2px;

    right: -21px;

    color: inherit;

}

.alert-success {

    color: #3c763d;

    background-color: #dff0d8;

    border-color: #d6e9c6;

}

.alert-success hr {

    border-top-color: #c9e2b3;

}

.alert-success .alert-link {

    color: #2b542c;

}

.alert-info {

    color: #31708f;

    background-color: #d9edf7;

    border-color: #bce8f1;

}

.alert-info hr {

    border-top-color: #a6e1ec;

}

.alert-info .alert-link {

    color: #245269;

}

.alert-warning {

    color: #8a6d3b;

    background-color: #fcf8e3;

    border-color: #faebcc;

}

.alert-warning hr {

    border-top-color: #f7e1b5;

}

.alert-warning .alert-link {

    color: #66512c;

}

.alert-danger {

    color: #a94442;

    background-color: #f2dede;

    border-color: #ebccd1;

}

.alert-danger hr {

    border-top-color: #e4b9c0;

}

.alert-danger .alert-link {

    color: #843534;

}

@-webkit-keyframes progress-bar-stripes {

    from {

        background-position: 40px 0;

    }

    to {

        background-position: 0 0;

    }

}

@-o-keyframes progress-bar-stripes {

    from {

        background-position: 40px 0;

    }

    to {

        background-position: 0 0;

    }

}

@keyframes progress-bar-stripes {

    from {

        background-position: 40px 0;

    }

    to {

        background-position: 0 0;

    }

}

.progress {

    height: 20px;

    margin-bottom: 20px;

    overflow: hidden;

    background-color: #f5f5f5;

    border-radius: 4px;

    -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);

    box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);

}

.progress-bar {

    float: left;

    width: 0;

    height: 100%;

    font-size: 12px;

    line-height: 20px;

    color: #fff;

    text-align: center;

    background-color: #337ab7;

    -webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);

    box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);

    -webkit-transition: width 0.6s ease;

    -o-transition: width 0.6s ease;

    transition: width 0.6s ease;

}

.progress-bar-striped,

.progress-striped .progress-bar {

    background-image: -webkit-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-image: -o-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-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);

    -webkit-background-size: 40px 40px;

    background-size: 40px 40px;

}

.progress-bar.active,

.progress.active .progress-bar {

    -webkit-animation: progress-bar-stripes 2s linear infinite;

    -o-animation: progress-bar-stripes 2s linear infinite;

    animation: progress-bar-stripes 2s linear infinite;

}

.progress-bar-success {

    background-color: #5cb85c;

}

.progress-striped .progress-bar-success {

    background-image: -webkit-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-image: -o-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-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);

}

.progress-bar-info {

    background-color: #5bc0de;

}

.progress-striped .progress-bar-info {

    background-image: -webkit-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-image: -o-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-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);

}

.progress-bar-warning {

    background-color: #f0ad4e;

}

.progress-striped .progress-bar-warning {

    background-image: -webkit-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-image: -o-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-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);

}

.progress-bar-danger {

    background-color: #d9534f;

}

.progress-striped .progress-bar-danger {

    background-image: -webkit-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-image: -o-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-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);

}

.media {

    margin-top: 15px;

}

.media:first-child {

    margin-top: 0;

}

.media,

.media-body {

    overflow: hidden;

    zoom: 1;

}

.media-body {

    width: 10000px;

}

.media-object {

    display: block;

}

.media-right,

.media > .pull-right {

    padding-left: 10px;

}

.media-left,

.media > .pull-left {

    padding-right: 10px;

}

.media-body,

.media-left,

.media-right {

    display: table-cell;

    vertical-align: top;

}

.media-middle {

    vertical-align: middle;

}

.media-bottom {

    vertical-align: bottom;

}

.media-heading {

    margin-top: 0;

    margin-bottom: 5px;

}

.media-list {

    padding-left: 0;

    list-style: none;

}

.list-group {

    padding-left: 0;

    margin-bottom: 20px;

}

.list-group-item {

    position: relative;

    display: block;

    padding: 10px 15px;

    margin-bottom: -1px;

    background-color: #fff;

    border: 1px solid #ddd;

}

.list-group-item:first-child {

    border-top-left-radius: 4px;

    border-top-right-radius: 4px;

}

.list-group-item:last-child {

    margin-bottom: 0;

    border-bottom-right-radius: 4px;

    border-bottom-left-radius: 4px;

}

a.list-group-item {

    color: #555;

}

a.list-group-item .list-group-item-heading {

    color: #333;

}

a.list-group-item:focus,

a.list-group-item:hover {

    color: #555;

    text-decoration: none;

    background-color: #f5f5f5;

}

.list-group-item.disabled,

.list-group-item.disabled:focus,

.list-group-item.disabled:hover {

    color: #777;

    cursor: not-allowed;

    background-color: #eee;

}

.list-group-item.disabled .list-group-item-heading,

.list-group-item.disabled:focus .list-group-item-heading,

.list-group-item.disabled:hover .list-group-item-heading {

    color: inherit;

}

.list-group-item.disabled .list-group-item-text,

.list-group-item.disabled:focus .list-group-item-text,

.list-group-item.disabled:hover .list-group-item-text {

    color: #777;

}

.list-group-item.active,

.list-group-item.active:focus,

.list-group-item.active:hover {

    z-index: 2;

    color: #fff;

    background-color: #337ab7;

    border-color: #337ab7;

}

.list-group-item.active .list-group-item-heading,

.list-group-item.active .list-group-item-heading > .small,

.list-group-item.active .list-group-item-heading > small,

.list-group-item.active:focus .list-group-item-heading,

.list-group-item.active:focus .list-group-item-heading > .small,

.list-group-item.active:focus .list-group-item-heading > small,

.list-group-item.active:hover .list-group-item-heading,

.list-group-item.active:hover .list-group-item-heading > .small,

.list-group-item.active:hover .list-group-item-heading > small {

    color: inherit;

}

.list-group-item.active .list-group-item-text,

.list-group-item.active:focus .list-group-item-text,

.list-group-item.active:hover .list-group-item-text {

    color: #c7ddef;

}

.list-group-item-success {

    color: #3c763d;

    background-color: #dff0d8;

}

a.list-group-item-success {

    color: #3c763d;

}

a.list-group-item-success .list-group-item-heading {

    color: inherit;

}

a.list-group-item-success:focus,

a.list-group-item-success:hover {

    color: #3c763d;

    background-color: #d0e9c6;

}

a.list-group-item-success.active,

a.list-group-item-success.active:focus,

a.list-group-item-success.active:hover {

    color: #fff;

    background-color: #3c763d;

    border-color: #3c763d;

}

.list-group-item-info {

    color: #31708f;

    background-color: #d9edf7;

}

a.list-group-item-info {

    color: #31708f;

}

a.list-group-item-info .list-group-item-heading {

    color: inherit;

}

a.list-group-item-info:focus,

a.list-group-item-info:hover {

    color: #31708f;

    background-color: #c4e3f3;

}

a.list-group-item-info.active,

a.list-group-item-info.active:focus,

a.list-group-item-info.active:hover {

    color: #fff;

    background-color: #31708f;

    border-color: #31708f;

}

.list-group-item-warning {

    color: #8a6d3b;

    background-color: #fcf8e3;

}

a.list-group-item-warning {

    color: #8a6d3b;

}

a.list-group-item-warning .list-group-item-heading {

    color: inherit;

}

a.list-group-item-warning:focus,

a.list-group-item-warning:hover {

    color: #8a6d3b;

    background-color: #faf2cc;

}

a.list-group-item-warning.active,

a.list-group-item-warning.active:focus,

a.list-group-item-warning.active:hover {

    color: #fff;

    background-color: #8a6d3b;

    border-color: #8a6d3b;

}

.list-group-item-danger {

    color: #a94442;

    background-color: #f2dede;

}

a.list-group-item-danger {

    color: #a94442;

}

a.list-group-item-danger .list-group-item-heading {

    color: inherit;

}

a.list-group-item-danger:focus,

a.list-group-item-danger:hover {

    color: #a94442;

    background-color: #ebcccc;

}

a.list-group-item-danger.active,

a.list-group-item-danger.active:focus,

a.list-group-item-danger.active:hover {

    color: #fff;

    background-color: #a94442;

    border-color: #a94442;

}

.list-group-item-heading {

    margin-top: 0;

    margin-bottom: 5px;

}

.list-group-item-text {

    margin-bottom: 0;

    line-height: 1.3;

}

.panel {

    margin-bottom: 20px;

    background-color: #fff;

    border: 1px solid transparent;

    border-radius: 4px;

    -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);

    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);

}

.panel-body {

    padding: 15px;

}

.panel-heading {

    padding: 10px 15px;

    border-bottom: 1px solid transparent;

    border-top-left-radius: 3px;

    border-top-right-radius: 3px;

}

.panel-heading > .dropdown .dropdown-toggle {

    color: inherit;

}

.panel-title {

    margin-top: 0;

    margin-bottom: 0;

    font-size: 16px;

    color: inherit;

}

.panel-title > .small,

.panel-title > .small > a,

.panel-title > a,

.panel-title > small,

.panel-title > small > a {

    color: inherit;

}

.panel-footer {

    padding: 10px 15px;

    background-color: #f5f5f5;

    border-top: 1px solid #ddd;

    border-bottom-right-radius: 3px;

    border-bottom-left-radius: 3px;

}

.panel > .list-group,

.panel > .panel-collapse > .list-group {

    margin-bottom: 0;

}

.panel > .list-group .list-group-item,

.panel > .panel-collapse > .list-group .list-group-item {

    border-width: 1px 0;

    border-radius: 0;

}

.panel > .list-group:first-child .list-group-item:first-child,

.panel > .panel-collapse > .list-group:first-child .list-group-item:first-child {

    border-top: 0;

    border-top-left-radius: 3px;

    border-top-right-radius: 3px;

}

.panel > .list-group:last-child .list-group-item:last-child,

.panel > .panel-collapse > .list-group:last-child .list-group-item:last-child {

    border-bottom: 0;

    border-bottom-right-radius: 3px;

    border-bottom-left-radius: 3px;

}

.panel-heading + .list-group .list-group-item:first-child {

    border-top-width: 0;

}

.list-group + .panel-footer {

    border-top-width: 0;

}

.panel > .panel-collapse > .table,

.panel > .table,

.panel > .table-responsive > .table {

    margin-bottom: 0;

}

.panel > .panel-collapse > .table caption,

.panel > .table caption,

.panel > .table-responsive > .table caption {

    padding-right: 15px;

    padding-left: 15px;

}

.panel > .table-responsive:first-child > .table:first-child,

.panel > .table:first-child {

    border-top-left-radius: 3px;

    border-top-right-radius: 3px;

}

.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child,

.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child,

.panel > .table:first-child > tbody:first-child > tr:first-child,

.panel > .table:first-child > thead:first-child > tr:first-child {

    border-top-left-radius: 3px;

    border-top-right-radius: 3px;

}

.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child td:first-child,

.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:first-child,

.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:first-child,

.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:first-child,

.panel > .table:first-child > tbody:first-child > tr:first-child td:first-child,

.panel > .table:first-child > tbody:first-child > tr:first-child th:first-child,

.panel > .table:first-child > thead:first-child > tr:first-child td:first-child,

.panel > .table:first-child > thead:first-child > tr:first-child th:first-child {

    border-top-left-radius: 3px;

}

.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child td:last-child,

.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:last-child,

.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:last-child,

.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:last-child,

.panel > .table:first-child > tbody:first-child > tr:first-child td:last-child,

.panel > .table:first-child > tbody:first-child > tr:first-child th:last-child,

.panel > .table:first-child > thead:first-child > tr:first-child td:last-child,

.panel > .table:first-child > thead:first-child > tr:first-child th:last-child {

    border-top-right-radius: 3px;

}

.panel > .table-responsive:last-child > .table:last-child,

.panel > .table:last-child {

    border-bottom-right-radius: 3px;

    border-bottom-left-radius: 3px;

}

.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child,

.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child,

.panel > .table:last-child > tbody:last-child > tr:last-child,

.panel > .table:last-child > tfoot:last-child > tr:last-child {

    border-bottom-right-radius: 3px;

    border-bottom-left-radius: 3px;

}

.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:first-child,

.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:first-child,

.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child td:first-child,

.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:first-child,

.panel > .table:last-child > tbody:last-child > tr:last-child td:first-child,

.panel > .table:last-child > tbody:last-child > tr:last-child th:first-child,

.panel > .table:last-child > tfoot:last-child > tr:last-child td:first-child,

.panel > .table:last-child > tfoot:last-child > tr:last-child th:first-child {

    border-bottom-left-radius: 3px;

}

.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:last-child,

.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:last-child,

.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child td:last-child,

.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:last-child,

.panel > .table:last-child > tbody:last-child > tr:last-child td:last-child,

.panel > .table:last-child > tbody:last-child > tr:last-child th:last-child,

.panel > .table:last-child > tfoot:last-child > tr:last-child td:last-child,

.panel > .table:last-child > tfoot:last-child > tr:last-child th:last-child {

    border-bottom-right-radius: 3px;

}

.panel > .panel-body + .table,

.panel > .panel-body + .table-responsive,

.panel > .table + .panel-body,

.panel > .table-responsive + .panel-body {

    border-top: 1px solid #ddd;

}

.panel > .table > tbody:first-child > tr:first-child td,

.panel > .table > tbody:first-child > tr:first-child th {

    border-top: 0;

}

.panel > .table-bordered,

.panel > .table-responsive > .table-bordered {

    border: 0;

}

.panel > .table-bordered > tbody > tr > td:first-child,

.panel > .table-bordered > tbody > tr > th:first-child,

.panel > .table-bordered > tfoot > tr > td:first-child,

.panel > .table-bordered > tfoot > tr > th:first-child,

.panel > .table-bordered > thead > tr > td:first-child,

.panel > .table-bordered > thead > tr > th:first-child,

.panel > .table-responsive > .table-bordered > tbody > tr > td:first-child,

.panel > .table-responsive > .table-bordered > tbody > tr > th:first-child,

.panel > .table-responsive > .table-bordered > tfoot > tr > td:first-child,

.panel > .table-responsive > .table-bordered > tfoot > tr > th:first-child,

.panel > .table-responsive > .table-bordered > thead > tr > td:first-child,

.panel > .table-responsive > .table-bordered > thead > tr > th:first-child {

    border-left: 0;

}

.panel > .table-bordered > tbody > tr > td:last-child,

.panel > .table-bordered > tbody > tr > th:last-child,

.panel > .table-bordered > tfoot > tr > td:last-child,

.panel > .table-bordered > tfoot > tr > th:last-child,

.panel > .table-bordered > thead > tr > td:last-child,

.panel > .table-bordered > thead > tr > th:last-child,

.panel > .table-responsive > .table-bordered > tbody > tr > td:last-child,

.panel > .table-responsive > .table-bordered > tbody > tr > th:last-child,

.panel > .table-responsive > .table-bordered > tfoot > tr > td:last-child,

.panel > .table-responsive > .table-bordered > tfoot > tr > th:last-child,

.panel > .table-responsive > .table-bordered > thead > tr > td:last-child,

.panel > .table-responsive > .table-bordered > thead > tr > th:last-child {

    border-right: 0;

}

.panel > .table-bordered > tbody > tr:first-child > td,

.panel > .table-bordered > tbody > tr:first-child > th,

.panel > .table-bordered > thead > tr:first-child > td,

.panel > .table-bordered > thead > tr:first-child > th,

.panel > .table-responsive > .table-bordered > tbody > tr:first-child > td,

.panel > .table-responsive > .table-bordered > tbody > tr:first-child > th,

.panel > .table-responsive > .table-bordered > thead > tr:first-child > td,

.panel > .table-responsive > .table-bordered > thead > tr:first-child > th {

    border-bottom: 0;

}

.panel > .table-bordered > tbody > tr:last-child > td,

.panel > .table-bordered > tbody > tr:last-child > th,

.panel > .table-bordered > tfoot > tr:last-child > td,

.panel > .table-bordered > tfoot > tr:last-child > th,

.panel > .table-responsive > .table-bordered > tbody > tr:last-child > td,

.panel > .table-responsive > .table-bordered > tbody > tr:last-child > th,

.panel > .table-responsive > .table-bordered > tfoot > tr:last-child > td,

.panel > .table-responsive > .table-bordered > tfoot > tr:last-child > th {

    border-bottom: 0;

}

.panel > .table-responsive {

    margin-bottom: 0;

    border: 0;

}

.panel-group {

    margin-bottom: 20px;

}

.panel-group .panel {

    margin-bottom: 0;

    border-radius: 4px;

}

.panel-group .panel + .panel {

    margin-top: 5px;

}

.panel-group .panel-heading {

    border-bottom: 0;

}

.panel-group .panel-heading + .panel-collapse > .list-group,

.panel-group .panel-heading + .panel-collapse > .panel-body {

    border-top: 1px solid #ddd;

}

.panel-group .panel-footer {

    border-top: 0;

}

.panel-group .panel-footer + .panel-collapse .panel-body {

    border-bottom: 1px solid #ddd;

}

.panel-default {

    border-color: #ddd;

}

.panel-default > .panel-heading {

    color: #333;

    background-color: #f5f5f5;

    border-color: #ddd;

}

.panel-default > .panel-heading + .panel-collapse > .panel-body {

    border-top-color: #ddd;

}

.panel-default > .panel-heading .badge {

    color: #f5f5f5;

    background-color: #333;

}

.panel-default > .panel-footer + .panel-collapse > .panel-body {

    border-bottom-color: #ddd;

}

.panel-primary {

    border-color: #337ab7;

}

.panel-primary > .panel-heading {

    color: #fff;

    background-color: #337ab7;

    border-color: #337ab7;

}

.panel-primary > .panel-heading + .panel-collapse > .panel-body {

    border-top-color: #337ab7;

}

.panel-primary > .panel-heading .badge {

    color: #337ab7;

    background-color: #fff;

}

.panel-primary > .panel-footer + .panel-collapse > .panel-body {

    border-bottom-color: #337ab7;

}

.panel-success {

    border-color: #d6e9c6;

}

.panel-success > .panel-heading {

    color: #3c763d;

    background-color: #dff0d8;

    border-color: #d6e9c6;

}

.panel-success > .panel-heading + .panel-collapse > .panel-body {

    border-top-color: #d6e9c6;

}

.panel-success > .panel-heading .badge {

    color: #dff0d8;

    background-color: #3c763d;

}

.panel-success > .panel-footer + .panel-collapse > .panel-body {

    border-bottom-color: #d6e9c6;

}

.panel-info {

    border-color: #bce8f1;

}

.panel-info > .panel-heading {

    color: #31708f;

    background-color: #d9edf7;

    border-color: #bce8f1;

}

.panel-info > .panel-heading + .panel-collapse > .panel-body {

    border-top-color: #bce8f1;

}

.panel-info > .panel-heading .badge {

    color: #d9edf7;

    background-color: #31708f;

}

.panel-info > .panel-footer + .panel-collapse > .panel-body {

    border-bottom-color: #bce8f1;

}

.panel-warning {

    border-color: #faebcc;

}

.panel-warning > .panel-heading {

    color: #8a6d3b;

    background-color: #fcf8e3;

    border-color: #faebcc;

}

.panel-warning > .panel-heading + .panel-collapse > .panel-body {

    border-top-color: #faebcc;

}

.panel-warning > .panel-heading .badge {

    color: #fcf8e3;

    background-color: #8a6d3b;

}

.panel-warning > .panel-footer + .panel-collapse > .panel-body {

    border-bottom-color: #faebcc;

}

.panel-danger {

    border-color: #ebccd1;

}

.panel-danger > .panel-heading {

    color: #a94442;

    background-color: #f2dede;

    border-color: #ebccd1;

}

.panel-danger > .panel-heading + .panel-collapse > .panel-body {

    border-top-color: #ebccd1;

}

.panel-danger > .panel-heading .badge {

    color: #f2dede;

    background-color: #a94442;

}

.panel-danger > .panel-footer + .panel-collapse > .panel-body {

    border-bottom-color: #ebccd1;

}

.embed-responsive {

    position: relative;

    display: block;

    height: 0;

    padding: 0;

    overflow: hidden;

}

.embed-responsive .embed-responsive-item,

.embed-responsive embed,

.embed-responsive iframe,

.embed-responsive object,

.embed-responsive video {

    position: absolute;

    top: 0;

    bottom: 0;

    left: 0;

    width: 100%;

    height: 100%;

    border: 0;

}

.embed-responsive-16by9 {

    padding-bottom: 56.25%;

}

.embed-responsive-4by3 {

    padding-bottom: 75%;

}

.well {

    min-height: 20px;

    padding: 19px;

    margin-bottom: 20px;

    background-color: #f5f5f5;

    border: 1px solid #e3e3e3;

    border-radius: 4px;

    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);

    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);

}

.well blockquote {

    border-color: #ddd;

    border-color: rgba(0, 0, 0, 0.15);

}

.well-lg {

    padding: 24px;

    border-radius: 6px;

}

.well-sm {

    padding: 9px;

    border-radius: 3px;

}

.close {

    float: right;

    font-size: 21px;

    font-weight: 700;

    line-height: 1;

    color: #000;

    text-shadow: 0 1px 0 #fff;

    filter: alpha(opacity=20);

    opacity: 0.2;

}

.close:focus,

.close:hover {

    color: #000;

    text-decoration: none;

    cursor: pointer;

    filter: alpha(opacity=50);

    opacity: 0.5;

}

button.close {

    -webkit-appearance: none;

    padding: 0;

    cursor: pointer;

    background: 0 0;

    border: 0;

}

.modal-open {

    overflow: hidden;

}

.modal {

    position: fixed;

    top: 0;

    right: 0;

    bottom: 0;

    left: 0;

    z-index: 1050;

    display: none;

    overflow: hidden;

    -webkit-overflow-scrolling: touch;

    outline: 0;

}

.modal.fade .modal-dialog {

    -webkit-transition: -webkit-transform 0.3s ease-out;

    -o-transition: -o-transform 0.3s ease-out;

    transition: transform 0.3s ease-out;

    -webkit-transform: translate(0, -25%);

    -ms-transform: translate(0, -25%);

    -o-transform: translate(0, -25%);

    transform: translate(0, -25%);

}

.modal.in .modal-dialog {

    -webkit-transform: translate(0, 0);

    -ms-transform: translate(0, 0);

    -o-transform: translate(0, 0);

    transform: translate(0, 0);

}

.modal-open .modal {

    overflow-x: hidden;

    overflow-y: auto;

}

.modal-dialog {

    position: relative;

    width: auto;

    margin: 10px;

}

.modal-content {

    position: relative;

    background-color: #fff;

    -webkit-background-clip: padding-box;

    background-clip: padding-box;

    border: 1px solid #999;

    border: 1px solid rgba(0, 0, 0, 0.2);

    border-radius: 6px;

    outline: 0;

    -webkit-box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);

    box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);

}

.modal-backdrop {

    position: fixed;

    top: 0;

    right: 0;

    bottom: 0;

    left: 0;

    z-index: 1040;

    background-color: #000;

}

.modal-backdrop.fade {

    filter: alpha(opacity=0);

    opacity: 0;

}

.modal-backdrop.in {

    filter: alpha(opacity=50);

    opacity: 0.5;

}

.modal-header {

    min-height: 16.43px;

    padding: 15px;

    border-bottom: 1px solid #e5e5e5;

}

.modal-header .close {

    margin-top: -2px;

}

.modal-title {

    margin: 0;

    line-height: 1.42857143;

}

.modal-body {

    position: relative;

    padding: 15px;

}

.modal-footer {

    padding: 15px;

    text-align: right;

    border-top: 1px solid #e5e5e5;

}

.modal-footer .btn + .btn {

    margin-bottom: 0;

    margin-left: 5px;

}

.modal-footer .btn-group .btn + .btn {

    margin-left: -1px;

}

.modal-footer .btn-block + .btn-block {

    margin-left: 0;

}

.modal-scrollbar-measure {

    position: absolute;

    top: -9999px;

    width: 50px;

    height: 50px;

    overflow: scroll;

}

@media (min-width: 768px) {

    .modal-dialog {

        width: 600px;

        margin: 30px auto;

    }

    .modal-content {

        -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);

        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);

    }

    .modal-sm {

        width: 300px;

    }

}

@media (min-width: 992px) {

    .modal-lg {

        width: 900px;

    }

}

.tooltip {

    position: absolute;

    z-index: 1070;

    display: block;

    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;

    font-size: 12px;

    font-weight: 400;

    line-height: 1.4;

    filter: alpha(opacity=0);

    opacity: 0;

}

.tooltip.in {

    filter: alpha(opacity=90);

    opacity: 0.9;

}

.tooltip.top {

    padding: 5px 0;

    margin-top: -3px;

}

.tooltip.right {

    padding: 0 5px;

    margin-left: 3px;

}

.tooltip.bottom {

    padding: 5px 0;

    margin-top: 3px;

}

.tooltip.left {

    padding: 0 5px;

    margin-left: -3px;

}

.tooltip-inner {

    max-width: 200px;

    padding: 3px 8px;

    color: #fff;

    text-align: center;

    text-decoration: none;

    background-color: #000;

    border-radius: 4px;

}

.tooltip-arrow {

    position: absolute;

    width: 0;

    height: 0;

    border-color: transparent;

    border-style: solid;

}

.tooltip.top .tooltip-arrow {

    bottom: 0;

    left: 50%;

    margin-left: -5px;

    border-width: 5px 5px 0;

    border-top-color: #000;

}

.tooltip.top-left .tooltip-arrow {

    right: 5px;

    bottom: 0;

    margin-bottom: -5px;

    border-width: 5px 5px 0;

    border-top-color: #000;

}

.tooltip.top-right .tooltip-arrow {

    bottom: 0;

    left: 5px;

    margin-bottom: -5px;

    border-width: 5px 5px 0;

    border-top-color: #000;

}

.tooltip.right .tooltip-arrow {

    top: 50%;

    left: 0;

    margin-top: -5px;

    border-width: 5px 5px 5px 0;

    border-right-color: #000;

}

.tooltip.left .tooltip-arrow {

    top: 50%;

    right: 0;

    margin-top: -5px;

    border-width: 5px 0 5px 5px;

    border-left-color: #000;

}

.tooltip.bottom .tooltip-arrow {

    top: 0;

    left: 50%;

    margin-left: -5px;

    border-width: 0 5px 5px;

    border-bottom-color: #000;

}

.tooltip.bottom-left .tooltip-arrow {

    top: 0;

    right: 5px;

    margin-top: -5px;

    border-width: 0 5px 5px;

    border-bottom-color: #000;

}

.tooltip.bottom-right .tooltip-arrow {

    top: 0;

    left: 5px;

    margin-top: -5px;

    border-width: 0 5px 5px;

    border-bottom-color: #000;

}

.popover {

    position: absolute;

    top: 0;

    left: 0;

    z-index: 1060;

    display: none;

    max-width: 276px;

    padding: 1px;

    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;

    font-size: 14px;

    font-weight: 400;

    line-height: 1.42857143;

    text-align: left;

    white-space: normal;

    background-color: #fff;

    -webkit-background-clip: padding-box;

    background-clip: padding-box;

    border: 1px solid #ccc;

    border: 1px solid rgba(0, 0, 0, 0.2);

    border-radius: 6px;

    -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);

    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);

}

.popover.top {

    margin-top: -10px;

}

.popover.right {

    margin-left: 10px;

}

.popover.bottom {

    margin-top: 10px;

}

.popover.left {

    margin-left: -10px;

}

.popover-title {

    padding: 8px 14px;

    margin: 0;

    font-size: 14px;

    background-color: #f7f7f7;

    border-bottom: 1px solid #ebebeb;

    border-radius: 5px 5px 0 0;

}

.popover-content {

    padding: 9px 14px;

}

.popover > .arrow,

.popover > .arrow:after {

    position: absolute;

    display: block;

    width: 0;

    height: 0;

    border-color: transparent;

    border-style: solid;

}

.popover > .arrow {

    border-width: 11px;

}

.popover > .arrow:after {

    content: "";

    border-width: 10px;

}

.popover.top > .arrow {

    bottom: -11px;

    left: 50%;

    margin-left: -11px;

    border-top-color: #999;

    border-top-color: rgba(0, 0, 0, 0.25);

    border-bottom-width: 0;

}

.popover.top > .arrow:after {

    bottom: 1px;

    margin-left: -10px;

    content: " ";

    border-top-color: #fff;

    border-bottom-width: 0;

}

.popover.right > .arrow {

    top: 50%;

    left: -11px;

    margin-top: -11px;

    border-right-color: #999;

    border-right-color: rgba(0, 0, 0, 0.25);

    border-left-width: 0;

}

.popover.right > .arrow:after {

    bottom: -10px;

    left: 1px;

    content: " ";

    border-right-color: #fff;

    border-left-width: 0;

}

.popover.bottom > .arrow {

    top: -11px;

    left: 50%;

    margin-left: -11px;

    border-top-width: 0;

    border-bottom-color: #999;

    border-bottom-color: rgba(0, 0, 0, 0.25);

}

.popover.bottom > .arrow:after {

    top: 1px;

    margin-left: -10px;

    content: " ";

    border-top-width: 0;

    border-bottom-color: #fff;

}

.popover.left > .arrow {

    top: 50%;

    right: -11px;

    margin-top: -11px;

    border-right-width: 0;

    border-left-color: #999;

    border-left-color: rgba(0, 0, 0, 0.25);

}

.popover.left > .arrow:after {

    right: 1px;

    bottom: -10px;

    content: " ";

    border-right-width: 0;

    border-left-color: #fff;

}

.carousel {

    position: relative;

}

.carousel-inner {

    position: relative;

    width: 100%;

    overflow: hidden;

}

.carousel-inner > .item {

    position: relative;

    display: none;

    -webkit-transition: 0.6s ease-in-out left;

    -o-transition: 0.6s ease-in-out left;

    transition: 0.6s ease-in-out left;

}

.carousel-inner > .item > a > img,

.carousel-inner > .item > img {

    line-height: 1;

}

@media all and (transform-3d), (-webkit-transform-3d) {

    .carousel-inner > .item {

        -webkit-transition: -webkit-transform 0.6s ease-in-out;

        -o-transition: -o-transform 0.6s ease-in-out;

        transition: transform 0.6s ease-in-out;

        -webkit-backface-visibility: hidden;

        backface-visibility: hidden;

        -webkit-perspective: 1000;

        perspective: 1000;

    }

    .carousel-inner > .item.active.right,

    .carousel-inner > .item.next {

        left: 0;

        -webkit-transform: translate3d(100%, 0, 0);

        transform: translate3d(100%, 0, 0);

    }

    .carousel-inner > .item.active.left,

    .carousel-inner > .item.prev {

        left: 0;

        -webkit-transform: translate3d(-100%, 0, 0);

        transform: translate3d(-100%, 0, 0);

    }

    .carousel-inner > .item.active,

    .carousel-inner > .item.next.left,

    .carousel-inner > .item.prev.right {

        left: 0;

        -webkit-transform: translate3d(0, 0, 0);

        transform: translate3d(0, 0, 0);

    }

}

.carousel-inner > .active,

.carousel-inner > .next,

.carousel-inner > .prev {

    display: block;

}

.carousel-inner > .active {

    left: 0;

}

.carousel-inner > .next,

.carousel-inner > .prev {

    position: absolute;

    top: 0;

    width: 100%;

}

.carousel-inner > .next {

    left: 100%;

}

.carousel-inner > .prev {

    left: -100%;

}

.carousel-inner > .next.left,

.carousel-inner > .prev.right {

    left: 0;

}

.carousel-inner > .active.left {

    left: -100%;

}

.carousel-inner > .active.right {

    left: 100%;

}

.carousel-control {

    position: absolute;

    top: 0;

    bottom: 0;

    left: 0;

    width: 15%;

    font-size: 20px;

    color: #fff;

    text-align: center;

    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);

    filter: alpha(opacity=50);

    opacity: 0.5;

}

.carousel-control.left {

    background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.5) 0, rgba(0, 0, 0, 0.0001) 100%);

    background-image: -o-linear-gradient(left, rgba(0, 0, 0, 0.5) 0, rgba(0, 0, 0, 0.0001) 100%);

    background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0.0001)));

    background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5) 0, rgba(0, 0, 0, 0.0001) 100%);

    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#80000000', endColorstr='#00000000', GradientType=1);

    background-repeat: repeat-x;

}

.carousel-control.right {

    right: 0;

    left: auto;

    background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.0001) 0, rgba(0, 0, 0, 0.5) 100%);

    background-image: -o-linear-gradient(left, rgba(0, 0, 0, 0.0001) 0, rgba(0, 0, 0, 0.5) 100%);

    background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0.0001)), to(rgba(0, 0, 0, 0.5)));

    background-image: linear-gradient(to right, rgba(0, 0, 0, 0.0001) 0, rgba(0, 0, 0, 0.5) 100%);

    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#80000000', GradientType=1);

    background-repeat: repeat-x;

}

.carousel-control:focus,

.carousel-control:hover {

    color: #fff;

    text-decoration: none;

    filter: alpha(opacity=90);

    outline: 0;

    opacity: 0.9;

}

.carousel-control .glyphicon-chevron-left,

.carousel-control .glyphicon-chevron-right,

.carousel-control .icon-next,

.carousel-control .icon-prev {

    position: absolute;

    top: 50%;

    z-index: 5;

    display: inline-block;

}

.carousel-control .glyphicon-chevron-left,

.carousel-control .icon-prev {

    left: 50%;

    margin-left: -10px;

}

.carousel-control .glyphicon-chevron-right,

.carousel-control .icon-next {

    right: 50%;

    margin-right: -10px;

}

.carousel-control .icon-next,

.carousel-control .icon-prev {

    width: 20px;

    height: 20px;

    margin-top: -10px;

    font-family: serif;

    line-height: 1;

}

.carousel-control .icon-prev:before {

    content: "\2039";

}

.carousel-control .icon-next:before {

    content: "\203a";

}

.carousel-indicators {

    position: absolute;

    bottom: 10px;

    left: 50%;

    z-index: 15;

    width: 60%;

    padding-left: 0;

    margin-left: -30%;

    text-align: center;

    list-style: none;

}

.carousel-indicators li {

    display: inline-block;

    width: 10px;

    height: 10px;

    margin: 1px;

    text-indent: -999px;

    cursor: pointer;

    background-color: #000 \9;

    background-color: rgba(0, 0, 0, 0);

    border: 1px solid #fff;

    border-radius: 10px;

}

.carousel-indicators .active {

    width: 12px;

    height: 12px;

    margin: 0;

    background-color: #fff;

}

.carousel-caption {

    position: absolute;

    right: 15%;

    bottom: 20px;

    left: 15%;

    z-index: 10;

    padding-top: 20px;

    padding-bottom: 20px;

    color: #fff;

    text-align: center;

    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);

}

.carousel-caption .btn {

    text-shadow: none;

}

@media screen and (min-width: 768px) {

    .carousel-control .glyphicon-chevron-left,

    .carousel-control .glyphicon-chevron-right,

    .carousel-control .icon-next,

    .carousel-control .icon-prev {

        width: 30px;

        height: 30px;

        margin-top: -15px;

        font-size: 30px;

    }

    .carousel-control .glyphicon-chevron-left,

    .carousel-control .icon-prev {

        margin-left: -15px;

    }

    .carousel-control .glyphicon-chevron-right,

    .carousel-control .icon-next {

        margin-right: -15px;

    }

    .carousel-caption {

        right: 20%;

        left: 20%;

        padding-bottom: 30px;

    }

    .carousel-indicators {

        bottom: 20px;

    }

}

.btn-group-vertical > .btn-group:after,

.btn-group-vertical > .btn-group:before,

.btn-toolbar:after,

.btn-toolbar:before,

.clearfix:after,

.clearfix:before,

.container-fluid:after,

.container-fluid:before,

.container:after,

.container:before,

.dl-horizontal dd:after,

.dl-horizontal dd:before,

.form-horizontal .form-group:after,

.form-horizontal .form-group:before,

.modal-footer:after,

.modal-footer:before,

.nav:after,

.nav:before,

.navbar-collapse:after,

.navbar-collapse:before,

.navbar-header:after,

.navbar-header:before,

.navbar:after,

.navbar:before,

.pager:after,

.pager:before,

.panel-body:after,

.panel-body:before,

.row:after,

.row:before {

    display: table;

    content: " ";

}

.btn-group-vertical > .btn-group:after,

.btn-toolbar:after,

.clearfix:after,

.container-fluid:after,

.container:after,

.dl-horizontal dd:after,

.form-horizontal .form-group:after,

.modal-footer:after,

.nav:after,

.navbar-collapse:after,

.navbar-header:after,

.navbar:after,

.pager:after,

.panel-body:after,

.row:after {

    clear: both;

}

.center-block {

    display: block;

    margin-right: auto;

    margin-left: auto;

}

.pull-right {

    float: right !important;

}

.pull-left {

    float: left !important;

}

.hide {

    display: none !important;

}

.show {

    display: block !important;

}

.invisible {

    visibility: hidden;

}

.text-hide {

    font: 0/0 a;

    color: transparent;

    text-shadow: none;

    background-color: transparent;

    border: 0;

}

.hidden {

    display: none !important;

}

.affix {

    position: fixed;

}

@-ms-viewport {

    width: device-width;

}

.visible-lg,

.visible-md,

.visible-sm,

.visible-xs {

    display: none !important;

}

.visible-lg-block,

.visible-lg-inline,

.visible-lg-inline-block,

.visible-md-block,

.visible-md-inline,

.visible-md-inline-block,

.visible-sm-block,

.visible-sm-inline,

.visible-sm-inline-block,

.visible-xs-block,

.visible-xs-inline,

.visible-xs-inline-block {

    display: none !important;

}

@media (max-width: 767px) {

    .visible-xs {

        display: block !important;

    }

    table.visible-xs {

        display: table;

    }

    tr.visible-xs {

        display: table-row !important;

    }

    td.visible-xs,

    th.visible-xs {

        display: table-cell !important;

    }

}

@media (max-width: 767px) {

    .visible-xs-block {

        display: block !important;

    }

}

@media (max-width: 767px) {

    .visible-xs-inline {

        display: inline !important;

    }

}

@media (max-width: 767px) {

    .visible-xs-inline-block {

        display: inline-block !important;

    }

}

@media (min-width: 768px) and (max-width: 991px) {

    .visible-sm {

        display: block !important;

    }

    table.visible-sm {

        display: table;

    }

    tr.visible-sm {

        display: table-row !important;

    }

    td.visible-sm,

    th.visible-sm {

        display: table-cell !important;

    }

}

@media (min-width: 768px) and (max-width: 991px) {

    .visible-sm-block {

        display: block !important;

    }

}

@media (min-width: 768px) and (max-width: 991px) {

    .visible-sm-inline {

        display: inline !important;

    }

}

@media (min-width: 768px) and (max-width: 991px) {

    .visible-sm-inline-block {

        display: inline-block !important;

    }

}

@media (min-width: 992px) and (max-width: 1199px) {

    .visible-md {

        display: block !important;

    }

    table.visible-md {

        display: table;

    }

    tr.visible-md {

        display: table-row !important;

    }

    td.visible-md,

    th.visible-md {

        display: table-cell !important;

    }

}

@media (min-width: 992px) and (max-width: 1199px) {

    .visible-md-block {

        display: block !important;

    }

}

@media (min-width: 992px) and (max-width: 1199px) {

    .visible-md-inline {

        display: inline !important;

    }

}

@media (min-width: 992px) and (max-width: 1199px) {

    .visible-md-inline-block {

        display: inline-block !important;

    }

}

@media (min-width: 1200px) {

    .visible-lg {

        display: block !important;

    }

    table.visible-lg {

        display: table;

    }

    tr.visible-lg {

        display: table-row !important;

    }

    td.visible-lg,

    th.visible-lg {

        display: table-cell !important;

    }

}

@media (min-width: 1200px) {

    .visible-lg-block {

        display: block !important;

    }

}

@media (min-width: 1200px) {

    .visible-lg-inline {

        display: inline !important;

    }

}

@media (min-width: 1200px) {

    .visible-lg-inline-block {

        display: inline-block !important;

    }

}

@media (max-width: 767px) {

    .hidden-xs {

        display: none !important;

    }

}

@media (min-width: 768px) and (max-width: 991px) {

    .hidden-sm {

        display: none !important;

    }

}

@media (min-width: 992px) and (max-width: 1199px) {

    .hidden-md {

        display: none !important;

    }

}

@media (min-width: 1200px) {

    .hidden-lg {

        display: none !important;

    }

}

.visible-print {

    display: none !important;

}

@media print {

    .visible-print {

        display: block !important;

    }

    table.visible-print {

        display: table;

    }

    tr.visible-print {

        display: table-row !important;

    }

    td.visible-print,

    th.visible-print {

        display: table-cell !important;

    }

}

.visible-print-block {

    display: none !important;

}

@media print {

    .visible-print-block {

        display: block !important;

    }

}

.visible-print-inline {

    display: none !important;

}

@media print {

    .visible-print-inline {

        display: inline !important;

    }

}

.visible-print-inline-block {

    display: none !important;

}

@media print {

    .visible-print-inline-block {

        display: inline-block !important;

    }

}

@media print {

    .hidden-print {

        display: none !important;

    }

}

   

 /*ET-LINE-ICON.CSS*/

 @font-face{font-family:'et-line';src:url('../fonts/et-line.eot');src:url('../fonts/et-line.eot?#iefix') format('embedded-opentype'),url('../fonts/et-line.woff') format('woff'),url('../fonts/et-line.ttf') format('truetype'),url('../fonts/et-line.svg#et-line') format('svg');font-weight:normal;font-style:normal}[data-icon]:before{font-family:'et-line';content:attr(data-icon);speak:none;font-weight:normal;font-variant:normal;text-transform:none;line-height:1;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;display:inline-block}.icon-mobile,.icon-laptop,.icon-desktop,.icon-tablet,.icon-phone,.icon-document,.icon-documents,.icon-search,.icon-clipboard,.icon-newspaper,.icon-notebook,.icon-book-open,.icon-browser,.icon-calendar,.icon-presentation,.icon-picture,.icon-pictures,.icon-video,.icon-camera,.icon-printer,.icon-toolbox,.icon-briefcase,.icon-wallet,.icon-gift,.icon-bargraph,.icon-grid,.icon-expand,.icon-focus,.icon-edit,.icon-adjustments,.icon-ribbon,.icon-hourglass,.icon-lock,.icon-megaphone,.icon-shield,.icon-trophy,.icon-flag,.icon-map,.icon-puzzle,.icon-basket,.icon-envelope,.icon-streetsign,.icon-telescope,.icon-gears,.icon-key,.icon-paperclip,.icon-attachment,.icon-pricetags,.icon-lightbulb,.icon-layers,.icon-pencil,.icon-tools,.icon-tools-2,.icon-scissors,.icon-paintbrush,.icon-magnifying-glass,.icon-circle-compass,.icon-linegraph,.icon-mic,.icon-strategy,.icon-beaker,.icon-caution,.icon-recycle,.icon-anchor,.icon-profile-male,.icon-profile-female,.icon-bike,.icon-wine,.icon-hotairballoon,.icon-globe,.icon-genius,.icon-map-pin,.icon-dial,.icon-chat,.icon-heart,.icon-cloud,.icon-upload,.icon-download,.icon-target,.icon-hazardous,.icon-piechart,.icon-speedometer,.icon-global,.icon-compass,.icon-lifesaver,.icon-clock,.icon-aperture,.icon-quote,.icon-scope,.icon-alarmclock,.icon-refresh,.icon-happy,.icon-sad,.icon-facebook,.icon-twitter,.icon-googleplus,.icon-rss,.icon-tumblr,.icon-linkedin,.icon-dribbble{font-family:'et-line';speak:none;font-style:normal;font-weight:normal;font-variant:normal;text-transform:none;line-height:1.1;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;display:inline-block}.icon-mobile:before{content:"\e000"}.icon-laptop:before{content:"\e001"}.icon-desktop:before{content:"\e002"}.icon-tablet:before{content:"\e003"}.icon-phone:before{content:"\e004"}.icon-document:before{content:"\e005"}.icon-documents:before{content:"\e006"}.icon-search:before{content:"\e007"}.icon-clipboard:before{content:"\e008"}.icon-newspaper:before{content:"\e009"}.icon-notebook:before{content:"\e00a"}.icon-book-open:before{content:"\e00b"}.icon-browser:before{content:"\e00c"}.icon-calendar:before{content:"\e00d"}.icon-presentation:before{content:"\e00e"}.icon-picture:before{content:"\e00f"}.icon-pictures:before{content:"\e010"}.icon-video:before{content:"\e011"}.icon-camera:before{content:"\e012"}.icon-printer:before{content:"\e013"}.icon-toolbox:before{content:"\e014"}.icon-briefcase:before{content:"\e015"}.icon-wallet:before{content:"\e016"}.icon-gift:before{content:"\e017"}.icon-bargraph:before{content:"\e018"}.icon-grid:before{content:"\e019"}.icon-expand:before{content:"\e01a"}.icon-focus:before{content:"\e01b"}.icon-edit:before{content:"\e01c"}.icon-adjustments:before{content:"\e01d"}.icon-ribbon:before{content:"\e01e"}.icon-hourglass:before{content:"\e01f"}.icon-lock:before{content:"\e020"}.icon-megaphone:before{content:"\e021"}.icon-shield:before{content:"\e022"}.icon-trophy:before{content:"\e023"}.icon-flag:before{content:"\e024"}.icon-map:before{content:"\e025"}.icon-puzzle:before{content:"\e026"}.icon-basket:before{content:"\e027"}.icon-envelope:before{content:"\e028"}.icon-streetsign:before{content:"\e029"}.icon-telescope:before{content:"\e02a"}.icon-gears:before{content:"\e02b"}.icon-key:before{content:"\e02c"}.icon-paperclip:before{content:"\e02d"}.icon-attachment:before{content:"\e02e"}.icon-pricetags:before{content:"\e02f"}.icon-lightbulb:before{content:"\e030"}.icon-layers:before{content:"\e031"}.icon-pencil:before{content:"\e032"}.icon-tools:before{content:"\e033"}.icon-tools-2:before{content:"\e034"}.icon-scissors:before{content:"\e035"}.icon-paintbrush:before{content:"\e036"}.icon-magnifying-glass:before{content:"\e037"}.icon-circle-compass:before{content:"\e038"}.icon-linegraph:before{content:"\e039"}.icon-mic:before{content:"\e03a"}.icon-strategy:before{content:"\e03b"}.icon-beaker:before{content:"\e03c"}.icon-caution:before{content:"\e03d"}.icon-recycle:before{content:"\e03e"}.icon-anchor:before{content:"\e03f"}.icon-profile-male:before{content:"\e040"}.icon-profile-female:before{content:"\e041"}.icon-bike:before{content:"\e042"}.icon-wine:before{content:"\e043"}.icon-hotairballoon:before{content:"\e044"}.icon-globe:before{content:"\e045"}.icon-genius:before{content:"\e046"}.icon-map-pin:before{content:"\e047"}.icon-dial:before{content:"\e048"}.icon-chat:before{content:"\e049"}.icon-heart:before{content:"\e04a"}.icon-cloud:before{content:"\e04b"}.icon-upload:before{content:"\e04c"}.icon-download:before{content:"\e04d"}.icon-target:before{content:"\e04e"}.icon-hazardous:before{content:"\e04f"}.icon-piechart:before{content:"\e050"}.icon-speedometer:before{content:"\e051"}.icon-global:before{content:"\e052"}.icon-compass:before{content:"\e053"}.icon-lifesaver:before{content:"\e054"}.icon-clock:before{content:"\e055"}.icon-aperture:before{content:"\e056"}.icon-quote:before{content:"\e057"}.icon-scope:before{content:"\e058"}.icon-alarmclock:before{content:"\e059"}.icon-refresh:before{content:"\e05a"}.icon-happy:before{content:"\e05b"}.icon-sad:before{content:"\e05c"}.icon-facebook:before{content:"\e05d"}.icon-twitter:before{content:"\e05e"}.icon-googleplus:before{content:"\e05f"}.icon-rss:before{content:"\e060"}.icon-tumblr:before{content:"\e061"}.icon-linkedin:before{content:"\e062"}.icon-dribbble:before{content:"\e063"}







 /*FONT-AWESOME.MMIN.CSS*/

 /*!

 *  Font Awesome 4.3.0 by @davegandy - http://fontawesome.io - @fontawesome

 *  License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License)*/

@font-face {

    font-family: "FontAwesome";

    src: url("../fonts/fontawesome-webfont.eot?v=4.3.0");

    src: url("../fonts/fontawesome-webfont.eot?#iefix&v=4.3.0") format("embedded-opentype"), url("../fonts/fontawesome-webfont.woff2?v=4.3.0") format("woff2"), url("../fonts/fontawesome-webfont.woff?v=4.3.0") format("woff"),

        url("../fonts/fontawesome-webfont.ttf?v=4.3.0") format("truetype"), url("../fonts/fontawesome-webfont.svg?v=4.3.0#fontawesomeregular") format("svg");

    font-weight: normal;

    font-style: normal;

}

.fa {

    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;

    transform: translate(0, 0);

}

.fa-lg {

    font-size: 1.33333333em;

    line-height: 0.75em;

    vertical-align: -15%;

}

.fa-2x {

    font-size: 2em;

}

.fa-3x {

    font-size: 3em;

}

.fa-4x {

    font-size: 4em;

}

.fa-5x {

    font-size: 5em;

}

.fa-fw {

    width: 1.28571429em;

    text-align: center;

}

.fa-ul {

    padding-left: 0;

    margin-left: 2.14285714em;

    list-style-type: none;

}

.fa-ul > li {

    position: relative;

}

.fa-li {

    position: absolute;

    left: -2.14285714em;

    width: 2.14285714em;

    top: 0.14285714em;

    text-align: center;

}

.fa-li.fa-lg {

    left: -1.85714286em;

}

.fa-border {

    padding: 0.2em 0.25em 0.15em;

    border: solid 0.08em #eee;

    border-radius: 0.1em;

}

.pull-right {

    float: right;

}

.pull-left {

    float: left;

}

.fa.pull-left {

    margin-right: 0.3em;

}

.fa.pull-right {

    margin-left: 0.3em;

}

.fa-spin {

    -webkit-animation: fa-spin 2s infinite linear;

    animation: fa-spin 2s infinite linear;

}

.fa-pulse {

    -webkit-animation: fa-spin 1s infinite steps(8);

    animation: fa-spin 1s infinite steps(8);

}

@-webkit-keyframes fa-spin {

    0% {

        -webkit-transform: rotate(0deg);

        transform: rotate(0deg);

    }

    100% {

        -webkit-transform: rotate(359deg);

        transform: rotate(359deg);

    }

}

@keyframes fa-spin {

    0% {

        -webkit-transform: rotate(0deg);

        transform: rotate(0deg);

    }

    100% {

        -webkit-transform: rotate(359deg);

        transform: rotate(359deg);

    }

}

.fa-rotate-90 {

    filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=1);

    -webkit-transform: rotate(90deg);

    -ms-transform: rotate(90deg);

    transform: rotate(90deg);

}

.fa-rotate-180 {

    filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=2);

    -webkit-transform: rotate(180deg);

    -ms-transform: rotate(180deg);

    transform: rotate(180deg);

}

.fa-rotate-270 {

    filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=3);

    -webkit-transform: rotate(270deg);

    -ms-transform: rotate(270deg);

    transform: rotate(270deg);

}

.fa-flip-horizontal {

    filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1);

    -webkit-transform: scale(-1, 1);

    -ms-transform: scale(-1, 1);

    transform: scale(-1, 1);

}

.fa-flip-vertical {

    filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1);

    -webkit-transform: scale(1, -1);

    -ms-transform: scale(1, -1);

    transform: scale(1, -1);

}

:root .fa-rotate-90,

:root .fa-rotate-180,

:root .fa-rotate-270,

:root .fa-flip-horizontal,

:root .fa-flip-vertical {

    filter: none;

}

.fa-stack {

    position: relative;

    display: inline-block;

    width: 2em;

    height: 2em;

    line-height: 2em;

    vertical-align: middle;

}

.fa-stack-1x,

.fa-stack-2x {

    position: absolute;

    left: 0;

    width: 100%;

    text-align: center;

}

.fa-stack-1x {

    line-height: inherit;

}

.fa-stack-2x {

    font-size: 2em;

}

.fa-inverse {

    color: #fff;

}

.fa-glass:before {

    content: "\f000";

}

.fa-music:before {

    content: "\f001";

}

.fa-search:before {

    content: "\f002";

}

.fa-envelope-o:before {

    content: "\f003";

}

.fa-heart:before {

    content: "\f004";

}

.fa-star:before {

    content: "\f005";

}

.fa-star-o:before {

    content: "\f006";

}

.fa-user:before {

    content: "\f007";

}

.fa-film:before {

    content: "\f008";

}

.fa-th-large:before {

    content: "\f009";

}

.fa-th:before {

    content: "\f00a";

}

.fa-th-list:before {

    content: "\f00b";

}

.fa-check:before {

    content: "\f00c";

}

.fa-remove:before,

.fa-close:before,

.fa-times:before {

    content: "\f00d";

}

.fa-search-plus:before {

    content: "\f00e";

}

.fa-search-minus:before {

    content: "\f010";

}

.fa-power-off:before {

    content: "\f011";

}

.fa-signal:before {

    content: "\f012";

}

.fa-gear:before,

.fa-cog:before {

    content: "\f013";

}

.fa-trash-o:before {

    content: "\f014";

}

.fa-home:before {

    content: "\f015";

}

.fa-file-o:before {

    content: "\f016";

}

.fa-clock-o:before {

    content: "\f017";

}

.fa-road:before {

    content: "\f018";

}

.fa-download:before {

    content: "\f019";

}

.fa-arrow-circle-o-down:before {

    content: "\f01a";

}

.fa-arrow-circle-o-up:before {

    content: "\f01b";

}

.fa-inbox:before {

    content: "\f01c";

}

.fa-play-circle-o:before {

    content: "\f01d";

}

.fa-rotate-right:before,

.fa-repeat:before {

    content: "\f01e";

}

.fa-refresh:before {

    content: "\f021";

}

.fa-list-alt:before {

    content: "\f022";

}

.fa-lock:before {

    content: "\f023";

}

.fa-flag:before {

    content: "\f024";

}

.fa-headphones:before {

    content: "\f025";

}

.fa-volume-off:before {

    content: "\f026";

}

.fa-volume-down:before {

    content: "\f027";

}

.fa-volume-up:before {

    content: "\f028";

}

.fa-qrcode:before {

    content: "\f029";

}

.fa-barcode:before {

    content: "\f02a";

}

.fa-tag:before {

    content: "\f02b";

}

.fa-tags:before {

    content: "\f02c";

}

.fa-book:before {

    content: "\f02d";

}

.fa-bookmark:before {

    content: "\f02e";

}

.fa-print:before {

    content: "\f02f";

}

.fa-camera:before {

    content: "\f030";

}

.fa-font:before {

    content: "\f031";

}

.fa-bold:before {

    content: "\f032";

}

.fa-italic:before {

    content: "\f033";

}

.fa-text-height:before {

    content: "\f034";

}

.fa-text-width:before {

    content: "\f035";

}

.fa-align-left:before {

    content: "\f036";

}

.fa-align-center:before {

    content: "\f037";

}

.fa-align-right:before {

    content: "\f038";

}

.fa-align-justify:before {

    content: "\f039";

}

.fa-list:before {

    content: "\f03a";

}

.fa-dedent:before,

.fa-outdent:before {

    content: "\f03b";

}

.fa-indent:before {

    content: "\f03c";

}

.fa-video-camera:before {

    content: "\f03d";

}

.fa-photo:before,

.fa-image:before,

.fa-picture-o:before {

    content: "\f03e";

}

.fa-pencil:before {

    content: "\f040";

}

.fa-map-marker:before {

    content: "\f041";

}

.fa-adjust:before {

    content: "\f042";

}

.fa-tint:before {

    content: "\f043";

}

.fa-edit:before,

.fa-pencil-square-o:before {

    content: "\f044";

}

.fa-share-square-o:before {

    content: "\f045";

}

.fa-check-square-o:before {

    content: "\f046";

}

.fa-arrows:before {

    content: "\f047";

}

.fa-step-backward:before {

    content: "\f048";

}

.fa-fast-backward:before {

    content: "\f049";

}

.fa-backward:before {

    content: "\f04a";

}

.fa-play:before {

    content: "\f04b";

}

.fa-pause:before {

    content: "\f04c";

}

.fa-stop:before {

    content: "\f04d";

}

.fa-forward:before {

    content: "\f04e";

}

.fa-fast-forward:before {

    content: "\f050";

}

.fa-step-forward:before {

    content: "\f051";

}

.fa-eject:before {

    content: "\f052";

}

.fa-chevron-left:before {

    content: "\f053";

}

.fa-chevron-right:before {

    content: "\f054";

}

.fa-plus-circle:before {

    content: "\f055";

}

.fa-minus-circle:before {

    content: "\f056";

}

.fa-times-circle:before {

    content: "\f057";

}

.fa-check-circle:before {

    content: "\f058";

}

.fa-question-circle:before {

    content: "\f059";

}

.fa-info-circle:before {

    content: "\f05a";

}

.fa-crosshairs:before {

    content: "\f05b";

}

.fa-times-circle-o:before {

    content: "\f05c";

}

.fa-check-circle-o:before {

    content: "\f05d";

}

.fa-ban:before {

    content: "\f05e";

}

.fa-arrow-left:before {

    content: "\f060";

}

.fa-arrow-right:before {

    content: "\f061";

}

.fa-arrow-up:before {

    content: "\f062";

}

.fa-arrow-down:before {

    content: "\f063";

}

.fa-mail-forward:before,

.fa-share:before {

    content: "\f064";

}

.fa-expand:before {

    content: "\f065";

}

.fa-compress:before {

    content: "\f066";

}

.fa-plus:before {

    content: "\f067";

}

.fa-minus:before {

    content: "\f068";

}

.fa-asterisk:before {

    content: "\f069";

}

.fa-exclamation-circle:before {

    content: "\f06a";

}

.fa-gift:before {

    content: "\f06b";

}

.fa-leaf:before {

    content: "\f06c";

}

.fa-fire:before {

    content: "\f06d";

}

.fa-eye:before {

    content: "\f06e";

}

.fa-eye-slash:before {

    content: "\f070";

}

.fa-warning:before,

.fa-exclamation-triangle:before {

    content: "\f071";

}

.fa-plane:before {

    content: "\f072";

}

.fa-calendar:before {

    content: "\f073";

}

.fa-random:before {

    content: "\f074";

}

.fa-comment:before {

    content: "\f075";

}

.fa-magnet:before {

    content: "\f076";

}

.fa-chevron-up:before {

    content: "\f077";

}

.fa-chevron-down:before {

    content: "\f078";

}

.fa-retweet:before {

    content: "\f079";

}

.fa-shopping-cart:before {

    content: "\f07a";

}

.fa-folder:before {

    content: "\f07b";

}

.fa-folder-open:before {

    content: "\f07c";

}

.fa-arrows-v:before {

    content: "\f07d";

}

.fa-arrows-h:before {

    content: "\f07e";

}

.fa-bar-chart-o:before,

.fa-bar-chart:before {

    content: "\f080";

}

.fa-twitter-square:before {

    content: "\f081";

}

.fa-facebook-square:before {

    content: "\f082";

}

.fa-camera-retro:before {

    content: "\f083";

}

.fa-key:before {

    content: "\f084";

}

.fa-gears:before,

.fa-cogs:before {

    content: "\f085";

}

.fa-comments:before {

    content: "\f086";

}

.fa-thumbs-o-up:before {

    content: "\f087";

}

.fa-thumbs-o-down:before {

    content: "\f088";

}

.fa-star-half:before {

    content: "\f089";

}

.fa-heart-o:before {

    content: "\f08a";

}

.fa-sign-out:before {

    content: "\f08b";

}

.fa-linkedin-square:before {

    content: "\f08c";

}

.fa-thumb-tack:before {

    content: "\f08d";

}

.fa-external-link:before {

    content: "\f08e";

}

.fa-sign-in:before {

    content: "\f090";

}

.fa-trophy:before {

    content: "\f091";

}

.fa-github-square:before {

    content: "\f092";

}

.fa-upload:before {

    content: "\f093";

}

.fa-lemon-o:before {

    content: "\f094";

}

.fa-phone:before {

    content: "\f095";

}

.fa-square-o:before {

    content: "\f096";

}

.fa-bookmark-o:before {

    content: "\f097";

}

.fa-phone-square:before {

    content: "\f098";

}

.fa-twitter:before {

    content: "\f099";

}

.fa-facebook-f:before,

.fa-facebook:before {

    content: "\f09a";

}

.fa-github:before {

    content: "\f09b";

}

.fa-unlock:before {

    content: "\f09c";

}

.fa-credit-card:before {

    content: "\f09d";

}

.fa-rss:before {

    content: "\f09e";

}

.fa-hdd-o:before {

    content: "\f0a0";

}

.fa-bullhorn:before {

    content: "\f0a1";

}

.fa-bell:before {

    content: "\f0f3";

}

.fa-certificate:before {

    content: "\f0a3";

}

.fa-hand-o-right:before {

    content: "\f0a4";

}

.fa-hand-o-left:before {

    content: "\f0a5";

}

.fa-hand-o-up:before {

    content: "\f0a6";

}

.fa-hand-o-down:before {

    content: "\f0a7";

}

.fa-arrow-circle-left:before {

    content: "\f0a8";

}

.fa-arrow-circle-right:before {

    content: "\f0a9";

}

.fa-arrow-circle-up:before {

    content: "\f0aa";

}

.fa-arrow-circle-down:before {

    content: "\f0ab";

}

.fa-globe:before {

    content: "\f0ac";

}

.fa-wrench:before {

    content: "\f0ad";

}

.fa-tasks:before {

    content: "\f0ae";

}

.fa-filter:before {

    content: "\f0b0";

}

.fa-briefcase:before {

    content: "\f0b1";

}

.fa-arrows-alt:before {

    content: "\f0b2";

}

.fa-group:before,

.fa-users:before {

    content: "\f0c0";

}

.fa-chain:before,

.fa-link:before {

    content: "\f0c1";

}

.fa-cloud:before {

    content: "\f0c2";

}

.fa-flask:before {

    content: "\f0c3";

}

.fa-cut:before,

.fa-scissors:before {

    content: "\f0c4";

}

.fa-copy:before,

.fa-files-o:before {

    content: "\f0c5";

}

.fa-paperclip:before {

    content: "\f0c6";

}

.fa-save:before,

.fa-floppy-o:before {

    content: "\f0c7";

}

.fa-square:before {

    content: "\f0c8";

}

.fa-navicon:before,

.fa-reorder:before,

.fa-bars:before {

    content: "\f0c9";

}

.fa-list-ul:before {

    content: "\f0ca";

}

.fa-list-ol:before {

    content: "\f0cb";

}

.fa-strikethrough:before {

    content: "\f0cc";

}

.fa-underline:before {

    content: "\f0cd";

}

.fa-table:before {

    content: "\f0ce";

}

.fa-magic:before {

    content: "\f0d0";

}

.fa-truck:before {

    content: "\f0d1";

}

.fa-pinterest:before {

    content: "\f0d2";

}

.fa-pinterest-square:before {

    content: "\f0d3";

}

.fa-google-plus-square:before {

    content: "\f0d4";

}

.fa-google-plus:before {

    content: "\f0d5";

}

.fa-money:before {

    content: "\f0d6";

}

.fa-caret-down:before {

    content: "\f0d7";

}

.fa-caret-up:before {

    content: "\f0d8";

}

.fa-caret-left:before {

    content: "\f0d9";

}

.fa-caret-right:before {

    content: "\f0da";

}

.fa-columns:before {

    content: "\f0db";

}

.fa-unsorted:before,

.fa-sort:before {

    content: "\f0dc";

}

.fa-sort-down:before,

.fa-sort-desc:before {

    content: "\f0dd";

}

.fa-sort-up:before,

.fa-sort-asc:before {

    content: "\f0de";

}

.fa-envelope:before {

    content: "\f0e0";

}

.fa-linkedin:before {

    content: "\f0e1";

}

.fa-rotate-left:before,

.fa-undo:before {

    content: "\f0e2";

}

.fa-legal:before,

.fa-gavel:before {

    content: "\f0e3";

}

.fa-dashboard:before,

.fa-tachometer:before {

    content: "\f0e4";

}

.fa-comment-o:before {

    content: "\f0e5";

}

.fa-comments-o:before {

    content: "\f0e6";

}

.fa-flash:before,

.fa-bolt:before {

    content: "\f0e7";

}

.fa-sitemap:before {

    content: "\f0e8";

}

.fa-umbrella:before {

    content: "\f0e9";

}

.fa-paste:before,

.fa-clipboard:before {

    content: "\f0ea";

}

.fa-lightbulb-o:before {

    content: "\f0eb";

}

.fa-exchange:before {

    content: "\f0ec";

}

.fa-cloud-download:before {

    content: "\f0ed";

}

.fa-cloud-upload:before {

    content: "\f0ee";

}

.fa-user-md:before {

    content: "\f0f0";

}

.fa-stethoscope:before {

    content: "\f0f1";

}

.fa-suitcase:before {

    content: "\f0f2";

}

.fa-bell-o:before {

    content: "\f0a2";

}

.fa-coffee:before {

    content: "\f0f4";

}

.fa-cutlery:before {

    content: "\f0f5";

}

.fa-file-text-o:before {

    content: "\f0f6";

}

.fa-building-o:before {

    content: "\f0f7";

}

.fa-hospital-o:before {

    content: "\f0f8";

}

.fa-ambulance:before {

    content: "\f0f9";

}

.fa-medkit:before {

    content: "\f0fa";

}

.fa-fighter-jet:before {

    content: "\f0fb";

}

.fa-beer:before {

    content: "\f0fc";

}

.fa-h-square:before {

    content: "\f0fd";

}

.fa-plus-square:before {

    content: "\f0fe";

}

.fa-angle-double-left:before {

    content: "\f100";

}

.fa-angle-double-right:before {

    content: "\f101";

}

.fa-angle-double-up:before {

    content: "\f102";

}

.fa-angle-double-down:before {

    content: "\f103";

}

.fa-angle-left:before {

    content: "\f104";

}

.fa-angle-right:before {

    content: "\f105";

}

.fa-angle-up:before {

    content: "\f106";

}

.fa-angle-down:before {

    content: "\f107";

}

.fa-desktop:before {

    content: "\f108";

}

.fa-laptop:before {

    content: "\f109";

}

.fa-tablet:before {

    content: "\f10a";

}

.fa-mobile-phone:before,

.fa-mobile:before {

    content: "\f10b";

}

.fa-circle-o:before {

    content: "\f10c";

}

.fa-quote-left:before {

    content: "\f10d";

}

.fa-quote-right:before {

    content: "\f10e";

}

.fa-spinner:before {

    content: "\f110";

}

.fa-circle:before {

    content: "\f111";

}

.fa-mail-reply:before,

.fa-reply:before {

    content: "\f112";

}

.fa-github-alt:before {

    content: "\f113";

}

.fa-folder-o:before {

    content: "\f114";

}

.fa-folder-open-o:before {

    content: "\f115";

}

.fa-smile-o:before {

    content: "\f118";

}

.fa-frown-o:before {

    content: "\f119";

}

.fa-meh-o:before {

    content: "\f11a";

}

.fa-gamepad:before {

    content: "\f11b";

}

.fa-keyboard-o:before {

    content: "\f11c";

}

.fa-flag-o:before {

    content: "\f11d";

}

.fa-flag-checkered:before {

    content: "\f11e";

}

.fa-terminal:before {

    content: "\f120";

}

.fa-code:before {

    content: "\f121";

}

.fa-mail-reply-all:before,

.fa-reply-all:before {

    content: "\f122";

}

.fa-star-half-empty:before,

.fa-star-half-full:before,

.fa-star-half-o:before {

    content: "\f123";

}

.fa-location-arrow:before {

    content: "\f124";

}

.fa-crop:before {

    content: "\f125";

}

.fa-code-fork:before {

    content: "\f126";

}

.fa-unlink:before,

.fa-chain-broken:before {

    content: "\f127";

}

.fa-question:before {

    content: "\f128";

}

.fa-info:before {

    content: "\f129";

}

.fa-exclamation:before {

    content: "\f12a";

}

.fa-superscript:before {

    content: "\f12b";

}

.fa-subscript:before {

    content: "\f12c";

}

.fa-eraser:before {

    content: "\f12d";

}

.fa-puzzle-piece:before {

    content: "\f12e";

}

.fa-microphone:before {

    content: "\f130";

}

.fa-microphone-slash:before {

    content: "\f131";

}

.fa-shield:before {

    content: "\f132";

}

.fa-calendar-o:before {

    content: "\f133";

}

.fa-fire-extinguisher:before {

    content: "\f134";

}

.fa-rocket:before {

    content: "\f135";

}

.fa-maxcdn:before {

    content: "\f136";

}

.fa-chevron-circle-left:before {

    content: "\f137";

}

.fa-chevron-circle-right:before {

    content: "\f138";

}

.fa-chevron-circle-up:before {

    content: "\f139";

}

.fa-chevron-circle-down:before {

    content: "\f13a";

}

.fa-html5:before {

    content: "\f13b";

}

.fa-css3:before {

    content: "\f13c";

}

.fa-anchor:before {

    content: "\f13d";

}

.fa-unlock-alt:before {

    content: "\f13e";

}

.fa-bullseye:before {

    content: "\f140";

}

.fa-ellipsis-h:before {

    content: "\f141";

}

.fa-ellipsis-v:before {

    content: "\f142";

}

.fa-rss-square:before {

    content: "\f143";

}

.fa-play-circle:before {

    content: "\f144";

}

.fa-ticket:before {

    content: "\f145";

}

.fa-minus-square:before {

    content: "\f146";

}

.fa-minus-square-o:before {

    content: "\f147";

}

.fa-level-up:before {

    content: "\f148";

}

.fa-level-down:before {

    content: "\f149";

}

.fa-check-square:before {

    content: "\f14a";

}

.fa-pencil-square:before {

    content: "\f14b";

}

.fa-external-link-square:before {

    content: "\f14c";

}

.fa-share-square:before {

    content: "\f14d";

}

.fa-compass:before {

    content: "\f14e";

}

.fa-toggle-down:before,

.fa-caret-square-o-down:before {

    content: "\f150";

}

.fa-toggle-up:before,

.fa-caret-square-o-up:before {

    content: "\f151";

}

.fa-toggle-right:before,

.fa-caret-square-o-right:before {

    content: "\f152";

}

.fa-euro:before,

.fa-eur:before {

    content: "\f153";

}

.fa-gbp:before {

    content: "\f154";

}

.fa-dollar:before,

.fa-usd:before {

    content: "\f155";

}

.fa-rupee:before,

.fa-inr:before {

    content: "\f156";

}

.fa-cny:before,

.fa-rmb:before,

.fa-yen:before,

.fa-jpy:before {

    content: "\f157";

}

.fa-ruble:before,

.fa-rouble:before,

.fa-rub:before {

    content: "\f158";

}

.fa-won:before,

.fa-krw:before {

    content: "\f159";

}

.fa-bitcoin:before,

.fa-btc:before {

    content: "\f15a";

}

.fa-file:before {

    content: "\f15b";

}

.fa-file-text:before {

    content: "\f15c";

}

.fa-sort-alpha-asc:before {

    content: "\f15d";

}

.fa-sort-alpha-desc:before {

    content: "\f15e";

}

.fa-sort-amount-asc:before {

    content: "\f160";

}

.fa-sort-amount-desc:before {

    content: "\f161";

}

.fa-sort-numeric-asc:before {

    content: "\f162";

}

.fa-sort-numeric-desc:before {

    content: "\f163";

}

.fa-thumbs-up:before {

    content: "\f164";

}

.fa-thumbs-down:before {

    content: "\f165";

}

.fa-youtube-square:before {

    content: "\f166";

}

.fa-youtube:before {

    content: "\f167";

}

.fa-xing:before {

    content: "\f168";

}

.fa-xing-square:before {

    content: "\f169";

}

.fa-youtube-play:before {

    content: "\f16a";

}

.fa-dropbox:before {

    content: "\f16b";

}

.fa-stack-overflow:before {

    content: "\f16c";

}

.fa-instagram:before {

    content: "\f16d";

}

.fa-flickr:before {

    content: "\f16e";

}

.fa-adn:before {

    content: "\f170";

}

.fa-bitbucket:before {

    content: "\f171";

}

.fa-bitbucket-square:before {

    content: "\f172";

}

.fa-tumblr:before {

    content: "\f173";

}

.fa-tumblr-square:before {

    content: "\f174";

}

.fa-long-arrow-down:before {

    content: "\f175";

}

.fa-long-arrow-up:before {

    content: "\f176";

}

.fa-long-arrow-left:before {

    content: "\f177";

}

.fa-long-arrow-right:before {

    content: "\f178";

}

.fa-apple:before {

    content: "\f179";

}

.fa-windows:before {

    content: "\f17a";

}

.fa-android:before {

    content: "\f17b";

}

.fa-linux:before {

    content: "\f17c";

}

.fa-dribbble:before {

    content: "\f17d";

}

.fa-skype:before {

    content: "\f17e";

}

.fa-foursquare:before {

    content: "\f180";

}

.fa-trello:before {

    content: "\f181";

}

.fa-female:before {

    content: "\f182";

}

.fa-male:before {

    content: "\f183";

}

.fa-gittip:before,

.fa-gratipay:before {

    content: "\f184";

}

.fa-sun-o:before {

    content: "\f185";

}

.fa-moon-o:before {

    content: "\f186";

}

.fa-archive:before {

    content: "\f187";

}

.fa-bug:before {

    content: "\f188";

}

.fa-vk:before {

    content: "\f189";

}

.fa-weibo:before {

    content: "\f18a";

}

.fa-renren:before {

    content: "\f18b";

}

.fa-pagelines:before {

    content: "\f18c";

}

.fa-stack-exchange:before {

    content: "\f18d";

}

.fa-arrow-circle-o-right:before {

    content: "\f18e";

}

.fa-arrow-circle-o-left:before {

    content: "\f190";

}

.fa-toggle-left:before,

.fa-caret-square-o-left:before {

    content: "\f191";

}

.fa-dot-circle-o:before {

    content: "\f192";

}

.fa-wheelchair:before {

    content: "\f193";

}

.fa-vimeo-square:before {

    content: "\f194";

}

.fa-turkish-lira:before,

.fa-try:before {

    content: "\f195";

}

.fa-plus-square-o:before {

    content: "\f196";

}

.fa-space-shuttle:before {

    content: "\f197";

}

.fa-slack:before {

    content: "\f198";

}

.fa-envelope-square:before {

    content: "\f199";

}

.fa-wordpress:before {

    content: "\f19a";

}

.fa-openid:before {

    content: "\f19b";

}

.fa-institution:before,

.fa-bank:before,

.fa-university:before {

    content: "\f19c";

}

.fa-mortar-board:before,

.fa-graduation-cap:before {

    content: "\f19d";

}

.fa-yahoo:before {

    content: "\f19e";

}

.fa-google:before {

    content: "\f1a0";

}

.fa-reddit:before {

    content: "\f1a1";

}

.fa-reddit-square:before {

    content: "\f1a2";

}

.fa-stumbleupon-circle:before {

    content: "\f1a3";

}

.fa-stumbleupon:before {

    content: "\f1a4";

}

.fa-delicious:before {

    content: "\f1a5";

}

.fa-digg:before {

    content: "\f1a6";

}

.fa-pied-piper:before {

    content: "\f1a7";

}

.fa-pied-piper-alt:before {

    content: "\f1a8";

}

.fa-drupal:before {

    content: "\f1a9";

}

.fa-joomla:before {

    content: "\f1aa";

}

.fa-language:before {

    content: "\f1ab";

}

.fa-fax:before {

    content: "\f1ac";

}

.fa-building:before {

    content: "\f1ad";

}

.fa-child:before {

    content: "\f1ae";

}

.fa-paw:before {

    content: "\f1b0";

}

.fa-spoon:before {

    content: "\f1b1";

}

.fa-cube:before {

    content: "\f1b2";

}

.fa-cubes:before {

    content: "\f1b3";

}

.fa-behance:before {

    content: "\f1b4";

}

.fa-behance-square:before {

    content: "\f1b5";

}

.fa-steam:before {

    content: "\f1b6";

}

.fa-steam-square:before {

    content: "\f1b7";

}

.fa-recycle:before {

    content: "\f1b8";

}

.fa-automobile:before,

.fa-car:before {

    content: "\f1b9";

}

.fa-cab:before,

.fa-taxi:before {

    content: "\f1ba";

}

.fa-tree:before {

    content: "\f1bb";

}

.fa-spotify:before {

    content: "\f1bc";

}

.fa-deviantart:before {

    content: "\f1bd";

}

.fa-soundcloud:before {

    content: "\f1be";

}

.fa-database:before {

    content: "\f1c0";

}

.fa-file-pdf-o:before {

    content: "\f1c1";

}

.fa-file-word-o:before {

    content: "\f1c2";

}

.fa-file-excel-o:before {

    content: "\f1c3";

}

.fa-file-powerpoint-o:before {

    content: "\f1c4";

}

.fa-file-photo-o:before,

.fa-file-picture-o:before,

.fa-file-image-o:before {

    content: "\f1c5";

}

.fa-file-zip-o:before,

.fa-file-archive-o:before {

    content: "\f1c6";

}

.fa-file-sound-o:before,

.fa-file-audio-o:before {

    content: "\f1c7";

}

.fa-file-movie-o:before,

.fa-file-video-o:before {

    content: "\f1c8";

}

.fa-file-code-o:before {

    content: "\f1c9";

}

.fa-vine:before {

    content: "\f1ca";

}

.fa-codepen:before {

    content: "\f1cb";

}

.fa-jsfiddle:before {

    content: "\f1cc";

}

.fa-life-bouy:before,

.fa-life-buoy:before,

.fa-life-saver:before,

.fa-support:before,

.fa-life-ring:before {

    content: "\f1cd";

}

.fa-circle-o-notch:before {

    content: "\f1ce";

}

.fa-ra:before,

.fa-rebel:before {

    content: "\f1d0";

}

.fa-ge:before,

.fa-empire:before {

    content: "\f1d1";

}

.fa-git-square:before {

    content: "\f1d2";

}

.fa-git:before {

    content: "\f1d3";

}

.fa-hacker-news:before {

    content: "\f1d4";

}

.fa-tencent-weibo:before {

    content: "\f1d5";

}

.fa-qq:before {

    content: "\f1d6";

}

.fa-wechat:before,

.fa-weixin:before {

    content: "\f1d7";

}

.fa-send:before,

.fa-paper-plane:before {

    content: "\f1d8";

}

.fa-send-o:before,

.fa-paper-plane-o:before {

    content: "\f1d9";

}

.fa-history:before {

    content: "\f1da";

}

.fa-genderless:before,

.fa-circle-thin:before {

    content: "\f1db";

}

.fa-header:before {

    content: "\f1dc";

}

.fa-paragraph:before {

    content: "\f1dd";

}

.fa-sliders:before {

    content: "\f1de";

}

.fa-share-alt:before {

    content: "\f1e0";

}

.fa-share-alt-square:before {

    content: "\f1e1";

}

.fa-bomb:before {

    content: "\f1e2";

}

.fa-soccer-ball-o:before,

.fa-futbol-o:before {

    content: "\f1e3";

}

.fa-tty:before {

    content: "\f1e4";

}

.fa-binoculars:before {

    content: "\f1e5";

}

.fa-plug:before {

    content: "\f1e6";

}

.fa-slideshare:before {

    content: "\f1e7";

}

.fa-twitch:before {

    content: "\f1e8";

}

.fa-yelp:before {

    content: "\f1e9";

}

.fa-newspaper-o:before {

    content: "\f1ea";

}

.fa-wifi:before {

    content: "\f1eb";

}

.fa-calculator:before {

    content: "\f1ec";

}

.fa-paypal:before {

    content: "\f1ed";

}

.fa-google-wallet:before {

    content: "\f1ee";

}

.fa-cc-visa:before {

    content: "\f1f0";

}

.fa-cc-mastercard:before {

    content: "\f1f1";

}

.fa-cc-discover:before {

    content: "\f1f2";

}

.fa-cc-amex:before {

    content: "\f1f3";

}

.fa-cc-paypal:before {

    content: "\f1f4";

}

.fa-cc-stripe:before {

    content: "\f1f5";

}

.fa-bell-slash:before {

    content: "\f1f6";

}

.fa-bell-slash-o:before {

    content: "\f1f7";

}

.fa-trash:before {

    content: "\f1f8";

}

.fa-copyright:before {

    content: "\f1f9";

}

.fa-at:before {

    content: "\f1fa";

}

.fa-eyedropper:before {

    content: "\f1fb";

}

.fa-paint-brush:before {

    content: "\f1fc";

}

.fa-birthday-cake:before {

    content: "\f1fd";

}

.fa-area-chart:before {

    content: "\f1fe";

}

.fa-pie-chart:before {

    content: "\f200";

}

.fa-line-chart:before {

    content: "\f201";

}

.fa-lastfm:before {

    content: "\f202";

}

.fa-lastfm-square:before {

    content: "\f203";

}

.fa-toggle-off:before {

    content: "\f204";

}

.fa-toggle-on:before {

    content: "\f205";

}

.fa-bicycle:before {

    content: "\f206";

}

.fa-bus:before {

    content: "\f207";

}

.fa-ioxhost:before {

    content: "\f208";

}

.fa-angellist:before {

    content: "\f209";

}

.fa-cc:before {

    content: "\f20a";

}

.fa-shekel:before,

.fa-sheqel:before,

.fa-ils:before {

    content: "\f20b";

}

.fa-meanpath:before {

    content: "\f20c";

}

.fa-buysellads:before {

    content: "\f20d";

}

.fa-connectdevelop:before {

    content: "\f20e";

}

.fa-dashcube:before {

    content: "\f210";

}

.fa-forumbee:before {

    content: "\f211";

}

.fa-leanpub:before {

    content: "\f212";

}

.fa-sellsy:before {

    content: "\f213";

}

.fa-shirtsinbulk:before {

    content: "\f214";

}

.fa-simplybuilt:before {

    content: "\f215";

}

.fa-skyatlas:before {

    content: "\f216";

}

.fa-cart-plus:before {

    content: "\f217";

}

.fa-cart-arrow-down:before {

    content: "\f218";

}

.fa-diamond:before {

    content: "\f219";

}

.fa-ship:before {

    content: "\f21a";

}

.fa-user-secret:before {

    content: "\f21b";

}

.fa-motorcycle:before {

    content: "\f21c";

}

.fa-street-view:before {

    content: "\f21d";

}

.fa-heartbeat:before {

    content: "\f21e";

}

.fa-venus:before {

    content: "\f221";

}

.fa-mars:before {

    content: "\f222";

}

.fa-mercury:before {

    content: "\f223";

}

.fa-transgender:before {

    content: "\f224";

}

.fa-transgender-alt:before {

    content: "\f225";

}

.fa-venus-double:before {

    content: "\f226";

}

.fa-mars-double:before {

    content: "\f227";

}

.fa-venus-mars:before {

    content: "\f228";

}

.fa-mars-stroke:before {

    content: "\f229";

}

.fa-mars-stroke-v:before {

    content: "\f22a";

}

.fa-mars-stroke-h:before {

    content: "\f22b";

}

.fa-neuter:before {

    content: "\f22c";

}

.fa-facebook-official:before {

    content: "\f230";

}

.fa-pinterest-p:before {

    content: "\f231";

}

.fa-whatsapp:before {

    content: "\f232";

}

.fa-server:before {

    content: "\f233";

}

.fa-user-plus:before {

    content: "\f234";

}

.fa-user-times:before {

    content: "\f235";

}

.fa-hotel:before,

.fa-bed:before {

    content: "\f236";

}

.fa-viacoin:before {

    content: "\f237";

}

.fa-train:before {

    content: "\f238";

}

.fa-subway:before {

    content: "\f239";

}

.fa-medium:before {

    content: "\f23a";

}





 /*MAGNIFY-POPUP.CSS*/

 .mfp-container *{transition-timing-function:none;-moz-transition-timing-function:none;-webkit-transition-timing-function:none;-o-transition-timing-function:none;transition-duration:0;-moz-transition-duration:0;-webkit-transition-duration:0;-o-transition-duration:0}.mfp-bg{top:0;left:0;width:100%;height:100%;z-index:1042;overflow:hidden;position:fixed;background:#fff;opacity:1}.mfp-black-bg{background:rgba(0,0,0,.7)}.mfp-wrap{top:0;left:0;width:100%;height:100%;z-index:1043;position:fixed;outline:none !important;-webkit-backface-visibility:hidden}.mfp-container{text-align:center;position:absolute;width:100%;height:100%;left:0;top:0;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.mfp-container:before{content:'';display:inline-block;height:100%;vertical-align:middle}.mfp-align-top .mfp-container:before{display:none}.mfp-container figure:hover img{transform:none;opacity:1}.popup-gallery img,.lightbox-gallery img,.image-popup-no-margins img,.image-popup-vertical-fit img{cursor:url("../images/icon-zoom.png"),pointer}.portfolio-nav .mfp-close{position:inherit}.mfp-content{position:relative;display:inline-block;vertical-align:middle;margin:0 auto;text-align:left;z-index:1045}.mfp-inline-holder .mfp-content,.mfp-ajax-holder .mfp-content{width:100%;cursor:auto}.mfp-ajax-cur{cursor:progress}.mfp-zoom-out-cur,.mfp-zoom-out-cur .mfp-image-holder .mfp-close,.mfp-image-holder,.mfp-iframe-holder,.mfp-close-btn-in,.mfp-content,.mfp-container{cursor:url("../images/icon-zoom-out.png"),pointer !important}#popup-form{cursor:default}.zoom-gallery img{cursor:url("../images/icon-zoom2.png"),pointer !important}zoom-in .mfp-zoom{cursor:url("../images/icon-zoom.png"),pointer}.mfp-auto-cursor .mfp-content{cursor:url("../images/icon-zoom-out.png"),pointer !important}.mfp-close,.mfp-arrow,.mfp-preloader,.mfp-counter{-webkit-user-select:none;-moz-user-select:none;user-select:none}.mfp-loading.mfp-figure{display:none}.mfp-hide{display:none !important}.mfp-preloader{color:#CCC;position:absolute;top:50%;width:auto;text-align:center;margin-top:-0.8em;left:8px;right:8px;z-index:1044}.mfp-preloader a{color:#CCC}.mfp-preloader a:hover{color:#FFF}.mfp-s-ready .mfp-preloader{display:none}.mfp-s-error .mfp-content{display:none}button.mfp-close,button.mfp-arrow{overflow:visible;cursor:pointer;background:transparent;border:0;-webkit-appearance:none;display:block;outline:0;padding:0;z-index:1046;-webkit-box-shadow:none;box-shadow:none}button::-moz-focus-inner{padding:0;border:0}.mfp-close{width:34px;height:34px;line-height:34px;position:absolute;right:0;top:0;text-decoration:none;text-align:center;padding:0 0 18px 10px;font-style:normal;background-color:#000 !important;color:#fff !important;font-size:18px}.mfp-iframe-holder .mfp-close,.mfp-ajax-holder .mfp-close{display:none !important}.mfp-figure .mfp-close{display:none;width:34px !important;padding:0 !important;right:0 !important;font-size:18px !important}.mfp-close:hover,.mfp-close:focus{opacity:1;filter:alpha(opacity=100)}.mfp-close:active{top:1px}.mfp-close-btn-in .mfp-close{color:#333}.mfp-image-holder .mfp-close,.mfp-iframe-holder .mfp-close{color:#000;font-size:37px;padding-right:6px;right:-6px;top:-27px;width:100%}.mfp-counter{position:absolute;top:-10px;right:0;color:#CCC;font-size:12px;line-height:18px;white-space:nowrap;font-family:'Montserrat',sans-serif !important;display:none}.mfp-arrow{position:absolute;margin:0;top:50%;margin-top:-55px;padding:0;width:90px;height:110px;-webkit-tap-highlight-color:rgba(0,0,0,0)}.mfp-arrow:active{margin-top:-54px}.mfp-arrow:hover,.mfp-arrow:focus{opacity:1;filter:alpha(opacity=100)}.mfp-arrow:before,.mfp-arrow:after,.mfp-arrow .mfp-b,.mfp-arrow .mfp-a{content:'';display:block;width:0;height:0;position:absolute;left:0;top:0;margin-top:35px;margin-left:35px;border:medium inset transparent}.mfp-arrow:after,.mfp-arrow .mfp-a{border-top-width:13px;border-bottom-width:13px;top:8px}.mfp-arrow:before,.mfp-arrow .mfp-b{border-top-width:21px;border-bottom-width:21px}.mfp-arrow-left{left:0}.mfp-arrow-left:after,.mfp-arrow-left .mfp-a{border-right:17px solid #FFF;margin-left:31px}.mfp-arrow-left:before,.mfp-arrow-left .mfp-b{margin-left:25px;border-right:27px solid #000}.mfp-arrow-right{right:0}.mfp-arrow-right:after,.mfp-arrow-right .mfp-a{border-left:17px solid #FFF;margin-left:39px}.mfp-arrow-right:before,.mfp-arrow-right .mfp-b{border-left:27px solid #000}.mfp-iframe-holder{padding-top:40px;padding-bottom:40px}.mfp-iframe-holder .mfp-content{line-height:0;width:100%;max-width:900px}.mfp-iframe-holder .mfp-close{top:-40px}.mfp-iframe-scaler{width:100%;height:0;overflow:hidden;padding-top:56.25%}.mfp-iframe-scaler iframe{position:absolute;display:block;top:0;left:0;width:100%;height:100%}img.mfp-img{width:auto;max-width:100%;height:auto;display:block;line-height:0;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;padding:0;margin:0 auto;cursor:default;cursor:pointer;padding:30px 0;background:#fff}.mfp-figure{line-height:0}.mfp-figure:after{content:'';position:absolute;left:0;top:40px;bottom:40px;display:block;right:0;width:auto;height:auto;z-index:-1;background:#444}.mfp-figure small{color:#bdbdbd;display:block;font-size:12px;line-height:14px}.mfp-figure figure{margin:0}.mfp-bottom-bar{position:absolute;top:100%;left:0;width:100%;padding-bottom:30px;cursor:auto}.mfp-title{text-align:center;text-transform:uppercase;word-wrap:break-word;font-family:'Montserrat',sans-serif !important;line-height:20px;padding:0 20px}.mfp-image-holder .mfp-content{max-width:100%}.mfp-gallery .mfp-image-holder .mfp-figure{cursor:pointer}@media screen and (max-width:800px) and (orientation:landscape),screen and (max-height:300px){.mfp-img-mobile .mfp-image-holder{padding-left:0;padding-right:0}.mfp-img-mobile img.mfp-img{padding:0}.mfp-img-mobile .mfp-figure:after{top:0;bottom:0}.mfp-img-mobile .mfp-figure small{display:inline;margin-left:5px}.mfp-img-mobile .mfp-bottom-bar{background:rgba(0,0,0,0.6);bottom:0;margin:0;top:auto;padding:3px 5px;position:fixed;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.mfp-img-mobile .mfp-bottom-bar:empty{padding:0}.mfp-img-mobile .mfp-counter{right:5px;top:3px}.mfp-img-mobile .mfp-close{top:0;right:0;width:35px;height:35px;line-height:35px;background:rgba(0,0,0,0.6);position:fixed;text-align:center;padding:0}}@media all and (max-width:900px){.mfp-arrow{-webkit-transform:scale(0.75);transform:scale(0.75)}.mfp-arrow-left{-webkit-transform-origin:0 0;transform-origin:0 0}.mfp-arrow-right{-webkit-transform-origin:100%;transform-origin:100%}.mfp-container{padding-left:0;padding-right:0}}.mfp-ie7 .mfp-img{padding:0}.mfp-ie7 .mfp-bottom-bar{width:600px;left:50%;margin-left:-300px;margin-top:5px;padding-bottom:5px}.mfp-ie7 .mfp-container{padding:0}.mfp-ie7 .mfp-content{padding-top:44px}.mfp-ie7 .mfp-close{top:0;right:0;padding-top:0}@-webkit-keyframes fadeIn{0{opacity:0}100%{opacity:1}}@-moz-keyframes fadeIn{0{opacity:0}100%{opacity:1}}@-o-keyframes fadeIn{0{opacity:0}100%{opacity:1}}@keyframes fadeIn{0{opacity:0}100%{opacity:1}}.mfp-figure{-webkit-animation-name:fadeIn;-moz-animation-name:fadeIn;-o-animation-name:fadeIn;animation-name:fadeIn;-webkit-animation-duration:.4s;-moz-animation-duration:.4s;-ms-animation-duration:.4s;-o-animation-duration:.4s;animation-duration:.4s;-webkit-animation-fill-mode:both;-moz-animation-fill-mode:both;-ms-animation-fill-mode:both;-o-animation-fill-mode:both;animation-fill-mode:both;-webkit-backface-visibility:hidden;-moz-backface-visibility:hidden;-ms-backface-visibility:hidden}.my-mfp-zoom-in .zoom-anim-dialog{opacity:0;-webkit-transition:all .2s ease-in-out;-moz-transition:all .2s ease-in-out;-o-transition:all .2s ease-in-out;transition:all .2s ease-in-out;-webkit-transform:scale(0.8);-moz-transform:scale(0.8);-ms-transform:scale(0.8);-o-transform:scale(0.8);transform:scale(0.8)}.my-mfp-zoom-in.mfp-ready .zoom-anim-dialog{opacity:1;-webkit-transform:scale(1);-moz-transform:scale(1);-ms-transform:scale(1);-o-transform:scale(1);transform:scale(1)}.my-mfp-zoom-in.mfp-removing .zoom-anim-dialog{-webkit-transform:scale(0.8);-moz-transform:scale(0.8);-ms-transform:scale(0.8);-o-transform:scale(0.8);transform:scale(0.8);opacity:0}.my-mfp-zoom-in.mfp-bg{opacity:0;-webkit-transition:opacity .3s ease-out;-moz-transition:opacity .3s ease-out;-o-transition:opacity .3s ease-out;transition:opacity .3s ease-out}.my-mfp-zoom-in.mfp-ready.mfp-bg{opacity:.8}.my-mfp-zoom-in.mfp-removing.mfp-bg{opacity:0}.my-mfp-slide-bottom .zoom-anim-dialog{opacity:0;-webkit-transition:all .2s ease-out;-moz-transition:all .2s ease-out;-o-transition:all .2s ease-out;transition:all .2s ease-out;-webkit-transform:translateY(-20px) perspective(600px) rotateX(10deg);-moz-transform:translateY(-20px) perspective(600px) rotateX(10deg);-ms-transform:translateY(-20px) perspective(600px) rotateX(10deg);-o-transform:translateY(-20px) perspective(600px) rotateX(10deg);transform:translateY(-20px) perspective(600px) rotateX(10deg)}.my-mfp-slide-bottom.mfp-ready .zoom-anim-dialog{opacity:1;-webkit-transform:translateY(0) perspective(600px) rotateX(0);-moz-transform:translateY(0) perspective(600px) rotateX(0);-ms-transform:translateY(0) perspective(600px) rotateX(0);-o-transform:translateY(0) perspective(600px) rotateX(0);transform:translateY(0) perspective(600px) rotateX(0)}.my-mfp-slide-bottom.mfp-removing .zoom-anim-dialog{opacity:0;-webkit-transform:translateY(-10px) perspective(600px) rotateX(10deg);-moz-transform:translateY(-10px) perspective(600px) rotateX(10deg);-ms-transform:translateY(-10px) perspective(600px) rotateX(10deg);-o-transform:translateY(-10px) perspective(600px) rotateX(10deg);transform:translateY(-10px) perspective(600px) rotateX(10deg)}.my-mfp-slide-bottom.mfp-bg{opacity:0;-webkit-transition:opacity .3s ease-out;-moz-transition:opacity .3s ease-out;-o-transition:opacity .3s ease-out;transition:opacity .3s ease-out}.my-mfp-slide-bottom.mfp-ready.mfp-bg{opacity:.8}.my-mfp-slide-bottom.mfp-removing.mfp-bg{opacity:0}.mfp-fade.mfp-bg{opacity:0;-webkit-transition:all .15s ease-out;-moz-transition:all .15s ease-out;transition:all .15s ease-out}.mfp-fade.mfp-bg.mfp-ready{opacity:1}.mfp-fade.mfp-bg.mfp-removing{opacity:0}.mfp-fade.mfp-wrap .mfp-content{opacity:0;-webkit-transition:all .15s ease-out;-moz-transition:all .15s ease-out;transition:all .15s ease-out}.mfp-fade.mfp-wrap.mfp-ready .mfp-content{opacity:1}.mfp-fade.mfp-wrap.mfp-removing .mfp-content{opacity:0}





 /*NEW-STYLE.CSS*/

 #video-container,.carousel,.carousel-images,.slide{position:relative}#video-container{display:block !important}#video{width:100%;height:auto;object-fit:cover}#text-overlay{position:absolute;top:50%;left:3%;transform:translate(0,-50%);color:#fff;font-size:24px;z-index:1}.flexing{display:flex;align-items:center}.carousel{width:100%;max-width:600px;margin:auto}.slide{overflow:hidden}.slide img{width:100%;display:block}.h21{color:#fff;font-weight:700;line-height:1.5}.p1{font-size:15px}.slide-content{position:absolute;bottom:0;left:0;width:100%;top:79px;color:#fff;padding:40px;box-sizing:border-box;transition:opacity .5s}.slide-content h2,.slide-content p{margin:0}.slide-content button{background-color:#4caf5000;color:#fff;padding:10px 20px;cursor:pointer;margin-top:20px;border:1px solid #f8c70c;border-radius:3px}.owl-dots button.owl-dot.active,.owl-nav button{background-color:#000}.next,.prev{position:absolute;top:50%;transform:translateY(-50%);background-color:#00000000;border:0;cursor:pointer;padding:10px;z-index:1}.owl-nav button.owl-prev,.prev{left:0}.next,.owl-nav button.owl-next{right:0}.tabs,.tabs-container{display:flex !important}.owl-nav button{margin:0;transition:.3s ease-in-out}.owl-dots{text-align:center;padding-top:15px}.owl-dots button.owl-dot{width:14px;height:14px;border-radius:50%;display:inline-block;background:#ffff;border:1px solid #000;margin:0 3px}.owl-dots button.owl-dot:focus{outline:0}.tabs-container{justify-content:center !important;align-items:center !important;flex-direction:column !important}.tabs{list-style:none !important;padding:0 !important}.tab{cursor:pointer !important;padding:8px 15px !important;font-size:14px !important;margin-bottom:10px !important}.tab:hover{background-color:#fc3d83 !important;color:#fff !important}.tab.active{background-color:#fff;border-bottom:1px solid #fff !important;color:#000 !important}.tab-content img{width:100%;height:auto !important}@media only screen and (max-width:600px){.row1{display:flex !important;flex-direction:column-reverse}}@media only screen and (min-width:250px) and (max-width:767px){.row.potential{display:contents !important}.container{padding-right:0;padding-left:0}.responsive-space{margin-top:5rem !important}#video-container{display:none !important}}.col-md-3.field_events,.col-md-3.industry_events,.col-md-3.user_conferences,.col-md-3.webinars{border-radius:13px !important;margin:10px !important}.col-md-3.webinars{background:#ffe0eb !important;padding-top:22px !important;height:30.7em !important}.col-md-3.industry_events{background:#fbf0c7 !important;padding-top:44px !important;height:30.7em !important}.col-md-3.field_events{background:#c1d5f9 !important;padding-top:23px !important;height:30.9em !important}.col-md-3.user_conferences{background:#e0ecff !important;padding-top:22px !important;height:30.7em !important}video{max-width:100% !important}.owl-item{width:162px !important}.user_conferences{#e0ecff;border-radius:13px;margin:10px;padding-top:20px;height:27.7em}.spans1{line-height:1.2 !important;padding-top:20px}.spans2{color:#000 !important;font-size:14px !important}.field_events{background:#c1d5f9;border-radius:13px;margin:10px;padding-top:20px;height:27.9em}.industry_events{background:#fbf0c7;border-radius:13px;margin:10px;padding-top:20px;height:27.7em}.webinars{background:#ffe0eb;border-radius:13px;margin:10px;padding-top:20px;height:27.7em}.webinarspan{line-height:1.2;padding-top:20px}.carousel{display:none}@media only screen and (max-width:767px){.carousel{display:block}}@media only screen and (min-width:768px) and (max-width:1023px){.carousel{display:none}}@media only screen and (min-width:1024px){.carousel{display:none}}@media only screen and (min-width:250px) and (max-width:768px){.row.potential{display:contents !important}}.carousel{position:relative;width:100%;max-width:600px;margin:auto}.carousel-images{position:relative}.slide{position:relative;overflow:hidden}.slide img{width:100%;display:block}.h21{color:#fff;font-weight:700;line-height:1.5}.p1{font-size:15px}.slide-content{position:absolute;bottom:0;left:0;width:100%;top:79px;color:#fff;padding:40px;box-sizing:border-box;transition:opacity .5s ease}.slide-content h2,.slide-content p{margin:0}.slide-content button{background-color:#4caf5000;color:white;padding:10px 20px;cursor:pointer;margin-top:20px;border:1px solid #f8c70c;border-radius:3px}.prev,.next{position:absolute;top:50%;transform:translateY(-50%);background-color:#00000000;color:white;border:0;cursor:pointer;padding:10px;z-index:1}.prev{left:0}.next{right:0}@media only screen and (min-width:768px) and (max-width:901px){.top-gap{margin-top:2.5rem}}@media only screen and (max-width:600px){.row1{display:flex !important;flex-direction:column-reverse}}@media only screen and (min-width:769px) and (max-width:991px){.top-video{display:contents !important}}#carousel .owl-nav{display:none}.owl-nav button{position:absolute;top:50%;background-color:#000;color:#fff;margin:0;transition:all .3s ease-in-out}.owl-nav button.owl-prev{left:0}.owl-nav button.owl-next{right:0}.owl-dots{text-align:center;padding-top:15px}.owl-dots button.owl-dot{width:10px;height:10px;border-radius:50%;display:inline-block;background:#ffff;border:1px solid black;margin:0 3px}.owl-dots button.owl-dot.active{background-color:#000}.owl-dots button.owl-dot:focus{outline:0}@media only screen and (min-width:250px) and (max-width:990px){.row.potential{display:contents !important}.h1{margin-top:2rem !important}}@media only screen and (min-width:250px) and (max-width:990px){.top-video{display:contents !important}}.flexing{display:flex;align-items:center}@media only screen and (min-width:250px) and (max-width:768px){h1.alt-font.text-uppercase.title-extra-large.deep-orange-text.letter-spacing-1{margin-top:5rem !important}}@media only screen and (min-width:300px) and (max-width:768px){.col-md-6 .btn.btn-medium{padding-left:3% !important}}@media only screen and (min-width:320px) and (max-width:480px){.container-fluid.m_fast{padding-right:28px;padding-left:28px}}@media only screen and (min-width:300px) and (max-width:480px){.container.m_fasts{padding-right:1px !important;padding-left:1px !important}.col-md-6.m_fasts{padding-right:6px !important;padding-left:4px !important}}





 /*OWL-CROUSEL.CSS*/

 .owl-carousel .owl-wrapper:after{content:".";display:block;clear:both;visibility:hidden;line-height:0;height:0}.owl-carousel{display:none;position:relative;width:100%;-ms-touch-action:pan-y}.owl-carousel .owl-wrapper{display:none;position:relative;-webkit-transform:translate3d(0,0,0)}.owl-carousel .owl-wrapper-outer{overflow:hidden;position:relative;width:100%}.owl-carousel .owl-wrapper-outer.autoHeight{-webkit-transition:height 500ms ease-in-out;-moz-transition:height 500ms ease-in-out;-ms-transition:height 500ms ease-in-out;-o-transition:height 500ms ease-in-out;transition:height 500ms ease-in-out}.owl-carousel .owl-item{float:left;cursor:url("../images/icon-move.png"),move}.owl-carousel.light-pagination .owl-item{float:left;cursor:url("../images/icon-move-light.png"),move}.owl-controls .owl-page,.owl-controls .owl-buttons div{cursor:pointer}.owl-controls{-webkit-user-select:none;-khtml-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;-webkit-tap-highlight-color:rgba(0,0,0,0)}.grabbing{cursor:deafult}.owl-carousel .owl-wrapper,.owl-carousel .owl-item{-webkit-backface-visibility:hidden;-moz-backface-visibility:hidden;-ms-backface-visibility:hidden;-webkit-transform:translate3d(0,0,0);-moz-transform:translate3d(0,0,0);-ms-transform:translate3d(0,0,0)}.cursor-default .owl-item{cursor:default !important}







 /*OWL-TRANSITION.CSS*/

 .owl-origin{-webkit-perspective:1200px;-webkit-perspective-origin-x:50%;-webkit-perspective-origin-y:50%;-moz-perspective:1200px;-moz-perspective-origin-x:50%;-moz-perspective-origin-y:50%;perspective:1200px}.owl-fade-out{z-index:10;-webkit-animation:fadeOut .7s both ease;-moz-animation:fadeOut .7s both ease;animation:fadeOut .7s both ease}.owl-fade-in{-webkit-animation:fadeIn .7s both ease;-moz-animation:fadeIn .7s both ease;animation:fadeIn .7s both ease}.owl-backSlide-out{-webkit-animation:backSlideOut 1s both ease;-moz-animation:backSlideOut 1s both ease;animation:backSlideOut 1s both ease}.owl-backSlide-in{-webkit-animation:backSlideIn 1s both ease;-moz-animation:backSlideIn 1s both ease;animation:backSlideIn 1s both ease}.owl-goDown-out{-webkit-animation:scaleToFade .7s ease both;-moz-animation:scaleToFade .7s ease both;animation:scaleToFade .7s ease both}.owl-goDown-in{-webkit-animation:goDown .6s ease both;-moz-animation:goDown .6s ease both;animation:goDown .6s ease both}.owl-fadeUp-in{-webkit-animation:scaleUpFrom .5s ease both;-moz-animation:scaleUpFrom .5s ease both;animation:scaleUpFrom .5s ease both}.owl-fadeUp-out{-webkit-animation:scaleUpTo .5s ease both;-moz-animation:scaleUpTo .5s ease both;animation:scaleUpTo .5s ease both}@-webkit-keyframes empty{0{opacity:1}}@-moz-keyframes empty{0{opacity:1}}@keyframes empty{0{opacity:1}}@-webkit-keyframes fadeIn{0{opacity:0}100%{opacity:1}}@-moz-keyframes fadeIn{0{opacity:0}100%{opacity:1}}@keyframes fadeIn{0{opacity:0}100%{opacity:1}}@-webkit-keyframes fadeOut{0{opacity:1}100%{opacity:0}}@-moz-keyframes fadeOut{0{opacity:1}100%{opacity:0}}@keyframes fadeOut{0{opacity:1}100%{opacity:0}}@-webkit-keyframes backSlideOut{25%{opacity:.5;-webkit-transform:translateZ(-500px)}75%{opacity:.5;-webkit-transform:translateZ(-500px) translateX(-200%)}100%{opacity:.5;-webkit-transform:translateZ(-500px) translateX(-200%)}}@-moz-keyframes backSlideOut{25%{opacity:.5;-moz-transform:translateZ(-500px)}75%{opacity:.5;-moz-transform:translateZ(-500px) translateX(-200%)}100%{opacity:.5;-moz-transform:translateZ(-500px) translateX(-200%)}}@keyframes backSlideOut{25%{opacity:.5;transform:translateZ(-500px)}75%{opacity:.5;transform:translateZ(-500px) translateX(-200%)}100%{opacity:.5;transform:translateZ(-500px) translateX(-200%)}}@-webkit-keyframes backSlideIn{0,25%{opacity:.5;-webkit-transform:translateZ(-500px) translateX(200%)}75%{opacity:.5;-webkit-transform:translateZ(-500px)}100%{opacity:1;-webkit-transform:translateZ(0) translateX(0)}}@-moz-keyframes backSlideIn{0,25%{opacity:.5;-moz-transform:translateZ(-500px) translateX(200%)}75%{opacity:.5;-moz-transform:translateZ(-500px)}100%{opacity:1;-moz-transform:translateZ(0) translateX(0)}}@keyframes backSlideIn{0,25%{opacity:.5;transform:translateZ(-500px) translateX(200%)}75%{opacity:.5;transform:translateZ(-500px)}100%{opacity:1;transform:translateZ(0) translateX(0)}}@-webkit-keyframes scaleToFade{to{opacity:0;-webkit-transform:scale(.8)}}@-moz-keyframes scaleToFade{to{opacity:0;-moz-transform:scale(.8)}}@keyframes scaleToFade{to{opacity:0;transform:scale(.8)}}@-webkit-keyframes goDown{from{-webkit-transform:translateY(-100%)}}@-moz-keyframes goDown{from{-moz-transform:translateY(-100%)}}@keyframes goDown{from{transform:translateY(-100%)}}@-webkit-keyframes scaleUpFrom{from{opacity:0;-webkit-transform:scale(1.5)}}@-moz-keyframes scaleUpFrom{from{opacity:0;-moz-transform:scale(1.5)}}@keyframes scaleUpFrom{from{opacity:0;transform:scale(1.5)}}@-webkit-keyframes scaleUpTo{to{opacity:0;-webkit-transform:scale(1.5)}}@-moz-keyframes scaleUpTo{to{opacity:0;-moz-transform:scale(1.5)}}@keyframes scaleUpTo{to{opacity:0;transform:scale(1.5)}}





 /*PULL-MENU-SIDESLIDE.CSS*/

 html,body{width:100%;height:100%}.menu-wrap a{color:#b8b7ad}.menu-wrap a:hover,.menu-wrap a:focus{color:#c94e50}.menu-button{position:fixed;z-index:1000;padding:0;width:36px;height:33px;border:0;text-indent:2.5em;color:transparent;margin:60px 70px;background:rgba(0,0,0,.6)}.menu-button::before{position:absolute;top:.5em;right:.5em;bottom:.5em;left:.5em;content:'';background:url(../images/pull-menu.png) center center}.menu-button:hover{opacity:.6}.close-button{width:24px;height:24px;position:absolute;right:0;top:0;overflow:hidden;text-indent:1em;font-size:.75em;border:0;background:#000;color:transparent}.close-button::before,.close-button::after{content:'';position:absolute;width:1px;height:55%;top:22%;left:48%;background:#fff}.close-button::before{-webkit-transform:rotate(45deg);transform:rotate(45deg)}.close-button::after{-webkit-transform:rotate(-45deg);transform:rotate(-45deg)}.menu-wrap{position:fixed;z-index:1001;width:245px;background:#fff;padding:60px 30px;font-size:1.15em;left:-245px}.menu,.icon-list{height:100%}.icon-list a span{margin-left:10px;font-weight:700}.show-menu .menu-wrap{left:60px}.show-menu .icon-list,.show-menu .icon-list a{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0);-webkit-transition:-webkit-transform .8s;transition:transform .8s;-webkit-transition-timing-function:cubic-bezier(0.7,0,0.3,1);transition-timing-function:cubic-bezier(0.7,0,0.3,1)}.show-menu .icon-list a{-webkit-transition-duration:.9s;transition-duration:.9s}.show-menu .content::before{opacity:1;-webkit-transition:opacity .8s;transition:opacity .8s;-webkit-transition-timing-function:cubic-bezier(0.7,0,0.3,1);transition-timing-function:cubic-bezier(0.7,0,0.3,1);-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}







 /*RESPONSIVE.CSS*/

@media (max-width: 1650px) {

    .tattoo-art-box .title-extra {

        font-size: 50px !important;

        line-height: 50px !important;

    }

}

@media (max-width: 1500px) {

    .grid-style1 .grid figcaption h3 {

        padding: 0 50px;

    }

    .service {

        min-height: 701px;

    }

    .personal .container {

        width: 1000px !important;

    }

    .hover-box-image-link {

        bottom: 30px;

    }

}

@media (max-width: 1400px) {

    .blog-post-style3 article .post-details {

        padding: 10px;

    }

    .menu-item {

        padding: 22px 0;

    }

    .hover-box-text .title-medium::before {

        left: 35px;

        width: 15px;

    }

    .hover-box-text {

        padding: 45px 55px;

    }

    .tattoo-art-box .title-extra {

        font-size: 42px !important;

        line-height: 42px !important;

    }

}

@media (max-width: 1300px) {

    .blog-post-style5 .post-details {

        min-height: 315px;

        padding: 15% 12%;

    }

    .service {

        min-height: 744px;

    }

    .menu-img {

        display: none;

    }

    .menu-text {

        width: 100%;

    }

    .architecture-details {

        width: 70% !important;

    }

    .architecture-bio:hover .architecture-details {

        bottom: 20px !important;

    }

    .personal .container {

        width: 830px !important;

    }

    .personal .post-details .text-extra-large {

        font-size: 16px !important;

        line-height: 24px !important;

    }

    .hover-box-text .title-medium::before {

        left: 12px;

        top: 42px;

        height: 3px;

    }

    .hover-box-text {

        padding: 22px 30px;

    }

}

@media (max-width: 1199px) {

    section {

        padding: 110px 0;

    }

    .md-center-col {

        float: none !important;

        margin-left: auto !important;

        margin-right: auto !important;

    }

    .md-margin-one-half {

        margin: 0.5% !important;

    }

    .md-margin-one {

        margin: 1% !important;

    }

    .md-margin-two {

        margin: 1.5% !important;

    }

    .md-margin-three {

        margin: 2% !important;

    }

    .md-margin-four {

        margin: 2.5% !important;

    }

    .md-margin-five {

        margin: 3% !important;

    }

    .md-margin-six {

        margin: 3.5% !important;

    }

    .md-margin-seven {

        margin: 4% !important;

    }

    .md-margin-eight {

        margin: 4.5% !important;

    }

    .md-margin-nine {

        margin: 5% !important;

    }

    .md-margin-ten {

        margin: 5.5% !important;

    }

    .md-margin-eleven {

        margin: 6% !important;

    }

    .md-margin-twelve {

        margin: 6.5% !important;

    }

    .md-margin-thirteen {

        margin: 7% !important;

    }

    .md-margin-fourteen {

        margin: 7.5% !important;

    }

    .md-margin-fifteen {

        margin: 8% !important;

    }

    .md-margin-sixteen {

        margin: 8.5% !important;

    }

    .md-margin-seventeen {

        margin: 9% !important;

    }

    .md-margin-eighteen {

        margin: 9.5% !important;

    }

    .md-margin-nineteen {

        margin: 10% !important;

    }

    .md-margin-twenty {

        margin: 10.5% !important;

    }

    .md-margin-twenty-one {

        margin: 11% !important;

    }

    .md-margin-twenty-two {

        margin: 11.5% !important;

    }

    .md-margin-twenty-three {

        margin: 12% !important;

    }

    .md-margin-twenty-four {

        margin: 12.5% !important;

    }

    .md-margin-twenty-five {

        margin: 13% !important;

    }

    .md-margin-twenty-six {

        margin: 13.4% !important;

    }

    .md-margin-twenty-seven {

        margin: 14% !important;

    }

    .md-margin-twenty-eight {

        margin: 14.5% !important;

    }

    .md-margin-twenty-nine {

        margin: 15% !important;

    }

    .md-margin-thirty {

        margin: 15.5% !important;

    }

    .md-margin-thirty-one {

        margin: 16% !important;

    }

    .md-margin-thirty-two {

        margin: 16.5% !important;

    }

    .md-margin-thirty-three {

        margin: 17% !important;

    }

    .md-margin-thirty-four {

        margin: 17.5% !important;

    }

    .md-margin-thirty-five {

        margin: 18% !important;

    }

    .md-no-margin-tb,

    .md-no-margin-top {

        margin-top: 0 !important;

    }

    .md-no-margin-bottom,

    .md-no-margin-tb {

        margin-bottom: 0 !important;

    }

    .md-no-margin-left,

    .md-no-margin-lr {

        margin-left: 0 !important;

    }

    .md-no-margin-lr,

    .md-no-margin-right {

        margin-right: 0 !important;

    }

    .md-no-margin {

        margin: 0 !important;

    }

    .md-margin-lr-auto,

    .personal-slider-content span {

        margin-left: auto !important;

        margin-right: auto !important;

    }

    .md-padding-one-half {

        padding: 0.5% !important;

    }

    .md-padding-one {

        padding: 1% !important;

    }

    .md-padding-two {

        padding: 1.5% !important;

    }

    .md-padding-three {

        padding: 2% !important;

    }

    .md-padding-four {

        padding: 2.5% !important;

    }

    .md-padding-five {

        padding: 3% !important;

    }

    .md-padding-six {

        padding: 3.5% !important;

    }

    .md-padding-seven {

        padding: 4% !important;

    }

    .md-padding-eight {

        padding: 4.5% !important;

    }

    .md-padding-nine {

        padding: 5% !important;

    }

    .md-padding-ten {

        padding: 5.5% !important;

    }

    .md-padding-eleven {

        padding: 6% !important;

    }

    .md-padding-twelve {

        padding: 6.5% !important;

    }

    .md-padding-thirteen {

        padding: 7% !important;

    }

    .md-padding-fourteen {

        padding: 7.5% !important;

    }

    .md-padding-fifteen {

        padding: 8% !important;

    }

    .md-padding-sixteen {

        padding: 8.5% !important;

    }

    .md-padding-seventeen {

        padding: 9% !important;

    }

    .md-padding-eighteen {

        padding: 9.5% !important;

    }

    .md-padding-nineteen {

        padding: 10% !important;

    }

    .md-padding-twenty {

        padding: 10.5% !important;

    }

    .md-padding-twenty-one {

        padding: 11% !important;

    }

    .md-padding-twenty-two {

        padding: 11.5% !important;

    }

    .md-padding-twenty-three {

        padding: 12% !important;

    }

    .md-padding-twenty-four {

        padding: 12.5% !important;

    }

    .md-padding-twenty-five {

        padding: 13% !important;

    }

    .md-padding-twenty-six {

        padding: 13.4% !important;

    }

    .md-padding-twenty-seven {

        padding: 14% !important;

    }

    .md-padding-twenty-eight {

        padding: 14.5% !important;

    }

    .md-padding-twenty-nine {

        padding: 15% !important;

    }

    .md-padding-thirty {

        padding: 15.5% !important;

    }

    .md-padding-thirty-one {

        padding: 16% !important;

    }

    .md-padding-thirty-two {

        padding: 16.5% !important;

    }

    .md-padding-thirty-three {

        padding: 17% !important;

    }

    .md-padding-thirty-four {

        padding: 17.5% !important;

    }

    .md-padding-thirty-five {

        padding: 18% !important;

    }

    .md-no-padding-tb,

    .md-no-padding-top {

        padding-top: 0 !important;

    }

    .md-no-padding-bottom,

    .md-no-padding-tb {

        padding-bottom: 0 !important;

    }

    .md-no-padding-left,

    .md-no-padding-lr {

        padding-left: 0 !important;

    }

    .md-no-padding-lr,

    .md-no-padding-right {

        padding-right: 0 !important;

    }

    .md-no-padding {

        padding: 0 !important;

    }

    .md-display-block,

    .md-line-break {

        display: block !important;

    }

    .md-overflow-hidden {

        overflow: hidden !important;

    }

    .md-display-inline-block {

        display: inline-block !important;

    }

    .md-display-inline {

        display: inline !important;

    }

    .md-display-none {

        display: none !important;

    }

    .md-display-inline-table {

        display: inline-table;

    }

    .md-top-minus1 {

        top: -1px !important;

    }

    .md-top-minus2 {

        top: -2px !important;

    }

    .md-top-minus3 {

        top: -3px !important;

    }

    .md-top-minus4 {

        top: -4px !important;

    }

    .md-top-minus5 {

        top: -5px !important;

    }

    .md-top-minus6 {

        top: -6px !important;

    }

    .md-top-minus7 {

        top: -7px !important;

    }

    .md-top-minus8 {

        top: -8px !important;

    }

    .md-top-minus9 {

        top: -9px !important;

    }

    .md-top-minus10 {

        top: -10px !important;

    }

    .md-width {

        display: inline-block;

        position: relative;

        width: 90%;

    }

    .md-width-20 {

        width: 20% !important;

    }

    .md-width-30 {

        width: 30% !important;

    }

    .md-width-40 {

        width: 40% !important;

    }

    .md-width-50 {

        width: 50% !important;

    }

    .md-width-60 {

        width: 60% !important;

    }

    .md-width-70 {

        width: 70% !important;

    }

    .md-width-80 {

        width: 80% !important;

    }

    .md-width-90 {

        width: 90% !important;

    }

    .md-container-fluid,

    .md-width-100 {

        width: 100% !important;

    }

    .md-width-auto {

        width: auto !important;

    }

    .md-height-100 {

        height: 100% !important;

    }

    .md-height-auto {

        height: auto !important;

    }

    .md-clear-both {

        clear: both;

    }

    .md-vertical-align-middle {

        vertical-align: middle !important;

    }

    .md-vertical-align-top {

        vertical-align: top !important;

    }

    .md-z-index-1 {

        z-index: 1 !important;

    }

    .md-z-index-0 {

        z-index: 0 !important;

    }

    .md-z-index-minus2 {

        z-index: -2 !important;

    }

    .md-no-transition * {

        transition-timing-function: none;

        -moz-transition-timing-function: none;

        -webkit-transition-timing-function: none;

        -o-transition-timing-function: none;

        transition-duration: 0s;

        -moz-transition-duration: 0s;

        -webkit-transition-duration: 0s;

        -o-transition-duration: 0s;

    }

    .md-text-center {

        text-align: center !important;

    }

    .md-text-left {

        text-align: left !important;

    }

    .md-text-right {

        text-align: right !important;

    }

    .md-text-extra-small {

        font-size: 10px !important;

        line-height: 15px !important;

    }

    .md-text-small {

        font-size: 11px !important;

        line-height: 15px !important;

    }

    .md-text-medium {

        font-size: 14px !important;

        line-height: 25px !important;

    }

    .md-text-large {

        font-size: 15px !important;

        line-height: 20px !important;

    }

    .md-text-extra-large {

        font-size: 18px !important;

        line-height: 25px !important;

    }

    .md-title-small {

        font-size: 20px !important;

        line-height: 27px !important;

    }

    .md-title-medium {

        font-size: 24px !important;

        line-height: 28px !important;

    }

    .md-title-large {

        font-size: 28px !important;

        line-height: 34px !important;

    }

    .md-title-extra-large {

        font-size: 35px !important;

        line-height: 37px !important;

    }

    .md-title-extra-large-2 {

        font-size: 45px !important;

        line-height: 45px !important;

    }

    .md-title-extra-large-3 {

        font-size: 50px !important;

        line-height: 50px !important;

    }

    .md-title-extra-large-4 {

        font-size: 70px !important;

        line-height: 50px !important;

    }

    .md-title-extra-large-5 {

        font-size: 80px !important;

        line-height: 50px !important;

    }

    .md-title-big {

        font-size: 100px !important;

        line-height: 100px !important;

    }

    .md-title-big2 {

        font-size: 125px !important;

        line-height: 125px !important;

    }

    .md-title-big3 {

        font-size: 150px !important;

        line-height: 150px !important;

    }

    .md-no-letter-spacing {

        letter-spacing: 0 !important;

    }

    .md-letter-spacing-1 {

        letter-spacing: 1px !important;

    }

    .md-letter-spacing-2 {

        letter-spacing: 2px !important;

    }

    .md-letter-spacing-3 {

        letter-spacing: 3px !important;

    }

    .md-font-weight-100 {

        font-weight: 100 !important;

    }

    .md-font-weight-400 {

        font-weight: 400 !important;

    }

    .md-font-weight-600 {

        font-weight: 600 !important;

    }

    .md-font-weight-700 {

        font-weight: 700 !important;

    }

    .md-font-weight-800 {

        font-weight: 800 !important;

    }

    i {

        color: #9a9a9a;

        margin: 0;

    }

    .md-icon-extra-large {

        font-size: 60px !important;

    }

    .md-icon-large {

        font-size: 50px !important;

    }

    .md-icon-medium {

        font-size: 40px !important;

        margin-bottom: 15px !important;

    }

    .md-icon-small {

        font-size: 25px !important;

    }

    .md-icon-extra-small {

        font-size: 18px !important;

    }

    .md-pull-left {

        float: left !important;

    }

    .md-pull-right {

        float: right !important;

    }

    .md-float-none {

        float: none !important;

    }

    .md-no-border {

        border: none !important;

    }

    .navbar-header {

        background: 0 0;

    }

    .blog-post-style2 .post-details {

        padding: 35px 20px;

    }

    .blog-post-style3 article .post-details {

        padding: 10px;

    }

    .blog-post-style6 .post-details {

        padding: 30px;

    }

    .team-style1 .team-mood span {

        padding: 8px 14px;

    }

    .tab-style-1 li a {

        padding: 15px 16px 15px 0;

    }

    .slider-typography .slider-typography-option1 span {

        font-size: 80px;

    }

    .slider-typography .slider-typography-option3 span {

        font-size: 70px;

        line-height: 70px;

    }

    .call-us .title-small {

        font-size: 16px !important;

    }

    .service {

        min-height: 600px;

    }

    .agency-skill {

        min-height: 400px;

    }

    .restaurant-menu-background {

        background: #fff;

        height: calc(100% - 46%);

        left: 15%;

        position: absolute;

        top: 23%;

        width: calc(100% - 32%);

    }

    .md-fix-background-left,

    .md-fix-background-right {

        position: relative;

        background-size: cover !important;

        overflow: hidden;

        background-repeat: no-repeat !important;

        background-attachment: fixed !important;

    }

    .md-fix-background-left {

        background-position: left center;

    }

    .md-fix-background-right {

        background-position: right center;

    }

    .chef-details {

        left: 8%;

        width: 90%;

    }

    .menu-text-sub span {

        line-height: 15px;

    }

    .menu-item {

        padding: 16px 0;

    }

    .adventure-details-destinations {

        right: 1px;

    }

    .travel-how-to-work {

        padding: 20px;

    }

    .architecture-section {

        padding: 90px 60px 0;

    }

    .center-logo-header .nav li {

        margin: 0 8px;

    }

    .center-logo-header .navbar-nav a {

        font-size: 13px;

    }

    .photography-about::after,

    .photography-awards::after {

        background-color: #fff;

        content: "";

        height: 100%;

        left: 0;

        opacity: 0.8;

        position: absolute;

        top: 0;

        width: 100%;

        z-index: 0;

    }

    .photography-about .container,

    .photography-awards .container {

        position: relative;

        z-index: 1;

    }

    .photography-about {

        min-height: 700px;

    }

    .hover-box-image-link {

        bottom: 20px;

    }

    .hover-box-image:hover h3 {

        font-size: 27px;

        top: 66%;

        letter-spacing: 8px !important;

    }

    .slider-typography .slider-typography-option2 span {

        font-size: 40px;

    }

    .icon-box i {

        margin: 0 19px;

    }

    .widget.affix {

        width: 18%;

    }

    .tab-style9 .nav-tabs li a {

        padding: 0 36px;

    }

    .glyphs .box1 {

        width: 50%;

    }

}

@media only screen and (min-width: 1000px) and (max-width: 1024px) {

    #breakfast,

    #dinner,

    #lunch {

        background-size: 145% !important;

    }

    .restaurant-menu-text {

        left: 59px;

    }

}

@media (max-width: 1150px) {

    .personal .container {

        width: 750px !important;

    }

}

@media (max-width: 1050px) {

    .grid-style1 .grid figcaption h3 {

        font-size: 14px;

        line-height: 20px;

    }

    .grid-style2 .grid figcaption {

        padding: 17px 20px;

    }

    .architecture-bio:hover .architecture-details {

        bottom: 10px !important;

    }

    .menu-item:first-child {

        padding: 16px 0;

    }

    .chef-bio:hover .chef-details {

        bottom: 20px;

    }

    .slider-typography .slider-typography-option5 span {

        width: 65%;

    }

    .personal .container {

        width: 100% !important;

    }

    .parallax-fix {

        background-attachment: scroll !important;

    }

    .fix-background {

        background-attachment: inherit !important;

    }

    .blog-post-style4 .post-thumbnail img {

        width: auto !important;

        max-width: none !important;

    }

    .blog-listing-link a::after {

        padding: 0 3px 0 7px;

    }

}

@media (max-width: 991px) {

    .footer-social a {

        margin: 0 13px;

    }

    .sm-center-col {

        float: none !important;

        margin-left: auto !important;

        margin-right: auto !important;

    }

    .sm-margin-one-half {

        margin: 0.5% !important;

    }

    .sm-margin-one {

        margin: 1% !important;

    }

    .sm-margin-two {

        margin: 1.5% !important;

    }

    .sm-margin-three {

        margin: 2% !important;

    }

    .sm-margin-four {

        margin: 2.5% !important;

    }

    .sm-margin-five {

        margin: 3% !important;

    }

    .sm-margin-six {

        margin: 3.5% !important;

    }

    .sm-margin-seven {

        margin: 4% !important;

    }

    .sm-margin-eight {

        margin: 4.5% !important;

    }

    .sm-margin-nine {

        margin: 5% !important;

    }

    .sm-margin-ten {

        margin: 5.5% !important;

    }

    .sm-margin-eleven {

        margin: 6% !important;

    }

    .sm-margin-twelve {

        margin: 6.5% !important;

    }

    .sm-margin-thirteen {

        margin: 7% !important;

    }

    .sm-margin-fourteen {

        margin: 7.5% !important;

    }

    .sm-margin-fifteen {

        margin: 8% !important;

    }

    .sm-margin-sixteen {

        margin: 8.5% !important;

    }

    .sm-margin-seventeen {

        margin: 9% !important;

    }

    .sm-margin-eighteen {

        margin: 9.5% !important;

    }

    .sm-margin-nineteen {

        margin: 10% !important;

    }

    .sm-margin-twenty {

        margin: 10.5% !important;

    }

    .sm-margin-twenty-one {

        margin: 11% !important;

    }

    .sm-margin-twenty-two {

        margin: 11.5% !important;

    }

    .sm-margin-twenty-three {

        margin: 12% !important;

    }

    .sm-margin-twenty-four {

        margin: 12.5% !important;

    }

    .sm-margin-twenty-five {

        margin: 13% !important;

    }

    .sm-margin-twenty-six {

        margin: 13.4% !important;

    }

    .sm-margin-twenty-seven {

        margin: 14% !important;

    }

    .sm-margin-twenty-eight {

        margin: 14.5% !important;

    }

    .sm-margin-twenty-nine {

        margin: 15% !important;

    }

    .sm-margin-thirty {

        margin: 15.5% !important;

    }

    .sm-margin-thirty-one {

        margin: 16% !important;

    }

    .sm-margin-thirty-two {

        margin: 16.5% !important;

    }

    .sm-margin-thirty-three {

        margin: 17% !important;

    }

    .sm-margin-thirty-four {

        margin: 17.5% !important;

    }

    .sm-margin-thirty-five {

        margin: 18% !important;

    }

    .sm-no-margin-tb,

    .sm-no-margin-top {

        margin-top: 0 !important;

    }

    .sm-no-margin-bottom,

    .sm-no-margin-tb {

        margin-bottom: 0 !important;

    }

    .sm-no-margin-left,

    .sm-no-margin-lr {

        margin-left: 0 !important;

    }

    .sm-no-margin-lr,

    .sm-no-margin-right {

        margin-right: 0 !important;

    }

    .portfolio-filter-tab-style-6 li,

    .sm-no-margin {

        margin: 0 !important;

    }

    .sm-margin-lr-auto {

        margin-left: auto !important;

        margin-right: auto !important;

    }

    .sm-padding-one-half {

        padding: 0.5% !important;

    }

    .sm-padding-one {

        padding: 1% !important;

    }

    .sm-padding-two {

        padding: 1.5% !important;

    }

    .sm-padding-three {

        padding: 2% !important;

    }

    .sm-padding-four {

        padding: 2.5% !important;

    }

    .sm-padding-five {

        padding: 3% !important;

    }

    .sm-padding-six {

        padding: 3.5% !important;

    }

    .sm-padding-seven {

        padding: 4% !important;

    }

    .sm-padding-eight {

        padding: 4.5% !important;

    }

    .sm-padding-nine {

        padding: 5% !important;

    }

    .sm-padding-ten {

        padding: 5.5% !important;

    }

    .sm-padding-eleven {

        padding: 6% !important;

    }

    .sm-padding-twelve {

        padding: 6.5% !important;

    }

    .sm-padding-thirteen {

        padding: 7% !important;

    }

    .sm-padding-fourteen {

        padding: 7.5% !important;

    }

    .sm-padding-fifteen {

        padding: 8% !important;

    }

    .sm-padding-sixteen {

        padding: 8.5% !important;

    }

    .sm-padding-seventeen {

        padding: 9% !important;

    }

    .sm-padding-eighteen {

        padding: 9.5% !important;

    }

    .sm-padding-nineteen {

        padding: 10% !important;

    }

    .sm-padding-twenty {

        padding: 10.5% !important;

    }

    .sm-padding-twenty-one {

        padding: 11% !important;

    }

    .sm-padding-twenty-two {

        padding: 11.5% !important;

    }

    .sm-padding-twenty-three {

        padding: 12% !important;

    }

    .sm-padding-twenty-four {

        padding: 12.5% !important;

    }

    .sm-padding-twenty-five {

        padding: 13% !important;

    }

    .sm-padding-twenty-six {

        padding: 13.4% !important;

    }

    .sm-padding-twenty-seven {

        padding: 14% !important;

    }

    .sm-padding-twenty-eight {

        padding: 14.5% !important;

    }

    .sm-padding-twenty-nine {

        padding: 15% !important;

    }

    .sm-padding-thirty {

        padding: 15.5% !important;

    }

    .sm-padding-thirty-one {

        padding: 16% !important;

    }

    .sm-padding-thirty-two {

        padding: 16.5% !important;

    }

    .sm-padding-thirty-three {

        padding: 17% !important;

    }

    .sm-padding-thirty-four {

        padding: 17.5% !important;

    }

    .sm-padding-thirty-five {

        padding: 18% !important;

    }

    .sm-no-padding-tb,

    .sm-no-padding-top {

        padding-top: 0 !important;

    }

    .sm-no-padding-bottom,

    .sm-no-padding-tb {

        padding-bottom: 0 !important;

    }

    .sm-no-padding-left,

    .sm-no-padding-lr {

        padding-left: 0 !important;

    }

    .sm-no-padding-lr,

    .sm-no-padding-right {

        padding-right: 0 !important;

    }

    .sm-no-padding {

        padding: 0 !important;

    }

    .collapse.in,

    .mfp-figure .mfp-close,

    .sm-display-block,

    .sm-line-break {

        display: block !important;

    }

    .sm-overflow-hidden {

        overflow: hidden !important;

    }

    .sm-display-inline-block {

        display: inline-block !important;

    }

    .sm-display-inline {

        display: inline !important;

    }

    .center-logo-header .logo-bg,

    .navbar-collapse.collapse,

    .scrollToTop,

    .sm-br-display-none br,

    .sm-display-none {

        display: none !important;

    }

    .sm-display-inline-table {

        display: inline-table;

    }

    .navbar li.active a,

    .portfolio-filter-tab-style-5 li,

    .sm-width {

        display: inline-block;

    }

    .sm-position-relative {

        position: relative !important;

        z-index: 5;

    }

    .sm-position-absolute {

        position: absolute !important;

    }

    .sm-position-right {

        right: 0 !important;

    }

    .sm-position-left {

        left: 0 !important;

    }

    .sm-position-top {

        top: 0 !important;

    }

    .header-white .navbar-nav a,

    .sm-white-text {

        color: #fff !important;

    }

    .sm-black-text {

        color: #000 !important;

    }

    .sm-top-minus1 {

        top: -1px !important;

    }

    .sm-top-minus2 {

        top: -2px !important;

    }

    .sm-top-minus3 {

        top: -3px !important;

    }

    .sm-top-minus4 {

        top: -4px !important;

    }

    .sm-top-minus5 {

        top: -5px !important;

    }

    .sm-top-minus6 {

        top: -6px !important;

    }

    .sm-top-minus7 {

        top: -7px !important;

    }

    .sm-top-minus8 {

        top: -8px !important;

    }

    .sm-top-minus9 {

        top: -9px !important;

    }

    .sm-top-minus10 {

        top: -10px !important;

    }

    .sm-width {

        position: relative;

        width: 90%;

    }

    .sm-width-20 {

        width: 20% !important;

    }

    .sm-width-30 {

        width: 30% !important;

    }

    .sm-width-40 {

        width: 40% !important;

    }

    .sm-width-50 {

        width: 50% !important;

    }

    .sm-width-60 {

        width: 60% !important;

    }

    .sm-width-70 {

        width: 70% !important;

    }

    .sm-width-80 {

        width: 80% !important;

    }

    .sm-width-90 {

        width: 90% !important;

    }

    .personal .container,

    .sm-container-fluid,

    .sm-width-100 {

        width: 100% !important;

    }

    .sm-width-auto {

        width: auto !important;

    }

    .sm-height-100 {

        height: 100% !important;

    }

    .sidebar-nav .container,

    .sm-height-auto {

        height: auto !important;

    }

    .sm-min-height-auto {

        min-height: auto !important;

    }

    .sm-clear-both {

        clear: both;

    }

    .sm-vertical-align-middle {

        vertical-align: middle !important;

    }

    .sm-vertical-align-top {

        vertical-align: top !important;

    }

    .sm-z-index-1 {

        z-index: 1 !important;

    }

    .sm-z-index-0 {

        z-index: 0 !important;

    }

    .sm-z-index-minus2 {

        z-index: -2 !important;

    }

    .navbar *,

    .sm-no-transition * {

        transition-timing-function: none;

        -moz-transition-timing-function: none;

        -webkit-transition-timing-function: none;

        -o-transition-timing-function: none;

        transition-duration: 0s;

        -moz-transition-duration: 0s;

        -webkit-transition-duration: 0s;

        -o-transition-duration: 0s;

    }

    .sm-text-center {

        text-align: center !important;

    }

    .sm-text-left {

        text-align: left !important;

    }

    .sm-text-right {

        text-align: right !important;

    }

    .sm-text-extra-small {

        font-size: 10px !important;

        line-height: 15px !important;

    }

    .sm-text-small {

        font-size: 11px !important;

        line-height: 15px !important;

    }

    .sm-text-large,

    .sm-text-medium {

        line-height: 20px !important;

    }

    .sm-text-medium {

        font-size: 14px !important;

    }

    .sm-text-large,

    .team-mood span.text-large {

        font-size: 15px !important;

    }

    .sm-text-extra-large {

        font-size: 18px !important;

        line-height: 25px !important;

    }

    .sm-title-small {

        font-size: 20px !important;

        line-height: 27px !important;

    }

    .sm-title-medium {

        font-size: 24px !important;

        line-height: 28px !important;

    }

    .sm-title-large {

        font-size: 28px !important;

        line-height: 34px !important;

    }

    .sm-title-extra-large {

        font-size: 35px !important;

        line-height: 37px !important;

    }

    .sm-title-extra-large-2 {

        font-size: 45px !important;

        line-height: 45px !important;

    }

    .sm-title-extra-large-3 {

        font-size: 50px !important;

        line-height: 50px !important;

    }

    .sm-title-extra-large-4 {

        font-size: 70px !important;

        line-height: 50px !important;

    }

    .sm-title-extra-large-5 {

        font-size: 80px !important;

        line-height: 50px !important;

    }

    .sm-title-big {

        font-size: 100px !important;

        line-height: 100px !important;

    }

    .sm-title-big2 {

        font-size: 125px !important;

        line-height: 125px !important;

    }

    .sm-title-big3 {

        font-size: 150px !important;

        line-height: 150px !important;

    }

    .sm-no-letter-spacing {

        letter-spacing: 0 !important;

    }

    .sm-letter-spacing-1 {

        letter-spacing: 1px !important;

    }

    .sm-letter-spacing-2 {

        letter-spacing: 2px !important;

    }

    .sm-letter-spacing-3 {

        letter-spacing: 3px !important;

    }

    .sm-font-weight-100 {

        font-weight: 100 !important;

    }

    .sm-font-weight-400 {

        font-weight: 400 !important;

    }

    .sm-font-weight-600 {

        font-weight: 600 !important;

    }

    .sm-font-weight-700 {

        font-weight: 700 !important;

    }

    .sm-font-weight-800 {

        font-weight: 800 !important;

    }

    .parallax-fix {

        background-attachment: inherit !important;

    }

    i {

        color: #9a9a9a;

        margin: 0;

    }

    .sm-icon-extra-large {

        font-size: 60px !important;

    }

    .sm-icon-large {

        font-size: 50px !important;

    }

    .sm-icon-medium {

        font-size: 40px !important;

        margin-bottom: 15px !important;

    }

    .sm-icon-small {

        font-size: 25px !important;

    }

    .sm-icon-extra-small {

        font-size: 18px !important;

    }

    .sm-pull-left {

        float: left !important;

    }

    .sm-pull-right {

        float: right !important;

    }

    .dropdown-menu,

    .sm-float-none {

        float: none !important;

    }

    .sm-no-border {

        border: none !important;

    }

    .dropdown-menu,

    .navbar-nav .open .dropdown-menu {

        background-color: transparent !important;

        border: 0 !important;

        line-height: 1.42857 !important;

        box-shadow: none;

    }

    .alert {

        padding: 10px;

    }

    .mfp-image-holder .mfp-close {

        position: fixed;

        top: 0;

        right: 15px !important;

    }

    .nav li {

        margin: 15px 13px;

    }

    .dropdown-menu {

        position: inherit;

        min-width: 100%;

        padding: 0 !important;

        margin-top: 0;

        width: auto;

    }

    .navbar-nav .open .dropdown-menu {

        padding: 0 !important;

    }

    .navbar-nav .open .dropdown-menu a {

        line-height: 1.42857 !important;

    }

    .show-menu .menu-wrap {

        left: 0;

    }

    .navbar-toggle .icon-bar {

        background: #fff;

    }

    .navbar-toggle {

        margin-right: 0;

        display: block;

    }

    .navbar-collapse {

        box-shadow: none;

        background: rgba(0, 0, 0, 0.95);

        width: 100%;

        position: absolute;

        top: 75px;

    }

    .navbar.shrink .navbar-collapse {

        top: 60px;

    }

    .navbar li.active a {

        border-bottom: 1px solid #fff;

    }

    .navbar-header,

    .navbar-nav > li {

        float: none;

    }

    .navbar .container,

    .navbar-nav {

        width: 100%;

    }

    .sidebar-wrapper {

        padding-left: 0;

    }

    .sidebar-nav {

        width: 100%;

        height: auto;

    }

    nav.sidebar-nav .container {

        vertical-align: top;

        padding: 10px 15px;

    }

    .sidebar-nav .navbar-toggle {

        background-color: #000;

        border-radius: 0;

    }

    .sidebar-nav .navbar-collapse {

        background: #fff;

        left: 0;

        top: 11px;

    }

    .sidebar-nav .navbar-nav li a {

        color: #000 !important;

        font-weight: 400;

        padding: 0 !important;

    }

    .sidebar-nav.shrink .navbar-collapse {

        top: 11px;

    }

    .sidebar-nav .navbar,

    .sidebar-nav .navbar-nav li a::before,

    .sidebar-nav .navbar-nav li a:hover::before,

    .sidebar-nav .navbar-nav li.active a::before {

        border: 0;

    }

    .sidebar-nav .navbar-nav li a:focus,

    .sidebar-nav .navbar-nav li a:hover {

        color: #686868 !important;

    }

    .sidebar-nav .navbar-nav li {

        padding: 12px 13px;

    }

    .sidebar-nav li.active a {

        border-bottom: 1px solid #000;

    }

    .grid-style1 .grid figcaption h3 {

        font-size: 18px;

    }

    .grid-style2 .grid figcaption {

        padding: 30px 15px;

    }

    .gutter-wide .grid-gallery ul {

        margin-left: -20px;

    }

    .gutter-wide .grid li {

        padding: 0 0 20px 20px;

    }

    .grid-style4 .grid figure:hover h3 {

        bottom: 23px;

    }

    .grid-style4 .grid h3 {

        left: 25px;

    }

    .work-4col .grid li,

    .work-5col .grid li {

        width: 50%;

    }

    .blog-post-style2 .post-details {

        padding: 20px;

    }

    .blog-post-style4 .post-date-month-main {

        left: 40%;

    }

    .blog-post-style1 article:hover .post-details {

        -ms-transform: translate(0, 0);

        -webkit-transform: translate(0, 0);

        transform: translate(0, 0);

    }

    .architecture-bio:hover .architecture-details {

        bottom: 0 !important;

    }

    ul.portfolio-filter-tab-style-6 {

        margin: 170px 30px 0 0;

    }

    .tab-style-2 li:first-child,

    .tab-style-2 li:last-child {

        margin: 0 10px 0 0;

    }

    .blog-sharing i,

    .tab-style-2 li {

        margin: 0 10px;

    }

    .testimonial-style2-img:after {

        right: 80px;

    }

    .slider-typography .slider-typography-option2 span {

        font-size: 30px;

        line-height: 30px;

    }

    .slider-typography .slider-typography-option5 span {

        width: 90%;

        line-height: 60px;

        font-size: 50px;

    }

    .slider-typography .slider-typography-option2 p {

        font-size: 12px;

    }

    section {

        padding: 80px 0;

    }

    .agency-skill {

        min-height: 0;

    }

    .blog-post-style1 .post-thumbnail img {

        height: 100%;

        width: 100%;

    }

    .chef-details {

        left: 8.5%;

        width: 80%;

    }

    .restaurant-menu-background {

        background: #fff;

        height: calc(100% - 46%);

        left: 26%;

        position: absolute;

        top: 23%;

        width: calc(100% - 52%);

    }

    .travel-slider {

        min-height: 450px;

    }

    .adventure-details-destinations {

        right: 0;

    }

    .architecture-title {

        min-height: 400px;

    }

    .architecture-section h2 {

        margin-top: 70px;

    }

    .architecture-section {

        padding: 70px;

    }

    .photography-about {

        min-height: 580px;

    }

    .photography-services {

        min-height: 480px;

    }

    .hover-box-image-link {

        bottom: 40px;

    }

    .hover-box-image:hover h3 {

        top: 70%;

    }

    .photography-awards {

        min-height: 900px;

    }

    .hover-box-text {

        padding: 8px 12px;

    }

    .hover-box-text .title-medium::before {

        height: 4px;

        left: 53px;

        top: 62px;

    }

    .hover-box-more {

        height: 60px;

        padding: 11px 10px;

        right: -80px;

        width: 60px;

    }

    .hover-box:hover .hover-box-text {

        -webkit-transform: translateX(-60px);

        -ms-transform: translateX(-60px);

        transform: translateX(-60px);

    }

    .blog-listing .post-date {

        height: 80px;

        width: 80px;

        padding: 15px 0 !important;

        margin-top: 33px;

        margin-bottom: 25px;

    }

    .blog-image blockquote {

        padding: 30px;

    }

    .blog-image blockquote p::before {

        font-size: 42px;

    }

    .personal-about::after {

        background-color: #fff;

        content: "";

        height: 100%;

        left: 0;

        opacity: 1;

        position: absolute;

        top: 0;

        width: 100%;

        z-index: 0;

    }

    .personal-about .container {

        position: relative;

        z-index: 1;

    }

    .personal section {

        padding: 100px 0;

    }

    .center-logo-header .navbar-nav li {

        text-align: left;

        margin: 15px 13px;

        float: none;

        display: block;

    }

    .center-logo-header .navbar-nav li a {

        color: #fff !important;

        font-size: 12px;

        font-weight: 500;

        padding: 0 !important;

    }

    .center-logo-header .navbar-header .logo {

        display: inline-block;

        float: left;

    }

    .center-logo-header .navbar-header {

        padding: 0 15px;

    }

    .center-logo-header.shrink .navbar-collapse {

        top: 86px !important;

    }

    .center-logo-header .navbar-collapse {

        top: 86px;

    }

    .center-logo-header .navbar-brand img {

        top: -18px;

    }

    .attending-main {

        height: 500px;

    }

    .attending-main .img-border-medium {

        height: 470px;

    }

    .our-story-wedding .blog-post-style3 article .post-details {

        padding: 20px 0 0;

    }

    .center-logo-header .navbar-toggle .icon-bar {

        background: #000;

    }

    .tattoo-art-box .title-extra {

        font-size: 40px !important;

        line-height: 40px !important;

    }

    .restaurant-dishes {

        width: 550px;

    }

    .widget.affix {

        width: 23%;

    }

    .tab-style5 li a {

        margin: 0 25px;

    }

    .tab-style9 .nav-tabs li a {

        padding: 0 22px;

    }

    .icon-box i {

        margin: 7px;

    }

    .button-bg-area .btn {

        margin-bottom: 5px;

        padding: 10px;

    }

}

@media (max-width: 767px) {

    .xs-center-col {

        float: none !important;

        margin-left: auto !important;

        margin-right: auto !important;

    }

    .xs-separator-line-thick {

        height: 4px;

        margin: 7% auto;

        width: 30px;

    }

    .xs-margin-one-half {

        margin: 0.5% !important;

    }

    .xs-margin-one {

        margin: 1% !important;

    }

    .xs-margin-two {

        margin: 1.5% !important;

    }

    .xs-margin-three {

        margin: 2% !important;

    }

    .xs-margin-four {

        margin: 2.5% !important;

    }

    .xs-margin-five {

        margin: 3% !important;

    }

    .xs-margin-six {

        margin: 3.5% !important;

    }

    .xs-margin-seven {

        margin: 4% !important;

    }

    .xs-margin-eight {

        margin: 4.5% !important;

    }

    .xs-margin-nine {

        margin: 5% !important;

    }

    .xs-margin-ten {

        margin: 5.5% !important;

    }

    .xs-margin-eleven {

        margin: 6% !important;

    }

    .xs-margin-twelve {

        margin: 6.5% !important;

    }

    .xs-margin-thirteen {

        margin: 7% !important;

    }

    .xs-margin-fourteen {

        margin: 7.5% !important;

    }

    .xs-margin-fifteen {

        margin: 8% !important;

    }

    .xs-margin-sixteen {

        margin: 8.5% !important;

    }

    .xs-margin-seventeen {

        margin: 9% !important;

    }

    .xs-margin-eighteen {

        margin: 9.5% !important;

    }

    .xs-margin-nineteen {

        margin: 10% !important;

    }

    .xs-margin-twenty {

        margin: 10.5% !important;

    }

    .xs-margin-twenty-one {

        margin: 11% !important;

    }

    .xs-margin-twenty-two {

        margin: 11.5% !important;

    }

    .xs-margin-twenty-three {

        margin: 12% !important;

    }

    .xs-margin-twenty-four {

        margin: 12.5% !important;

    }

    .xs-margin-twenty-five {

        margin: 13% !important;

    }

    .xs-margin-twenty-six {

        margin: 13.4% !important;

    }

    .xs-margin-twenty-seven {

        margin: 14% !important;

    }

    .xs-margin-twenty-eight {

        margin: 14.5% !important;

    }

    .xs-margin-twenty-nine {

        margin: 15% !important;

    }

    .xs-margin-thirty {

        margin: 15.5% !important;

    }

    .xs-margin-thirty-one {

        margin: 16% !important;

    }

    .xs-margin-thirty-two {

        margin: 16.5% !important;

    }

    .xs-margin-thirty-three {

        margin: 17% !important;

    }

    .xs-margin-thirty-four {

        margin: 17.5% !important;

    }

    .xs-margin-thirty-five {

        margin: 18% !important;

    }

    .xs-no-margin-tb,

    .xs-no-margin-top {

        margin-top: 0 !important;

    }

    .xs-no-margin-bottom,

    .xs-no-margin-tb {

        margin-bottom: 0 !important;

    }

    .xs-no-margin-left,

    .xs-no-margin-lr {

        margin-left: 0 !important;

    }

    .xs-no-margin-lr,

    .xs-no-margin-right {

        margin-right: 0 !important;

    }

    .portfolio-filter-tab-style-2 li,

    .xs-no-margin {

        margin: 0 !important;

    }

    .xs-margin-lr-auto {

        margin-left: auto !important;

        margin-right: auto !important;

    }

    .xs-padding-one-half {

        padding: 0.5% !important;

    }

    .xs-padding-one {

        padding: 1% !important;

    }

    .xs-padding-two {

        padding: 1.5% !important;

    }

    .xs-padding-three {

        padding: 2% !important;

    }

    .xs-padding-four {

        padding: 2.5% !important;

    }

    .xs-padding-five {

        padding: 3% !important;

    }

    .xs-padding-six {

        padding: 3.5% !important;

    }

    .xs-padding-seven {

        padding: 4% !important;

    }

    .xs-padding-eight {

        padding: 4.5% !important;

    }

    .xs-padding-nine {

        padding: 5% !important;

    }

    .xs-padding-ten {

        padding: 5.5% !important;

    }

    .xs-padding-eleven {

        padding: 6% !important;

    }

    .xs-padding-twelve {

        padding: 6.5% !important;

    }

    .xs-padding-thirteen {

        padding: 7% !important;

    }

    .xs-padding-fourteen {

        padding: 7.5% !important;

    }

    .xs-padding-fifteen {

        padding: 8% !important;

    }

    .xs-padding-sixteen {

        padding: 8.5% !important;

    }

    .xs-padding-seventeen {

        padding: 9% !important;

    }

    .xs-padding-eighteen {

        padding: 9.5% !important;

    }

    .xs-padding-nineteen {

        padding: 10% !important;

    }

    .xs-padding-twenty {

        padding: 10.5% !important;

    }

    .xs-padding-twenty-one {

        padding: 11% !important;

    }

    .xs-padding-twenty-two {

        padding: 11.5% !important;

    }

    .xs-padding-twenty-three {

        padding: 12% !important;

    }

    .xs-padding-twenty-four {

        padding: 12.5% !important;

    }

    .xs-padding-twenty-five {

        padding: 13% !important;

    }

    .xs-padding-twenty-six {

        padding: 13.4% !important;

    }

    .xs-padding-twenty-seven {

        padding: 14% !important;

    }

    .xs-padding-twenty-eight {

        padding: 14.5% !important;

    }

    .xs-padding-twenty-nine {

        padding: 15% !important;

    }

    .xs-padding-thirty {

        padding: 15.5% !important;

    }

    .xs-padding-thirty-one {

        padding: 16% !important;

    }

    .xs-padding-thirty-two {

        padding: 16.5% !important;

    }

    .xs-padding-thirty-three {

        padding: 17% !important;

    }

    .xs-padding-thirty-four {

        padding: 17.5% !important;

    }

    .xs-padding-thirty-five {

        padding: 18% !important;

    }

    .xs-no-padding-tb,

    .xs-no-padding-top {

        padding-top: 0 !important;

    }

    .xs-no-padding-bottom,

    .xs-no-padding-tb {

        padding-bottom: 0 !important;

    }

    .xs-no-padding-left,

    .xs-no-padding-lr {

        padding-left: 0 !important;

    }

    .xs-no-padding-lr,

    .xs-no-padding-right {

        padding-right: 0 !important;

    }

    .xs-no-padding {

        padding: 0 !important;

    }

    .xs-display-block,

    .xs-line-break {

        display: block !important;

    }

    .xs-overflow-hidden {

        overflow: hidden !important;

    }

    .xs-display-inline-block {

        display: inline-block !important;

    }

    .xs-display-inline {

        display: inline !important;

    }

    .xs-br-display-none br,

    .xs-display-none {

        display: none !important;

    }

    .xs-display-inline-table {

        display: inline-table;

    }

    .xs-position-relative {

        position: relative !important;

        z-index: 5;

    }

    .xs-position-absolute {

        position: absolute !important;

    }

    .xs-position-right {

        right: 0 !important;

    }

    .xs-position-left {

        left: 0 !important;

    }

    .xs-position-top {

        top: 0 !important;

    }

    .xs-top-minus1 {

        top: -1px !important;

    }

    .xs-top-minus2 {

        top: -2px !important;

    }

    .xs-top-minus3 {

        top: -3px !important;

    }

    .xs-top-minus4 {

        top: -4px !important;

    }

    .xs-top-minus5 {

        top: -5px !important;

    }

    .xs-top-minus6 {

        top: -6px !important;

    }

    .xs-top-minus7 {

        top: -7px !important;

    }

    .xs-top-minus8 {

        top: -8px !important;

    }

    .xs-top-minus9 {

        top: -9px !important;

    }

    .xs-top-minus10 {

        top: -10px !important;

    }

    .xs-width {

        display: inline-block;

        position: relative;

        width: 90%;

    }

    .xs-width-20 {

        width: 20% !important;

    }

    .xs-width-30 {

        width: 30% !important;

    }

    .xs-width-40 {

        width: 40% !important;

    }

    .xs-width-50 {

        width: 50% !important;

    }

    .xs-width-60 {

        width: 60% !important;

    }

    .xs-width-70 {

        width: 70% !important;

    }

    .xs-width-80 {

        width: 80% !important;

    }

    .xs-width-90 {

        width: 90% !important;

    }

    .xs-container-fluid,

    .xs-width-100 {

        width: 100% !important;

    }

    .xs-width-auto {

        width: auto !important;

    }

    .xs-height-100 {

        height: 100% !important;

    }

    .xs-height-auto {

        height: auto !important;

    }

    .xs-min-height-auto {

        min-height: auto !important;

    }

    .xs-clear-both {

        clear: both;

    }

    .xs-vertical-align-middle {

        vertical-align: middle !important;

    }

    .xs-vertical-align-top {

        vertical-align: top !important;

    }

    .xs-z-index-1 {

        z-index: 1 !important;

    }

    .xs-z-index-0 {

        z-index: 0 !important;

    }

    .xs-z-index-minus2 {

        z-index: -2 !important;

    }

    .xs-no-transition * {

        transition-timing-function: none;

        -moz-transition-timing-function: none;

        -webkit-transition-timing-function: none;

        -o-transition-timing-function: none;

        transition-duration: 0s;

        -moz-transition-duration: 0s;

        -webkit-transition-duration: 0s;

        -o-transition-duration: 0s;

    }

    .xs-text-center {

        text-align: center !important;

    }

    .xs-text-left {

        text-align: left !important;

    }

    .xs-text-right {

        text-align: right !important;

    }

    .xs-f-right,

    .xs-pull-right {

        float: right !important;

    }

    .xs-f-left,

    .xs-pull-left {

        float: left !important;

    }

    .xs {

        color: #fff !important;

    }

    .xs-black-text {

        color: #000 !important;

    }

    .xs-background-position-center-top {

        background-position: center top !important;

    }

    .xs-background-position-left-center {

        background-position: left center !important;

    }

    .xs-text-extra-small {

        font-size: 10px !important;

        line-height: 15px !important;

    }

    .xs-text-small {

        font-size: 11px !important;

        line-height: 15px !important;

    }

    .xs-text-medium {

        font-size: 14px !important;

        line-height: 20px !important;

    }

    .xs-text-large {

        font-size: 15px !important;

        line-height: 20px !important;

    }

    .xs-text-extra-large {

        font-size: 18px !important;

        line-height: 25px !important;

    }

    .xs-title-small {

        font-size: 20px !important;

        line-height: 27px !important;

    }

    .xs-title-medium {

        font-size: 24px !important;

        line-height: 28px !important;

    }

    .xs-title-large {

        font-size: 28px !important;

        line-height: 34px !important;

    }

    .xs-title-extra-large {

        font-size: 35px !important;

        line-height: 37px !important;

    }

    .xs-title-extra-large-2 {

        font-size: 45px !important;

        line-height: 45px !important;

    }

    .xs-title-extra-large-3 {

        font-size: 50px !important;

        line-height: 50px !important;

    }

    .xs-title-extra-large-4 {

        font-size: 70px !important;

        line-height: 50px !important;

    }

    .xs-title-extra-large-5 {

        font-size: 80px !important;

        line-height: 50px !important;

    }

    .xs-title-big {

        font-size: 100px !important;

        line-height: 100px !important;

    }

    .xs-title-big2 {

        font-size: 125px !important;

        line-height: 125px !important;

    }

    .xs-title-big3 {

        font-size: 150px !important;

        line-height: 150px !important;

    }

    .xs-no-letter-spacing {

        letter-spacing: 0 !important;

    }

    .xs-letter-spacing-1 {

        letter-spacing: 1px !important;

    }

    .xs-letter-spacing-2 {

        letter-spacing: 2px !important;

    }

    .xs-letter-spacing-3 {

        letter-spacing: 3px !important;

    }

    .xs-font-weight-100 {

        font-weight: 100 !important;

    }

    .xs-font-weight-400 {

        font-weight: 400 !important;

    }

    .xs-font-weight-600 {

        font-weight: 600 !important;

    }

    .xs-font-weight-700 {

        font-weight: 700 !important;

    }

    .xs-font-weight-800 {

        font-weight: 800 !important;

    }

    i {

        color: #9a9a9a;

        margin: 0;

    }

    .xs-icon-extra-large {

        font-size: 60px !important;

    }

    .xs-icon-large {

        font-size: 50px !important;

    }

    .xs-icon-medium {

        font-size: 40px !important;

        margin-bottom: 15px !important;

    }

    .xs-icon-small {

        font-size: 25px !important;

    }

    .xs-icon-extra-small {

        font-size: 18px !important;

    }

    .xs-float-none {

        float: none !important;

    }

    .alert,

    .blog-post-style6 .post-details {

        padding: 15px;

    }

    .alert button.close {

        margin-top: -7px;

    }

    .xs-no-border {

        border: none !important;

    }

    .navbar-toggle .icon-bar {

        background: #fff;

    }

    .navbar-toggle {

        margin-right: 0;

    }

    .navbar-collapse {

        box-shadow: none;

        background: rgb(255 255 255 / 95%);

        width: 100%;

        position: absolute;

        top: 75px;

    }

    .navbar.shrink .navbar-collapse {

        top: 60px;

    }

    .navbar li.active a {

        border-bottom: 1px solid #fff;

        display: inline-block;

    }

    .work-2col .grid li,

    .work-3col .grid li,

    .work-4col .grid li,

    .work-5col .grid li {

        width: 100%;

    }

    .half-project-bg {

        height: 350px;

    }

    .ajax-popup-title-text {

        background: 0 0;

        padding: 0;

    }

    .blog-post-style4 .post-thumbnail img,

    .blog-post-style4 article:hover img,

    .tab-style7 .nav-tabs li.active a {

        top: 0;

    }

    .blog-post-style4 .post-date-month-main {

        left: 30%;

    }

    .portfolio-filter-tab-style-2 li a {

        padding: 8px 0;

        display: inline-block;

        margin-bottom: 6px;

        border-bottom: 2px solid transparent !important;

    }

    .tab-style-3 li,

    .tab-style-3 li:last-child,

    .tab-style-4 li {

        margin: 0;

    }

    .portfolio-filter-tab-style-6 li a {

        padding: 0;

    }

    .portfolio-filter-tab-style-4 li.active a::before {

        top: 6px;

    }

    .portfolio-filter-tab-style-5 li a {

        padding: 10px 15px;

    }

    .testimonial-style2-img:after {

        opacity: 0;

    }

    .slider-typography .slider-typography-option6 span {

        font-size: 40px;

        line-height: 40px;

        width: 100%;

    }

    .slider-typography .separator-line-medium-thick {

        margin: 40px 0;

    }

    #counter-event .counter-box {

        width: 72px;

        padding: 0 10px;

    }

    #counter-event .number {

        font-size: 30px;

        line-height: 32px;

    }

    #counter-event span {

        font-size: 10px;

    }

    .grid-style1-border {

        width: calc(100% - 0px);

        top: 0;

        left: 0;

        height: calc(100% - 0px);

    }

    .slider-typography .slider-typography-option1 span {

        font-size: 56px;

        line-height: 60px;

    }

    .post-thumbnail > img {

        height: 100%;

        width: auto;

    }

    .special-dishes-price {

        right: 23%;

    }

    .restaurant-menu-background {

        left: 19%;

        width: calc(100% - 38%);

    }

    .restaurant-dishes {

        height: 480px;

        margin-top: 0;

        width: 410px;

    }

    #menu .container-fluid,

    .couple-quotes::before,

    .tab-style8 .nav-tabs,

    .tab-style8 .nav-tabs li.active a {

        left: 0;

    }

    .travel-slider {

        min-height: 360px;

    }

    .slider-typography .slider-typography-option2 span {

        font-size: 22px;

        letter-spacing: -2px;

        line-height: 30px;

        width: 90%;

    }

    .travel-special-off {

        padding: 2px 10px;

    }

    .hotel-review {

        right: 0;

    }

    .adventure-details-destinations {

        right: 1px;

    }

    .architecture-section {

        padding: 40px 15px;

    }

    .architecture-section h2 {

        margin-top: 30px;

    }

    .slider-typography .slider-typography-option5 p {

        font-size: 14px;

    }

    .slider-typography .slider-typography-option5 span {

        font-size: 27px;

        line-height: 32px;

    }

    .photography-quotes::before {

        font-size: 140px;

    }

    .hover-box-image-link {

        bottom: 26px;

    }

    .photography-awards {

        background-position: -700px center !important;

        min-height: 0;

    }

    .portfolio-filter-tab-style-4 li a {

        padding: 5px 15px;

    }

    .table table td {

        border-left: 1px solid #e5e5e5;

        border-right: 1px solid #e5e5e5;

        border-top: 1px solid #e5e5e5;

        padding: 20px 25px;

        border-bottom: 0;

        text-align: center;

    }

    .table table td:last-child {

        border-right: 1px solid #e5e5e5;

        border-bottom: 1px solid #e5e5e5;

        margin-bottom: 5%;

    }

    .registration-form {

        padding: 24px;

    }

    .medium-input,

    .medium-select select,

    .medium-textarea {

        padding: 10px 12px;

    }

    .hover-box-text {

        padding: 22px 30px;

    }

    .hover-box-text .title-medium::before {

        height: 3px;

        left: 12px;

        top: 38px;

    }

    .spa-about::after {

        background-color: #fff;

        content: "";

        height: 100%;

        left: 0;

        opacity: 0.8;

        position: absolute;

        top: 0;

        width: 100%;

        z-index: 0;

    }

    .spa-about .container {

        position: relative;

        z-index: 1;

    }

    .treatments-box-text {

        min-height: 490px;

    }

    .hover-box-more {

        height: 70px;

        padding: 15px;

        right: -80px;

        width: 70px;

    }

    .treatments-box-text-sub img {

        width: 170px;

    }

    .sidebar-nav.shrink .navbar-collapse {

        top: 11px;

    }

    .portfolio-filter-tab-style-5 li.active a::before {

        top: 17px;

    }

    .couple-quotes {

        padding-left: 40px;

    }

    .gutter .grid li {

        padding-bottom: 15px;

    }

    .attending-main {

        height: 580px;

    }

    .attending-main .img-border-medium {

        height: 550px;

    }

    .wedding-slider {

        min-height: 500px !important;

    }

    .coming-soon-bg .counter-box span,

    .coming-soon-bg .number {

        height: 10px;

    }

    .coming-soon-bg .counter-box {

        width: 70px !important;

        padding: 0 !important;

    }

    .coming-soon-bg p {

        font-size: 12px !important;

    }

    .page-title {

        padding: 210px 0 0 !important;

    }

    .blog-sharing {

        margin: 10px 0;

    }

    .widget {

        margin-bottom: 35px;

    }

    .pagination {

        margin: 15px 0;

        padding: 0;

    }

    .pagination a::after {

        padding: 5px 8px;

    }

    .blog-post-title::after {

        top: 20px;

    }

    .widget.affix {

        top: 0;

        width: 100%;

        position: relative;

    }

    .portfolio-filter-tab-style-4 li,

    .portfolio-filter-tab-style-5 li {

        display: inline-block !important;

        width: 100%;

        margin: 10px 0 !important;

    }

    .portfolio-filter-tab-style-2 li {

        display: inline-block !important;

        width: 100%;

    }

    .portfolio-filter-tab li,

    .portfolio-filter-tab-style-3 li {

        display: table !important;

        margin: 10px auto !important;

    }

    .portfolio-filter-tab li:focus,

    .portfolio-filter-tab-style-3 li:focus {

        background-color: inherit !important;

    }

    .portfolio-filter-tab-style-5 li:first-child,

    .portfolio-filter-tab-style-5 li:last-child {

        margin: 10px 0 !important;

    }

    .portfolio-filter-tab-style-3 li:first-child,

    .portfolio-filter-tab-style-3 li:last-child {

        margin: 10px auto !important;

    }

    .tab-style5 .nav li a:focus,

    .tab-style5 .nav li a:hover,

    .tab-style5 .nav-tabs li.active a,

    .tab-style6 .nav-tabs li a:hover,

    .tab-style6 .nav-tabs li.active a {

        border-bottom: 2px solid #000;

    }

    .tab-style5 .nav li a,

    .tab-style6 .nav-tabs li a {

        border-bottom: 2px solid #e5e5e5;

        padding: 15px 0;

    }

    .tab-style6 .nav-tabs li.active {

        background-color: transparent;

        border-color: transparent;

    }

    .tab-style6 .tab-content {

        background-color: transparent;

        border: none;

        padding: 0;

    }

    .tab-style6 .nav-tabs {

        margin-bottom: 25px;

    }

    .tab-style7 .nav-tabs li {

        border-right: none;

        border-top: none;

        border-bottom: 1px solid #e5e5e5;

    }

    .tab-style7 .nav-tabs li:last-child {

        border-bottom: none;

    }

    .tab-style7 .nav-tabs {

        border: 1px solid #e5e5e5;

        padding: 0;

    }

    .tab-style7 .nav-tabs li:first-child {

        border-left: none;

    }

    .tab-style8 .tabs-left .nav-tabs {

        width: 100%;

        margin: 0;

        padding: 0;

    }

    .tab-style8 .tab-content {

        float: left;

        width: 100%;

    }

    .tab-style9 .nav-tabs {

        text-align: center;

        width: 100%;

    }

    .tab-style9 .nav li {

        border: 0;

        display: inline-block;

        float: none;

        margin: 0 -3px 0 0;

        text-align: center;

        width: 20%;

    }

    .tab-style9 .nav-tabs li a {

        display: inline-table;

        padding: 0;

    }

    .alert-style1 .alert i {

        width: 60px;

    }

    .alert-style1 .alert {

        font-size: 16px;

        line-height: 24px;

        margin-bottom: 0;

        padding-left: 0;

        padding-right: 0;

    }

    .button-bg-area .btn {

        display: table;

        margin: 0 auto 25px;

    }

}

@media (max-width: 480px) {

    .blog-post-style1 article:hover .post-details {

        padding-left: 12px;

    }

    .blog-post-style2 .post-details span a,

    .slider-typography .slider-typography-option1 p {

        font-size: 11px;

    }

    .blog-post-style2 .post-details {

        padding: 15px;

    }

    .blog-post-style1 .blog-like,

    .blog-share,

    .comment {

        margin-right: 10px;

    }

    .blog-comment .comment-avtar {

        width: 100%;

        margin: 0;

        float: none;

    }

    .blog-comment .comment-avtar img {

        width: 100%;

        margin-bottom: 15px;

    }

    .blog-post-title::after {

        top: 15px;

    }

    .special-dishes img,

    .testimonial-style2 img {

        width: 80%;

    }

    .tattoo-art-box .title-extra {

        font-size: 35px !important;

        line-height: 40px !important;

    }

    .slider-typography .slider-typography-option1 span {

        font-size: 34px;

        line-height: 38px;

    }

    .footer-social a {

        margin: 0 10px;

    }

    .restaurant-dishes {

        height: 410px;

        margin-top: 0;

        width: 300px;

    }

    .menu-img {

        display: none !important;

    }

    .menu-text {

        width: 100% !important;

    }

    .menu-item {

        padding: 24px 0;

    }

    .menu-item p {

        margin: 0;

    }

    .restaurant-menu-text-inner {

        padding: 8% !important;

    }

    .restaurant-menu-background {

        left: 10%;

        width: calc(100% - 20%);

        height: calc(100% - 50%);

        top: 26%;

    }

    .restaurant-menu-text {

        width: calc(100% - 50px);

        left: 25px;

    }

    .special-dishes-price {

        right: 4%;

    }

    .footer-top {

        padding: 56px 0;

    }

    .big-input,

    .big-select select,

    .big-textarea {

        font-size: 12px !important;

        padding: 12px 15px;

    }

    .chef-bio:hover .chef-details {

        bottom: 0;

    }

    .photography-awards {

        background-position: -330px center !important;

    }

    .tattoo-artists .btn.btn-small {

        padding: 5px 10px;

    }

    .title-dividers::before {

        width: 30px;

        left: -35px;

    }

    .title-dividers::after {

        width: 30px;

        right: -35px;

    }

    .attending-main {

        height: 510px;

    }

    .attending-main .img-border-medium {

        height: 480px;

    }

    .center-logo-header .navbar-brand img {

        max-width: 245px;

        top: -14px;

    }

    .ajax-popup-title {

        min-height: 400px !important;

    }

    .ajax-popup-content p span {

        width: 100%;

        margin: 0 0 20px;

        text-align: center;

    }

    .itinerary p span {

        position: inherit;

        display: inline-block;

    }

    .itinerary p {

        padding-left: 0;

    }

    .blog-post-style5 .post-details {

        min-height: 280px;

    }

    .personal-tab-content .grid figcaption h3 {

        padding: 0;

    }

    .panel-title {

        font-size: 11px;

        padding: 7px 15px;

    }

    .toggles-style1 .panel-title {

        font-size: 12px;

        line-height: 45px;

        padding: 0 20px;

    }

    .toggles-style1 .panel-title span {

        position: static;

    }

    .tab-style9 .nav-tabs li a {

        font-size: 24px;

    }

    .glyphs .box1 {

        font-size: 11px;

        padding: 15px 7px;

        text-align: center;

    }

    .glyphs .box1 span {

        margin: 0 auto;

        display: block;

        text-align: center;

    }

    .btn-group-large .button-desc {

        font-size: 16px !important;

        padding-top: 0;

        padding-bottom: 0;

    }

    .btn-group-large span {

        font-size: 12px;

    }

}

@media (max-width: 320px) {

    .menu-wrap {

        width: 100%;

        left: 350px;

    }

    .menu-button {

        right: 0;

        margin: 30px;

    }

    .attending-main {

        height: 460px;

    }

    .attending-main .img-border-medium {

        height: 430px;

    }

}

@media only screen and (min-width: 360px) and (max-width: 640px) {

    .coming-soon-bg,

    .coming-soon-bg .slider-text-middle-main {

        min-height: 550px !important;

    }

    .min-height-image .full-screen {

        min-height: 510px !important;

    }

    .display-none-minwidth {

        display: none !important;

    }

}









/*STYLE.CSS*/

@charset "utf-8";



/* ----------------------------------



Name: style.css

Version: 1.0



----------------------------------



Table of contents

        

    01. Google font

    02. Reset

    03. Typography

    04. Icon

    05. Background color

    06. Background image

    07. Custom

    08. Border

    09. Owl carousel

    10. Navigation

    11. Slider and parallax typography

    12. Counter

    13. Portfolio

    14. Tab

    15. List

    16. Progress bar

    17. Testimonial

    18. Team

    19. Blog

    20. Form controls

    21. Features box

    22. Accordion and toggle

    23. Quote

    24. Alert

    25. Video and sound

    26. Footer

    27. Agency demo

    28. Restaurant demo

    29. Travel demo

    30. Spa demo

    31. Event demo

    32. Photography demo

    33. Personal demo

    34. Architecture demo

    35. Spa demo

    36. Wedding demo

    37. Tattoo demo

    38. Blog listing

    39. Coming soon

    40. Elements



*/



/* ===================================

    Google font

====================================== */







/*@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');*/



/* ===================================

    Reset

====================================== */



body{ font-family: 'poppins' !important; -webkit-font-smoothing: antialiased;  font-smoothing: antialiased; font-size:13px; color:#626262; line-height:23px; letter-spacing: 0.02em }

a, a:active{ color: #626262; text-decoration: none; }

a:hover, a:focus{ color: #272727;  text-decoration: none}

a:focus {outline: none !important; }

img { -webkit-backface-visibility: hidden; max-width:100%; height:auto; }

video { background-size: cover; display: table-cell; vertical-align: middle; width: 100%; }

ul{ margin: 0px; padding:0px; }

input, textarea, select{ border: 1px solid #dfdfdf00; letter-spacing: 1px; font-size: 11px;  padding: 8px 15px; width: 100%; margin: 0 0 20px 0; max-width: 100%; resize: none;}

input[type="submit"] { width: auto}

input[type="button"], input[type="text"], input[type="email"], input[type="search"], input[type="password"], textarea, input[type="submit"] { -webkit-appearance: none;  border-radius: 6px; }

input:focus, textarea:focus{ border: 1px solid #989898; outline: none; }

input[type="submit"]:focus { border:none !important}

select::-ms-expand{ display:none;}

iframe { border: 0;}

/*ul { list-style: none outside none; }*/

ul, ol, dl {list-style-position: outside;}

/** { transition-timing-function: ease-in-out; -moz-transition-timing-function: ease-in-out; -webkit-transition-timing-function: ease-in-out; -o-transition-timing-function: ease-in-out; transition-duration: .2s; -moz-transition-duration: .2s; -webkit-transition-duration: .2s; -o-transition-duration: .2s;}*/

::selection { color: #000; background:#dcdcdc; }

::-moz-selection { color:#000; background:#dcdcdc; }

::-webkit-input-placeholder { color: #999; text-overflow: ellipsis; }

:-moz-placeholder { color: #999 !important; text-overflow: ellipsis; opacity:1; }

::-moz-placeholder { color: #999 !important; text-overflow: ellipsis; opacity:1; } 

:-ms-input-placeholder { color: #999 !important; text-overflow: ellipsis; opacity:1; }

::-webkit-scrollbar { width:12px }

::-webkit-scrollbar-track { -webkit-box-shadow:inset 0 0 6px rgba(0,0,0,.3); -moz-box-shadow:inset 0 0 6px rgba(0,0,0,.3); box-shadow:inset 0 0 6px rgba(0,0,0,.3); }

::-webkit-scrollbar-thumb { background:rgba(210,210,210,.8); -webkit-box-shadow:inset 0 0 6px rgba(0,0,0,.5); -moz-box-shadow:inset 0 0 6px rgba(0,0,0,.5); box-shadow:inset 0 0 6px rgba(0,0,0,.5); }

::-webkit-scrollbar-thumb:window-inactive { background:rgba(210,210,210,.4) }

.animated { -moz-transition-duration: 0s !important;  }



/* ===================================

    Typography

====================================== */



/* heading */

h1, h2, h3, h4, h5, h6 { text-transform: none; margin:0; padding:0; color: #000; font-family: 'Poppins' !important; }

h1 { font-size:45px; line-height: 45px; line-height: 50px}

h2 { font-size:25px; line-height:27px}

h3 { font-size:35px; line-height:40px}

h4 { font-size:25px; line-height:30px}

h5 { font-size:20px; line-height:25px}

h6 { font-size:18px; line-height:23px}

.title-thick-underline {border-bottom:6px solid #000; padding: 0 0 15px 0}

.title-underline {border-bottom:2px solid #fff; padding: 0 0 5px 0}

.title-sideline {padding:0;}

.title-sideline:before { border-bottom: 4px solid #ef106e; content: ""; left: -15px; position: absolute; top: 15px; width: 12px; }



/* section title */

.section-title{ text-transform: uppercase; font-weight: 700; font-size: 20px; letter-spacing: 2px; padding: 0 0 100px 0;}

.tab-content .section-title { border: medium none; font-size: 40px; font-weight: 100; text-transform: none; margin:2% 0 0; padding:0}

h1.big { color:#ffffff; font-size:65px; font-weight:600; line-height:76px; margin-bottom:0px;}

h1.big span { font-weight:300;}

h1.page-title { margin:95px auto 0; width: 100%; }



/* different text size */

.text-extra-small { font-size:10px !important; line-height:15px!important;}

.text-small { font-size:11px !important; line-height:20px!important; display: inline-block !important}

.text-medium{ font-size:14px !important; line-height:24px !important;}

.text-large { font-size: 15px !important; line-height: 22px !important; }

.text-extra-large { font-size: 18px ; line-height: 27px ;  }

.title-small{ font-size:20px !important; line-height:30px !important;}

.title-medium{ font-size:25px !important; line-height:28px !important;}

.title-large{ font-size:28px !important; line-height:34px !important;}

.title-extra-large{ font-size:25px !important; line-height:37px !important;}

/*.title-extra-large-2{ font-size:45px !important; line-height:33px !important;}*/

.title-extra-large-3{ font-size:50px !important; line-height:50px !important;}

.title-extra-large-4{ font-size:70px !important; line-height:70px !important;}

.title-extra-large-5{ font-size:80px !important; line-height:50px !important;}

.title-big { font-size: 100px !important; line-height:100px !important;}

.title-big2 { font-size: 125px !important; line-height:125px !important;}

.title-big3 { font-size: 150px !important; line-height:150px !important;}



/* text color */

.white-text{ color:#203761 !important}

.magenta-text{ color:#d94378 !important}

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

.deep-orange-text{ color:#000 !important}

.deep-red-text{ color:#e75e50 !important}

.black-text{ color:#000 !important}

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

.fast-yellow-text{ color:#fc3e82 !important}

.deep-red-text{ color:#b30000 !important}

.medium-gray-text{ color: #929292 !important}

.light-gray-text{ color: #625e5e !important}

.light-text{ color:#fff !important;}

.light-gray-text2{ color: #c5c5c5 !important}

.deep-gray-text { color: #404040 !important; }

.deep-light-gray-text { color: #878787 !important; }

.gray-text {  color:#626262 !important}

.dark-gray-text { color:#373737 !important}

.brown-text {color: #614c45 !important}

.deep-yellow-text {color: #c8a64b !important}

.dark-blue-text {color: #1e2126 !important}

.fast-pink-text { color:#fd3e82 !important}

.fast-pink-text-dark { color:#ef106e !important}

.transparent-blue-text{ color: rgba(0,239,255,.5) !important}

.transparent-green-text{ color: rgba(0,255,151,.5) !important}

.fast-green-text{ color: #85eea5 !important}

.crimson-red-text { color: #e31d3b !important}

.deep-green-text { color: #1acd7b !important; }

.deep-green-dark2-text{color: #6ad5a7 !important;}

.deep-blue-text { color: #2283d4 !important; }

.turquoise-blue-text {color: #85d4c0 !important;}

.deep-pink-dark-text { color:#e15276 !important}

a.light-gray-text:hover { color: #7f7f7f !important}



/* letter spacing */

.no-letter-spacing { letter-spacing: 0px !important}

.letter-spacing-1 { letter-spacing:1px !important}

.letter-spacing-2 { letter-spacing:2px !important}

.letter-spacing-3 { letter-spacing:3px !important}

.letter-spacing-4 { letter-spacing:4px !important}

.letter-spacing-5 { letter-spacing:5px !important}

.letter-spacing-6 { letter-spacing:6px !important}

.letter-spacing-7 { letter-spacing:7px !important}

.letter-spacing-8 { letter-spacing:8px !important}

.letter-spacing-9 { letter-spacing:9px !important}

.letter-spacing-10 { letter-spacing:10px !important}



/* font weight */

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

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

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

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

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



/* text property */

.text-transform-unset { text-transform:unset !important}

.text-decoration-underline { text-decoration:underline !important; }

.word-wrap { word-wrap: break-word}

.text-transform-none {text-transform:none !important}

.line-height-unset {line-height: unset !important}

.line-height-none {line-height: 0 !important}

.text-decoration-line-through {text-decoration:line-through !important;}

.title-line-through {padding: 0 15px}



/* line height */

.line-height-18 {line-height: 18px !important}

.line-height-20 {line-height: 20px !important}









/* typography */

.first-letter{color: #000; float: left; font-size: 50px; left: 0; line-height: 1; margin: 0 20px 10px 0; position: relative; top: 4px;}

.first-letter-block { background-color: #000; color: #fff; font-weight: 600; padding: 10px;}

.first-letter-block-round { border: 3px solid #000; border-radius: 5px; font-size: 35px; font-weight: 600; padding: 8px 10px;}

.first-letter-light {background: #888888 none repeat scroll 0 0; border-radius: 5px; color: #fff; font-size: 45px; font-weight: 600; padding: 10px 12px;}

.first-letter-highlight { border-bottom: 2px solid #c7c7c7; color: #e6af2a; font-size: 45px; line-height: 60px; margin: 0 20px;}

.first-letter-round {background-color: #e6af2a; border-radius: 50%; color: #fff; font-size: 30px; padding: 15px;}



/* font family */

.alt-font {font-family: poppins;}

.main-font {font-family: poppins;}



/* ===================================

    Icon

====================================== */



/* icon size */

i { color: #9a9a9a; margin:0}

.icon-extra-large {font-size:60px !important;}

.icon-large {font-size:50px !important;}

.icon-medium { font-size:40px !important; margin-bottom: 15px !important; }

.icon-small { font-size:25px !important;}

.icon-extra-small { font-size:18px !important;}



/* social icon */

.social-icon .fa { text-align: center; display: table-cell; vertical-align: middle; width: 30px; height: 30px !important; line-height: 1; font-size: 14px; -webkit-transition: all 0.4s ease; transition: all 0.4s ease; color: #fff; background: none; }

.social-icon a:hover .fa { opacity:.6} 

.social-icon .fa-pinterest { background-color: #cb2027; }

.social-icon .fa-rss  { background-color: #f26522; }

.social-icon .fa-facebook  { background-color: #3b5998; }

.social-icon .fa-twitter  { background-color: #00aced; }

.social-icon .fa-flickr  { background-color: #ff0084; }

.social-icon .fa-dribbble  { background-color: #ea4c89; }

.social-icon .fa-behance  { background-color: #42a9fb; }

.social-icon .fa-linkedin  { background-color: #007bb6; }

.social-icon .fa-vimeo-square  { background-color: #aad450; }

.social-icon .fa-youtube  { background-color: #bb0000; }

.social-icon .fa-tumblr  { background-color: #32506d; }

.social-icon .fa-github-alt  { background-color: #333333; }

.social-icon .fa-google-plus  { background-color: #dd4b39; }

.social-icon .fa-instagram  { background-color: #517fa4; }

.social-icon .fa-soundcloud  { background-color: #f80; }



.social-icon-large {margin-right: 20px;}

.social-icon:hover .fa{opacity: 0.8;}

.social-icon-large .fa {background: transparent none repeat scroll 0 0; color: #000; display: table-cell; font-size: 25px; height: 60px !important; line-height: 1; text-align: center; transition: all 0.4s ease 0s; vertical-align: middle; width: 60px;}

.social-icon-large:hover .fa-facebook{background-color: #3b5998; color: #fff}

.social-icon-large:hover .fa-twitter{background-color: #00aced; color: #fff}

.social-icon-large:hover .fa-google-plus{background-color: #dd4b39; color: #fff}

.social-icon-large:hover .fa-tumblr{background-color: #32506d; color: #fff}

.social-icon-large:hover .fa-rss{background-color: #f26522; color: #fff}

.social-icon-large:hover .fa-behance{background-color: #42a9fb; color: #fff}

.social-icon-large:hover .fa-instagram{background-color: #517fa4; color: #fff}

.social-icon-large:hover .fa-github-alt{background-color: #333333; color: #fff}



/* icon style */

.icon-box i { margin:0 30px}

.i-large-box{ width:100px; height:100px; line-height:98px; text-align:center; font-size:40px}

.i-medium-box{ width:80px; height:80px; line-height:80px; text-align:center; font-size:30px;}

.i-small-box{ width:60px; height:60px; line-height:60px; text-align:center; font-size:22px}

.i-extra-small-box{ width:40px; height:40px; line-height:40px; text-align:center; font-size:15px}

.i-plain { color:#737373; background-color: transparent !important;}

.i-plain:hover { color:#fff; background-color: #737373!important; -webkit-transform: scale(1.2); -moz-transform: scale(1.2); -o-transform: scale(1.2); -ms-transform: scale(1.2); transform: scale(1.2);}

.i-rounded  { border-radius: 3px; background-color: #000; color:#fff; border:1px solid rgba(0,0,0,0.15);}

.i-rounded:hover { background-color: #fff; color:#9a9a9a; border:1px solid rgba(0,0,0,0.15);}

.i-bordered { border:1px solid rgba(0,0,0,0.15); background-color: transparent !important; color:#9a9a9a}

.i-bordered:hover { background-color: #000 !important; color: #fff}

.i-circled  { border-radius: 50%;}

.i-light { background-color: #fff !important; box-shadow: 0 0 10px rgba(0, 0, 0, .08) inset; color:#9a9a9a; text-shadow: 1px 1px 1px #fff; }

.i-light:hover { background-color: #fff !important; box-shadow: 0 0 30px rgba(0, 0, 0, .15) inset !important; color: #444; text-shadow:none }

.i-3d { box-shadow: 0 0 3px rgba(0, 0, 0, .1); color:#9a9a9a !important;  background-color: #fff; color:#000}

.i-3d:hover {box-shadow: 0 0 4px rgba(0, 0, 0, .3);}

.i-3d-border { border-bottom:3px solid rgba(0,0,0,0.15) !important; color:#fff; text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.3)}

.i-3d-border:hover { border-bottom:3px solid rgba(0,0,0,0.30) !important; color:#fff; -webkit-transform: scale(1.2); -moz-transform: scale(1.2); -o-transform: scale(1.2); -ms-transform: scale(1.2); transform: scale(1.2); }



.glyphs .box1 {    border: 1px solid #e5e5e5; display: block; float: left; font-size: 13px; margin: -1px 0 0 -1px; padding: 0; width: 33.33%; padding: 20px; text-align: left}

.glyphs .box1 span { font-size: 30px; vertical-align: middle; width: 50px;}



.fa-examples div { border: 1px solid #e5e5e5; font-size: 13px; margin: -1px 0 0 -1px; padding: 15px 0 15px 15px; color: #868686; }

.fa-examples div:hover { background-color: #fafafa}

.fa-examples i {color:#555555; font-size:14px; letter-spacing: 0; margin-right: 5px;}

.fa-examples span {margin-left: 6px;  display: none }



.social-btn-area{padding: 80px 0;}

.button-3d { border-bottom: 2px solid rgba(0, 0, 0, 0.2) !important;}



/* ===================================

    Background color

====================================== */



.bg-white{ background: #fff !important;}

.bg-white-transparent{ background: rgba(255,255,255,.3) !important}

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

.bg-deep-yellow{ background: #c8a64b !important; }

.bg-golden-yellow{ background: #ffd800 !important; }

.bg-fast-yellow{ background: #f8c70c !important; }

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

.bg-mid-gray{ background: #d4d4d4 !important; }

.bg-mid-gray2{ background: #b2b2b2 !important; }

.bg-mid-gray3{ background: #e2e2e2 !important; }

.bg-black{ background: #f8c70c !important; }

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

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

.bg-deep-brown{ background-color: #544441 !important;}

.bg-transparent { background:transparent !important}

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

.bg-fast-orange { background:#ff513b !important;}

.bg-pink { background:#c2345f !important}

.bg-deep-red { background:#dc3535 !important}

.bg-deep-pink { background:#e53878 !important}

.bg-light-pink { background:#dc378e !important}

.bg-fast-pink { background:#fd3e82 !important}

.bg-fast-pink-dark { background:#ef106e !important}

.bg-magenta { background:#d94378 !important }

.bg-light-yellow {background:#f8f7f5 !important}

.bg-dark-green{ background:#60a532 !important;}

.bg-dark-blue {background: #1e2126 !important;}

.bg-deep-blue2 {background:#131d43 !important; }

.bg-deep-blue3 {background:#1d2127 !important; }

.bg-deep-blue-dark{background:#1d6cae !important;}

.bg-violet { background:#6c407e !important}

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

.bg-brown {background: #614c45 !important}

.bg-deep-orange {background: #f8c70c !important}

.bg-transparent-blue { background: rgba(0,239,255,.5) !important}

.bg-transparent-green{ background: rgba(0,255,151,.5) !important}

.bg-fast-green{ background: #00ff97 !important}

.bg-fast-blue { background: #00efff !important}

.bg-fast-blue-green-gradiant { background: #00efff; background: -moz-linear-gradient(-45deg, #00efff 0%, #00ff97 100%); background: -webkit-gradient(linear, left top, right bottom, color-stop(0%,#00efff), color-stop(100%,#00ff97)); background: -webkit-linear-gradient(-45deg, #00efff 0%,#00ff97 100%); background: -o-linear-gradient(-45deg, #00efff 0%,#00ff97 100%); background: -ms-linear-gradient(-45deg, #00efff 0%,#00ff97 100%); background: linear-gradient(135deg, #00efff 0%,#00ff97 100%); filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00efff', endColorstr='#00ff97',GradientType=1 ); }

.bg-crimson-red { background: #fc3d83  !important}

.bg-deep-green {background: #1acd7b !important; }

.bg-deep-green2{background: #7ebaa1 !important;}

.bg-deep-green-dark{background: #04b966 !important;}

.bg-deep-green-dark2{background: #6ad5a7 !important;}

.bg-deep-green-dark3{background: #62a486 !important;}

.bg-deep-blue {background: #2283d4 !important; }

.bg-transparent-deep-blue{ background: rgba(17,116,198,.9) !important}

.bg-turquoise-blue {background: #93e4cf !important;}

.bg-deep-pink-dark { background:#e15276 !important}



/* opacity */

.opacity-light{ position: absolute; height: 100%; width: 100%; opacity: 0.5; z-index: 1; top:0; left: 0 }

.opacity-medium{ position: absolute; height: 100%; width: 100%; opacity: 0.7; z-index: 1; top:0; left: 0 }

.opacity-full{ position: absolute; height: 100%; width: 100%; opacity: 0.8; z-index: 1; top:0; left: 0 }

.opacity-full-dark{ position: absolute; height: 100%; width: 100%; opacity: 0.9; z-index: 1; top:0; left: 0 }



/* section height  */

.one-fourth-screen {min-height: 800px}



/* scroll down */

.scroll-down{ bottom: 50px; position: absolute; text-align: center; width: 100%; z-index: 10}

.scroll-down a i { background: #fff; border-radius: 2px; font-size: 17px; padding: 2px 6px; color: #000; }

.scroll-down a i:hover { background:#000; color: #fff  }



.scroll-down-light{ bottom: 50px; position: absolute; text-align: center; width: 100%; z-index: 10}

.scroll-down-light a i { font-size: 35px; padding: 2px 6px; color: rgba(255,255,255,.4); }

.scroll-down-light a i:hover { color: #fff }



/* scroll top */

.scrollToTop { display: none; font-weight: bold; height: auto; padding: 0; position: fixed; right: 35px; text-align: center; text-decoration: none; top: 94%; width: auto; background-color: #000; z-index: 555; border-radius:2px; }

.scrollToTop i { font-size: 18px; margin: 0 6px; color: #fff; }

.scrollToTop:hover { opacity: 0.5; }

.scrollToTop:hover i { position: relative; }



/* ===================================

    Background image

====================================== */



.parallax-fix{ position: relative; background-size: cover !important; overflow: hidden; background-position: center center; background-repeat: no-repeat !important; transition-duration: .2s; -moz-transition-duration: .2s; -webkit-transition-duration: .2s; -o-transition-duration: .2s; transition-timing-function: ease-in; -moz-transition-timing-function: ease-in; -webkit-transition-timing-function: ease-in; -o-transition-timing-function: ease-in; background-attachment: fixed !important }

.fix-background{ position: relative;  background-size: cover !important; -webkit-animation-duration: 0s;  -webkit-animation-fill-mode: none; overflow: hidden; background-position: center center; background-repeat: no-repeat !important; background-attachment: fixed !important}

.cover-background{ position: relative; background-size: cover !important; overflow: hidden; background-position: center center !important; background-repeat: no-repeat !important;}

.background-size-inherit {background-size: inherit !important}

.background-attachment-inherit {background-attachment: inherit !important}

.background-position-left {background-position: left center !important;}

.background-position-right {background-position: right center !important;}

.background-position-top {background-position: right top !important;}



/* ===================================

    Custom

====================================== */



.center-col{ float:none !important; margin-left:auto !important; margin-right:auto !important}



/* separator */

.separator-line-full { height: 1px; margin: 0 auto; width: 100%;}

.separator-line { height: 2px; margin: 0 auto; width: 30px; margin:7% auto}

.separator-line-thick { height: 4px; margin: 0 auto; width: 30px; margin:7% auto}

.separator-line-thick-full { height: 4px; margin: 0 auto; width: 100%; margin:7% auto}

.separator-line-thick-long { height: 3px; margin: 0 auto; width: 80px; margin:7% auto}

.separator-line-medium-thick { height: 6px; margin: 0 auto; width: 45%; margin:7% auto}

.separator-line-extra-thick { height: 8px; margin: 0 auto; width: 50%; margin:7% auto}

.separator-line-vertical { width:7px; height:80px; background-color:#fff; float:left; margin-right:90px;}

.thin-separator-line { height: 1px; width: 30px; margin:7% auto}

.vertical-separator { height:25px; width:25px; border-left:1px solid #000}

.wide-separator-line { height: 1px;  background-color:#e5e5e5; margin:5% 15px;}

.title-separator-line { display: inline-block; height: 3px; margin-right: 5px; width: 11px; }

.divider-line {height: 1px; margin: 0 auto; width: 100%; background: rgba(0,0,0,.1);}



/* margin */

.margin-one-half{margin:0.5% !important}

.margin-one {

    margin: 1% 1% 1% 0% !important;

}

.margin-two{margin:1.5% !important}

.margin-three{margin:2% !important}

.margin-four{margin:2.5% !important}

.margin-five{margin:3% !important}

.margin-six{margin:2.5% !important}

.margin-seven{margin:4% !important}

.margin-eight {margin:1.5% !important}

.margin-nine {margin:5% !important}

.margin-ten{ margin:5.5% !important}

.margin-eleven{ margin:6% !important}

/*.margin-twelve{ margin:6.5% !important}*/

.margin-thirteen{ margin:7% !important}

.margin-fourteen{ margin:7.5% !important}

.margin-fifteen{ margin:8% !important}

.margin-sixteen{ margin:8.5% !important}

.margin-seventeen{ margin:9% !important}

.margin-eighteen{ margin:9.5% !important}

.margin-nineteen{ margin:10% !important}

.margin-twenty{ margin:10.5% !important}

.margin-twenty-one{ margin:11% !important}

.margin-twenty-two{ margin:11.5% !important}

.margin-twenty-three{ margin:12% !important}

.margin-twenty-four{ margin:12.5% !important}

.margin-twenty-five{ margin:13% !important}

.margin-twenty-six{ margin:13.5% !important}

.margin-twenty-seven{ margin:14% !important}

.margin-twenty-eight{ margin:14.5% !important}

.margin-twenty-nine{ margin:9% !important}

.margin-thirty{ margin:15.5% !important}

.margin-thirty-one{margin:16% !important}

.margin-thirty-two{margin:16.5% !important}

.margin-thirty-three{margin:17% !important}

.margin-thirty-four{margin:17.5% !important}

.margin-thirty-five{margin:18% !important}

.no-margin{ margin:0 !important}

.no-margin-lr{ margin-left: 0 !important; margin-right: 0 !important}

.no-margin-tb{ margin-top: 0 !important; margin-bottom: 0 !important}

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

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

.no-margin-left{ margin-left:0 !important}

.no-margin-right{ margin-right:0 !important}

.margin-lr-auto {margin-left:auto !important; margin-right:auto !important}



/* padding */

.padding-one-half{padding:0.5% !important}

.padding-one{padding:1% !important}

.padding-two{padding:1.5% !important}

.padding-three{padding:2% !important}

.padding-four{padding:2.5% !important}

.padding-five{padding:3% !important}

.padding-six{padding:3.5% !important}

.padding-seven{padding:4% !important}

.padding-eight {padding:4.5% !important}

.padding-nine {padding:3% !important}

.padding-ten{ padding:5.5% !important}

.padding-eleven{ padding:6% !important}

.padding-twelve{ padding:6.5% !important}

.padding-thirteen{ padding:7% !important}

.padding-fourteen{ padding:7.5% !important}

.padding-fifteen{ padding:8% !important}

.padding-sixteen{ padding:8.5% !important}

.padding-seventeen{ padding:9% !important}

.padding-eighteen{ padding:9.5% !important}

.padding-nineteen{ padding:10% !important}

.padding-twenty{ padding:10.5% !important}

.padding-twenty-one{ padding:11% !important}

.padding-twenty-two{ padding:11.5% !important}

.padding-twenty-three{ padding:12% !important}

.padding-twenty-four{ padding:12.5% !important}

.padding-twenty-five{ padding:13% !important}

.padding-twenty-six{ padding:13.5% !important}

.padding-twenty-seven{ padding:14% !important}

.padding-twenty-eight{ padding:14.5% !important}

.padding-twenty-nine{ padding:15% !important}

.padding-thirty{ padding:15.5% !important}

.padding-thirty-one{padding:16% !important}

.padding-thirty-two{padding:16.5% !important}

.padding-thirty-three{padding:17% !important}

.padding-thirty-four{padding:17.5% !important}

.padding-thirty-five{padding:18% !important}

.no-padding{ padding:0 !important}

/*@media (min-width:1281px){

    .no-padding {

    padding: 0 !important;

}

}*/

.no-padding-lr{ padding-left: 0 !important; padding-right: 0 !important}

.no-padding-tb{ padding-top: 0 !important; padding-bottom: 0 !important}

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

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

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

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



/* display */

.display-block { display: block !important}

.overflow-hidden{ overflow: hidden !important}

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

.display-inline { display: inline !important}

.display-none { display: none !important}

.display-inherit { display: inherit !important}



/* position */

.position-relative{ position: relative !important; z-index: 5 }

.position-absolute {position: absolute !important;}

.position-fixed {position: fixed !important;}

.position-right { right:0 !important; }

.position-left { left:0 !important; }

.position-top { top:0 !important; }



/* top */

.top0 {top: 0 !important}

.top1 {top: 1px !important}

.top2 {top: 2px !important}

.top3 {top: 3px !important}

.top4 {top: 4px !important}

.top5 {top: 5px !important}

.top6 {top: 6px !important}

.top7 {top: 7px !important}

.top8 {top: 8px !important}

.top9 {top: 9px !important}

.top10 {top: 10px !important}



.top-minus1 {top: -1px !important}

.top-minus2 {top: -2px !important}

.top-minus3 {top: -3px !important}

.top-minus4 {top: -4px !important}

.top-minus5 {top: -5px !important}

.top-minus6 {top: -6px !important}

.top-minus7 {top: -7px !important}

.top-minus8 {top: -8px !important}

.top-minus9 {top: -9px !important}

.top-minus10 {top: -10px !important}



/* width */

.width { display: inline-block; position: relative; width: 90%; }

.width-20 { width:20% !important;}

.width-30 { width:30% !important;}

.width-40 { width:40% !important;}

.width-50 { width:50% !important;}

.width-60 { width:60% !important;}

.width-70 { width:70% !important;}

.width-80 { width:80% !important;}

.width-90 { width:90% !important;}

.width-100 { width:100% !important;}

.width-auto { width: auto !important}



/* height */

.height-100 { height: 100% !important}

.height-auto { height:auto !important}



.clear-both{ clear:both}

.vertical-align-middle { vertical-align: middle !important;}

.vertical-middle { -webkit-transform: translateY(-50%); -ms-transform: translateY(-50%); transform: translateY(-50%); position: absolute; top: 50%; left:0; right: 0}

.vertical-align-top { vertical-align: top !important;}

.line-break { display:block !important;}

.z-index-1 {z-index:1 !important;}

.z-index-0 {z-index:0 !important;}

.z-index-minus2 {z-index:-2 !important;}

.no-transition *, .owl-carousel *, .mfp-container * { transition-timing-function: none; -moz-transition-timing-function: none; -webkit-transition-timing-function: none; -o-transition-timing-function: none; transition-duration: 0s; -moz-transition-duration: 0s; -webkit-transition-duration: 0s; -o-transition-duration: 0s; }

section { padding: 130px 0; }

.button-bg-area{padding: 80px 0;}



/* ===================================

    Border

====================================== */



.border-black{ border:1px solid #000}

.border-thick{ border-width:2px !important }

.border-white { border:1px solid #FFF}

.border-top { border-top: 1px solid rgba(0,0,0,.1); }

.border { border: 1px solid rgba(0,0,0,.1) !important}

.border-right { border-right: 1px solid rgba(0,0,0,.1); }

.border-bottom { border-bottom: 1px solid #e5e5e5; }

.border-left { border-left: 4px solid #fff; }

.border-color-black { border-color: #000 !important}

.border-color-fast-yellow { border-color: #fdd947 !important}

.border-color-white { border-color: #fff !important}

.border-color-fast-pink-dark { border-color: #ef106e !important}

.border-deep-yellow { border-color: #d8b75f  !important}

.border-gray { border-color:#d7d7d7 !important}

.border-color-orange { border-color:#ff513b !important}

.no-border { border:none !important}

.border-top-light { border-top: 1px solid rgba(0, 0, 0, 0.1);}

.border-bottom-light { border-bottom: 1px solid rgba(0, 0, 0, 0.1);}

.border-transperent-white { border-color:rgba(255,255,255,.25) !important}

.border-transperent-white-light { border-color:rgba(255,255,255,.10) !important}

.border-transperent-black-light { border-color:rgba(0,0,0,.10) !important}

.border-transperent-green {border-color:rgba(106,213,167,0.5) !important}

.border-bottom-transperent-white { border-bottom: 1px solid rgba(255,255,255,.15) !important}

.no-border-round {border-radius:0 !important}

.round-border{border-radius: 50% !important }

.img-border {border: 8px solid #fdd947; height: calc(100% - 40px); width: calc(100% - 40px); left: 20px; top: 20px;  position: absolute; }

.img-border-medium {border: 5px solid #fdd947; height: calc(100% - 30px); width: calc(100% - 30px); left: 15px; top: 15px;  position: absolute;}

.img-border-small {border: 4px solid #fdd947; height: calc(100% - 20px); width: calc(100% - 20px); left: 10px; top: 10px;  position: absolute;}



.navbar-nav .dropdown-menu a{

font-family: 'Poppins' !important;

}



/* buttons */

.btn {display: inline-block;  margin-right: 15px; letter-spacing: 1px; border:1px solid transparent; border-radius: 0; text-transform: uppercase; width: auto; font-family: 'poppins' !important; font-weight: 600 }

.btn-round { border-radius:4px !important}

.btn i { margin-right:5px}

.btn.btn-large i { font-size: 24px;}

.btn-small-white:focus {color: #fff}



.button { margin-top:0; margin-bottom: 0}

.btn.btn-large { font-size: 18px; padding: 18px 35px;}

.btn.btn-medium { font-size: 14px; padding: 10px 22px; font-family: 'Poppins' !important;}

.btn.btn-small { font-size: 11px; padding: 5px 14px; letter-spacing:1px}

.btn.btn-very-small {font-size: 12px;

    padding: 7px 12px 6px;

    letter-spacing: 1px;

    border-radius: 5px;}



.highlight-button { border:2px solid #000; display: inline-block; padding: 8px 20px 9px; font-size: 12px; color:#000; background-color: transparent;   }

.highlight-button:hover, .highlight-button:focus { background-color: #000; border: 2px solid #000; color:#fff}

.highlight-button i { color: #000}

.highlight-button:hover i {color:#fff}



.highlight-button-dark { border:2px solid #000; display: inline-block; padding: 8px 20px 9px; font-size: 12px; color:#fff; background-color: #000;  }

.highlight-button-dark:hover, .highlight-button-dark:focus { background-color: transparent; border: 2px solid #000; color:#000}

.highlight-button-dark i { color: #fff}

.highlight-button-dark:hover i {color:#000}



.highlight-button-green { border:2px solid #6ad5a7; display: inline-block; padding: 2px 20px 3px; font-size: 12px; color:#fff; background-color: #6ad5a7;  }

.highlight-button-green:hover, .highlight-button-green:focus { background-color: transparent; border: 2px solid #6ad5a7; color:#fff}

.highlight-button-green i { color: #fff}

.highlight-button-green:hover i {color:#fff;}



.highlight-button-blue { border:2px solid #2283d4; display: inline-block; padding: 8px 20px 9px; font-size: 12px; color:#fff; background-color: #2283d4;  }

.highlight-button-blue:hover, .highlight-button-blue:focus { background-color: transparent; border: 2px solid #fff; color:#fff}

.highlight-button-blue i { color: #fff}

.highlight-button-blue:hover i {color:#2283d4}



.highlight-button-blue-dark { border:2px solid #2283d4; display: inline-block; padding: 8px 20px 9px; font-size: 12px; color:#fff; background-color: #2283d4;  }

.highlight-button-blue-dark:hover, .highlight-button-blue-dark:focus { background-color: transparent; border: 2px solid #000; color:#000}

.highlight-button-blue-dark i { color: #fff}

.highlight-button-blue-dark:hover i {color:#2283d4}



.btn-small-white-background { font-size: 11px; letter-spacing: 2px; padding: 6px 23px; color: #000; margin-right: 20px; background:#fff; border: 2px solid #fff }

.btn-small-white-background:hover, .btn-small-white-background:focus { background:transparent; border: 2px solid #fff; color: #fff; }

.btn-small-white-background i { color: #000}

.btn-small-white-background:hover i { color: #fff}



.btn-small-white { font-size: 11px; letter-spacing: 3px; padding: 6px 25px; border: 2px solid #203761; color: #203761;}

.btn-small-white:hover, .btn-small-white:focus { background-color: #FFF; color: #000}



.btn-small-white-dark { font-size: 11px; letter-spacing: 3px; padding: 6px 25px; border: 2px solid #fff; color: #000; background:#fff}

.btn-small-white-dark:hover, .btn-small-white-dark:focus { background-color:transparent; color: #fff; border: 2px solid #fff}



.btn-very-small-white { font-size: 9px; letter-spacing: 2px; padding: 2px 15px; border: 1px solid #fff; color: #fff;}

.btn-very-small-white:hover, .btn-very-small-white:focus { background-color: #FFF; color: #000}



.btn-black{ border: 2px solid #000; color: #fff; display: inline-block; background-color: #000; padding: 7px 20px 8px; width: auto;}

.btn-black:hover, .btn-black:focus {border: 2px solid #000; color: #000; background-color: transparent}



.highlight-button-black-border { border: 4px solid #000; background-color: transparent; font-size: 22px; padding: 20px 30px; color: #000;}

.highlight-button-black-border:hover, .highlight-button-black-border:focus{ border: 4px solid #000; background-color: #000; color: #fff}



.highlight-button-white-border{ border: 4px solid #fff; background-color: transparent; font-size: 22px; padding: 20px 30px; color: #fff;}

.highlight-button-white-border:hover, .highlight-button-white-border:focus { border: 4px solid #fff; background-color: #fff; color: #000}



.highlight-button-gray-border{ border: 4px solid rgba(255,255,255,.4); background-color: transparent; font-size: 22px; padding: 20px 30px; color: #ababab;}

.highlight-button-gray-border:hover, .highlight-button-gray-border:focus { border: 4px solid rgba(255,255,255,.4); background:rgba(255,255,255,.2); color: #fff}



.highlight-button-transparent-border{ border: 4px solid rgba(255,255,255,.4); background: rgba(255,255,255,.1); font-size: 22px; padding: 20px 30px; color: #fff;}

.highlight-button-transparent-border:hover, .highlight-button-transparent-border:focus { border: 4px solid rgba(255,255,255,.6); background:rgba(255,255,255,.3); color: #fff}



.highlight-button-black-background{ border: 4px solid #000; background-color: #000; font-size: 20px; padding: 20px 30px; color: #fff; }

.highlight-button-black-background:hover, .highlight-button-black-background:focus { border: 4px solid #000; background-color: #fff; color: #000}



.btn-small-black-background { font-size: 11px; letter-spacing: 3px; padding: 6px 25px; border: 2px solid #000; color: #fff; background-color: #000 }

.btn-small-black-background:hover, .btn-small-black-background:focus { background-color:transparent; color: #000; border: 2px solid #000}



.btn-small-black-border-light { font-size: 10px; letter-spacing: 3px; padding: 6px 25px; border: 1px solid #000; color: #000; }

.btn-small-black-border-light:hover, .btn-small-black-border-light:focus { background-color: #000; color: #fff}



.btn-light-black{ border: 2px solid #000; color: #000; background-color: transparent}

.btn-light-black:hover, .btn-light-black:focus {border: 2px solid #000; background-color: #000; color: #fff}



.button-desc { font-size:30px !important; line-height: 35px; font-family: 'poppins'; font-weight: 600}

.button-desc span { display: block; font-size: 18px; font-weight: 400 }



/* reveal button */

.button-reveal { overflow:hidden; position: relative; transition: all 200ms linear 0s; border: 2px solid #000; font-size:16px; padding: 0}

.button-reveal i { position:absolute; left:-25px; top: 30%; color: #000; font-size: 20px;}

.button-reveal span {padding: 0 45px; display: block; line-height:54px}

.button-reveal:hover span { padding: 0 30px 0 60px; transition: all 200ms linear 0s; color: #000 }

.button-reveal:hover i { left:25px}

.btn.btn-large.button-reveal { padding: 0}



.button-reveal-black { background-color: #000; color: #fff}

.button-reveal-black span { color: #fff}

.button-reveal-black i { color: #fff}

.button-reveal-black:hover span { color: #fff}



/* ===================================

    Owl carousel

====================================== */



.owl-carousel { overflow: hidden; }

.owl-buttons { position: static; }

.owl-prev, .owl-next { color: #111; display: block; font-size: 16px; height: 105px; line-height: 105px; margin-top:-35px; opacity: 0; position: absolute; text-align: center; top: 50%; width: 105px; z-index: 6; }

.owl-prev {left: -70px;}

.owl-next {right: -70px;}

.owl-prev:before, .owl-next:before { background-color:#fff; border-radius:2px; box-shadow: 1px 1px 0 rgba(0, 0, 0, 0.1); content: ""; display: block; height: 66%; left: 0; position: absolute; width: 66%; }

.owl-next:before { left: auto; right: 0; }

.owl-prev .fa, .owl-next .fa {color: #000; font-size: 24px; position: relative; top: -15%;}

.owl-prev .fa{ right: 4%}

.owl-next .fa { left: 4%;}

.owl-carousel:hover .owl-prev {left: -35px; opacity: 1; }

.owl-carousel:hover .owl-next { opacity: 1; right: -35px; }

.owl-pagination { bottom: 30px; display: block; left: 0; position: absolute; text-align: center; width: 100%; z-index: 5 !important; }

.owl-page { display: inline-block; padding: 6px 5px; }

.owl-page span { background: none repeat scroll 0 0 rgba(255, 255, 255, 0.7); border-radius: 4px; box-shadow: 1px 1px 0 rgba(0, 0, 0, 0.1); display: block; height: 7px; transition: all 0.27s cubic-bezier(0, 0, 0.58, 1) 0s; width: 7px; }

.owl-page:hover span { background: none repeat scroll 0 0 rgba(255, 255, 255, 1); }

.owl-page.active span { background: none repeat scroll 0 0 transparent; border: 1px solid rgba(255, 255, 255, 0.8); transform: scale(1.33333); }

.owl-bg-img { background-position: center center; background-repeat: no-repeat; background-size: cover; display: block; overflow: hidden; position: relative; width: 100%; }

.owl-subtitle { font-size: 14px; letter-spacing: 10px; text-transform: uppercase; font-weight: 400; line-height: 80px; display:block}

.owl-title { font-size: 35px; font-weight: 600; text-transform: uppercase; display: block; letter-spacing: 7px;}

.owl-title-big { background: rgba(0, 0, 0, 0.5); display: inline-block; font-size: 25px; font-weight: 600; letter-spacing: 7px; line-height: 40px; padding: 35px 50px; text-transform: uppercase; width: 60% }

.dark-pagination .owl-page span { background: none repeat scroll 0 0 rgba(0, 0, 0, 1); box-shadow: none }

.dark-pagination .owl-page.active span {background:transparent; border: 1px solid rgba(0, 0, 0, 1); }

.dark-pagination .owl-prev, .owl-next { opacity: 1; }

.dark-pagination .owl-next:before { left: auto; right: 0; }

.dark-pagination .owl-prev {left: -35px; opacity: 1; }

.dark-pagination .owl-next { opacity: 1; right: -35px; }

.light-pagination .owl-page.active span {background: transparent; border: 1px solid rgba(255, 255, 255, 1); }



/* square pagination */

.square-pagination .owl-page span { width:30px; border-radius: inherit; height:3px; background: rgba(255,255,255,.5)}

.square-pagination .owl-page.active span {border:none !important; transform:none!important; background:#fff !important}



/* hide next-prev arrow */

.dark-pagination-without-next-prev-arrow .owl-prev, .dark-pagination-without-next-prev-arrow .owl-next {display: none}



/* hide dot navigation */

.owl-no-pagination .owl-pagination { display: none}

.owl-no-pagination .owl-prev::before, .owl-no-pagination .owl-next::before { background-color: transparent}

.owl-no-pagination .owl-prev .fa, .owl-no-pagination .owl-next .fa { font-size: 30px}



/* simple next-prev arrow */

.owl-prev-next-simple .owl-prev::before, .owl-next::before { box-shadow:none}



/* half slider */

.owl-half-slider .owl-title { width: 50%; line-height: 40px; font-size: 25px;}

.owl-half-slider .item { min-height: 750px}

.owl-half-slider .container { min-height: 750px}

.owl-small-slider .item {min-height: 430px}

.owl-small-slider .container {min-height: 400px}



/* bottom pagination */

.bottom-pagination .owl-pagination {position:inherit !important}



/* scroll down */

.scroll-down{ bottom: 50px; position: absolute; text-align: center; width: 100%; z-index: 9}

.scroll-down a i { background: #fff; border-radius: 2px; font-size: 17px; padding: 2px 6px; color: #000; }

.scroll-down a i:hover { background:#000; color: #fff  }

.scroll-to-down { cursor:url("../images/arrow-down.png"), pointer;}

.scroll-to-down-white { cursor:url("../images/arrow-down-white.png"), pointer;}

.background-slider-text { position: absolute; width: 100%}

#owl-demo-background .owl-item  { cursor: default !important}



/* cursor */ 

.cursor-default {cursor: default !important}



/* ===================================

    Navigation

====================================== */



#header {z-index: 5}

.navbar {border: none; display: inline-table; width: 100%; border-radius:0; position: fixed; top: 0; z-index: 10; background: #fff;     border-bottom: 1px solid rgb(32 55 97) }

nav .container { display: table-cell; height: 75px; position: relative; vertical-align: middle; }

.navbar-header {background: url("../images/logo-border.png") right no-repeat}

nav.shrink .container {height: 60px;}

.header-right { margin: 13px 0 0; }

.navbar-nav a { font-size: 12px; text-transform: uppercase; color: #203761 !important; padding:0 !important; font-weight: 500}

.navbar-nav a:hover { color: #cacaca !important; background: transparent !important}

.navbar-nav a:focus {color: #000 !important; background: transparent !important}

.nav li {margin: 15px 20px}

.sticky-wrapper {position: absolute; top: 0; width: 100%}

.navbar-brand img {position: relative; top: -5px; z-index: 2; max-width: 171px;}

nav.shrink {  /* background: rgba(255,255,255);  */   padding-bottom: 4px;   /*  border-bottom: 1px solid rgb(32 55 97);  */}

.transparent-header.shrink {background: rgba(0,0,0,.7); border: none !important}

nav.navbar-height{  height: 100px !important;}

nav.navbar-height.shrink {height: 50px !important;}

.navbar li.active a { border-bottom: 1px solid #fff}

.header-white li.active a { border-bottom: 1px solid #000}



/* without button */

.without-button .navbar-header { background: none}

.without-button .navbar-collapse { float: right;}



/* sidebar navigation */

.sidebar-nav { width: 250px; height: 100%}

.sidebar-nav .navbar-header {background: none}

nav.sidebar-nav .container { vertical-align: top; padding:60px 40px }

.sidebar-nav .navbar-nav li {width: 100%; padding: 15px 0; border-bottom: 1px solid rgba(0,0,0,.1); margin: 0}

.sidebar-nav .navbar-nav li:last-child {border-bottom: none}

.sidebar-nav .navbar-nav li a {color: #000 !important; padding: 0 0 0 15px !important; font-weight: 600; border-bottom: none}

.sidebar-nav .navbar-nav li a:before { content: ""; left: -1px; position: absolute; top: 9px; border-bottom: 2px solid #ef106e; width: 6px; transition-duration: .2s; -moz-transition-duration: .2s; -webkit-transition-duration: .2s; -o-transition-duration: .2s;}

.sidebar-nav .navbar-nav li a:hover:before, .sidebar-nav .navbar-nav li.active a:before {width: 130px; border-bottom: 1px solid #ef106e;}

.sidebar-wrapper {padding-left:250px }

.sidebar-nav .footer-social i { font-size: 14px;}

.sidebar-nav .footer-social a { margin: 0 10px;}



/* pull menu */

.pull-menu .navbar-header { background: none}

.pull-menu .navbar-brand {height: auto}

.pull-menu .navbar-nav {padding: 30px 0; margin-top: 40px;}

.pull-menu .navbar-nav a { font-size: 14px; color: #727272 !important; font-weight: 600}

.pull-menu .nav li {margin:10px 0; display: block; width: 100%}

.pull-menu .navbar-nav a span { color: #a9a9a9; margin-right: 10px;}

.pull-menu .navbar-nav li.active a { color: #000 !important}

.pull-menu .navbar-nav li.active a span { color: #e31d3b !important}

.pull-menu .footer-social a i {font-size: 14px;}

.pull-menu .footer-social a {margin: 0 15px !important}

.pull-menu nav.shrink {background: #fff}



/* center logo header */

.center-logo-header .navbar-nav{  vertical-align: middle; float: none}

.center-logo-header .navbar-nav li {display: inline-block; float: none}

.center-logo-header .navbar-brand {float:none; padding: 0; margin-left: 0 !important;}

.center-logo-header .navbar-nav a { font-size: 14px; color: #2e443f !important; display: inline;}

.center-logo-header .navbar-brand img {top: 0; max-width: 266px}

.center-logo-header .nav li {margin: 0 15px; vertical-align: middle;}

.center-logo-header .container { height: 86px !important;}

.center-logo-header .navbar-header .logo {display: none;}

.center-logo-header li.active a { border-bottom: medium none; color: #d32b55 !important;}



/* header white */

.header-white .navbar-nav a{color: #000 !important;}

.header-white .navbar-nav a:hover {color: #cacaca !important}

.header-white.shrink {border-bottom: 1px solid rgba(0,0,0,.1) !important}



/* affix */

.widget.affix { top: 130px; width: 14%;} 

.element-title {display: block; padding-bottom: 20px;}

.element-title:after {clear: both}



/* widget */

.widget .category-list li a.active {color: #000000; font-weight: 600;}



/* dropdown */

.dropdown-menu {border-radius:0; box-shadow: none; background: rgba(0,0,0,.8)}

.dropdown-menu li a {text-decoration: none; border: none !important}

.dropdown-menu li.active a {border-bottom: none !important}

.nav .open a, .nav .open a:focus, .nav .open a:hover {border: none !important; background: transparent !important}

.caret-up { display: inline-block; width: 0px; height: 0px; margin-left: 2px; vertical-align: middle; border-top: none; border-bottom: 4px solid #FFFFFF; border-right: 4px solid transparent; border-left: 4px solid transparent; border-top-width: 0px; border-top-style: dotted; content: ""; }

.navbar-nav .dropdown-menu a { font-size: 11px;}

.navbar-nav li .dropdown-menu {margin-top: 10px;}



/* ===================================

    Slider and parallax typography

====================================== */



.slider-text-middle-main { display: table; height: 100%; width: 100% }

.slider-text-bottom { display: table-cell; vertical-align: bottom; }

.slider-text-top { display: table-cell; vertical-align: top; }

.slider-text-middle { display: table-cell; vertical-align: middle; }

.slider-typography { width: 100%; height: 100%; position: absolute; z-index: 1; right: 0; left: 0; }



/* slider typography - style 1 */

.slider-typography .slider-typography-option1 span { font-size: 100px; line-height: 100px; letter-spacing: -2px; width: 80%; display: inline-block }

.slider-typography .slider-typography-option1 p { font-size: 15px;}



/* slider typography - style 2 */

.slider-typography .slider-typography-option2 span { font-size: 50px; line-height: 50px; letter-spacing: -2px; width: 80%;  }

.slider-typography .slider-typography-option2 p { font-size: 15px;}



/* slider typography - style 3 */

.slider-typography .slider-typography-option3 span { font-size: 80px; line-height: 80px ; letter-spacing: -2px; width: 80%;  }

.slider-typography .slider-typography-option3 p { font-size: 16px;}

.slider-typography .separator-line-medium-thick { margin: 75px 0}



/* slider typography - style 4 */

.slider-typography .slider-typography-option4 span { font-size: 200px; line-height: 80px ; letter-spacing: -2px; }

.slider-typography .slider-typography-option4 p { font-size: 14px;}



/* slider typography - style 5 */

.slider-typography .slider-typography-option5 span { font-size: 60px; line-height: 70px ; letter-spacing: -2px; width: 55%; display: block  }

.slider-typography .slider-typography-option5 p { font-size: 16px;}

.slider-typography .separator-line-medium-thick { margin: 84px 0}



/* slider typography - style 6 */

.slider-typography .slider-typography-option6 span {font-size: 90px; line-height: 90px; letter-spacing: -2px; width: 80%; display: inline-block }

.slider-typography .slider-typography-option6 p { padding: 4px 17px}

.slider-typography .slider-typography-option6 p sup {font-size: 8px}



.background-slider-text { position: absolute; width: 100%; }



/* ===================================

    Counter

====================================== */



.counter-style1 .counter-number { font-size: 35px;}



/* ===================================

    Portfolio

====================================== */



/* portfolio filter tab */

.portfolio-filter-tab li {margin: 0 20px !important; display: inline-block; float: inherit}

.portfolio-filter-tab li:last-child { margin-right: 0}

.portfolio-filter-tab li:first-child { margin-left: 0}

.portfolio-filter-tab li a {border: none !important; padding: 0; border-radius:0; padding: 5px 10px 3px 10px}

.portfolio-filter-tab li a:hover, .portfolio-filter-tab li:active, .portfolio-filter-tab li.active a {border: none; background-color: #fdd947 !important; color: #000 !important}



.nav-tabs li a {margin: 0; line-height: 17px}



/* portfolio filter tab - style 2 */

ul.portfolio-filter-tab-style-2 { border-bottom: none;}

.portfolio-filter-tab-style-2 li {margin: 0 25px !important; display: inline-block; float: inherit; position: relative; top:1px;}

.portfolio-filter-tab-style-2 li:last-child {margin-right:0 !important }

.portfolio-filter-tab-style-2 li:first-child {margin-left:0 !important }

.portfolio-filter-tab-style-2 li a {border: none !important; padding: 0; border-radius:0; padding: 5px 0; color: #9b9b9b}

.portfolio-filter-tab-style-2 li a:hover, .portfolio-filter-tab-style-2 li.active a {border-bottom: 2px solid #d8b75f !important; background-color: transparent !important; color: #000 !important}



/* portfolio filter tab - style 3 */

ul.portfolio-filter-tab-style-3 { border-bottom: none;}

.portfolio-filter-tab-style-3 li {margin: 0 15px !important; display: inline-block; float: inherit; position: relative; top:1px;}

.portfolio-filter-tab-style-3 li:last-child {margin-right:0 !important }

.portfolio-filter-tab-style-3 li:first-child {margin-left:0 !important }

.portfolio-filter-tab-style-3 li a {border: none !important; border-radius:0; padding: 4px 10px; color: #9b9b9b}

.portfolio-filter-tab-style-3 li a:hover, .portfolio-filter-tab-style-3 li:active, .portfolio-filter-tab-style-3 li.active a {border-bottom: none; background-color: #d66e4a !important; color: #fff !important}



/* portfolio filter tab - style 4 */

ul.portfolio-filter-tab-style-4 { border-bottom: none;}

.portfolio-filter-tab-style-4 li {margin: 0 20px !important; display: inline-block; float: inherit; position: relative; top:1px;}

.portfolio-filter-tab-style-4 li:last-child {margin-right:0 !important }

.portfolio-filter-tab-style-4 li:first-child {margin-left:0 !important }

.portfolio-filter-tab-style-4 li a {border: none !important; background: transparent !important; padding: 0; border-radius:0; padding: 5px 15px; color: #9b9b9b}

.portfolio-filter-tab-style-4 li.active a:before {background: url('../images/arrow.png') right center no-repeat; content: "/"; width: 100%; position: absolute; z-index: -1; left: 0; top: 5px; text-indent: -9999px }



/* portfolio filter tab - style 5 */

ul.portfolio-filter-tab-style-5 { border-bottom: none;}

.portfolio-filter-tab-style-5 li { margin: 0; display: table; float: inherit; position: relative; top:1px;}

.portfolio-filter-tab-style-5 li:last-child {margin:0 !important }

.portfolio-filter-tab-style-5 li:first-child {margin:0 !important } 

.portfolio-filter-tab-style-5 li a {border: none !important; background: transparent !important; padding: 10px 21px 10px 0; border-radius:0; color: #9b9b9b}

.portfolio-filter-tab-style-5 li a:hover {color: #000}

.portfolio-filter-tab-style-5 li.active a:before {border-bottom: 1px solid #ef106e; content: ""; width: 100%; position: absolute; z-index: -1; left: 0; top: 18px; color: #000 }

.portfolio-filter-tab-style-5 li.active a {padding-left: 15px; color: #000}



/* portfolio filter tab - style 6 */

ul.portfolio-filter-tab-style-6 { margin: 220px 50px 0 0;}

.portfolio-filter-tab-style-6 li { margin: 0; display:block; position: relative; top:1px; width: 100%; border-bottom: 1px solid rgba(0,0,0,.2)}

.portfolio-filter-tab-style-6 li:last-child {margin:0 !important; border-bottom: none }

.portfolio-filter-tab-style-6 li:first-child {margin:0 !important }

.portfolio-filter-tab-style-6 li a {border: none !important; background: transparent !important; padding: 17px 0; border-radius:0; color: #fff}

.portfolio-filter-tab-style-6 li a:hover, .portfolio-filter-tab-style-6 li.active a, .portfolio-filter-tab-style-6 li a:focus{color: #000 !important}



/* masonry basic */

.grid li  {transition-duration: 0s; -moz-transition-duration: 0s; -webkit-transition-duration: 0s; -o-transition-duration: 0s;}

.grid img { width:100%}

.grid-gallery { clear: both; float: left; width: 100%; }

.gallery-img a { position: relative; z-index: 2; display: block}

.grid-gallery ul { list-style: none; padding: 0; }

.grid-gallery figure { margin: 0; position: relative }

.grid-gallery figure img { display: block; width: 100%; opacity: 1; cursor: pointer; }

.grid-gallery figcaption h3 { margin: 0 0 8px; padding:0; text-transform:uppercase; }

.grid-gallery figcaption i { font-size: 32px; color: #aeaeae; margin-bottom: 20px}

.grid { margin: 0 auto; }

.grid li { box-sizing: border-box; float: left; margin: 0; }

.gallery-img { opacity: 1; transition: all 0.3s ease 0s; overflow: hidden; }

.grid figure:hover img { -ms-transform: scale(1.1,1.1); -webkit-transform: scale(1.1,1.1);  transform: scale(1.1,1.1); transition: all .3s ease; -webkit-transition: all .3s ease; -moz-transition: all .3s ease; opacity:0.15; cursor:url("../images/icon-zoom.png"), pointer;  }

.grid figure:hover figcaption { opacity: 1; transition: all .3s ease; -webkit-transition: all .3s ease; -moz-transition: all .3s ease;}



/* grid - style 1 */

.grid-style1 .grid figure { -webkit-transition: opacity 0.2s; transition: opacity 0.2s; }

.grid-style1 .grid figcaption {  opacity: 0; text-align: center; height: calc(100% - 60px); width: calc(100% - 60px); left: 30px; top: 30px;  position: absolute; background: #fff }

.grid-style1 .grid figcaption h3 { font-size: 18px; line-height: 25px; margin: 0; width: 100%; padding: 0 15px; text-align: center; top: 50%; -webkit-transform: translateY(-50%); -ms-transform: translateY(-50%); transform: translateY(-50%); position: relative}

.grid-style1 .grid figcaption h3 span {margin-top: 5px;}

.grid-style1-border {  border: 8px solid #fdd947; height: calc(100% - 40px); width: calc(100% - 40px); left: 20px; top: 20px;  position: absolute; }



/* grid - style 2 */

.grid-style2 .grid figure { -webkit-transition: opacity 0.2s; transition: opacity 0.2s; background: #999999}

.grid-style2 .grid figure img {position: relative; top: 0; }

.grid-style2 .grid figure:hover img {top:-100px; -ms-transform: scale(1,1); -webkit-transform: scale(1,1);  transform: scale(1,1); opacity: .5; }

.grid-style2 .grid figcaption {  opacity: 0; text-align: center; width: 100%; height: 100px; bottom: -100px; position: absolute; padding: 25px 0; background: #fff}

.grid-style2 .grid figure:hover figcaption {bottom: 0; opacity: 1}

.grid-style2 .grid figcaption h3 {margin: 0; position: relative; }



/* grid - style 3 */

.grid-style3 .grid figure img {position: relative; top: 0; }

.grid-style3 .grid figure:hover img {top:0; -ms-transform: scale(1.1,1.1); -webkit-transform: scale(1.1,1.1);  transform: scale(1.1,1.1); opacity: .5; }

.grid-style3 .grid figcaption {  text-align: center; width: 100%; height: 100px;}

.grid-style3 .explore-now {position: absolute; bottom: -36px; width: 100%; opacity: 0 }

.grid-style3 .grid figure:hover .explore-now {opacity: 1; bottom: -37px}

.grid-style3 .grid li:hover figcaption { bottom: 37px !important;}

.grid-style3 .explore-now a {  padding: 7px 0; display: block; width: 100%; color: #fff }



/* grid - style 4 */

.grid-style4 .grid figure img {position: relative; top: 0; opacity: 1; }

.grid-style4 .grid figure:hover img {top:0; -ms-transform: scale(1.1,1.1); -webkit-transform: scale(1.1,1.1);  transform: scale(1.1,1.1); opacity: .1;  cursor:url("../images/icon-zoom-white2.png"), pointer; box-shadow: none; outline: none; -webkit-filter: blur(3px); -moz-filter: blur(3px); -o-filter: blur(3px); -ms-filter: blur(3px); filter: blur(3px);}

.grid-style4 .grid h3 { font-size: 22px; position: absolute; left: 45px; bottom: 0; width: 30%; z-index: 5; line-height: 25px; opacity: 0}

.grid-style4 .grid h3:after { border-bottom: 4px solid rgba(0,0,0,1); content: ""; left: 0; position: absolute; top: -25px; width: 60%; }

.grid-style4 .grid figure:hover h3 {opacity: 1; bottom: 38px; letter-spacing: 10px;}

.grid-style4 .grid h3 a { color: rgba(0,0,0,.9)}



/* grid - style 5 */

.grid-style5 .grid figure { -webkit-transition: opacity 0.2s; transition: opacity 0.2s; background: #000 }

.grid-style5 .grid figcaption {  opacity: 0; text-align: center; bottom: 60px; left: 0; right: 0;  position: absolute;}

.grid-style5 .grid figure:hover img { -webkit-filter: grayscale(1); filter: grayscale(1); cursor: pointer; opacity: .25; }

.grid-style5 .grid figcaption h3 { font-size: 14px; line-height: 25px; margin: 0; width: 100%; padding: 30px 15px 10px 15px; text-align: center; position: relative; padding-top:30px; opacity: 1; z-index: 2}

.grid-style5 .grid figcaption h3 a {color: #fff}

.grid-style5 .grid figcaption span { text-align: center; top: 47%; -webkit-transform: translateY(-50%); -ms-transform: translateY(-50%); transform: translateY(-50%); position: relative}



/* grid - style 6 */

.grid-style6 .grid figure img {position: relative; top: 0; opacity: 1; }

.grid-style6 .grid figure:hover img {top:0; -ms-transform: scale(1.1,1.1); -webkit-transform: scale(1.1,1.1);  transform: scale(1.1,1.1); opacity: .3;  cursor:url("../images/icon-zoom-white2.png"), pointer; box-shadow: none; outline: none;}

.grid-style6 .grid h3 { font-size: 18px; position: absolute; left: 0; right: 0; text-align: center; bottom: 0; z-index: 5; line-height: 25px; opacity: 0; color: rgba(255,255,255,1)}

.grid-style6 .grid h3:after { border-bottom: 8px solid rgba(255,26,86,1); content: ""; left: 0; right: 0; position: absolute; bottom: -25px; width: 40%; margin: 0 auto }

.grid-style6 .grid figure:hover h3 {opacity: 1; bottom: 70px; letter-spacing: 10px;}

.grid-style6 .grid h3 a { color: rgba(255,255,255,1)}



/* portfolio grid - gutter */

.gutter .grid-gallery ul { margin-left: -11px}

.gutter .grid li { padding: 0 0 11px 11px;}



/* portfolio grid - 5 column  */

.work-5col .grid li { width: 20%;}



/* portfolio grid - 4 column  */

.work-4col .grid li { width: 100%;}



/* portfolio grid - 3 column  */

.work-3col .grid li { float: left; width: 33.33%;}



/* portfolio grid - 2 column  */

.work-2col .grid li { float: left; width: 50%;}



/* portfolio grid - gutter */

.gutter .grid-gallery ul { margin-left: -11px}

.gutter .grid li { padding: 0 0 11px 11px;}



/* portfolio grid - gutter wide */

.gutter-wide .grid-gallery ul { margin-left: -40px}

.gutter-wide .grid li { padding: 0 0 40px 40px;}



/* portfolio grid - gutter wide */

.gutter-medium .grid-gallery ul { margin-left: -22px}

.gutter-medium .grid li { padding: 0 0 22px 22px;}



/* portfolio grid - with title */

.work-with-title .grid figcaption {opacity: 1; position: relative; bottom: 0; padding: 29px 0 30px 0; background: rgba(255,255,255,1); z-index: 2; }

.work-with-title .grid li figcaption h3, .work-with-title .grid figcaption h3 a, .work-with-title .grid li figcaption p {color: #888888 }

.work-with-title .grid figcaption h3 a { display: block}

.work-with-title .grid li:hover figcaption h3, .work-with-title .grid li:hover figcaption h3 a{color: #000 }

.work-with-title .grid li:hover figcaption { bottom: 50px;}



/* portfolio grid - with title - transparent figcaption */

.work-with-title.transparent-figcaption .grid figcaption {background: rgba(0,0,0,.75); bottom: 0; position: absolute;}

.work-with-title.transparent-figcaption .grid figure:hover figcaption {background: rgba(0,0,0,.75);}

.work-with-title.transparent-figcaption .grid li figcaption h3{color: #fff; font-size: 13px !important }



/* onepage portfolio details popup */

.popup-bg .mfp-content {height: 100%}

.popup-info { display: none}

.half-project-bg {height: 550px}

.slider-typographi-text .slider-subtitle{ line-height: 64px !important}

.spend-year, .spend-time{border-right: 1px solid #e5e5e5; float: left; font-size: 30px; font-weight: 400; letter-spacing: 2px; line-height: 47px; min-height: 95px; text-align: center; width: 50%;}

.spend-year span, .spend-time span{display: block; font-size: 12px; font-weight: 400; line-height: 0; margin-top: 35px; text-transform: uppercase;}

.project-img-gallery{padding: 15px 0;}



/* ===================================

    Tab

====================================== */



/* tab - style 1 */

.tab-style-1 li { display: inline-block; width: 100%; margin: 0; border-bottom: 1px solid rgba(255,255,255,.1); background: transparent !important}

.tab-style-1 li.active:after {content:"\f105"; font-family:'FontAwesome'; line-height: 44px;  position: absolute; right: 10px; font-size: 20px; top:0 }

.tab-style-1 li a {border-radius: 0; border: none !important; padding: 15px 0}

.tab-style-1 li.active {border-bottom: 1px solid rgba(255,255,255,.4)}

.tab-style-1 li.active a, .tab-style-1 li.active a:focus {color: #ababab !important}

.tab-style-1 li.active a, .tab-style-1 li a:hover {background: transparent !important; border: none !important; color: #ababab}



/* tab - style 2 */

.tab-style-2 li { display: inline-block; margin: 0 15px; background: transparent !important; float: none}

.tab-style-2 li:last-child { margin: 0 0 0 15px}

.tab-style-2 li:first-child { margin: 0 15px 0 0}

.tab-style-2 li a { border: 0 !important; color: #9b9b9b}

.tab-style-2 li a:hover {background: transparent}

.tab-style-2 li a:hover, .tab-style-2 li.active a {text-decoration:underline !important }



/* tab - style 3 */

.tab-style-3 li { display: inline-block; margin: 0 26px; background: transparent !important; float: none}

.tab-style-3 li:last-child { margin: 0 0 0 26px}

.tab-style-3 li:first-child { margin: 0 26px 0 0}

.tab-style-3 li:first-child a {padding-left: 0 }

.tab-style-3 li a { border: 0 !important; color: #9b9b9b; padding: 5px 0}

.tab-style-3 li a:hover {background: transparent}

.tab-style-3 li a:hover, .tab-style-3 li.active a {border-bottom: 2px solid #e31d3b !important }



/* tab - style 4 */

.tab-style-4 ul {border: 1px solid rgba(0,0,0,.1)}

.tab-style-4 li { display: table-cell; margin: 0; background: transparent !important; float: none; border-right: 1px solid rgba(0,0,0,.1); }

.tab-style-4 li:last-child {margin: 0; border: none}

.tab-style-4 li:first-child {margin: 0}

.tab-style-4 li a { border: 0 !important; color: #9b9b9b; padding: 12px 30px 12px 30px; border-radius: 0}

.tab-style-4 li a:hover, .tab-style-4 li .active {background: #f5f5f5 !important; color: #4e4e4e}

.tab-style-4 li.active a {background: #f5f5f5 !important}



/* tab - style 5 */

.tab-style5 .nav-tabs li.active a, .tab-style5 .nav-tabs { border: none;}

.tab-style5 .nav li {margin: 0}

.tab-style5 li:first-child a { margin: 0 32px 0 0; }

.tab-style5 li a { margin: 0 32px; padding: 5px 0; border: none;}

.tab-style5 .nav li a:focus, .tab-style5 .nav li a:hover { text-decoration: none; background-color: transparent;}

.tab-style5 .nav-tabs li.active a { border-bottom: 1px solid #000; cursor: default; }

.tab-style5 ul { height: 50px;}     



/* tab - style 6 */

.tab-style6 .nav-tabs li{border-color: transparent transparent; border-image: none; border-style: solid solid none; border-width: 1px 1px medium; margin-bottom: -1px !important; margin: 0;}

.tab-style6 .nav-tabs li a{border: none; padding: 15px 20px; background-color: transparent;}

.tab-style6 .nav-tabs li a:hover, .tab-style6 .nav-tabs li a:focus{background-color: transparent; text-decoration: none; border-bottom:none;}

.tab-style6 .nav-tabs {border: 0 !important;}

.tab-style6 .tab-content{ background-color: #fdfdfd; border: 1px solid #e5e5e5; padding: 25px;}

.tab-style6 .nav-tabs li.active{border-color: #e5e5e5; border-image: none; border-style: solid solid none; border-width: 1px 1px medium; background-color: #fdfdfd;}

.tab-style6 .nav-tabs li.active a, .tab-style6 .nav-tabs { border: none;}



/* tab - style 7 */

.tab-style7 .nav-tabs li i{font-size: 17px; position: relative; top: 3px;}

.tab-style7 .nav-tabs { border-bottom: 1px solid #ddd;}

.tab-style7 .nav-tabs { height: auto; margin-bottom: 25px; padding-left: 15px;}

.tab-style7 .nav-tabs li a{background-color: #f7f7f7; border: medium none; line-height: 44px; margin: 0 !important; padding: 0 20px; border-radius: 0;}

.tab-style7 .nav-tabs li.active a { background-color: #fff; position: relative; top: 1px;}

.tab-style7 .nav-tabs li {border-right: 1px solid #e5e5e5; border-top: 1px solid #e5e5e5;}

.tab-style7 .nav-tabs li:first-child { border-left: 1px solid #e5e5e5; margin-left: 15px;}

.tab-style7 .nav-tabs li.active a, .tab-style7 .nav-tabs li.active a:focus, .tab-style7 .nav-tabs li.active a:hover{ background-color: #fff; border-color: #ddd #ddd transparent; border-image: none; border: none; cursor: default;}



/* tab - style 8 */

.tab-style8 .tabs-left .nav-tabs{border-right: 1px solid #e5e5e5; float: left; height: auto; padding: 20px 0 40px; width: 150px; margin-right: 35px; border-bottom: none;}

.tab-style8 .nav-tabs li:first-child { border-top: 1px solid #e5e5e5;}

.tab-style8 .tabs-left .nav-tabs li { border-bottom: 1px solid #e5e5e5; border-left: 1px solid #e5e5e5; float: left; width: 100%; margin: 0;}

.tab-style8 .tabs-left .nav-tabs li a {background-color: #f7f7f7; border-bottom: 0 none; display: block; line-height: 40px; margin: 0 !important; padding: 0 20px; text-align: left; width: 100%; border-radius: 0; border-top: medium none transparent;}

.tab-style8 .nav-tabs li.active a, .tab-style8 .nav-tabs{border: none;  background-color: #fff; left: 1px; position: relative; border-color: transparent; }



/* tab - style 9 */

.tab-style9 .nav-tabs li { border-right: 1px solid #d7d7d7; float: left; margin: 0;}

.tab-style9 .nav-tabs li:last-child{border-right:none;}

.tab-style9 .nav-tabs li a{border: medium none; font-size: 42px; margin: 0; outline: medium none; padding: 0 45px;}

.tab-style9 .nav-tabs li.active a i{color: #000;}

.tab-style9 .nav-tabs > li.active > a, .tab-style9 .nav-tabs{border: none;}

.tab-style9 .nav li a:focus, .tab-style9 .nav li a:hover{text-decoration: none; background-color: transparent;} 





/* ===================================

    List

====================================== */



/* list */

ul.flat-list { list-style:inside disc; margin: 0 0 0 25px}

.flat-list li { padding:5px 0}

.flat-list li.active { font-weight:600; color:#000}

.flat-list li.active ul { font-weight: normal; color: #575757}

.flat-list li ul { padding:5px 0 0 15px;}

.flat-list li i { margin:0 10px 0 0}

ul.flat-list-icon { list-style:none}

.list-inline li { display: inline-block; padding: 0 18px;}

ul.list-line li {border-bottom:1px solid rgba(0,0,0,.1); padding:7px 0}

ul.list-line li:last-child {border-bottom: none}

ul.list-line li span {min-width:130px; display:inline-block}

.bottom-line-list-light li { border-bottom:1px solid rgba(255,255,255,.1); padding: 7px 0 }

.bottom-line-list-dark li { border-bottom:1px solid rgba(0,0,0,.1); padding: 7px 0 }

.bottom-line-list-dark2 li { border-bottom:1px solid rgba(0,0,0,.1); padding: 13px 0 }

.bottom-line-list-dark2 li:last-child {border-bottom: none}

.bottom-line-list-dark2 li span { min-width: 110px; display: inline-block}





/* ===================================

    Progress bar

====================================== */



.progress-name{font-size: 10px; letter-spacing: 3px; text-transform: uppercase; font-weight: 400; margin: 5px 0 15px}

.progress-name strong { color: #000; font-weight: 400}

.progress-bar-sub { margin-right: 20px;}



/* progress bar - style 1 */

.progress-bar-style1 .progress { background-color: #dedede; height: 4px; overflow: hidden; margin-bottom: 10px; border-radius: 0 }

.progress-bar-style1 .progress-bar { float: left; width: 0; height: 100%; font-size: 12px; line-height: 20px; color: #fff; text-align: center; background-color: #000; -webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, .15); box-shadow: inset 0 -1px 0 rgba(0, 0, 0, .15); -webkit-transition: width .6s ease; -o-transition: width .6s ease; transition: width .6s ease; }

.progress-bar-style1 .progress-name{font-size: 11px; letter-spacing: 2px; text-transform: uppercase; font-weight: 400; margin: 5px 0 25px}

.progress-bar-style1 .progress-name strong { color: #000; font-weight: 500}



/* progress bar - style 2 */

.progress-bar-style2 .progress-bar-sub { margin-bottom: 40px; }

.progress-bar-style2 .progress { height: 26px; background-color: #dedede; margin-bottom: 0; box-shadow: none; border-radius: 0;}

.progress-bar-style2 .progress-bar { background-color: #000; font-size:11px; text-transform: uppercase; line-height: 25px; text-align: left; padding: 0 10px}



/* progress bar - style 3 */

.progress-bar-style3 .progress { height: 15px; overflow: visible; margin-bottom: 0; border-radius: 0; box-shadow: none; background-color: #dedede;}

.progress-bar-style3 .progress-bar { overflow: visible; position: relative;}

.progress-bar-style3 .progress-bar span { color: #000; font-size: 11px; position: absolute; right: 0; text-align: right; top: 21px;}

.progress-bar-style3 .progress-name { margin: 5px 0 20px;}



/* ===================================

    Testimonial

====================================== */



/* testimonial - style 1 */

.testimonial-style1 p{ font-size:13px; margin:30px 0 20px; line-height:22px; color: #828282}

.testimonial-style1 .name{ font-size:11px; display:block; width:100%; font-weight:600; text-transform: uppercase; letter-spacing: 2px; color: #828282}

.testimonial-style1 img { border-radius: 50%; max-width: 120px}



/* testimonial - style 2 */

.testimonial-style2 p{ font-size:13px; line-height:22px; color: #828282}

.testimonial-style2 .name{ font-size:18px; display:block; width:100%; text-transform: uppercase; letter-spacing: 2px; color: #828282}

.testimonial-style2 img { border-radius: 50%; border: 8px solid rgba(255,255,255,1)}

.testimonial-style2-img:after {content:"\f10d"; font-family:'FontAwesome'; font-size: 55px; color: #614c45; position: absolute; right: 30px; top: 54px}

.testimonial-style2 i.icon-extra-small {margin: 0 7px 0 0; font-size: 17px !important}



/* ===================================

    Team

====================================== */



/* team - style 1 */

.team-style1 .team-mood {position: absolute; width: 100%; padding: 5px 0px; top: 90%; text-align: center; -webkit-transform: translateY(-50%); -ms-transform: translateY(-50%); transform: translateY(-50%); left: 0; z-index:1 }

.team-style1 .team-mood span {padding: 6px 0px}

.team-style1:hover .team-mood {opacity: 0; top: -10px;}

.team-style1:hover .opacity-full, .team-style1:hover .bg-gray { opacity: 0; bottom: -150px;}

.team-style1 figure {opacity: 0; position: absolute; width: 100%; bottom: -150px; background: rgba(253,217,71,.95); }

.team-style1 figure {

    opacity: 0; /* Start hidden */

    bottom: -10px; /* Initial position */

    transition: opacity 0.5s ease, bottom 0.5s ease; /* Transition for opacity and bottom */

    z-index: 1; /* Ensure default z-index */

}



.team-style1:hover figure {

    opacity: 1; /* Fully visible on hover */

    bottom: 0; /* Move to original position */

    z-index: 5; /* Bring to front */

}

.team-style1 .team-social i {margin: 0 20px;}



/* team - style 2 */

.team-style2 .team-social i {margin: 0 20px;}

.team-style2 .team-social a:hover i {opacity: .5}

.team-style2 .team-image:hover img {transition: all .3s ease; -webkit-transition: all .3s ease; -moz-transition: all .3s ease;  -webkit-filter: grayscale(1); filter: grayscale(1);}



/* ===================================

    Blog

====================================== */



/* blog post - style 1 */ 

.blog-post-style1 article {  margin-bottom: 0; position: relative; overflow: hidden; }

.blog-post-style1 .post-thumbnail { position: absolute; top: 0px; bottom: 0px; opacity: 0; z-index: -1;  }

.blog-post-style1 article:hover .post-thumbnail {opacity: .8; }

.blog-post-style1 article:hover .post-details:before {border-bottom: 1px solid rgba(0,0,0,0);}

.blog-post-style1 .post-details:before { display: block; content: ""; width: 45%; border-bottom: 1px solid rgba(0,0,0,.1);}

.blog-post-style1 .post-details .blog-post-number { padding: 15px 20px; margin: 8px 0 0 0; color: #fff; display: inline-block}

.blog-post-style1 .blog-like, .blog-share, .comment { font-size: 10px; letter-spacing: 2px; margin-right: 25px; text-transform: uppercase; }

.blog-post-style1 article i { margin-right: 4px}

.blog-post-style1 article:hover span, .blog-post-style1 article:hover p, .blog-post-style1 article:hover a, .blog-post-style1 article:hover i {color: #fff}

.blog-post-style1 article:hover p { opacity: .5}

.blog-post-style1 article:hover h5 a { color: #fdd947 }

.blog-post-style1 article:hover .blog-post-number { color: #000}

.blog-post-style1 article:hover .post-details { -ms-transform: translate(50px,0); -webkit-transform: translate(50px,0); transform: translate(50px,0);}



/* blog post - style 2 */ 

.blog-post-style2 article:hover img {transition: all .3s ease; -webkit-transition: all .3s ease; -moz-transition: all .3s ease;  -ms-transform: scale(1.1,1.1); -webkit-transform: scale(1.1,1.1);  transform: scale(1.1,1.1);}

.blog-post-style2 .post-details { position: absolute; width: 100%; padding: 0 15px; top: 50%; text-align: center; -webkit-transform: translateY(-50%); -ms-transform: translateY(-50%); transform: translateY(-50%); left: 0; padding: 50px 40px  }

.blog-post-style2 .post-details-arrow { position: absolute; right: 0; top: 50%; }

.blog-post-style2 .post-details-arrow:before { position: absolute; display: inline-block; border-top: 15px solid transparent; border-right: 15px solid #eee; border-bottom: 15px solid transparent; border-right-color: #fff; left: -15px; top: 50%; content: ''; -webkit-transform: translateY(-50%); -ms-transform: translateY(-50%); transform: translateY(-50%);}



/* blog post - style 3 */

.blog-post-style3 article:hover img {transition: all .3s ease; -webkit-transition: all .3s ease; -moz-transition: all .3s ease; -ms-transform: scale(1.1,1.1); -webkit-transform: scale(1.1,1.1); transform: scale(1.1,1.1); opacity: .5 }

.blog-post-style3 article .post-date { right: 0; bottom: 0; padding: 12px 25px}

.blog-post-style3 article .post-details { margin: 0 !important; padding: 25px; width: 100% }

.blog-post-style3 article [class^="col-"] { padding-right: 0}



/* blog post - style 4 */

.blog-post-style4 article { margin: 10px 0 0 0; position: relative; overflow: hidden;  cursor:url("../images/arrow-white.png"), pointer; cursor: default;  }

.blog-post-style4 .post-thumbnail { position: absolute; top: 0px; bottom: 0px; opacity: 1; z-index: -1; background: #303030 }

.blog-post-style4 .post-thumbnail img {opacity: .2; top: -100px; position: relative}

.blog-post-style4 article:hover img { opacity: .4; top: -50px; }

.blog-post-style4 .post-date-month-main {-webkit-transform: translateY(-50%); -ms-transform: translateY(-50%); transform: translateY(-50%); left: 24%; top: 50%; position: absolute}

.blog-post-style4 .post-date { font-size: 80px; letter-spacing: -4px; line-height: 80px}

.blog-post-style4 .post-date-month {position: relative; padding-right: 30px; font-size: 12px;}

.blog-post-style4 article:hover .post-date-month {padding-right: 50px}

.blog-post-style4 .post-date-month:after {  border-bottom: 1px solid #00ff97; bottom: -6px; content: ""; left: 0; position: absolute; width: 100%; }

.blog-post-style4 a {color: #fff}

.blog-post-style4 .text-small {opacity: 0.4}



/* blog post - style 5 */

.blog-post-style5 .post-details { padding: 15% 13%; min-height: 315px}

.blog-post-style5 .post-title {margin: 15% 0 10%; top: 0; transition: all .3s ease; -webkit-transition: all .3s ease; -moz-transition: all .3s ease; }

.blog-post-style5 .post-details:hover .post-title, .blog-post-style5 .post-title:hover { top: -15px;}

.blog-post-style5 .post-details:hover .post-title:before, .blog-post-style5 .post-title:hover:before {top:15px; z-index: -1; color: rgba(0,0,0,.1);}

.blog-post-style5 .post-title:before { content: "“"; font-size: 120px; position: absolute; left: 0; top: -15px; font-weight: 600; color: rgba(0,0,0,.5); transition: all .3s ease; -webkit-transition: all .3s ease; -moz-transition: all .3s ease;}

.blog-post-style5 .post-date a, .blog-post-style5 .post-name a { opacity: .6}

.blog-post-style5 .new-post .post-title:before, .blog-post-style5 .popular-post .post-title:before {color: rgba(255,255,255,1)}



/* blog post - style 6 */

.blog-post-style6 article:hover img {transition: all .3s ease; -webkit-transition: all .3s ease; -moz-transition: all .3s ease;  -ms-transform: scale(1.1,1.1); -webkit-transform: scale(1.1,1.1);  transform: scale(1.1,1.1);}

.blog-post-style6 .post-details { position: absolute; width: 100%; padding: 0 15px; top: 50%; -webkit-transform: translateY(-50%); -ms-transform: translateY(-50%); transform: translateY(-50%); left: 0; padding: 45px;  }

.blog-post-style6 .post-details-arrow { position: absolute; right: 0; top: 50%; }



/* blog post - style 7 */

.blog-post-style7 .post-categories {padding:3px 9px}

.blog-post-style7 .post-thumbnail:hover img {-webkit-filter: grayscale(1); filter: grayscale(1);  filter: alpha(opacity=60);}





/* ===================================

    Form controls 

====================================== */



.big-input, .big-textarea, .big-select select { padding: 18px 25px; border:2px solid rgba(0,0,0,.1) !important; font-size: 14px !important}

.big-input:focus, .big-select:focus {border:2px solid rgba(0,0,0,.5) !important;}

.big-label {font-size:14px; letter-spacing:2px;}



.medium-input, .medium-textarea, .medium-select select { padding: 12px 25px; border:2px solid rgba(0,0,0,0) !important; font-size: 14px !important}

.medium-input:focus, .medium-select:focus {border:2px solid rgba(0,0,0,.5) !important;}



.small-input, .small-textarea { padding: 12px 15px; border:2px solid rgba(0,0,0,.1); font-size: 11px !important}

.small-input:focus, .small-select:focus {border:2px solid rgba(0,0,0,.5);}

.small-select select {padding: 15px 15px;}



.medium-input-light, .medium-textarea-light, .medium-select-light select { padding: 12px 25px; border:2px solid rgba(255,255,255,.1) !important; font-size: 12px !important; background: rgba(255,255,255,.1) !important;}

.medium-input-light:focus, .medium-select-light:focus {border:2px solid rgba(255,255,255,.4) !important;}



.select-style { padding: 0; margin: 0; width: 100%; overflow: hidden; background-color: #fff; margin: 0 0 20px;  background: #fff url("../images/select-arrow.png") no-repeat 97% 50%; }

.select-style select { width: 100%; border: none; box-shadow: none; background-color: transparent; background-image: none; -webkit-appearance: none; -moz-appearance: none; appearance: none;  cursor: pointer; font-size:11px; letter-spacing:1px; margin-bottom:0; color:#999999; border-radius: 0; }

.select-style select:focus { outline: none; border: none; box-shadow: none }



.input-round { border-radius:4px !important }

input.no-border, input.no-border:focus, select.no-border, select.no-border:focus, textarea.no-border, textarea.no-border:focus {border: none}



.required { display: block; font-size: 11px; letter-spacing: 1px; text-transform: uppercase; }

.required-error { border: 2px solid rgba(204, 0, 0,1) !important;}

/* ===================================

    Features box

====================================== */



/* features box - style 1 */

.features-box-style1 { background: rgba(255,255,255,.1); width: 155px; height: 160px;}

.features-box-style1-sub { -webkit-transform: translateY(-50%); -ms-transform: translateY(-50%); transform: translateY(-50%); left: 0; position: absolute; top: 50%; width: 100%}

.features-box-style1:hover {border-radius:50%;}



/* features box - style 2 */

.features-box-style2-sub {border: 4px solid transparent; padding: 15px}

.features-box-style2-sub:hover {border: 4px solid rgba(255,255,255,.2); padding: 15px; }



/* pricing table */

.pricing-price { padding: 35px 0; }

.pricing-box {border: 1px solid rgba(0,0,0,.1)}

.pricing-title {padding: 10px 0}

.pricing-features {padding: 25px;min-height: 277px;}

.pricing-features ul li {border-bottom: 1px solid rgba(0,0,0,.1); padding: 7px 0}

.pricing-features ul li:last-child {border-bottom: none}

.pricing-action {padding: 0 35px 35px 35px}



/* ===================================

    Accordion and toggles

====================================== */



/* accordions */

.panel {box-shadow: none; border: none; border-radius: 0 !important;}

.panel div {transition-duration: .2s; -moz-transition-duration: .2s; -webkit-transition-duration: initial; -o-transition-duration: .2s; }

.panel-heading {padding-bottom:15px;}

.panel-title { background-color: #fff; color: #767676; font-size: 12px; letter-spacing:2px; font-weight: 400; width:100%; display: block; padding: 10px 18px; border: 1px solid rgba(0,0,0,.1); text-transform: uppercase}

.panel-body { padding:10px 18px 25px 18px; font-size: 13px; line-height: 23px; border: none !important}

.panel-heading i { font-size:10px; margin: 0}

.active-accordion .panel-title{ color: #000}



/* accordion - style 1 */

.accordion-style1 .panel {background: transparent !important; border: none !important}

.accordion-style1 .panel-title {background: transparent !important; border: none !important}

.accordion-style1 .panel .panel-heading { background: transparent !important; padding: 15px}

.accordion-style1 .panel-default {border-bottom: 1px solid rgba(255,255,255,.2) !important; border-radius: 0}

.accordion-style1 .active-accordion .panel-title { color: #fff !important; }

.accordion-style1 .panel-heading i { font-size: 10px; margin: 0; margin-right: 5px }

.accordion-style1 h4 { font-size: 13px; letter-spacing: 2px; }

.accordion-style1 a, .accordion-style1 a:hover, .accordion-style1 a:hover i { color: #ababab}

.accordion-style1 .panel-default:last-child {border-bottom: 1px solid rgba(0, 0, 0, 0);}



/* accordion - style 2 */

.accordion-style2 .panel-title  { background-color:#000; color: #fff}

.accordion-style2 .panel-heading i { font-size:18px; margin: 0; color:#fff; padding-top:5px}

.accordion-style2 .panel .panel-heading { background: transparent !important;}



/* accordion - style 3 */

.accordion-style3 .panel {background: transparent !important; border: none !important}

.accordion-style3 .panel .panel-heading { background: transparent !important; padding: 15px}

.accordion-style3 .panel-default {border-bottom: 1px solid rgba(255,255,255,.2) !important; border-radius: 0}

.accordion-style3 .panel-heading i { font-size: 10px; margin: 0; margin-right: 5px }

.accordion-style3 h4 { font-size: 13px; letter-spacing: 2px; }

.accordion-style3 a, .accordion-style1 a:hover, .accordion-style1 a:hover i { color: #ababab}

.accordion-style3 .panel-default:last-child {border-bottom: 1px solid rgba(0, 0, 0, 0);}



/* toggle - style 1 */

.toggles-style1 {border:1px solid rgba(0,0,0,.15); border-top:none}

.toggles-style1 .panel { border: none; border-top:1px solid rgba(0,0,0,.15); }

.toggles-style1 .panel-title { border: none; padding:20px 25px; font-size: 14px; position: relative}

.toggles-style1 .panel-title span { position: absolute; right: 25px; top: 20px; }

.toggles-style1 .panel:first-child { border-bottom:none}

.toggles-style1 .panel-heading { padding: 0}

.toggles-style1 .panel-body{ padding: 0 60px 25px 25px; background-color:#fff}

.toggles-style1 .active-accordion h4 { font-weight: 600}



/* toggle - style 2 */

.toggles-style2 .panel-title  { background-color:#000; color: #fff}

.toggles-style2 .panel-heading i { font-size:18px; margin: 0; color:#fff; padding-top:5px}



/* ===================================

    Quote

====================================== */



/* quote - style 1 */

.quote-style1:before { content: "“"; display: block; position: absolute; font-size: 200px; left: 0; top: 64px; color: #ef106e}

.quote-style1 {padding-left: 70px; display: block}



/* quote - style 2 */

.quote-style2:before { content: "“"; display: block; position: absolute; font-size: 200px; left: -5px; top: 64px; color: #000}

.quote-style2 {display: block; padding-top: 95px;}



/* ===================================

    Alert

====================================== */



/* alert - style 1 */

.alert-style1 .alert { background-color: transparent; border-top:none; border-right:none; border-left:none; border-bottom-width:3px !important; border-radius:0; padding: 25px; font-size: 20px; font-weight:100; line-height:30px}

.alert-style1 .alert span {width:70%; display: table}

.alert-style1 .alert i {background-color: transparent; float: left; width:70px; font-size: 35px; line-height: 60px; color: #aeaeae}

.alert-style1 .alert:hover {border-bottom-width:6px !important; color: #4d4d4d }



/* alert - style 2 */

.alert-style2 .alert { border-radius:0; background-color: transparent}

.alert-block { padding:25px;}

.alert-block p { width:90%}



#success { clear: both; margin: 0 15px 20px; text-align: center; background-color: #fff; border: 2px solid #6dc13a; color: #1a940a;  padding: 10px 0; font-family: 'Poppins'; display: none}

#success-contact { clear: both; margin: 0 15px 20px; text-align: center; background-color: #fff; border: 2px solid #6dc13a; color: #1a940a;  padding: 10px 0; font-family: 'Poppins'; display: none}



/* ===================================

    Video and sound

====================================== */



.video-wrapper { height: 100%; overflow: hidden; position: absolute; width: 100%;}

.html-video { background-color: #000; height: auto; left: 50%; min-height: 100%; min-width: 100%; position: absolute; top: 50%; transform: translate(-50%, -50%); width: auto; z-index: -3;}

.sound iframe{width: 100%;}



/* ===================================

    Footer

====================================== */



footer { clear:both;}

footer img {max-width: 156px;}

.footer-bottom {padding: 30px 0}

.footer-top {padding: 80px 0}

.footer-social i {  font-size: 22px;}

.footer-social a { margin: 0 25px; display: inline-block;}

.footer-social a:first-child {margin-left: 0}

.footer-social a:last-child {margin-right: 0}

.footer-social a i {color: #575757; }

.footer-social a:hover i { color: #868686}

.social-icon.footer-social a { margin: 0 8px; }

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



/* ===================================

    Agency demo

====================================== */



.service { min-height: 684px}

.service-sub {border: 6px solid transparent; padding: 24px}

.service-sub:hover {border: 6px solid #fdd947; padding: 24px; background: #fff}

.agency-skill {min-height: 340px;}

.work-with-us {padding: 80px 0}



/* ===================================

    Restaurant demo

====================================== */



.restaurant-dishes { width:450px; height: 550px; margin-top: 45px;  }

#menu .container-fluid { left: -7px; position: relative; }

.restaurant-menu {min-height: 740px}

.restaurant-menu:hover .restaurant-menu-image img {opacity: .5}

.restaurant-menu-image { position: absolute;  height: 100%; width: 100%; }

.restaurant-menu-text {border:8px solid #d8b75f; position: absolute; transition: all 400ms ease-out 0s; opacity: 0; z-index: 2;  height: calc(100% - 80px); width: calc(100% - 100px); left: 57px; top: -42px;}

.restaurant-menu:hover .restaurant-menu-text {opacity: 1; top: 42px }

.restaurant-menu-text-inner { height: 100%; overflow-y: auto; }

.menu-item { border-bottom: 1px dotted rgba(0, 0, 0, 0.2); padding: 17px 0 22px 0; float: left; width: 100% }

.menu-item:first-child {padding-top:0 }

.menu-item:last-child {padding-bottom:0; border-bottom: none }

.menu-item img {max-height: 80px}

.menu-text, .menu-img {min-height: 80px; position: relative}

.menu-text-sub { -webkit-transform: translateY(-50%); -ms-transform: translateY(-50%); transform: translateY(-50%); left: 0; position: absolute; top: 50%;}

.menu-item p {line-height: 20px; margin: 0 0 5px 0}

.restaurant-menu-background { height: calc(100% - 46%); width: calc(100% - 46%); left: 23%; top: 23%;  position: absolute; background: rgba(255,255,255,1);}

.restaurant-menu-border {  border: 6px solid rgba(0,0,0,.1); height: calc(100% - 40px); width: calc(100% - 40px); left: 20px; top: 20px;  position: absolute; }

.restaurant-menu-item { position: absolute; width: 100%; padding: 0 15px; top: 50%; text-align: center; -webkit-transform: translateY(-50%); -ms-transform: translateY(-50%); transform: translateY(-50%); left: 0; z-index:1 }

.chef-bio:hover .chef-details {opacity: 1; bottom: 50px}

.chef-details {position: absolute; opacity: 0; bottom: -250px; transition: all 400ms ease-out 0s; width: 70%; left: 15%; }

.chef-bio:hover .chef-img img { position: relative; bottom: 20px; opacity: .5; transition: all .3s ease; -webkit-transition: all .3s ease; -moz-transition: all .3s ease; -ms-transform: scale(1.1,1.1); -webkit-transform: scale(1.1,1.1);  transform: scale(1.1,1.1); -webkit-filter: blur(3px); -moz-filter: blur(3px); -o-filter: blur(3px); -ms-filter: blur(3px); filter: blur(3px);}

.chef-img img {transition: all 400ms ease-out 0s; position: relative; bottom: 0}

.special-dishes-price{height: 90px; line-height: 18px; padding: 25px 0; width: 90px; right: 15px; top: 0}

.special-dishes:hover img { transition: all .3s ease; -webkit-transition: all .3s ease; -moz-transition: all .3s ease; -ms-transform: scale(1.1,1.1); -webkit-transform: scale(1.1,1.1);  transform: scale(1.1,1.1); }



/* ===================================

    Travel demo

====================================== */



.travel-slider{ min-height: 725px}

.travel-top-slider {padding-top: 100px; padding-bottom: 0px; }

.adventure-details-main { position: relative;}

.adventure-details { right: 0; position: absolute; top: 0; width: 50%; height: 100%; background: rgba(30,33,38,.9)}

.adventure-details-sub { -webkit-transform: translateY(-50%); -ms-transform: translateY(-50%); transform: translateY(-50%); right: 0; position: absolute; top: 50%; width: 100%;}

.adventure-details-main:hover .adventure-details { margin-right:50%; background: #1e2126 !important}

.adventure-details-destinations{ margin: 0; opacity: 0; padding: 8px 0 9px; position: absolute; width: 110%; right: 0; transform: rotate(-90deg); transform-origin: top right; -moz-transform:rotate(-90deg); -moz-transform-origin: top right; -webkit-transform:rotate(-90deg); -webkit-transform-origin: top right; -o-transform:rotate(-90deg); -o-transform-origin: top right; -ms-transform:rotate(-90deg); -ms-transform-origin: top right;}

.adventure-details-main:hover .adventure-details-destinations{ opacity: 1;}

.adventure-details-main-bottom { position: relative;}

.adventure-details-main-bottom:hover .adventure-details { margin-right:50%; background: #1e2126  !important}

.adventure-details-main-bottom .adventure-details { -webkit-transform: translateY(-50%); -ms-transform: translateY(-50%); transform: translateY(-50%); left: 0; position: absolute; top: 50%; width: 50%; height: 101%; background: rgba(30,33,38,.9)}

.adventure-details-main-bottom:hover .adventure-details { margin-left:50%; background: #1e2126 !important}

.adventure-details-main-bottom .adventure-details-destinations{ margin: 0; opacity: 0; padding: 8px 0 9px; position: absolute; width: 110%; left: 0; transform: rotate(90deg); transform-origin: top left; -moz-transform:rotate(90deg); -moz-transform-origin: top left; -webkit-transform:rotate(90deg); -webkit-transform-origin: top left; -o-transform:rotate(90deg); -o-transform-origin: top left; -ms-transform:rotate(90deg); -ms-transform-origin: top left;}

.adventure-details-main-bottom:hover .adventure-details-destinations{ opacity: 1}

.travel-how-to-work {background: rgba(53,56,60,.7); padding: 20px 50px; display: inline-block}

.travel-special-off{ top: 0; right: 0; padding: 5px 15px; }

.hotel-review { padding: 12px 20px; right: 15px; top: 0; min-width: 150px; }

.hotel-review .fa {display: inline; padding-left: 4px;}

.itinerary p { float: left; margin-bottom: 25px; position: relative; padding-left: 90px;}

.itinerary p span { background-color: #000; color: #fff; font-size: 12px; font-weight: 600; margin: 7px 25px 0 0; padding: 2px 15px; text-transform: uppercase; position: absolute; left: 0; }



/* ===================================

    Spa demo

====================================== */



.hover-box:hover img { -ms-transform: scale(1.1,1.1); -webkit-transform: scale(1.1,1.1);  transform: scale(1.1,1.1); }

.hover-box:hover .opacity-light { background: #000 !important}

.hover-box-text { right: 0; padding: 45px 75px; bottom: 0}

.hover-box-text .title-medium:before {  background: #fd3e82; content: ""; height: 4px; left: 53px; position: absolute; top: 62px; width: 15px;}

.hover-box:hover .hover-box-text { -webkit-transform: translateX(-80px); -ms-transform: translateX(-80px); transform: translateX(-80px);}

.hover-box-more { padding: 21px 20px; width:80px; height:80px; bottom: 0; right: -80px; opacity: 0 }

.hover-box-more a { display: block; line-height: 20px;}

.hover-box:hover .hover-box-more { opacity: 1; -webkit-transform: translateX(-80px); -ms-transform: translateX(-80px); transform: translateX(-80px);}

.treatments-box{}

.treatments-box-img {min-height: 550px;}

.treatments-box-img img {width: 90%; -webkit-transform: translateY(-50%); -ms-transform: translateY(-50%); transform: translateY(-50%); position: absolute; top: 50%;  }

.treatments-box-text { border: 8px solid #fff; min-height: 550px;}

.treatments-box-text-sub { -webkit-transform: translateY(-50%); -ms-transform: translateY(-50%); transform: translateY(-50%); position: absolute; top: 52%; left:0; right: 0}

.treatments-box-text-sub img {width: 84%; top: 5px}

.treatments-box-number { font-size: 100px; bottom: -92px;}

.packages-main {}

.packages-img { min-height: 550px}

.packages-text { min-height: 550px}

.packages-details { min-height: 550px}

.packages-list li { padding: 14px 0}



/* ===================================

    Photography demo

====================================== */



.photography-about { min-height: 830px}

.photography-quotes:before { content: "“"; color: #85eea5; font-size: 200px; position: absolute; }

.arrow-link {padding: 0 15px 0 0; z-index: 1}

.arrow-link:before{ background: url('../images/arrow.png') right 7px no-repeat; content: "arrow"; text-indent: -9999px; width: 100%; position: absolute; z-index: -1}

.arrow-link:hover {padding: 0 30px 0 0; z-index: 1;}

#people .scroll-down, #nature .scroll-down, #wildlife .scroll-down, #food .scroll-down { bottom: 60px}

.photography-services { min-height: 560px; background:#eeeeee}

.photography-services {min-height: 560px}

.photography-services-sub { margin-top: -50px}

.hover-box-image:hover h3 { top:70%; color: rgba(0,0,0,1) !important; letter-spacing: 10px !important; font-size: 27px}

.hover-box-image imh {z-index: -2}

.hover-box-image .grid-style1-border {opacity: 0;}

.hover-box-image:hover .grid-style1-border {opacity: 1; }

.hover-box-image-link {opacity: 0; left: 0; right: 0; bottom: 60px; }

.hover-box-image:hover  .hover-box-image-link {opacity: 1; -webkit-transform: translateY(-40px); -ms-transform: translateY(-40px); transform: translateY(-40px);}

.line-link {padding: 0 10px; z-index: 1}

.line-link:before{ background: url('../images/link-line.png') center 12px no-repeat; content: "arrow"; text-indent: -9999px; width: 100%; position: absolute; z-index: -1; left: 0}

.line-link:hover {padding: 0 25px; z-index: 1;}

.hover-box-image:hover .line-link { letter-spacing: 3px}

.photography-awards {min-height: 830px}

.awards-year:before {    border-bottom: 1px solid rgba(0,255,151,1); content: ""; height: 2px; left: 0; position: absolute; top: 12px; width: 76%; }



/* ===================================

    Personal demo

====================================== */



.skills{ padding: 5px 15px;}

.employment-year {padding: 2px 13px; font-size: 12px; margin: 10px 0 15px 0; display: inline-block; position: relative}

.employment-year:after {border-bottom: 1px solid #000; content: ""; position: absolute; width: 210%; top: 13px}

.ajax-popup-title-text {background: #ef106e; padding: 15px 25px;}

.personal-slider-content {position: absolute; left: 0; right: 0;}

.personal-slider-content span {z-index: 999; display: table;} 

.personal-slider-content .slider-typography {z-index: inherit !important}



/* ===================================

    Architecture demo

====================================== */



.architecture-title {min-height: 720px;}

.architecture-title-number { letter-spacing: -5px; line-height: 74px !important; margin: 0; padding: 0; right: -7px; top:16%}

.architecture-section{padding: 110px 90px 0}

.architecture-section h2 {margin-top: 90px;}

.architecture-bio:hover .architecture-details {opacity: 1; bottom: 50px}

.architecture-details {position: absolute; opacity: 0; bottom: -250px; transition: all 400ms ease-out 0s; width: 60%; left: 0; right: 0; background: rgba(227,29,59,.9) }

.architecture-bio:hover .architecture-img img {transition: all .3s ease; -webkit-transition: all .3s ease; -moz-transition: all .3s ease;  -webkit-filter: grayscale(1); filter: grayscale(1);}

.architecture-img img {transition: all 400ms ease-out 0s; position: relative; bottom: 0}



/* ===================================

    Spa demo

====================================== */



.spa-packages {background: rgba(255,255,255,1) !important}

.adventure-details-main:hover .spa-packages, .adventure-details-main-bottom:hover .spa-packages { background: #fff !important}



/* ===================================

    Event demo

====================================== */



.counter-container {display: table; margin: 0 auto;}

#counter-event .counter-box { display: block; width: 160px; text-align: center; padding: 0 25px; float: left; border-right: 1px solid rgba(255,255,255,.3); }

#counter-event .last { border-right: 0px !important;}

#counter-event .first { border-left: 0px !important;}

#counter-event .number { font-size: 60px; text-align: center; font-weight: 600; line-height: 65px; }

#counter-event span { display: block; font-size: 15px; text-align: center; font-weight: 400; text-transform: uppercase }

.table table td { border-bottom: 1px solid #e5e5e5; border-right: 1px solid #e5e5e5; padding: 30px 35px; border-top: 1px solid #e5e5e5; text-align: left}

.table table td:last-child {border-right:none}

.table table td:first-child {text-align: center}

.client-logo {height: 60px; vertical-align: middle; display: table-cell}

.registration-form {background: rgba(0,0,0,.5); padding: 35px}



/* ===================================

    Wedding demo

====================================== */



.wedding-slider-line { border-bottom: 4px double rgba(147,228,208,.5); display: inline-block;}

.title-dividers:after { content: ""; border-bottom: 1px solid #93e4cf; display: inline-block; position: absolute; top: 49%; width: 40px; right: -60px; }

.title-dividers:before { content: ""; border-bottom: 1px solid #93e4cf; display: inline-block; left: -60px; position: absolute; top: 49%; width: 40px; }

.couple-quotes { color: #85d4c0; margin-top: 40px;}

.couple-quotes:before {content: "“"; font-size: 100px; position: absolute; top: 22px;}

.wedding-social i { margin: 0 14px; font-size: 14px}

.wedding-event-box{ border: 5px solid #e4e4e4}

.attending-main {height: 500px; vertical-align: middle; display: table-cell}

.location-map iframe { height: 420px; width: 100%; }

.attending-main .img-border-medium {height: 470px;}

.maps iframe{ pointer-events: none; }



/* ===================================

    Tattoo demo

====================================== */



.section-top-pattern{background:url(../images/tattoo-icon-bg.jpg) no-repeat top center;}

.tattoo-art-bg{ min-height: 710px;}

.tattoo-art-title{ border: 7px solid #6ad5a7;}

.artist-info{ opacity: 0; height: 100%; width: 100%; background: rgba(255,255,255,0.9); padding: 15% 15% 0;}

.artist-info p{ color: #757575}

.our-artist:hover .artist-info{ opacity: 1;}

.artist-title{ position: absolute; bottom: 0; right: 0; background: #ffffff; padding: 18px 40px 15px;}

.tattoo-art-box .title-extra {font-size: 60px !important; line-height: 60px !important;}



/* ===================================

    Blog listing

====================================== */



/* page title */

.page-title { min-height: 450px; padding: 210px 0 0; overflow: hidden; }

.page-title h2 {font-size: 50px;}



/* blog listing */

.blog-listing .post-date {width: 110px; height: 110px; line-height: 28px; background-color: #373737; margin-top: 50px; color: #fdd947; font-size: 14px; padding: 30px 0 !important}

.blog-listing .post-date span {font-size: 35px; display: block; font-weight: 600}

.blog-sharing i { margin: 0 10px;}

.blog-sharing a i { color: #818181}

.blog-sharing a:hover i { color: #a0a0a0}

.blog-listing-link a:after{content: "/";  padding: 0 10px; }

.blog-listing-link a:last-of-type:after{content: "";}

.blog-search-btn{color: #949494; border: none; border-bottom: 1px solid #e5e5e5; padding-left: 0}

.blog-search-btn:focus{border: none; border-bottom: 1px solid #000;}

.widget{margin-bottom: 65px;}

.widget .close-search{ cursor: pointer; position: absolute; right: 19px; top: 12px; z-index: 998;}

.widget .close-search:hover {color: #000}

.pagination{margin:30px 0;}

.pagination a{font-weight:bold; display: inline-block; vertical-align: middle; color: #aaaaaa}

.pagination a:hover {color: #fdd947}

.pagination a:after {content: "/"; position: relative; padding: 5px 15px; color: #545454}

.pagination a:first-child:after, .pagination a:last-child:after,.pagination a:nth-child(6):after {content: ""}

.pagination a.active {color: #fdd947 }

.blog-image blockquote{border-left: 0 none; margin-bottom: 30px;; padding: 50px;}

.blog-image blockquote p::before{ color: #000; content: "\f10d"; font-family: "FontAwesome"; font-size: 50px; margin-right: 10px;}

.fluid-width-video-wrapper{position: relative;}

.fluid-width-video-wrapper iframe, .fluid-width-video-wrapper object, .fluid-width-video-wrapper embed{height: 100%; position: absolute; top: 0; width: 100%; left: 0;}



/* blog details */

.blog-comment{margin: 30px 0;}

.blog-comment .comment-avtar{ float: left; margin-right: 35px; margin-top: 10px; max-width: 100px;}

.blog-comment-main .comment-text .blog-comment-name:after{content: "/"; padding: 0 10px;}

.blog-comment > .blog-comment{margin-left: 40px;}

.blog-post-title:after{border-bottom: 4px solid #fdd947; content: ""; left: 0; padding: 10px; position: absolute; right: 0; top: 30px; width: 30px;}

.blog-comment-form textarea {min-height: 100px !important;}



/* categories */

.category-list li {border-bottom: 1px solid #e5e5e5; padding: 0 0 12px; margin-bottom: 10px;}

.category-list li a {font-family: "Poppins"; letter-spacing: 1px; display: inline-block; font-size: 11px; line-height: 20px; text-transform: uppercase}

.category-list li:last-child {border-bottom: 0; margin: 0; padding: 0;}



/* popular posts */

.widget-posts li { border-bottom: 1px solid #e5e5e5; padding: 0 0 8px; margin: 0 0 8px; color: #ababab}

.widget-posts li a {display: table; font-family: "Poppins";}

.widget-posts li:last-child {margin: 0; padding: 0; border-bottom: 0;}



/* tags */

.tags a{padding: 2px 10px; display: inline-block; color: #373737; font-family: "Poppins"; margin: 0 8px 10px 0; background-color: #f6f6f6; text-transform: uppercase; font-size: 11px; line-height: 20px;}

.tags a:hover{background-color: #000; color: #fff !important;} 



/* breadcrumb */

.breadcrumb {padding: 10px 0 7px; border-bottom: 1px solid #e5e5e5; background-color: inherit}

.breadcrumb ul li {text-transform: uppercase; float: left;font-size: 11px;} 

.breadcrumb ul li::after { color: #898989; content: "|"; font-size: 11px;  padding: 0 12px;  position: relative;  top: -1px;}

.breadcrumb ul li:last-child:after { display: none;}



/* ===================================

    Coming soon

====================================== */



.coming-soon-bg .number {float: none !important; text-align: center; width: 100%; height: 40px;}

.coming-soon-bg .navbar-brand {float: none !important}

.coming-soon-bg .counter-box span { display: inline-block !important; height: 40px; letter-spacing: 1px;}

.coming-soon-bg p {font-size: 14px !important; font-weight: 400; text-transform: uppercase; line-height:20px !important}

.coming-soon-bg form {position: relative;}

.coming-soon-bg form input {background-color:rgba(255,255,255,0.2); color: #fff; padding: 6px 40px 6px 12px; border: 1px solid #666c6e; text-transform: none; font-size: 12px; font-weight: 300;}

.coming-soon-bg button .fa { color: #fff; font-size: 20px; }

.coming-soon-bg form button {cursor: pointer;position: absolute; right: 10px; bottom: 5px; padding: 0; background-color:transparent; border: 0;}



/*only for webkit  browsers*/

@media screen and (-webkit-min-device-pixel-ratio:0) {

    .fix-background-webkit{ background-attachment: scroll !important;}

    .no-transition-ipad *{ transition-timing-function: none; -moz-transition-timing-function: none; -webkit-transition-timing-function: none; -o-transition-timing-function: none; transition-duration: 0s; -moz-transition-duration: 0s; -webkit-transition-duration: 0s; -o-transition-duration: 0s; }

}



    @media only screen and (max-width: 768px) {

    #slider-container {

      display: none;

    }

  }

      

    body {

      margin: 0;

      font-family: 'Poppins';

    }



    #slider-container {

      position: relative;

      width: 100%;

      overflow: hidden;

/*      margin-top:70px;*/

      padding-top: 6%;

    }



    .slider {

      display: flex;

      transition: transform 0.3s ease-out;

    }



    .slide {

      position: relative;

      min-width: 100%;

      box-sizing: border-box;

      overflow: hidden;

    }



    video {

      width: 100%;

      height: auto;

      object-fit: cover;

      display: block;

    }



    .text-overlay {

      position: absolute;

      top: 50%;

      left: 5%;

      transform: translate(0, -50%);

      color: #fff;

      text-align: left;

      width: 40%;

    }



    .text-overlay h3 {

      margin-bottom: 10px;

    }





      @media only screen and (min-width: 300px) 

    and (max-width: 480px){

   



.owl-item {

    width: 162px !important;

}

  }

.owl-pagination {  

    position: unset!important;   

}





    @media only screen and (min-width: 300px) 

    and (max-width: 480px){

   a.explore_more {

    display: none;

}

.col-lg-5.col-md-12.col-sm-12.padding-nine.bg-gray.agency-skill.md-padding-fifteen.sm-padding-nineteen {

    padding-bottom: 65px !important;

}

a.highlight-button-dark.xs-no-margin-bottom {

    cursor: pointer;

    background: #203761;

    /* border: #203761; */

    color: #fff;

    margin: 1% !important;

    /* margin-top: 10% !important; */

}



  }

/*  expore button mobile view css*/

.call-support {

      cursor: pointer;

    border: 4px solid #f8c70c;

    color: #fff;

    text-transform: none;

    margin-top: 2% !important;

    float: left;

    padding: 9px 6px;

    color: black;

    font-family: 'Poppins' !important;

}

.support {

  text-align: center;

}

.show-large {

  display: none;

}

@media only screen and (min-width: 767px) {

  .show-large {

    display: block;

  }

  .show-mobile {

    display: none;

  }

}

/*end*/























.carousel {

  display: none; /* Hide by default */

}



/* Styles for mobile devices */



@media only screen and (max-width: 767px) {

  .carousel {

    display: block; /* Display for mobile devices */

  }

}



/* Additional styles for small tablets */



@media only screen and (min-width: 768px) and (max-width: 1023px) {

  .carousel {

    display: none; /* Hide for small tablets */

  }

}



/* Additional styles for large tablets and desktops */



@media only screen and (min-width: 1024px) {

  .carousel {

    display: none; /* Hide for large tablets and desktops */

  }

}









    .carousel {

  position: relative;

  width: 100%;

  max-width: 600px; /* adjust as needed */

  margin: auto;

}



.carousel-images {

  position: relative;

}



.slide {

  position: relative;

  overflow: hidden;

}



.slide img {

  width: 100%;

  display: block;

}



.h21{

   color: #fff;

    font-weight: 700;

    line-height: 1.5;

}

.p1{

    font-size:15px;

}



.slide-content {

  position: absolute;

  bottom: 0;

  left: 0;

  width: 100%;

  top:45px;

  color: #fff;

  padding: 40px;

  box-sizing: border-box;

  transition: opacity 0.5s ease;

}



.slide-content h2,

.slide-content p {

  margin: 0;

}



.slide-content button {

    background: linear-gradient(39deg, #f7d655e0 42%, #f27ea8c7) !important;

    color: white;

    padding: 10px 20px;

    cursor: pointer;

    margin-top: 20px;

    border: none;

    border-radius: 3px;

}

.prev,

.next {

  position: absolute;

  top: 50%;

  transform: translateY(-50%);

  background-color: #00000000;

  color: white;

  border: none;

  cursor: pointer;

  padding: 10px;

  z-index: 1;

}



.prev {

  left: 0;

}



.next {

  right: 0;

}



/*owl carousel css*/



#carousel .owl-nav {

    display: none;

}







  .owl-nav button {

  position: absolute;

  top: 50%;

  background-color: #000;

  color: #fff;

  margin: 0;

  transition: all 0.3s ease-in-out;

}

.owl-nav button.owl-prev {

  left: 0;

}

.owl-nav button.owl-next {

  right: 0;

}



.owl-dots {

  text-align: center;

  padding-top: 15px;

}

.owl-dots button.owl-dot {

  width: 14px;

  height: 14px;

  border-radius: 50%;

  display: inline-block;

    background: #ffff;

border: 1px solid black;

  margin: 0 3px;

}

.owl-dots button.owl-dot.active {

  background-color: #000;

}

.owl-dots button.owl-dot:focus {

  outline: none;

}

/*end owl carousel css*/





.paralight{

padding: 14px 20px 20px 20px;

    background-color: #f8f8f8;

    border-radius: 0px 0px 5px 5px;

    font-size: 15px;

    color: #353535;

}



.lite-text{

padding: 15px 20px 15px 20px;

    background-color: #fff5cd;

    border-radius: 5px 5px 0px 0px;

}

.lite-text2{



padding: 15px 20px 15px 20px;

    background-color: #c5e6e9;

    border-radius: 5px 5px 0px 0px;

}



.lite-text3{



padding: 15px 20px 15px 20px;

    background-color: #ffe0e8;

    border-radius: 5px 5px 0px 0px;

}





.column-hover {

  transition: transform 0.3s ease, box-shadow 0.3s ease;

  transform-origin: bottom; /* Set the transform origin to the bottom */

}



.column-hover:hover {

 

  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);

}

.imag-fullwidth{

    width: 100%;

            height: 100%;

            object-fit: fill; 

}



.treatments-box{

  margin-top: 20px !important;

}



.h3class{

        font-weight: 700;

    color: #fff;

    line-height: 1.3;

}

.h3classblue{

      font-weight: 700;color: #203761;line-height: 1.3;

}

   

.paraclassblue{

   font-weight: 400;color: #203761;font-size: 15px;

}          

.paraclass{

    font-weight: 400;color: #fff;font-size: 15px;

}

.anchor{

 cursor: pointer;

    border: none;

    color: #232222;

    text-transform: none;

    background: linear-gradient(39deg, #f7d655e0 42%, #f27ea8c7) !important;

    padding: 15px !important;

    border-radius: 6px !important;

    font-size: 16px;



}

.anchor:hover{

    background: #000000 !important;

    border: 2px solid #fc3e82;

    color: #ffffff;

    cursor: pointer;

}

.btnclass{

    cursor: pointer;border: 4px solid #f8c70c; color: #fff;font-size: 14px;padding: 10px 22px;



}

.text-white{

   cursor: pointer;border: 4px solid #f8c70c; color: #fff;font-size: 14px;padding: 10px 22px;



}

.pd-t50{

    padding-top: 50px !important;

}

.pd-t40{

    padding-top: 40px !important;

}

.pd-t4{

    padding-top: 4px !important;

}

.pd-t0{

    padding-top: 0px !important;

}

.pd-t20{

    padding-top: 20px !important;

}

.pd-t60{

    padding-top: 60px !important;

}

.pd-b60{

    padding-bottom: 60px !important;

}

.pd-t30{

    padding-top: 30px !important;

}

.pd-t90{

    padding-top: 90px !important;

}

.pd-b0{

    padding-bottom: 0px !important;

}

.pd-b40{

    padding-bottom: 40px !important;

}

.pd-b50{

    padding-bottom: 50px !important;

}

.pd-t80{

    padding-top: 80px !important;

}

.pd-b0{

    padding-bottom: 0px !important;

}

.pd-b20{

    padding-bottom: 20px !important;

}

.mar-t90{

    margin-top: 90px !important;



}

.mar-t60{

    margin-top: 60px !important;



}

.mar-6per{

    margin-left: 6%  ;

}

.text-justify{

    text-align: justify;

}

.mar-b60{

    margin-bottom: 60px !important;



}

.mar-t35{

    margin-top: 35px;

}

.section1{

    padding-top: 50px;

    padding-bottom: 0px !important;

}

.section2{

  padding-top: 35px !important;

  margin-bottom: 36px !important;

}

.section3{

    visibility: visible;animation-name: fadeIn;padding-top: 25px;

}

.big-img{

   padding-left: 90px; padding-right: 90px; padding-top: 30px;

}

.list{

     margin: 0% !important;

}

.section3a{

    padding: 3% !important;

}

.z1{

   z-index: 1;

}

.section4{

    padding-top: 50px !important;

    background: #ebebeb !important;

    padding-bottom: 50px !important;

}

.spans{

font-size: 35px; color: #000; padding-left: 10px;



}



.brands{

    opacity: 1;display: block;margin-top: 20px;margin-left: 2px;

}

.text-center{

    text-align: center;

}

.text-left{

   text-align: left;

}

.d-flex{

    display: flex !important;

}

.m-t50{

    margin-top: 50px;

}

.m-t70{

    margin-top: 70px !important;

}

.casest{

 font-size: 25px !important;font-weight: 500 !important;color: #fc3c84 !important;

}

.explm{

    cursor: pointer;border: 4px solid #f8c70c;color: #fff;text-transform: none;margin-top: -13% !important;float: right;

                     padding: 8px 8px 5px;color: black;

}

.width80{

    width: 80%;

}

.section5{



         padding-top: 43px;

         padding-bottom: 0px;

         

}

.spans1{

     font-size: 23px !important;

    line-height: 1.2 !important;

                           

}

.read{

    cursor: pointer;

    border: 4px solid #f8c70c;

    color: #fff;

    text-transform: none;

    margin-top: -13% !important;

    padding: 8px 8px 5px;color: black;

}

.m-t5-per{

   margin-top: 5% !important;

}



.br-rad10{

    border-radius: 10px;

}

.c-pointer{

    cursor: pointer

}

.blive-section{

    margin-top: 35px;visibility: visible;animation-name: fadeIn;margin-bottom: 60px;

}

/*.vd-container{

    display: block !important ;

    margin-top: 60px !important ;

}*/

#video-container{

    margin-top: 0px !important;

    width:100%;

    padding-top: 80px;

}



.mar-t12{

    margin-top: 12px !important;

}

.creatorsec{

    background: #f8c70c !important;

     color: #000 !important;

}

.creatorsec1{

    background: #fff !important;

    color: #000 !important;



}

.al-cen{

    align-items: center !important;

}









/* logo section start */

@keyframes slides {

  from {

    transform: translateX(0);

  }

  to {

    transform: translateX(-100%);

  }

}



.logos {

  overflow: hidden;

  padding: 30px 0px;

  white-space: nowrap;

  position: relative;

}



.logos:before, .logos:after {

  position: absolute;

  top: 0;

  content: '';

  width: 150px;

  height: 100%;

  z-index: 2;

}



.logos:before {

  left: 0;

  background: linear-gradient(to left, rgba(255,255,255,0), rgb(255, 255, 255));

}



.logos:after {

  right: 0;

  background: linear-gradient(to right, rgba(255,255,255,0), rgb(255, 255, 255));

}



.logo_items {

  display: inline-block;

  animation: 20s slides infinite linear;

}



.logos:hover .logo_items {

  animation-play-state: paused;

}



.logo_items img{

 height: 100px;

    width: 100px;

}

.image-logos1{

    padding: 5px;

   margin: 0 20px 0 0px;

}



/* logo section end */





         /* Basic Styles for Tabs */

         .tabs-container {

         display: flex;

         justify-content: center;

         align-items: center;

         flex-direction: column;

         }

         .tabs {

         display: flex;

         list-style: none;

         padding: 0;

         }

         .tab {

         cursor: pointer;

         padding: 8px 15px 8px 15px;

         font-size: 14px !important;

         margin-bottom: 10px;

         }

         .tab:hover {

         background-color: #fc3d83;

         color: #fff;

         }

         .tab.active {

         background-color: #fff;

         border-bottom: 1px solid #fff; /* Hide border when active */

         color: #000;

         }

         /* Additional Styles for Tab Images */

         .tab-content1 {

         display: none;

         }

         .tab-content1 img {

         width: 100%;

         height: auto;

         }

    



    @media only screen and (max-width:1600px){

        .optimize-boxes{

            padding: 17.5% !important;

        }

    }

     .hovershow .xs-display-block:hover{

        background-color: #fd4d8c !important;

        color: white;

    transition-duration: 0.3s;

    cursor: pointer;

    }

    .sports{

        padding: 14px 20px; background: #f8c70c !important; color: #000;

    }

    .sports1{

        padding: 14px 27px; background: #fff !important;color: #000;

    }

    .sports2{

        padding: 14px 50px; background: #f8c70c !important; color: #000;

    }

    .news{

        padding: 14px 92px; background: #fff !important; color: #000;

    }



    .moments1{

        margin: 5px;padding: 15px;background: #ffe0eb;border-radius: 16px;

    }

    .moments2{

  

    margin: 5px;

    padding: 15px;

    background: #fbf0c7;

    border-radius: 16px;



    }

    .moments3{

      

    margin: 5px;

    padding: 15px;

    background: #c1d5f9;

    border-radius: 16px;



    }

    .moments4{

        margin: 5px; padding: 15px; background: #e0ecff; border-radius: 16px;

    }

    .moments5{

      margin: 5px; padding: 15px; background: #fbf0c7; border-radius: 16px;

    }

  

    .boxes-blue{

        background: #ffe0eb;padding-bottom: 2rem;margin: 6px;border-radius: 11px;

    }

    .boxes-pink{

        padding-top: 7%;text-align: center;font-size: 18px !important;color: #080808 !important;

    }





    .highlight-box {

    background: #e0ecff;

    padding-bottom: 2rem;

    margin: 6px;

    border-radius: 11px;

    text-align: center;

    font-size: 18px;

    color: #080808;

}



.light-pink-bg {

    background: #ffe0eb;

}



.light-blue-bg {

    background: #e0ecff;

}



.highlight-text {

    padding-top: 8%;

    display: block;

}



@media (max-width: 768px) {

    .col-md-4, .col-md-8, .col-md-6 {

        flex: 0 0 100%;

        max-width: 100%;

    }



    .title-extra-large {

        font-size: 28px;

    }



    .text-large {

        font-size: 20px;

    }



    .highlight-text {

        padding-top: 10%;

        font-size: 16px;

    }

}



@media only screen and (max-width: 767px) {

    .col-rev {

        flex-direction: column-reverse !important;

         display: flex !important;

    }

    .d-flex-col{

    display: flex !important;

}

.d-flex-col1{

    display: contents;

}

#video-container {

        display: none !important;

    }

}



.al-cen1{

    display: flex !important;

    align-items: center !important;

}





.logo_items {

  display: inline-block;

  animation: 20s slides infinite linear;

}



.logos:hover .logo_items {

  animation-play-state: paused;

}



.logo_items img{

 height: 100px;

    width: 100px;

    padding: 10px;

}

.image-logos1{

    padding: 5px;

   margin: 0 20px 0 0px;

}



/* logo section end */





         /* Basic Styles for Tabs */

         .tabs-container {

         display: flex;

         justify-content: center;

         align-items: center;

         flex-direction: column;

         }

         .tabs {

         display: flex;

         list-style: none;

         padding: 0;

         }

         .tab {

         cursor: pointer;

         padding: 8px 15px 8px 15px;

         font-size: 14px !important;

         margin-bottom: 10px;

         }

         .tab:hover {

         background-color: #fc3d83;

         color: #fff;

         }

         .tab.active {

         background-color: #fff;

         border-bottom: 1px solid #fff; /* Hide border when active */

         color: #000;

         }

         /* Additional Styles for Tab Images */

         .tab-content1 {

         display: none;

         }

         .tab-content1 img {

         width: 100%;

         height: auto;

         }

    



    @media only screen and (max-width:1600px){

        .optimize-boxes{

            padding: 17.5% !important;

        }

    }

     .hovershow .xs-display-block:hover{

        background-color: #fd4d8c !important;

        color: white;

    transition-duration: 0.3s;

    cursor: pointer;

    }

    .sports{

        padding: 14px 20px; background: #f8c70c !important; color: #000;

    }

    .sports1{

        padding: 14px 27px; background: #fff !important;color: #000;

    }

    .sports2{

        padding: 14px 50px; background: #f8c70c !important; color: #000;

    }

    .news{

        padding: 14px 92px; background: #fff !important; color: #000;

    }



    .moments1{

        margin: 5px;padding: 15px;background: #ffe0eb;border-radius: 16px;

    }

    .moments2{

  

    margin: 5px;

    padding: 15px;

    background: #fbf0c7;

    border-radius: 16px;



    }

    .moments3{

      

    margin: 5px;

    padding: 15px;

    background: #c1d5f9;

    border-radius: 16px;



    }

    .moments4{

        margin: 5px; padding: 15px; background: #e0ecff; border-radius: 16px;

    }

    .moments5{

      margin: 5px; padding: 15px; background: #fbf0c7; border-radius: 16px;

    }

  

    .boxes-blue{

        background: #ffe0eb;padding-bottom: 2rem;margin: 6px;border-radius: 11px;

    }

    .boxes-pink{

        padding-top: 7%;text-align: center;font-size: 18px !important;color: #080808 !important;

    }





    .highlight-box {

    background: #e0ecff;

    padding-bottom: 2rem;

    margin: 6px;

    border-radius: 11px;

    text-align: center;

    font-size: 18px;

    color: #080808;

}



.light-pink-bg {

    background: #ffe0eb;

}



.light-blue-bg {

    background: #e0ecff;

}



.highlight-text {

    padding-top: 8%;

    display: block;

}



@media (max-width: 768px) {

    .col-md-4, .col-md-8, .col-md-6 {

        flex: 0 0 100%;

        max-width: 100%;

    }



    .title-extra-large {

        font-size: 28px;

    }



    .text-large {

        font-size: 20px;

    }



    .highlight-text {

        padding-top: 10%;

        font-size: 16px;

    }

}







.al-cen1{

    display: flex !important;

    align-items: center !important;

}

.custom-list{

    list-style-type: circle !important;

    padding-left: 20px !important;

}







@media (min-width: 992px) {

    .columns {

       

        display: flex;

        align-items: center;

    }

}

@media only screen and (max-width: 767px) {

   

.columns1 {

display: flex !important;

    flex-direction: column-reverse !important;





    }

}



























.header-logo{

    width: 90%;



}



.container1{

    max-width: 1245px;

    margin:auto;

}

.row1{

    display: flex;

    flex-wrap: wrap;

}

.v-center{

    display: flex;



    align-items: center;

    padding: 10px;

}

ul{

    list-style: none;

    margin:0;

    padding:0;

}

a{

    text-decoration: none;

}

/* header */

.header{

   display: block;

    width: 100%;

    position: fixed;

    z-index: 99;

    padding: 0px;

    background: #ffffffc7;

}

.header .item-left{

    flex:0 0 17%;

}

.header .logo a{

    font-size: 30px;

    color:#000000;

    font-weight: 700;

    text-decoration: none;

}

.header .item-center{

    flex:0 0 66%;

}

.header .item-right{

    flex:0 0 17%;

    display: flex;

    justify-content: flex-end;

}

.header .item-right a{ 

     text-decoration: none;

/*     font-size: 16px;*/

     color:#555555;

     display: inline-block;

     margin-left: 10px;

     transition: color 0.3s ease;

}

.header .menu > ul > li{

    display: inline-block;

/*    line-height: 50px;*/

    margin-left: 25px;

}

.header .menu > ul > li > a{

    font-size: 15px;

    font-weight: 500;

    color:#000000;

    position: relative;

    text-transform: capitalize;

    transition: color 0.3s ease;

    padding: 44px 0px;

}

.header .menu > ul > li .sub-menu{

    position: absolute;

    z-index: 500;

    background-color:#ffffff;

    box-shadow: -2px 2px 70px -25px rgba(0,0,0,0.1); 

    padding: 20px 30px;

    transition: all 0.5s ease;

    margin-top:25px;

    opacity:0;

    visibility: hidden;

}

@media(min-width: 992px){

.header .menu > ul > li.menu-item-has-children:hover .sub-menu{

    margin-top: 25px;

    visibility: visible;

    opacity: 1;

}



}

.header .menu > ul > li .sub-menu > ul > li{

    line-height: 1;

}

.header .menu > ul > li .sub-menu > ul > li > a{

    display: inline-block;

    padding: 10px 0;

    font-size: 15px;

    color: #555555;

    transition: color 0.3s ease;

    text-decoration: none;

    text-transform: capitalize;

}

.header .menu > ul > li .single-column-menu{

    min-width: 280px;

    max-width: 350px;

}

.header .menu > ul > li .sub-menu.mega-menu > .list-item > ul > li{

   line-height: 1;

   display: block; 

}

.header .menu > ul > li .sub-menu.mega-menu > .list-item > ul > li > a {

    padding:10px 0;

    display: inline-block;

    font-size: 13px;

    color:#555555;

    transition: color 0.3s ease;

}

.header .menu > ul > li .sub-menu.mega-menu{ 

    left: 50%;

    transform: translateX(-50%);    

}



.header .menu > ul > li .sub-menu.mega-menu-column-4{

  max-width: 314vh;

  width: 100%;  

  display: flex;

  flex-wrap: wrap;

  padding:0px 0px;

}

.header .menu > ul > li .sub-menu.mega-menu-column-4 > .list-item{

  flex:0 0 25%;

  padding:0 15px;

}

.header .menu > ul > li .sub-menu.mega-menu-column-4 > .list-item .title{

    font-size: 16px;

    color:#ea4636;

    font-weight: 500;

    line-height: 1;

    padding:10px 0;

}

.header .menu > ul > li .sub-menu.mega-menu-column-4 > .list-item.text-center .title{

    text-align: center;

}

.header .menu > ul > li .sub-menu.mega-menu-column-4 > .list-item img{

    max-width: 100%;

    width: 100%;

    vertical-align: middle;

    margin-top: 0px;

    height: 300px;

  object-fit: cover;

}

.header .menu > ul > li .sub-menu.mega-menu > .list-item > ul > li > a:hover,

.header .menu > ul > li .sub-menu > ul > li > a:hover,

.header .item-right a:hover,

.header .menu > ul > li:hover > a{

    color:#fc3e82;

}

/* banner section */

.banner-section{

  background-image: url('../img/banner.jpg');

  background-size: cover;

  background-position: center;

  height: 700px;

  width: 100%;

  display: block;



}

.mobile-menu-head,

.mobile-menu-trigger{

    display: none;

}



/*responsive*/

@media(max-width: 991px){



    .header .item-center{

        order:3;

        flex:0 0 100%;

    }

    .header .item-left,

    .header .item-right{

        flex:0 0 auto;

    }

    .v-center{

        display: flex;



        justify-content: space-between;

    }

    .header .mobile-menu-trigger{

        display: flex;

        height: 30px;

        width: 30px;

/*        margin-left: 15px;*/

        cursor: pointer;

        align-items: center;

        justify-content: center;

    }

    .header .mobile-menu-trigger span{

        display: block;

        height: 2px;

        background-color: #333333;

        width: 24px;

        position: relative;

    }

    .header .mobile-menu-trigger span:before,

    .header .mobile-menu-trigger span:after{

        content: '';

        position: absolute;

        left:0;

        width: 100%;

        height: 100%;

        background-color: #333333;

    }

    .header .mobile-menu-trigger span:before{

        top:-6px;

    }

    .header .mobile-menu-trigger span:after{

        top:6px;

    }

    .header .item-right{

        align-items: center;

    }



    .header .menu{

        position: fixed;

        width: 320px;

        background-color:#ffffff;

        left:0;

        top:0;

        height: 100%;

        overflow: hidden;

        transform: translate(-100%);

        transition: all 0.5s ease;

        z-index: 1099;

    }

    .header .menu.active{

       transform: translate(0%);    

    }

    .header .menu > ul > li{

        line-height: 1;

        margin:0;

        display: block;

    }

    .header .menu > ul > li > a{

        line-height: 50px;

        height: 50px;

        padding:0 50px 0 15px;

        display: block;

        border-bottom: 1px solid rgba(0,0,0,0.1);

    }

    .header .menu > ul > li > a i{

        position: absolute;

        height: 50px;

        width: 50px;

        top:0;

        right: 0;

        text-align: center;

        line-height: 50px;

        transform: rotate(-90deg);

    }

    .header .menu .mobile-menu-head{

        display: flex;

        height: 50px;

        border-bottom: 1px solid rgba(0,0,0,0.1);

        justify-content: space-between;

        align-items: center;

        position: relative;

        z-index: 501;

        position: sticky;

        background-color: #ffffff;

        top:0;

    }

    .header .menu .mobile-menu-head .go-back{

        height: 50px;

        width: 50px;

        border-right: 1px solid rgba(0,0,0,0.1);

        cursor: pointer;

        line-height: 50px;

        text-align: center;

        color:#000000;

        font-size: 16px;

        display: none;

    }

    .header .menu .mobile-menu-head.active .go-back{

        display: block;

    }

    .header .menu .mobile-menu-head .current-menu-title{

        font-size: 15px;

        font-weight: 500;

        color:#000000;

    }

    .header .menu .mobile-menu-head .mobile-menu-close{

        height: 50px;

        width: 50px;

        border-left: 1px solid rgba(0,0,0,0.1);

        cursor: pointer;

        line-height: 50px;

        text-align: center;

        color:#000000;  

        font-size: 25px;

    }

    .header .menu .menu-main{

        height: 100%;

        overflow-x: hidden;

        overflow-y: auto;



    }

    .header .menu > ul > li .sub-menu.mega-menu,

    .header .menu > ul > li .sub-menu{

        visibility: visible;

        opacity: 1;

        position: absolute;

        box-shadow: none;

        margin:0;

        padding:15px;

        top:0;

        left:0;

        width: 100%;

        height: 100%;

        padding-top: 65px;

        max-width: none;

        min-width: auto;

        display: none;

        transform: translateX(0%);

        overflow-y: auto;

    }

.header .menu > ul > li .sub-menu.active{

    display: block;

}

@keyframes slideLeft{

    0%{

        opacity:0;

        transform: translateX(100%);

    }

    100%{

        opacity:1;

        transform: translateX(0%);  

    }

}

@keyframes slideRight{

    0%{

        opacity:1;

        transform: translateX(0%);

    }

    100%{

        opacity:0;

        transform: translateX(100%);    

    }

}

    .header .menu > ul > li .sub-menu.mega-menu-column-4 > .list-item img{

        margin-top:0;

    }

    .header .menu > ul > li .sub-menu.mega-menu-column-4 > .list-item.text-center .title{

        margin-bottom: 20px;

    }

    .header .menu > ul > li .sub-menu.mega-menu-column-4 > .list-item.text-center:last-child .title{

        margin-bottom:0px;

    }

    .header .menu > ul > li .sub-menu.mega-menu-column-4 > .list-item{

        flex: 0 0 100%;

        padding: 0px;

    }

    .header .menu > ul > li .sub-menu > ul > li > a,

    .header .menu > ul > li .sub-menu.mega-menu > .list-item > ul > li > a{

        display: block;

    }

    .header .menu > ul > li .sub-menu.mega-menu > .list-item > ul {

        margin-bottom: 15px;

    }

    .menu-overlay{

        position: fixed;

        background-color: rgba(0,0,0,0.5);

        left:0;

        top:0;

        width: 100%;

        height: 100%;

        z-index: 1098;

        visibility: hidden;

        opacity:0;

        transition: all 0.5s ease;

    }

    .menu-overlay.active{

      visibility: visible;

      opacity:1;    

    }

}



@media only screen and (max-width: 767px) {

  .header-logo {

    width: 50%;

    margin-left: 10px;

  }

}



@media only screen and (min-width: 768px) {

    .v-center {

        display: flex;

        justify-content: space-between;

        flex-wrap: wrap;

      padding: 10px;

    }



}

/* Responsive font size adjustment */

@media only screen and (min-width: 767px) and (max-width: 1000px) {

    .h21 {

        font-size: 18px;

    }

}

.header-col{

    display: grid;

    grid-template-columns: 1fr 7fr; /* This creates two equal columns */

    gap: 10px;

     padding: 22px 15px 10px 12px;

     cursor: pointer;

}

.header-col:hover {

    box-shadow: 4px 4px 9px 6px #dbdbdb87;

    background: rgba(234, 230, 226, 0.22); /* Using rgba for opacity */

    /* padding: 10px; */

    border-radius: 7px;

    cursor: pointer;

    transform: scale(1.03); /* Corrected scale to use transform */

    transition: transform 0.5s ease, background 0.5s ease; /* Added background transition for smooth effect */

}



/* Added a base transition for the default state */

.header-col {

    transition: transform 0.5s ease, background 0.5s ease !important; /* Ensure base state has transition */

}





.header-h4-style{

   text-transform: none;color: #f6c90f !important;

}

.header-h4-style {

   color: #fd4084 !important; font-size: 18px; font-weight: bold;

}

.header-p-style{

    line-height: 18px; display: flex;

    letter-spacing: 1px;

    font-size: 12px;



}

.header-p-ch{

  background: #f2f2f2c7;

                              padding: 10px;

                              border-radius: 0 0px 10px 10px;

                              margin-bottom: 0px;

                              font-weight: 600;

}

.header-sp-ch{

    font-size: 9px;

                              font-weight: 200;

                              display: flex;

                              align-items: center;cursor: pointer;

}

#header-button{

    padding: 0px 45px 0px 45px;

    background: #000;

    color: #fff;

    border-radius: 42px;

    outline: none;

    border: none;

    font-size: 17px;

}

.header-col1 {

    display: grid;

    grid-template-columns: 2fr 2fr;

    gap: 7px;

   padding: 9px 0px 2px 0px;

    cursor: pointer;

}

.second-h4{

    display: flex;

    align-items: center;

}

@media only screen and (max-width: 767px) {

 .hiding{

    display: none;

 }

}



.header-h4-style1 {

color: #3e4044 !important;

    font-size: 18px;

    font-weight: bold;

    font-weight: 500;

    font-size: 16px;

    line-height: 1.3;

}

.hovering:hover {

    transform: scale(1.03); /* Use transform instead of scale */

    transition-duration: 0.5s; /* Duration should be defined with transition */

    transition-timing-function: ease; /* You can keep it as is or combine it with the duration */

}



@media only screen and (max-width: 1334px) and (min-width: 992px) {

   .header .menu > ul > li .sub-menu.mega-menu-column-4 > .list-item img {

        object-fit: fill;

    }

}



.styleheaderli{

  padding: 12px 11px;

    border-bottom: 0.7px solid #ffffff;

    font-weight: 600;

}

.styleheaderli:hover{

 padding: 12px 11px;

    background: #f0f8ff85;

    color: black;

    cursor: pointer;

}

.highlights1 {

   

    padding: 10px;

}

.highlightheading{

    color:#203761;

    font-size: 16px;

    font-weight: 500;

    padding: 4px;

  

}



.highlightheading:hover {

    cursor: pointer;

    color: #203761;

    transform: scale(1.05);

    background: rgba(32, 55, 97, 0.05);

    border-radius: 7px;

    padding: 2px;

}



.highlightheading:hover .fa-arrow-right {

    display: inline-block;

    margin-left: 20px;

    transition: margin-left 2s ease;

}



.highlightheading {

   display: flex;

    color: #203761;

    transition: all 0.3s ease;

    align-items: center;



}



.highlightheading:hover {

    scale: 1.05;

    background: #2037610d;

    border-radius: 7px;

    padding: 2px;

}

.highs1:hover {

    scale: 1.01;

    background: transparent;

    

}



.highlightheading .fa-arrow-right {

    display: none;

    opacity: 0;

    position: relative;

    left: -20px;

    transition: all 0.3s ease;

}



.highlightheading:hover .fa-arrow-right {

    display: inline-block;

    opacity: 1;

    left: 0; 

    transition: all 0.3s ease, margin-left 2s ease;

    margin-left: 20px;

    animation: fadeInLeft 2s ease;

}



@keyframes fadeInLeft {

    from {

        opacity: 0;

        transform: translateX(-20px);

    }

    to {

        opacity: 1;

        transform: translateX(0);

    }

}





              #list .list-item2, #list .list-item3, #list .list-item4 {

    display: none;

}



#list .list-item1, #list .list-item5 {

    display: block; /* Show these list items by default */

}



#list .list-item6, #list .list-item7, #list .list-item8 {

    display: none; /* Hide these list items by default */

}



@media only screen and (max-width: 767px) {

 .hiding{

    display: none;

 }

 .homepageboxes{

     padding:1% ;

}

.homepagebox{

    letter-spacing: 2px;

     font-size:20px ;

      line-height:20px; 

      display: inline-block ;

     

}



.title-extra-large {

        font-size: 20px !important; 

        line-height: 25px !important; 

    }

      .v-center {

            flex-wrap: nowrap;

    flex-direction: row;

    padding: 10px;

  

    }

}

@media only screen and (max-width: 1361px){

    .highlightheading{

        margin: 0px;

                margin: 0px;

        display: flex;

        align-items: center;

    }

    .header .menu > ul > li .sub-menu.mega-menu > .list-item > ul{

        margin-bottom: 0px ;

    }

    .styleheaderli {

    

    margin-left: 20px;

}

.boxespad{

    width: 100%!important ;

    padding: 25px !important;

     height: 28rem !important;

}

.hide-indes{

    display: block;

}

}

@media only screen and (max-width: 1089px){

.highlightheading{

        padding: 0px;

    }



}

.boxespad{

    background: #fbf0c700;

    margin-top: 10px;

     height: auto;

     width: 257px; 

     height: 53rem;

}

@media only screen and (min-width: 768px) and (max-width: 991px) {

 .hiding{

    display: none !important;

 }

 .hide-indes{

    display: block;

 }

}



.list-item .hide-indes{

    display: none !important;

}

.homepagebox{

    letter-spacing: 2px;

     font-size:11px ;

      line-height:20px; 

      display: inline-block ;

     

}

.homepageboxes{

     padding:15.5% ;

}





.colmargn{

    margin-top: 61px;

    margin-bottom: 60px;

}

@media only screen and (min-width: 769px) {

    .hide-indes {

        display: none !important;

    }

    .styebannerimg{

        margin-top: 10px;

    }

}

.industriesBtn{

    background: white;

    padding: 12px;

    border: 0.01px solid #00000047;

    font-size: 12px;

    color: #fb3e81;

}

.headersindus{

  margin-top: 20px;

    line-height: 18px;

    letter-spacing: 1px;

    font-size: 11px;



}







        

   @font-face {

    font-family: 'Poppins';

    src: url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;700') format('woff2');

    font-display: swap;

}

 



 @media (min-width: 768px) and (max-width: 1024px) {

   .h3class{

    font-size: 24px;

   }

}

@media (max-width: 250px) {

    .header .item-right {

        flex: 0 0 148px;

    }

}

.menu.active {

    display: block; /* Show menu when active */

    opacity: 1;

}



/* Media Query for Tablets */

@media (min-width: 991px) and (max-width: 1100px) {

   .blog-post-style2 .post-details {

    font-size: 11px !important;

    padding: 1px 1px !important;

     line-height: 16px !important;

   }

  .boxSettle{

    width: 34rem;

  }

}











.header-col:hover {

    box-shadow: 4px 4px 9px 6px #dbdbdb87;

    background: rgba(234, 230, 226, 0.22); /* Using rgba for opacity */

    /* padding: 10px; */

    border-radius: 7px;

    cursor: pointer;

    transform: scale(1.01); /* Corrected scale to use transform */

    transition: transform 0.5s ease, background 0.5s ease; /* Added background transition for smooth effect */

}



/* Added a base transition for the default state */

.header-col {

    transition: transform 0.5s ease, background 0.5s ease !important; /* Ensure base state has transition */

}





















.box-our-working {

/*    background: url(https://multitvsolution.com/optimized-images/bg-working.png) no-repeat top center;*/

    background-size: 100% auto;

    padding: 20px 0px;

}

.card-working .card-number span {

   display: inline-block;

    width: 50px;

    height: 50px;

    border-radius: 50%;

    background-color: #203761;

    font-size: 24px;

    font-weight: bold;

    color: #ffffff;

    text-align: center;

    line-height: 50px;

}

.card-working .card-number {

    margin-bottom: 14px;

}

.card-working {

    border: 1px solid #191919;

    border-radius: 16px;

    padding: 35px;

    min-height: 327px;

}

.btn.btn-learmore svg {

    margin-right: 10px;

    fill: #191919;

}

.btn.btn-learmore {

    padding: 10px 0px;

    font-size: 12px;

    line-height: 20px;

    font-weight: 500;

  

    color: #000;

    display: flex;

    align-items: center;

}

.mb-30 {

    margin-bottom: 30px !important;

}

.pt-60 {

    padding-top: 60px !important;

}

.card-working:hover {

  background: linear-gradient(14deg, #f9c70da3 65%, #fc3e8296);

    border-color: #20376121;

    color: #3a3631;

}

.hover-up:hover {

    transform: translateY(-3px);

    transition: all 0.25s cubic-bezier(0.02, 0.01, 0.47, 1);

}

.card-working {

    border: 1px solid #191919;

    border-radius: 16px;

    padding: 35px;

    min-height: 327px;

}

.section-box {

    display: block;

    width: 100%;

    overflow: hidden;

}

.box-image-analytics .img-sub-1 {

    top: 140px;

    left: -60px;

}

.img-sub-1 {

    position: absolute;

    bottom: -55px;

    left: -70px;

    z-index: 12;

}

.shape-1 {

    animation: hero-thumb-animation 2s linear infinite alternate;

}

.box-image-analytics .img-sub-2 {

    bottom: 62px;

    top: auto;

    right: -43px;

}

.img-sub-2 {

    right: -60px;

}

.img-sub-2 {

    right: -60px;

}

.img-sub-2 {

    position: absolute;

    top: 70px;

    right: -120px;

    z-index: 12;

}

.shape-3 {

    animation: hero-thumb-sm-2-animation 4s linear infinite alternate;

}

.btn.btn-tag-black {

    border-radius: 100px;

    padding: 6px 21px;

    border: 1px solid #C5FF41;

    background: #191919;

    font-size: 16px;

    line-height: 24px;

    font-weight: 500;

    display: inline-block !important;

    color: #C5FF41;

}

.card-analytics {

    position: relative;

}

.card-analytics .card-analytic .card-analytic-inner {

    display: flex;

    align-items: center;

    border-radius: 14px;

    background-color: #ffffff;

    padding: 23px 32px;

}

.card-analytics .card-analytic .card-analytic-inner .card-image {

    width: 84px;

    margin-right: 30px;

}

.card-analytics .card-analytic .card-analytic-inner .card-info {

    position: relative;

}

.card-analytics .card-analytic {

    background: #ECEEF2;

    padding: 2px;

    border-radius: 16px;

    margin-bottom: 22px;

}

.card-analytics .card-analytic:hover {

    background: linear-gradient(236deg, #22D1EE 0%, #C5FF41 100%);

}

.card-analytics .card-analytic {

    background: #ECEEF2;

    padding: 2px;

    border-radius: 16px;

    margin-bottom: 22px;

}



.border-gradient-case::after {

  content: "";

  position: absolute;

  top: -5px;

  bottom: -5px;

  left: -5px;

  right: -5px;

  background: linear-gradient(to left, #22D1EE, #C5FF41) !important;

  z-index: -1;

  border-radius: 32px;

}



.box-case-gradient {

  overflow: hidden;

  width: 100%;

  height: 555px;

  padding: 5px;

  position: relative;

  border-radius: 30px;

}



.box-case-gradient-inner {

  background: linear-gradient(#22D1EE, #C5FF41);

  position: relative;

  animation: grad-rotation 6s infinite linear;

  width: 1000px;

  height: 1000px;

  position: absolute;

}



.box-case-gradient-bottom {

  background-color: #000;

  width: 100%;

  height: 545px;

  line-height: 545px;

  position: relative;

  z-index: 12;

  border-radius: 27px;

  padding: 0px 37px;

  overflow: hidden;

  text-align: center;

}

.box-case-gradient-bottom img {

  display: inline-block;

  vertical-align: middle;

}



.box-case-study, .box-analytics {

  margin-top:0px;

}



.box-image-analytics {

  position: relative;

  display: inline-block;

}

.box-image-analytics .img-sub-1 {

  top: 140px;

  left: -60px;

}

.box-image-analytics .img-sub-2 {

  bottom: 62px;

  top: auto;

  right: -43px;

}



.card-analytics {

  position: relative;

}

.card-analytics .card-analytic {

  background: #ECEEF2;

  padding: 2px;

  border-radius: 16px;

  margin-bottom: 22px;

}

.card-analytics .card-analytic:hover {

 background: linear-gradient(14deg, #f9c70da3 65%, #fc3e8296);

}

.card-analytics .card-analytic .card-analytic-inner {

  display: flex;

  align-items: center;

  border-radius: 14px;

  background-color: #ffffff;

 padding: 7px 32px;

}

.card-analytics .card-analytic .card-analytic-inner .card-image {

  width: 84px;

  margin-right: 30px;

}

.card-analytics .card-analytic .card-analytic-inner .card-info {

  position: relative;

}

.card-analytics .card-analytic .card-analytic-inner .card-info h5 {

  margin-bottom: 5px;

}





.block-our-feature-2 {

  background: linear-gradient(236deg, #22D1EE 0%, #C5FF41 100%);

  padding: 5px;

  border-radius: 32px;

}

.block-our-feature-2 .block-our-feature-2-inner {

  background-color: #ffffff;

  border-radius: 28px;

  padding: 84px 84px 54px 84px;

  background-image: url(../imgs/page/homepage5/bg-features.png);

  background-repeat: no-repeat;

  background-position: top center;

  background-size: cover;

}



.box-image-border {

  border: 10px solid #ffffff;

  border-radius: 32px;

  box-shadow: 0px 8px 18px -4px rgba(12, 49, 49, 0.1);

  overflow: hidden;

}

.box-image-border img {

  display: block;

}



.box-info-num {

  display: flex;

  align-items: flex-end;

  justify-content: center;

}

.box-info-num span {

  display: inline-block;

  margin-right: 30px;

}



.card-enjoy {

  border-radius: 16px;

  background-color: #2B2C2D;

  padding: 32px;

  margin-bottom: 25px;
 height: 40rem;

}

.box-image-analytics {

    position: relative;

    display: inline-block;

}

.shape-1 {

  animation: hero-thumb-animation 2s linear infinite alternate !important;

}



.shape-2 {

  animation: hero-thumb-sm-animation 4s linear infinite alternate  !important;

}



.shape-3 {

  animation: hero-thumb-sm-2-animation 4s linear infinite alternate  !important;

}



.box-image-analytics {

  position: relative;

  display: inline-block;

}



.box-image-analytics img {

  position: relative;

  z-index: 1;

}



.img-sub-1 {

  position: absolute;

  bottom: 10px; /* Adjust as needed */

  left: -60px;

  z-index: 2;

}



.img-sub-2 {

  position: absolute;

  top: -50px; /* Adjust as needed to move up */

  right: -70px;

  z-index: 3;

}



.shape-1 {

  animation: hero-thumb-animation 2s linear infinite alternate;

}



.shape-3 {

  animation: hero-thumb-sm-2-animation 4s linear infinite alternate;

}

.box-image-analytics {

  position: relative;

  display: inline-block;

}





.img-sub-1 {

  position: absolute;

  bottom: 10px; /* Adjust as needed */

  left: -60px;

  z-index: 2;

  animation: moveUpDown1 4s ease-in-out infinite;

}



.img-sub-2 {

  position: absolute;

  top: -50px; /* Adjust as needed to move up */

  right: -70px;

  z-index: 3;

  animation: moveUpDown2 6s ease-in-out infinite;

}



/* Define keyframes for movement */

@keyframes moveUpDown1 {

  0% {

    transform: translateY(0px);

  }

  50% {

    transform: translateY(-15px); /* Move up by 15px */

  }

  100% {

    transform: translateY(0px);

  }

}



@keyframes moveUpDown2 {

  0% {

    transform: translateY(0px);

  }

  50% {

    transform: translateY(15px); /* Move down by 15px */

  }

  100% {

    transform: translateY(0px);

  }

}



/* Shape animations */

.shape-1 {

  animation: hero-thumb-animation 2s linear infinite alternate;

}



.shape-3 {

  animation: hero-thumb-sm-2-animation 4s linear infinite alternate;

}

















.block-our-feature-2 {

 background: linear-gradient(39deg, #f9c70d75 42%, #fc3e824a) !important;

    padding: 5px;

    border-radius: 32px;

}

.btn.btn-bg-linear-2 {

    border-radius: 32px;

    padding: 4px 20px 4px 6px;

    color: #191919;

    border: 1px solid #ffffff;

  background: linear-gradient(39deg, #f9c70d75 42%, #fc3e824a) !important;

}

.mb-25 {

    margin-bottom: 25px !important;

}

.btn {

    

    border-radius: 0px;

    padding: 14px 23px;

    font-size: 18px;

    line-height: 1;

    transition: 0.2s;

}

.box-image-border {

    border: 10px solid #ffffff;

    border-radius: 32px;

    box-shadow: 0px 8px 18px -4px rgba(12, 49, 49, 0.1);

    overflow: hidden;

}

.btn.btn-bg-linear-2 svg {

    fill: #191919;

    color: #191919;

}

.neutral-700 {

   color: #5A5B5B !important;

    font-size: 16px;

    line-height: 28px;



}

.neutral-1000 {

font-size: 35px;

    line-height: 40px;



}



.btn.btn-bg-linear-2 span {

    display: inline-block;

    width: 42px;

    height: 42px;

    border-radius: 50%;

    margin-right: 10px;

    background-color: #ffffff;

    line-height: 42px;

    text-align: center;

}

.margin-btm{

    margin-bottom: 20px;

}

.box-our-features-2{

  margin-top: 0px !important;

    padding-top: 0px;

}

.btn.btn-bg-linear-2 svg {

    fill: #191919;

    color: #191919;

    position: relative;

    top: 9px;

}

.block-our-feature-2 .block-our-feature-2-inner {

    background-color: #ffffff;

    border-radius: 28px;

    padding: 84px 84px 54px 84px;

    background-image: url(https://multitvsolution.com/optimized-images/bg-features.png);

    background-repeat: no-repeat;

    background-position: top center;

    background-size: cover;

}















.aximo-content-thumb{

    position: relative;

}

.custom-slider-container {

  width: 100%; /* Full width of the screen */

  overflow: hidden; /* Hide overflowing images */

  position: relative;

}



.custom-slider {

  display: flex;

  transition: transform 0.3s ease; /* Smooth scrolling */

}



.slider-item {

  border: 5px solid #000;

  margin: 5px; /* Reduced margin for mobile */

  border-radius: 9px;

  flex: 0 0 100%; /* Show one item at a time on mobile */

  position: relative;

  box-sizing: border-box;

}

.slider-item p{

    color: #fff;

}

.heading-4 {

   font-size: 24px;

    line-height: 40px;

    color: #ffffff;

}

.image-wrapper {

  position: relative;

  width: 100%;

  height: 420px; /* Fixed height for uniformity */

  overflow: hidden; /* Hide any overflow from zoomed images */

  border: 4px solid black;

    border-radius: 14px;

    margin: 12px 0px;

}



.image-wrapper img {

  width: 100%;

  height: 100%; /* Set to 100% height for the container */

  transition: transform 0.5s ease; /* Smooth zoom effect */

  object-fit: cover; /* Maintain aspect ratio and cover the container */

  border-radius: 5px; /* Rounded corners */

}






.image-wrapper:hover img {

  transform: scale(1.1); /* Zoom effect within the container */

}



/* Responsive Styles */

@media (min-width: 769px) {

  .slider-item {

    flex: 0 0 50%; /* Two images at a time for medium and larger screens */

  }

}



@media (min-width: 1201px) {

  .slider-item {

   flex: 0 0 32.6%; /* Two images at a time for larger screens */

  }

}



.custom-slider-container {

  overflow: hidden; /* Hide overflowing images */

  width: 100%; /* Full width for the container */

}



.custom-slider {

  display: flex; /* Flex display for horizontal scrolling */

  transition: transform 0.3s ease; /* Smooth transition for scrolling */

}



.custom-slider img {

  flex: 0 0 100%; /* Each image takes full width of the container */

  max-width: 100%; /* Ensure the image scales properly */

}

.aximo-content-thumb {

    position: relative;

}

.aximo-thumb-shape1 {

    

    position: absolute;

    bottom: 0;

    left: -26%;

}

.custom-slider-container {

  width: 100%;

  overflow: hidden;

  position: relative;

}



.custom-slider {

  display: flex;

  transition: transform 0.5s ease;

  width: fit-content;

}



.custom-slider img {

  width: 100%;

  object-fit: cover; /* Ensures images are not cut off */

}



.custom-slider-item {

  min-width: calc(100% / 3); /* Show 3 images at once on desktop */

  transition: transform 0.3s ease-in-out;

}



@media screen and (max-width: 768px) {

  .custom-slider-item {

    min-width: 100%; /* Show 1 image at a time on mobile */

  }

}

.box-pricing {

   padding: 10px 0px 80px 0px;

    background-position: bottom center;

 border: 2px solid pink;

    background: linear-gradient(139deg, #a307af17, #0771af0a, transparent);

}























.togglefaqs {

    width: 80%;

    margin: auto;

}



.togglefaqs-item {

   border: 2px solid #000000;

    border-radius: 16px;

    margin: 10px 0;

    box-shadow: 4px 2px 2px 1px #000000;

    padding: 15px;

}



.togglefaqs-title {

    padding: 10px;

    cursor: pointer;

    margin: 0;

    display: flex;

    align-items: center;

    font-size: 24px !important;

    line-height: 24px !important;

    border-radius: 20px 20px 0px 0px;

    transition: background 0.3s ease;

}

.m-left {

    margin-left: 70px;

    color: #000000;

    font-size: 18px;

}



.togglefaqs-item.active {

    background: #c0f93f; /* Background when open */

}



.rotate-icon {

    margin-right: 10px; 

    transition: transform 0.3s ease, opacity 0.3s ease;

    opacity: 0; /* Hide the icon initially */

}

 

.rotate-icon.rotate {

    transform: rotate(180deg);

    opacity: 1; /* Show the icon when rotated */

}



.togglefaqs-content {

    display: none; /* Initially hide the content */

    padding: 10px;

  font-size: 16px;

    border-radius: 0px 0px 20px 20px;

    transition: background 0.3s ease; /* Smooth background transition */

}



.togglefaqs-item {

    background: white; /* Default background when closed */

    transition: background 0.3s ease; /* Smooth transition for background color */

}



.togglefaqs-item.active {

 background: linear-gradient(39deg, #f9c70d87 42%, #fc3e8236) !important;

}

.item-logo-2{

    border:none;

}





@media (max-width: 1399.98px) {

    .display-2 {

        font-size: 52px;

        line-height: 65px;

    }

}

.text-md {

    font-size: 16px;

    line-height: 24px;

}

.h2-font{

    padding-top: 20px;

    margin-bottom: 20px;

}



.box-our-features-2{

padding: 115px 0px;



}

















.section-box {

    display: block;

    width: 100%;

    overflow: hidden;

}

.card-preparing {

    margin-bottom: 30px;

}

.card-preparing .card-image {

    background: linear-gradient(180deg, #ECEEF2 0%, rgba(236, 238, 242, 0) 100%);

    border-radius: 32px;

/*    margin-bottom: 39px;*/

    overflow: hidden;

    padding: 35px;

    text-align: center;

    position: relative;

}

.card-preparing .card-info {

  text-align: center;

    box-shadow: 0px -125px 58px #ffffff;

    position: relative;

}

@keyframes fadeInUp{0%{opacity:0;transform:translate3d(0,100px,0)}to{opacity:1;transform:none}}.fadeInUp{animation-name:fadeInUp}

.fadeInUp {

    animation-name: fadeInUp !important;

}

.mb-20{

    margin-bottom: 20px;

}

.ctabtns{

    background: #ffb2ce9c;

    padding: 10px;

    border-radius: 5px;

    border: 2px solid #fc4b88;

}

.mt-70{

    margin-top: 70px;

}

.text-22-bold{

    font-size: 24px !important;

}

.pt-50{

    padding-top: 50px;

}









.box-about-section-1 .container-fluid {

    padding: 0px;

}

.aximo-content-thumb {

    position: relative;

}

.aximo-thumb-shape1 {

    position: absolute;

    bottom: 0;

    left: -26%;

}

.btn.btn-tag-black {

   border-radius: 100px;

    padding: 6px 21px;

    border: 1px solid #203761;

    background: #203761;

    font-size: 16px;

    line-height: 24px;

    font-weight: 500;

    display: inline-block !important;

    color: #ffffff;

    margin-bottom: 11px;

}

.box-buttons-feature-4 {

    display: flex;

    align-items: center;

    margin-top: 7px;

}

.btn.btn-brand-4-medium {

  padding: 10px 13px;

    background: linear-gradient(39deg, #f9c70d87 42%, #fc3e8236);

    border-radius: 8px;

    color: #191919;

    font-size: 12px;

    line-height: 22px;

    font-weight: 600;

    display: flex;

    align-items: center;

    border: 1px solid black;

}

.mr-20 {

    margin-right: 20px !important;

}



.btn.btn-brand-4-medium svg {

    fill: #191919;

    margin-left: 5px;

}







 .btn-brand-4-medium:hover {

    color:#2d2b2b;

    background: #fc3e82bd !important;

}





    .btn.btn-tag-black:hover {

    color: #000000;

    text-decoration: none;

    background: #fc3e82bd !important;

}







.btn.colorarrow svg {

    fill: #ffffff;

    margin-left: 5px;

}





.mainheading{

    font-size: 35px !important;

    line-height: 40px !important ;

}

.sub-heading{

     font-size: 24px !important;

    line-height: 40px !important;

}

.para-fonts{

     font-size: 16px !important;

    line-height: 24px !important;

}



.text-black{

    color: #000 !important;

}

















/* General Styles */

.testimonials-container {

/*    max-width: 1100px;*/

    margin: 0 auto;

    padding: 60px 20px;

    text-align: center;

  background: linear-gradient(135deg, #f892b775, #fdd9473d);

    border-radius: 15px;

    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);

}



.section-title {

    font-size: 2.8em;

    color: #393535;

    margin-bottom: 10px;

  

    letter-spacing: 1px;

}



.testimonials {

    display: flex;

    justify-content: space-around;

    flex-wrap: wrap;

}



.testimonial-item {

    background: #fff;

    padding: 30px;

    margin: 15px;

    border-radius: 12px;

    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);

    max-width: 320px;

    position: relative;

    transition: all 0.3s ease;

}



.testimonial-item:hover {

    transform: translateY(-10px) scale(1.02);

    box-shadow: 0 15px 25px rgba(0, 0, 0, 0.2);

}



.testimonial-content {

    position: relative;

}



.quote-icon {

    font-size: 40px;

    color: #f8c70c;

    position: absolute;

   top: -50px;

    left: -10px;

}



.testimonial-text {

    font-style: italic;

    color: #555;

    font-size: 16px;

    line-height: 1.5;

    margin: 40px 0 20px;

}



.client-info {

    display: flex;

    align-items: center;

    margin-top: 15px;

}



.client-img {

   width: 90px;

    height: 90px;

    border-radius: 50%;

    object-fit: cover;

    margin-right: 15px;

    border: 3px solid #6d5dfc;

    padding: 8px;

}



.client-details {

    text-align: left;

}



.client-name {

    font-weight: bold;

    color: #333;

    font-size: 16px;

}



.client-title {

    color: #777;

    font-size: 0.9em;

}



/* Responsive Adjustments */

@media screen and (max-width: 1024px) {

    .testimonials-container {

        padding: 50px 15px;

    }



    .section-title {

        font-size: 2.5em;

    }



    .testimonial-item {

        max-width: 290px;

    }

}



@media screen and (max-width: 768px) {

    .testimonials {

        flex-direction: column;

        align-items: center;

    }



    .testimonial-item {

        max-width: 100%;

        margin: 20px 0;

    }

    

    .section-title {

        font-size: 2.3em;

    }



    .client-img {

        width: 50px;

        height: 50px;

    }



    .testimonial-text {

        font-size: 1em;

    }

}



@media screen and (max-width: 480px) {

    .testimonials-container {

        padding: 40px 10px;

    }



    .section-title {

        font-size: 2em;

    }



    .testimonial-item {

        padding: 20px;

    }



    .quote-icon {

        font-size: 30px;

    }



    .testimonial-text {

        font-size: 0.95em;

    }



    .client-img {

        width: 45px;

        height: 45px;

    }



    .client-name {

        font-size: 1.1em;

    }



    .client-title {

        font-size: 0.85em;

    }

}

.sep-hed{

    margin: 0px 90px 0px 90px;

    text-align: center;

}



.progress-name{

    font-size: 18px !important;

    text-transform: capitalize !important;

}

.sec-industry{



}







/* Adjustments for screens below 1100px */

@media (max-width: 1199px) {

  .aximo-content-thumb {

    margin-left:29%; /* Adjust margin for tablet view */

  }



  .aximo-content-thumb img {

    height: 350px; /* Adjust image height for smaller screens */

  }



  .aximo-thumb-shape1 {

    left: -3%; /* Adjust position of the shape for tablets */

  }

  .abtbtn{

    margin-top: 10px;

  }

}



/* Further adjustments for mobile screens (below 767px) */

@media (max-width: 767px) {

  .aximo-content-thumb {

    margin-left: 0; /* Remove margin for mobile view */

    text-align: center; /* Center the content */

  }

 .abtbtn{

    margin-top: 20px;

  }

  .aximo-content-thumb img {

    height: auto; /* Make image responsive */

    max-width: 100%; /* Keep the image within the screen width */

  }



  .aximo-thumb-shape1 {

    left: 0; /* Center the shape for mobile */

    top: 10px; /* Adjust position if needed */

  }

}















   .innerli li {

        display: flex;

    align-items: self-start;

    }

    .al-center{

        display: flex;

        align-items: center;

    }



























#team {

  padding: 50px 0;



}



.card-section {

  display: grid;

  grid-template-columns: repeat(4, 1fr);

 

  width: 100%;

}



.card {

  width: 100%;

  position: relative;

  overflow: hidden;

  perspective: 1000px;

 

/*  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);*/

}



.card-inner {

  position: relative;

    width: 100%;

    height: 350px;

    transform-style: preserve-3d;

    transition: transform 0.6s ease;

    border: 4px solid #ffffff;

}



.card:hover .card-inner {

  transform: rotateY(180deg);

}



.card-front,

.card-back {

  position: absolute;

  width: 100%;

  height: 100%;

  display: flex;

  align-items: flex-end; /* Align items to the bottom */

  justify-content: center;

  backface-visibility: hidden;

}



.card-front {

  background-size: cover;

  background-position: center;

  position: relative; /* Allow positioning of the title */

}



.card-background {

  position: absolute;

  width: 100%;

  height: 100%;

  z-index: 1; /* Background layer */

  background-size: cover;

  background-repeat: no-repeat;

/* opacity: 0.9;*/

    border-radius: 10px;

    filter: brightness(0.8);

}



.card-title {

  position: relative;

  z-index: 2; /* Title layer above the background */

  font-size: 1.5rem; /* Increase font size for titles */

  color: #fff; /* White color for contrast */

  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7); /* Shadow for better readability */

  text-align: center; /* Center align titles */

  background-color: rgba(0, 0, 0, 0.6); /* Semi-transparent background for titles */

  padding: 10px; /* Padding for titles */

  width: 100%;

  border-radius: 0px 0px 8px 8px;

}



.card-back {

  background-color: #000;

  color: #252424;

  transform: rotateY(180deg);

  padding: 20px;

  display: flex;

  flex-direction: column; /* Stack items vertically */

  align-items: center; /* Center align text */

  justify-content: center; /* Center content vertically */

  text-align: center; /* Center align text */

  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3); /* Optional shadow for depth */

}



.card-back h3 {

  font-size: 24px;

    line-height: 40px;

    margin: 0;

    color: #252424;

}



.card-back p {

  margin-top: 10px;

  font-size: 16px;

  text-align: center; /* Center text for better visibility */

  color: #252424;

}



/* Responsive layout */

@media (max-width: 768px) {

  .card-section {

    grid-template-columns: repeat(2, 1fr);

  }

  .card-inner {

    height: 250px; /* Adjust height for smaller screens */

  }



}



@media (max-width: 480px) {

  .card-section {

    grid-template-columns: 1fr;

  }

  .card-inner {

   height: 460px;

  }

}

.card-back {

 background: linear-gradient(39deg, #f9c70d87 42%, #fc3e8236);

  color: white; /* Text color */

  transform: rotateY(180deg); /* Rotate it to show on the back */

  padding: 20px; /* Space inside the card */

  display: flex; /* Use flexbox to arrange child elements */

  flex-direction: column; /* Stack items vertically */

  align-items: center; /* Center items horizontally */

  justify-content: center; /* Center items vertically */

  text-align: center; /* Center align text */

  backface-visibility: hidden; /* Prevent showing the back when not rotated */

  top: 0px;

}











































        .video-container1 {

    position: relative;

    width: 100%; /* Adjust as needed */

    max-width: 600px; /* Adjust as needed */

}

.row{

   margin-right:0px !important;

   margin-left:0px !important;

}



.video-s {

   border-radius: 15px;

    width: 100%;

    height: auto;

    display: none; /* Initially hide the video */

}





.container-v {

    display: flex;

    justify-content: center; /* Center horizontally */

    align-items: center; /* Center vertically */

    height: 100vh; /* Full viewport height */

}



.video-container-1 {

    width: 700px; /* Fixed width for the video container */

    text-align: center; /* Center text inside the video container */

}



.ptivideo

 {

    width: 100%; /* Adjust video width as needed */

    max-width: 600px; /* Maximum width of the video */

    height: auto; /* Maintain aspect ratio */

}

.bordering{

   color: #ffffff !important;

    border: 2px solid white;

    padding: 12px;

    top: 15px;

    position: relative;

}

.shape-1 {

  animation: hero-thumb-animation 2s linear infinite alternate;

}



.shape-3 {

  animation: hero-thumb-sm-2-animation 4s linear infinite alternate;

}



 :root {

         --base-font-size: 16px; /* Adjust as needed */

         }@media screen and (max-width: 480px) {h1, h2, h3, h4, h5, h6 {font-size: 2.2rem;}}#preloader {position:fixed;top: 0;left: 0;width: 100%;height: 100%;background-color: #fff;z-index: 9999;display: flex;justify-content: center;align-items: center;}#logo {background-image: url('https://multitvsolution.com/images/multitv_logo.svg');background-size: cover;width: 280px; /* Adjust width as needed */height: 100px; animation: revealLogo 0.6s ease-in-out forwards; opacity: 0;background-size: contain !important;background-repeat: no-repeat;}@keyframes revealLogo {0% {transform: scaleX(0);opacity: 0;}100% {transform: scaleX(1);opacity: 1;}}#content {display: none;}



          .img-sub-1.shape-1 img {

            display: block;

            margin: auto;

            animation: moveUpsDown 3s ease-in-out infinite;

        }



        @keyframes moveUpsDown {

            0%, 100% {

                transform: translateY(0);

            }

            50% {

                transform: translateY(20px);

            }

        }





           .img-sub-2.shape-3 img {

            display: block;

            margin: auto;

            animation: moveUpDown 3s ease-in-out infinite;

        }



        @keyframes moveUpDown {

            0%, 100% {

                transform: translateY(0);

            }

            50% {

                transform: translateY(-20px);

            }

        }











.bg-gradient{

    background: linear-gradient(39deg, #f9c70d87 42%, #fc3e8236);

}







.cas-st{

border: 2px solid #f93d8078;

    padding: 12px;

    display: flex;

    align-items: center;

    justify-content: center;

    margin-top: 15px;

    border-radius: 6px;

}

.cas-para{

    margin: 5px 0px 5px 0px;

    font-size: 16px;

}

.cas-st:hover{

border: 2px solid #000;



}































@media only screen and (max-width: 768px) {

  .block-our-feature-2 .block-our-feature-2-inner {

    padding: 10px 0px 0px 0px;

  }

}



@media only screen and (max-width: 768px) {

  h2 {

    font-size: 25px !important;

    margin-bottom: 20px;

    line-height: 40px !important;

  }

}



@media only screen and (min-width: 769px) {

  h2 {

    font-size: 35px !important;

  }

}

@media only screen and (max-width: 768px) {

  .sep-hed {

    margin: 0px 0px 0px 0px;

    text-align: center;

  }

}



@media only screen and (max-width: 768px) {

  .padding-left-auto {

    padding-left: 0px !important;

  }



  .img-sub-2.shape-3 img {

    display: block;

    margin: auto;

    animation: moveUpDown 3s ease-in-out infinite;

    top: -153px  !important;

    width: 141px  !important;

}

.img-sub-1.shape-1 img {

    display: block;

    margin: auto;

    animation: moveUpsDown 3s ease-in-out infinite;

    top: 116px  !important;

    width: 197px !important;

    left: 19px  !important;

}

}



@media only screen and (max-width: 768px) {

  .togglefaqs {

    width: 100% !important; 

  }



  .box-buttons-feature-4 {

    display: flex;

  

    justify-content: center;

}

.mobile-res{

    display: block;

}





}















.banner-section {

    position: relative;

    width: 100%;

    height: auto;

    top: 80px;

}



.banner-image {

    position: relative;

    width: 100%;

}



.desktop-img {

    display: block;

    width: 100%;

    height: auto;

}



.mobile-img {

    display: none;

    width: 100%;

    height: auto;

}



/* Overlay styling with left-aligned content */

.banners-overlay {

    position: absolute;

    top: 0;

    left: 0;

    width: 100%;

    height: 100%;

    background-color: rgba(0, 0, 0, 0.4); /* Adjust overlay color and opacity */

    display: flex;

    align-items: center;

    justify-content: flex-start; /* Aligns content to the left */

    padding-left: 20px; /* Adds spacing from the left edge */

    color: #fff;

}



.overlay-content {

    max-width: 50%; /* Controls the width of text block */

    text-align: left; /* Left-aligns the text */

}



.overlay-content h1 {

    font-size: 2.5rem;

    margin: 0;

}



.overlay-content p {

    font-size: 1.2rem;

    margin: 10px 0 0;

}



/* Responsive styling */

@media (max-width: 768px) {

    .desktop-img {

        display: none;

    }



    .mobile-img {

        display: block;

    }



    .overlay-content h1 {

        font-size: 1.8rem;

    }



    .overlay-content p {  

        font-size: 1rem;

    }



    .overlay-content {

       max-width: 70%;

        padding-left: 15px;

        bottom: 22%;

        position: relative;

    }

    .no-paddings{

        padding-top: 20px !important;

    }

}

.mr-t55{

    margin-top: 55px !important;

}







.show-beat-grids{

    

    padding: 10px;

 

  

}

.show-beat-grids li{

    font-size: 16px;

    line-height: 40px;

    padding: 2px 13px;

    border-bottom: 1px solid #fc3e8226;

    background: linear-gradient(39deg, #f9c70d47 42%, #fc3e820f);

      margin: 10px 0px;

      cursor: pointer;

      text-align: center;

}



.show-beat-grids li:hover{

    background: linear-gradient(0deg, #0000001a, #00000000);

    transform: scale(1.02);

    transition: ease;

}









 @media only screen and (max-width: 768px) {

    .pad-mob{

        padding-top: 30px ;

    }

    .show-pad{

        padding-bottom: 20px;

    }

  }





  .bor-rad25{

    border-radius: 25px;

  }

  .mb-20{

    margin-bottom: 20px;

  }

  .mb-40{

       margin-bottom: 20px !important;

  }

     @media (max-width: 768px){

      .block-on-phone{

         display: contents ;

      }

      .give-mar-30{

         margin-top: 30px !important;

      }

   }

   @media (max-width: 576px){



   }



   .design-img{

    border-radius: 8px;

     box-shadow: 7px 7px 11px -2px #00000085;

   }





   .mr-t90{

    margin-top: 90px !important;

   }

   .top-heading{

    padding: 10px 0px 20px 10px;

 

   }

   .headings1{

    padding-bottom: 18px !important;

   }

      .image-section {

   position: relative;

    background-image: url(https://www.multitvsolution.com/images/absbg.jpg);

    background-size: cover;

    background-position: center;

    background-repeat: no-repeat;

    padding: 50px 0;

    background-attachment: fixed;

}



.containersss {

    position: relative;

    z-index: 2;

}

.border-para1{

    border: 2px solid #e0ecff;

    border-top: 30px solid #e0ecff;

    padding: 10px;

}

.border-para2{

    border: 2px solid #fbf0c7;

    border-top: 30px solid #fbf0c7;

    padding: 10px;

}

.border-para3{

    border: 2px solid #ffe0eb;

    border-top: 30px solid #ffe0eb;

    padding: 10px;

}

.unewheading{

    margin-left: 20px;

}

  .color1 {

    font-size: 10px; /* Adjust size */

    color: #e0ecff;  /* Customize color */

    margin-right: 10px;

}

 .color2 {

    font-size: 10px; /* Adjust size */

    color: #fbf0c7;  /* Customize color */

    margin-right: 10px;

}

 .color3 {

    font-size: 10px; /* Adjust size */

    color: #ffe0eb;  /* Customize color */

    margin-right: 10px;

}

.al-base{

    align-items: baseline;

}







/* Initially set the opacity to 0, and position the element slightly to the right */

.key-benefit {

    padding: 13px 0px;

  opacity: 0;

  transform: translateX(100px); /* Starts from the right */

  transition: opacity 1.5s ease-out, transform 1.5s ease-out; /* Slow down the transition */

  font-size: 16px;

}



/* When the element is in the viewport, it will fade in and move to the original position */

.key-benefit.visible {

  opacity: 1;

  transform: translateX(0); /* Moves to original position */

}

body{

 overflow-x: hidden;

}



.mr-t80{

    margin-top: 80px;

}















    .zoom-circle {

    padding-top: 50px;

    display: flex;

    justify-content: center;

    align-items: center;

}



.circular-image {

    width: 420px; /* Fixed size for desktop */

    height: 400px;

    border-radius: 2%; /* Circular shape */

    transform: scale(1); /* Start at normal size */

    animation: zoomIn 1.5s ease forwards;

    animation-delay: 7s; /* Start zoom-in after 3 seconds */

    transition: transform 1.5s ease; 

}



/* Keyframes for zoom-in effect */

@keyframes zoomIn {

    from {

        transform: scale(1); /* Start at normal size */

    }

    to {

        transform: scale(1.2); /* Zoom in to 1.2 times the original size */

    }

}



/* Responsive adjustments */

@media (max-width: 768px) {

    .circular-image {

        width: 320px;

        height: 300px;

    }

  .margin-mob{
    margin-top: 38px;
  }
  .margin-mob-90{
    margin-top: 90px;
  }

}
@media (max-width: 991px) and (min-width: 769px)  {
    .margin-mob-90 {
        margin-top: 100px; /* Choose either 100px or 120px */
    }
    .card-enjoy {
        height: 37rem;
    }
    .margin-mob{
    margin-top: 100px;
  }
  .col-rev {

        flex-direction: column-reverse !important;

         display: flex !important;

    }
}



@media (max-width: 576px) {

    .circular-image {

        width: 270px;
        height: 250px;

    }
    .margin-mob{
    margin-top: 38px;
  }
   .margin-mob-90{
    margin-top: 90px;
  }

}

.colorbox{

    background: #ffffff;

    padding: 15px;

}

.pd-10{

    padding-top: 10px;

    margin: 10px 0px;

}

.pd-b30{

  

    padding-bottom: 30px;

}



/* Responsive adjustments */

@media (max-width: 768px) {

    .boxed {

        margin-bottom: 50px;

    }

    .border-para1, .border-para2 , .border-para3 {

        margin-bottom: 50px;

    }

    .paddings20{

       padding-top: 20px ;

    }

}

/*industries page */




.pd-t80{
    padding-top: 80px !important;
}
.mr-t20{
    margin-top: 20px;
}
 .banner-sidebar{
      border: 1px solid #d0d0d0;
    background: #eeeeee87;
    padding: 15px;
    text-align: center;
    border-radius: 60px 0px 74px 0px;
    box-shadow: 2px -5px 11px -1px #d2cccc;

    }
.banner-top-section {
    
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
    height: 400px;
}

.overlayss {
    background: linear-gradient(51deg, #f9c70d87 42%, #fc3e826b);
    height: 100%;
    display: flex;
    align-items: center;
    border-radius: 0px 60px 60px 0px;
}


.box-buttons-feature-s {
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-brand-4-medium-banner {
    background: linear-gradient(39deg, #e9cc62 42%, #fa9cbe) !important;


    padding: 10px 13px;
 
    border-radius: 8px;
    color: #191919;
    font-size: 12px;
    line-height: 22px;
    font-weight: 600;
    display: flex;
    align-items: center;
    border: 1px solid black;
}
.btn-brand-4-medium-banner:hover{
  background: #000 !important;
  color: #fff;
}
/* Mobile responsiveness */
@media (max-width: 767px) {
    .banner-top-section {
        height:400px;
    
        background-attachment: scroll;
    }

    .mainheading {
        font-size: 1.8rem;
        text-align: center;
    }

    .box-buttons-feature-s {
        justify-content: center;
        margin-top: 10px;
    }
    .mobile-margin-top{
        margin-top: 30px;
    }
}

 .pd-t70{
        padding-top: 70px;
    }
    .box-case-study-2 {
    background-color: #fff;
    padding: 108px 0 130px;
}
.section-box {
    display: block;
    width: 100%;
    overflow: hidden;
}
.animated {
    animation-duration: 1.25s;
    animation-fill-mode: both;
}
.btn.btn-brand-4-sm {
  padding: 4px 21px;
    background: linear-gradient(39deg, #e9cc62 42%, #fa9cbe) !important;
    border: 1px solid #000000;
    border-radius: 36px;
    color: #191919;
    font-size: 14px;
    line-height: 24px;
    font-weight: 400;
    font-family: var(--tg-body-font-family);
}
.mb-35 {
    margin-bottom: 35px !important;
}
.mt-15 {
    margin-top: 15px !important;
}
.card-casestudy .cards-title {
    margin-bottom: 8px;
}
.card-casestudy .cards-title .number {
  width: 39px;
    height: 39px;
    background-color: #203761;
    color: #ffffff;
    font-size: 24px;
    line-height: 39px;
    display: inline-block;
    margin-right: 8px;
    font-weight: 700;
    text-align: center;
    vertical-align: middle;
    border-radius: 50%;
}
.mr-t0{
    margin-top: 0px !important;
}
.pd-b80{
    padding-bottom: 80px;
}
/* Initially set the opacity to 0, and position the element slightly to the right */
.key-benefit {
    padding: 10px;
  opacity: 0;
  transform: translateX(100px); /* Starts from the right */
  transition: opacity 1.5s ease-out, transform 1.5s ease-out; /* Slow down the transition */
}

/* When the element is in the viewport, it will fade in and move to the original position */
.key-benefit.visible {
  opacity: 1;
  transform: translateX(0); /* Moves to original position */
}
.zoom-circle {
    padding-top: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
}

/*.circular-image {
    width: 270px; 
    height: 270px;
    border-radius: 50%; 
    transform: scale(1); 
    animation: zoomIn 1.5s ease forwards;
    animation-delay: 7s; 
    transition: transform 1.5s ease;
}
*/
/* Keyframes for zoom-in effect */
@keyframes zoomIn {
    from {
        transform: scale(1); /* Start at normal size */
    }
    to {
        transform: scale(1.2); /* Zoom in to 1.2 times the original size */
    }
}

/* Responsive adjustments */
/*@media (max-width: 768px) {
    .circular-image {
        width: 200px;
        height: 200px;
    }
}

@media (max-width: 576px) {
    .circular-image {
        width: 150px;
        height: 150px;
    }
}*/
.colorbox{
    background: #ffffff;
    padding: 15px;
}
.pd-10{
    padding-top: 10px;
    margin: 10px 0px;
}
.pd-b30{
    padding-bottom: 30px;
}

 .box-our-client {
/*    background-color: #fbe17e;*/
    padding: 142px 0;
}
.section-box {
    display: block;
    width: 100%;
    overflow: hidden;
}
.animated {
    animation-duration: 1.25s;
    animation-fill-mode: both;
}
.list-our-works .item-work h4 {
    min-width: 200px;
    color: #000;
}
.list-our-works .item-work {
    display: flex;
    align-items: center;
    padding: 12px 0;
    border-bottom: 2px solid #ffffff;
}
.neutral-0 {
    color: #202020 !important;
}
.neutral-500 {
    color:#434343 !important;
}
.mb-15 {
    margin-bottom: 15px !important;
}
.img-sold {
    position: absolute;
    bottom: -100px;
    right: -40px;
}
.box-image-client {
    text-align: center;
    position: relative;
    display: inline-block;
}
  .card-enjoy .card-image {
    margin-bottom: 30px;
}
    .btn.btn-learmore {
    padding: 10px 0px;
    font-size: 16px;
    line-height: 20px;
    font-weight: 500;
   
    color: #ffffff;
    display: flex;
    align-items: center;
}
.card-enjoy {
    border-radius: 16px;
   background-color: #ffffff;
    padding: 32px;
    margin-bottom: 25px;
}
    .card-enjoy .card-info h5 {
    color: #000;
    margin-bottom: 12px;
}
.card-enjoy .card-info p {
    color: #949494;
    margin-bottom: 20px;
}
.text-lg {
    font-size: 18px;
    line-height: 28px;
}
    .text-white{
        color: #fff;
        border: none !important;
    }
    .box-info-num span {
    display: inline-block;
    margin-right: 30px;
}
.text-linear-3 {
   background: -webkit-linear-gradient(46deg, #203761 34%, #e03eff 55%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.text-88-semibold {
    font-size: 88px;
    line-height: 76px;
    font-weight: 600;
  
}
   .box-enjoy {
/*    background-image: url(https://multitvsolution.com/images/bg-let.jpg);*/
    background: linear-gradient(39deg, #f9c70d87 42%, #fc3e8236) !important;
    background-repeat: no-repeat;
    background-position: top center;
    background-size: cover;
    padding: 130px 0px 106px 0px;
    margin-top: 130px;
}
.section-box {
    display: block;
    width: 100%;
    overflow: hidden;
}
.align-items-end {
    align-items: flex-end !important;
}

 .insight-panel {
    padding: 50px 20px;
/*    background: linear-gradient(135deg, #f1cb3c, #f36e9e);*/
/*    border-radius: 15px;*/
/*    box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.1);*/
}

.insight-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: bold;
    color: #000;
    margin-bottom: 40px;
    text-shadow: 0px 2px 4px rgba(0, 0, 0, 0.2);
}

.insight-item {
    margin-bottom: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.insight-item.active {
    transform: scale(1.02);
}

.insight-question {
   padding: 15px 20px;
    font-size: 16px;
    font-weight: 400;
    color: #333;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
   background: #20376136;
    border-radius: 8px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s ease;
}

.insight-question:hover {
    background-color: #f1cb3c;
}

.insight-question .icon {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.insight-item.active .insight-question .icon {
    transform: rotate(180deg);
}

.insight-answer {
    font-size: 14px;
    color: #333;
    padding: 0 20px 0 30px;
    background-color: transparent;
    line-height: 1.6;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.insight-item.active .insight-answer {
   max-height: 100%;
    padding: 10px 20px;
    background: #ffffff1f;
}

.insight-question:hover {
   background: #f1cb3c;
}

.insight-question .icon {
    font-size: 1.2rem;
    color: #333; /* Ensure icon color is distinct */
    transition: transform 0.3s ease;
}

.insight-item.active .insight-question .icon {
    transform: rotate(180deg);
}
.pd-20{
    padding: 20px;
}
.display-flex{
    display:flex !important;
}
.mright-3{
    margin-right: 12px;
}
.margin-t{
    margin-top:8px;
}
.mt-32{
    margin-top:8px ;
}
.text-b{
    font-size:15px;
}