/* CSS3 Animations
================================================== */

@keyframes blink{
    0% { opacity:1; }
    50% { opacity:0; }
    100% { opacity:1; }
}

@-webkit-keyframes blink{
    0% { opacity:1; }
    50% { opacity:0; }
    100% { opacity:1; }
}

@-moz-keyframes blink{
    0% { opacity:1; }
    50% { opacity:0; }
    100% { opacity:1; }
}

/* =========================================================== 
    2. Document Setup (body, common classes, structure etc)
============================================================ */

/* #General
================================================== */
@charset "UTF-8";
@font-face {
    font-family: "Noto Sans TC";
    font-style: normal;
    font-weight: 100;
    src: url(//fonts.gstatic.com/ea/notosanstc/v1/NotoSansTC-Thin.woff2) format("woff2"), url(//fonts.gstatic.com/ea/notosanstc/v1/NotoSansTC-Thin.woff) format("woff"),
        url(//fonts.gstatic.com/ea/notosanstc/v1/NotoSansTC-Thin.otf) format("opentype");
    font-display: fallback;
}
@font-face {
    font-family: "Noto Sans TC";
    font-style: normal;
    font-weight: 300;
    src: url(//fonts.gstatic.com/ea/notosanstc/v1/NotoSansTC-Light.woff2) format("woff2"), url(//fonts.gstatic.com/ea/notosanstc/v1/NotoSansTC-Light.woff) format("woff"),
        url(//fonts.gstatic.com/ea/notosanstc/v1/NotoSansTC-Light.otf) format("opentype");
    font-display: fallback;
}
@font-face {
    font-family: "Noto Sans TC";
    font-style: normal;
    font-weight: 400;
    src: url(//fonts.gstatic.com/ea/notosanstc/v1/NotoSansTC-Regular.woff2) format("woff2"), url(//fonts.gstatic.com/ea/notosanstc/v1/NotoSansTC-Regular.woff) format("woff"),
        url(//fonts.gstatic.com/ea/notosanstc/v1/NotoSansTC-Regular.otf) format("opentype");
    font-display: fallback;
}
@font-face {
    font-family: "Noto Sans TC";
    font-style: normal;
    font-weight: 500;
    src: url(//fonts.gstatic.com/ea/notosanstc/v1/NotoSansTC-Medium.woff2) format("woff2"), url(//fonts.gstatic.com/ea/notosanstc/v1/NotoSansTC-Medium.woff) format("woff"),
        url(//fonts.gstatic.com/ea/notosanstc/v1/NotoSansTC-Medium.otf) format("opentype");
    font-display: fallback;
}
@font-face {
    font-family: "Noto Sans TC";
    font-style: normal;
    font-weight: 700;
    src: url(//fonts.gstatic.com/ea/notosanstc/v1/NotoSansTC-Bold.woff2) format("woff2"), url(//fonts.gstatic.com/ea/notosanstc/v1/NotoSansTC-Bold.woff) format("woff"),
        url(//fonts.gstatic.com/ea/notosanstc/v1/NotoSansTC-Bold.otf) format("opentype");
    font-display: fallback;
}
@font-face {
    font-family: "Noto Sans TC";
    font-style: normal;
    font-weight: 900;
    src: url(//fonts.gstatic.com/ea/notosanstc/v1/NotoSansTC-Black.woff2) format("woff2"), url(//fonts.gstatic.com/ea/notosanstc/v1/NotoSansTC-Black.woff) format("woff"),
        url(//fonts.gstatic.com/ea/notosanstc/v1/NotoSansTC-Black.otf) format("opentype");
    font-display: fallback;
}


html {
    height: 100%;
}
body {
    margin: 0;
    padding: 0;
    height: 100%;
    width: 100%;
    background: #FFFFFF;
    font: 15px/26px Roboto, "Noto Sans TC", Helvetica, Arial, sans-serif;
    /*font: 15px/26px "Open Sans", Helvetica, Arial, sans-serif;*/
    color: #333333;
    -webkit-font-smoothing: antialiased;
    /* Fix for webkit rendering */
    -webkit-text-size-adjust: 100%;
}
/* Typography
================================================== */

h1, h2, h3, h4, h5, h6 {
    font-family: Roboto, "Noto Sans TC", Helvetica, Arial, sans-serif;
    color: #333333;
    margin-bottom: 25px;
}
h1 a, h2 a, h3 a, h4 a, h5 a, h6 a {
    font-weight: inherit;
    color: #333333;
}
h1 {
    font-size: 45px;
    line-height: 70px;
    text-transform: uppercase;
    font-weight: normal;
}
h2 {
    font-size: 34px;
    line-height: 48px;
}
h3 {
    font-size: 18px;
    line-height: 24px;
}
h4 {
    font-size: 16px;
    line-height: 21px;
}
h5 {
    font-size: 14px;
    line-height: 18px;
}
h6 {
    font-size: 12px;
    line-height: 16px;
}
p {
    margin: 0 0 25px 0;
}
p img {
    margin: 0;
}
a {
    color: #d3145a;
    /*font: 15px/26px 'Open Sans', sans-serif;*/
    font-size: 15px;
    text-decoration: none;
    -webkit-transform: translateZ(0);
    -webkit-transition: 0.3s all linear;
    -moz-transition: 0.3s all linear;
    transition: 0.3s all linear;
}
a:focus {
    outline: thin dotted;
}
a:hover, a:active {
    outline: 0;
}
em, i {
    font-style: italic;
}
strong, b {
    font-weight: bold;
}
small {
    font-size: 80%;
}
address {
    font-style: normal;
}
ul, ol {
    margin-bottom: 30px;
}
ul {
    list-style: none outside;
}
ol {
    list-style: decimal;
}
ol, ul.square, ul.circle, ul.disc {
    margin-left: 30px;
}
ul.square {
    list-style: square outside;
}
ul.disc {
    list-style: disc outside;
}
ul ul, ul ol, ol ol, ol ul {
    margin-left: 30px;
}
ul ul li, ul ol li, ol ol li, ol ul li {
    margin-bottom: 0
}
blockquote, q {
    quotes: none;
}
blockquote:before, blockquote:after, q:before, q:after {
    content: '';
    content: none;
}
hr {
    border: solid #e6e6e6;
    border-width: 1px 0 0;
    clear: both;
    margin: 20px 0 40px;
    height: 0;
}
img {
    max-width: 100%;
    height: auto;
}
@media \0screen {
    img {
        width: auto;
        /* for ie 8 */
    }
}
/* =========================================================== 
    3. Misc and Re-usable Elements
============================================================ */

/* #Repeating Elements
================================================== */

section {
    padding: 80px 0 0 0;
}
section section {
    background-color: #fff;
}
.post .column {
    margin-bottom: 25px;
}
.nopadding {
    padding: 0;
}
.nopaddingleft {
    padding-left: 0;
}
.nopaddingright {
    padding-right: 0;
}
.hide {
    display: none!important;
    visibility: hidden;
}
.gray {
    background-color: #f3f3f3;
}
.section-title, #portfolio-title {
    text-align: center;
}
h2.section-title {
    font-size: 38px;
    line-height: 64px;
    font-weight: normal;
}
.section-title:after {
    position: relative;
    display: block;
    content: "";
    height: 2px;
    width: 30px;
    margin: 10px auto 20px;
    background: #d3145a;
}
.section-tagline {
    font: 15px/26px Roboto, "Noto Sans TC", Helvetica, Arial, sans-serif;
    /*font: 18px/29px 'Open Sans', Arial, sans-serif;*/
    font-weight: 500;
    color: #232323;
    text-align: center;
    max-width: 800px;
    margin: auto auto 80px auto;
}
.fixed {
    background-attachment: fixed;
}
#header-section.header-hide.fixed-menu {
    position: fixed;
}
.typed-cursor {
    font-weight: normal;
    opacity: 1;
    -webkit-animation: blink 0.7s infinite;
    -moz-animation: blink 0.7s infinite;
    animation: blink 0.7s infinite;
}
#qLbar {
    top: 0!important;
}
#qImage {
    width: 155px;
    height: 19px;
    background: url(../images/elements/logo.png) no-repeat;
    left: 50%;
    top: 30%;
    margin-left: -80px;
}
h1.logo {
    line-height: 60px;
    margin-bottom: 0;
    margin-top: 8px;
}
h1.logo a.text {
    display: block;
    line-height: 80px;
}
#qLpercentage {
    font: 16px/21px "Montserrat";
}
.lm-button.ls,.post .lm-button.ls {
    font-size: 14px;
    padding: 5px 18px;
}
.lm-button.lb,.post .lm-button.lb {
    font-size: 15px;
    padding: 15px 42px;
}
.lm-button:hover, .post .lm-button:hover {
    text-decoration: none;
    background: #d3145a;
    border-color: #d3145a;
}
/* Portfolio Popup
================================================== */

.mfp-fade.mfp-bg {
    display: none !important;
}
.mfp-fade.mfp-wrap {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    position: static !important;
    outline: none !important;
}
.mfp-fade.mfp-container {
    text-align: center;
    position: absolute;
    width: 100%;
    min-height: 100%;
    left: 0;
    top: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
.mfp-fade.mfp-container:before {
    content: '';
    display: inline-block;
    height: 100%;
    vertical-align: middle;
    display: none !important;
}
.mfp-align-top .mfp-container:before {
    display: none !important;
}
.mfp-fade.mfp-content {
    position: relative;
    margin: 0 auto;
    text-align: left;
}
.mfp-inline-holder .mfp-content, .mfp-ajax-holder .mfp-content {
    width: 100%;
    min-height: 100%;
    cursor: auto;
}
.mfp-ajax-cur {
    cursor: progress;
}
.mfp-zoom-out-cur, .mfp-zoom-out-cur .mfp-image-holder .mfp-close {
    cursor: -moz-zoom-out;
    cursor: -webkit-zoom-out;
    cursor: zoom-out;
}
.mfp-zoom {
    cursor: pointer;
    cursor: -webkit-zoom-in;
    cursor: -moz-zoom-in;
    cursor: zoom-in;
}
.mfp-loading.mfp-figure {
    display: none;
}
.mfp-hide {
    display: none !important;
}
.mfp-preloader {
    position: absolute;
    left: 50%;
    top: 50%;
    opacity: 0;
    border:3px solid #222;
    border-radius:30px;
    z-index: 999;
    text-indent: -9999px;
    width: 50px;
    height: 50px;
    margin-top: -25px;
    margin-left: -25px;
    -webkit-animation: pulsing 1s ease-out infinite;
    -moz-animation:    pulsing 1s ease-out infinite;
    -o-animation:      pulsing 1s ease-out infinite;
    animation:         pulsing 1s ease-out infinite;
}

@-webkit-keyframes pulsing {
    0% {
      -webkit-transform:scale(.1);
      opacity: 0.0;
    }
    50% {
      opacity:1;
    }
    100% {
      -webkit-transform:scale(1.2);
      opacity:0;
    }
}

@-moz-keyframes pulsing {
    0% {
      -moz-transform:scale(.1);
      opacity: 0.0;
    }
    50% {
      opacity:1;
    }
    100% {
      -moz-transform:scale(1.2);
      opacity:0;
    }
}
@-o-keyframes pulsing {
    0% {
      -o-transform:scale(.1);
      opacity: 0.0;
    }
    50% {
      opacity:1;
    }
    100% {
      -o-transform:scale(1.2);
      opacity:0;
    }
}

@keyframes pulsing {
    0% {
      transform:scale(.1);
      opacity: 0.0;
    }
    50% {
      opacity:1;
    }
    100% {
      transform:scale(1.2);
      opacity:0;
    }
}
.mfp-s-ready .mfp-preloader {
    display: none;
}
.mfp-s-error .mfp-content {
    display: none;
}
.play_btn .play_btn_icon {
    text-align: center;
    display: block;
    width: 90px;
    height: 90px;
    margin: 0 auto 20px;
    border: 2px solid #FFFFFF;
    line-height: 90px;
    font-size: 40px;
    color: #FFFFFF;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    -webkit-transition: all 0.27s cubic-bezier(0.000, 0.000, 0.580, 1.000);
    -moz-transition: all 0.27s cubic-bezier(0.000, 0.000, 0.580, 1.000);
    -o-transition: all 0.27s cubic-bezier(0.000, 0.000, 0.580, 1.000);
    -ms-transition: all 0.27s cubic-bezier(0.000, 0.000, 0.580, 1.000);
    transition: all 0.27s cubic-bezier(0.000, 0.000, 0.580, 1.000);
}
.play_btn .play_btn_icon .fa {
    position: relative;
    left: 5px;
    top: -2px;
}
#qLoverlay {
    background-color: #111;
    position: fixed;
    z-index: 666999;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.queryloader__overlay__bar {
    top: 0px !important;
}

#qLpercentage {
    line-height: 46px;
    margin-top: -23px !important;
}

/* Parallax
================================================== */

.parallax-background {
    position: relative;
    overflow: hidden;
    width: 100%;
    background-position: center center;
    -webkit-background-size: cover !important;
    -moz-background-size: cover !important;
    -o-background-size: cover !important;
    background-size: cover !important;
    background-repeat: repeat-y;
}
.parallax-background.fixed {
    background-attachment: fixed !important;
}
/* Fixed Parallax - no scrolling */

.parallax-background.pfixed {
    background-attachment: fixed!important;
}
/* Owl Item - Override
================================================== */

.owl-page {
    display: inline-block;
    margin: 0 3px;
}
.owl-pagination {
    position: absolute;
    bottom: -80px;
    width: 100%;
    text-align: center;
}
.owl-pagination span {
    width: 15px;
    height: 15px;
    display: inline-block;
    border-radius: 50%;
    border: 1px solid #fff;
}
.owl-pagination .owl-page.active span {
    background-color: #fff;
}
.owl-buttons {
    position: static;
}
.owl-prev, .owl-next {
    opacity: 0;
    display: block;
    position: absolute;
    top: 50%;
    margin-top: -30px;
    width: 40px;
    height: 60px;
    line-height: 60px;
    font-size: 74px;
    text-align: center;
    color: rgba(255, 255, 255, .7);
    text-shadow: 1px 1px 0px rgba(0, 0, 0, .1);
    z-index: 6;
    -webkit-transition: all 0.27s cubic-bezier(0.000, 0.000, 0.580, 1.000);
    -moz-transition: all 0.27s cubic-bezier(0.000, 0.000, 0.580, 1.000);
    -o-transition: all 0.27s cubic-bezier(0.000, 0.000, 0.580, 1.000);
    -ms-transition: all 0.27s cubic-bezier(0.000, 0.000, 0.580, 1.000);
    transition: all 0.27s cubic-bezier(0.000, 0.000, 0.580, 1.000);
}
.owl-prev {
    left: 0;
}
.owl-next {
    right: 0;
}
.owl-prev:hover, .owl-next:hover {
    color: rgba(255, 255, 255, .95);
    -webkit-transition: 0 none !important;
    -moz-transition: 0 none !important;
    -ms-transition: 0 none !important;
    -o-transition: 0 none !important;
    transition: 0 none !important;
}
.owl-prev:active, .owl-next:active {
    -webkit-transform: scale(0.94);
    -moz-transform: scale(0.94);
    -o-transform: scale(0.94);
    -ms-transform: scale(0.94);
    transform: scale(0.94);
}
.owl-carousel:hover .owl-prev {
    opacity: 1;
    left: 25px;
}
.owl-carousel:hover .owl-next {
    opacity: 1;
    right: 25px;
}
/* =========================================================== 
    4. Navigation
============================================================ */

#header-section {
    position: fixed;
    line-height: 80px;
    height: 80px;
    border-bottom: 1px solid #e6e6e6;
    background: rgb(255, 255, 255);
    background: rgba(255, 255, 255, 0.95);
    width: 100%;
    top: 0;
    left: 0;
    z-index: 999;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
}
header nav {
    text-align: right;
}
header nav li {
    display: inline-block;
    padding: 0 9px;
}
header nav ul {
    margin-bottom: 0;
}
header nav ul li a {
    display: inline-block;
    padding: 0;
    color: #c1c1c1;
    font-size: 14px;
    line-height: 80px;
    text-transform: uppercase;
    font-weight: 500;
    /*letter-spacing: 1.5px*/
}
header nav a:hover, header nav a.active {
    color: #d3145a;
}
header nav > ul > li:last-child {
    padding-right: 0;
}
.header-hide {
    height: 80px;
    -webkit-transform: translateY(-100%);
    -moz-transform: translateY(-100%);
    transform: translateY(-100%);
}
#home-content .header-hide {
    position: absolute;
    -webkit-transform: translateY(0%);
    -moz-transform: translateY(0%);
    transform: translateY(0%);
}
.header-show {
    position: fixed;
    height: 80px;
    -webkit-transform: translateY(0%);
    -moz-transform: translateY(0%);
    transform: translateY(0%);
}
/* Sub Nav */

header nav ul li ul {
    display: none;
    position: absolute;
    margin-left: -15px;
    margin-top: -4px;
}
header nav ul li ul:before {
    content: '';
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 10px solid #f3f3f3;
    position: absolute;
    left: 25%;
    margin-left: -10px;
    top: -10px;
    width: 0;
    height: 0;
}
header nav ul li:hover ul {
    display: block;
}
header nav ul li ul li {
    /*background: rgb(243, 243, 243);*/
    /*background: rgba(243, 243, 243, 0.95);*/
    background: rgba(0, 0, 0, 0.8);
    display: block;
    line-height: 42px;
    height: 42px;
    min-width: 160px;
    text-align: left;
    padding: 0;
}

.single #header-section,.single-blog #header-section{
  background: transparent;
  /*background: rgba(0, 0, 0, 0.5);*/
  border-bottom: none;
  position: absolute;
  -webkit-transform: translateY(0%);
  -moz-transform: translateY(0%);
  transform: translateY(0%);
}

#header-section.altmenu nav ul li ul li a {
    color: #d1d1d1;
}
header nav ul li ul li a {
    line-height: 42px;
    display: block;
    padding: 0 20px;
    height: 42px;
}

@media screen and (max-width: 1024px){
	header nav ul li ul li a {
		padding-left: 50px !important;
	}
}
/* Alternative Menu - No Show */

#header-section.altmenu.header-hide {
    background: transparent;
    border-bottom: none;
    position: absolute;
    -webkit-transform: translateY(0%);
    -moz-transform: translateY(0%);
    transform: translateY(0%);
}

#header-section.altmenu ul li a {
    color: #fff;
}

#header-section.altmenu ul li a:hover {
    color: #d3145a;
}
#header-section.altmenu.header-show ul li a, #header-section.altmenu.header-show ul li a {
    color: #000;
}
#header-section.altmenu.header-show ul li a:hover, #header-section.altmenu.header-show ul li a.active {
    color: #f64747;
}
/* Alternative Menu 3 - Always Visible */

.ha-header.menushow {
    -webkit-transform: translateY(0%);
    -moz-transform: translateY(0%);
    transform: translateY(0%);
}
.nohero #header-section {
    position: absolute;
}
.nohero .hero-copy {
    margin: 0;
}

/* =========================================================== 
    5. Hero (Video / Image / Slider / Canvas)
============================================================ */

/* General
================================================== */

.spacer {
    height: 80px;
}

.hero {
    padding: 0;
}
.hero .container, .hero-single .container {
    display: table;
    height: 100%;
}
.hero-inner {
    text-align: center;
    z-index: 9;
    display: table-cell;
    vertical-align: middle;
    position: relative;
    width: 100%;
}

.animate {
    visibility: hidden;
}

.hero-copy {
    color: #fff;
    margin: 0 15px;
    font-size: 22px;
    line-height: 32px;
    font-weight: 500;
}
.hero-copy.bigger {
    font-size: 32px;
}
.hero-copy.dark {
    color: #333;
}
.hero-copy.wide {
    letter-spacing: 3px;
    text-transform: uppercase;
    margin: 25px 15px;
}
.tinfont {
    font-size: 14px;
}
.btn-holder {
    display: block;
    margin: 30px 15px;
}

/* Image 
================================================== */

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /*background: rgba(255, 255, 255, 0.55);*/
    /*background: rgba(255, 255, 255, 0.40);*/
    background: rgba(0, 0, 0, 0.5);
    /*background: rgba(134, 12, 129, 0.2);*/
    /* browsers */
    filter: progid: DXImageTransform.Microsoft.gradient(GradientType=0, startColorstr='#99999900', endColorstr='#99999900');
    /* IE */
}
.overlay.canvas {
    z-index: 2;
}
.overlay.lighterbg {
    background: rgba(0, 0, 0, 0.45);
    /* browsers */
    filter: progid: DXImageTransform.Microsoft.gradient(GradientType=0, startColorstr='#99999900', endColorstr='#99999900');
    /* IE */
}
.overlay.pattern {
    background: url(../images/elements/pattern.png);
    filter: progid: DXImageTransform.Microsoft.gradient(GradientType=0, startColorstr='#99999900', endColorstr='#99999900');
    /* IE */
}
.overlay.light {
    background: rgba(255, 255, 255, 0.6);
    /* browsers */
    filter: progid: DXImageTransform.Microsoft.gradient(GradientType=0, startColorstr='#99999900', endColorstr='#99999900');
    /* IE */
}
.hero.parallax-background {
    padding: 0;
    background-repeat: no-repeat !important;
    background-size: cover !important;
}
/* Canvas
================================================== */

#hero-canvas {
    position: absolute;
    top: 0;
    z-index: 1;
}
/* Video
================================================== */

