@import url(base-1.css);
@import url(Tertiary.base-2.css);
@-moz-keyframes swing {
    20% {
        -moz-transform: rotate(15deg)
    }
    40% {
        -moz-transform: rotate(-10deg)
    }
    60% {
        -moz-transform: rotate(5deg)
    }
    80% {
        -moz-transform: rotate(-5deg)
    }
    100% {
        -moz-transform: rotate(0deg);
        opacity: 1
    }
}

@-o-keyframes swing {
    20% {
        -o-transform: rotate(15deg);
    }
    40% {
        -o-transform: rotate(-10deg);
    }
    60% {
        -o-transform: rotate(5deg);
    }
    80% {
        -o-transform: rotate(-5deg);
    }
    100% {
        -o-transform: rotate(0deg);
        opacity: 1;
    }
}

@keyframes swing {
    20% {
        transform: rotate(15deg)
    }
    40% {
        transform: rotate(-10deg)
    }
    60% {
        transform: rotate(5deg)
    }
    80% {
        transform: rotate(-5deg)
    }
    100% {
        transform: rotate(0deg);
        opacity: 1
    }
}

.swing {
    -webkit-transform-origin: top center;
    -moz-transform-origin: top center;
    -o-transform-origin: top center;
    transform-origin: top center;
    -webkit-animation-name: swing;
    -moz-animation-name: swing;
    -o-animation-name: swing;
    animation-name: swing
}

@-webkit-keyframes wobble {
    0% {
        -webkit-transform: translateX(0%)
    }
    15% {
        -webkit-transform: translateX(-25%) rotate(-5deg)
    }
    30% {
        -webkit-transform: translateX(20%) rotate(3deg)
    }
    45% {
        -webkit-transform: translateX(-15%) rotate(-3deg)
    }
    60% {
        -webkit-transform: translateX(10%) rotate(2deg)
    }
    75% {
        -webkit-transform: translateX(-5%) rotate(-1deg)
    }
    100% {
        -webkit-transform: translateX(0%);
        opacity: 1
    }
}

@-moz-keyframes wobble {
    0% {
        -moz-transform: translateX(0%)
    }
    15% {
        -moz-transform: translateX(-25%) rotate(-5deg)
    }
    30% {
        -moz-transform: translateX(20%) rotate(3deg)
    }
    45% {
        -moz-transform: translateX(-15%) rotate(-3deg)
    }
    60% {
        -moz-transform: translateX(10%) rotate(2deg)
    }
    75% {
        -moz-transform: translateX(-5%) rotate(-1deg)
    }
    100% {
        -moz-transform: translateX(0%);
        opacity: 1
    }
}

@-o-keyframes wobble {
    0% {
        -o-transform: translateX(0%);
    }
    15% {
        -o-transform: translateX(-25%)rotate(-5deg);
    }
    30% {
        -o-transform: translateX(20%)rotate(3deg);
    }
    45% {
        -o-transform: translateX(-15%)rotate(-3deg);
    }
    60% {
        -o-transform: translateX(10%)rotate(2deg);
    }
    75% {
        -o-transform: translateX(-5%)rotate(-1deg);
    }
    100% {
        -o-transform: translateX(0%);
        opacity: 1;
    }
}

@keyframes wobble {
    0% {
        transform: translateX(0%)
    }
    15% {
        transform: translateX(-25%) rotate(-5deg)
    }
    30% {
        transform: translateX(20%) rotate(3deg)
    }
    45% {
        transform: translateX(-15%) rotate(-3deg)
    }
    60% {
        transform: translateX(10%) rotate(2deg)
    }
    75% {
        transform: translateX(-5%) rotate(-1deg)
    }
    100% {
        transform: translateX(0%);
        opacity: 1
    }
}

.wobble {
    -webkit-animation-name: wobble;
    -moz-animation-name: wobble;
    -o-animation-name: wobble;
    animation-name: wobble
}

@-webkit-keyframes wiggle {
    0% {
        -webkit-transform: skewX(9deg)
    }
    10% {
        -webkit-transform: skewX(-8deg)
    }
    20% {
        -webkit-transform: skewX(7deg)
    }
    30% {
        -webkit-transform: skewX(-6deg)
    }
    40% {
        -webkit-transform: skewX(5deg)
    }
    50% {
        -webkit-transform: skewX(-4deg)
    }
    60% {
        -webkit-transform: skewX(3deg)
    }
    70% {
        -webkit-transform: skewX(-2deg)
    }
    80% {
        -webkit-transform: skewX(1deg)
    }
    90% {
        -webkit-transform: skewX(0deg)
    }
    100% {
        -webkit-transform: skewX(0deg);
        opacity: 1
    }
}

@-moz-keyframes wiggle {
    0% {
        -moz-transform: skewX(9deg)
    }
    10% {
        -moz-transform: skewX(-8deg)
    }
    20% {
        -moz-transform: skewX(7deg)
    }
    30% {
        -moz-transform: skewX(-6deg)
    }
    40% {
        -moz-transform: skewX(5deg)
    }
    50% {
        -moz-transform: skewX(-4deg)
    }
    60% {
        -moz-transform: skewX(3deg)
    }
    70% {
        -moz-transform: skewX(-2deg)
    }
    80% {
        -moz-transform: skewX(1deg)
    }
    90% {
        -moz-transform: skewX(0deg)
    }
    100% {
        -moz-transform: skewX(0deg);
        opacity: 1
    }
}

@-o-keyframes wiggle {
    0% {
        -o-transform: skewX(9deg);
    }
    10% {
        -o-transform: skewX(-8deg);
    }
    20% {
        -o-transform: skewX(7deg);
    }
    30% {
        -o-transform: skewX(-6deg);
    }
    40% {
        -o-transform: skewX(5deg);
    }
    50% {
        -o-transform: skewX(-4deg);
    }
    60% {
        -o-transform: skewX(3deg);
    }
    70% {
        -o-transform: skewX(-2deg);
    }
    80% {
        -o-transform: skewX(1deg);
    }
    90% {
        -o-transform: skewX(0deg);
    }
    100% {
        -o-transform: skewX(0deg);
        opacity: 1;
    }
}

@keyframes wiggle {
    0% {
        transform: skewX(9deg)
    }
    10% {
        transform: skewX(-8deg)
    }
    20% {
        transform: skewX(7deg)
    }
    30% {
        transform: skewX(-6deg)
    }
    40% {
        transform: skewX(5deg)
    }
    50% {
        transform: skewX(-4deg)
    }
    60% {
        transform: skewX(3deg)
    }
    70% {
        transform: skewX(-2deg)
    }
    80% {
        transform: skewX(1deg)
    }
    90% {
        transform: skewX(0deg)
    }
    100% {
        transform: skewX(0deg);
        opacity: 1
    }
}

.wiggle {
    -webkit-animation-name: wiggle;
    -moz-animation-name: wiggle;
    -o-animation-name: wiggle;
    animation-name: wiggle;
    -webkit-animation-timing-function: ease-in;
    -moz-animation-timing-function: ease-in;
    -o-animation-timing-function: ease-in;
    animation-timing-function: ease-in
}

@-webkit-keyframes pulse {
    0% {
        -webkit-transform: scale(1)
    }
    50% {
        -webkit-transform: scale(1.1)
    }
    100% {
        -webkit-transform: scale(1);
        opacity: 1
    }
}

@-moz-keyframes pulse {
    0% {
        -moz-transform: scale(1)
    }
    50% {
        -moz-transform: scale(1.1)
    }
    100% {
        -moz-transform: scale(1);
        opacity: 1
    }
}

@-o-keyframes pulse {
    0% {
        -o-transform: scale(1);
    }
    50% {
        -o-transform: scale(1.1);
    }
    100% {
        -o-transform: scale(1);
        opacity: 1;
    }
}

@keyframes pulse {
    0% {
        transform: scale(1)
    }
    50% {
        transform: scale(1.1)
    }
    100% {
        transform: scale(1);
        opacity: 1
    }
}

.pulse {
    -webkit-animation-name: pulse;
    -moz-animation-name: pulse;
    -o-animation-name: pulse;
    animation-name: pulse
}

@-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
    }
}

.fadeIn {
    -webkit-animation-name: fadeIn;
    -moz-animation-name: fadeIn;
    -o-animation-name: fadeIn;
    animation-name: fadeIn
}

@-webkit-keyframes fadeInUp {
    0% {
        opacity: 0;
        -webkit-transform: translateY(20px)
    }
    100% {
        opacity: 1;
        -webkit-transform: translateY(0)
    }
}

@-moz-keyframes fadeInUp {
    0% {
        opacity: 0;
        -moz-transform: translateY(20px)
    }
    100% {
        opacity: 1;
        -moz-transform: translateY(0)
    }
}

@-o-keyframes fadeInUp {
    0% {
        opacity: 0;
        -o-transform: translateY(20px);
    }
    100% {
        opacity: 1;
        -o-transform: translateY(0);
    }
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(20px)
    }
    100% {
        opacity: 1;
        transform: translateY(0)
    }
}

.fadeInUp {
    -webkit-animation-name: fadeInUp;
    -moz-animation-name: fadeInUp;
    -o-animation-name: fadeInUp;
    animation-name: fadeInUp
}

@-webkit-keyframes fadeInDown {
    0% {
        opacity: 0;
        -webkit-transform: translateY(-20px)
    }
    100% {
        opacity: 1;
        -webkit-transform: translateY(0)
    }
}

@-moz-keyframes fadeInDown {
    0% {
        opacity: 0;
        -moz-transform: translateY(-20px)
    }
    100% {
        opacity: 1;
        -moz-transform: translateY(0)
    }
}

@-o-keyframes fadeInDown {
    0% {
        opacity: 0;
        -o-transform: translateY(-20px);
    }
    100% {
        opacity: 1;
        -o-transform: translateY(0);
    }
}

@keyframes fadeInDown {
    0% {
        opacity: 0;
        transform: translateY(-20px)
    }
    100% {
        opacity: 1;
        transform: translateY(0)
    }
}

.fadeInDown {
    -webkit-animation-name: fadeInDown;
    -moz-animation-name: fadeInDown;
    -o-animation-name: fadeInDown;
    animation-name: fadeInDown
}

@-webkit-keyframes fadeInLeft {
    0% {
        opacity: 0;
        -webkit-transform: translateX(-20px)
    }
    100% {
        opacity: 1;
        -webkit-transform: translateX(0)
    }
}

@-moz-keyframes fadeInLeft {
    0% {
        opacity: 0;
        -moz-transform: translateX(-20px)
    }
    100% {
        opacity: 1;
        -moz-transform: translateX(0)
    }
}

@-o-keyframes fadeInLeft {
    0% {
        opacity: 0;
        -o-transform: translateX(-20px);
    }
    100% {
        opacity: 1;
        -o-transform: translateX(0);
    }
}

@keyframes fadeInLeft {
    0% {
        opacity: 0;
        transform: translateX(-20px)
    }
    100% {
        opacity: 1;
        transform: translateX(0)
    }
}

.fadeInLeft {
    -webkit-animation-name: fadeInLeft;
    -moz-animation-name: fadeInLeft;
    -o-animation-name: fadeInLeft;
    animation-name: fadeInLeft
}

@-webkit-keyframes fadeInRight {
    0% {
        opacity: 0;
        -webkit-transform: translateX(20px)
    }
    100% {
        opacity: 1;
        -webkit-transform: translateX(0)
    }
}

@-moz-keyframes fadeInRight {
    0% {
        opacity: 0;
        -moz-transform: translateX(20px)
    }
    100% {
        opacity: 1;
        -moz-transform: translateX(0)
    }
}

@-o-keyframes fadeInRight {
    0% {
        opacity: 0;
        -o-transform: translateX(20px);
    }
    100% {
        opacity: 1;
        -o-transform: translateX(0);
    }
}

@keyframes fadeInRight {
    0% {
        opacity: 0;
        transform: translateX(20px)
    }
    100% {
        opacity: 1;
        transform: translateX(0)
    }
}

.fadeInRight {
    -webkit-animation-name: fadeInRight;
    -moz-animation-name: fadeInRight;
    -o-animation-name: fadeInRight;
    animation-name: fadeInRight
}

@-webkit-keyframes fadeInUpBig {
    0% {
        opacity: 0;
        -webkit-transform: translateY(2000px)
    }
    100% {
        opacity: 1;
        -webkit-transform: translateY(0)
    }
}

@-moz-keyframes fadeInUpBig {
    0% {
        opacity: 0;
        -moz-transform: translateY(2000px)
    }
    100% {
        opacity: 1;
        -moz-transform: translateY(0)
    }
}

@-o-keyframes fadeInUpBig {
    0% {
        opacity: 0;
        -o-transform: translateY(2000px);
    }
    100% {
        opacity: 1;
        -o-transform: translateY(0);
    }
}

@keyframes fadeInUpBig {
    0% {
        opacity: 0;
        transform: translateY(2000px)
    }
    100% {
        opacity: 1;
        transform: translateY(0)
    }
}

.fadeInUpBig {
    -webkit-animation-name: fadeInUpBig;
    -moz-animation-name: fadeInUpBig;
    -o-animation-name: fadeInUpBig;
    animation-name: fadeInUpBig
}

@-webkit-keyframes fadeInDownBig {
    0% {
        opacity: 0;
        -webkit-transform: translateY(-2000px)
    }
    100% {
        opacity: 1;
        -webkit-transform: translateY(0)
    }
}

@-moz-keyframes fadeInDownBig {
    0% {
        opacity: 0;
        -moz-transform: translateY(-2000px)
    }
    100% {
        opacity: 1;
        -moz-transform: translateY(0)
    }
}

@-o-keyframes fadeInDownBig {
    0% {
        opacity: 0;
        -o-transform: translateY(-2000px);
    }
    100% {
        opacity: 1;
        -o-transform: translateY(0);
    }
}

@keyframes fadeInDownBig {
    0% {
        opacity: 0;
        transform: translateY(-2000px)
    }
    100% {
        opacity: 1;
        transform: translateY(0)
    }
}

.fadeInDownBig {
    -webkit-animation-name: fadeInDownBig;
    -moz-animation-name: fadeInDownBig;
    -o-animation-name: fadeInDownBig;
    animation-name: fadeInDownBig
}