#top-menu {
    position: fixed;
}
@font-face {
    font-family: 'ytpregular';
    src: url('../fonts/ytp-regular.eot');
}
@font-face {
    font-family: 'ytpregular';
    src: url(data:application/x-font-woff;charset=utf-8;base64,d09GRgABAAAAAA5sABEAAAAAFCAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAABgAAAABwAAAAcZ9iuNUdERUYAAAGcAAAAHQAAACAAdAAET1MvMgAAAbwAAABJAAAAYHUMUrFjbWFwAAACCAAAAKkAAAGKn5XycWN2dCAAAAK0AAAANgAAADYNLQohZnBnbQAAAuwAAAGxAAACZVO0L6dnYXNwAAAEoAAAAAgAAAAIAAAAEGdseWYAAASoAAAGVQAAB4jz86dSaGVhZAAACwAAAAAzAAAANgbKONpoaGVhAAALNAAAACAAAAAkESQLXGhtdHgAAAtUAAAAVAAAARxOmwVwbG9jYQAAC6gAAAAjAAAAkFoEXRRtYXhwAAALzAAAACAAAAAgAWoB625hbWUAAAvsAAAA+wAAAeok3Eb+cG9zdAAADOgAAADAAAABN99tv1lwcmVwAAANqAAAALkAAAFY3I6ikndlYmYAAA5kAAAABgAAAAbHMlGnAAAAAQAAAADMPaLPAAAAAM3Nk7QAAAAAzc13sXjaY2BkYGDgA2IJBhBgYmAEQjcgZgHzGAAHTAB5AAAAeNpjYGbZwDiBgZWBhdWY5SwDA8MsCM10liGNKQ3IB0rBASMDEgj1DvdjcGDgfcDAlvYPqJJVldEZpoZVkuUZkFJgYAQAUUULewAAAHjaY2BgYGaAYBkGRgYQaAHyGMF8FoYMIC3GIAAUYQOyeBkUGKIYqhgWKHAp6CvEP2D4/x+sAyTuyJAIFGeAizP+//r/8f/D//f+n/HA8oHo/WcKblDzsQBGoOkwSUYmIMGErgDiRLyAhZWNnYOTi5uHl49fQFBIWERUTFxCUkpaRhYiLyevoKikrKKqpq6hqaWto6unb2BoZGxiambOQF1gQZYuAIQnH4IAAAAAAAAAAAABegEnAHEAswC9AOAA5QD+ARcBIwBdAHIBtgBcAGAAZgByAI8AogErAbIAUwBEBREAAHjaXVG7TltBEN0NDwOBxNggOdoUs5mQxnuhBQnE1Y1iZDuF5QhpN3KRi3EBH0CBRA3arxmgoaRImwYhF0h8Qj4hEjNriKI0Ozuzc86ZM0vKkap36WvPU+ckkMLdBs02/U5ItbMA96Tr642MtIMHWmxm9Mp1+/4LBpvRlDtqAOU9bykPGU07gVq0p/7R/AqG+/wf8zsYtDTT9NQ6CekhBOabcUuD7xnNussP+oLV4WIwMKSYpuIuP6ZS/rc052rLsLWR0byDMxH5yTRAU2ttBJr+1CHV83EUS5DLprE2mJiy/iQTwYXJdFVTtcz42sFdsrPoYIMqzYEH2MNWeQweDg8mFNK3JMosDRH2YqvECBGTHAo55dzJ/qRA+UgSxrxJSjvjhrUGxpHXwKA2T7P/PJtNbW8dwvhZHMF3vxlLOvjIhtoYEWI7YimACURCRlX5hhrPvSwG5FL7z0CUgOXxj3+dCLTu2EQ8l7V1DjFWCHp+29zyy4q7VrnOi0J3b6pqqNIpzftezr7HA54eC8NBY8Gbz/v+SoH6PCyuNGgOBEN6N3r/orXqiKu8Fz6yJ9O/sVoAAAAAAQAB//8AD3jaTZVrbBxXFcfvufNe72Nmdx77tmfHO2N76117784OTr154YAbR7RQuUQhttoSuXZKFQVKKYqgiFJAgkpIkVClIn8opSomjXY3VHHTFldEIYpay1hR+ID4Bha27FoIEQGpd8Idu4lY7c6eOfee//2f3+zeizAaQwif4iYRgwRUbgGqjLYFNvVxtcVzfxltM5iGqMUEaS5ItwU+vTPahiBPFFMpmoo5hnv8XnjFn+Um7/xmjF1GCLHoPf+fgsUVEYcSKIcGkYbaWYxKLZ3bgGa50qpACQ0NeyYoYILaDTqpurUK2FZBUYlJY8ukEc0egLpbo+kY8O/BQcx2dvwP2Fh6/Q+Gl19fyroubHmer7rpjHllPZ/NKB+tp2/4/TzxSx0zo/74uUY29vJZOEHIfng4lzz7cjyXzn/jJwqCwCOLdj2iPSP3F/hUAHF3v+Cviee5DIqhJDLRACLoPGpHECq1M7Sd5iDZ/W6zQW8mu9Ecql7SI6xYaiOpnxCydwPNWqWJ/tSSjY1mqtqU5ZYNpWal2pJiGy0XSi1bVuKX1Fyh1GuMoJYeUeJvy/GEVbTpfTOjHJRVzUim0tlcwekbKD1QrgR5M97OV8nIyMjQsKPUEKWGNEVFFBwqEs/yHMEVFMM1PIc4FhiWQVxHcxjD0zzXEkgbmHe5G1eA9T955453xd+B9tbpi6vj10+fvj6+evH0Fju7vPDU5szVY8euzmw+tXABv7kEov/v33WOv+v/C8LG9M2xD19/EquzCyuHVuY6R25Obz35+odw4NDKwuzWHAK86q9x21wKYYQkjFeZ3M5f/TUmw6Qo12P+38Wf0zEZpVABlVANfQu1owHXXMD1AdIyQhvNgeou2b1LAuhAkVwyExRps/ppAE230qrTX1MrEVXil5W4qlm9thMAMpR2MtVHAbXMnBJvZ8oVGjdZ5XK6u6cwNExqdNJ9dnm4D+8eIeYeM7hH0b3H9bcQuczdeH75ef+TxTveO/5tuDK2Mrs5d+HmzQtzm7MrbP6ZqxMrrz2+vf34aysTV5+5iN9YhMi51W93Tiz5/wFp+ujy/MntGXx+dfrjqflrO788Ob989MaMP716+Nr8FOpCjbvnw032BUrm82gKfQc10SJaAwwZGINHEUrksaEndI3XCppBavWaU7Nrda/u7QfPsnmBF1ReK4NjCxbkgVRJdW/MdmiyjHkhCgKvGkrNq+uGngPLUDXVioJTcGxONWguENOIYmkq1lQqaDu2q1AqKi6qRh6CN0uqhlkn1WIwt1Z3FTqH6lt2kWLkqZpQ2F1H4D3X1CzFUkCp1R8EVaeKGr3mgXpyd3OKZTcgioMi3qImqA2FaFSYrkHd7BYESnSMdqAx1HNgg/6pG0Bo95RAGehqoNAuaRHR90wGdXyJtkAJ1DxSDVQCfS8ocui+EohqagNjFroniyLAOYbBgvSQxuXxiUSCGQXReJBnjafhbf6xBs8P9ZclLLJdTJfdL3bLRsgd50Nf52P7JIWjInYqFuZhUGErucF0Qj/zNJtPGArDz7EYFi0chvSpw8C/mJRgRVLfgrEf7RvowhyjJ3JPfPlX/h8N/6fZryX7bh/pJsPj4QLX9Ra89NL3QQkljmOqnognU6HcxKkoI/JsaJ8cDcfCqZAMC2cfFeSoHu+WFEmWzIQqx8PVmCThSFqPKqLIsgxJx0QYZt1iocjgfrPbjIoiltkXxzxTlE5FVTL1zb7YmTOSzXGiEBU0ZgHzXexjd9HklDtTc2P7iR4/Wmqk/jGhfZXjZW1bYFVp3y01G+ocrh/K9VST3+05OUsaEnAYGKZRfWIpDQaXT2Ej2/vCl1S5nNe7jHq5eCAlM7rOpFx8PP1Zf/NzCUdkpXjUhHmdfdi/Xv31D6WccPAIDjNMmPnBzC+ErAipZzPf++LkQyGRhTDEpCNkbmLpz8892zmE3+8swq1YODIqf2Z7lO8RdJHn7RS8kpY6r0qhAg7xXIHnhViu+zBDbhcx16UOfGVgaGkoXe6LhwS+h7NgSa+vR7ESZvPyq6VUqN+SC0ZSTPm3oETGoxGIh/p60w3naIyJ/Gywf9CMnnAemR3524hT5DErxOwBhR55COMw3e+u0T0tOEsR0JMx+NBHftD/AJ+D/f7v/TW+9t+P+Bo9e/7vNYz+By6FsKkAAAB42mNgZGBgYGRwbI8IWhzPb/OVQZ6DAQTOni3fCKP/+/x7yrOBNRTI5WBgAokCAG3mDbAAeNpjYGRgYFX9t5eBgeftf5//WTwbGIAiKMAdAJycBph42mN6w+DCwcDAAMIsZ8D0HhBNLIap52D478fBwHQRyvbBpZ7nLYMtKeZjt5OJhxT1TKsYGFhDETTjcSAG0gyPoRgozigIpL0hNEiOBcgFAEBoNC142mNgYNCBwjoccALDBEY9RhsgPIMMmZcRhHtIhkcA9pQspAAAAQAAAEcBVAALAAAAAAACAAEAAgAWAAABAACTAAAAAHjalZCxTgJBFEXPApJoYYgF9VZUSIAFTdDCnmiIgsTKsASQuGiCu0YaCr4OfomKOzsTCHRmMzPn3blz38sCFyzJ4uXOgbKWZY+8KssZLqk7zkp9cJyjSOT4jD9WjvPSt46vKHoFx2txyfGGqnfPO18kyohSGjBjJPqRFmqPmWolWkZ9o0uHZ/EkfTNgTo0KVX017ujRps+TyDqvT7xW9U/UV1Vz9ZryrQn8o8QOL1JsdVA/5IwZpv7f/YsKTW50O1PqpzKNZyw1UnKov2c9dbkD7c1/zdhXFSrNdIz3HbuaJFH1KM9CZyDN3N3SoiFupfP66mbOYAd8k0EGAHjabc05TwJhHITxZ0BBBc/P4IkI7y4sh0dBsosHKiqHeLUiiTE0FH56Xdl/6TS/ZIoZUszzM+ad/3IOSilNmm122GWPfQ4ocEiRI0qUcXj4VKgSUKNOgybHnHDKGSER7Xjjgkuu6HDNDbd0ueOeB3r0GTDkkRFPPPPCK29a0KIyympJy1pRTnmtak3r2tCmtjLjz+/ph5edfU2cc2Fiy/3px4Xpmb5ZMatmYNbMutkwm2Yr0W8nBnOj+OcXVDk0PnjaRc67DoJAEAVQFuT9fqsJCSZ2+w12QkNjrCCx9w+sbSy19DsGK/9Ob3RZujk3k7nzZp8bsbvSkXXoR8Yew9gavN9QNHSUHTFch4oMfuoV0uqGNL4nv25emq3yHzzADwVcwOsFHMCtBWzAWQlYgJ0ImIA1rRmAeRbQAWM6vQD04A9GgXglRBo4Kh+19gJGYDgzBqOnZALGO8kUTLaSGZhWkjmYrSULMA8kS7CYi5ZgKTlQxr/W1F5aAAAAAAFRp8cxAAA=) format('woff'), url('../fonts/ytp-regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}
.mb_YTVPlayer:focus {
    outline: 0;
}
.mb_YTVPlayer {
    display: block;
    transform: translateZ(0);
    transform-style: preserve-3d;
    perspective: 1000;
    backface-visibility: hidden;
    transform: translate3d(0, 0, 0);
    animation-timing-function: linear;
}
.mb_YTVPlayer.fullscreen {
    display: block!important;
    position: fixed!important;
    width: 100%!important;
    height: 100%!important;
    top: 0!important;
    left: 0!important;
    margin: 0!important;
    border: none !important;
}
.mb_YTVPlayer.fullscreen .mbYTP_wrapper {
    opacity: 1 !important;
}
.mbYTP_wrapper iframe {
    max-width: 4000px !important;
}
.inline_YTPlayer {
    margin-bottom: 20px;
    vertical-align: top;
    position: relative;
    left: 0;
    overflow: hidden;
    border-radius: 4px;
    -moz-box-shadow: 0 0 5px rgba(0, 0, 0, .7);
    -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, .7);
    box-shadow: 0 0 5px rgba(0, 0, 0, .7);
    background: rgba(0, 0, 0, .5);
}
.inline_YTPlayer img {
    border: none!important;
    -moz-transform: none!important;
    -webkit-transform: none!important;
    -o-transform: none!important;
    transform: none!important;
    margin: 0!important;
    padding: 0!important
}
/*CONTROL BAR*/

.mb_YTVPBar .ytpicon {
    font-size: 20px;
    font-family: 'ytpregular';
}
.mb_YTVPBar .mb_YTVPUrl.ytpicon {
    font-size: 30px;
}
.mb_YTVPBar {
    transition: opacity 1s;
    -moz-transition: opacity 1s;
    -webkit-transition: opacity 1s;
    -o-transition: opacity 1s;
    display: block;
    width: 100%;
    height: 10px;
    padding: 5px;
    position: absolute!important;
    bottom: 0;
    left: 0;
    -moz-box-sizing: padding-box;
    -webkit-box-sizing: border-box;
    text-align: left;
    z-index: 1000;
    font: 14px/16px sans-serif;
    color: white;
    opacity: .1;
}
.mb_YTVPBar.visible, .mb_YTVPBar:hover {
    opacity: 1;
}
.mb_YTVPBar .buttonBar {
    transition: all 1s;
    -moz-transition: all 1s;
    -webkit-transition: all 1s;
    -o-transition: all 1s;
    background: transparent;
    font: 12px/14px Calibri;
    position: absolute;
    top: -25px;
    /*bottom: 80px;*/
    left: 0;
    padding: 5px;
    width: 100%;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -o-box-sizing: border-box;
    box-sizing: border-box;
}
.mb_YTVPBar:hover .buttonBar {
    background: rgba(0, 0, 0, 0.4);
}
.mb_YTVPBar span {
    display: inline-block;
    font: 16px/20px Calibri, sans-serif;
    position: relative;
    width: 30px;
    height: 25px;
    vertical-align: middle;
}
.mb_YTVPBar span.mb_YTVPTime {
    width: 130px;
}
.mb_YTVPBar span.mb_YTVPUrl, .mb_YTVPBar span.mb_OnlyYT {
    position: absolute;
    width: auto;
    display: block;
    top: 6px;
    right: 10px;
    cursor: pointer;
}
.mb_YTVPBar span.mb_YTVPUrl img {
    width: 60px;
}
.mb_YTVPBar span.mb_OnlyYT {
    left: 185px;
    right: auto;
}
.mb_YTVPBar span.mb_OnlyYT img {
    width: 25px;
}
.mb_YTVPBar span.mb_YTVPUrl a {
    color: white;
}
.mb_YTVPPlaypause, .mb_YTVPlayer .mb_YTVPPlaypause img {
    cursor: pointer;
}
.mb_YTVPMuteUnmute {
    cursor: pointer;
}
/* Slider
================================================== */

section#home-content {
    padding: 0;
    position: relative;
    z-index: 99;
}
#main-heading {
    padding: 0;
    margin: 0;
    position: relative;
}
.bannercontainer {
    width: 100%;
    padding: 0;
    z-index: -1;
}
.bannercontainer.hero-fixed {
    position: fixed;
}
.banner {
    width: 100%;
    position: relative;
}
/* Hero - Single Page
================================================== */

.hero-single {
    position: relative;
    padding: 0;
    background-repeat: no-repeat !important;
    background-size: cover !important;
    background-color: #333;
    background-position: center center;
}
.hero-single h1 {
    text-transform: uppercase;
}
.hero-single .meta {
    text-align: center;
    color: #000;
    text-transform: uppercase;
}
.hero-single .meta span {} .hero-single .meta span:after {
    content: '\00B7';
    vertical-align: top;
    color: #d3145a;
    padding-left: 10px;
    font-size: 28px;
    margin-right: 6px;
}
.hero-single .meta span:last-child:after {
    content: '';
}

/* Hero Versions
================================================== */

h1.big_white {
    color: #fff;
    font-size: 46px;
    margin: 10px 15px;
    text-transform: uppercase;
}
h1.big_white.dark {
    color: #333;
}
h1.big_white.border {
    border: 1px solid #a0a0a0;
    padding: 0;
    margin: 0;
    display: inline-block;
    padding: 2px 15px;
}
.big_white span {
    color: #d3145a;
}
.hero-inner.left {
    text-align: left;
}

.no-video {
    background-image: url(../images/bg/parallax-change.jpg); 
}

.parallax-background0 {
    background-image: url(../images/bg/parallax-change.jpg); 
}

.parallax-background1 {
    background-image: url(../images/bg/parallax-change.jpg); 
}

.parallax-background2 {
    background-image: url(../images/bg/parallax-change.jpg); 
}

.parallax-background3 {
    background-image: url(../images/bg/parallax-change.jpg); 
}

.parallax-background4 {
    background-image: url(../images/bg/parallax-change.jpg); 
}

.parallax-background5 {
    background-image: url(../images/bg/parallax-change.jpg); 
}

.parallax-background6 {
    background-image: url(../images/bg/parallax-change.jpg); 
}

.parallax-background7 {
    background-image: url(../images/bg/parallax-change.jpg); 
}

.parallax-background8 {
    /*background-image: url(../images/06_Grunge.jpg); */
    /*background-image: url(../images/_visionbg2.jpg);*/
    background-image: url(../images/_purebg.jpg);
    background-position: center center;
}
.parallax-background9 {
    background-image: url(../images/bg/parallax-change.jpg); 
}
.parallax-background10 {
    background-image: url(../images/bg/parallax-change.jpg); 
}
.parallax-background11 {
    background-image: url(../images/bg/parallax-change.jpg); 
}
.parallax-background12 {
    background-image: url(../images/bg/parallax-change.jpg); 
}
.parallax-background13 {
    background-image: url(../images/bg/parallax-change.jpg); 
}
.parallax-background14 {
    background-image: url(../images/bg/parallax-change.jpg); 
}
.parallax-background15 {
    background-image: url(../images/bg/parallax-change.jpg); 
}
.parallax-background16 {
    background-image: url(../images/bg/parallax-change.jpg); 
}
.parallax-background17 {
    background-image: url(../images/bg/parallax-change.jpg); 
}
.parallax-background18 {
    background-image: url(../images/bg/parallax-change.jpg); 
}
.parallax-background19 {
    background-image: url(../images/bg/parallax-change.jpg); 
}
.parallax-background20 {
    background-image: url(../images/bg/parallax-change.jpg); 
}
.parallax-background21 {
    background-image: url(../images/bg/parallax-change.jpg); 
}
.parallax-background22 {
    background-image: url(../images/bg/parallax-change.jpg); 
}
.parallax-background23 {
    background-image: url(../images/bg/parallax-change.jpg); 
}
.parallax-background24 {
    background-image: url(../images/bg/parallax-change.jpg); 
}
.parallax-background25 {
    background-image: url(../images/bg/parallax-change.jpg); 
}
.parallax-background26 {
    background-image: url(../images/bg/parallax-change.jpg); 
}
.parallax-background27 {
    background-image: url(../images/bg/parallax-change.jpg);
}
.parallax-background28 {
    background-image: url(../images/bg/parallax-change.jpg);
}
.parallax-background29 {
    background-image: url(../images/bg/parallax-change.jpg);
}
.parallax-background30 {
    background-image: url(../images/bg/parallax-change.jpg);
}
.parallax-background31 {
    background-image: url(../images/bg/parallax-change.jpg);
}
/* Scout
================================================== */

.big_white.scout {
    color: #000;
    font-size: 100px;
    font-weight: 800;
}

.hero-copy.scout {
    color: #000;
}

.hero-btn.scout {
    color: #000;
}

/* Spa
================================================== */
.big_white.spa {
    font-family: "Open Sans", sans-serif;
    font-size: 66px;
    text-transform: none;
}

.hero-copy.spa {
    font-size: 32px;
    line-height: 46px;
}

/* Fashion
================================================== */

.hero-copy.fashion {
    margin: 30px 15px;
}

.big_white.fashion {
    font: 106px/106px "Open Sans", sans-serif;
    text-transform: none;
}

.btn-holder.fashion a {
    position: absolute;
    bottom: 80px;
    border: 1px solid #fff;
    color: #fff;
}

.btn-holder.fashion a:hover {
    background-color: #fff;
    color: inherit;
}

/* Legal
================================================== */

.hero-copy.legal {
    font-size: 18px;
}

/* Horror
================================================== */
.big_white.horror {
    font-family: "Creepster";
    font-size: 78px;
    line-height: 78px;
    margin: 0px 15px;
}

.btn-holder.horror {
    margin: 20px 15px;
}

.btn-holder.horror a.hero-btn{
    font-family: "Montserrat";
    letter-spacing: normal;
    font-weight: 800;
}

.hero-copy.horror {
    font-family: "Montserrat";
    margin: 15px;
    font-size: 19px;
}

#team-photo.horror {
    background-image: url(../images/halloween/house.jpg);
    background-position:top; 
}

/* Left Align - used in Interior design; to get this look, 
   just add "leftalign" class to "home-content" section and hero class.
================================================== */

.hero-inner.leftalign {
    text-align: left;
}

.leftalign .section-title,.leftalign #portfolio-title, .leftalign #quote h2, .leftalign #quote .quote-author,
.leftalign #testimonials .quote-author, .leftalign #testimonials blockquote, .leftalign #testimonials blockquote > a {
    padding-left: 0;
    text-align: left;
}
.leftalign .section-tagline{
    text-align: left;
    max-width: 650px;
    padding: 0 0 80px 0;
    margin: 0;
}

.leftalign .section-title:after {
    margin-left: 0;
}

.leftalign .section-header {
    margin: 0 auto;
    max-width: 1140px;
    width: 90%;
}

.leftalign #posts .single-post {
    margin: 0 auto;
    max-width: 1140px;
    text-align: left;
    padding-left: 15px;
    width: 90%;
}

.leftalign #posts .category {
    margin-right: 5px;
}

.leftalign .section-header > h2, .leftalign .section-header p, .leftalign .parallax-quote, .leftalign .quote-author, .leftalign #testimonials blockquote,
.leftalign #testimonials .quote-author {
    margin-left: 15px;
}

.leftalign ul.filter, .leftalign ul.filter-target, .leftalign #port-filter {
    text-align: left;
    margin-left: -12.5px;
}

.leftalign #features .column, .leftalign #callout .title, .leftalign #callout span, .leftalign #callout-form, .leftalign .tweet {
    text-align: left;
}


/* GrayScale - apply grayscale class to all images
================================================== */

.grayscale {
  /* Firefox 10+, Firefox on Android */
  filter: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg'><filter id='grayscale'><feColorMatrix type='matrix' values='0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0 0 0 1 0'/></filter></svg>#grayscale");

  /* IE 6-9 */
  filter: gray;

  /*
    Chrome 19+,
    Safari 6+,
    Safari 6+ iOS,
    Opera 15+
  */
  -webkit-filter: grayscale(100%);
}

.grayscale.grayscale-fade {
  -webkit-transition: -webkit-filter .5s;
}

.grayscale.grayscale-fade:hover {
  -webkit-filter: grayscale(0%);
  filter: none;
}

.grayscale-replaced.grayscale-fade svg {
  opacity: 1;
  -webkit-transition: opacity .5s ease;
  transition: opacity .5s ease;
}

.grayscale-replaced.grayscale-fade:hover svg {
  opacity: 0;
}

/* Chocolateria
================================================== */

.hero-copy.choco {
    margin: 40px 0;
    font-style: italic;
}

.big_white.choco {
    font: 38px/90px "Montserrat", sans-serif;
    font-weight: 600;
    letter-spacing: 10px;
    text-transform: none;
    border-top: 1px solid #00d3f9;
    border-bottom: 1px solid #00d3f9;
    margin: auto;
    display: inline-block;
}

/* Bar
================================================== */

.hero-copy.bar {
    position: absolute;
    bottom: 40px;
    width: 100%;
    text-align: center;
    font: 15px/42px "Montserrat", sans-serif;
    color: #fff;
    margin: 40px 0;
    letter-spacing: 5px;
}

.big_white.bar {
    color: #00d3f9;
    font: 38px/90px "Montserrat", sans-serif;
    font-weight: 600;
    padding: 0 30px;
    letter-spacing: 10px;
    border: 3px solid #00d3f9;
    margin: auto;
    display: inline-block;
}

.btn-holder.bar a {
    color: #fff;
}




/* =========================================================== 
    6.  About Us Section
============================================================ */

#about-us.menu-in {
    padding: 170px 0 40px 0;
}
#about-icons {
    border-top: 1px solid #e6e6e6;
    text-align: center;
}
#about-icons .container {
    width: 100%;
}
#about-icons .column {
    overflow: hidden;
    position: relative;
    padding: 120px 50px;
    min-height: 380px;
}
#about-icons .column:hover {
    background-color: #f3f3f3;
}
#about-icons .column.border {
    border-right: 1px solid #e6e6e6;
}
#about-icons i {
    font-size: 64px;
    color: #d3145a;
}
#about-icons h2 {
    font-size: 16px;
    line-height: 24px;
    text-transform: uppercase;
    font-weight: 500;
    margin: 20px 0;
}
#about-icons span.desc {
    opacity: 0;
    display: block;
    position: absolute;
    top: 75%;
    left: 0;
    width: 100%;
    padding: 0 50px;
    -webkit-transform: perspective(500px) rotateX(-90deg) rotateY(0deg) rotateZ(0deg);
    -moz-transform: perspective(500px) rotateX(-90deg) rotateY(0deg) rotateZ(0deg);
    -o-transform: perspective(500px) rotateX(-90deg) rotateY(0deg) rotateZ(0deg);
    -ms-transform: perspective(500px) rotateX(-90deg) rotateY(0deg) rotateZ(0deg);
    transform: perspective(500px) rotateX(-90deg) rotateY(0deg) rotateZ(0deg);
    -webkit-transition: all 0.27s cubic-bezier(0.000, 0.000, 0.580, 1.000);
    -moz-transition: all 0.27s cubic-bezier(0.000, 0.000, 0.580, 1.000);
    -o-transition: all 0.27s cubic-bezier(0.000, 0.000, 0.580, 1.000);
    -ms-transition: all 0.27s cubic-bezier(0.000, 0.000, 0.580, 1.000);
    transition: all 0.27s cubic-bezier(0.000, 0.000, 0.580, 1.000);
}
#about-icons .main {
    -webkit-transition: all 300ms cubic-bezier(.07, .58, .39, 1);
    -moz-transition: all 300ms cubic-bezier(.07, .58, .39, 1);
    -o-transition: all 300ms cubic-bezier(.07, .58, .39, 1);
    -ms-transition: all 300ms cubic-bezier(.07, .58, .39, 1);
    transition: all 300ms cubic-bezier(.07, .58, .39, 1);
}
/* Service hover */
#about-icons .main i, #about-icons .main h2 {
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

#about-icons .column:hover .service-intro {
    opacity: 0;
    -webkit-transform: scale(0);
    -moz-transform: scale(0);
    -o-transform: scale(0);
    -ms-transform: scale(0);
    transform: scale(0);
}
#about-icons .column:hover .desc {
    opacity: 1;
    -webkit-transform: perspective(500px) rotateX(0deg) rotateY(0deg) rotateZ(0deg);
    -moz-transform: perspective(500px) rotateX(0deg) rotateY(0deg) rotateZ(0deg);
    -o-transform: perspective(500px) rotateX(0deg) rotateY(0deg) rotateZ(0deg);
    -ms-transform: perspective(500px) rotateX(0deg) rotateY(0deg) rotateZ(0deg);
    transform: perspective(500px) rotateX(0deg) rotateY(0deg) rotateZ(0deg);
}
#about-icons .column:hover .main {
    margin-top: -75px;
}
#about-icons a span.desc, #about-icons a:hover span.desc {
	color: #666;
}

/* =========================================================== 
    7.  Quote Section
============================================================ */

#quote {
    position: relative;
/*    background-image: url(../images/chandler3.jpg); */
    background-image: url(../images/demo/vision2016.jpg);
    height: 100%;
    width: 100%;
    overflow: hidden;
    padding: 170px 0;
}
#quote .container {
    position: relative;
}
#quote h2 {
    color: #000;
    font-weight: normal;
    /*font-family: 'Open Sans', Arial, sans-serif;*/
    text-align: center;
}
#quote .quote-author {
    margin-top: 20px;
    color: #000;
    text-transform: uppercase;
    text-align: center;
    display: block;
    font-size: 18px;
    font-weight: normal;
}
/* =========================================================== 
    8. What We Do
============================================================ */

.filter-row {
    background-color: #f3f3f3;
}
ul.filter, ul.filter-target {
    text-align: center;
    margin-bottom: 0;
}
ul.filter > li, ul.filter-target > li {
    position: relative;
    display: inline-block;
    margin: 0 25px;
    text-align: center;
}
ul.filter > li a, ul.filter-target > li a{
    display: inline-block;
    line-height: 90px;
    font-size: 13px;
    color: #adadad;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    text-align: center;
}
ul.filter > li.active:after,ul.filter-target > li.active:after {
    content: '';
    position: absolute;
    left: 50%;
    margin-left: -10px;
    bottom: 0;
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 10px solid #fff;
}
ul.filter > li.active a, ul.filter > li a:hover,
ul.filter-target > li.active a, ul.filter-target > li a:hover {
    color: #d3145a;
}
#option-section {
    padding: 80px 0;
    background-color: #fff;
}
#option-section .container .row:first-child {
    display: block;
}
/* Progress Bars
/*------------------*/

.progress-text {
    margin-bottom: 10px;
    color: #adadad;
}
.progress-text span {
    float: right;
}
.progress-bar {
    position: relative;
    height: 3px;
    margin: 0 0 15px 0;
    background: #c4c4c4;
    width: 100%
}
.progress-bar > span {
    width: 0%;
    display: block;
    height: 100%;
    background-color: #d3145a;
}
.chart {
    position: relative;
    display: inline-block;
    width: 120px;
    height: 120px;
    text-align: center;
}
.chart canvas {
    position: absolute;
    top: 0;
    left: 0;
}
.chart span {
    line-height: 120px!important;
    text-align: center;
}
.progress-circle {
    display: inline-block;
    text-align: center;
    margin: 0 30px 0 0;
}
/* =========================================================== 
    9. Achievements
============================================================ */

#achievements {
    position: relative;
    padding: 130px 0 120px 0;
    text-align: center;
}
#achievements .container {
    position: relative;
}
.stats span {
    display: block;
    text-align: center;
    color: #fff;
}
.stats .icon {
    margin: auto;
    width: 120px;
    height: 120px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 50%;
    -webkit-transition: all 500ms;
    -moz-transition: all 500ms;
    transition: all 500ms;
}
.post .stats .icon {
    background: transparent;
    border: 1px solid #d3145a;
}
.stats .icon:hover {
    background: #d3145a;
    color: #fff;
}
.stats i {
    height: 120px;
    line-height: 120px;
    font-size: 48px;
}
.stats .number {
    font-size: 48px;
    color: #d3145a;
    margin: 40px 0 15px 0;
}
.stats .desc {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}
/* =========================================================== 
    10. Portfolio
============================================================ */

#port-filter {
    text-align: center;
    line-height: 90px;
    margin-bottom: 0;
}
#port-filter li {
    display: inline-block;
    padding: 0 25px;
    line-height: 14px;
}
#port-filter li:last-child {
    border-right: 0;
}
#port-filter li a {
    font-size: 12px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #adadad;
}
#port-filter li a:hover, #port-filter li.active a {
    color: #d3145a;
}
#portfolio-wrapper > div {
    width: 25%;
    overflow: hidden;
    position: relative;
}
#portfolio-wrapper > div img {
    width: 100%;
    display: block;
    margin: 0;
}
#portfolio-wrapper > .block.gallery img {
    position: absolute;
    z-index: 1;
    top: 0;
}
#portfolio-wrapper .block.gallery img.base {
    z-index: -1;
    display: block;
    position: static;
}
#portfolio-wrapper .block.gallery img.active {
    z-index: 3;
}
#portfolio-wrapper > .block:hover img {
    backface-visibility: hidden;
    -webkit-transition: all 700ms;
    -moz-transition: all 700ms;
    transition: all 700ms;
    transform: scale(1.1) rotate(0.1deg);
    -ms-transform: scale(1.1) rotate(0.1deg);
    -webkit-transform: scale(1.1) rotate(0.1deg);
    -o-transform: scale(1.1) rotate(0.1deg);
    -moz-transform: scale(1.1) rotate(0.1deg);
}
#portfolio-wrapper .block .portfolio-hover, #portfolio-wrapper .block .video-hover {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    opacity: 0;
    text-align: center;
    background: rgba(211, 20, 90, 0.7);
    -webkit-transition: opacity 400ms ease 0s;
    -moz-transition: opacity 400ms ease 0s;
    transition: opacity 400ms ease 0s;
    cursor: pointer;
    z-index: 5;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    filter: alpha(opacity=0);
}
#portfolio-wrapper .block .portfolio-info {
    position: absolute;
    top: 50%;
    width: 100%;
    margin-top: -25px;
}
#portfolio-wrapper .block:hover .portfolio-hover, #portfolio-wrapper .block:hover .video-hover {
    opacity: 1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=95)";
    filter: alpha(opacity=95);
}
#portfolio-wrapper .portfolio-title {
    color: #fff;
    text-transform: uppercase;
    font-size: 17px;
    margin-bottom: 0;
}
#portfolio-wrapper .portfolio-category {
    color: #fff;
    font-size: 12px;
}
/* Portfolio isotope Animation
======================== */

.isotope, .isotope .isotope-item {
    -webkit-transition-duration: 0.4s;
    -moz-transition-duration: 0.4s;
    -ms-transition-duration: 0.4s;
    -o-transition-duration: 0.4s;
    transition-duration: 0.4s;
}
.isotope {
    -webkit-transition-property: height, width;
    -moz-transition-property: height, width;
    -ms-transition-property: height, width;
    -o-transition-property: height, width;
    transition-property: height, width;
}
.isotope .isotope-item {
    -webkit-transition-property: -webkit-transform, opacity;
    -moz-transition-property: -moz-transform, opacity;
    -ms-transition-property: -ms-transform, opacity;
    -o-transition-property: -o-transform, opacity;
    transition-property: transform, opacity;
}
/* =========================================================== 
    11. Pricing Tables
============================================================ */

#pricing-tables {
    padding-bottom: 90px;
}
.table {
    border: 1px solid #e6e6e6;
    padding: 40px 35px;
    text-align: center;
    -o-transition: .4s;
    -ms-transition: .4s;
    -moz-transition: .4s;
    -webkit-transition: .4s;
    transition: .4s;
    max-width: 500px;
    margin: auto;
}
.table.popular, .table:hover {
    border: 1px solid #e6e6e6;
    background-color: #fff;
}
.table .price {
    font-size: 30px;
    line-height: 30px;
    margin-bottom: 10px;
    color: #333333;
    display: block;
}
.table ul li {
    list-style: none;
    text-align: center;
}
.table-title {
    display: block;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 20px;
}
.table .lm-button {
    margin: 35px 0 0 0;
    text-decoration: none!important;
    border: 1px solid #d3145a;
    color: #d3145a;
}
.table .lm-button:hover {
    border: 1px solid #d3145a;
    background-color: #d3145a;
    color: #fff;
}
.table .lm-button.fill {
    background-color: #d3145a;
    color: #fff;
}
.table .lm-button.fill:hover {
    background-color: transparent;
    color: #d3145a;
}
.table-desc {
    display: block;
    margin: 15px 15px 0 15px;
    text-align: center;
    font: 14px/21px;
}
/* =========================================================== 
    12. Features
============================================================ */

#features {
    text-align: center;
    padding-bottom: 80px;
}
#features i {
    font-size: 46px;
    color: #d3145a;
}
#features h3 {
    font-size: 18px;
    line-height: 24px;
    text-transform: uppercase;
    font-weight: 500;
    margin: 0 0 30px 0;
}
#features .column p {
    margin-bottom: 55px;
}
#features .section-title {
    margin-bottom: 80px;
}
/* =========================================================== 
    13. Testimonials
============================================================ */

#testimonials {
    position: relative;
    padding: 130px 0;
}
#testimonials .testimonial {
    width: 90%;
    max-width: 1140px;
    margin: auto;
}
#testimonials blockquote, #testimonials blockquote a {
    font-size: 30px;
    line-height: 42px;
    color: #fff;
    text-align: center;
}
#testimonials blockquote a {
    text-decoration: underline;
}
#testimonials .quote-author {
    margin-top: 20px;
    color: #fff;
    text-align: center;
    display: block;
    font-size: 14px;
}
/* =========================================================== 
    14. Clients
============================================================ */

#clients {
    padding: 45px 0;
}
#clients img {
    opacity: 0.8;
    height: 80px;
}
/* =========================================================== 
    15. Team Section
============================================================ */

#team-photo {
    position: relative;
    background-image: url(../images/bg/team.jpg);
    min-height: 1000px;
    padding: 170px 0;
    width: 33.33%;
    float: left;
}
#team-photo.spa {
    background-image: url(../images/bg/spa2.jpg);
}
#team-members {
    width: 66.66%;
    float: left;
    text-align: center;
}
#team-members.full {
    width: 100%;
    float: none;
}
#team-members .row {
    background-color: #fff;
    border-top: 1px solid #e6e6e6;
}
#team-members .row .column {
    height: 499px;
}
#team-members .row .column:first-child {
    border-right: 1px solid #e6e6e6;
}
#team-members.full .row .column {
    border-right: 1px solid #e6e6e6;
}
#team-members img {
    border-radius: 50%;
    max-width: 240px;
}
#team-members .team-image {
    margin-top: 70px;
}
#team-members .team-image a {
    color: #fff;
}
#team-members .team-image a:hover {
    color: #d3145a;
}
#team-members .team-image i {
    font-size: 28px;
    margin: 110px 5px 0 5px;
}
#team-members .team-image {
    position: relative;
}
#team-members .team-image span {
    visibility: hidden;
    opacity: 0;
    position: absolute;
    top: 0;
    left: 50%;
    margin-left: -120px;
    width: 240px;
    height: 240px;
    border-radius: 50%;
    background-color: rgba(25, 25, 25, 0.7);
    -o-transition: visibility 0s linear 0.3s, opacity 0.3s linear;
    -ms-transition: visibility 0s linear 0.3s, opacity 0.3s linear;
    -moz-transition: visibility 0s linear 0.3s, opacity 0.3s linear;
    -webkit-transition: visibility 0s linear 0.3s, opacity 0.3s linear;
    transition: visibility 0s linear 0.3s, opacity 0.3s linear;
}
#team-members .column:hover .team-image span {
    visibility: visible;
    opacity: 1;
    transition-delay: 0s;
}
#team-members h3 {
    font-size: 20px;
    text-transform: uppercase;
    font-weight: 500;
    margin: 40px 0 0 0;
}
#team-members span {
    font-size: 12px;
    text-transform: uppercase;
}
#team-members .column > i {
    display: block;
}
/* =========================================================== 
    16. Request a Quote CTA
============================================================ */

#quote-request {
    background-color: #d3145a;
    padding: 80px 0;
}
#quote-request.dark {
    background-color: #222;
}
#quote-request .column {
    float: none;
}
#quote-request p {
    display: inline-block;
    text-transform: none;
    color: #fff;
    font-size: 40px;
    line-height: 58px;
    margin-bottom: 0px;
}
#quote-request .lm-button {
    float: right;
    vertical-align: top;
    color: #fff;
    margin: 5px 0;
    border: 1px solid #fff;
}
#quote-request .lm-button:hover {
    background-color: #fff;
    color: #d3145a;
}
/* =========================================================== 
    17. Blog Section on HomePage
============================================================ */

#blog.single {
    padding: 0;
}
#posts {
    background-color: #fff;
    text-align: center;
}
#posts .category {
    display: inline-block;
    color: #333333;
    letter-spacing: 1px;
    border: 1px solid #e6e6e6;
    margin: 0 5px;
    padding: 3px 8px;
    border-radius: 5px;
    font-size: 13px;
}
#posts .category:hover {
    color: #333333;
    background-color: #f3f3f3;
}
#posts .single-post {
    padding: 46px 0;
    border-bottom: 1px solid #e6e6e6;
}
#posts h2 {
    text-transform: none;
    margin: 20px 0;
    line-height: 55px;
}
#posts h2 a {
    font-weight: 400;
    font-family: "Montserrat", sans-serif;
    color: #333333;
    font-size: 32px;
    text-transform: capitalize;
}
#posts a {
    color: #808080;
}
#posts a:hover {
    color: #d3145a;
}
#posts a.author {
}
#posts span.date:after, #posts a.comments:after {
    color: #808080;
    padding: 0 3px 0 5px;
    font-size: 32px;
    vertical-align: top;
    content: '\00B7';
}
#posts .single-post .meta span, #posts .post .meta a {
    font-size: 12px;
    text-transform: uppercase;
}
#blog .loadmore {
    display: block;
    height: 90px;
    line-height: 90px;
    background: #d3145a;
    text-align: center;
    color: #fff;
    font-size: 18px;
}
#blog .loadmore:hover {
    background: #fff;
    color: #d3145a;
}
/* =========================================================== 
    18. Twitter Section
============================================================ */

#twitter {
    height: 480px;
    background-color: #222;
    text-align: center;
    padding: 80px 0;
}
#twitter .one-tweet {
    font-size: 30px;
    line-height: 48px;
}
#twitter .time {
    display: block;
    margin-top: 30px;
    color: #fff;
}
#twitter .one-tweet a {
    font-size: 30px;
    color: #f6f6f6;
}
#twitter .tweet-actions {
    margin-bottom: 0;
}
#twitter .tweet-actions li {
    list-style: none;
    display: inline-block;
    margin: 0 10px;
}
#twitter .tweet-actions li a {
    color: #d3145a;
}
.tweet {
    width: 90%;
    max-width: 1140px;
    margin: auto;
}
.tweet:before {
    font-family: 'FontAwesome';
    content: '\f099';
    color: #fff;
    font-size: 48px;
    line-height: 48px;
}
/* =========================================================== 
    19. Contact Form
============================================================ */

#contact {
    text-align: center;
}
#contact #forms .column {
    position: relative;
}
#contact #form {
    background-color: #fff;
    padding: 90px 0;
}
#contact #forms .column.four:after,
#contact #forms .column.six:after,
#contact #forms .column.eight:after,
#contact #forms .column.ten:after {
    content: "*";
    color: #d3145a;
    position: absolute;
    pointer-events: none;
    top: 25px;
    z-index: 10;
    padding: 4px 0px;
    right: 25px;
    line-height: 48px;
    font-size: 20px;
    transition: all 0.2s;
    opacity: 0;
}
#contact #forms .column.four.error:after,
#contact #forms .column.six.error:after,
#contact #forms .column.eight.error:after,
#contact #forms .column.ten.error:after {
    opacity: 1;
}
#contact #forms .column.twelve:after {
    content: "*";
    color: #d3145a;
    position: absolute;
    pointer-events: none;
    top: 25px;
    z-index: 10;
    padding: 4px 0px;
    right: 25px;
    line-height: 48px;
    font-size: 20px;
    transition: all 0.2s;
    opacity: 0;
}
#contact #forms .column.twelve.error:after {
    opacity: 1;
}
#contact input[type="text"] {
    width: 100%;
    background-color: #f3f3f3;
    height: 48px;
    border: 1px solid #e6e6e6;
    margin-bottom: 30px;
}
#contact input[type="text"]:focus, #contact textarea:focus {
    border: 1px solid #d3145a;
    background-color: #ffffff;
}
#contact input[type="submit"], #comment input[type="submit"] {
    display: inline-block;
    width: 100%;
    padding: 19px 48px;
    background-color: #fff;
    color: #444;
    text-transform: uppercase;
    margin: 30px auto 0 auto;
}
#contact input[type="submit"]:hover {
    background-color: #d3145a;
    color: #fff;
}
#contact textarea {
    background-color: #f3f3f3;
    border: 1px solid #e6e6e6;
    width: 100%;
    padding: 10px 15px;
    margin-bottom: 30px;
}
#contact .column > span, #contact .column > a {
    color: #808080;
    margin: 15px 0 0 0;
    display: block;
}
#contact .column > a:hover {
    color: #d3145a;
}
#contact i {
    font-size: 42px;
    color: #d3145a;
}
#contact .row.icons {
    margin-top: 80px;
}
#contact .column .captcha_image {
    float: right; width: 140px; text-align: right;
    border:1px #d6d6d6 solid; border-radius: 3px; 
}
#contact .column .captcha_input {
    float: left; width: calc(100% - 148px);
}
#map {
    width: 100%;
    height: 480px;
}
#mapcontent {
    width: 128px;
}
/* =========================================================== 
    20. Callout Box
============================================================ */

#callout {
    position: relative;
    background-image: url(../images/55.jpg);
    padding: 130px 0;
    background-size: cover;
}
#callout .container {
    position: relative;
    text-align: center;
}
#callout .title {
    font-size: 30px;
    line-height: 34px;
    color: #fff;
    text-align: center;
}
#callout span {
    display: block;
    color: #fff;
    margin: 5px 0;
}
#callout input {
    display: inline-block;
}
#callout input[type="text"] {
    display: inline-block;
    width: 360px;
    background-color: transparent;
    height: 60px;
    border: 1px solid #888;
    color: #fff;
}
#callout input[type="text"]:focus {
    border: 1px solid #d3145a;
}
#callout input[type="submit"] {
    padding: 21px 48px;
    font-size: 13px;
    background-color: #d3145a;
    border: 1px solid #d3145a;
    color: #fff;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-left: 30px;
    text-align: center;
    vertical-align: top;
}
#callout input[type="submit"]:hover {
    background-color: #fff;
    border: 1px solid #fff;
    color: #444;
}
#callout-form {
    text-align: center;
    margin-top: 30px;
}
/* =========================================================== 
    21. Footer
============================================================ */

footer {
    background-color: #222222;
    text-align: center;
    padding: 60px 0;
}
footer.light {
    background-color: #f3f3f3;
}
footer .block {
    color: #808080;
    display: block;
}
footer .block a {
    color: #808080;
}
footer .block a:hover {
    color: #d3145a;
}
footer ul {
    margin: 0;
}
footer img {
    margin-bottom: 15px;
}
footer #copyright i {
    color: #d3145a;
    font-size: 12px;
}
#social {
    padding: 10px 0 0 0;
    text-align: center;
}
#social:before {
    position: relative;
    display: block;
    content: "";
    height: 2px;
    width: 30px;
    margin: 10px auto 20px;
    background: #d3145a;
}
#social ul li {
    list-style: none;
    display: inline-block;
    margin: 5px;
}
#social ul li a {
    text-align: center;
    border-radius: 5px;
    color: #808080;
    font-size: 20px;
    border: 1px solid #666;
    height: 32px;
    line-height: 32px;
    width: 32px;
    display: inline-block;
}
#social ul li a:hover {
    border: 1px solid #f64747;
    color: #f64747;
}
/* =========================================================== 
    22. Portfolio Single
============================================================ */

#portfolio-single {
    padding-top: 40px;
    background-color: #fff;
    padding-bottom: 80px;
}
#portfolio-single .container {
    width: 85%;
    max-width: 960px;
}
#portfolio-single header {
    position: fixed;
    right: 0;
    top: 0;
    z-index: 9;
}
#portfolio-single header .navigation ul {
    margin-left: 0;
}
#portfolio-single header .navigation li {
    text-align: center;
}
.navigation li.close a {
    background-color: #222;
}
#portfolio-single header .navigation li.close a:hover {
    background-color: #f64747;
    color: #fff;
}
.navigation li.share > ul {
    opacity: 0;
    height: 0px;
    overflow: hidden;
}
.navigation li.share ul li:hover {
    opacity: 0.85;
}
.navigation li.share:hover > ul {
    opacity: 1;
    height: 354px;
    transition: all 0.2s;
}
#portfolio-single header .navigation li a {
    display: block;
    width: 60px;
    height: 60px;
    border: 1px solid #ccc;
    font-size: 41px;
    line-height: 60px;
    color: #999;
    margin-top: -1px;
}
#portfolio-single header .navigation li.share a {
    font-size: 28px;
}
#portfolio-single header .navigation li.share ul li a {
    border: none;
    font-size: 19px;
    color: #fff;
}
#portfolio-single header .navigation li a:hover {
    background-color: #f6f6f6;
    color: #999;
}
#portfolio-single header .navigation li.share ul li.fb a {
    background-color: #627aad;
}
#portfolio-single header .navigation li.share ul li.tw a {
    background-color: #00aced;
}
#portfolio-single header .navigation li.share ul li.go a {
    background-color: #dd4b39;
}
#portfolio-single header .navigation li.share ul li.ln a {
    background-color: #007bb6;
}
#portfolio-single header .navigation li.share ul li.pin a {
    background-color: #cb2027;
}
#portfolio-single header .navigation li.share ul li.mail a {
    background-color: #404040;
    font-size: 21px;
}
#portfolio-single h1#portfolio-title {
    text-align: center;
    font-weight: 600;
}
#portfolio-single h1#portfolio-title:after {
    position: relative;
    display: block;
    content: "";
    height: 2px;
    width: 30px;
    margin: 10px auto 20px;
    background: #d3145a;
}
#portfolio-single h3.category {
    text-align: center;
    margin-bottom: 40px;
}
#portfolio-single #images.slider {
    text-align: center;
    margin-bottom: 30px;
}
#portfolio-single #images img {
    display: inline;
    margin-bottom: 30px;
}
#portfolio-single #info {
    background-color: #f6f6f6;
    padding: 30px;
    text-align: center;
}
#portfolio-single #info .title {
    font-weight: bold;
    display: block;
    color: #333;
}
#portfolio-single #info > span:last-child {
    margin-bottom: 0;
}
#portfolio-single #info .entry {
    margin-bottom: 30px;
    display: block;
}
#portfolio-single #images .owl-pagination {
    position: relative;
    bottom: auto;
}
#portfolio-single #images .owl-pagination .owl-page span {
    border-color: #aeaeae;
}
#portfolio-single #images .owl-pagination .owl-page.active span {
    background-color: #d3145a;
    border: 1px solid #d3145a;
}
/* =========================================================== 
    23. Single Post Page
============================================================ */

#single-post {
    margin: 60px auto;
    max-width: 960px;
}
.post p, .post span, .post li {
    color: #555555;
    font-weight: normal;
    font-size: 16px;
    line-height: 32px;
}
.post a {
    font-size: 18px;
    color: #d3145a;
}
.post .caption {
    font-style: italic;
    font-size: 15px;
    margin-bottom: 25px;
    display: block;
}
.post .lm-button, .lm-button {
    /*font-family: 'Montserrat', 'Open Sans', sans-serif;*/
    font-size: 14px;
    /*letter-spacing: 1.5px;*/
    color: #fff;
    display: inline-block;
    padding: 10px 36px;
    border: 1px solid #888;
    border-radius: 5px;
    text-transform: uppercase;
    border: 1px solid #f64747;
    color: #f64747;
}
.post .caption a {
    font-size: 15px;
}
.post a:hover {
    text-decoration: underline;
}
p.bigletter:first-letter {
    font-weight: bold;
    font-size: 60px;
    float: left;
    margin-left: 0px;
    line-height: 60px;
    color: #d3145a;
    margin-right: 10px;
}
blockquote {
    font-size: 21px;
    line-height: 31px;
    padding-left: 20px;
    border-left: 1px solid #d3145a;
    margin: 20px 0;
}
.owl-wrapper blockquote {
    border-left: none;
}
#single-post #tags a {
    display: inline-block;
    color: #333;
    letter-spacing: 0;
    border: 1px solid #e6e6e6;
    margin: 0 4px 4px 0;
    padding: 3px 8px;
    border-radius: 0;
    font-size: 15px;
}
#single-post #tags a:hover {
    color: #d3145a;
    border: 1px solid #d3145a;
    text-decoration: none;
}
#related-posts {
    padding: 25px 0;
    margin: 35px 0 0 0;
}
#related-posts ul {
    margin: 0;
}
h3.single {
    font-size: 22px;
    line-height: 36px;
    border-bottom: 1px solid #e6e6e6;
    margin-bottom: 25px;
}
#pagination {
    height: 60px;
    border-top: 1px solid #e6e6e6;
    border-bottom: 1px solid #e6e6e6;
}
#pagination a {
    color: #bbb;
    text-transform: uppercase;
    font-size: 15px;
    line-height: 60px;
}
#pagination a:hover {
    text-decoration: none;
    color: #d3145a;
}
#pagination a.prev:before {
    font-family: 'FontAwesome';
    content: '\f177';
    margin-right: 5px;
}
#pagination a.next {
    float: right;
}
#pagination a.next:after {
    font-family: 'FontAwesome';
    content: '\f178';
    margin-left: 5px;
}
#user {
    /*margin-top: 35px;*/
    padding: 40px;
    background-color: #f6f6f6;
}
#user .info {
    font-size: 16px;
    line-height: 28px;
    margin-left: 110px;
}
#user .social {
    display: block;
    margin-top: 12px;
}
#user .social a {
    margin-right: 10px;
    font-size: 24px;
    color: #d2d2d2;
}
#user .social a:hover {
    color: #d3145a;
}
#user img {
    float: left;
}
#user .name {
    font-weight: bold;
    color: #333;
}
/* Comments Section */

#comments-section {
    margin-top: 35px;
}
#comments-section p, #comments-section span {
    font-size: 16px;
    line-height: 28px;
    margin-bottom: 5px;
}
#comments-section a.reply {
    font-size: 13px;
}
#comments-section .comment {
    margin-left: 95px;
}
#comments-section .single-comment {
    margin-top: 35px;
}
#comments-section .single-comment.reply {
    margin-left: 60px;
}
#comments-section img {
    border-radius: 50%;
    float: left;
}
#comments-section .comment-meta {
    display: block;
}
#comments-section .more {
    margin-top: 35px;
    text-align: center;
    display: block;
    padding: 20px 0;
    background-color: #f6f6f6;
    color: #808080;
    font-size: 16px;
}
#comments-section .more:hover {
    text-decoration: none;
    background-color: #d3145a;
    color: #fff;
}
#comment {
    margin-top: 35px;
}
#comment input {
    width: 100%;
}
#comment input[type="text"] {
    width: 100%;
    height: 48px;
    border: 1px solid #e6e6e6;
    margin-bottom: 30px;
}
#comment input[type="text"]:focus, #comment textarea:focus {
    border: 1px solid #d3145a;
}
#comment input[type="submit"] {
    margin-top: 5px;
}
#comment input[type="submit"]:hover {
    background-color: #d3145a;
    color: #fff;
}
#comment textarea {
    border: 1px solid #e6e6e6;
    width: 100%;
}
/* =========================================================== 
    24. Elements Used in Inside Pages
============================================================ */

/* TABS */

.tabable {
    border: 1px solid #e6e6e6;
}
.tabable .tabs {
    padding: 0 30px;
    background: #f6f6f6;
}
.tabable .tab-content-wrap {
    padding: 20px 30px;
}
.tabable .tabs li {
    text-align: center;
    margin-right: 30px;
    line-height: 70px;
    display: inline-block;
    position: relative;
}
.tabable .tabs li.active:after {
    content: '';
    position: absolute;
    left: 50%;
    margin-left: -10px;
    bottom: -10px;
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 10px solid #f6f6f6;
}
.tabable .tabs li a {
    text-decoration: none;
    font: 13px/21px "Montserrat", Arial, sans-serif;
    text-transform: uppercase;
    font-size: 13px;
    color: #808080;
}
/* ACCORDION */

.accordion {
    border: 1px solid #e6e6e6;
}
.accordion .accordion-wrap .title {
    position: relative;
    border-bottom: 1px solid #e6e6e6;
}
.accordion .accordion-wrap .title:after {
    position: absolute;
    right: 25px;
    top: 0;
    font: 30px/66px 'Pe-icon-7-stroke';
    content: "\e688";
}
.accordion .accordion-wrap .title.active:after {
    content: "\e682";
}
.accordion .accordion-wrap .title.active, .accordion .accordion-wrap .title a:hover {
    background: #f6f6f6;
    color: #333;
}
.accordion-wrap .content {
    padding: 20px 30px;
    border-bottom: 1px solid #e6e6e6;
}
.accordion-wrap .content p {
    margin-bottom: 0;
}
.accordion .accordion-wrap .title a {
    display: block;
    padding: 20px 40px 20px 30px;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 13px;
    color: #808080;
}
.accordion:last-child {
    border-bottom: 0;
}
.tabable .tabs li a:hover, .tabable .tabs li.active a {
    color: #d3145a;
}
/* ALERTS */