@-webkit-keyframes fadeInLeftBig {
    0% {
        opacity: 0;
        -webkit-transform: translateX(-2000px)
    }
    100% {
        opacity: 1;
        -webkit-transform: translateX(0)
    }
}

@-moz-keyframes fadeInLeftBig {
    0% {
        opacity: 0;
        -moz-transform: translateX(-2000px)
    }
    100% {
        opacity: 1;
        -moz-transform: translateX(0)
    }
}

@-o-keyframes fadeInLeftBig {
    0% {
        opacity: 0;
        -o-transform: translateX(-2000px);
    }
    100% {
        opacity: 1;
        -o-transform: translateX(0);
    }
}

@keyframes fadeInLeftBig {
    0% {
        opacity: 0;
        transform: translateX(-2000px)
    }
    100% {
        opacity: 1;
        transform: translateX(0)
    }
}

.fadeInLeftBig {
    -webkit-animation-name: fadeInLeftBig;
    -moz-animation-name: fadeInLeftBig;
    -o-animation-name: fadeInLeftBig;
    animation-name: fadeInLeftBig
}

@-webkit-keyframes fadeInRightBig {
    0% {
        opacity: 0;
        -webkit-transform: translateX(2000px)
    }
    100% {
        opacity: 1;
        -webkit-transform: translateX(0)
    }
}

@-moz-keyframes fadeInRightBig {
    0% {
        opacity: 0;
        -moz-transform: translateX(2000px)
    }
    100% {
        opacity: 1;
        -moz-transform: translateX(0)
    }
}

@-o-keyframes fadeInRightBig {
    0% {
        opacity: 0;
        -o-transform: translateX(2000px);
    }
    100% {
        opacity: 1;
        -o-transform: translateX(0);
    }
}

@keyframes fadeInRightBig {
    0% {
        opacity: 0;
        transform: translateX(2000px)
    }
    100% {
        opacity: 1;
        transform: translateX(0)
    }
}

.fadeInRightBig {
    -webkit-animation-name: fadeInRightBig;
    -moz-animation-name: fadeInRightBig;
    -o-animation-name: fadeInRightBig;
    animation-name: fadeInRightBig
}

@-webkit-keyframes bounceIn {
    0% {
        opacity: 0;
        -webkit-transform: scale(.3)
    }
    50% {
        opacity: 1;
        -webkit-transform: scale(1.05)
    }
    70% {
        -webkit-transform: scale(.9)
    }
    100% {
        -webkit-transform: scale(1);
        opacity: 1
    }
}

@-moz-keyframes bounceIn {
    0% {
        opacity: 0;
        -moz-transform: scale(.3)
    }
    50% {
        opacity: 1;
        -moz-transform: scale(1.05)
    }
    70% {
        -moz-transform: scale(.9)
    }
    100% {
        -moz-transform: scale(1);
        opacity: 1
    }
}

@-o-keyframes bounceIn {
    0% {
        opacity: 0;
        -o-transform: scale(.3);
    }
    50% {
        opacity: 1;
        -o-transform: scale(1.05);
    }
    70% {
        -o-transform: scale(.9);
    }
    100% {
        -o-transform: scale(1);
        opacity: 1;
    }
}

@keyframes bounceIn {
    0% {
        opacity: 0;
        transform: scale(.3)
    }
    50% {
        opacity: 1;
        transform: scale(1.05)
    }
    70% {
        transform: scale(.9)
    }
    100% {
        transform: scale(1);
        opacity: 1
    }
}

.bounceIn {
    -webkit-animation-name: bounceIn;
    -moz-animation-name: bounceIn;
    -o-animation-name: bounceIn;
    animation-name: bounceIn
}

@-webkit-keyframes bounceInUp {
    0% {
        opacity: 0;
        -webkit-transform: translateY(2000px)
    }
    60% {
        opacity: 1;
        -webkit-transform: translateY(-30px)
    }
    80% {
        -webkit-transform: translateY(10px)
    }
    100% {
        -webkit-transform: translateY(0);
        opacity: 1
    }
}

@-moz-keyframes bounceInUp {
    0% {
        opacity: 0;
        -moz-transform: translateY(2000px)
    }
    60% {
        opacity: 1;
        -moz-transform: translateY(-30px)
    }
    80% {
        -moz-transform: translateY(10px)
    }
    100% {
        -moz-transform: translateY(0);
        opacity: 1
    }
}

@-o-keyframes bounceInUp {
    0% {
        opacity: 0;
        -o-transform: translateY(2000px);
    }
    60% {
        opacity: 1;
        -o-transform: translateY(-30px);
    }
    80% {
        -o-transform: translateY(10px);
    }
    100% {
        -o-transform: translateY(0);
        opacity: 1;
    }
}

@keyframes bounceInUp {
    0% {
        opacity: 0;
        transform: translateY(2000px)
    }
    60% {
        opacity: 1;
        transform: translateY(-30px)
    }
    80% {
        transform: translateY(10px)
    }
    100% {
        transform: translateY(0);
        opacity: 1
    }
}

.bounceInUp {
    -webkit-animation-name: bounceInUp;
    -moz-animation-name: bounceInUp;
    -o-animation-name: bounceInUp;
    animation-name: bounceInUp
}

@-webkit-keyframes bounceInDown {
    0% {
        opacity: 0;
        -webkit-transform: translateY(-2000px)
    }
    60% {
        opacity: 1;
        -webkit-transform: translateY(30px)
    }
    80% {
        -webkit-transform: translateY(-10px)
    }
    100% {
        -webkit-transform: translateY(0);
        opacity: 1
    }
}

@-moz-keyframes bounceInDown {
    0% {
        opacity: 0;
        -moz-transform: translateY(-2000px)
    }
    60% {
        opacity: 1;
        -moz-transform: translateY(30px)
    }
    80% {
        -moz-transform: translateY(-10px)
    }
    100% {
        -moz-transform: translateY(0);
        opacity: 1
    }
}

@-o-keyframes bounceInDown {
    0% {
        opacity: 0;
        -o-transform: translateY(-2000px);
    }
    60% {
        opacity: 1;
        -o-transform: translateY(30px);
    }
    80% {
        -o-transform: translateY(-10px);
    }
    100% {
        -o-transform: translateY(0);
        opacity: 1;
    }
}

@keyframes bounceInDown {
    0% {
        opacity: 0;
        transform: translateY(-2000px)
    }
    60% {
        opacity: 1;
        transform: translateY(30px)
    }
    80% {
        transform: translateY(-10px)
    }
    100% {
        transform: translateY(0);
        opacity: 1
    }
}

.bounceInDown {
    -webkit-animation-name: bounceInDown;
    -moz-animation-name: bounceInDown;
    -o-animation-name: bounceInDown;
    animation-name: bounceInDown
}

@-webkit-keyframes bounceInLeft {
    0% {
        opacity: 0;
        -webkit-transform: translateX(-2000px)
    }
    60% {
        opacity: 1;
        -webkit-transform: translateX(30px)
    }
    80% {
        -webkit-transform: translateX(-10px)
    }
    100% {
        -webkit-transform: translateX(0);
        opacity: 1
    }
}

@-moz-keyframes bounceInLeft {
    0% {
        opacity: 0;
        -moz-transform: translateX(-2000px)
    }
    60% {
        opacity: 1;
        -moz-transform: translateX(30px)
    }
    80% {
        -moz-transform: translateX(-10px)
    }
    100% {
        -moz-transform: translateX(0);
        opacity: 1
    }
}

@-o-keyframes bounceInLeft {
    0% {
        opacity: 0;
        -o-transform: translateX(-2000px);
    }
    60% {
        opacity: 1;
        -o-transform: translateX(30px);
    }
    80% {
        -o-transform: translateX(-10px);
    }
    100% {
        -o-transform: translateX(0);
        opacity: 1;
    }
}

@keyframes bounceInLeft {
    0% {
        opacity: 0;
        transform: translateX(-2000px)
    }
    60% {
        opacity: 1;
        transform: translateX(30px)
    }
    80% {
        transform: translateX(-10px)
    }
    100% {
        transform: translateX(0);
        opacity: 1
    }
}

.bounceInLeft {
    -webkit-animation-name: bounceInLeft;
    -moz-animation-name: bounceInLeft;
    -o-animation-name: bounceInLeft;
    animation-name: bounceInLeft
}

@-webkit-keyframes bounceInRight {
    0% {
        opacity: 0;
        -webkit-transform: translateX(2000px)
    }
    60% {
        opacity: 1;
        -webkit-transform: translateX(-30px)
    }
    80% {
        -webkit-transform: translateX(10px)
    }
    100% {
        -webkit-transform: translateX(0);
        opacity: 1
    }
}

@-moz-keyframes bounceInRight {
    0% {
        opacity: 0;
        -moz-transform: translateX(2000px)
    }
    60% {
        opacity: 1;
        -moz-transform: translateX(-30px)
    }
    80% {
        -moz-transform: translateX(10px)
    }
    100% {
        -moz-transform: translateX(0);
        opacity: 1
    }
}

@-o-keyframes bounceInRight {
    0% {
        opacity: 0;
        -o-transform: translateX(2000px);
    }
    60% {
        opacity: 1;
        -o-transform: translateX(-30px);
    }
    80% {
        -o-transform: translateX(10px);
    }
    100% {
        -o-transform: translateX(0);
        opacity: 1;
    }
}

@keyframes bounceInRight {
    0% {
        opacity: 0;
        transform: translateX(2000px)
    }
    60% {
        opacity: 1;
        transform: translateX(-30px)
    }
    80% {
        transform: translateX(10px)
    }
    100% {
        transform: translateX(0);
        opacity: 1
    }
}

.bounceInRight {
    -webkit-animation-name: bounceInRight;
    -moz-animation-name: bounceInRight;
    -o-animation-name: bounceInRight;
    animation-name: bounceInRight
}

@-webkit-keyframes rotateIn {
    0% {
        -webkit-transform-origin: center center;
        -webkit-transform: rotate(-200deg);
        opacity: 0
    }
    100% {
        -webkit-transform-origin: center center;
        -webkit-transform: rotate(0);
        opacity: 1
    }
}

@-moz-keyframes rotateIn {
    0% {
        -moz-transform-origin: center center;
        -moz-transform: rotate(-200deg);
        opacity: 0
    }
    100% {
        -moz-transform-origin: center center;
        -moz-transform: rotate(0);
        opacity: 1
    }
}

@-o-keyframes rotateIn {
    0% {
        -o-transform-origin: center center;
        -o-transform: rotate(-200deg);
        opacity: 0;
    }
    100% {
        -o-transform-origin: center center;
        -o-transform: rotate(0);
        opacity: 1;
    }
}

@keyframes rotateIn {
    0% {
        transform-origin: center center;
        transform: rotate(-200deg);
        opacity: 0
    }
    100% {
        transform-origin: center center;
        transform: rotate(0);
        opacity: 1
    }
}

.rotateIn {
    -webkit-animation-name: rotateIn;
    -moz-animation-name: rotateIn;
    -o-animation-name: rotateIn;
    animation-name: rotateIn
}

@-webkit-keyframes rotateInUpLeft {
    0% {
        -webkit-transform-origin: left bottom;
        -webkit-transform: rotate(90deg);
        opacity: 0
    }
    100% {
        -webkit-transform-origin: left bottom;
        -webkit-transform: rotate(0);
        opacity: 1
    }
}

@-moz-keyframes rotateInUpLeft {
    0% {
        -moz-transform-origin: left bottom;
        -moz-transform: rotate(90deg);
        opacity: 0
    }
    100% {
        -moz-transform-origin: left bottom;
        -moz-transform: rotate(0);
        opacity: 1
    }
}

@-o-keyframes rotateInUpLeft {
    0% {
        -o-transform-origin: left bottom;
        -o-transform: rotate(90deg);
        opacity: 0;
    }
    100% {
        -o-transform-origin: left bottom;
        -o-transform: rotate(0);
        opacity: 1;
    }
}

@keyframes rotateInUpLeft {
    0% {
        transform-origin: left bottom;
        transform: rotate(90deg);
        opacity: 0
    }
    100% {
        transform-origin: left bottom;
        transform: rotate(0);
        opacity: 1
    }
}

.rotateInUpLeft {
    -webkit-animation-name: rotateInUpLeft;
    -moz-animation-name: rotateInUpLeft;
    -o-animation-name: rotateInUpLeft;
    animation-name: rotateInUpLeft
}

@-webkit-keyframes rotateInDownLeft {
    0% {
        -webkit-transform-origin: left bottom;
        -webkit-transform: rotate(-90deg);
        opacity: 0
    }
    100% {
        -webkit-transform-origin: left bottom;
        -webkit-transform: rotate(0);
        opacity: 1
    }
}

@-moz-keyframes rotateInDownLeft {
    0% {
        -moz-transform-origin: left bottom;
        -moz-transform: rotate(-90deg);
        opacity: 0
    }
    100% {
        -moz-transform-origin: left bottom;
        -moz-transform: rotate(0);
        opacity: 1
    }
}

@-o-keyframes rotateInDownLeft {
    0% {
        -o-transform-origin: left bottom;
        -o-transform: rotate(-90deg);
        opacity: 0;
    }
    100% {
        -o-transform-origin: left bottom;
        -o-transform: rotate(0);
        opacity: 1;
    }
}

@keyframes rotateInDownLeft {
    0% {
        transform-origin: left bottom;
        transform: rotate(-90deg);
        opacity: 0
    }
    100% {
        transform-origin: left bottom;
        transform: rotate(0);
        opacity: 1
    }
}

.rotateInDownLeft {
    -webkit-animation-name: rotateInDownLeft;
    -moz-animation-name: rotateInDownLeft;
    -o-animation-name: rotateInDownLeft;
    animation-name: rotateInDownLeft
}

@-webkit-keyframes rotateInUpRight {
    0% {
        -webkit-transform-origin: right bottom;
        -webkit-transform: rotate(-90deg);
        opacity: 0
    }
    100% {
        -webkit-transform-origin: right bottom;
        -webkit-transform: rotate(0);
        opacity: 1
    }
}

@-moz-keyframes rotateInUpRight {
    0% {
        -moz-transform-origin: right bottom;
        -moz-transform: rotate(-90deg);
        opacity: 0
    }
    100% {
        -moz-transform-origin: right bottom;
        -moz-transform: rotate(0);
        opacity: 1
    }
}

@-o-keyframes rotateInUpRight {
    0% {
        -o-transform-origin: right bottom;
        -o-transform: rotate(-90deg);
        opacity: 0;
    }
    100% {
        -o-transform-origin: right bottom;
        -o-transform: rotate(0);
        opacity: 1;
    }
}

@keyframes rotateInUpRight {
    0% {
        transform-origin: right bottom;
        transform: rotate(-90deg);
        opacity: 0
    }
    100% {
        transform-origin: right bottom;
        transform: rotate(0);
        opacity: 1
    }
}

.rotateInUpRight {
    -webkit-animation-name: rotateInUpRight;
    -moz-animation-name: rotateInUpRight;
    -o-animation-name: rotateInUpRight;
    animation-name: rotateInUpRight
}

@-webkit-keyframes rotateInDownRight {
    0% {
        -webkit-transform-origin: right bottom;
        -webkit-transform: rotate(90deg);
        opacity: 0
    }
    100% {
        -webkit-transform-origin: right bottom;
        -webkit-transform: rotate(0);
        opacity: 1
    }
}

@-moz-keyframes rotateInDownRight {
    0% {
        -moz-transform-origin: right bottom;
        -moz-transform: rotate(90deg);
        opacity: 0
    }
    100% {
        -moz-transform-origin: right bottom;
        -moz-transform: rotate(0);
        opacity: 1
    }
}

@-o-keyframes rotateInDownRight {
    0% {
        -o-transform-origin: right bottom;
        -o-transform: rotate(90deg);
        opacity: 0;
    }
    100% {
        -o-transform-origin: right bottom;
        -o-transform: rotate(0);
        opacity: 1;
    }
}

@keyframes rotateInDownRight {
    0% {
        transform-origin: right bottom;
        transform: rotate(90deg);
        opacity: 0
    }
    100% {
        transform-origin: right bottom;
        transform: rotate(0);
        opacity: 1
    }
}

.rotateInDownRight {
    -webkit-animation-name: rotateInDownRight;
    -moz-animation-name: rotateInDownRight;
    -o-animation-name: rotateInDownRight;
    animation-name: rotateInDownRight
}

* {
    -webkit-box-sizing: content-box;
    -moz-box-sizing: content-box;
    box-sizing: content-box
}

div.body *,
html .scroll-to-top,
.ui-dialog-titlebar-close,
.lightbox-opened .mfp-wrap *,
.mfp-wrap.my-mfp-zoom-in * {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box
}

.common_license_container .porto.common_license_message {
    margin-bottom: 0;
    position: fixed;
    width: 100%;
    z-index: 10000;
    bottom: 0;
    left: 0
}

.common_license_container .porto.common_license_message .mclose {
    top: 22px;
    right: 40px
}

.Normal,
.NormalDisabled,
.NormalDeleted {
    color: #777;
    font-family: inherit;
    font-size: inherit;
    line-height: 22px
}

.language {
    float: right;
    margin: 10px 0 0 0;
    padding: 0
}

.language .language-object span {
    float: right;
    padding: 5px 8px;
    margin: 0 0 0 5px;
    border-radius: 100%;
    box-shadow: 1px 1px 1px 0 rgba(0, 0, 0, .1);
    -moz-border-radius: 100%;
    -webkit-border-radius: 100%;
    background-color: #fff
}

.language .language-object span img {
    height: 12px;
    width: 17px;
    opacity: .4
}

.language .language-object span:hover img {
    opacity: 1
}

.language .language-object .Language.selected img {
    opacity: 1;
    border-color: #222;
    -webkit-border-radius: 2px;
    border-radius: 2px;
    -webkit-box-shadow: 0 1px 0 0 rgba(255, 255, 255, .8);
    box-shadow: 0 1px 0 0 rgba(255, 255, 255, .8)
}

header.colored.flat-menu.darken-top-border div.search,
header.clean-top.center div.search {
    margin-bottom: 0
}

#login {
    float: right;
    margin: 10px 0 0 0
}

#login .registerGroup,
#login .registerGroup *,
#login .loginGroup,
#login .loginGroup * {
    display: block
}

#login .registerGroup,
#login .loginGroup {
    float: left;
    padding: 0;
    margin: 0
}

#login .loginGroup {
    margin-left: 20px
}

#login .registerGroup li:first-child:hover {
    border-left: #222
}

#login .registerGroup li {
    float: left
}

#login .registerGroup .buttonGroup {
    margin: 0;
    padding: 0 0 0 10px
}

#login .registerGroup a,
#login .loginGroup a,
#login a.SkinObject,
#login a.LoginLink {
    position: relative;
    font-size: 11px;
    text-transform: uppercase;
    font-weight: bold
}

#login .registerGroup a {
    line-height: 16px;
    height: 32px;
    padding: 10px 0;
    font-weight: bold;
    margin-left: 10px
}

#login a.SkinObject,
#login a.LoginLink {
    padding: 7px 0
}

#login .userMessages a:hover,
#login .userNotifications a:hover {
    background: #eee
}

#login .userDisplayName a:hover,
#login .loginGroup a:hover {
    color: #000
}

.dark #login .userDisplayName a:hover,
.dark #login .loginGroup a:hover {
    color: #fff
}

#login .registerGroup a:hover,
#login .loginGroup a:hover {
    text-decoration: none
}

#login .registerGroup a strong,
#login .loginGroup a strong {
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    overflow: hidden;
    font-size: 11px;
    text-indent: -9999px
}

#login .userMessages a,
#login .userNotifications a {
    background-color: #fff;
    box-shadow: 0 2px 2px 0 rgba(0, 0, 0, .3);
    padding-left: 16px;
    padding-right: 16px
}

#login .userProfileImg img,
#login .registerGroup a,
#login .loginGroup a,
#login a.SkinObject,
#login a.LoginLink {
    border-radius: 20px
}

#login .userMessages strong {
    height: 100%;
    background: url('Resources/img/icon_message.png') no-repeat center center
}

#login .userNotifications strong {
    height: 100%;
    background: url('Resources/img/icon_notification.png') no-repeat center center
}

#login .registerGroup a span {
    display: inline-block;
    position: absolute;
    right: 2px;
    top: -9px;
    min-width: 7px;
    margin-right: 3px;
    background: #3b96b6;
    text-align: center;
    font-size: 11px;
    color: #fff;
    text-shadow: 0 1px 0 #333
}

#login .registerGroup .userProfileImg a {
    min-width: 25px;
    min-height: 32px;
    padding: 0;
    background: none;
    box-shadow: 0 2px 2px 0 rgba(0, 0, 0, .3)
}

#login .registerGroup a img {
    height: 32px;
    width: 32px;
    background: #333
}

#login .userMessages a span,
#login .userNotifications a span {
    display: inline-block;
    margin-top: 9px;
    margin-right: 0;
    background-color: transparent;
    font-size: 10px
}

.layout_trigger {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    background-size: cover
}

.dnnCheckbox .mark {
    padding: 0;
    background-color: transparent
}

.body .dnnSortable {
    min-height: 0 !important
}

.body .dnnDropEmptyPanes {
    min-height: 110px !important;
    outline: 1px dashed #ccc !important
}

.body ul.dnnAdminTabNav,
.body ul.dnnActions,
#dnnModuleDigitalAssetsBreadcrumb ul {
    padding-left: 0
}

.body ul.dnnAdminTabNav li {
    line-height: normal
}

header.flat-menu.clean-top div.social-icons,
header.colored.flat-menu div.social-icons,
header.clean-top.center div.social-icons {
    float: left;
    margin: 0;
    clear: none
}

#ControlBar,
div.body .mdMemberList *,
div.body .dnnDocumentViewerBackground *,
div.body .dnnDropDownList .selected-item a,
.dnnDocumentViewerBackground div,
#dnnModuleDigitalAssetsMainToolbar,
#dnnModuleDigitalAssetsSelectionToolbar {
    -webkit-box-sizing: content-box;
    -moz-box-sizing: content-box;
    box-sizing: content-box
}

.icon-search {
    display: inline-block;
    font-family: FontAwesome;
    font-style: normal;
    font-weight: normal;
    line-height: 1
}

.DnnModule {
    z-index: inherit !important
}

.console {
    width: 250px;
    height: auto;
    background-color: #484848
}

.console-none div {
    cursor: pointer;
    cursor: hand;
    float: left;
    height: auto;
    width: 250px;
    padding: 0;
    margin: 0;
    text-align: left
}

.console-none h3 {
    padding: 10px 8px 10px 40px;
    margin: 0;
    border-bottom: solid 1px #fff;
    background: url('Resources/img/arrow_2.png') 18px center no-repeat;
    color: #eee;
    font-size: 13px;
    line-height: 1;
    font-weight: bold
}

.console-none div div {
    display: none
}

.console-mouseon {
    background-color: #70b1c7
}

#UserProfileImg img {
    width: 100px;
    height: auto;
    border: solid 3px #fff
}

.UserProfileControls ul {
    margin: 15px 0;
    padding: 0
}

.UserProfileControls ul li {
    list-style-type: none;
    margin-bottom: 3px
}

blockquote p {
    font-style: normal;
    font-family: "Open Sans", Arial, sans-serif
}

.dnnEditState .DnnModule {
    opacity: 1
}

.DNNEmptyPane {
    width: auto
}

.dnnLogin .dnnLoginService .dnnFormItem>.dnnSecondaryAction {
    color: #333
}

.dnnLogin .dnnLoginService .dnnFormItem>span.dnnFormLabel,
.dnnForm.dnnLoginService.dnnClear .dnnFormItem:nth-child(4)>.dnnFormLabel {
    display: none
}

.dnnLogin .dnnLoginService .dnnFormItem>label#dnn_ctr_Login_Login_DNN_lblLogin {
    display: none
}

.dnnFormMessage {
    max-width: 100%
}

.btn-primary:visited,
.btn-primary:visited:hover {
    color: #fff
}

@media only screen and (min-width:0) and (max-width:479px) {
    .LoginPanel {
        width: 100%;
        padding: 0
    }
    .dnnLoginService input[type="text"],
    .dnnLoginService input[type="password"] {
        min-width: 100%;
        width: 100%
    }
    .dnnFormItem>label.dnnFormLabel,
    .dnnLabel {
        width: auto
    }
    div.dnnRegistrationForm {
        min-width: 100%;
        width: 100%
    }
    .dnnFormItem input[type="text"],
    .dnnFormItem input[type="password"],
    .dnnFormItem input[type="email"],
    .dnnFormItem input[type="tel"],
    .dnnFormItem select,
    .dnnFormItem textarea {
        max-width: 100%;
        width: 100%
    }
    .dnnFormMessage {
        max-width: 100%
    }
    div.dnnRegistrationForm .dnnForm {
        width: 100%
    }
}

.btn-danger:visited {
    color: #fff
}

footer .container .row>div {
    margin-bottom: 0 !important
}

.col-xs-1,
.col-sm-1,
.col-md-1,
.col-lg-1,
.col-xs-2,
.col-sm-2,
.col-md-2,
.col-lg-2,
.col-xs-3,
.col-sm-3,
.col-md-3,
.col-lg-3,
.col-xs-4,
.col-sm-4,
.col-md-4,
.col-lg-4,
.col-xs-5,
.col-sm-5,
.col-md-5,
.col-lg-5,
.col-xs-6,
.col-sm-6,
.col-md-6,
.col-lg-6,
.col-xs-7,
.col-sm-7,
.col-md-7,
.col-lg-7,
.col-xs-8,
.col-sm-8,
.col-md-8,
.col-lg-8,
.col-xs-9,
.col-sm-9,
.col-md-9,
.col-lg-9,
.col-xs-10,
.col-sm-10,
.col-md-10,
.col-lg-10,
.col-xs-11,
.col-sm-11,
.col-md-11,
.col-lg-11,
.col-xs-12,
.col-sm-12,
.col-md-12,
.col-lg-12 {
    min-height: 0
}

blockquote cite {
    display: inline;
    color: #777;
    font-size: inherit
}

header div.search input.NormalTextBox:first-child {
    -moz-border-radius: 20px;
    -webkit-border-radius: 20px;
    border-radius: 20px;
    width: 170px;
    font-size: .9em;
    padding: 6px 32px 6px 12px;
    height: 34px;
    -moz-transition: all .2s ease-in .2s;
    -o-transition: all .2s ease-in .2s;
    -webkit-transition: all .2s ease-in .2s;
    transition: all .2s ease-in .2s
}

header div.search input.NormalTextBox:focus {
    width: 220px;
    border-color: #ccc;
    outline: none
}

header div.search input.NormalTextBox {
    display: block;
    float: left;
    width: 100%;
    height: 34px;
    padding: 6px 12px;
    font-size: 14px;
    line-height: 1.428571429;
    color: #555;
    vertical-align: middle;
    background-color: #fff;
    background-image: none;
    border: 1px solid #ccc;
    border-radius: 4px;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
    -webkit-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
    transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s
}

header .icon-search {
    border: 0;
    background: url('Resources/img/search.png') no-repeat center center;
    position: absolute;
    top: 0;
    right: 4px;
    padding: 10px;
    text-decoration: none
}

ul,
ol {
    margin-left: 0;
    margin-right: 0;
    padding-left: 40px
}

li p {
    line-height: 24px
}

header .header-top.header-top-style-2 div.social-icons {
    float: left;
    margin: 0;
    clear: none
}

header .header-top.header-top-style-2 .social-icons {
    margin: 14px 5px 0;
    line-height: normal
}

.ModConsoleC .console {
    width: auto;
    background-color: transparent
}

.ModConsoleC .console-mouseon {
    background-color: #ebedf0
}

@media(max-width:991px) {
    header nav ul.nav-main li a i.fa-caret-down,
    header nav ul.nav-main li a em.fa-caret-down,
    header nav ul.nav-main .dropdown-submenu i.fa-caret-down,
    header nav ul.nav-main .dropdown-submenu em.fa-caret-down {
        font-size: 25px
    }
    header .header-top {
        display: block
    }
    header.clean-top .header-top {
        border-bottom: 1px solid #ededed;
        background-color: #f4f4f4;
        margin-top: -8px
    }
    header div.search {
        display: none
    }
    header .social-icons {
        margin-top: 13px
    }
    header nav ul.nav-main li.mega-menu-item.opened ul.dropdown-menu>li>a {
        color: #fff
    }
}