.success, .errormsg, .notice, .general {
    padding: 12px 20px;
    text-align: left;
    font-size: 16px;
    cursor: pointer;
    clear: both;
    margin: 15px;
}
.success:before, .errormsg:before, .notice:before, .general:before {
    float: left;
    padding-right: 12px;
    font-family: 'FontAwesome';
    font-size: 18px;
}
.success:hover, .errormsg:hover, .notice:hover, .general:hover {
    opacity: 0.7;
}
.success {
    color: #669966;
    background-color: #dff0d8;
}
.success:before {
    content: "\f058";
    color: #85C51F;
}
.errormsg {
    color: #cc0000;
    background-color: #ffe2e2;
}
.errormsg:before {
    content: "\f00d";
    color: #ef3d26;
}
.notice {
    color: #996633;
    background-color: #fcf8e3;
}
.notice:before {
    content: "\f06a";
    color: #a67f0d;
}
.general {
    color: #336699;
    background-color: #d9edf7;
}
.general:before {
    content: "\f129";
    color: #666;
}
/* Lists */

ul.checked {
    line-height: 24px;
    font-size: 14px;
}
ul.checked li:before {
    float: left;
    padding-right: 12px;
    font-family: "FontAwesome";
    content: "\f00c";
    color: #d2135a;
    font-size: 14px;
}
ul.arrow {
    line-height: 24px;
    font-size: 14px;
}
ul.arrow li:before {
    float: left;
    padding-right: 12px;
    font-family: "FontAwesome";
    content: "\f054";
    color: #d2135a;
    font-size: 14px;
}
ul.star {
    line-height: 24px;
    font-size: 14px;
}
ul.star li:before {
    float: left;
    padding-right: 12px;
    font-family: "FontAwesome";
    content: "\f006";
    color: #d2135a;
    font-size: 14px;
}
ul.caret {
    line-height: 24px;
    font-size: 14px;
}
ul.caret li:before {
    float: left;
    padding-right: 12px;
    font-family: "FontAwesome";
    content: "\f0da";
    color: #d2135a;
    font-size: 14px;
}
ul.circle {
    line-height: 24px;
    font-size: 13px;
}
ul.circle li:before {
    float: left;
    padding-right: 12px;
    font-family: "FontAwesome";
    content: "\f0a9";
    color: #d2135a;
    font-size: 14px;
}
ul.double-angle {
    line-height: 24px;
    font-size: 13px;
}
ul.double-angle li:before {
    float: left;
    padding-right: 12px;
    font-family: "FontAwesome";
    content: "\f101";
    color: #d2135a;
    font-size: 14px;
}
span.fill {
    color: #fff;
    background-color: #d2135a;
}
/* Social */

ul.social {
    margin: 15px 0;
}
ul.social li {
    list-style: none;
    display: inline-block;
    margin: 0 5px;
}
ul.social li a {
    text-align: center;
    border-radius: 5px;
    color: #808080;
    font-size: 20px;
    border: 1px solid #666;
    height: 32px;
    line-height: 32px;
    width: 32px;
    display: inline-block;
}
ul.social li a:hover {
    border: 1px solid #d2135a;
    color: #fff;
}
/* =========================================================== 
    25. Single Page
============================================================ */

#page, #blog {
    padding-top: 0;
}
#page #single-post {
    max-width: none;
}
.page-single {
    margin-top: 80px;
    background-color: #333333;
    height: 240px;
    padding: 60px 0;
}
.page-single .hero-inner {
    text-align: left;
}
.page-single .hero-inner h1 {
    color: #fff;
    margin-bottom: 0;
}
@media screen and (min-width: 1025px) {
    #header-section nav {
        display: block!important;
        float: right;
        width: auto!important;
        height: auto!important;
    }
}
/* =========================================================== 
    26. Responsive Nav
============================================================ */


/* Left - Menu; Only for Desktop Version;
================================================== */
@media screen and (min-width: 1025px) {

    #header-section.leftmenu {
        -webkit-transform: translateY(0%);
        -moz-transform: translateY(0%);
        transform: translateY(0%);
        background: #fff;
        width: 260px;
        height: 100%;
        line-height: 40px;
        padding: 40px 30px;
        background: rgba(230,174,72,0.9); 
        z-index: 101;
        overflow: auto;
    }
    #header-section.leftmenu .column {
        width: 100%;
        text-align: left;
    }

    #header-section.leftmenu nav {
        float: left;
    }

    #header-section.leftmenu nav li a{
        padding: 0;
        line-height: 40px;
        display: block;
        color: #fff;
    }

    #header-section.leftmenu nav li {
        padding: 0;
        display: block;
    }

    section.leftmenu {
        padding-left: 260px!important;
    }

    .big_white.interior {
        font-size: 82px;
        line-height: 92px;
        text-transform: none;
        font-weight: 400;
    }

    /* Sub Nav */

    #header-section.leftmenu nav ul li ul {
        position: relative;
        padding-bottom: 15px;
    }

    #header-section.leftmenu nav ul li ul li{
        background: transparent;
        margin-left: 30px;
        height: 32px;
        line-height: 32px;
    }

    #header-section.leftmenu nav ul li ul li a {
        text-transform: capitalize;
    }

    header nav ul li ul:before {
        content: none;
    }

}

/* Tablet Landscape */

@media screen and (max-width: 1024px) {


    .leftalign .section-header {
        width: 100%;
    }

    #header-section.leftmenu {
        border-bottom: 0;
    }

    .leftmenu #menu-toggle {
        background: #fff;
    }

    .leftmenu #menu-toggle:after, .leftmenu #menu-toggle:before {
        background: #fff;
    }

    #header-section.altmenu {
        /*padding-top: 80px;*/
    }

    body.mobile {
        overflow: hidden;
    }

    header nav ul li ul li a, header nav ul li ul li {
        height: auto;
        line-height: inherit;
    }
    header nav ul li ul {
        display: block;
        position: relative;
        margin-left: 0;
        margin-top: 0;
    }
    header nav ul li ul:before {
        border-bottom: transparent;
    }
    /* Hamburger by codrops */
    #menu-toggle-wrapper {
        display: block;
        top: 0;
        right: 0;
        position: absolute;
        width: 80px;
        height: 80px;
        z-index: 111;
    }
    #menu-toggle {
        display: block;
        position: absolute;
        top: 50%;
        right: 50%;
        margin-right: -15px;
        width: 30px;
        height: 3px;
        background: #d3145a;
        font-size: 30px;
    }
    #menu-toggle:after, #menu-toggle:before {
        content: '';
        position: absolute;
        right: 0;
        width: 100%;
        height: 3px;
        background: #d3145a;
        -webkit-transform-origin: center center;
        -moz-transform-origin: center center;
        -ms-transform-origin: center center;
        -o-transform-origin: center center;
        transform-origin: center center;
    }
    #menu-toggle:before {
        top: -8px;
    }
    #menu-toggle:after {
        bottom: -8px
    }
    #menu-toggle-wrapper.open #menu-toggle {
        background: 0 0;
    }
    #menu-toggle-wrapper.open #menu-toggle:after {
        -webkit-transform: rotate(-45deg) translate(2px, -8px);
        -moz-transform: rotate(-45deg) translate(3px, -8px);
        -ms-transform: rotate(-45deg) translate(3px, -8px);
        -o-transform: rotate(-45deg) translate(3px, -8px);
        transform: rotate(-45deg) translate(3px, -8px)
    }
    #menu-toggle-wrapper.open #menu-toggle:before {
        -webkit-transform: rotate(45deg) translate(4px, 9px);
        -moz-transform: rotate(45deg) translate(3px, 8px);
        -ms-transform: rotate(45deg) translate(3px, 8px);
        -o-transform: rotate(45deg) translate(3px, 8px);
        transform: rotate(45deg) translate(3px, 8px)
    }
    #menu-toggle, #menu-toggle:after, #menu-toggle:before {
        -webkit-transition: all .3s cubic-bezier(0.585, -.6, .43, 1.65);
        -moz-transition: all .3s cubic-bezier(0.585, -.6, .43, 1.65);
        -ms-transition: all .3s cubic-bezier(0.585, -.6, .43, 1.65);
        -o-transition: all .3s cubic-bezier(0.585, -.6, .43, 1.65);
        transition: all .3s cubic-bezier(0.585, -.6, .43, 1.65)
    }
    #menu-toggle-wrapper:focus #menu-toggle:before, #menu-toggle-wrapper:hover #menu-toggle:before {
        top: -6px
    }
    #menu-toggle-wrapper:focus #menu-toggle:after, #menu-toggle-wrapper:hover #menu-toggle:after {
        bottom: -6px
    }
    #menu-toggle-wrapper.open:focus #menu-toggle:after, #menu-toggle-wrapper.open:hover #menu-toggle:after {
        bottom: -8px
    }
    #menu-toggle-wrapper.open:focus #menu-toggle:before, #menu-toggle-wrapper.open:hover #menu-toggle:before {
        top: -8px
    }
    /* Nav Style for Responsive Menu */
    #header-section #navigation {
        width: 100%;
        position: relative;
        margin-left: -5.55%;
        text-align: left;
        background-color: #000;
        overflow-y: scroll;
	padding-left: 0;
	padding-right: 0;
    }
    #header-section #navigation ul li {
        background: #fff; 
        display: block;
        width: 100%;
        margin: 0;
        padding: 0;
    }
    #header-section #navigation > ul li:last-child {
        margin-bottom: 40px;
    }
    #header-section #navigation > ul li ul li:last-child {
        margin-bottom: 0;
    }
    #header-section #navigation ul li > a {
        color: #adadad;
        line-height: 28px;
        padding: 10px 0;
        border-bottom: 1px solid #333;
        display: block;
        padding-left: 30px;
        text-decoration: none;
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        box-sizing: border-box;
    }
    .toggle {
        display: block;
        position: relative;
        cursor: pointer;
        -webkit-touch-callout: none;
        -webkit-user-select: none;
        user-select: none;
        . width: 50px;
        height: 50px;
        background-color: #000;
    }
    #header-section #navigation ul li a:hover {
        background-color: #d3145a;
        color: #fff;
    }
    /*-----------------------------------------------------------------------------------*/
    /*  Other Stuff from top to bottom
/*-----------------------------------------------------------------------------------*/
    section {
        padding: 60px 0 0 0;
    }
    #testimonials {
        padding: 80px 0;
    }
    .owl-pagination {
        bottom: -60px;
    }
    .hide-on-mobile {
        display: none;
    }
    #header-section .column {
        margin: 0;
    }
    #about-icons .column .main {
        margin-top: -75px;
    }
    #about-icons .column span.desc {
        top: 50%;
    }
    #team-photo,ul.filter > li.active:after, ul.filter-target > li.active:after {
        display: none;
    }
    #team-members {
        width: 100%;
        float: none;
    }
    .section-header {
        padding: 0 5%;
    }
    .table {
        padding: 25px 15px;
    }
    #pricing-tables .lbutton {
        margin: 10px 0 0 0;
    }
    .table .price {
        font: 20px/20px;
    }
    .lbutton {
        padding: 5px 30px;
    }
    #portfolio-wrapper > div {
        width: 50%;
    }
    #about-icons span.desc {
        padding: 0 25px;
    }
    #quote-request {
        text-align: center;
    }
    #quote-request .lbutton {
        float: none;
        margin-left: 15px;
    }
    #quote-request p {
        margin-bottom: 15px;
    }


    .hero-copy.bar {
        bottom: 20px;
    }
    .big_white.scout {
        font-size: 70px;
    }
}
/* Medium screens (640px) */

@media screen and (max-width: 640px) {

    .leftalign ul.filter, .leftalign ul.filter-target, .leftalign #port-filter {
        text-align: center;
    }

    .leftalign .section-header > h2, .leftalign .section-header p, 
    .leftalign .parallax-quote, .leftalign .quote-author, .leftalign #testimonials blockquote, 
    .leftalign #testimonials .quote-author {
        margin-left: 0;
    }

    #posts .category {
        margin: 5px;
    }

    .big_white.horror {
        font-family: "Creepster";
        font-size: 38px;
        line-height: 38px;
        margin: 0px 15px;
    }

    .hero-copy.horror {
        font-family: "Montserrat";
        margin: 15px;
        font-size: 19px;
    }
    
    #user {
        text-align: center;
    }
    
    #user .info {
        margin-left: 0;
    }

    #user img {
        float: none;
    }

    #comments-section .single-comment.reply {
        margin-left: 10px;
    }

    .big_white.choco {
        font:28px/60px "Montserrat", sans-serif;
    }

    .big_white.scout {
        font-size: 50px;
    }

    #about-icons .column .desc {
        opacity: 1;
        -webkit-transform: perspective(500px) rotateX(0deg) rotateY(0deg) rotateZ(0deg);
        -moz-transform: perspective(500px) rotateX(0deg) rotateY(0deg) rotateZ(0deg);
        -o-transform: perspective(500px) rotateX(0deg) rotateY(0deg) rotateZ(0deg);
        -ms-transform: perspective(500px) rotateX(0deg) rotateY(0deg) rotateZ(0deg);
        transform: perspective(500px) rotateX(0deg) rotateY(0deg) rotateZ(0deg);
    }

    .btn-holder.fashion a {
        bottom: 30px;
    }

    .big_white.spa {
        font-size: 36px;
    }

    .hero-copy.spa {
        font-size: 21px;
        line-height: 32px;
    }


    .hero-copy.bar {
        position: absolute;
        bottom: 20px;
        font: 12px/26px "Montserrat", sans-serif;
        color: #fff;
        margin: 20px 0;
        letter-spacing: 2px;
    }

    .big_white.bar {
        color: #00d3f9;
        font: 18px/28px "Montserrat", sans-serif;
        font-weight: 600;
        padding: 10px 30px;
    }

    #map {
        height: 300px;
    }

    #quote-request .lm-button {
        float: none;
    }
    section {
        padding: 40px 0 0 0;
    }
    h1.big_white {
        font-size: 34px;
        line-height: 44px;
        margin: 30px 15px 0 15px;
    }
    .section-tagline {
        margin-bottom: 40px;
    }
    #about-icons .column {
        padding: 20px;
        min-height: 100px;
    }
    #about-icons .column:first-child {
        margin-top: 20px;
    }
    #about-icons .column:hover .main {
        margin-top: 0;
    }
    #about-icons .column .main {
        margin-top: 0;
    }
    #about-icons .column.border {
        border: none!important;
    }
    #about-icons span.desc {
        position: relative;
    }
    #quote {
        padding: 40px 0;
    }
    #quote h2 {
        font-size: 26px;
        line-height: 36px;
    }
    #option-section {
        padding: 40px 0 80px 0;
    }
    #portfolio .container {
        width: 100%;
    }
    ul.filter > li, ul.filter-target > li, #port-filter > li {
        display: block;
        line-height: 25px;
        border: none;
        margin: 0;
        padding: 0;
    }
    ul.filter > li:after,ul.filter-target > li:after, #port-filter > li:after {
        content: none!important;
    }
    ul.filter > li a,ul.filter-target > li a, #port-filter > li a {
        display: block;
        border-top: 1px solid #e6e6e6;
        padding: 10px 0;
        line-height: 26px;
    }
    ul.filter > li:first-child a,ul.filter-target > li:first-child a, #port-filter > li:first-child a {
        display: block;
        border-top: none;
    }
    .filter-row .container, #port-filter .container {
        width: 100%;
    }
    #achievements {
        padding: 60px 0;
    }
    #portfolio-wrapper > div {
        width: 100%;
    }
    #features {
        padding-bottom: 40px;
    }
    #team-members .row, #team-members .row .column:first-child {
        border-right: none;
        border-top: none;
    }
    #team-members .row .column {
        border-bottom: 1px solid #e6e6e6;
    }
    #team-members .row:last-child .column:last-child {
        border-bottom: none;
    }
    #team-members .row .column {
        height: 410px;
    }
    #quote-request p {
        font-size: 28px;
    }
    #quote-request .lbutton {
        margin-left: 0;
    }
    #quote-request {
        padding: 40px 0;
    }
    #quote-request p {
        margin-right: 0;
    }
    #posts h2 {
        line-height: 32px;
        padding: 0 20px;
    }
    .leftalign #posts h2 {
        padding-left: 0;
    }
    #posts h2 a {
        font-size: 21px;
    }
    #testimonials {
        padding: 40px 0 60px 0;
    }
    .owl-pagination {
        bottom: -40px;
    }
    #testimonials blockquote, #testimonials blockquote a {
        font-size: 21px;
        line-height: 36px;
    }
    #twitter .one-tweet {
        display: block;
        font-size: 21px;
        line-height: 32px;
        margin: 25px 0;
        color: #fff;
    }
    #twitter .one-tweet a {
        color: #f3f3f3;
        font-size: 21px;
    }
    #posts .post {
        width: 90%;
        margin: auto;
    }
    #contact #form {
        padding: 40px 0
    }
    #contact .row.icons {
        margin-top: 40px;
    }
    
    #vote #form {
        padding: 40px 0
    }
    #vote .row.icons {
        margin-top: 40px;
    }
    
    
    #map {
        height: 300px;
    }
    #callout {
        padding: 70px 0;
    }
    #callout input[type="submit"] {
        width: 50%;
        margin: 0;
        padding: 20px;
        margin-top: 25px;
    }
    #portfolio-title {
        font-size: 21px;
    }
    #portfolio-single header .navigation > ul {
        margin: 0;
    }
    #portfolio-single header .navigation li {
        float: right;
        margin-right: -1px;
    }
    #portfolio-single header .navigation li a {
        background-color: #fff;
        font-size: 32px;
        width: 40px;
        height: 40px;
        line-height: 40px;
    }
    #portfolio-single header .navigation li.share a {
        font-size: 21px;
    }
    #portfolio-single header .navigation li ul li {
        float: none;
    }
    .hero-copy.bigger {
    font-size: 22px;
    }
    .big_white.fashion {
        font-size: 76px;
        line-height: 78px;
    }
    .queryloader__overlay__bar {
        display: none!important;
    }
}