footer .copyright a {
    margin-left: 5px;
    margin-right: 5px
}

footer .copyright span {
    margin-right: 5px
}

.icon {
    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
}

.icon-map-marker:before {
    content: ""
}

.icon-phone:before {
    content: ""
}

.icon-envelope:before {
    content: ""
}

.custom-underline {
    background: url(Resources/img/custom-underline.png) no-repeat center 100%;
    padding-bottom: 25px;
    font-size: 1.5em
}

.feature-box-icon i.fa.text-color-primary {
    line-height: 32px
}

p .font-size-sm {
    font-size: .9em !important
}

.center .font-size-md {
    font-size: 1em !important
}

@media(min-width:992px) {
    .mockup-landing-page {
        margin-top: -120px
    }
}

section.section.section-with-mockup {
    margin-top: 120px
}

.semi-bold {
    font-weight: 600
}

.dnnFormItem .dnnLoginActions .dnnActions li {
    margin-bottom: -20px
}

.dnnLogin .dnnLoginService,
div.dnnRegistrationForm {
    border-radius: 8px;
    border: 1px solid #ccc;
    border-top-width: 4px;
    padding: 30px 30px 10px 30px;
    border-top-color: #08c;
    width: 100%
}

.dnnLogin .dnnLoginService .dnnFormItem>.dnnSecondaryAction,
.dnnRegistrationForm ul#dnn_ctr_Register_actionsRow li a.dnnSecondaryAction {
    text-decoration: none;
    background: none;
    border: none;
    box-shadow: none;
    color: #08c
}

.dnnActions li#dnn_ctr_Login_Login_DNN_liPassword a.dnnSecondaryAction {
    text-decoration: none;
    background: none;
    border: none;
    box-shadow: none;
    color: #08c
}

.dnnActions li#dnn_ctr_Login_Login_DNN_liRegister .dnnSecondaryAction:hover,
a.dnnSecondaryAction:hover {
    background-color: #0099e6
}

.dnnLogin .dnnFormItem label.dnnFormLabel,
.dnnRegistrationForm .dnnLabel,
.dnnLogin .dnnFormItem span.dnnFormLabel {
    margin-bottom: 5px !important;
    text-align: left !important;
    width: 100% !important
}

.dnnLogin .dnnLoginService input[type="text"],
.dnnLoginService input[type="password"],
.dnnRegistrationForm .dnnFormItem input[type="text"],
.dnnRegistrationForm .dnnFormItem input[type="password"],
.dnnRegistrationForm .dnnFormItem input[type="email"],
.dnnRegistrationForm .dnnFormItem input[type="tel"],
.dnnRegistrationForm .dnnFormItem select {
    width: 100%;
    min-width: 100%
}

.dnnForm .dnnFormItem {
    margin-bottom: 12px
}

.dnnFormItem .dnnLoginRememberMe {
    display: block;
    margin-top: 11px
}

.dnnLogin label,
.dnnRegistrationForm label {
    color: #08c;
    font-weight: bold
}

.dnnLoginService input[type="text"],
.dnnLoginService input[type="password"] {
    height: 46px
}

.loginContent {
    margin-top: 50px
}

.dnnLogin .dnnLoginService input[type="text"],
.dnnLoginService input[type="password"],
.dnnRegistrationForm .dnnFormItem input[type="text"],
.dnnRegistrationForm .dnnFormItem input[type="password"],
.dnnRegistrationForm .dnnFormItem input[type="email"],
.dnnRegistrationForm .dnnFormItem input[type="tel"],
.dnnRegistrationForm .dnnFormItem select {
    width: 100%;
    min-width: 100%
}

.dnnLogin .LoginPanel {
    padding-right: 0;
    width: 100%
}

div.dnnRegistrationForm .dnnForm {
    width: 100%;
    margin-bottom: -30px
}

.dnnLogin a.dnnPrimaryAction,
.dnnRegistrationForm a.dnnPrimaryAction {
    color: #fff;
    text-shadow: 0 -1px 0 rgba(0, 0, 0, .25);
    background: #08c;
    border-color: #08c #08c #069;
    box-shadow: none;
    text-decoration: none
}

.dnnLogin a.dnnPrimaryAction:hover,
.dnnRegistrationForm a.dnnPrimaryAction:hover {
    border-color: #0099e6 #0099e6 #0077b3;
    background-color: #0099e6
}

.dnnRegistrationForm .dnnFormItem>.dnnLabel {
    margin-top: 0;
    width: auto
}

.dnnRegistrationForm .password-strength-container {
    margin: 0 0 18px 0 !important;
    max-width: 100% !important;
    width: 100% !important
}

.dnnFormItem .password-strength-container input[type="password"] {
    margin-bottom: 10px
}

@media(min-width:991px) {
    .dnnLogin .dnnLoginService {
        width: 100%;
        margin: 0 auto
    }
}

div.dnnRegistrationForm {
    min-width: 100%
}

.dnnActions a.dnnSecondaryAction {
    text-decoration: none
}

.LoginPanel .dnnFormItem>.dnnLabel {
    padding-right: 0;
    width: 30%;
    margin: 6px 18px 0 0;
    float: none
}

body.mobileView.dnnFormPopup.dnnFormPopupMobileView .dnnRegistrationForm .dnnFormItem .password-strength-container input[type="password"] {
    margin: 0;
    width: 100%
}

body.mobileView.dnnFormPopup.dnnFormPopupMobileView .dnnFormMessage {
    padding: 10px
}

.loginContent .dnnLoginActions ul.dnnActions.dnnClear {
    padding: 0
}

.btn-text-indent {
    text-indent: -9999px;
    position: absolute
}

section.video {
    -webkit-transform: translate3d(0, 0, 0);
    background-position: 50% 50%;
    background-repeat: no-repeat;
    padding: 50px 0;
    position: relative;
    overflow: hidden;
    width: 100%
}

section.video .container {
    position: relative;
    z-index: 3
}

section.video .video-overlay {
    background: transparent url(Resources/img/video-overlay.png) repeat 0 0;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    z-index: 2
}

html.boxed section.video>div:first-child {
    z-index: 0 !important
}

html.boxed section.video>div:first-child video {
    z-index: 0 !important
}

.owl-carousel {
    display: none;
    width: 100%;
    -webkit-tap-highlight-color: transparent;
    position: relative;
    z-index: 1
}

.owl-carousel .owl-stage {
    position: relative;
    -ms-touch-action: pan-Y;
    -moz-backface-visibility: hidden
}

.owl-carousel .owl-stage:after {
    content: ".";
    display: block;
    clear: both;
    visibility: hidden;
    line-height: 0;
    height: 0
}

.owl-carousel .owl-stage-outer {
    position: relative;
    overflow: hidden;
    -webkit-transform: translate3d(0, 0, 0)
}

.owl-carousel .owl-wrapper,
.owl-carousel .owl-item {
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    -ms-backface-visibility: hidden;
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0)
}

.owl-carousel .owl-item {
    position: relative;
    min-height: 1px;
    float: left;
    -webkit-backface-visibility: hidden;
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none
}

.owl-carousel .owl-item img {
    display: block;
    width: 100%
}

.owl-carousel .owl-nav.disabled,
.owl-carousel .owl-dots.disabled {
    display: none
}

.owl-carousel .owl-nav .owl-prev,
.owl-carousel .owl-nav .owl-next,
.owl-carousel .owl-dot {
    cursor: pointer;
    cursor: hand;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none
}

.owl-carousel.owl-loaded {
    display: block
}

.owl-carousel.owl-loading {
    opacity: 0;
    display: block
}

.owl-carousel.owl-hidden {
    opacity: 0
}

.owl-carousel.owl-refresh .owl-item {
    visibility: hidden
}

.owl-carousel.owl-drag .owl-item {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none
}

.owl-carousel.owl-grab {
    cursor: move;
    cursor: grab
}

.owl-carousel.owl-rtl {

    direction: rtl
}

.owl-carousel.owl-rtl .owl-item {
    float: right
}

.no-js .owl-carousel {
    display: block
}

.owl-carousel .animated {
    animation-duration: 1000ms;
    animation-fill-mode: both
}

.owl-carousel .owl-animated-in {
    z-index: 0
}

.owl-carousel .owl-animated-out {
    z-index: 1
}

.owl-carousel .fadeOut {
    animation-name: fadeOut
}

@keyframes fadeOut {
    0% {
        opacity: 1
    }
    100% {
        opacity: 0
    }
}

.owl-height {
    transition: height 500ms ease-in-out
}

.owl-carousel .owl-item .owl-lazy {
    opacity: 0;
    transition: opacity 400ms ease
}

.owl-carousel .owl-item img.owl-lazy {
    transform-style: preserve-3d
}

.owl-carousel .owl-video-wrapper {
    position: relative;
    height: 100%;
    background: #000
}

.owl-carousel .owl-video-play-icon {
    position: absolute;
    height: 80px;
    width: 80px;
    left: 50%;
    top: 50%;
    margin-left: -40px;
    margin-top: -40px;
    background: url("owl.video.play.png") no-repeat;
    cursor: pointer;
    z-index: 1;
    -webkit-backface-visibility: hidden;
    transition: transform 100ms ease
}

.owl-carousel .owl-video-play-icon:hover {
    -ms-transform: scale(1.3, 1.3);
    transform: scale(1.3, 1.3)
}

.owl-carousel .owl-video-playing .owl-video-tn,
.owl-carousel .owl-video-playing .owl-video-play-icon {
    display: none
}

.owl-carousel .owl-video-tn {
    opacity: 0;
    height: 100%;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;
    transition: opacity 400ms ease
}

.owl-carousel .owl-video-frame {
    position: relative;
    z-index: 1;
    height: 100%;
    width: 100%
}

.owl-theme .owl-nav {
    margin-top: 10px;
    text-align: center;
    -webkit-tap-highlight-color: transparent
}

.owl-theme .owl-nav [class*='owl-'] {
    color: #fff;
    font-size: 14px;
    margin: 5px;
    padding: 4px 7px;
    background: #d6d6d6;
    display: inline-block;
    cursor: pointer;
    border-radius: 3px
}

.owl-theme .owl-nav [class*='owl-']:hover {
    background: #869791;
    color: #fff;
    text-decoration: none
}

.owl-theme .owl-nav .disabled {
    opacity: .5;
    cursor: default
}

.owl-theme .owl-nav.disabled+.owl-dots {
    margin-top: 10px
}

.owl-theme .owl-dots {
    text-align: center;
    -webkit-tap-highlight-color: transparent
}

.owl-theme .owl-dots .owl-dot {
    display: inline-block;
    zoom: 1;
    *display: inline
}

.owl-theme .owl-dots .owl-dot span {
    width: 10px;
    height: 10px;
    margin: 5px 7px;
    background: #d6d6d6;
    display: block;
    -webkit-backface-visibility: visible;
    transition: opacity 200ms ease;
    border-radius: 30px
}

.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
    background: #869791
}

.owl-carousel {
    margin-bottom: 20px
}

.owl-carousel .thumbnail {
    margin-right: 1px
}

.owl-carousel .item-video {
    height: 300px
}

.owl-carousel .owl-nav {
    top: 50%;
    position: absolute;
    margin-top: -20px;
    width: 100%
}

.owl-carousel .owl-nav .owl-prev,
.owl-carousel .owl-nav .owl-next {
    display: inline-block;
    position: absolute;
    width: 30px;
    height: 30px
}

.owl-carousel .owl-nav .owl-prev {
    left: -5px
}

.owl-carousel .owl-nav .owl-prev:before {
    font-family: FontAwesome;
    content: "";
    position: relative;
    left: -1px;
    top: 1px
}

.owl-carousel .owl-nav .owl-next {
    right: -5px
}

.owl-carousel .owl-nav .owl-next:before {
    font-family: FontAwesome;
    content: "";
    position: relative;
    left: 2px;
    top: 1px
}

.owl-carousel.stage-margin .owl-stage-outer {
    padding-left: 0 !important;
    padding-right: 0 !important;
    margin-left: 40px !important;
    margin-right: 40px !important
}

.owl-carousel.show-nav-hover .owl-nav {
    opacity: 0;
    -webkit-transition: opacity .2s ease-in-out;
    -moz-transition: opacity .2s ease-in-out;
    transition: opacity .2s ease-in-out
}

.owl-carousel.show-nav-hover .owl-nav .owl-prev {
    left: -20px
}

.owl-carousel.show-nav-hover .owl-nav .owl-next {
    right: -20px
}

.owl-carousel.show-nav-hover:hover .owl-nav {
    opacity: 1
}

.owl-carousel.show-nav-title .owl-controls .owl-nav {
    top: 0;
    right: 0;
    margin-top: -45px;
    width: auto
}

.owl-carousel.show-nav-title .owl-controls .owl-nav [class*="owl-"],
.owl-carousel.show-nav-title .owl-controls .owl-nav [class*="owl-"]:hover {
    font-size: 18px;
    background: transparent;
    width: 18px;
    font-size: 18px
}

.owl-carousel.show-nav-title .owl-controls .owl-nav .owl-prev {
    left: -45px
}

.owl-carousel.rounded-nav .owl-controls .owl-nav [class*="owl-"],
.owl-carousel.rounded-nav .owl-controls .owl-nav [class*="owl-"]:hover {
    padding: 3px 7px;
    border-radius: 50%;
    background: transparent;
    border: 1px solid #999 !important;
    color: #999
}

.owl-carousel.nav-bottom .owl-controls .owl-nav {
    position: static;
    margin: 0;
    padding: 0;
    width: auto
}

.owl-carousel.nav-bottom .owl-controls .owl-nav .owl-prev,
.owl-carousel.nav-bottom .owl-controls .owl-nav .owl-next {
    position: static
}

.owl-carousel.nav-inside .owl-controls {
    bottom: 2px;
    margin-top: 10px;
    position: absolute;
    right: 6px
}

.owl-carousel.full-width .owl-controls .owl-nav,
.owl-carousel.big-nav .owl-controls .owl-nav {
    margin-top: -30px
}

.owl-carousel.full-width .owl-controls .owl-nav [class*="owl-"],
.owl-carousel.full-width .owl-controls .owl-nav [class*="owl-"]:hover,
.owl-carousel.big-nav .owl-controls .owl-nav [class*="owl-"],
.owl-carousel.big-nav .owl-controls .owl-nav [class*="owl-"]:hover {
    height: auto;
    padding: 20px 0
}

.owl-carousel.full-width .owl-controls .owl-nav .owl-prev,
.owl-carousel.big-nav .owl-controls .owl-nav .owl-prev {
    border-radius: 0 4px 4px 0
}

.owl-carousel.full-width .owl-controls .owl-nav .owl-next,
.owl-carousel.big-nav .owl-controls .owl-nav .owl-next {
    border-radius: 4px 0 0 4px
}

.owl-carousel.top-border {
    border-top: 1px solid #dbdbdb;
    padding-top: 18px
}

.owl-carousel-spaced {
    margin-left: -5px
}

.owl-carousel-spaced .owl-item>div {
    margin: 5px
}

.owl-carousel.testimonials img {
    display: inline-block;
    height: 70px;
    width: 70px
}

@media(max-width:479px) {
    .owl-carousel-spaced {
        margin-left: 0
    }
}

.carousel-areas .owl-carousel:first-child img {
    border-radius: 6px 6px 0 0
}

.carousel-areas {
    background: transparent url('Resources/img/patterns/stripes.png') repeat 0 0;
    margin-bottom: -10px;
    padding: 10px 10px 0 10px;
    border-radius: 6px 6px 0 0
}

.carousel-areas .owl-carousel .owl-nav .owl-prev {
    left: -55px
}

.carousel-areas .owl-carousel .owl-nav .owl-next {
    right: -55px
}

.carousel-areas .owl-carousel {
    box-shadow: 0 5px 5px rgba(0, 0, 0, .2)
}

.owl-carousel.stage-margin .owl-stage-outer {
    padding-left: 0!important;
    padding-right: 0!important;
    margin-left: 40px!important;
    margin-right: 40px!important
}

.owl-carousel .owl-nav .owl-next:before {
    font-family: FontAwesome;
    content: "";
    position: relative;
    left: 2px;
    top: 1px
}

.owl-carousel .owl-nav .owl-prev:before {
    font-family: FontAwesome;
    content: "";
    position: relative;
    left: -1px;
    top: 1px
}

.owl-carousel .owl-nav .owl-next,
.owl-carousel .owl-nav .owl-prev {
    display: inline-block;
    position: absolute;
    width: 30px;
    height: 30px
}

.owl-carousel .owl-nav .owl-prev {
    left: -5px
}

.owl-carousel .owl-nav .owl-next {
    right: -5px
}

.owl-carousel.show-nav-title.owl-team-carousel .owl-controls .owl-nav {
    top: 50%;
    margin-top: -45px;
    width: 100%;
    left: 0;
    right: 0
}

.owl-carousel.show-nav-title.owl-team-carousel .owl-nav .owl-prev {
    left: -40px
}

.owl-carousel.show-nav-title.owl-team-carousel .owl-nav .owl-next {
    right: -30px
}

@media(max-width:991px) {
    .owl-carousel.show-nav-title.owl-team-carousel .owl-nav .owl-prev {
        left: -25px
    }
    .owl-carousel.show-nav-title.owl-team-carousel .owl-nav .owl-next {
        right: -15px
    }
}

.owl-carousel.show-nav-title .owl-nav {
    top: 0;
    right: 0;
    margin-top: -45px;
    width: auto
}

.owl-carousel.show-nav-title .owl-nav [class*="owl-"],
.owl-carousel.show-nav-title .owl-nav [class*="owl-"]:hover {
    font-size: 18px;
    background: transparent;
    width: 18px;
    font-size: 18px
}

.owl-carousel.show-nav-title .owl-nav .owl-prev {
    left: -45px
}

.owl-carousel.rounded-nav .owl-nav [class*="owl-"],
.owl-carousel.rounded-nav .owl-nav [class*="owl-"]:hover {
    padding: 3px 7px;
    border-radius: 50%;
    background: transparent;
    border: 1px solid #999 !important;
    color: #999
}

.owl-carousel.nav-bottom .owl-nav {
    position: static;
    margin: 0;
    padding: 0;
    width: auto
}

.owl-carousel.nav-bottom .owl-nav .owl-prev,
.owl-carousel.nav-bottom .owl-nav .owl-next {
    position: static
}

.owl-carousel.nav-inside {
    bottom: 2px;
    margin-top: 10px;
    right: 6px
}

.owl-carousel.full-width .owl-nav,
.owl-carousel.big-nav .owl-nav {
    margin-top: -30px
}

.owl-carousel.full-width .owl-nav [class*="owl-"],
.owl-carousel.full-width .owl-nav [class*="owl-"]:hover,
.owl-carousel.big-nav .owl-nav [class*="owl-"],
.owl-carousel.big-nav .owl-nav [class*="owl-"]:hover {
    height: auto;
    padding: 20px 0
}

.owl-carousel.full-width .owl-nav .owl-prev,
.owl-carousel.big-nav .owl-nav .owl-prev {
    border-radius: 0 4px 4px 0
}

.owl-carousel.full-width .owl-nav .owl-next,
.owl-carousel.big-nav .owl-nav .owl-next {
    border-radius: 4px 0 0 4px
}

.owl-carousel.show-nav-title.owl-team-carousel .owl-nav {
    top: 50%;
    margin-top: -45px;
    width: 100%;
    left: 0;
    right: 0
}

.owl-carousel .owl-dots .owl-dot {
    display: inline-block;
    zoom: 1
}

.owl-carousel .owl-dots .owl-dot span {
    width: 10px;
    height: 10px;
    margin: 5px 7px;
    background: #d6d6d6;
    display: block;
    -webkit-backface-visibility: visible;
    -webkit-transition: opacity 200ms ease;
    -moz-transition: opacity 200ms ease;
    -ms-transition: opacity 200ms ease;
    -o-transition: opacity 200ms ease;
    transition: opacity 200ms ease;
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    border-radius: 30px;
    border: 2px solid transparent
}

.owl-carousel .owl-dots {
    text-align: center;
    margin-top: 10px
}

.owl-carousel .owl-nav .owl-next,
.owl-carousel .owl-nav .owl-prev {
    text-align: center
}

.owl-carousel.nav-bottom .owl-nav {
    text-align: center;
    margin-top: 10px
}

.owl-carousel .owl-nav [class*='owl-'] {
    margin: 5px;
    webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    padding: 4px 7px
}

.owl-carousel.nav-inside.owl-drag .owl-dots {
    position: absolute;
    right: 10px;
    bottom: 10px
}

@font-face {
    font-family: 'Simple-Line-Icons';
    src: url('Resources/fonts/Simple-Line-Icons.eot');
    src: url('Resources/fonts/Simple-Line-Icons.eot?#iefix') format('embedded-opentype'), url('Resources/fonts/Simple-Line-Icons.woff') format('woff'), url('Resources/fonts/Simple-Line-Icons.ttf') format('truetype'), url('Resources/fonts/Simple-Line-Icons.svg#Simple-Line-Icons') format('svg');
    font-weight: normal;
    font-style: normal
}

[data-icon]:before {
    font-family: 'Simple-Line-Icons';
    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
}

.icon-user-female,
.icon-user-follow,
.icon-user-following,
.icon-user-unfollow,
.icon-trophy,
.icon-screen-smartphone,
.icon-screen-desktop,
.icon-plane,
.icon-notebook,
.icon-moustache,
.icon-mouse,
.icon-magnet,
.icon-energy,
.icon-emoticon-smile,
.icon-disc,
.icon-cursor-move,
.icon-crop,
.icon-credit-card,
.icon-chemistry,
.icon-user,
.icon-speedometer,
.icon-social-youtube,
.icon-social-twitter,
.icon-social-tumblr,
.icon-social-facebook,
.icon-social-dropbox,
.icon-social-dribbble,
.icon-shield,
.icon-screen-tablet,
.icon-magic-wand,
.icon-hourglass,
.icon-graduation,
.icon-ghost,
.icon-game-controller,
.icon-fire,
.icon-eyeglasses,
.icon-envelope-open,
.icon-envelope-letter,
.icon-bell,
.icon-badge,
.icon-anchor,
.icon-wallet,
.icon-vector,
.icon-speech,
.icon-puzzle,
.icon-printer,
.icon-present,
.icon-playlist,
.icon-pin,
.icon-picture,
.icon-map,
.icon-layers,
.icon-handbag,
.icon-globe-alt,
.icon-globe,
.icon-frame,
.icon-folder-alt,
.icon-film,
.icon-feed,
.icon-earphones-alt,
.icon-earphones,
.icon-drop,
.icon-drawer,
.icon-docs,
.icon-directions,
.icon-direction,
.icon-diamond,
.icon-cup,
.icon-compass,
.icon-call-out,
.icon-call-in,
.icon-call-end,
.icon-calculator,
.icon-bubbles,
.icon-briefcase,
.icon-book-open,
.icon-basket-loaded,
.icon-basket,
.icon-bag,
.icon-action-undo,
.icon-action-redo,
.icon-wrench,
.icon-umbrella,
.icon-trash,
.icon-tag,
.icon-support,
.icon-size-fullscreen,
.icon-size-actual,
.icon-shuffle,
.icon-share-alt,
.icon-share,
.icon-rocket,
.icon-question,
.icon-pie-chart,
.icon-pencil,
.icon-note,
.icon-music-tone-alt,
.icon-music-tone,
.icon-microphone,
.icon-loop,
.icon-logout,
.icon-login,
.icon-list,
.icon-like,
.icon-home,
.icon-grid,
.icon-graph,
.icon-equalizer,
.icon-dislike,
.icon-cursor,
.icon-control-start,
.icon-control-rewind,
.icon-control-play,
.icon-control-pause,
.icon-control-forward,
.icon-control-end,
.icon-calendar,
.icon-bulb,
.icon-bar-chart,
.icon-arrow-up,
.icon-arrow-right,
.icon-arrow-left,
.icon-arrow-down,
.icon-ban,
.icon-bubble,
.icon-camcorder,
.icon-camera,
.icon-check,
.icon-clock,
.icon-close,
.icon-cloud-download,
.icon-cloud-upload,
.icon-doc,
.icon-envelope,
.icon-eye,
.icon-flag,
.icon-folder,
.icon-heart,
.icon-info,
.icon-key,
.icon-link,
.icon-lock,
.icon-lock-open,
.icon-magnifier,
.icon-magnifier-add,
.icon-magnifier-remove,
.icon-paper-clip,
.icon-paper-plane,
.icon-plus,
.icon-pointer,
.icon-power,
.icon-refresh,
.icon-reload,
.icon-settings,
.icon-star,
.icon-symbol-female,
.icon-symbol-male,
.icon-target,
.icon-volume-1,
.icon-volume-2,
.icon-volume-off,
.icon-users {
    font-family: 'Simple-Line-Icons';
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased
}

.icon-user-female:before {
    content: ""
}

.icon-user-follow:before {
    content: ""
}

.icon-user-following:before {
    content: ""
}

.icon-user-unfollow:before {
    content: ""
}

.icon-trophy:before {
    content: ""
}

.icon-screen-smartphone:before {
    content: ""
}

.icon-screen-desktop:before {
    content: ""
}

.icon-plane:before {
    content: ""
}

.icon-notebook:before {
    content: ""
}

.icon-moustache:before {
    content: ""
}

.icon-mouse:before {
    content: ""
}

.icon-magnet:before {
    content: ""
}

.icon-energy:before {
    content: ""
}

.icon-emoticon-smile:before {
    content: ""
}

.icon-disc:before {
    content: ""
}

.icon-cursor-move:before {
    content: ""
}

.icon-crop:before {
    content: ""
}

.icon-credit-card:before {
    content: ""
}

.icon-chemistry:before {
    content: ""
}

.icon-user:before {
    content: ""
}

.icon-speedometer:before {
    content: ""
}

.icon-social-youtube:before {
    content: ""
}

.icon-social-twitter:before {
    content: ""
}

.icon-social-tumblr:before {
    content: ""
}

.icon-social-facebook:before {
    content: ""
}

.icon-social-dropbox:before {
    content: ""
}

.icon-social-dribbble:before {
    content: ""
}

.icon-shield:before {
    content: ""
}

.icon-screen-tablet:before {
    content: ""
}

.icon-magic-wand:before {
    content: ""
}

.icon-hourglass:before {
    content: ""
}

.icon-graduation:before {
    content: ""
}

.icon-ghost:before {
    content: ""
}

.icon-game-controller:before {
    content: ""
}

.icon-fire:before {
    content: ""
}

.icon-eyeglasses:before {
    content: ""
}

.icon-envelope-open:before {
    content: ""
}

.icon-envelope-letter:before {
    content: ""
}

.icon-bell:before {
    content: ""
}

.icon-badge:before {
    content: ""
}

.icon-anchor:before {
    content: ""
}

.icon-wallet:before {
    content: ""
}

.icon-vector:before {
    content: ""
}

.icon-speech:before {
    content: ""
}

.icon-puzzle:before {
    content: ""
}

.icon-printer:before {
    content: ""
}

.icon-present:before {
    content: ""
}

.icon-playlist:before {
    content: ""
}

.icon-pin:before {
    content: ""
}

.icon-picture:before {
    content: ""
}

.icon-map:before {
    content: ""
}

.icon-layers:before {
    content: ""
}

.icon-handbag:before {
    content: ""
}

.icon-globe-alt:before {
    content: ""
}

.icon-globe:before {
    content: ""
}

.icon-frame:before {
    content: ""
}

.icon-folder-alt:before {
    content: ""
}

.icon-film:before {
    content: ""
}

.icon-feed:before {
    content: ""
}

.icon-earphones-alt:before {
    content: ""
}

.icon-earphones:before {
    content: ""
}

.icon-drop:before {
    content: ""
}

.icon-drawer:before {
    content: ""
}

.icon-docs:before {
    content: ""
}

.icon-directions:before {
    content: ""
}

.icon-direction:before {
    content: ""
}

.icon-diamond:before {
    content: ""
}

.icon-cup:before {
    content: ""
}

.icon-compass:before {
    content: ""
}

.icon-call-out:before {
    content: ""
}

.icon-call-in:before {
    content: ""
}

.icon-call-end:before {
    content: ""
}

.icon-calculator:before {
    content: ""
}

.icon-bubbles:before {
    content: ""
}

.icon-briefcase:before {
    content: ""
}