table { width: 100%; margin: 0; }
thead { border-bottom: 1px solid #F1F1F1; /*border-top: 1px solid #F1F1F1;*/ border-top: 0; font-weight: 400; }
th { padding: 0px 9px 10px 9px; font-weight: 700; color: #272727; text-align: left; }
tbody tr { border-bottom: 1px solid #e9e9e9; }
tbody tr:first-child { border-top: 1px solid #e9e9e9; }
tbody tr:nth-child(2n+1) td { background-color: #fafafa; }
td { padding: 7px 9px 7px 9px; }
td a { color: #555555; }
td a:hover { color: #ff0000; }



.label{display:inline;padding:.2em .6em .3em;font-size:75%;line-height:1;color:#fff;text-align:center;white-space:nowrap;vertical-align:baseline;border-radius:.25em}
.label[href]:hover,.label[href]:focus{color:#fff;text-decoration:none;cursor:pointer}
.label:empty{display:none}
.btn .label{position:relative;top:-1px}
.label-default{background-color:#999}
.label-default[href]:hover,.label-default[href]:focus{background-color:gray}
.label-primary{background-color:#428bca}
.label-primary[href]:hover,.label-primary[href]:focus{background-color:#3071a9}
.label-success{background-color:#5cb85c}
.label-success[href]:hover,.label-success[href]:focus{background-color:#449d44}
.label-info{background-color:#5bc0de}
.label-info[href]:hover,.label-info[href]:focus{background-color:#31b0d5}
.label-warning{background-color:#f0ad4e}
.label-warning[href]:hover,.label-warning[href]:focus{background-color:#ec971f}
.label-danger{background-color:#d9534f}
.label-danger[href]:hover,.label-danger[href]:focus{background-color:#c9302c}

h1 .label, 
h2 .label, 
h3 .label, 
h4 .label, 
h5 .label, 
h6 .label, 
.h1 .label, 
.h2 .label, 
.h3 .label, 
.h4 .label, 
.h5 .label, 
.h6 .label { 
  vertical-align: middle; 
}

.label {
  display: inline-block;
  font-size: 11px;
  padding: 5px 8px 6px 8px;
  line-height: 13px;
  color: #FFF;
  border-radius: 2px;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
}

.label-block {
  margin-top: 6px;
  display: block;
}
.label-block.text-left {
  text-align: left;
}
.label-block.text-right {
  text-align: right;
}

.label-default {
  background-color: #999999;
}
.label-default[href]:hover,
.label-default[href]:focus {
  background-color: #808080;
}
.label-primary {
  background-color: #445661;
}
.label-primary[href]:hover,
.label-primary[href]:focus {
  background-color: #3071a9;
}
.label-success {
  background-color: #3ACF87;
}
.label-success[href]:hover,
.label-success[href]:focus {
  background-color: #449d44;
}
.label-info {
  background-color: #3CA2BB;
}
.label-info[href]:hover,
.label-info[href]:focus {
  background-color: #31b0d5;
}
.label-warning {
  background-color: #E7804F;
}
.label-warning[href]:hover,
.label-warning[href]:focus {
  background-color: #ec971f;
}
.label-danger {
  background-color: #F64747;
}
.label-danger[href]:hover,
.label-danger[href]:focus {
  background-color: #c9302c;
}

.label-lightgray {
  background-color: #B1B1B1;
}
.label-lightgray[href]:hover,
.label-lightgray[href]:focus {
  background-color: #999999;
}





.text-left{text-align:left}.text-right{text-align:right}.text-center{text-align:center}.text-justify{text-align:justify}.text-muted{color:#999}.text-primary{color:#428bca}a.text-primary:hover{color:#3071a9}.text-success{color:#3c763d}a.text-success:hover{color:#2b542c}.text-info{color:#31708f}a.text-info:hover{color:#245269}.text-warning{color:#8a6d3b}a.text-warning:hover{color:#66512c}.text-danger{color:#a94442}a.text-danger:hover{color:#843534}.bg-primary{color:#fff;background-color:#428bca}a.bg-primary:hover{background-color:#3071a9}.bg-success{background-color:#dff0d8}a.bg-success:hover{background-color:#c1e2b3}.bg-info{background-color:#d9edf7}a.bg-info:hover{background-color:#afd9ee}.bg-warning{background-color:#fcf8e3}a.bg-warning:hover{background-color:#f7ecb5}.bg-danger{background-color:#f2dede}a.bg-danger:hover{background-color:#e4b9b9}

.pagination-1 {
  margin: 35px 0 25px 0; text-align: center; }

.pagination-1 .page {
  display: inline-block;
  /*float: left;*/
  margin: 0 3px 0 0;
  background-color: #c7c7c7;
  color: #ffffff;
  font-size: 12px; /*font-size: 10px;*/
  font-weight: 700;
  padding: 4px 12px;
  text-decoration: none;
  text-transform: uppercase;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  -ms-border-radius: 2px;
  -o-border-radius: 2px;
  border-radius: 2px; }
  
.pagination-1 .page:hover {
  background-color: #555555;
}
.pagination-1 .page.current,
.pagination-1 a.page:hover {
  background-color: #888888; }

.breadcrumb {
  font-size: 14px;
  line-height: 1.3em;
  margin-bottom: 36px;
}
.breadcrumb ul {
  font-size:14px;
  display: inline;
  margin: 0;
  padding: 0;
  -webkit-padding-start: 0;
  color: #000;
}
.breadcrumb li {
  display: inline;
  color: #fff;
}
.breadcrumb li a {
  font-size: 14px;
  color: #fff;
}
.breadcrumb li:after {
  /*font-family: fontello;
  content: "|";
  */
  /*
  font: normal normal normal 14px/1 FontAwesome;
  content: "\f105";
  */
  content: "|";
  margin: 0 5px 0 7px;
}
.breadcrumb li:last-child:after {
  display: none;
}
.breadcrumb li a:hover {
  font-size: 14px;
  color: #ff0000;
}

.downloadMarked .file { background-position: 0 3px; background-repeat: no-repeat; padding-left: 20px; line-height: 160%; margin-bottom: 8px; }
.downloadMarked .file a { display: inline-block; color: #333333; }
.downloadMarked .file a:hover { color: #ff0000; }




/* TEXT WITH ICON BLOCK 1 */
.text_icon_block-1 {
  margin: 30px 0 19px 0;
  text-align: center;
  display: block;
  text-decoration: none; }

.text_icon_block-1 .tib_icon_wrapper {
  margin: 19px 0;
  display: block; }

.text_icon_block-1 .tib_icon {
  display: inline-block;
  width: 64px;
  height: 64px;
  line-height: 64px;
  font-size: 24px;
  border-width: 1px;
  border-style: solid;
  border-color: #c4c4c4;
  color: #7b7b7b;
  -webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
  -webkit-box-shadow: 0 0 0 2px #f0f0f0;
  -moz-box-shadow: 0 0 0 2px #f0f0f0;
  box-shadow: 0 0 0 2px #f0f0f0;
  -webkit-border-radius: 999px;
  -moz-border-radius: 999px;
  -ms-border-radius: 999px;
  -o-border-radius: 999px;
  border-radius: 999px; }

.text_icon_block-1 .tib_title {
  margin: 10px 0;
  font-size: 15px;
  line-height: 20px;
  font-weight: 700;
  color: #272727;
  display: block; }

.text_icon_block-1 .tib_content {
  margin: 10px 0;
  display: block;
  color: #666666; }

/* TEXT WITH ICON BLOCK 2 */
.text_icon_block-2 {
  margin: 30px 0 19px 0;
  padding: 0 0 1px 0;
  text-align: center;
  display: block;
  text-decoration: none;
  border: 1px solid transparent;
  position: relative;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  -ms-border-radius: 2px;
  -o-border-radius: 2px;
  border-radius: 2px;
  -webkit-transform: translateZ(0);
  -moz-transform: translateZ(0);
  -ms-transform: translateZ(0);
  -o-transform: translateZ(0);
  transform: translateZ(0); }

.text_icon_block-2_inner {
  padding: 7px 16px 11px 16px;
  margin: -1px -1px 0 -1px;
  display: block;
  border: 1px solid #e8e8e8;
  position: relative;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  -ms-border-radius: 2px;
  -o-border-radius: 2px;
  border-radius: 2px; }

.text_icon_block-2,
.text_icon_block-2_inner {
  -webkit-transition: border-color 0.1s ease-out, box-shadow 0.1s ease-out;
  -moz-transition: border-color 0.1s ease-out, box-shadow 0.1s ease-out;
  -o-transition: border-color 0.1s ease-out, box-shadow 0.1s ease-out;
  transition: border-color 0.1s ease-out, box-shadow 0.1s ease-out; }

.text_icon_block-2:hover {
  border-color: #e3e3e3;
  -webkit-box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.1); }

.text_icon_block-2:hover .text_icon_block-2_inner {
  border-color: #e3e3e3;
  -webkit-box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.1); }

.text_icon_block-2 .tib_icon_wrapper {
  margin: 19px 0 18px 0;
  display: block; }

.text_icon_block-2 .tib_icon {
  display: inline-block;
  width: 24px;
  height: 24px;
  line-height: 24px;
  font-size: 24px;
  color: #020202; }

.text_icon_block-2 .tib_title {
  margin: 13px 0 13px 0;
  font-size: 15px;
  line-height: 20px;
  font-weight: 700;
  color: #272727;
  display: block; }

.text_icon_block-2 .tib_content {
  margin: 10px 0;
  display: block;
  color: #666666; }

/* TEXT WITH ICON BLOCK 3 */
.text_icon_block-3 {
  margin: 52px 0 22px 0;
  padding: 0 0 1px 0;
  text-align: center;
  display: block;
  text-decoration: none;
  border: 1px solid transparent;
  position: relative;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  -ms-border-radius: 2px;
  -o-border-radius: 2px;
  border-radius: 2px;
  -webkit-transform: translateZ(0);
  -moz-transform: translateZ(0);
  -ms-transform: translateZ(0);
  -o-transform: translateZ(0);
  transform: translateZ(0); }

.text_icon_block-3_inner {
  padding: 7px 16px 8px 16px;
  margin: -1px -1px 0 -1px;
  display: block;
  border: 1px solid #e8e8e8;
  position: relative;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  -ms-border-radius: 2px;
  -o-border-radius: 2px;
  border-radius: 2px; }

.text_icon_block-3,
.text_icon_block-3_inner {
  -webkit-transition: border-color 0.1s ease-out, box-shadow 0.1s ease-out;
  -moz-transition: border-color 0.1s ease-out, box-shadow 0.1s ease-out;
  -o-transition: border-color 0.1s ease-out, box-shadow 0.1s ease-out;
  transition: border-color 0.1s ease-out, box-shadow 0.1s ease-out; }

.text_icon_block-3:hover {
  border-color: #e3e3e3;
  -webkit-box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.1); }

.text_icon_block-3:hover .text_icon_block-3_inner {
  border-color: #e3e3e3;
  -webkit-box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.1); }

.text_icon_block-3 .tib_icon_wrapper {
  margin: -31px 0 19px 0;
  display: block; }

.text_icon_block-3 .tib_icon {
  display: inline-block;
  width: 48px;
  height: 48px;
  line-height: 48px;
  font-size: 20px;
  color: #ffffff;
  -webkit-border-radius: 999px;
  -moz-border-radius: 999px;
  -ms-border-radius: 999px;
  -o-border-radius: 999px;
  border-radius: 999px;
  -webkit-transition: background-color 0.2s ease-out;
  -moz-transition: background-color 0.2s ease-out;
  -o-transition: background-color 0.2s ease-out;
  transition: background-color 0.2s ease-out; }

.text_icon_block-3:hover .tib_icon {
  background-color: #3d4345; }

.text_icon_block-3 .tib_title {
  margin: 13px 0 13px 0;
  font-size: 15px;
  line-height: 20px;
  font-weight: 700;
  color: #272727;
  display: block; }

.text_icon_block-3 .tib_content {
  margin: 10px 0;
  display: block;
  color: #666666; }

/* TEXT WITH ICON BLOCK 4 */
.text_icon_block-4 {
  margin: 24px 0 30px 0; }

.text_icon_block-4 .tib_icon {
  text-align: center;
  float: left;
  width: 54px;
  height: 54px;
  line-height: 54px;
  font-size: 24px;
  border-width: 2px;
  border-style: solid;
  border-color: #d9d9d9;
  color: #404547;
  margin: 2px 0 0 0;
  -webkit-border-radius: 999px;
  -moz-border-radius: 999px;
  -ms-border-radius: 999px;
  -o-border-radius: 999px;
  border-radius: 999px; }

.text_icon_block-4 .tib_content_wrapper {
  margin: 0 0 0 74px; }

.text_icon_block-4 h3.tib_title {
  font-size: 14px;
  text-transform: uppercase;
  line-height: 16px;
  margin: 0; }

.text_icon_block-4 .tib_content {
  margin: -10px 0 0 0; }

/* TEXT WITH ICON EXPAND */
.text_icon_expand_item_wrapper {
  position: relative;
  height: 140px;
  z-index: 100;
  /*margin-top: -53px;*/
  margin-top: -81px; }

.text_icon_expand_item {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  text-align: center;
  display: block;
  text-decoration: none;
  background-color:#f5f5f5;  /*background-color: #ffffff;*/
  margin: 0;
  -webkit-box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
  -moz-box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
  box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
  -webkit-transition: height 0.3s ease-out;
  -moz-transition: height 0.3s ease-out;
  -o-transition: height 0.3s ease-out;
  transition: height 0.3s ease-out;
  -webkit-transition: box-shadow 0.3s ease-out;
  -moz-transition: box-shadow 0.3s ease-out;
  -o-transition: box-shadow 0.3s ease-out;
  transition: box-shadow 0.3s ease-out;
  -webkit-transition: margin 0.3s ease-out;
  -moz-transition: margin 0.3s ease-out;
  -o-transition: margin 0.3s ease-out;
  transition: margin 0.3s ease-out; }

.text_icon_expand_image_wrapper {
  display: block;
  border-bottom-width: 3px;
  border-bottom-style: solid;
  border-bottom-color: #d2d5d6;
  overflow: hidden;
  height: 0;
  -webkit-transition: border 0.3s ease-out;
  -moz-transition: border 0.3s ease-out;
  -o-transition: border 0.3s ease-out;
  transition: border 0.3s ease-out;
  -webkit-transition: height 0.3s ease-out;
  -moz-transition: height 0.3s ease-out;
  -o-transition: height 0.3s ease-out;
  transition: height 0.3s ease-out; }

.text_icon_expand_image {
  display: block;
  min-width: 100%; }

.text_icon_expand_item .tie_icon_wrapper {
  /*margin: -37px 0 10px 0;*/
  margin: -37px 0 0px 0;
  display: block; }

.text_icon_expand_item .tie_icon {
  display: inline-block;
  width: 64px;
  height: 64px;
  line-height: 64px;
  font-size: 24px;
  border-width: 3px;
  border-style: solid;
  background-color: #ffffff;
  color: #4f4f4f;
  -webkit-border-radius: 999px;
  -moz-border-radius: 999px;
  -ms-border-radius: 999px;
  -o-border-radius: 999px;
  border-radius: 999px;
  -webkit-transition: height 0.3s ease-out;
  -moz-transition: height 0.3s ease-out;
  -o-transition: height 0.3s ease-out;
  transition: height 0.3s ease-out;
  -webkit-transition: color 0.3s ease-out;
  -moz-transition: color 0.3s ease-out;
  -o-transition: color 0.3s ease-out;
  transition: color 0.3s ease-out; }

.text_icon_expand_item .tie_content {
  margin: 0 0 0 0;
  display: block;
  color: #666666;
  line-height: 18px;
  padding: 0 26px;
  overflow: hidden;
  height: 0;
  -webkit-transition: height 0.3s ease-out;
  -moz-transition: height 0.3s ease-out;
  -o-transition: height 0.3s ease-out;
  transition: height 0.3s ease-out; }

.text_icon_expand_item .tie_text {
  color: #51585b;
  padding: 14px 0 25px 0;
  display: inline-block;
  opacity: 0;
  -webkit-transition: opacity 0.2s ease-out;
  -moz-transition: opacity 0.2s ease-out;
  -o-transition: opacity 0.2s ease-out;
  transition: opacity 0.2s ease-out; }

.text_icon_expand_item .sc_button {
  display: inline-block;
  margin: 0 0 0 0;
  padding-right: 20px;
  padding-left: 19px;
  line-height: 19px;
  opacity: 0;
  -webkit-transition: opacity 0.1s ease-out;
  -moz-transition: opacity 0.1s ease-out;
  -o-transition: opacity 0.1s ease-out;
  transition: opacity 0.1s ease-out; }

.text_icon_expand_item .tie_subtitle {
  display: block;
  color: #6b6b6b;
  margin: 0 0 2px 0;
  padding: 0 26px; }

.text_icon_expand_item .tie_title {
  margin: 0;
  font-size: 15px;
  line-height: 20px;
  /*font-weight: 700;*/
  color: #272727;
  display: block;
  padding: 0 26px 25px 26px;
  -webkit-transition: color 0.2s linear;
  -moz-transition: color 0.2s linear;
  -o-transition: color 0.2s linear;
  transition: color 0.2s linear;
  
  font-family: Roboto, "Noto Sans TC", Helvetica, Arial, sans-serif;
  font-weight:normal !important;
}

.text_icon_expand_item:hover {
  background-color:#FFF;
}

.text_icon_expand_item_wrapper:hover .text_icon_expand_item {
  margin: 0 -6px; }

.text_icon_expand_item_wrapper:hover .text_icon_expand_image_wrapper {
  height: 150px; }

.text_icon_expand_item_wrapper:hover .tie_content {
  height: 150px; }

.text_icon_expand_item_wrapper:hover .text_icon_expand_item {
  -webkit-box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.24);
  -moz-box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.24);
  box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.24); }

.text_icon_expand_item_wrapper:hover .tie_icon {
  color: #58bbdf; }

.text_icon_expand_item_wrapper:hover .tie_text {
  opacity: 1;
  -webkit-transition: opacity 0.3s ease-out;
  -webkit-transition-delay: 0.2s;
  -moz-transition: opacity 0.3s ease-out 0.2s;
  -o-transition: opacity 0.3s ease-out 0.2s;
  transition: opacity 0.3s ease-out 0.2s; }

.text_icon_expand_item_wrapper:hover .sc_button {
  opacity: 1;
  -webkit-transition: opacity 0.3s ease-out, color 0.2s linear, background-color 0.2s linear;
  -webkit-transition-delay: 0.2s, 0s, 0s;
  -moz-transition: opacity 0.3s ease-out 0.2s, color 0.2s linear, background-color 0.2s linear;
  -o-transition: opacity 0.3s ease-out 0.2s, color 0.2s linear, background-color 0.2s linear;
  transition: opacity 0.3s ease-out 0.2s, color 0.2s linear, background-color 0.2s linear; }
  
  /* TEXT WITH ICON BLOCK 1 */
.text_icon_block-1:hover .tib_icon {
  color: #0093cf;
  border-color: #68b0cd;
  -webkit-box-shadow: 0 0 0 2px #cff1ff;
  -moz-box-shadow: 0 0 0 2px #cff1ff;
  box-shadow: 0 0 0 2px #cff1ff; }

/* TEXT WITH ICON BLOCK 3 */
.text_icon_block-3 .tib_icon {
  background-color: #f64747; }

/* TEXT WITH ICON EXPAND */
.text_icon_expand_item_wrapper:hover .text_icon_expand_image_wrapper {
  border-bottom-color: #cecece; }

.text_icon_expand_item .tie_icon {
  border-color: #cecece; }

.text_icon_expand_item_wrapper:hover .tie_title {
  color: #f64747; }



/*google icon fix*/
.gm-style img { max-width: none; }


.contentTitle { font-size: 26px; margin-bottom: 46px; }
.contentDate { margin-bottom: 46px; color: #cccccc; }
.contentContainer a { color: #333333; }
.contentContainer a:hover { color: #ff0000; }


#awards_content .column.four { margin-bottom: 30px; }
#awards_content .column.four:nth-of-type(3n) { }
#awards_content .column.four:nth-of-type(3n) + * { clear: both; }


.hero .container {
	margin: 0 auto;
	max-width: 1800px;
	width: 90%;
}

.hero .column.four {
	text-align: right;
}
@media (max-width: 600px) {
	.hero .column.four {
		text-align: center;
	}
	.hero .column.four img {
		max-width: 70%;
	}
}

.hero .overlay {
	background: rgba(0, 0, 0, 0);
}

#quote .overlay {
	background: rgba(255, 255, 255, 0.65);
}



#testimonials .section-title:after {
  background: #ffffff;
}

#testimonials .owl-pagination {
	bottom: -60px;
}



#navigation .label-notice { padding: 2px 3px; vertical-align: text-top; margin-top: 1px; font-size: 12px; }
@media screen and (max-width: 640px){
	h2.section-title {
	    font-size: 26px;
	    line-height: 36px;
	}
}



h2.section-title2 {
    font-size: 28px;
    line-height: 40px;
}
@media screen and (max-width: 640px){
	h2.section-title2 {
	    font-size: 22px;
	    line-height: 28px;
	}
}


h3.section-title3 {
    font-size: 28px;
    line-height: 40px;
}
@media screen and (max-width: 640px){
	h2.section-title3 {
	    font-size: 22px;
	    line-height: 28px;
	}
}





.plan-price h3 {
	text-align: center;
	font-size: 20px;
	padding: 10px 0;
	margin-bottom: 25px;
	color: #606060;
	text-align: center;
	background-color: rgba(0,0,0,0.02);
}

.plan-price {
	font-size: 36px;
	color: #606060;
	text-align: center;
	padding: 0 0 22px 0;
	position: relative;
}


/* Colors */
.plan.color-1 .plan-price,
.plan.color-1 .button { background-color: #f6f6f6; }

 .plan.color-2 .plan-price,
.plan.color-2 .button { background-color: #3acf87; }

 .plan.color-3 .plan-price,
.plan.color-3 .button { background-color: #514e9f; }

.plan.color-4 .plan-price,
.plan.color-4 .button { background-color: #e54b81; }

.plan.color-5 .plan-price,
.plan.color-5 .button { background-color: #a558a6; }

.plan.color-6 .plan-price,
.plan.color-6 .button { background-color: #f64747; }

.plan.color-7 .plan-price,
.plan.color-7 .button { background-color: #a1a1a1; }

.plan.color-8 .plan-price,
.plan.color-8 .button { background-color: #efefef; }

.plan.color-9 .plan-price,
.plan.color-9 .button { background-color: #52A8DA; }

 
.plan-price .value {
	font-weight: 600;
	letter-spacing: -1px;
}

.plan-currency {
	font-size: 22px;
	opacity: 0.7;
	position: relative;
	margin: 0 -5px 0 0;
	top: -4px;
}

.period {
	display: block;
	font-size: 16px;
	margin: 2px 0 0 0;
	opacity: 0.7;
}

.plan-features {
	background: #fff;
	border-top: none;
	padding: 20px 10px 10px 10px;

}

.plan-features ul li {
	padding: 4px 0;
	text-align: center;
}

.plan .button {
	position: relative;
	display: block;
	margin: 0 auto;
	margin: 0 0 12px 0;
	text-align: center;
	color: #666;
	padding: 10px 10px;
	font-size: 14px;
	-webkit-transition: all 0.2s ease-in-out;
	-moz-transition: all 0.2s ease-in-out;
	-o-transition: all 0.2s ease-in-out;
	-ms-transition: all 0.2s ease-in-out;
	transition: all 0.2s ease-in-out;
}

.color-2 .plan-price,
.color-3 .plan-price,
.color-4 .plan-price,
.color-5 .plan-price,
.color-6 .plan-price,
.color-7 .plan-price,
.color-9 .plan-price,
.color-2 .plan-price h3,
.color-3 .plan-price h3,
.color-4 .plan-price h3,
.color-5 .plan-price h3,
.color-6 .plan-price h3,
.color-7 .plan-price h3,
.color-9 .plan-price h3,
.color-2 .plan-price .plan-currency,
.color-3 .plan-price .plan-currency,
.color-4 .plan-price .plan-currency,
.color-5 .plan-price .plan-currency,
.color-6 .plan-price .plan-currency,
.color-7 .plan-price .plan-currency,
.color-9 .plan-price .plan-currency,
.color-2 .button,
.color-3 .button,
.color-4 .button,
.color-5 .button,
.color-6 .button,
.color-7 .button,
.color-9 .button { color: #fff; }

.color-1 .plan-price a,
.color-1 .plan-price h3 a,
.color-1 .plan-price .plan-currency a,
.color-1 .button a { color: #666; }

.color-8 .plan-price a,
.color-8 .plan-price h3 a,
.color-8 .plan-price .plan-currency a,
.color-8 .button a { color: #666; }

.color-2 .plan-price a,
.color-3 .plan-price a,
.color-4 .plan-price a,
.color-5 .plan-price a,
.color-6 .plan-price a,
.color-7 .plan-price a,
.color-9 .plan-price a,
.color-2 .plan-price h3 a,
.color-3 .plan-price h3 a,
.color-4 .plan-price h3 a,
.color-5 .plan-price h3 a,
.color-6 .plan-price h3 a,
.color-7 .plan-price h3 a,
.color-9 .plan-price h3 a,
.color-2 .plan-price .plan-currency a,
.color-3 .plan-price .plan-currency a,
.color-4 .plan-price .plan-currency a,
.color-5 .plan-price .plan-currency a,
.color-6 .plan-price .plan-currency a,
.color-7 .plan-price .plan-currency a,
.color-9 .plan-price .plan-currency a,
.color-2 .button a,
.color-3 .button a,
.color-4 .button a,
.color-5 .button a,
.color-6 .button a,
.color-7 .button a,
.color-9 .button a { color: #fff; }

.color-2 .plan-price h3,
.color-3 .plan-price h3,
.color-4 .plan-price h3,
.color-5 .plan-price h3,
.color-6 .plan-price h3,
.color-7 .plan-price h3,
.color-9 .plan-price h3 { background-color: rgba(0,0,0,0.05); }


@media screen and (max-width: 900px){
	#pricing-tables .six.column {
		width: 100%;
	}
	
	#ticket .six.column {
		width: 100%;
	}
}




.countdown {
	/*width: 400px;*/
	overflow: hidden;
	/*height: 58px;*/
	/*margin: 20px 0;*/
	/*display: table;*/
	display: inline;
}
.countdown > div {
	display: table-cell;
}
.countdown > div > span {
	display: block;
	text-align: center;
}
.countdown span.count {
	font-size: 30px;
	line-height: 30px;
}
.countdown-big {
	margin: 0 auto;
}
	.countdown-big .title {
}


#signupstatus {}
#signupstatus .lm-button { padding: 12px 8px 8px 80px; width: 100%; text-align: left; line-height: 30px; }
#signupstatus .lm-button.gray { background-color: #888888; border: 1px solid #888888; }
#signupstatus .lm-button.lightgray { background-color: #d1d1d1; border: 1px solid #d1d1d1; }
#signupstatus .datedesc { min-height: 36px; font-size: 22px; line-height: 34px; letter-spacing: -1px; }
#signupstatus .countdown-big { margin: 0; }

#signupstatus .lm-button .preicon { display: block; color: #ffffff; opacity: 0.95; position: absolute; top: 14px; left: 22px; font-size: 44px; line-height: 65px; }
#signupstatus .lm-button .posticon { display: block; color: #ffffff; opacity: 0.95; position: absolute; top: 14px; right: 20px; font-size: 44px; line-height: 65px; }
@media only screen and (max-width: 767px){
	#signupstatus .lm-button { padding-left: 12px; padding-right: 25px; }
	#signupstatus .lm-button .preicon { display: none; }
	#signupstatus .lm-button .posticon { top: -7px; right: 10px; font-size: 22px; }
}


#signupstatus .column.six { margin-bottom: 20px; }
@media (max-width: 1200px) {
	#signupstatus .column.six { width: 100%; margin-bottom: 20px; float: none; }
}

@media screen and (max-width: 1024px){
	#header-section #navigation ul li {
		background: #191919;
	}
}

/*jump mouse*/
@-webkit-keyframes jump-icon {
	0%, 20%, 80%, 100% { -webkit-transform: translateY(0); transform: translateY(0); }
	50% { -webkit-transform: translateY(-15px); transform: translateY(-15px); }
}
@keyframes jump-icon {
	0%, 20%, 80%, 100% { -webkit-transform: translateY(0); transform: translateY(0); }
	50% { -webkit-transform: translateY(-15px); transform: translateY(-15px); }
}
.jump { -webkit-animation: jump-icon 2s infinite ease-in-out; animation: jump-icon 2s infinite ease-in-out; position: absolute; width: 100%; max-width: 100%; top: calc(100% - 120px); z-index: 10; color: rgba(76,76,76,0.7); }
.jump-circle-button{ width: 45px; height: 45px; border-radius: 100%; padding: 0 !important; line-height: 45px; font-size: 21px; color: #fff; background: rgba(76,76,76,0.3); margin: 10px auto; display: inline-block; }
/*jump mouse END*/

.owl-pagination span { border: 1px solid #222; }
.owl-pagination .owl-page.active span { background-color: #222; }
.owl-pagination { bottom: -70px; }




/* 11.2 ipad land*/
@media only screen and (min-width: 960px) and (max-width: 1199px) {
}

/* 11.2 ipad port*/
@media only screen and (min-width: 768px) and (max-width: 959px) {
}

/* 11.3 iphone land*/
@media only screen and (min-width: 480px) and (max-width: 767px) {
}

/* 11.4 iphone port*/
@media only screen and (min-width: 320px) and (max-width: 479px){
}

/* 11.5 all responsive*/
@media only screen and (min-width: 320px) and (max-width: 1199px) {
}

/* 11.6 all iphone*/
@media only screen and (min-width: 320px) and (max-width: 767px) {
	h1 { font-size: 30px; line-height: 50px; }
	h1.logo { margin-top: 13px; }
	.hero-copy { font-size: 18px; line-height: 26px; }
	.lm-button { font-size: 13px; padding: 6px 12px; }
	.lm-button + .lm-button { margin-top: 5px; }
	
	.countdown span.count {
		font-size: 22px;
		line-height: 22px;
	}
	
	#signupstatus .lm-button { padding-left: 12px; padding-right: 20px; }
	#signupstatus .datedesc { min-height: 24px; font-size: 13px; line-height: 24px; letter-spacing: 0px; }
	
	.jump { font-size: 13px; top: calc(100% - 100px); }
	.jump-circle-button { width: 35px; height: 35px; line-height: 35px; }
}









































 /*-------------------------------------------------------------------------------------------------------------------------------*/
/* 02 - GLOBAL SETTINGS */
/*-------------------------------------------------------------------------------------------------------------------------------*/
/*main*/
#content-block{position: relative; overflow: hidden; left: 0;}
/*
.container{max-width: 100%; position: relative;}
.container-fluid{position: relative;}
*/
.content-margins{position: relative; border-left: 50px transparent solid; border-right: 50px transparent solid;}
@media (max-width: 991px) {
	.content-margins{border-width: 0 15px;}
}
.content-margins.grey{border-color: #f7f7f7;}
.overflow-hidden{overflow: hidden;}
html.overflow-hidden body{overflow: hidden;}
.page-height{min-height: 500px;}
body.mobile .swiper-container.page-height, body.mobile .swiper-container.page-height .swiper-wrapper, body.mobile .swiper-container.page-height .swiper-slide{height: auto!important;}
body.mobile .swiper-container.page-height .swiper-wrapper{transform: none!important; -webkit-transform: none!important;}
body.mobile .swiper-container.page-height .swiper-pagination{display: none;}
.grey-background{background: #f7f7f7;}
@media (min-width: 992px) {
	.visible-rd{display: none!important;}
}
.image-thumbnail{display: block; max-width: 100%; height: auto; margin: 0 auto;}
@media (min-width: 992px) {
	.row.vertical-aligned-columns{font-size: 0; white-space: nowrap;}
	.row.vertical-aligned-columns > div[class*="col"]{float: none; display: inline-block; vertical-align: middle; white-space: normal;}
}
/*table*/
.table-view{height: 100%; width: 100%; display: table;}
.row-view{display: table-row;}
.cell-view{display: table-cell; vertical-align: middle; width: 10000px;}
.cell-view.page-height{position: relative; z-index: 1;}
.cell-view.simple-banner-height{height: 600px;}
.cell-view.simple-banner-height.middle{height: 700px;}
.cell-view.simple-banner-height.big{height: 800px;}
/* Tablets (>=768px)*/
@media (max-width: 991px) {
	.cell-view.page-height{height: 500px!important}
	.swiper-container.page-height{height: 500px!important;}
	.cell-view.simple-banner-height, .cell-view.simple-banner-height.big, .cell-view.simple-banner-height.middle{height: auto;}
}
/*Phones (<768px)*/
@media (max-width: 767px) {
	.cell-view.page-height{height: auto!important}
	.swiper-container.page-height, .swiper-container.page-height .swiper-wrapper, .swiper-container.page-height .swiper-slide{height: auto!important;}
	.swiper-container.page-height .swiper-wrapper{transform: none!important; -webkit-transform: none!important;}
	.swiper-container.page-height .swiper-pagination{display: none;}
}
/*body selection*/
body ::selection {color: #b8cd06; background: #343434;}
body ::-moz-selection {color: #b8cd06; background: #343434;}
/*helper classes*/
.nopadding, .nopadding>*[class*="col"]{padding-left: 0; padding-right: 0; margin-left: 0; margin-right: 0;}
.line-through{display: inline-block; position: relative; padding: 0 5px;}
.line-through:after{position: absolute; width: 100%; height: 1px; left: 0; top: 50%; background: currentColor; content: "";}
.clearfix:after{content: ""; display: block; clear: both;}
.valign-middle {
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;

	-ms-flex-align: center;
	-webkit-align-items: center;
	-webkit-box-align: center;

	align-items: center;
}
.valign-middle-content{width: 100%; position: relative;}
.full-size{position: absolute; left: 0; top: 0; width: 100%; height: 100%;}
.fixed-background{background-size: cover; background-position: center top; background-attachment: fixed;}
body.mobile .fixed-background{background-attachment: scroll;}
.align-inline{display: inline-block; vertical-align: middle;}
.align-inline.spacing-1{margin-right: 20px; margin-bottom: 10px;}
.block{display: block;}
.rounded-image{border-radius: 10px; -webkit-border-radius: 10px;}
.block-image{display: block; max-width: 100%; height: auto; margin: 0 auto;}
.uppercase{text-transform: uppercase;}
.row-background{position: absolute; width: 50%; bottom: 0; height: 100%;}
.row-background.big{height: 112%;}
.row-background img{position: absolute; max-height: 100%; max-width: 100%; bottom: 0; left: 50%; transform: translateX(-50%)!important; -webkit-transform: translateX(-50%)!important;}
.row-background.left{left: 0;}
.row-background.right{right: 0;}
.block-entry{background-size: cover; background-position: center center; background-repeat: no-repeat;}
.notransition, .notransition *{transition: none!important; -webkit-transition: none!important;}
/*hovers*/
.simple-mouseover{display: block; overflow: hidden;}
.simple-mouseover, .simple-mouseover *{position: relative;}
.simple-mouseover:after, .simple-mouseover:before{position: absolute; left: 0; top: 0; width: 100%; height: 100%; background: rgba(184,205,6,.8); content: ""; opacity: 0; transition: all .3s; -webkit-transition: all .3s; border-radius: inherit; -webkit-border-radius: inherit;}
.simple-mouseover:before{background: url(../img/icon-11.png) center center no-repeat; z-index: 1; transform: rotate(180deg); -webkit-transform: rotate(180deg);}
.simple-mouseover:hover:after{opacity: 1;}
.simple-mouseover:hover:before{opacity: 1; transform: rotate(0); -webkit-transform: rotate(0);}
.simple-mouseover img{display: block; max-width: 100%; height: auto;}
/*loader*/
#loader-wrapper{position: fixed; left: 0; top: -100px; right: 0; bottom: -100px; background: #fff; z-index: 12;}
/**/
.simple-article{color: #888;}
.simple-article.grey, .grey{color: #555;}
.simple-article.dark, .dark{color: #343434;}
.simple-article.light{color: #fff; text-shadow: 1px 1px 1px rgba(0,0,0,.1);}
.simple-article.light.transparent, .light.transparent{color: rgba(255,255,255,.8);}
.simple-article.light.fulltransparent, .light.fulltransparent{color: rgba(255,255,255,.5);}
.simple-article.color, .color{color: #b8cd06;}

.simple-article a {color: #888;}
.simple-article a:hover {color: #333;}

.simple-article.size-1{font-size: 11px; line-height: 18px;}
.simple-article.size-2{font-size: 13px; line-height: 20px;}
.simple-article.size-3{font-size: 14px; line-height: 22px;}
.simple-article.size-4{font-size: 16px; line-height: 24px;}
.simple-article.size-5{font-size: 18px; line-height: 24px;}

.simple-article p, .simple-article ul, .simple-article ol, .simple-article img, .simple-article *[class*="col"], .simple-article h1, .simple-article h2, .simple-article h3, .simple-article h4, .simple-article h5, .simple-article h6, .simple-article .embed-responsive, .simple-article .swiper-container{margin-bottom: 22px;}
.simple-article *:last-child{margin-bottom: 0;}

.simple-article img{max-width: 100%; height: auto; display: inline-block; vertical-align: bottom;}
.blog-article img{display: block;}
.blog-article p, .blog-article ul, .blog-article ol, .blog-article img, .blog-article *[class*="col"]{margin-bottom: 1em;}
.simple-article ol{counter-reset: number;}
.simple-article ol li{padding-left: 0; margin-bottom: 8px;}
.simple-article ol li:before{counter-increment: number; content: "#" counter(number); color: #b8cd06; margin-right: 5px;}
.simple-article ul li{padding-bottom: 4px; padding-top: 4px; position: relative;}
.simple-article ul li:before{content: ""; width: 17px; height: 13px; display: inline-block; vertical-align: middle; background: url(../img/icon-20.png); position: relative; margin-right: 12px;}
.simple-article.light ul li:before{background-image: url(../img/icon-21.png);}
.simple-article ul, .simple-article ol {list-style: none; margin: 0 0 22px 0; padding: 0 0 0 15px;}

.simple-article h1, .h1, .simple-article h2, .h2, .simple-article h3, .h3, .simple-article h4, .h4, .simple-article h5, .h5, .simple-article h6, .h6{color: #343434; font-weight: 600; text-transform: uppercase;}
.simple-article.light h1, .simple-article.light .h1, .h1.light, .simple-article.light h2, .simple-article.light .h2, .h2.light, .simple-article.light h3, .simple-article.light .h3, .h3.light, .simple-article.light h4, .simple-article.light .h4, .h4.light, .simple-article.light h5, .simple-article.light .h5, .h5.light, .simple-article.light h6, .simple-article.light .h6, .h6.light{color: #fff; text-shadow: 1px 1px 1px rgba(0,0,0,.1);}
.simple-article h1 a, .h1 a, .simple-article h2 a, .h2 a, .simple-article h3 a, .h3 a, .simple-article h4 a, .h4 a, .simple-article h5 a, .h5 a, .simple-article h6 a, .h6 a{transition: all .15s; -webkit-transition: all .15s;}
.simple-article h1 a:hover, .h1 a:hover, .simple-article h2 a:hover, .h2 a:hover, .simple-article h3 a:hover, .h3 a:hover, .simple-article h4 a:hover, .h4 a:hover, .simple-article h5 a:hover, .h5 a:hover, .simple-article h6 a:hover, .h6 a:hover{color: #f64747;}
.simple-article h1, .h1{font-size: 70px; line-height: 70px;}
.simple-article h2, .h2{font-size: 40px; line-height: 46px;}
.simple-article h3, .h3{font-size: 30px; line-height: 34px;}
.simple-article h4, .h4{font-size: 18px; line-height: 24px;}
.simple-article h5, .h5{font-size: 16px; line-height: 22px;}
.simple-article h6, .h6{font-size: 13px; line-height: 18px;}
.simple-article a:not(.button):hover{text-decoration: underline;}
.simple-article br{line-height: 1em;}
.title-underline{padding: 20px 0; color: #ffffff; height: 21px;}
.title-underline.light{color: #fff;}
.title-underline span{width: 55px; height: 1px; background: currentColor; display: inline-block; vertical-align: top; position: relative;}
.title-underline span:before, .title-underline span:after{width: 4px; height: 1px; background: inherit; position: absolute; content: ""; top: 0; left: -9px;}
.title-underline span:after{left: auto; right: -9px;}
.title-underline.left{margin-left: 9px;}
.title-underline.left span:after{display: none;}
.title-underline.right{margin-right: 9px;}
.title-underline.right span:before{display: none;}
/*Desktops (>=992px)*/
@media (max-width: 1199px) {
	.simple-article h1, .h1{font-size: 46px; line-height: 46px;}
}
/* Tablets (>=768px)*/
@media (max-width: 991px) {
	.simple-article h1, .h1{font-size: 46px; line-height: 46px;}
}
/*Phones (<768px)*/
@media (max-width: 767px) {
	.simple-article h1, .h1{font-size: 34px; line-height: 40px;}
	.simple-article h2, .h2{font-size: 34px; line-height: 40px;}
}
/**/
.button{display: inline-block; vertical-align: bottom; text-align: center; -webkit-box-shadow: 1px 1px 2px rgba(0,0,0,.1); box-shadow: 1px 1px 2px rgba(0,0,0,.1); text-transform: uppercase; font-weight: 700; position: relative; cursor: pointer;}
.button.noshadow{box-shadow: none; -webkit-box-shadow: none; border: 1px #eee solid;}
.button.block{display: block;}
.button input{position: absolute; left: 0; top: 0; width: 100%; height: 100%; opacity: 0;}
.button span{display: block; position: relative; left: 0;}

.button span.icon{transition: all .15s; -webkit-transition: all .15s;}
.button span.text{transition: all .3s .05s; -webkit-transition: all .3s .05s;}

.button.size-1{font-size: 11px; line-height: 18px; border-radius: 20px; -webkit-border-radius: 20px;}
.button.size-2{font-size: 11px; line-height: 18px; border-radius: 25px; -webkit-border-radius: 25px;}
.button.size-6{font-size: 13px; line-height: 18px; }
.button.size-7{font-size: 12px; line-height: 18px; }
.button.size-1 .text{padding: 12px 20px 10px 20px;}
.button.size-2 .text{padding: 17px 30px 15px 30px;}
.button.size-6 .text{padding: 12px 25px 10px 25px;}
.button.size-7 .text{padding: 8px 21px 6px 21px;}
.button.style-1{background: #fff; color: #555;}
.button.style-2{background: #343434; color: #fff;}
.button.style-3{background: #b8cd06; color: #fff;}
.button.style-4{color: #fff;}
.button.style-5{border: 1px #eee solid; color: #888; box-shadow: none; -webkit-box-shadow: none;}
.button.facebook-button{background: #3b5998;}
.button.twitter-button{background: #5ea9dd;}
.button.google-button{background: #dd4d42;}
.button-wrapper{display: block; overflow: hidden; border-radius: inherit; -webkit-border-radius: inherit; position: relative;}
.button:before{position: absolute; left: 0; top: 0; width: 100%; height: 100%; border-radius: inherit; -webkit-border-radius: inherit; background: inherit; content: ""; opacity: .3;}
.button:hover:before{transform: scale(1.5); -webkit-transform: scale(1.5); opacity: 0; visibility: hidden; transition: transform .5s, opacity .5s, visibility 0s .5s; -webkit-transition: transform .5s, opacity .5s, visibility 0s .5s;}
.button .icon{width: 30px; height: 30px; line-height: 30px; text-align: center; font-size: 20px; position: absolute; left: -50px; top: 50%; margin-top: -15px; margin-left: -15px; color: #b8cd06;}
.button:hover .icon{left: 50%;}
.button.style-3 .icon, .button.style-4 .icon{color: #fff;}
.button.style-5 .icon{color: #888;}
.button .icon img{display: block; max-width: 30px; height: auto;}
.button .icon .fa{display: block; line-height: inherit;}
.button:hover .text{left: 100%;}
.button-close{display: inline-block; vertical-align: middle; background: url(../img/icon-5.png) 50% 50% no-repeat; width: 40px; height: 40px; cursor: pointer; position: relative;}
.button-close:before{position: absolute; left: 0; top: 0; width: 100%; height: 100%; content: ""; border-radius: 50%; -webkit-border-radius: 50%; transform: scale(0); -webkit-transform: scale(0); pointer-events: none; background: #000; opacity: .5;}
.button-close:hover:before{transform: scale(1.5); -webkit-transform: scale(1.5); opacity: 0; transition: transform .5s, opacity .5s, visibility 0s .5s; -webkit-transition: transform .5s, opacity .5s, visibility 0s .5s;}
.buttons-wrapper{font-size: 0; margin: 0 -5px;}
.buttons-wrapper .button{margin: 0 5px 10px 5px;}
.buttons-wrapper .button:last-child{margin-right: 0;}
.buttons-wrapper:after{display: block; content: ""; margin-top: -10px;}
.buttons-wrapper .simple-article{line-height: 24px; margin: 13px 30px 10px 0; display: inline-block; vertical-align: top;}
.play-button{width: 50px; height: 50px; background: #b8cd06; border-radius: 50px; -webkit-border-radius: 50px; position: relative; position: absolute; left: 50%; top: 50%; margin: -25px 0 0 -25px;}
.play-button:before{position: absolute; left: -5px; top: -5px; right: -5px; bottom: -5px; background: rgba(184,205,6,.3); content: ""; border-radius: inherit; -webkit-border-radius: inherit; transition: all .3s; -webkit-transition: all .3s;}
.play-button:hover:before{transform: scale(.9); -webkit-transform: scale(.9);}
.play-button:after{width: 0; height: 0; border-style: solid; border-width: 6.5px 0 6.5px 9px; border-color: transparent transparent transparent #fff; position: absolute; left: 50%; top: 50%; margin: -6.5px 0 0 -3px; content: "";}
/* Tablets (>=768px)*/
@media (max-width: 991px) {
	.buttons-wrapper .simple-article{display: block;}
}
/*Phones (<768px)*/
@media (max-width: 767px) {
	.button{display: block;}
	.button.mobile-icon .text{display: none;}
	.button.mobile-icon .icon{position: relative; left: auto; top: auto; margin: 0; display: block; width: auto; height: auto; line-height: inherit;}
	.button.mobile-icon.size-1{width: 40px; height: 40px; line-height: 40px;}
	.button.mobile-icon.size-2{width: 50px; height: 50px; line-height: 50px;}
	.buttons-wrapper .button{margin-right: 0;}
}
/**/
.simple-input, .SumoSelect > .CaptionCont{font-size: 14px; color: #555; height: 50px; line-height: 48px; padding: 0 30px; width: 100%; border: 1px #eee solid; border-radius: 26px; -webkit-border-radius: 26px; transition: all .15s; -webkit-transition: all .15s;}
.simple-input.small{height: 40px; line-height: 38px; font-size: 11px; padding: 0 18px;}
.simple-input{background: #fff;}
.simple-input.style-1{border-radius: 0; -webkit-border-radius: 0; border-left: none; border-top: none; border-right: none; padding-left: 0;}
.SumoSelect > .CaptionCont{font-size: 14px;}
.SumoSelect > select.small+.CaptionCont{padding: 0 15px; font-size: 10px; text-transform: uppercase;}
.SumoSelect > select.small+.CaptionCont > label{width: 40px;}
.SumoSelect > select.small+.CaptionCont > span{padding-right: 20px;}
.SlectBox.small+.CaptionCont{height: 42px; line-height: 40px; border-radius: 21px; -webkit-border-radius: 21px;}
.simple-input:focus, .SumoSelect.open > .CaptionCont{border-color: #b8cd06;}
.simple-input.invalid{border-color: #dd4d42!important;}
.SumoSelect > .CaptionCont > span.placeholder {color: #888;}
input::-webkit-input-placeholder, textarea::-webkit-input-placeholder{color: #888; opacity: 1;}
input:-moz-placeholder, textarea:-moz-placeholder{color: #888; opacity: 1;}
input::-moz-placeholder, textarea::-moz-placeholder{color: #888; opacity: 1;}
input:-ms-input-placeholder, textarea:-ms-input-placeholder{color: #888; opacity: 1;}
textarea.simple-input{padding-top: 10px; padding-bottom: 10px; line-height: 22px; height: 140px;}
.simple-input.light{border-color: rgba(255,255,255,.5); color: #fff; background: transparent;}
.simple-input.light:focus{border-color: #fff;}
.SumoSelect select.light+.CaptionCont > span.placeholder {color: rgba(255,255,255,.8);}
input.light::-webkit-input-placeholder, textarea.light::-webkit-input-placeholder, select.light+.CaptionCont input::-webkit-input-placeholder{color: rgba(255,255,255,.8); opacity: 1;}
input.light:-moz-placeholder, textarea.light:-moz-placeholder, select.light+.CaptionCont input:-moz-placeholder{color: rgba(255,255,255,.8); opacity: 1;}
input.light::-moz-placeholder, textarea.light::-moz-placeholder, select.light+.CaptionCont input::-moz-placeholder{color: rgba(255,255,255,.8); opacity: 1;}
input.light:-ms-input-placeholder, textarea.light:-ms-input-placeholder, select.light+.CaptionCont input:-ms-input-placeholder{color: rgba(255,255,255,.8); opacity: 1;}
select.light+.CaptionCont{background: transparent; border-color: rgba(255,255,255,.5); color: #fff;}
.SumoSelect.open select.light+.CaptionCont{border-color: #fff;}
.single-line-form{position: relative;}
.single-line-form .button{position: absolute; top: 0; right: 0;}
.input-file-wrapper{position: relative;}
.input-file-wrapper .simple-input{color: #888; padding-right: 50px;}
.input-file-wrapper.active .simple-input{color: #555;}
.input-file-wrapper .simple-input.light{color: rgba(255,255,255,.8);}
.input-file-wrapper.active .simple-input.light{color: #fff;}
.input-file-wrapper .file-remove{position: absolute; top: 0; right: 0; width: 50px; height: 50px; background: url(../img/icon-5.png) center center; cursor: pointer; z-index: 1; opacity:.5; display: none;}
.input-file-wrapper .file-remove.light{background-image: url(../img/icon-19.png);}
.input-file-wrapper .file-remove:hover{opacity: 1;}
.input-file-wrapper.active .file-remove{display: block;}
form{position: relative;}
.submit-icon{position: absolute; right: 0; top: 0; height: 100%; width: 50px; text-align: center; color: #888; cursor: pointer; transition: all .3s; -webkit-transition: all .3s;}
.submit-icon:hover{color: #343434;}
.submit-icon .fa{position: absolute; left: 50%; top: 50%; transform: translateX(-50%) translateY(-50%); -webkit-transform:translateX(-50%) translateY(-50%);}
/**/
.checkbox-entry{display: inline-block; cursor: pointer; margin: 0; padding: 0; min-width: 20px; min-height: 20px;}
.checkbox-entry input{display: none;}
.checkbox-entry span{position: relative; font-size: 11px; line-height: 20px; padding-left: 30px; display: block; color: #888; text-transform: uppercase;}
.checkbox-entry:hover span{color: #555;}
.checkbox-entry span:before{content: ""; position: absolute; left: 0; top: 0; width: 20px; height: 20px; border: 1px #eee solid; border-radius: 2px; -webkit-border-radius: 2px; background: url(../img/icon-6.png) 100px center no-repeat #fff;}
.checkbox-entry input:checked+span:before{border-color: #b8cd06; background-color: #b8cd06; background-position: center center;}
.checkbox-entry.radio span:before{border-radius: 10px; -webkit-border-radius: 10px; background: none;}
.checkbox-entry.radio input:checked+span:before{border-color: #b8cd06; background-color: #fff; border-width: 7px;}
.checkbox-entry a:hover{text-decoration: underline;}
.checkbox-entry.light span{color: rgba(255,255,255,.8);}
.checkbox-entry.light:hover span{color: #fff;}
.checkbox-entry.light.radio input:checked+span:after{content: ""; position: absolute; left: 0; top: 0; width: 20px; height: 20px; border: 2px #eee solid; border-radius: 10px; -webkit-border-radius: 10px;}
.checkbox-entry.checkbox-toggle-title span{color: #343434; font-weight: 900; text-transform: uppercase; font-size: 18px;}
.checkbox-toggle-wrapper{display: none;}
/**/
.ClassyCountdown-wrapper{margin: 0 -5px;}
.ClassyCountdown-wrapper > div {display: inline-block; position: relative; width: 25%; padding: 0 5px;}
.ClassyCountdown-wrapper .ClassyCountdown-value {width: 100%; line-height: 1em; position: absolute; top: 50%; text-align: center; left: 0; display: block;}
.ClassyCountdown-wrapper .ClassyCountdown-value span{display: block;}
.countdown.light .ClassyCountdown-wrapper .ClassyCountdown-value span, .countdown.light-green .ClassyCountdown-wrapper .ClassyCountdown-value span{color: rgba(255,255,255,.8)!important;}
.countdown.max-width{max-width: 400px;}
/**/
.follow{font-size: 0; margin-bottom: -7px;}
.follow .title, .tags .title{font-weight: 700; font-size: 13px; color: #fff; text-transform: uppercase; display: inline-block; line-height: 35px; vertical-align: top; margin-right: 20px;}
.follow.light .title, .tags.light .title{color: #343434;}
.follow .entry{width: 35px; height: 35px; line-height: 35px; display: inline-block; vertical-align: bottom; border-radius: 50%; -webkit-border-radius: 50%; background: #424242; color: #888; font-size: 14px; margin: 0 7px 7px 7px; cursor: pointer; position: relative; text-align: center;}
.follow.light .entry{background: #f7f7f7;}
.follow .entry:hover{color: #fff;}
.follow .entry .fa{display: block; line-height: inherit; position: relative;}
.follow .entry:before{position: absolute; left: -1px; top: -1px; right: -1px; bottom: -1px; content: ""; border-radius: 50%; -webkit-border-radius: 50%; background: #b8cd06; transform: scale(0); -webkit-transform: scale(0);}
.follow .entry:hover:before{transform: scale(1); -webkit-transform: scale(1);}
.follow .entry, .follow .entry:before{transition: all .15s; -webkit-transition: all .15s;}
/*Phones (<768px)*/
@media (max-width: 767px) {
	.follow .title, .tags .title{margin: 0 0 10px 0; display: block; line-height: 18px;}
}





/*.swiper-wrapper{cursor:url(../img/drag.png) 16 9, ew-resize;}*/
/*.swiper-container-vertical .swiper-wrapper{cursor:url(../img/drag-vertical.png) 8 16, ns-resize;}*/
.swiper-button-disabled+.swiper-button-disabled+.swiper-wrapper, .swiper-button-disabled+.swiper-button-disabled+.swiper-container > .swiper-wrapper{transform: none!important; -webkit-transform: none!important; cursor: auto; justify-content: center;}
.swiper-button-disabled+.swiper-button-disabled+.swiper-wrapper .swiper-slide:last-child, .swiper-button-disabled+.swiper-button-disabled+.swiper-container > .swiper-wrapper .swiper-slide:last-child{margin-right: 0!important;}
.swiper-button-disabled+.swiper-button-disabled+.swiper-wrapper+.swiper-pagination-bullets, .swiper-button-disabled+.swiper-button-disabled+.swiper-container > .swiper-pagination-bullets{display: none!important;}
.swiper-container-horizontal{overflow-x: hidden; overflow-y: visible;}
.swiper-button-prev.style-1{left: 0;}
.swiper-button-next.style-1{right: 0;}
.swiper-button-prev.style-1, .swiper-button-next.style-1{background-color: transparent;}
.swiper-button-prev.style-1:before, .swiper-button-next.style-1:before, .swiper-button-prev.style-1:after, .swiper-button-next.style-1:after{display: none;}
.swiper-container.arrows-align-top>.swiper-button-next{top: -5px; margin: 0; width: 30px; height: 30px; background-position: -75px -15px;}
.swiper-container.arrows-align-top>.swiper-button-next:hover{background-position: -15px -15px;}
.swiper-container.arrows-align-top>.swiper-button-prev{top: -5px; margin: 0; left: auto; right: 45px; width: 30px; height: 30px; background-position: -15px -15px;}
.swiper-container.arrows-align-top>.swiper-button-prev:hover{background-position: -75px -15px;}
.swiper-title{margin-right: 80px;}
.swiper-container.rounded{border-radius: 10px; -webkit-border-radius: 10px;}
.swiper-container.rounded-top{/*border-radius: 5px 5px 0 0; -webkit-border-radius: 5px 5px 0 0;*/}
.swiper-container[data-touch="0"]:after{position: absolute; left: 0; top: 0; width: 100%; height: 100%; content: ""; z-index: 1;}
.content-margins .swiper-button-prev:not(.style-1), .container .swiper-button-prev:not(.style-1){left: -30px;}
.content-margins .swiper-button-next:not(.style-1), .container .swiper-button-next:not(.style-1){right: -30px;}
.swiper-slide{background-size: cover; background-position: center center;}
.our-team-slider .swiper-button-next, .our-team-slider .swiper-button-prev{margin-top: -88px;}


.popup-wrapper{position: fixed; z-index: 9999; left: 0; top: 0; width: 100%; height: 100%; left: -100%; transition-delay: .3s; -webkit-transition-delay: .3s;}
.popup-wrapper.active{left: 0; transition-delay: 0s; -webkit-transition-delay: 0s;}
.popup-wrapper .bg-layer{position: absolute; left: 0; top: -100px; right: 0; bottom: -100px; background: rgba(0,0,0,.8); transition: all .3s ease-out; -webkit-transition: all .3s ease-out; opacity: 0;}
.popup-wrapper.active .bg-layer{opacity: 1;}
.popup-content{position: absolute; left: 0; top: 0; right: 0; bottom: 0; overflow: auto; -webkit-overflow-scrolling: touch; font-size: 0; text-align: center; transition: all .3s ease-out; -webkit-transition: all .3s ease-out; transform: scale(1.2); -webkit-transform: scale(1.2); opacity: 0; visibility: hidden; padding: 15px;}
.popup-content.active{transform: scale(1); -webkit-transform: scale(1); opacity: 1; visibility: visible;}
.popup-content:after{display: inline-block; vertical-align: middle; height: 100%; content: "";}
.popup-container{display: inline-block; vertical-align: middle; width: 100%; position: relative; text-align: left; background: #fff; /*-webkit-border-radius: 5px; border-radius: 5px;*/ -webkit-box-shadow: 3px 4px 20px rgba(0,0,0,.2); box-shadow: 3px 4px 20px rgba(0,0,0,.2);}
.popup-container.size-1{max-width: 570px;}
.popup-container.size-2{max-width: 1170px;}
.popup-container.size-3{max-width: 970px;}
.popup-container.size-4{background: #000; max-width: 80%; padding: 50px 5px 5px 5px; background: #fff;}
.popup-content .layer-close{position: absolute; left: 0; bottom: 0; right: 0; height: 10000px;}
.popup-align{padding: 80px 100px;  overflow: hidden;}
.simple-link{font-size: 11px; line-height: 18px; color: #555; display: inline-block; font-weight: 700; text-transform: uppercase; transition: all .15s; -webkit-transition: all .15s;}
.simple-link:hover{color: #b8cd06;}
.popup-container .button-close{position: absolute; right: 5px; top: 5px; z-index: 2;}
.popup-or{height: 140px; position: relative;}
.popup-or:before{position: absolute; left: 0; top: 50%; width: 100%; background: #eee; content: ""; height: 1px;}
.popup-or span{width: 60px; height: 60px; border: 5px #eee solid; border-radius: 30px; -webkit-border-radius: 30px; text-align: center; line-height: 50px; position: absolute; left: 50%; top: 50%; margin: -30px 0 0 -30px; background: #fff; font-size: 11px; color: #888; font-weight: 700; text-transform: uppercase;}
/* Tablets (>=768px)*/
@media (max-width: 991px) {
	.popup-container.size-2 .popup-align{padding: 40px 15px 40px 15px;}
}
/*Phones (<768px)*/
@media (max-width: 767px) {
	.popup-container.size-1 .popup-align{padding: 40px 30px;}
	.popup-container.size-4{max-width: 100%;}
}


.full-size {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
}
.grid-sizer{width: 25%;}
.grid{position: relative; margin: -15px -15px 0 -15px;}
.grid-item.w25{width: 25%;}
.grid-item.w50{width: 50%;}
.gallery-grid-item{overflow: hidden; position: relative; cursor: pointer;}
.gallery-grid-item:after{position: absolute; left: 0; top: 0; width: 100%; height: 100%; content: ""; /*border: 15px #fff solid;*/}
.gallery-grid-item img{display: block; width: 100%; transition: all .3s; -webkit-transition: all .3s;}
.gallery-grid-item.style-1:hover img{transition: all .3s .15s; -webkit-transition: all .3s .15s; transform: translateY(100px); -webkit-transform: translateY(100px);}
.gallery-grid-item.style-1 .gallery-title{position: absolute; left: 15px; top: 15px; right: 15px; background: #b8cd06; padding: 22px 30px; transform: translateY(-100%); -webkit-transform: translateY(-100%); transition: all .3s; -webkit-transition: all .3s; min-height: 100px;}
.gallery-grid-item.style-1:hover .gallery-title{transform: translateY(0%); -webkit-transform: translateY(0%);}
.gallery-grid-link{z-index: 1;}
.gallery-grid-item.style-2 .gallery-title{position: absolute; left: 0; top: 0; right: 0; bottom: 0; background: rgba(247,247,247,.85); opacity: 0; transition: all .3s .15s; -webkit-transition: all .3s .15s;}
.gallery-grid-item.style-2 .gallery-title .left{position: absolute; left: 45px; right: 45px; top: 50%; margin-top: -20px; opacity: 0; transition: all .3s; -webkit-transition: all .3s; transform: translateX(-100%); -webkit-transform: translateX(-100%);}
.gallery-grid-item.style-2 .gallery-title .right{position: absolute; top: 35px; right: 45px; left: 45px; text-align: right; opacity: 0; transition: all .3s; -webkit-transition: all .3s; transform: translateX(100%); -webkit-transform: translateX(100%);}
.gallery-grid-item.style-2:hover .gallery-title{opacity: 1; transition: all .3s; -webkit-transition: all .3s;}
.gallery-grid-item.style-2:hover .gallery-title .left, .gallery-grid-item.style-2:hover .gallery-title .right{opacity: 1; transform: translateX(0%); -webkit-transform: translateX(0%); transition: all .3s .15s; -webkit-transition: all .3s .15s;}
/* Tablets (>=768px)*/
@media (max-width: 991px) {
	.grid-item.w25{width: 50%;}
}
/*Phones (<768px)*/
@media (max-width: 767px) {
	.grid{margin: 0;}
	.gallery-grid-item .gallery-title{display: none;}
	.gallery-grid-item.style-1:hover img{transform: none; -webkit-transform: none;}
}
/*Phones (<768px)*/
@media (max-width: 450px) {
	.grid-item.w25{width: 100%;}
	.grid-item.w50{width: 100%;}
	.gallery-grid-item:after{display: none;}
	.gallery-grid-item{margin-bottom: 15px;}
}
/*masonry popup*/
.popup-content .slider-wrapper{background: transparent;}
.gallery-big-preview-entry{padding-bottom: 61%; background-size: cover; background-position: center center;}
.gallery-small-preview-entry img{display: block; width: 100%; height: auto; opacity: .2; transition: all .3s; -webkit-transition: all .3s;}
.swiper-slide-active .gallery-small-preview-entry img{opacity: .5;}
@media (min-width: 1200px) {
	.gallery-popup-slider-wrapper .swiper-button-prev{left: -100px;}
	.gallery-popup-slider-wrapper .swiper-button-next{right: -100px;}
}
.gallery-popup-description{padding: 40px 50px;}
/*Phones (<768px)*/
@media (max-width: 767px) {
	.gallery-popup-description{padding: 30px 15px;}
}
 
 
 
 
 .row.nopadding .swiper-container{padding-top: 1px; margin-top: -1px;}
.row.nopadding .grid-products-4-items{margin-left: -1px; margin-top: -1px; clear: both;}
.row.nopadding .grid-products-2-items{margin-left: -1px; margin-top: -1px; clear: both;}
.product-shortcode{display: block; margin-left: auto; margin-right: auto; position: relative;}
.product-shortcode .animate-to-green, .product-shortcode .animate-to-fulltransparent{transition: all .3s; -webkit-transition: all .3s;}
.animate-to-green *{transition: none; -webkit-transition: none!important;}
.product-shortcode:hover .animate-to-green{color: #b8cd06;}
.product-shortcode:hover .animate-to-fulltransparent{color: rgba(255,255,255,.5);}
.swiper-slide .product-shortcode:not(:first-child){margin-top: -1px;}
.swiper-slide:not(:first-child) .product-shortcode{border-left: none!important;}
.row.nopadding .product-shortcode{margin-left: -1px; margin-top: -1px;}
.product-shortcode .product-label{position: absolute; left: 30px; top: 30px; z-index: 3;}
.product-shortcode.style-7 .product-label{left: 10px; top: 0;}
.product-label{-webkit-box-shadow: 1px 1px 2px rgba(0,0,0,.1); box-shadow: 1px 1px 2px rgba(0,0,0,.1); color: #fff; line-height: 24px; font-size: 10px; font-weight: 700; border-radius: 12px; -webkit-border-radius: 12px; padding: 0 10px; text-transform: uppercase;}
.product-label.green{background: #b8cd06;}
.product-label.red{background: #d80505;}
.small-items-line{overflow: hidden;}
.small-items-line>.row{margin-bottom: -31px;}
.small-items-line>.row>*[class*="col"]{margin-bottom: 60px;}
.small-items-line>.row>*[class*="col"]:after{position: absolute; left: 0; bottom: -30px; right: 0; height: 1px; background: #eee; content: "";}
.slider-wrapper.hidden-pixel-y:before, .slider-wrapper.hidden-pixel-y:after{position: absolute; left: 0; top: 0; width: 1px; background: #fff; height: 100%; content: ""; z-index: 2;}
.slider-wrapper.hidden-pixel-y:after{left: auto; right: 0;}
.slider-wrapper.hidden-pixel-x .product-shortcode{border-top: none; border-bottom: none;}
.slider-wrapper.side-borders:before{position: absolute; left: 0; top: 0; width: 2px; height: 100%; background: #f7f7f7; border-right: 1px #fff solid; content: ""; z-index: 2;}
.slider-wrapper.side-borders:after{position: absolute; right: 0; top: 0; width: 2px; height: 100%; background: #f7f7f7; border-left: 1px #fff solid; content: ""; z-index: 2;}
.product-shortcode.noframe{border: none!important;}
/*Phones (<768px)*/
@media (max-width: 767px) {
	.row.nopadding .product-shortcode{margin-left: 0;}
}

/*shortcode 1*/
.product-shortcode.style-1{border: 1px #f7f7f7 solid; padding: 25px 30px 5px 30px; background: #fff; overflow: hidden;}
.product-shortcode.style-1 .title{height: 60px; margin-bottom: 10px;}
.product-shortcode.style-1 .description{height: 60px; overflow: hidden; position: relative;}
.product-shortcode.style-1 .description .text{transition: all .3s; -webkit-transition: all .3s;}
.product-shortcode.style-1 .description .icons{position: absolute; left: 0; top: 0; width: 100%; height: 100%; font-size: 0; opacity: 0; transform: translateY(100%); -webkit-transform: translateY(100%); transition: all .3s; -webkit-transition: all .3s;}
.product-shortcode .icons .entry{width: 30px; height: 30px; border: 1px #eee solid; border-radius: 50%; -webkit-border-radius: 50%; display: inline-block; vertical-align: bottom; text-align: center; line-height: 28px; color: #979797; transition: all .15s; -webkit-transition: all .15s; font-size: 16px; margin: 0 5px 5px 0;}
.product-shortcode .icons .entry:hover{background: #b8cd06; border-color: #b8cd06; color: #fff; -webkit-box-shadow: 1px 1px 2px rgba(0,0,0,.1); box-shadow: 1px 1px 2px rgba(0,0,0,.1);}
.product-shortcode .icons .entry .fa{display: block; line-height: inherit;}
.product-shortcode.style-1 .price{height: 36px; overflow: hidden; position: relative;}
.product-shortcode.style-1 .price .simple-article{line-height: 18px;}
.product-shortcode.style-1 .preview{position: relative; margin-bottom: 30px;}
.product-shortcode.style-1 .preview img{max-width: 100%; height: auto; display: block; margin: 0 auto;}
.product-shortcode.style-1 .preview-buttons, .product-shortcode.style-7 .preview-buttons{position: absolute; left: 50%; margin-left: -100px; top: 0; width: 200px; height: 100%; text-align: center; transition: all .3s; -webkit-transition: all .3s; background: rgba(255,255,255,.9); opacity: 0;}
.product-shortcode.style-1 .preview-buttons .button, .product-shortcode.style-7 .preview-buttons .button{min-width: 135px; margin-bottom: 10px; transition: opacity .3s, left 0s .3s; transform: translateY(-30px); -webkit-transform: translateY(-30px); transition: all .3s; -webkit-transition: all .3s;}
.product-shortcode.style-1 .preview-buttons .button:nth-child(2), .product-shortcode.style-7 .preview-buttons .button:nth-child(2){transform: translateY(30px); -webkit-transform: translateY(30px);}
.color-selection{font-size: 0;}
.color-selection .entry{cursor: pointer; display: inline-block; width: 12px; height: 12px; vertical-align: bottom; margin: 0 3px 3px 0; position: relative; background: currentColor;}
.color-selection .entry:before{position: absolute; left: -2px; top: -2px; right: -2px; bottom: -2px; border: 1px currentColor solid; content: ""; opacity:0;}
.color-selection .entry.active:before{opacity: 1;}
.color-selection:after{content: ""; display: block; margin-top: -3px;}
.product-shortcode.style-1 .price .color-selection{position: absolute; right: 0; top: 3px;}
.product-shortcode.style-1 .color-selection+*{margin-right: 80px;}
.color-selection.size-1 .entry{width: 16px; height: 16px; margin: 0 10px 10px 0;}
.color-selection.size-1 .entry:before{left: -3px; top: -3px; right: -3px; bottom: -3px;}
.color-selection.size-1:after{margin-top: -10px;}
/**/
.product-shortcode.style-1.big{padding: 60px 50px 30px 50px; border-color: #f7f7f7;}
.product-shortcode.style-1.big .preview{margin-bottom: 60px;}
.product-shortcode.style-1.big .title{margin-bottom: 0;}
/**/
@media (min-width: 768px) {
	.products-wrapper .product-shortcode.style-1{border-bottom: none; border-top: none; margin-bottom: 60px; padding-top: 0; padding-bottom: 0;}
	.products-content{overflow: hidden; margin-bottom: 10px;}
	.products-wrapper{margin: 0 -3px;}
	.products-content.view-inline{margin-bottom: 70px;}
	.products-content.view-inline .row > *[class*="col"]{width: 100%;}
	.products-content.view-inline .product-shortcode.style-1{padding: 25px 0 30px 269px; margin-bottom: 0; border-bottom: 1px #eee solid; min-height: 201px; margin-top: 0;}
	.products-content.view-inline .product-shortcode.style-1 .preview{position: absolute; left: 0; top: 0;}
	.products-content.view-inline .product-shortcode.style-1 .title{height: auto;}
	.products-content.view-inline .product-shortcode.style-1 .price{height: auto; margin-bottom: 15px;}
	.products-content.view-inline .product-shortcode.style-1 .description{height: auto;}
	.products-content.view-inline .product-shortcode.style-1 .description .text{opacity: 1; margin-bottom: 10px; transition: none; -webkit-transition: none;}
	.products-content.view-inline .product-shortcode.style-1 .description .icons{opacity: 1; transform: none; -webkit-transform: none; position: relative; transition: none; -webkit-transition: none;}
}
/*Phones (<768px)*/
@media (max-width: 767px) {
	.product-shortcode.style-1.big{padding: 25px 30px 5px 30px;}
	.product-shortcode.style-1.big .preview{margin-bottom: 30px;}
}
/**/
.product-shortcode.style-1.small{border-color: #eee;}
.product-shortcode.style-1.small .title{margin-bottom: 30px; height: 41px;}
.product-shortcode.style-1.small .preview{margin-bottom: 30px;}
/*hover*/
.product-shortcode.style-1:hover .preview-buttons, .product-shortcode.style-7:hover .preview-buttons{opacity: 1;}
.product-shortcode.style-1:hover .preview-buttons .button, .product-shortcode.style-7:hover .preview-buttons .button{transform: translateY(0px); -webkit-transform: translateY(0px);}
.product-shortcode.style-1:hover .description .icons{transform: translateY(0px); -webkit-transform: translateY(0px); opacity: 1;}
.product-shortcode.style-1:hover .description .text, .product-shortcode.style-7:hover .description .text{opacity: 0;}

/*shortcode 2*/
.product-shortcode.style-2{border: 1px #f7f7f7 solid; background: #fff; overflow: hidden; text-align: center; transition: all .3s; -webkit-transition: all .3s; padding-bottom: 100%; padding: 5px 15px 10px 15px;}
.product-shortcode.style-2 span{display: block;}
.product-shortcode.style-2 .preview{height: 145px; margin-bottom: 5px;}
.product-shortcode.style-2 .preview img{display: inline-block; vertical-align: bottom; max-width: 100%; max-height: 100%;}
.product-shortcode.style-2 .description{height: 50px; overflow: hidden;}
/*hover*/
.product-shortcode.style-2:hover{background: #343434;}

/*shortcode 3*/
.product-shortcode.style-3{border: 1px #f7f7f7 solid; padding: 40px 50px 50px 50px; text-align: center; background: #fff; overflow: hidden;}
.product-shortcode.style-3 .swiper-container{margin-left: -50px; margin-right: -50px;}
.product-shortcode.style-3 .swiper-container img{display: inline-block; max-width: 100%; height: auto; vertical-align: bottom;}
.product-shortcode.style-3 .products-line .line{height: 5px; background: #f7f7f7; position: relative; border-radius: 3px; -webkit-border-radius: 3px;}
.product-shortcode.style-3 .products-line .line .fill{position: absolute; left: 0; top: 0; height: 100%; background: #b8cd06; border-radius: inherit; -webkit-border-radius: inherit;}
.product-shortcode.style-3 .description{height: 40px; overflow: hidden;}
.product-shortcode.style-3 .preview-buttons{position: absolute; left: 15px; right: 15px; bottom: 65px; padding-top: 15px;}
.product-shortcode.style-3 .countdown{max-width: 350px; margin: 0 auto;}
.product-shortcode.style-3.big{padding-top: 0; border: 1px #f7f7f7 solid;}
.grid-products-4-items{background: #fff;}
.grid-products-4-items .swiper-pagination{background: #fff; margin-top: 0!important; padding-bottom: 41px; padding-top: 11px; border-bottom: 1px #f7f7f7 solid; bottom: 0!important;}
.grid-products-4-items .product-shortcode{border-bottom: none!important;}
/*hover*/
@media (min-width: 992px) {
	.product-shortcode.style-3 .preview-buttons .button{opacity: 0; transform: translateX(-30px); -webkit-transform: translateX(-30px); transition: all .3s; -webkit-transition: all .3s;}
	.product-shortcode.style-3 .preview-buttons .button:nth-child(2){transform: translateX(30px); -webkit-transform: translateX(30px);}
	.product-shortcode.style-3 .countdown-wrapper{opacity: 1; transition: all .3s; -webkit-transition: all .3s;}
	.product-shortcode.style-3 .swiper-button-prev{transform: translateX(-100%); -webkit-transform: translateX(-100%);}
	.product-shortcode.style-3 .swiper-button-next{transform: translateX(100%); -webkit-transform: translateX(100%);}
	.product-shortcode.style-3:hover .preview-buttons .button{opacity: 1; transform: translateX(0); -webkit-transform: translateX(0);}
	.product-shortcode.style-3:hover .countdown-wrapper{opacity: 0;}
	.product-shortcode.style-3:hover .swiper-button-prev, .product-shortcode.style-3:hover .swiper-button-next{transform: translateX(0%); -webkit-transform: translateX(0%);}
}
/* Tablets (>=768px)*/
@media (max-width: 991px) {
	.product-shortcode.style-3{padding: 15px;}
	.product-shortcode.style-3 .swiper-container{margin-left: -15px; margin-right: -15px;}
	.product-shortcode.style-3 .swiper-button-prev, .product-shortcode.style-3 .swiper-button-next{transform: translateX(0%); -webkit-transform: translateX(0%);}
	.product-shortcode.style-3 .preview-buttons{position: relative; left: auto; right: auto; bottom: auto;}
}

/*shortcode 4*/
.product-shortcode.style-4 .preview{float: left; width: 85px; position: relative;}
.product-shortcode.style-4 .preview:after{position: absolute; left: 0; top: 0; width: 100%; height: 100%; border: 1px #b8cd06 solid; content: ""; transition: all .3s; -webkit-transition: all .3s; opacity: 0;}
.product-shortcode.style-4 .preview:hover:after{opacity: 1;}
.product-shortcode.style-4 .preview img{display: block; max-width: 100%; height: auto;}
.product-shortcode.style-4 .description{margin-left: 105px; padding-top: 10px; padding-bottom: 10px;}
.product-shortcode.style-4.rounded{border: none;}
.product-shortcode.style-4.rounded .preview:after{display: none;}
.product-shortcode.style-4.rounded .preview img{border-radius: 5px; -webkit-border-radius: 5px; border: 1px #eee solid; transition: all .15s; -webkit-transition: all .15s;}
.product-shortcode.style-4.rounded .preview:hover img{border-color: #b8cd06;}
.product-shortcode.style-4.light{background: #fff; border-bottom: 1px #f7f7f7 solid; padding: 10px;}
.product-shortcode.style-4.light .preview{width: 90px;}

/*shortcode 5*/
.product-shortcode.style-5{text-align: center; padding: 60px 30px 30px 30px; background: #fff; border-left: 1px #eee solid; border-right: 1px #eee solid;}
.product-shortcode.style-5 .content{max-width: 305px; margin: 0 auto;}
.product-shortcode.style-5 .swiper-container{margin-left: -30px; margin-right: -30px;}
.product-shortcode.style-5 .title{margin-bottom: 10px; text-transform: uppercase; transition: all .3s; -webkit-transition: all .3s;}
.product-shortcode.style-5 .preview{position: relative; margin-bottom: 50px;}
.product-shortcode.style-5 .preview img{max-width: 100%; height: auto; display: block; margin: 0 auto;}
.product-shortcode.style-5 .description{height: 60px; overflow: hidden; transition: all .3s; -webkit-transition: all .3s;}
.product-shortcode.style-5 .price{transition: all .3s; -webkit-transition: all .3s;}
.product-shortcode.style-5 .shortcode-rate-wrapper{text-align: center; margin-bottom: 5px; transition: all .3s; -webkit-transition: all .3s;}
.product-shortcode.style-5:hover .shortcode-rate-wrapper{opacity: 0;}
.product-shortcode.style-5 .preview-buttons{position: absolute; left: 0; right: 0; bottom: 0; padding-top: 15px;}
.product-shortcode.style-5 .preview-buttons .button{opacity: 0; transform: translateX(-30px); -webkit-transform: translateX(-30px); transition: all .3s; -webkit-transition: all .3s;}
.product-shortcode.style-5 .preview-buttons .button:nth-child(2){transform: translateX(30px); -webkit-transform: translateX(30px);}
.product-shortcode.style-5 .swiper-button-prev{transform: translateX(-100%); -webkit-transform: translateX(-100%);}
.product-shortcode.style-5 .swiper-button-next{transform: translateX(100%); -webkit-transform: translateX(100%);}
.product-shortcode.style-5:hover .preview-buttons .button{opacity: 1; transform: translateX(0); -webkit-transform: translateX(0);}
.product-shortcode.style-5:hover .swiper-button-prev, .product-shortcode.style-5:hover .swiper-button-next{transform: translateX(0%); -webkit-transform: translateX(0%);}
.product-shortcode.style-5 .content-animate{transition: all .3s; -webkit-transition: all .3s; position: relative;}
.product-shortcode.style-5:hover .content-animate{transform: translateY(-50px); -webkit-transform: translateY(-50px);}
.product-shortcode.style-5 .icons{position: absolute; left: 0; right: 0; text-align: center; top: 10px; opacity: 0; transition: all .3s; -webkit-transition: all .3s; z-index: 3;}
.product-shortcode.style-5:hover .icons{top: 0; opacity: 1;}
/**/
.product-shortcode.style-5.small{padding-top: 50px; padding-bottom: 25px; border: 1px #eee solid;}
.product-shortcode.style-5.small .product-label{left: 20px; top: 20px;}
.product-shortcode.style-5.small .preview{margin-bottom: 30px;}
.product-shortcode.style-5.small:hover .description{opacity: 0;}
.product-shortcode.style-5.small:hover .price{opacity: 0;}
.product-shortcode.style-5.small:hover .title{transform: translateY(-15px); -webkit-transform: translateY(-15px);}
.product-shortcode.style-5.small .preview-buttons .button{float: left; width: 50%; border-radius: 0; -webkit-border-radius: 0; margin: 0;}
.product-shortcode.style-5.small .preview-buttons .button:before{display: none;}
.product-shortcode.style-5.small .preview-buttons .button .text{padding-left: 0; padding-right: 0;}
.product-shortcode.style-5.small .icons{top: auto; bottom: 50px;}
.product-shortcode.style-5.small:hover .icons{bottom: 80px; opacity: 1;}
/*shortcode 6*/
.product-shortcode.style-6{text-align: center; padding: 50px 30px; background: #fff; border: 1px #eee solid; overflow: hidden;}
.product-shortcode.style-6 .content{max-width: 315px; margin: 0 auto;}
.product-shortcode.style-6 .title{text-transform: uppercase; margin-bottom: 10px; position: relative; z-index: 1;}
.product-shortcode.style-6 .description{margin-bottom: 20px; height: 60px; overflow: hidden; position: relative; z-index: 1;}
.product-shortcode.style-6 .preview{margin-bottom: 40px;}
.product-shortcode.style-6 .preview img {max-width: 100%; height: auto; display: block; margin: 0 auto;}
.product-shortcode.style-6 .price{text-transform: uppercase; position: relative; z-index: 1;}
.product-shortcode.style-6:after{background: rgba(0,0,0,.8); position: absolute; left: 0; top: 0; width: 100%; height: 100%; content: ""; transition: all .3s;
    -webkit-transition: all .3s; opacity: 0;}
    .product-shortcode.style-6:hover:after{opacity: 1;}
.product-shortcode.style-6 .preview-button{position: absolute; left: 30px; right: 30px; text-align: center; top: 50%; margin-top: 15px; z-index: 1; opacity: 0; transform: scale(.7); -webkit-transform: scale(.7); transition: all .3s; -webkit-transition: all .3s;}
.product-shortcode.style-6:hover .preview-button{opacity: 1; transform: scale(1); -webkit-transform: scale(1);}
/*shortcode 7*/
.product-shortcode.style-7{text-align: center; padding: 20px 15px 0 15px; background: #fff; border-left: 1px #eee solid; border-right: 1px #eee solid; overflow: hidden;}
.product-shortcode.style-7 .title{text-transform: uppercase; margin-bottom: 10px; transition: all .3s; -webkit-transition: all .3s; }
.product-shortcode.style-7 .title > *{white-space: nowrap; overflow: hidden; text-overflow: ellipsis;}
.product-shortcode.style-7:hover .title{transform: translateY(-20px); -webkit-transform: translateY(-20px);}
.product-shortcode.style-7 .preview{margin-bottom: 15px; position: relative;}
.product-shortcode.style-7 .preview img {max-width: 100%; height: auto; display: block; margin: 0 auto;}
.product-shortcode.style-7 .price{transition: all .3s; -webkit-transition: all .3s; opacity: 1;}
.product-shortcode.style-7:hover .price{opacity: 0;}
.product-shortcode.style-7 .icons{position: absolute; left: 0; right: 0; bottom: 0; opacity: 0; transition: all .3s; -webkit-transition: all .3s;}
.product-shortcode.style-7:hover .icons{opacity: 1;}
/*shortcode 8*/
.product-shortcode.style-8{text-align: center;}
.product-shortcode.style-8 .content{max-width: 200px; margin: 0 auto;}
.product-shortcode.style-8 .preview{margin-bottom: 20px; position: relative; display: block;}
.product-shortcode.style-8 .preview img{display: block; max-width: 100%; height: auto; margin: 0 auto; transition: all .3s; -webkit-transition: all .3s;}
.product-shortcode.style-8 .preview img:nth-child(2){position: absolute; max-width: 100%; max-height: 100%; left: 50%; top: 50%; transform: translateX(-50%) translateY(-50%) scale(1.2); -webkit-transform: translateX(-50%) translateY(-50%) scale(1.2); opacity: 0;}
.product-shortcode.style-8:hover .preview img:nth-child(1){opacity: 0; transform: scale(.7); -webkit-transform: scale(.7);}
.product-shortcode.style-8:hover .preview img:nth-child(2){opacity: 1; transform: translateX(-50%) translateY(-50%) scale(1); -webkit-transform: translateX(-50%) translateY(-50%) scale(1);}
.product-shortcode.style-8 .title{margin-bottom: 5px;}
.product-shortcode.style-8 .description{margin-bottom: 15px;}
.product-shortcode.style-8 .price{margin-bottom: 20px;}
/*shortcode 9*/
.product-shortcode.style-9{text-align: center; border: 1px #eee solid;}
.product-shortcode.style-9 .preview{border-bottom: 1px #eee solid;}
.product-shortcode.style-9 .preview img{display: block; max-width: 100%; margin: 0 auto; height: auto; -webkit-filter: grayscale(100%); filter: grayscale(100%); transition: all .3s; -webkit-transition: all .3s;}
.product-shortcode.style-9:hover .preview img{-webkit-filter: grayscale(0%); filter: grayscale(0%);}
.product-shortcode.style-9 .title{margin-bottom: 10px; max-width: 250px; margin-left: auto; margin-right: auto; padding: 0 15px; transition: all .3s; -webkit-transition: all .3s;}
.product-shortcode.style-9 .description{max-width: 250px; margin-left: auto; margin-right: auto; padding: 0 15px; transition: all .3s; -webkit-transition: all .3s;}
.product-shortcode.style-9 .content{position: relative; margin: 0 -1px -1px -1px; background: #fff; padding-top: 25px; min-height: 116px;}
.product-shortcode.style-9 .follow{position: absolute; left: 0; right: 0; top: 25%; transition: all .3s; -webkit-transition: all .3s; opacity: 0;}
.product-shortcode.style-9:hover .follow{top: 50%; opacity: 1;}
.product-shortcode.style-9:hover .title, .product-shortcode.style-9:hover .description{opacity: 0; transform: scale(.7); -webkit-transform: scale(.7);}

/*shortcode 10*/
.product-shortcode.style-10{text-align: left; padding: 60px 30px 30px 30px; background: #fff; border-left: 1px #eee solid; border-right: 1px #eee solid;}
.product-shortcode.style-10 .content{max-width: 305px; margin: 0 auto;}
.product-shortcode.style-10 .swiper-container{margin-left: -30px; margin-right: -30px;}
.product-shortcode.style-10 .title{margin-bottom: 10px; text-transform: uppercase; transition: all .3s; -webkit-transition: all .3s;}
.product-shortcode.style-10 .preview{position: relative; margin-bottom: 50px;}
.product-shortcode.style-10 .preview img{max-width: 100%; height: auto; display: block; margin: 0 auto;}
.product-shortcode.style-10 .description{height: 90px; overflow: hidden; transition: all .3s; -webkit-transition: all .3s;}
.product-shortcode.style-10 .price{transition: all .3s; -webkit-transition: all .3s;}
.product-shortcode.style-10 .shortcode-rate-wrapper{text-align: center; margin-bottom: 5px; transition: all .3s; -webkit-transition: all .3s;}
.product-shortcode.style-10 .preview-buttons{position: absolute; left: 0; right: 0; bottom: 0; padding-top: 15px;}
.product-shortcode.style-10 .preview-buttons .button{opacity: 0; transform: translateX(-30px); -webkit-transform: translateX(-30px); transition: all .3s; -webkit-transition: all .3s;}
.product-shortcode.style-10 .preview-buttons .button:nth-child(2){transform: translateX(30px); -webkit-transform: translateX(30px);}
.product-shortcode.style-10 .swiper-textdesc{position: absolute; bottom: 0; text-align: center; width: 100%; color: #fff; padding: 5px; background-color: rgba(0,0,0,.5);}
.product-shortcode.style-10 .swiper-button-prev{background-color: rgba(255,255,255,.25); transform: translateX(-100%); -webkit-transform: translateX(-100%);}
.product-shortcode.style-10 .swiper-button-next{background-color: rgba(255,255,255,.25); transform: translateX(100%); -webkit-transform: translateX(100%);}
.product-shortcode.style-10:hover .swiper-button-prev, .product-shortcode.style-10:hover .swiper-button-next{transform: translateX(0%); -webkit-transform: translateX(0%);}
.product-shortcode.style-10 .content-animate{transition: all .3s; -webkit-transition: all .3s; position: relative;}
.product-shortcode.style-10 .icons{position: absolute; left: 0; right: 0; text-align: center; top: 10px; opacity: 0; transition: all .3s; -webkit-transition: all .3s; z-index: 3;}
/**/
.product-shortcode.style-10.small{padding-top: 50px; padding-bottom: 25px; border: 1px #eee solid;}
.product-shortcode.style-10.small .product-label{left: 0px; top: 20px; font-size: 13px; border-radius: 0; -webkit-border-radius: 0;}
.product-shortcode.style-10.small .preview{margin-bottom: 30px;}
.product-shortcode.style-10.small .preview-buttons .button{float: left; width: 50%; border-radius: 0; -webkit-border-radius: 0; margin: 0;}
.product-shortcode.style-10.small .preview-buttons .button:before{display: none;}
.product-shortcode.style-10.small .preview-buttons .button .text{padding-left: 0; padding-right: 0;}
.product-shortcode.style-10.small .icons{top: auto; bottom: 50px;}
/*shortcode 1 float content*/
@media (min-width: 992px) {
	.product-shortcode.style-1.float{min-height: 428px; padding-left: 260px; padding-top: 140px;}
	.product-shortcode.style-1.float .preview{position: absolute; left: 30px; top: 50%; margin-top: -100px;}
	.product-shortcode.style-1.float .title{height: auto;}
}

 
 
 
 .banner-shortcode.text-center .valign-middle-content{margin: 0 auto;}
/*shortcode 1*/
.banner-shortcode.style-1{padding-bottom: 40%; position: relative; overflow: hidden;}
.banner-shortcode.style-1 .background{background-position: left center; background-size: cover; position: absolute; left: 0; top: 0; width: 100%; height: 100%;}
.banner-shortcode.style-1 .banner-title{font-size: 30px; line-height: 32px; margin-bottom: 10px; text-transform: uppercase;}
@media (min-width: 768px) {
	.banner-shortcode.style-1 .description{position: absolute; height: 100%; width: 35%; text-align: center; right: 15px; background: none!important;}
}
/*Phones (<768px)*/
@media (max-width: 767px) {
	.banner-shortcode.style-1{padding-bottom: 0;}
	.banner-shortcode.style-1 .background{position: relative; padding-bottom: 40%;}
	.banner-shortcode.style-1 .description{padding: 20px 15px; background: #2c2c2c; text-align: center; border-top: 1px #555 solid; display: block;}
}

/*shortcode 2*/
.banner-shortcode.style-2{position: relative; overflow: hidden; text-align: center; max-width: 270px;}
.banner-shortcode.style-2 .content{padding-bottom: 155%;}
.banner-shortcode.style-2 .background{background-position: center bottom; background-size: cover; position: absolute; left: 0; top: 0; width: 100%; height: 100%;}
.banner-shortcode.style-2 .banner-title{font-size: 20px; line-height: 32px; text-transform: uppercase;}
.banner-shortcode.style-2 .description{position: absolute; left: 15px; right: 15px; top: 15px; height: 30%;}

/*shortcode 3*/
.banner-shortcode.style-3{background-size: cover; background-position: right top; position: relative;}
.banner-shortcode.style-3 .angle-left{width: 0; height: 0; border-style: solid; border-width: 15px 15px 15px 0; border-color: transparent #fff transparent transparent; position: absolute; right: 0; top: 50%; margin-top: -7px;}
.banner-shortcode.style-3 .angle-right{width: 0; height: 0; border-style: solid; border-width: 15px 0 15px 15px; border-color: transparent transparent transparent #fff; position: absolute; left: 0; top: 50%; margin-top: -7px;}
.banner-shortcode.style-3 .valign-middle-cell{height: 480px; padding: 30px 40px; display: table-cell; width: 10000px; vertical-align: middle;}
.banner-shortcode.style-3 .valign-middle-content{max-width: 390px;}
.banner-shortcode.style-3 .slider-product-preview+.valign-middle-content{max-width: 50%;}
/*Desktops (>=1200px)*/
@media (min-width: 1200px) {
	.banner-shortcode.style-3.wide .valign-middle{padding-left: 100px; padding-right: 100px;}
}
/*Phones (<768px)*/
@media (max-width: 767px) {
	.banner-shortcode.style-3 .valign-middle-cell{height: 0; padding-left: 30px; padding-right: 30px;}
	.banner-shortcode.style-3 .slider-product-preview+.valign-middle-content{max-width: 100%;}
}

/*shortcode 4*/
.banner-shortcode.style-4{background-size: cover; background-position: center top; position: relative;}
.banner-shortcode.style-4 .valign-middle-cell{height: 650px; padding: 30px 15px; display: table-cell; vertical-align: middle; width: 10000px;}
.banner-shortcode.style-4 .valign-middle-content{max-width: 390px; margin: 0 auto;}
/* Tablets (>=768px)*/
@media (max-width: 991px) {
	.banner-shortcode.style-4 .valign-middle-cell{height: 0;}
}

/*shortcode 5*/
.banner-shortcode.style-5{background-size: cover; background-position: center top; position: relative;}
.banner-shortcode.style-5 .valign-middle{min-height: 225px; padding: 30px 50px;}
.banner-shortcode.style-5 .valign-middle-content{max-width: 260px;}

/*shortcode 6*/
.banner-shortcode.style-6{padding: 50px 30px 50px 15px; background: #fff;}
.banner-shortcode.style-6:after{display: block; content: ""; clear: both;}
.banner-shortcode.style-6 .image{float: left; max-width: 250px; width: 100%; height: auto;}
.banner-shortcode.style-6 .content{margin-left: 270px;}
.banner-shortcode.style-6 .cell-view{height: 250px;}
/*Desktops (>=1200px)*/
@media (max-width: 1199px) {
	.banner-shortcode.style-6 .image{max-width: 190px;}
	.banner-shortcode.style-6 .content{margin-left: 210px;}
}
/*Phones (<768px)*/
@media (max-width: 767px) {
	.banner-shortcode.style-6{padding: 30px 15px;}
	.banner-shortcode.style-6 .image{float: none; margin: 0 auto 30px auto; display: block;}
	.banner-shortcode.style-6 .content{margin-left: 0;}
	.banner-shortcode.style-6 .cell-view{height: 0;}
}



.slider-wrapper{position: relative;}
.slider-product-preview{position: absolute; width: 50%; right: 15px; top: 0; top: 80px; bottom: 80px;}
.slider-product-preview > img{position: absolute; left: 50%; top: 50%; transform: translateX(-50%) translateY(-50%); -webkit-transform: translateX(-50%) translateY(-50%); max-width: 100%; max-height: 100%;}
.slider-product-preview.align-left{left: 15px; right: auto;}
.product-preview-shortcode{height: 100%; position: relative;}
.product-preview-shortcode .preview{position: absolute; left: 0; top: 0; right: 100px; bottom: 0;}
.slider-product-preview.align-left .product-preview-shortcode .preview{right: 0; left: 100px;}
.product-preview-shortcode .preview .entry{background-size: contain; background-repeat: no-repeat; background-position: center center; opacity: 0; transition: all .5s; -webkit-transition: all .5s;}
.product-preview-shortcode .preview .entry.active{opacity: 1;}
.product-preview-shortcode .sidebar{position: absolute; top: 0; right: 0; height: 100%;}
.slider-product-preview.align-left .product-preview-shortcode .sidebar{/*right: auto; left: 0;*/}
.product-preview-shortcode .sidebar .entry{width: 70px; height: 70px; border-radius: 50%; -webkit-border-radius: 50%; border: 1px #eee solid; cursor: pointer; margin-bottom: 20px; transition: all .3s; -webkit-transition: all .3s;}
.product-preview-shortcode.light .sidebar .entry{background: transparent;}
.product-preview-shortcode .sidebar .entry:last-child{margin-bottom: 0;}
.product-preview-shortcode .sidebar .entry img{display: block; max-width: 100%; height: auto;}
.product-preview-shortcode .sidebar .entry:hover{border-color: #b8cd06;}
.product-preview-shortcode .sidebar .entry.active{border-color: #b8cd06; background: #b8cd06;}
.product-preview-shortcode.light .sidebar .entry{border-color: rgba(255,255,255,.5);}
.product-preview-shortcode.light .sidebar .entry:hover{border-color: #fff;}
.product-preview-shortcode.light .sidebar .entry.active{border-color: #fff; background: #fff;}
.product-preview-shortcode.light-green .sidebar .entry{border-color: rgba(255,255,255,.2);}
.product-preview-shortcode.light-green .sidebar .entry:hover{border-color: #b8cd06;}
.product-preview-shortcode.light-green .sidebar .entry.active{border-color: #b8cd06; background: #b8cd06;}
/*Phones (<768px)*/
@media (max-width: 767px) {
	.slider-product-preview, .slider-product-preview.align-left{position: relative; left: auto; right: auto; top: auto; bottom: auto; height: 300px; margin: 0 auto; width: auto;}
	.product-preview-shortcode .preview{right: 80px;}
	.slider-product-preview.align-left .product-preview-shortcode .preview{right: 0; left: 80px;}
	.product-preview-shortcode .sidebar .entry{width: 50px; height: 50px;}
}



#vote {
    text-align: center;
}
#vote #voteform .column {
    position: relative;
}
#vote #form {
    background-color: #fff;
    padding: 90px 0;
}
#vote #voteform .column.four:after,
#vote #voteform .column.six:after,
#vote #voteform .column.eight:after,
#vote #voteform .column.ten:after {
    content: "*";
    color: #d3145a;
    position: absolute;
    pointer-events: none;
    top: 25px;
    z-index: 10;
    padding: 4px 0px;
    right: 25px;
    line-height: 48px;
    font-size: 20px;
    transition: all 0.2s;
    opacity: 0;
}
#vote #voteform .column.four.error:after,
#vote #voteform .column.six.error:after,
#vote #voteform .column.eight.error:after,
#vote #voteform .column.ten.error:after {
    opacity: 1;
}
#vote #voteform .column.twelve:after {
    content: "*";
    color: #d3145a;
    position: absolute;
    pointer-events: none;
    top: 25px;
    z-index: 10;
    padding: 4px 0px;
    right: 25px;
    line-height: 48px;
    font-size: 20px;
    transition: all 0.2s;
    opacity: 0;
}
#vote #voteform .column.twelve.error:after {
    opacity: 1;
}
#vote input[type="text"] {
    width: 100%;
    background-color: #f3f3f3;
    height: 48px;
    border: 1px solid #e6e6e6;
    margin-bottom: 30px;
}
#vote input[type="text"]:focus, #vote textarea:focus {
    border: 1px solid #d3145a;
    background-color: #ffffff;
}
#vote input[type="submit"], #comment input[type="submit"] {
    display: inline-block;
    width: 100%;
    padding: 19px 48px;
    background-color: #fff;
    color: #444;
    text-transform: uppercase;
    margin: 30px auto 0 auto;
}
#vote input[type="submit"]:hover {
    background-color: #d3145a;
    color: #fff;
}
#vote textarea {
    background-color: #f3f3f3;
    border: 1px solid #e6e6e6;
    width: 100%;
    padding: 10px 15px;
}
#vote .column > span, #vote .column > a {
    color: #808080;
    margin: 15px 0 0 0;
    display: block;
}
#vote .column > a:hover {
    color: #d3145a;
}
#vote i {
    font-size: 42px;
    color: #d3145a;
}
#vote .row.icons {
    margin-top: 80px;
}
#vote .column .captcha_image {
    float: right; width: 140px; text-align: right;
    border:1px #d6d6d6 solid; border-radius: 3px; 
}
#vote .column .captcha_input {
    float: left; width: calc(100% - 148px);
}



.single .hero-inner { text-align: left; }
.single .hero-single .meta { text-align: left; padding-left: 15px; }

#header-section.fixed-menu { background-color: #000; }





@media screen and (orientation:portrait) {
	#heroindex {
		background-image: url(../images/2022/index_2560p.png);
	}
}
@media screen and (orientation:landscape) {
	#heroindex {
		background-image: url(../images/2022/index_2560.png);
	}
}
.hero-single {
    background-image: url(../images/2022/visionfill.png);
}
.hero-single .overlay { 
    background: rgba(0, 0, 0, 0.5);
}

/*
#heroindex {
	background-image: url(../images/_purebg.jpg);
}
*/

.d-none{display:none!important}.d-inline{display:inline!important}.d-inline-block{display:inline-block!important}.d-block{display:block!important}
@media (min-width:768px){.d-md-block{display:block!important}.d-md-none{display:none!important}}



header nav ul li ul { margin-top: 0; }
header nav ul li ul li { background-color: #dddede!important; padding: 0 10px; }
header nav ul li ul li a { color: #343434; padding: 0; text-align: center; border-top: 1px #ffffff solid; }
header nav ul li ul li:first-child a { border-top: 0; }
header nav ul li ul li a:hover { color: #000000!important; }

#header-section.altmenu nav ul li ul li a { color: #343434; }

.bg-black { background-color: #000; }
body.single #header-section { background-color: #000; }
h3.section-title { color: #9c9e9f; }
h3.section-title:after {
    position: relative;
    display: block;
    content: "";
    height: .3px;
    width: 100px;
    margin: 10px auto 50px;
    background: #9c9e9f;
}

#action_container { display: flex; flex-wrap: wrap; margin-left: -20px; margin-right: -20px; }
#action_container > * { position: relative; width: 100%; padding-right: 20px; padding-left: 20px; }
#action_container > * { margin-bottom: 40px; padding-bottom: 20px; /*border-bottom: 1px #e1e1e1 solid; border-right: 1px #e1e1e1 solid;*/ }

#action_container > * { max-width: 100%; flex: 0 0 100%; }
@media (min-width: 576px){
	#action_container > * { max-width: 50%; flex: 0 0 50%; }
}
@media (min-width: 768px){
	#action_container > * { max-width: 33.3333%; flex: 0 0 33.3333%; }
	#action_container > *:nth-of-type(3n) { /*border-right: 0;*/ }
}

#action_container .action_title { font-size: 15px; line-height: 1.4; font-weight: 600; text-align: justify; }
#action_container .action_title a { color: #000000; }
#action_container .action_title a:hover { color: #ff0000; }
#action_container .action_shortcontent { font-size: 13px; line-height: 1.4; margin-top: 10px; margin-bottom: 30px; text-align: justify; }
#action_container .action_created { position: absolute; bottom: 0; font-size: 13px; line-height: 1.4; margin-top: 10px; }

.md-action__btn * { -webkit-box-sizing: border-box; box-sizing: border-box; text-decoration: none; list-style: none; outline: none; margin: 0; padding: 0; -webkit-transition: none; -o-transition: none; transition: none; line-height: 1; }
.md-action__btn {
    display: -webkit-box; display: -ms-flexbox; display: flex; -ms-flex-align: center; align-items: center;
    -webkit-transition-property: background, border-color, color, line-height; transition-property: background, border-color, color, line-height; -webkit-transition-duration: 0.5s; transition-duration: 0.5s;
    color: #000000; 
}
.md-action__btn:active, .md-action__btn:focus, .md-action__btn:hover { color: #ff0000; }
.md-action__btn > span:nth-child(1) { display: block; font-size: 13px; line-height: 1; }
.md-action__btn > span:nth-child(2) { height: 13px; margin-left: 4px; }
.md-action__btn > span:nth-child(2) svg { width: 100%; height: 100%; }
.md-action__btn > span:nth-child(2) svg * { fill: #000000; transition: fill 0.5s ease; }
.md-action__btn:active > span:nth-child(2) svg *,
.md-action__btn:focus > span:nth-child(2) svg *,
.md-action__btn:hover > span:nth-child(2) svg * { fill: #ff0000; }



.pagination-custom * { -webkit-box-sizing: border-box; box-sizing: border-box; text-decoration: none; list-style: none; outline: none; margin: 0; padding: 0; -webkit-transition: none; -o-transition: none; transition: none; line-height: 1; }
.pagination-custom { margin: 35px 0 25px 0; text-align: center; }

.pagination-custom .page {
  display: inline-block;
  /*float: left;*/
  margin: 0 3px 0 0;
  background-color: #ffffff;
  color: #bbbbbb;
  font-size: 22px;
  font-weight: 600;
  padding: 4px 4px;
  text-decoration: none;
  text-transform: uppercase;
  
  -webkit-transition: 0.3s all linear;
  -moz-transition: 0.3s all linear;
  transition: 0.3s all linear;
}


h2.page-title { font-size: 24px; line-height: 34px; font-weight: 500; letter-spacing: -.6px; }

.contentDate { margin-bottom: 46px; color: #cccccc; font-size: 13px; }
ul.breadcrumb-custom { font-size:13px; display: inline-block; margin: 0; padding: 0; color: #cccccc; }
ul.breadcrumb-custom li { display: inline; color: #cccccc; }
ul.breadcrumb-custom li a { font-size: 13px; color: #cccccc; }
ul.breadcrumb-custom li:after { content: "/"; margin: 0 5px 0 7px; }
ul.breadcrumb-custom li:last-child:after { display: none; }
ul.breadcrumb-custom li a:hover { font-size: 13px; color: #000000; }




.pagination-custom .page:hover { color: #000000; }
.pagination-custom .page.current,
.pagination-custom a.page:hover { color: #000000; }

.pagination-custom a.page.disabled { color: #dddddd; }

.pagination-custom .page-prev, .pagination-custom .page-next { height: 24px; }
.pagination-custom .page-prev svg, .pagination-custom .page-next svg { width: 100%; height: 100%; fill: #bbbbbb; transition: fill 0.5s ease; }
.pagination-custom .page-prev:active svg, 
.pagination-custom .page-prev:focus svg, 
.pagination-custom .page-prev:hover svg, 
.pagination-custom .page-next:active svg,
.pagination-custom .page-next:focus svg,
.pagination-custom .page-next:hover svg { fill: #000000; }

.pagination-custom .page-prev.disabled svg, .pagination-custom .page-next.disabled svg { fill: #dddddd; }



.d-inline-block { display: inline-block }



#contact { text-align: left; }
#contact input[type="text"] { margin-bottom: 10px; height: 38px; }
#contact textarea { margin-bottom: 10px; }
#contact input[type="submit"] { margin-top: 0; height: 38px; padding: 3px 10px; font-weight: 500; font-size: 13px; background-color: #dddede; }
#contact #form { font-size: 13px; padding: 0; }
#contact .form-label { display: inline-block; width: 40px; float:left; line-height: 35px; }
#contact .form-content {display: inline-block; width: calc(100% - 45px); float: right; }
#contact .column .captcha_image { width: 110px; }
#contact .column .captcha_input { width: calc(100% - 118px); }
#contact #forms .column { margin-bottom: 0!important; }
#contact #forms input#authority { margin-bottom: 0; }
@media (max-width: 575px){
  #contact #forms input#authority { margin-bottom: 15px; }
}

#contact_container { display: flex; flex-wrap: wrap; margin-left: -20px; margin-right: -20px; }
#contact_container { padding-bottom: 80px; }
#contact_container > * { position: relative; width: 100%; padding-right: 20px; padding-left: 20px; }

#contact_container > * { max-width: 100%; flex: 0 0 100%; }
@media (min-width: 576px){
	#contact_container > :nth-child(1) { max-width: 58.3333%; flex: 0 0 58.3333%; }
	#contact_container > :nth-child(2) { max-width: 41.6667%; flex: 0 0 41.6667%; align-self: flex-end; }
}
@media (min-width: 768px){
	#contact_container > :nth-child(1) { max-width: 58.3333%; flex: 0 0 58.3333%; }
	#contact_container > :nth-child(2) { max-width: 41.6667%; flex: 0 0 41.6667%; align-self: flex-end; }
}

.md-contact2__title * { -webkit-box-sizing: border-box; box-sizing: border-box; text-decoration: none; list-style: none; outline: none; margin: 0; padding: 0; -webkit-transition: none; -o-transition: none; transition: none; line-height: 1; }
.md-contact2__title {
    display: -webkit-box; display: -ms-flexbox; display: flex; -ms-flex-align: center; align-items: center;
    color: #000000; background-color: #dddede;
    padding: 12px 16px;
}
.md-contact2__title > span:nth-child(1) { height: 29px;}
.md-contact2__title > span:nth-child(1) svg { width: 100%; height: 100%; }
.md-contact2__title > span:nth-child(1) svg * { fill: #ffffff; }
.md-contact2__title > span:nth-child(2) { display: block; font-size: 28px; font-weight: 500; letter-spacing: -.6px; margin-left: 10px; }

.contact2-content { font-size: 15px; line-height: 34px; color: #232323; padding: 12px 16px 0 16px; }
.contact2-content a { font-size: 15px; color: #232323; -webkit-transition: 0.3s all linear; -moz-transition: 0.3s all linear; transition: 0.3s all linear; }
.contact2-content a:hover, .contact2-content a:active, .contact2-content a:focus { color: #ff0000; }

@media (max-width: 575px){
	.md-contact2__title { margin-top: 30px; }
}


.countdown_container_0 { margin-top: 30px; display: block; }

.countdown_container { display: flex; flex-wrap: wrap; margin-left: -0px; margin-right: -0px; align-items: center; }
.countdown_container > * { position: relative; width: 100%; padding-right: 0px; padding-left: 0px; }

.countdown_container > :nth-child(1) { height: 50px;}
.countdown_container > :nth-child(1) svg { width: 100%; height: 100%; }
.countdown_container > :nth-child(1) svg * { fill: #b794c3; }

.countdown_container > :nth-child(1) { max-width: 15%; flex: 0 0 15%; }
.countdown_container > :nth-child(2) { max-width: 85%; flex: 0 0 85%; }

.countdown-title { font-size: 18px; line-height: 28px; color: #000000; padding-left: 5px; }
.countdown-content { font-size: 18px; line-height: 28px; color: #898989; padding-left: 5px; }
.countdown-content .countdown span.count { font-size: 18px; line-height: 28px; color: #b794c3; }

a .countdown_container > :nth-child(1) svg * { fill: #b794c3; }
a:hover .countdown_container > :nth-child(1) svg *, 
a:active .countdown_container > :nth-child(1) svg *, 
a:focus .countdown_container > :nth-child(1) svg * { fill: #b794c3; }

.countdown_container_0.disabled { cursor: default; }
.countdown_container_0.disabled .countdown_container > :nth-child(1) svg * { fill: #a1a1a1!important; }

a .countdown-title { color: #000000; -webkit-transition: 0.3s all linear; -moz-transition: 0.3s all linear; transition: 0.3s all linear; }
a:hover .countdown-title, a:active .countdown-title, a:focus .countdown-title { color: #000000; }

a .countdown-content { color: #898989; -webkit-transition: 0.3s all linear; -moz-transition: 0.3s all linear; transition: 0.3s all linear; }
a:hover .countdown-content, a:active .countdown-content, a:focus .countdown-content { color: #b794c3; }
.countdown_container_0.disabled:hover .countdown-content, .countdown_container_0.disabled:active .countdown-content, .countdown_container_0.disabled:focus .countdown-content { color: #898989; }

a .countdown-content .countdown span.count { color: #b794c3; -webkit-transition: 0.3s all linear; -moz-transition: 0.3s all linear; transition: 0.3s all linear; }
a:hover .countdown-content .countdown span.count, a:active .countdown-content .countdown span.count, a:focus .countdown-content .countdown span.count { color: #b794c3; }



h1.logo img { width: 160px; }
@media only screen and (min-width: 320px) and (max-width: 767px){
    h1.logo {
        margin-top: 16px;
    }
}


.video_wrapper {
    position: relative;
    padding-bottom: 56.25%;
  }
  .video_wrapper iframe, .video_wrapper img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
  .video_wrapper iframe .html5-video-player .video-click-tracking, .html5-video-player .video-stream:before {
    content: "";
    top: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 100%;
    opacity: .74;
    background-blend-mode: hard-light;
    background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, .6)), to(rgba(0, 0, 0, .6)));
    background-image: linear-gradient( 180deg, rgba(0, 0, 0, .6), rgba(0, 0, 0, .6));
  }
  
  
  
.mfp-container { background-color: rgba(0,0,0,.2); }