.icon-book-open:before {
    content: ""
}

.icon-basket-loaded:before {
    content: ""
}

.icon-basket:before {
    content: ""
}

.icon-bag:before {
    content: ""
}

.icon-action-undo:before {
    content: ""
}

.icon-action-redo:before {
    content: ""
}

.icon-wrench:before {
    content: ""
}

.icon-umbrella:before {
    content: ""
}

.icon-trash:before {
    content: ""
}

.icon-tag:before {
    content: ""
}

.icon-support:before {
    content: ""
}

.icon-size-fullscreen:before {
    content: ""
}

.icon-size-actual:before {
    content: ""
}

.icon-shuffle:before {
    content: ""
}

.icon-share-alt:before {
    content: ""
}

.icon-share:before {
    content: ""
}

.icon-rocket:before {
    content: ""
}

.icon-question:before {
    content: ""
}

.icon-pie-chart:before {
    content: ""
}

.icon-pencil:before {
    content: ""
}

.icon-note:before {
    content: ""
}

.icon-music-tone-alt:before {
    content: ""
}

.icon-music-tone:before {
    content: ""
}

.icon-microphone:before {
    content: ""
}

.icon-loop:before {
    content: ""
}

.icon-logout:before {
    content: ""
}

.icon-login:before {
    content: ""
}

.icon-list:before {
    content: ""
}

.icon-like:before {
    content: ""
}

.icon-home:before {
    content: ""
}

.icon-grid:before {
    content: ""
}

.icon-graph:before {
    content: ""
}

.icon-equalizer:before {
    content: ""
}

.icon-dislike:before {
    content: ""
}

.icon-cursor:before {
    content: ""
}

.icon-control-start:before {
    content: ""
}

.icon-control-rewind:before {
    content: ""
}

.icon-control-play:before {
    content: ""
}

.icon-control-pause:before {
    content: ""
}

.icon-control-forward:before {
    content: ""
}

.icon-control-end:before {
    content: ""
}

.icon-calendar:before {
    content: ""
}

.icon-bulb:before {
    content: ""
}

.icon-bar-chart:before {
    content: ""
}

.icon-arrow-up:before {
    content: ""
}

.icon-arrow-right:before {
    content: ""
}

.icon-arrow-left:before {
    content: ""
}

.icon-arrow-down:before {
    content: ""
}

.icon-ban:before {
    content: ""
}

.icon-bubble:before {
    content: ""
}

.icon-camcorder:before {
    content: ""
}

.icon-camera:before {
    content: ""
}

.icon-check:before {
    content: ""
}

.icon-clock:before {
    content: ""
}

.icon-close:before {
    content: ""
}

.icon-cloud-download:before {
    content: ""
}

.icon-cloud-upload:before {
    content: ""
}

.icon-doc:before {
    content: ""
}

.icon-envelope:before {
    content: ""
}

.icon-eye:before {
    content: ""
}

.icon-flag:before {
    content: ""
}

.icon-folder:before {
    content: ""
}

.icon-heart:before {
    content: ""
}

.icon-info:before {
    content: ""
}

.icon-key:before {
    content: ""
}

.icon-link:before {
    content: ""
}

.icon-lock:before {
    content: ""
}

.icon-lock-open:before {
    content: ""
}

.icon-magnifier:before {
    content: ""
}

.icon-magnifier-add:before {
    content: ""
}

.icon-magnifier-remove:before {
    content: ""
}

.icon-paper-clip:before {
    content: ""
}

.icon-paper-plane:before {
    content: ""
}

.icon-plus:before {
    content: ""
}

.icon-pointer:before {
    content: ""
}

.icon-power:before {
    content: ""
}

.icon-refresh:before {
    content: ""
}

.icon-reload:before {
    content: ""
}

.icon-settings:before {
    content: ""
}

.icon-star:before {
    content: ""
}

.icon-symbol-female:before {
    content: ""
}

.icon-symbol-male:before {
    content: ""
}

.icon-target:before {
    content: ""
}

.icon-volume-1:before {
    content: ""
}

.icon-volume-2:before {
    content: ""
}

.icon-volume-off:before {
    content: ""
}

.icon-users:before {
    content: ""
}

.type-text-lg {
    font-size: 60px;
    font-weight: 600;
    line-height: 1.4;
    color: #000
}

.type-text-sm {
    font-size: 30px;
    font-weight: 600;
    line-height: 1.4;
    color: #000
}

.type-input {
    width: 40%;
    padding: 5px 12px;
    font-size: 16px
}

.type-wrap-3 .typed-cursor {
    font-size: 60px;
    color: #fff
}

@media(max-width:991px) {
    .type-text-lg {
        font-size: 40px
    }
    .type-text-sm {
        font-size: 20px
    }
    .type-wrap-3 .typed-cursor {
        font-size: 40px
    }
}

.fc-slideshow {
    position: relative;
    width: 338px;
    height: 338px;
    border-radius: 50%;
    margin: 0 auto;
    -webkit-perspective: 1200px;
    -moz-perspective: 1200px;
    perspective: 1200px;
    top: 6px
}

.fc-slideshow nav {
    top: 0;
    height: 100%;
    width: 100%;
    position: absolute;
    z-index: 10000;
    display: none
}

.fc-slideshow nav>div {
    position: absolute;
    height: 100%;
    top: 0;
    width: 50%
}

.fc-slideshow nav .fc-left {
    left: 0
}

.fc-slideshow nav .fc-right {
    right: 0
}

.fc-slideshow nav>div span {
    height: 33%;
    width: 100%;
    position: absolute;
    left: 0
}

.fc-slideshow nav>div span:first-child {
    top: 0
}

.fc-slideshow nav>div span:nth-child(2) {
    top: 33%
}

.fc-slideshow nav>div span:nth-child(3) {
    top: 66%
}

.fc-slideshow nav i,
.no-csstransforms3d .fc-slideshow nav>div span {
    position: absolute;
    width: 100%;
    height: 40px;
    top: 50%;
    margin-top: -20px;
    pointer-events: none;
    opacity: 0;
    -webkit-backface-visibility: hidden;
    -webkit-transition: all .2s ease;
    -moz-backface-visibility: hidden;
    -moz-transition: all .2s ease;
    backface-visibility: hidden;
    transition: all .2s ease
}

.no-csstransforms3d .fc-slideshow nav>div span {
    z-index: 1000;
    width: 40px;
    background: rgba(0, 0, 0, 0)
}

.no-csstransforms3d .fc-slideshow nav .fc-left span {
    left: -80px
}

.no-csstransforms3d .fc-slideshow nav .fc-right span {
    right: -80px;
    left: auto
}

.no-csstransforms3d .fc-slideshow nav i,
.no-csstransforms3d .fc-slideshow nav em {
    width: 40px;
    cursor: pointer
}

.fc-slideshow nav .fc-left i,
.fc-slideshow nav .fc-left em {
    -webkit-transform-origin: 100% 50%;
    -moz-transform-origin: 100% 50%;
    transform-origin: 100% 50%;
    text-align: left
}

.fc-slideshow nav .fc-right i,
.fc-slideshow nav .fc-right em {
    -webkit-transform-origin: 0% 50%;
    -moz-transform-origin: 0% 50%;
    transform-origin: 0% 50%;
    text-align: right
}

.csstransforms3d .fc-slideshow nav>div span:hover~i,
.csstransforms3d .fc-slideshow nav>div span:hover~em,
.no-csstransforms3d .fc-slideshow nav i,
.no-csstransforms3d .fc-slideshow nav em,
.no-csstransforms3d .fc-slideshow nav>div span {
    opacity: 1
}

.csstransforms3d .fc-slideshow nav>div span:nth-child(2):hover~i,
.csstransforms3d .fc-slideshow nav>div span:nth-child(2):hover~em {
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    transform: rotate(0deg)
}

.csstransforms3d .fc-slideshow nav>.fc-left span:first-child:hover~i,
.csstransforms3d .fc-slideshow nav>.fc-left span:first-child:hover~em,
.csstransforms3d .fc-slideshow nav>.fc-right span:nth-child(3):hover~i,
.csstransforms3d .fc-slideshow nav>.fc-right span:nth-child(3):hover~em {
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    transform: rotate(45deg)
}

.csstransforms3d .fc-slideshow nav>.fc-right span:first-child:hover~i,
.csstransforms3d .fc-slideshow nav>.fc-right span:first-child:hover~em,
.csstransforms3d .fc-slideshow nav>.fc-left span:nth-child(3):hover~i,
.csstransforms3d .fc-slideshow nav>.fc-left span:nth-child(3):hover~em {
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    transform: rotate(-45deg)
}

ul.fc-slides {
    list-style: none;
    margin: 0;
    padding: 0
}

ul.fc-slides li {
    display: none
}

.no-js ul.fc-slides li {
    display: block
}

.fc-flip {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    -webkit-transform-style: preserve-3d;
    -moz-transform-style: preserve-3d;
    transform-style: preserve-3d
}

.fc-flip div {
    width: 100%;
    height: 100%;
    position: absolute;
    border-radius: 50%;
    top: 0;
    left: 0;
    -webkit-transform-style: preserve-3d;
    -moz-transform-style: preserve-3d;
    transform-style: preserve-3d;
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    backface-visibility: hidden
}

.fc-flip .fc-back {
    -webkit-transform: rotateY(-180deg);
    -moz-transform: rotateY(-180deg);
    transform: rotateY(-180deg)
}

.fc-slideshow img {
    border-radius: 50%
}

.fc-slideshow h3 {
    position: absolute;
    color: #fff;
    top: 50%;
    margin-top: 30px;
    line-height: 50px;
    height: 50px;
    left: 80px;
    right: 80px;
    background: #ff514c;
    font-size: 22px;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-align: center;
    border-radius: 20% 10% 50% 5%/25% 10% 30% 75%
}

.fc-overlay-light,
.fc-overlay-dark {
    opacity: 0
}

.fc-overlay-light {
    background: rgba(255, 255, 255, 1)
}

.fc-overlay-dark {
    background: rgba(0, 0, 0, 1)
}

.no-js .fc-slideshow {
    height: auto;
    box-shadow: none
}

.no-js .fc-slideshow h3 {
    position: relative;
    width: auto;
    height: auto;
    left: auto;
    right: auto;
    top: auto;
    margin: 5px
}


/*!
 * Slidebars - A jQuery Framework for Off-Canvas Menus and Sidebars
 * Version: 2.0.2
 * Url: http://www.adchsm.com/slidebars/
 * Author: Adam Charles Smith
 * Author url: http://www.adchsm.com/
 * License: MIT
 * License url: http://www.adchsm.com/slidebars/license/
 */

[off-canvas*=reveal],
[off-canvas*=shift] {
    z-index: 0
}

[canvas=containers],
[off-canvas],
body,
html {
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box
}

[canvas=containers] {
    width: 100%;
    height: 100%;
    -webkit-overflow-scrolling: touch
}

[canvas=containers]:after,
[canvas=containers]:before {
    clear: both;
    content: '';
    display: table
}

[off-canvas] {
    display: none;
    position: fixed;
    overflow: hidden;
    overflow-y: auto;
    background-color: #000;
    color: #fff;
    -webkit-overflow-scrolling: touch
}

[off-canvas*=top] {
    width: 100%;
    height: 255px;
    top: 0
}

[off-canvas*=right] {
    width: 255px;
    height: 100%;
    top: 0;
    right: 0
}

[off-canvas*=bottom] {
    width: 100%;
    height: 255px;
    bottom: 0
}

[off-canvas*=left] {
    width: 255px;
    height: 100%;
    top: 0;
    left: 0
}

[off-canvas*=overlay] {
    z-index: 9999
}

[canvas],
[off-canvas] {
    -webkit-transition: -webkit-transform .3s;
    transition: transform .3s;
    -webkit-backface-visibility: hidden
}

@media print {
    [canvas] {
        -webkit-transform: translate(0, 0)!important;
        -ms-transform: translate(0, 0)!important;
        transform: translate(0, 0)!important
    }
    [off-canvas] {
        display: none!important
    }
}

[class*=js-] {
    cursor: pointer
}

.restaurant .col-half-section {
    width: 100%;
    min-height: 1px;
    padding-left: 15px;
    padding-right: 15px;
    position: relative;
    max-width: 570px;
    float: left;
    margin-left: 30px;
    margin-right: 0
}

.restaurant .col-half-section.col-half-section-right {
    float: right;
    margin-left: 0;
    margin-right: 30px
}

.restaurant .thumb-info-side-image .thumb-info-side-image-wrapper {
    float: left;
    margin-right: 20px
}

.restaurant .thumb-info-side-image .thumb-info-caption .thumb-info-caption-text {
    padding: 17px
}

.restaurant section.section-quaternary p,
.restaurant section.section-tertiary p {
    color: #5e5e5e
}

.restaurant .special-menu {
    list-style: none;
    margin: 0;
    padding: 0;
    text-align: left
}

.restaurant .special-menu li {
    margin: 0 0 32px 0;
    padding: 0;
    clear: both
}

.restaurant .special-menu img {
    float: left;
    margin: 0 25px 0 0;
    max-width: 68px
}

.restaurant .special-menu h3 {
    font-size: 24px;
    padding: 7px 0 4px 95px;
    margin: 0;
    text-transform: none;
    font-style: italic
}

.restaurant .special-menu h3 em {
    font-size: 16px
}

.restaurant .special-menu p {
    font-size: 16px;
    font-style: italic;
    margin: 0 0 0 95px;
    position: relative;
    display: block
}

.restaurant .special-menu p:before {
    border-bottom: 2px dotted #ddd;
    content: "";
    height: 1px;
    left: 0%;
    position: absolute;
    bottom: 5px;
    width: 100%;
    z-index: 1
}

.restaurant .special-menu p span {
    background: #fff;
    display: inline-block;
    position: relative;
    z-index: 2;
    padding: 0 10px 0 0
}

.restaurant .special-menu .special-menu-price {
    background: #fff;
    display: inline-block;
    float: right;
    font-size: 22px;
    margin-top: -26px;
    padding: 0 0 0 10px;
    position: relative;
    z-index: 3
}

.restaurant section.section-no-border {
    border: 0
}

.restaurant .thumb-info.thumb-info-centered-icons .thumb-info-action-custom a {
    display: block;
    width: 100%;
    height: 100%
}

.restaurant .thumb-info-caption-text-custom {
    background: #f4f4f4;
    margin: 0 !important;
    padding: 14px !important
}

.restaurant .custom-divider {
    height: 56px;
    background: transparent url(Resources/img/custom-divider-1.png) no-repeat center center
}

.restaurant .contact-details p {
    font-size: 15px;
    padding: 45px 0 10px 0;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .25)
}

.restaurant .contact-details p .separator {
    display: inline-block;
    padding: 0 10px;
    font-size: 10px;
    position: relative;
    top: -2px
}

.body>#footer .restaurant .contact-details p a,
.body>#footer .restaurant .link {
    color: rgba(255, 255, 255, .25) !important;
    text-decoration: none
}

.body>#footer .restaurant .contact-details p a:hover,
.body>#footer .restaurant a.link:hover {
    color: #fff !important
}

.restaurant .match-height .thumb-info-side-image .thumb-info-side-image-wrapper img {
    width: 165px
}

.restaurant .match-height {
    min-height: 625px
}

.restaurant .btn-primary,
.restaurant .thumb-info-custom img {
    border-radius: 0
}

@media(max-width:1199px) {
    .restaurant .col-half-section {
        max-width: 468px
    }
}

@media(max-width:991px) {
    .restaurant .p-none:first-child section.section {
        margin-bottom: 0;
        margin-top: 30px
    }
    .restaurant .p-none section.section {
        margin-bottom: 0;
        margin-top: 0
    }
    .restaurant .col-half-section {
        max-width: 740px;
        float: none !important;
        margin: 0 auto !important;
        padding-left: 30px !important;
        padding-right: 30px !important
    }
    .restaurant .match-height .thumb-info-side-image .thumb-info-side-image-wrapper img {
        max-width: 120px
    }
    .restaurant .thumb-info-blog-custom img {
        max-width: 120px;
        margin-bottom: 10px !important
    }
    .restaurant .special-menu p {
        padding-bottom: 35px
    }
}

.event .custom-speaker-card {
    border-color: #e5e8eb;
    border-width: 1px;
    border-style: solid;
    overflow: hidden;
    box-shadow: 0 23px 32px 0 transparent;
    -webkit-transition: box-shadow .3s ease;
    -moz-transition: box-shadow .3s ease;
    transition: box-shadow .3s ease
}

.event .custom-speaker-card .speaker-photo {
    overflow: hidden
}

.event .custom-speaker-card .speaker-photo img {
    -webkit-transition: -webkit-transform .3s ease;
    -moz-transition: -moz-transform .3s ease;
    transition: transform .3s ease;
    width: 100%
}

.event .custom-speaker-card .speaker-info {
    position: relative;
    border-top-width: 5px;
    border-top-style: solid;
    text-align: center
}

.event .custom-speaker-card .speaker-info .speaker-social {
    font-size: 14px;
    height: 34px;
    left: 50%;
    position: absolute;
    top: -20px;
    width: 34px;
    border-radius: 100%;
    -webkit-transform: translate(-50%, 0);
    -moz-transform: translate(-50%, 0);
    -ms-transform: translate(-50%, 0);
    -o-transform: translate(-50%, 0);
    transform: translate(-50%, 0)
}

.event .custom-speaker-card .speaker-social-twitter .speaker-social {
    background-color: #00aced
}

.event .custom-speaker-card .speaker-social-gplus .speaker-social {
    background-color: #dd4b39
}

.event .custom-speaker-card .speaker-social-facebook .speaker-social {
    background-color: #3b5998
}

.event .custom-speaker-card .speaker-social-twitter {
    border-color: #00aced
}

.event .custom-speaker-card .speaker-social-gplus {
    border-color: #dd4b39
}

.event .custom-speaker-card .speaker-social-facebook {
    border-color: #3b5998
}

.event .custom-font-size-4 {
    font-size: 1.35714em !important;
    line-height: 1;
    text-transform: inherit;
    font-weight: 600
}

.event .speaker-info p {
    font-size: 1em !important;
    line-height: 1
}

.event .custom-speaker-card:hover .speaker-photo img {
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -o-transform: scale(1.1);
    transform: scale(1.1)
}

.event .custom-speaker-card:hover {
    box-shadow: 0 23px 32px 0 #e5e8eb
}

.event .speaker-photo a {
    text-decoration: none
}

.event .custom-font-style-1 {
    letter-spacing: -.5px;
    font-size: 1.4em;
    font-weight: 600
}

.event.dialog h2 {
    font-weight: 600;
    line-height: 1
}

.event .custom-line-height-1 {
    line-height: 1.6 !important
}

.event .font-size-sm {
    font-size: .9em !important
}

.event .custom-speaker-card .speaker-info .speaker-social .fa {
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%)
}

.event em.fa-long-arrow-right {
    position: relative;
    display: inline-block;
    width: 25px;
    height: 10px;
    margin-top: 4px;
    margin-left: 15px;
    -webkit-transition: ease width 300ms;
    -moz-transition: ease width 300ms;
    transition: ease width 300ms
}

.event .custom-btn-style-1 {
    padding: 10px 30px;
    text-transform: uppercase;
    font-weight: 600
}

.event .btn:hover em.fa.fa-long-arrow-right {
    width: 30px
}

.event .custom-border-radius {
    border-radius: 30px !important
}

.event .custom-btn-border-1 {
    border: 1px solid #fff
}

.event .custom-about-content {
    border-style: dashed;
    border-width: 1px
}

.event .custom-about-content .about-title {
    position: relative;
    padding-left: 67px
}

.event .custom-about-content .about-title .icon {
    position: absolute;
    width: 46px;
    left: 0;
    top: 0
}

.event .custom-about-content .about-title h3,
.event .custom-about-content .about-title p {
    line-height: 1
}

.event .custom-text-color-1 {
    color: #c1eaff
}

.event .about-video {
    position: relative;
    background-size: cover;
    background-position: center;
    vertical-align: middle
}

.event .about-video .play-video-custom {
    display: inline-block
}

.event .custom-about-carousel {
    position: relative
}

.event .custom-about-carousel>.wrapper {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0
}

.event .custom-about-carousel .carousel-image {
    background-size: cover;
    background-position: center
}

.event .custom-about-carousel .owl-carousel {
    margin-bottom: 0 !important
}

.event .custom-about-carousel .owl-carousel,
.event .custom-about-carousel .owl-stage-outer,
.event .custom-about-carousel .owl-stage,
.event .custom-about-carousel .owl-item,
.event .custom-about-carousel .carousel-image {
    height: 100%
}

.event .custom-about-carousel .owl-dots {
    margin-top: 0 !important;
    width: 100%;
    bottom: 35px !important;
    right: 0
}

.event .custom-font-size-1 {
    font-size: 1em !important;
    line-height: 1
}

.event .timeline-balloon .balloon-time .time-dot {
    position: relative;
    width: 25px;
    height: 25px;
    display: inline-block;
    vertical-align: middle
}

.event .custom-circle-date.no-border {
    border-color: transparent;
    box-shadow: none
}

.event .custom-circle-date {
    position: relative;
    width: 118px;
    height: 118px;
    border-radius: 50%;
    border-width: 1px;
    border-style: solid;
    z-index: 2;
    box-shadow: 0 11px 21px 0 rgba(229, 232, 235, .75)
}

.event .timeline-balloon {
    position: relative
}

.event .timeline-balloon::before {
    content: '';
    position: absolute;
    width: 1px;
    left: 83px;
    background-color: #e6ebeb
}

.event .timeline-balloon .balloon-cell {
    display: table-cell;
    vertical-align: top;
    width: 100%
}

.event .timeline-balloon .balloon-time .time-text {
    display: inline-block;
    vertical-align: middle;
    width: 68px
}

.event .timeline-balloon .balloon-time {
    width: 93px;
    white-space: nowrap
}

.event .custom-font-size-3 {
    font-size: .92857em !important;
    line-height: 1
}

.event .timeline-balloon .balloon-content .balloon-photo {
    display: table-cell;
    vertical-align: top;
    height: 64px;
    width: 64px;
    max-width: 64px;
    padding-top: 6px
}

.event .timeline-balloon .balloon-time .time-dot::before {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    top: 50%;
    left: 50%;
    border-style: solid;
    border-width: 2px;
    border-radius: 50%;
    border-color: #43a6a3;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%)
}

.event .timeline-balloon .balloon-time .time-dot::after {
    content: '';
    position: absolute;
    background-color: #43a6a3;
    width: 7px;
    height: 7px;
    top: 50%;
    left: 50%;
    border-radius: 50%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%)
}

.event .timeline-balloon .balloon-content.balloon-shadow {
    box-shadow: 0 11px 21px 0 rgba(229, 232, 235, .75)
}

.event .timeline-balloon .balloon-content {
    position: relative;
    margin-left: 38px;
    border-width: 1px;
    border-style: solid;
    border-radius: 3px;
    border-color: #e6ebeb
}

.event .timeline-balloon .balloon-content .balloon-arrow {
    position: absolute;
    width: 20px;
    height: 20px;
    top: 35px;
    left: -15px;
    border-width: 1px;
    border-style: solid;
    border-right: none;
    border-bottom: none;
    border-color: #e6ebeb;
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
    -webkit-transform-origin: left top;
    -moz-transform-origin: left top;
    -ms-transform-origin: left top;
    -o-transform-origin: left top;
    transform-origin: left top
}

.event .timeline-balloon .balloon-content .balloon-description p {
    line-height: 1.6
}

.event .custom-circle-date .circle-dotted {
    position: absolute;
    padding: 16px;
    width: 106px;
    height: 106px;
    top: 5px;
    left: 5px;
    display: table;
    border-style: dashed;
    border-width: 1px;
    border-radius: 50%
}

.event .timeline-balloon .balloon-content .balloon-description {
    display: table-cell
}

.event .timeline-balloon::before {
    height: 120%;
    top: -35px
}

.event .timeline-balloon:last-of-type::before {
    height: 75px
}

.event .custom-circle-date .circle-center {
    display: table-cell;
    vertical-align: middle
}

.event .timeline-balloon h5,
.event .timeline-balloon span {
    text-transform: uppercase;
    font-weight: 700
}

.event .custom-font-size-6 {
    font-size: 1.5em !important;
    line-height: 1
}

.event.bg-light {
    background-color: #eff3f5
}

.event .carousel-logo-item {
    position: relative;
    height: 158px;
    overflow: hidden;
    box-shadow: 0 23px 32px 0 transparent;
    will-change: border-color;
    border: 1px solid transparent;
    -webkit-transition: border-color .4s ease, box-shadow .4s ease;
    -moz-transition: border-color .4s ease, box-shadow .4s ease;
    transition: border-color .4s ease, box-shadow .4s ease
}

.event .carousel-logo-item .carousel-logo-pannel {
    width: 100%;
    height: 100%;
    -webkit-transition: -webkit-transform .4s ease;
    -moz-transition: -moz-transform .4s ease;
    transition: transform .4s ease
}

.event .carousel-logo-item .carousel-logo-pb img {
    display: inline-block !important;
    vertical-align: middle;
    width: 200px !important
}

.event .carousel-logo-item .carousel-logo-hover {
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0)
}

.event .carousel-logo-item .carousel-logo-hover img {
    width: 138px !important;
    max-height: 65px
}

.event .carousel-logo-item .carousel-logo-hover .carousel-logo-description {
    max-height: 45px;
    overflow-y: hidden
}

.event .owl-theme.custom-dots-style-1 .owl-dots {
    margin-top: 35px
}

.event .owl-carousel.custom-dots-style-1 .owl-dots .owl-dot {
    position: relative;
    border-radius: 50%;
    border-width: 2px;
    border-style: solid;
    border-color: #fff;
    margin: 0 3px;
    width: 14px;
    height: 14px
}

.event .owl-carousel.custom-dots-style-1 .owl-dots .owl-dot span {
    position: absolute;
    top: 50%;
    left: 50%;
    background-color: #fff;
    width: 4px !important;
    height: 4px !important;
    margin: 0 !important;
    opacity: 0;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%)
}

.event .carousel-logo-item:hover {
    box-shadow: 0 23px 32px 0 #e5e8eb;
    border-color: #d4d4d4
}

.event .carousel-logo-item:hover .carousel-logo-pannel {
    -webkit-transform: translateY(-100%);
    -moz-transform: translateY(-100%);
    -ms-transform: translateY(-100%);
    -o-transform: translateY(-100%);
    transform: translateY(-100%)
}

.event .carousel-logo-item .carousel-logo-pb::before {
    content: '';
    height: 100%;
    display: inline-block;
    vertical-align: middle
}

.event .owl-carousel.custom-dots-style-1 .owl-dots .owl-dot.active span,
.event .owl-carousel.custom-dots-style-1 .owl-dots .owl-dot:hover span {
    background-color: #fff;
    opacity: 1
}

.event .owl-carousel.nav-inside {
    bottom: 0;
    margin-top: 0;
    right: 0
}

.event .custom-venue-address {
    position: relative;
    margin-top: -30px;
    box-shadow: 0 43px 112px -30px rgba(80, 80, 80, .9);
    z-index: 1;
    -webkit-transform: translateY(20%);
    -moz-transform: translateY(20%);
    -ms-transform: translateY(20%);
    -o-transform: translateY(20%);
    transform: translateY(20%)
}

.event .custom-venue-address>.col-xs-6 {
    z-index: 2;
    display: table-cell;
    float: inherit;
    vertical-align: top;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center
}

.event .custom-arrow {
    content: '';
    position: absolute;
    width: 35px;
    height: 35px;
    left: 56%;
    bottom: -29px;
    z-index: 1;
    -webkit-transform: rotate(45deg) translateX(-50%);
    -moz-transform: rotate(45deg) translateX(-50%);
    -ms-transform: rotate(45deg) translateX(-50%);
    -o-transform: rotate(45deg) translateX(-50%);
    transform: rotate(45deg) translateX(-50%)
}

.event .font-weight-bold {
    font-weight: 700 !important
}

.event .custom-font-size-2 {
    font-size: 1.07143em !important;
    line-height: 1
}

.event .font-weight-normal {
    font-weight: 400 !important
}

.event .counters strong {
    font-weight: bold
}

.event .custom-about-carousel .carousel-image img {
    height: 100%
}

.event .mb-minus50 {
    margin-bottom: -50px !important
}

#footer .event .font-weight-light {
    font-weight: 300 !important
}

#footer .event h4 {
    font-size: 1.442857em !important;
    line-height: 1
}

#footer .event span,
#footer .event a {
    color: #93949a !important
}

#footer .event a.btn {
    color: #fff !important
}

#footer .container .eventfooter.row>div {
    margin-bottom: 25px !important
}

.event .play-video-custom img {
    will-change: transform;
    -webkit-transition: -webkit-transform .3s ease !important;
    -moz-transition: -moz-transform .3s ease !important;
    transition: transform .3s ease !important;
    zoom: 1
}

.event .play-video-custom:hover img {
    -webkit-transform: scale(1.1, 1.1);
    -moz-transform: scale(1.1, 1.1);
    -ms-transform: scale(1.1, 1.1);
    -o-transform: scale(1.1, 1.1);
    transform: scale(1.1, 1.1)
}

.event a.buy-tickets.btn {
    margin-right: 40px
}

.ddrheader .event a.buy-tickets.btn {
    margin-right: 0
}

.event .background-color-light {
    background: #fff
}

@media(min-width:1500px) {
    .event .custom-about-content .center .about-btn-tickets {
        margin-right: 20px
    }
    .event .custom-about-content .center {
        text-align: left !important
    }
}

@media(min-width:992px) {
    .event .is-table-row [class*="col-"] {
        float: none;
        display: table-cell;
        vertical-align: middle
    }
    .event .is-table-row {
        display: table
    }
}

@media(max-width:991px) {
    .event .custom-about-carousel>.wrapper {
        position: inherit;
        height: 400px
    }
    .event .is-table-row {
        display: block
    }
    .event .is-table-row [class*="col-"] {
        float: inherit;
        display: block;
        vertical-align: inherit
    }
    .event .about-video {
        min-height: 300px
    }
    .event .about-video::before {
        content: '';
        display: block;
        width: 100%;
        padding-top: 40%
    }
    .event .about-video .play-video-custom {
        position: absolute;
        top: 50%;
        left: 50%;
        -webkit-transform: translate(-50%, -50%);
        -moz-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
        -o-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%)
    }
    .event .custom-about-content {
        text-align: center
    }
    .event .custom-about-content .about-title {
        display: inline-block;
        text-align: left
    }
    .event .custom-about-content .btn {
        margin-left: 10px;
        margin-right: 10px
    }
    .event .custom-about-carousel>.wrapper {
        position: inherit;
        height: 400px
    }
    #footer .event {
        text-align: center
    }
    #footer .container .eventfooter.row.mb-btm>.col-md-5,
    #footer .container .eventfooter.row.mb-btm>.col-md-3:nth-of-type(2) {
        margin-bottom: 100px !important
    }
    .event a.buy-tickets.btn {
        display: none
    }
}

@media(max-width:767px) {
    .event .custom-circle-date {
        margin: 0 auto 35px !important
    }
    .event .timeline-balloon:before {
        left: 50%
    }
    .event .timeline-balloon .balloon-time .time-dot {
        display: none
    }
    .event .timeline-balloon .balloon-time .time-text {
        position: absolute;
        top: -11px;
        left: 50%;
        text-align: center;
        background: #fff;
        border-width: 1px;
        border-style: solid;
        border-radius: 3px;
        border-color: #e6ebeb;
        padding: 5px 0;
        z-index: 1;
        -webkit-transform: translateX(-50%);
        -moz-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
        -o-transform: translateX(-50%);
        transform: translateX(-50%)
    }
    .event .timeline-balloon .balloon-content {
        margin-left: 0
    }
    .event.parallax {
        background-size: cover
    }
    .event .counter {
        margin: 55px 0 !important
    }
    .event .custom-arrow {
        left: 66%
    }
    .event .custom-venue-address {
        margin-top: -50px
    }
}

@media(max-width:320px) {
    .event em.fa-long-arrow-right {
        display: none
    }
}

.church.section-no-border {
    border: none
}

.church .custom-text-color-1 {
    color: #544b40 !important;
    font-weight: 600
}

.church .text-md {
    font-size: 17px
}

.church .f-italic {
    font-style: italic;
    font-size: 25px;
    font-weight: normal
}

.church .animated {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both
}

.church .custom-btn-style-1 {
    padding: 12px 25px !important
}

.church.gallery {
    position: relative;
    overflow: hidden;
    padding: 110px 0
}

.church .custom-cloud.left-pos {
    left: 0
}

.church .custom-section-padding-1 {
    padding: 70px 0 160px !important
}

.church .custom-position-relative {
    position: relative
}

.church .custom-overflow-hidden {
    overflow: hidden
}

.church .custom-big-square.left-pos {
    left: -150px
}

.church .custom-box-shadow {
    box-shadow: 0 0 60px -10px rgba(139, 139, 139, .5)
}

.church .custom-small-square.left-pos {
    left: 57.6px;
    top: 45%
}

.church .custom-small-square {
    position: absolute;
    width: 192px;
    height: 192px;
    top: 50%;
    border: 10px solid #fff;
    backface-visibility: hidden;
    -webkit-transform: translateY(-50%) rotate(45deg);
    -moz-transform: translateY(-50%) rotate(45deg);
    -ms-transform: translateY(-50%) rotate(45deg);
    -o-transform: translateY(-50%) rotate(45deg);
    transform: translateY(-50%) rotate(45deg);
    -webkit-animation-name: initial;
    -moz-animation-name: fadeInLeft;
    -o-animation-name: fadeInLeft;
    animation-name: initial
}

.church .custom-cloud.right-pos {
    right: 0
}

.church .custom-cloud {
    position: absolute;
    width: auto;
    height: 80%;
    top: 11%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%)
}

.church .custom-big-square.right-pos {
    right: -150px
}

.church .custom-big-square {
    position: absolute;
    width: 312px;
    height: 312px;
    top: 43%;
    border: 10px solid #fff;
    backface-visibility: hidden;
    -webkit-transform: translateY(-50%) rotate(45deg);
    -moz-transform: translateY(-50%) rotate(45deg);
    -ms-transform: translateY(-50%) rotate(45deg);
    -o-transform: translateY(-50%) rotate(45deg);
    transform: translateY(-50%) rotate(45deg);
    -webkit-animation-name: initial;
    -moz-animation-name: fadeInLeft;
    -o-animation-name: fadeInLeft;
    animation-name: initial
}

.church .custom-small-square.right-pos {
    right: 57.6px;
    top: 66%
}

.church .customFadeInLeft {
    -webkit-animation-name: customFadeInLeft;
    -moz-animation-name: customFadeInLeft;
    animation-name: customFadeInLeft
}

@keyframes customFadeInLeft {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(-100%, -50%, 0) rotate(45deg);
        -moz-transform: translate3d(-100%, -50%, 0) rotate(45deg);
        -ms-transform: translate3d(-100%, -50%, 0) rotate(45deg);
        -o-transform: translate3d(-100%, -50%, 0) rotate(45deg);
        transform: translate3d(-100%, -50%, 0) rotate(45deg)
    }
    100% {
        opacity: 1;
        -webkit-transform: translate3d(0, -50%, 0) rotate(45deg);
        -moz-transform: translate3d(0, -50%, 0) rotate(45deg);
        -ms-transform: translate3d(0, -50%, 0) rotate(45deg);
        -o-transform: translate3d(0, -50%, 0) rotate(45deg);
        transform: translate3d(0, -50%, 0) rotate(45deg)
    }
}

.church .customFadeInRight {
    -webkit-animation-name: customFadeInRight;
    -moz-animation-name: customFadeInRight;
    animation-name: customFadeInRight
}

@keyframes customFadeInRight {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(100%, -50%, 0) rotate(45deg);
        -moz-transform: translate3d(100%, -50%, 0) rotate(45deg);
        -ms-transform: translate3d(100%, -50%, 0) rotate(45deg);
        -o-transform: translate3d(100%, -50%, 0) rotate(45deg);
        transform: translate3d(100%, -50%, 0) rotate(45deg)
    }
    100% {
        opacity: 1;
        -webkit-transform: translate3d(0, -50%, 0) rotate(45deg);
        -moz-transform: translate3d(0, -50%, 0) rotate(45deg);
        -ms-transform: translate3d(0, -50%, 0) rotate(45deg);
        -o-transform: translate3d(0, -50%, 0) rotate(45deg);
        transform: translate3d(0, -50%, 0) rotate(45deg)
    }
}

.church .custom-top {
    position: relative;
    bottom: 35px
}

.church .font-weight-bold {
    font-weight: 600 !important
}

.church .custom-newcomers-class {
    position: relative;
    display: inline-block;
    background-color: #fff;
    padding: 0 30px;
    min-width: 250px
}

.church .custom-newcomers-class:before {
    content: '';
    display: block;
    position: absolute;
    top: 5px;
    right: 5px;
    bottom: 5px;
    left: 5px;
    border: 1px solid #efece8
}

.church .custom-negative-margin-1 {
    margin: -90px 0 60px !important
}

.church.section.section-secondary em {
    font-size: 40px;
    color: #fff
}

.church.owl-carousel.custom-arrows-style-1 .owl-nav .owl-prev {
    left: 10px;
    -webkit-transform: rotate(-180deg);
    -moz-transform: rotate(-180deg);
    -ms-transform: rotate(-180deg);
    -o-transform: rotate(-180deg);
    transform: rotate(-180deg)
}

.church.owl-carousel.custom-arrows-style-1 .owl-nav .owl-prev:before,
.church.owl-carousel.custom-arrows-style-1 .owl-nav .owl-next:before {
    content: '';
    display: block;
    position: absolute;
    top: 50%;
    right: -2px;
    left: initial;
    width: 100%;
    border-top: 1px solid #da7940;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%)
}

.church.owl-carousel.custom-arrows-style-1 .owl-nav .owl-prev:before,
.church.owl-carousel.custom-arrows-style-1 .owl-nav .owl-next:before {
    border-color: #da7940
}

.church.owl-carousel.custom-arrows-style-1 .owl-nav .owl-prev:after,
.church.owl-carousel.custom-arrows-style-1 .owl-nav .owl-next:after {
    content: '';
    display: block;
    position: absolute;
    top: 50%;
    right: 0;
    width: 25px;
    height: 25px;
    border-top: 1px solid #da7940;
    border-right: 1px solid #da7940;
    -webkit-transform: translateY(-50%) rotate(45deg);
    -moz-transform: translateY(-50%) rotate(45deg);
    -ms-transform: translateY(-50%) rotate(45deg);
    -o-transform: translateY(-50%) rotate(45deg);
    transform: translateY(-50%) rotate(45deg)
}

.church.owl-carousel.custom-arrows-style-1 .owl-nav .owl-prev:after,
.church.owl-carousel.custom-arrows-style-1 .owl-nav .owl-next:after {
    border-color: #da7940
}

.church.owl-carousel.custom-arrows-style-1 .owl-nav .owl-prev,
.church.owl-carousel.custom-arrows-style-1 .owl-nav .owl-next {
    position: absolute;
    width: 55px;
    background: transparent !important;
    -webkit-transition: ease all 300ms;
    -moz-transition: ease all 300ms;
    transition: ease all 300ms
}

.church.owl-carousel .owl-nav [class*="owl-"] {
    background: #101019 !important
}

.church.custom-testimonial-style .testimonial-quote {
    display: inline-block;
    padding: 20px;
    border-radius: 100%;
    line-height: 1;
    margin: 5px 0 20px;
    box-shadow: 0 5px 20px 5px rgba(207, 207, 207, .9)
}

.church.custom-testimonial-style .testimonial-author strong {
    display: inline-block
}

.church.custom-testimonial-style .testimonial-author span {
    display: inline-block;
    font-size: 16px
}

.church .custom-view-our-location {
    position: absolute;
    bottom: 0;
    left: 0;
    background: #36252b;
    width: 100%;
    height: 96px;
    overflow: hidden;
    z-index: 1;
    -webkit-transition: ease all 300ms;
    -moz-transition: ease all 300ms;
    transition: ease all 300ms
}

.church .custom-view-our-location>img {
    position: absolute;
    top: -60px;
    left: 50%;
    width: 420px;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%)
}

.church .custom-view-our-location>a {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    font-size: 20px;
    text-decoration: none;
    padding-top: 35px
}

.church .custom-hr-color-1 {
    background: #3f3035 !important
}

.church .custom-icon-size-1 {
    font-size: 25px
}

.church .custom-img-responsive-center {
    margin: 0 auto
}

.church .custom-view-our-location:hover {
    opacity: .9
}

.church .custom-text-color-2 {
    color: #beb7b9 !important;
    text-decoration: none !important
}

hr.church {
    background: #3f3035
}

.church .google-map {
    height: 96px
}

.church.custom-overflow-hidden {
    overflow: hidden;
    position: relative
}

@media(max-width:991px) {
    .church .owl-carousel.custom-sm-nav-bottom .owl-nav {
        top: 100%;
        left: 50%;
        margin-top: 0;
        width: 45%;
        -webkit-transform: translateX(-50%);
        -moz-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
        -o-transform: translateX(-50%);
        transform: translateX(-50%)
    }
    .church .custom-sm-margin-bottom-1 {
        margin-bottom: 30px !important
    }
    .church .custom_center {
        text-align: center
    }
}

@media(max-width:767px) {
    .church .custom-newcomers-class {
        padding: 10px 10px 0 10px !important
    }
}

.Law .feature-box-icon em:before {
    font-size: 50px
}

.Law .form-control,
.Law .btn,
.Law .thumb-info img,
.Law .thumb-info {
    border-radius: 0
}

.Law .testimonial.testimonial-style-4 {
    box-shadow: none;
    border: none;
    padding: 0
}

.Law .thumb-info-side-image .thumb-info-side-image-wrapper {
    float: left;
    margin-right: 20px
}

.Law .font-size-md {
    font-size: 1.1em
}

@media(min-width:992px) {
    .Law .testimonial.testimonial-style-4 {
        margin-right: 20px
    }
}

@media(max-width:991px) {
    .Law .half-section-right {
        padding-left: 15px !important;
        padding-right: 15px !important;
        max-width: 740px;
        float: none !important;
        margin: 0 auto !important
    }
}

@media(max-width:767px) {
    .Law .form-group .row-pb {
        padding-bottom: 15px
    }
}