/*--------------------------------------------------------------
Reset
--------------------------------------------------------------*/
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
font,
ins,
kbd,
q,
s,
samp,
small,
strike,
sub,
sup,
tt,
var,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
figure {
  border: 0;
  font-family: inherit;
  font-size: 100%;
  font-style: inherit;
  font-weight: inherit;
  margin: 0;
  outline: 0;
  padding: 0;
  vertical-align: baseline;
}
html {
  overflow-y: scroll;
  /* Keeps page centered in all browsers regardless of content height */
  -webkit-text-size-adjust: 100%;
  /* Prevents iOS text size adjust after orientation change, without disabling user zoom */
  -ms-text-size-adjust: 100%;
  /* www.456bereastreet.com/archive/201012/controlling_text_size_in_safari_for_ios_without_disabling_user_zoom/ */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
*,
*:before,
*:after {
  /* apply a natural box layout model to all elements; see http://www.paulirish.com/2012/box-sizing-border-box-ftw/ */
  -webkit-box-sizing: border-box;
  /* Not needed for modern webkit but still used by Blackberry Browser 7.0; see http://caniuse.com/#search=box-sizing */
  -moz-box-sizing: border-box;
  /* Still needed for Firefox 28; see http://caniuse.com/#search=box-sizing */
  box-sizing: border-box;
}
body {
  overflow-x: hidden;
}
article,
aside,
details,
figcaption,
figure,
footer,
header,
main,
nav,
section {
  display: block;
}
table {
  /* tables still need 'cellspacing="0"' in the markup */
  border-collapse: separate;
  border-spacing: 0;
  margin-bottom: 20px;
}
dl {
  margin-bottom: 20px;
}
caption,
th,
td {
  font-weight: normal;
  text-align: left;
  padding: 10px 0;
}
blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
}
blockquote,
q {
  quotes: "" "";
}
a:focus {
  outline: none;
}
a:hover,
a:active {
  outline: 0;
}
a img {
  border: 0;
}
@media screen and (min-width: 38.75em) {
  ul,
  ol {
    margin-left: 0;
  }
  li > ul,
  li > ol,
  blockquote > ul,
  blockquote > ol {
    margin-left: 1.3333em;
  }
}
.entry-content,
.entry-summary,
.page-content,
.comment-content {
  -webkit-hyphens: none;
  -moz-hyphens: none;
  -ms-hyphens: none;
  hyphens: none;
  word-wrap: break-word;
}
/*--------------------------------------------
Initial Setup
----------------------------------------------*/
a {
  text-decoration: none;
}
input:focus,
textarea:focus {
  outline: none;
}
img,
video,
figure {
  max-width: 100%;
  vertical-align: top;
  height: auto;
}
audio,
canvas,
video {
  display: inline;
  zoom: 1;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
}
body {
  line-height: 1.6;
}
p {
  margin-bottom: 1.5em;
}
select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: url('../images/arrow-down.png') center right no-repeat;
  display: inline-block;
  padding: 15px 25px;
  margin-bottom: 20px;
  vertical-align: top;
  width: 100%;
  max-width: 100%;
  border: 1px solid #DDDDDD;
  line-height: 1.6em;
  border-radius: 0;
}
select:focus {
  border-color: #999;
  outline: none;
}
.sidebar select {
  color: #999;
}
.sidebar select:focus {
  color: #111;
}
[class*="col-"] {
  width: 100%;
  vertical-align: top;
  padding: 0 15px;
}
.top {
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
}
.middle {
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}
.bottom {
  -webkit-align-items: flex-end;
  -ms-flex-align: end;
  align-items: flex-end;
}
.start {
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  text-align: start;
}
.center {
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.end {
  -webkit-justify-content: flex-end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  text-align: end;
}
.around {
  -webkit-justify-content: space-around;
  -ms-flex-pack: distribute;
  justify-content: space-around;
}
.between {
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.first {
  -webkit-order: -1;
  -ms-flex-order: -1;
  order: -1;
}
.last {
  -webkit-order: 1;
  -ms-flex-order: 1;
  order: 1;
}
@media (max-width: 47.9375rem) {
  .hidden-xs {
    display: none !important;
  }
}
@media (min-width: 48rem) and (max-width: 61.9375rem) {
  .hidden-sm {
    display: none !important;
  }
}
@media (min-width: 62rem) and (max-width: 74.9375rem) {
  .hidden-md {
    display: none !important;
  }
}
@media (min-width: 75rem) {
  .hidden-lg {
    display: none !important;
  }
}
.container {
  max-width: 21.875rem;
  margin-right: auto;
  margin-left: auto;
  padding-left: 0.9375rem;
  padding-right: 0.9375rem;
}
.row {
  box-sizing: border-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex: 0 1 auto;
  -ms-flex: 0 1 auto;
  flex: 0 1 auto;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-left: -0.9375rem;
  margin-right: -0.9375rem;
}
.row.reverse {
  -webkit-flex-direction: row-reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.col.reverse {
  -webkit-flex-direction: column-reverse;
  -ms-flex-direction: column-reverse;
  flex-direction: column-reverse;
}
.col-xs,
.col-xs-1,
.col-xs-2,
.col-xs-3,
.col-xs-4,
.col-xs-5,
.col-xs-6,
.col-xs-7,
.col-xs-8,
.col-xs-9,
.col-xs-10,
.col-xs-11,
.col-xs-12,
.col-xs-offset-1,
.col-xs-offset-2,
.col-xs-offset-3,
.col-xs-offset-4,
.col-xs-offset-5,
.col-xs-offset-6,
.col-xs-offset-7,
.col-xs-offset-8,
.col-xs-offset-9,
.col-xs-offset-10,
.col-xs-offset-11,
.col-xs-offset-12 {
  box-sizing: border-box;
  -webkit-flex: 0 0 auto;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  padding-right: 0.9375rem;
  padding-left: 0.9375rem;
}
.col-xs {
  -webkit-flex-grow: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  -webkit-flex-basis: 0;
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  max-width: 100%;
}
.col-xs-1 {
  -webkit-flex-basis: 8.333%;
  -ms-flex-preferred-size: 8.333%;
  flex-basis: 8.333%;
  max-width: 8.333%;
}
.col-xs-2 {
  -webkit-flex-basis: 16.667%;
  -ms-flex-preferred-size: 16.667%;
  flex-basis: 16.667%;
  max-width: 16.667%;
}
.col-xs-3 {
  -webkit-flex-basis: 25%;
  -ms-flex-preferred-size: 25%;
  flex-basis: 25%;
  max-width: 25%;
}
.col-xs-4 {
  -webkit-flex-basis: 33.333%;
  -ms-flex-preferred-size: 33.333%;
  flex-basis: 33.333%;
  max-width: 33.333%;
}
.col-xs-5 {
  -webkit-flex-basis: 41.667%;
  -ms-flex-preferred-size: 41.667%;
  flex-basis: 41.667%;
  max-width: 41.667%;
}
.col-xs-6 {
  -webkit-flex-basis: 50%;
  -ms-flex-preferred-size: 50%;
  flex-basis: 50%;
  max-width: 50%;
}
.col-xs-7 {
  -webkit-flex-basis: 58.333%;
  -ms-flex-preferred-size: 58.333%;
  flex-basis: 58.333%;
  max-width: 58.333%;
}
.col-xs-8 {
  -webkit-flex-basis: 66.667%;
  -ms-flex-preferred-size: 66.667%;
  flex-basis: 66.667%;
  max-width: 66.667%;
}
.col-xs-9 {
  -webkit-flex-basis: 75%;
  -ms-flex-preferred-size: 75%;
  flex-basis: 75%;
  max-width: 75%;
}
.col-xs-10 {
  -webkit-flex-basis: 83.333%;
  -ms-flex-preferred-size: 83.333%;
  flex-basis: 83.333%;
  max-width: 83.333%;
}
.col-xs-11 {
  -webkit-flex-basis: 91.667%;
  -ms-flex-preferred-size: 91.667%;
  flex-basis: 91.667%;
  max-width: 91.667%;
}
.col-xs-12 {
  -webkit-flex-basis: 100%;
  -ms-flex-preferred-size: 100%;
  flex-basis: 100%;
  max-width: 100%;
}
.col-xs-offset-1 {
  margin-left: 8.333%;
}
.col-xs-offset-2 {
  margin-left: 16.667%;
}
.col-xs-offset-3 {
  margin-left: 25%;
}
.col-xs-offset-4 {
  margin-left: 33.333%;
}
.col-xs-offset-5 {
  margin-left: 41.667%;
}
.col-xs-offset-6 {
  margin-left: 50%;
}
.col-xs-offset-7 {
  margin-left: 58.333%;
}
.col-xs-offset-8 {
  margin-left: 66.667%;
}
.col-xs-offset-9 {
  margin-left: 75%;
}
.col-xs-offset-10 {
  margin-left: 83.333%;
}
.col-xs-offset-11 {
  margin-left: 91.667%;
}
.start-xs {
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  text-align: start;
}
.center-xs {
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.end-xs {
  -webkit-justify-content: flex-end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  text-align: end;
}
.top-xs {
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
}
.middle-xs {
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}
.bottom-xs {
  -webkit-align-items: flex-end;
  -ms-flex-align: end;
  align-items: flex-end;
}
.around-xs {
  -webkit-justify-content: space-around;
  -ms-flex-pack: distribute;
  justify-content: space-around;
}
.between-xs {
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.first-xs {
  -webkit-order: -1;
  -ms-flex-order: -1;
  order: -1;
}
.last-xs {
  -webkit-order: 1;
  -ms-flex-order: 1;
  order: 1;
}
@media only screen and (min-width: 48rem) {
  .container {
    max-width: 46.875rem;
  }
  .col-sm,
  .col-sm-1,
  .col-sm-2,
  .col-sm-3,
  .col-sm-4,
  .col-sm-5,
  .col-sm-6,
  .col-sm-7,
  .col-sm-8,
  .col-sm-9,
  .col-sm-10,
  .col-sm-11,
  .col-sm-12,
  .col-sm-offset-1,
  .col-sm-offset-2,
  .col-sm-offset-3,
  .col-sm-offset-4,
  .col-sm-offset-5,
  .col-sm-offset-6,
  .col-sm-offset-7,
  .col-sm-offset-8,
  .col-sm-offset-9,
  .col-sm-offset-10,
  .col-sm-offset-11,
  .col-sm-offset-12 {
    box-sizing: border-box;
    -webkit-flex: 0 0 auto;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    padding-right: 0.9375rem;
    padding-left: 0.9375rem;
  }
  .col-sm {
    -webkit-flex-grow: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    -webkit-flex-basis: 0;
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    max-width: 100%;
  }
  .col-sm-1 {
    -webkit-flex-basis: 8.333%;
    -ms-flex-preferred-size: 8.333%;
    flex-basis: 8.333%;
    max-width: 8.333%;
  }
  .col-sm-2 {
    -webkit-flex-basis: 16.667%;
    -ms-flex-preferred-size: 16.667%;
    flex-basis: 16.667%;
    max-width: 16.667%;
  }
  .col-sm-3 {
    -webkit-flex-basis: 25%;
    -ms-flex-preferred-size: 25%;
    flex-basis: 25%;
    max-width: 25%;
  }
  .col-sm-4 {
    -webkit-flex-basis: 33.333%;
    -ms-flex-preferred-size: 33.333%;
    flex-basis: 33.333%;
    max-width: 33.333%;
  }
  .col-sm-5 {
    -webkit-flex-basis: 41.667%;
    -ms-flex-preferred-size: 41.667%;
    flex-basis: 41.667%;
    max-width: 41.667%;
  }
  .col-sm-6 {
    -webkit-flex-basis: 50%;
    -ms-flex-preferred-size: 50%;
    flex-basis: 50%;
    max-width: 50%;
  }
  .col-sm-7 {
    -webkit-flex-basis: 58.333%;
    -ms-flex-preferred-size: 58.333%;
    flex-basis: 58.333%;
    max-width: 58.333%;
  }
  .col-sm-8 {
    -webkit-flex-basis: 66.667%;
    -ms-flex-preferred-size: 66.667%;
    flex-basis: 66.667%;
    max-width: 66.667%;
  }
  .col-sm-9 {
    -webkit-flex-basis: 75%;
    -ms-flex-preferred-size: 75%;
    flex-basis: 75%;
    max-width: 75%;
  }
  .col-sm-10 {
    -webkit-flex-basis: 83.333%;
    -ms-flex-preferred-size: 83.333%;
    flex-basis: 83.333%;
    max-width: 83.333%;
  }
  .col-sm-11 {
    -webkit-flex-basis: 91.667%;
    -ms-flex-preferred-size: 91.667%;
    flex-basis: 91.667%;
    max-width: 91.667%;
  }
  .col-sm-12 {
    -webkit-flex-basis: 100%;
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    max-width: 100%;
  }
  .col-sm-offset-1 {
    margin-left: 8.333%;
  }
  .col-sm-offset-2 {
    margin-left: 16.667%;
  }
  .col-sm-offset-3 {
    margin-left: 25%;
  }
  .col-sm-offset-4 {
    margin-left: 33.333%;
  }
  .col-sm-offset-5 {
    margin-left: 41.667%;
  }
  .col-sm-offset-6 {
    margin-left: 50%;
  }
  .col-sm-offset-7 {
    margin-left: 58.333%;
  }
  .col-sm-offset-8 {
    margin-left: 66.667%;
  }
  .col-sm-offset-9 {
    margin-left: 75%;
  }
  .col-sm-offset-10 {
    margin-left: 83.333%;
  }
  .col-sm-offset-11 {
    margin-left: 91.667%;
  }
  .start-sm {
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    text-align: start;
  }
  .center-sm {
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    text-align: center;
  }
  .end-sm {
    -webkit-justify-content: flex-end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    text-align: end;
  }
  .top-sm {
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
  .middle-sm {
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .bottom-sm {
    -webkit-align-items: flex-end;
    -ms-flex-align: end;
    align-items: flex-end;
  }
  .around-sm {
    -webkit-justify-content: space-around;
    -ms-flex-pack: distribute;
    justify-content: space-around;
  }
  .between-sm {
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
  .first-sm {
    -webkit-order: -1;
    -ms-flex-order: -1;
    order: -1;
  }
  .last-sm {
    -webkit-order: 1;
    -ms-flex-order: 1;
    order: 1;
  }
}
@media only screen and (min-width: 62rem) {
  .container {
    max-width: 60.625rem;
  }
  .col-md,
  .col-md-1,
  .col-md-2,
  .col-md-3,
  .col-md-4,
  .col-md-5,
  .col-md-6,
  .col-md-7,
  .col-md-8,
  .col-md-9,
  .col-md-10,
  .col-md-11,
  .col-md-12,
  .col-md-offset-1,
  .col-md-offset-2,
  .col-md-offset-3,
  .col-md-offset-4,
  .col-md-offset-5,
  .col-md-offset-6,
  .col-md-offset-7,
  .col-md-offset-8,
  .col-md-offset-9,
  .col-md-offset-10,
  .col-md-offset-11,
  .col-md-offset-12 {
    box-sizing: border-box;
    -webkit-flex: 0 0 auto;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    padding-right: 0.9375rem;
    padding-left: 0.9375rem;
  }
  .col-md {
    -webkit-flex-grow: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    -webkit-flex-basis: 0;
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    max-width: 100%;
  }
  .col-md-1 {
    -webkit-flex-basis: 8.333%;
    -ms-flex-preferred-size: 8.333%;
    flex-basis: 8.333%;
    max-width: 8.333%;
  }
  .col-md-2 {
    -webkit-flex-basis: 16.667%;
    -ms-flex-preferred-size: 16.667%;
    flex-basis: 16.667%;
    max-width: 16.667%;
  }
  .col-md-3 {
    -webkit-flex-basis: 25%;
    -ms-flex-preferred-size: 25%;
    flex-basis: 25%;
    max-width: 25%;
  }
  .col-md-4 {
    -webkit-flex-basis: 33.333%;
    -ms-flex-preferred-size: 33.333%;
    flex-basis: 33.333%;
    max-width: 33.333%;
  }
  .col-md-5 {
    -webkit-flex-basis: 41.667%;
    -ms-flex-preferred-size: 41.667%;
    flex-basis: 41.667%;
    max-width: 41.667%;
  }
  .col-md-6 {
    -webkit-flex-basis: 50%;
    -ms-flex-preferred-size: 50%;
    flex-basis: 50%;
    max-width: 50%;
  }
  .col-md-7 {
    -webkit-flex-basis: 58.333%;
    -ms-flex-preferred-size: 58.333%;
    flex-basis: 58.333%;
    max-width: 58.333%;
  }
  .col-md-8 {
    -webkit-flex-basis: 66.667%;
    -ms-flex-preferred-size: 66.667%;
    flex-basis: 66.667%;
    max-width: 66.667%;
  }
  .col-md-9 {
    -webkit-flex-basis: 75%;
    -ms-flex-preferred-size: 75%;
    flex-basis: 75%;
    max-width: 75%;
  }
  .col-md-10 {
    -webkit-flex-basis: 83.333%;
    -ms-flex-preferred-size: 83.333%;
    flex-basis: 83.333%;
    max-width: 83.333%;
  }
  .col-md-11 {
    -webkit-flex-basis: 91.667%;
    -ms-flex-preferred-size: 91.667%;
    flex-basis: 91.667%;
    max-width: 91.667%;
  }
  .col-md-12 {
    -webkit-flex-basis: 100%;
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    max-width: 100%;
  }
  .col-md-offset-1 {
    margin-left: 8.333%;
  }
  .col-md-offset-2 {
    margin-left: 16.667%;
  }
  .col-md-offset-3 {
    margin-left: 25%;
  }
  .col-md-offset-4 {
    margin-left: 33.333%;
  }
  .col-md-offset-5 {
    margin-left: 41.667%;
  }
  .col-md-offset-6 {
    margin-left: 50%;
  }
  .col-md-offset-7 {
    margin-left: 58.333%;
  }
  .col-md-offset-8 {
    margin-left: 66.667%;
  }
  .col-md-offset-9 {
    margin-left: 75%;
  }
  .col-md-offset-10 {
    margin-left: 83.333%;
  }
  .col-md-offset-11 {
    margin-left: 91.667%;
  }
  .start-md {
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    text-align: start;
  }
  .center-md {
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    text-align: center;
  }
  .end-md {
    -webkit-justify-content: flex-end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    text-align: end;
  }
  .top-md {
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
  .middle-md {
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .bottom-md {
    -webkit-align-items: flex-end;
    -ms-flex-align: end;
    align-items: flex-end;
  }
  .around-md {
    -webkit-justify-content: space-around;
    -ms-flex-pack: distribute;
    justify-content: space-around;
  }
  .between-md {
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
  .first-md {
    -webkit-order: -1;
    -ms-flex-order: -1;
    order: -1;
  }
  .last-md {
    -webkit-order: 1;
    -ms-flex-order: 1;
    order: 1;
  }
}
@media only screen and (min-width: 75rem) {
  .container {
    max-width: 73.125rem;
  }
  .col-lg,
  .col-lg-1,
  .col-lg-2,
  .col-lg-3,
  .col-lg-4,
  .col-lg-5,
  .col-lg-6,
  .col-lg-7,
  .col-lg-8,
  .col-lg-9,
  .col-lg-10,
  .col-lg-11,
  .col-lg-12,
  .col-lg-offset-1,
  .col-lg-offset-2,
  .col-lg-offset-3,
  .col-lg-offset-4,
  .col-lg-offset-5,
  .col-lg-offset-6,
  .col-lg-offset-7,
  .col-lg-offset-8,
  .col-lg-offset-9,
  .col-lg-offset-10,
  .col-lg-offset-11,
  .col-lg-offset-12 {
    box-sizing: border-box;
    -webkit-flex: 0 0 auto;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    padding-right: 0.9375rem;
    padding-left: 0.9375rem;
  }
  .col-lg {
    -webkit-flex-grow: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    -webkit-flex-basis: 0;
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    max-width: 100%;
  }
  .col-lg-1 {
    -webkit-flex-basis: 8.333%;
    -ms-flex-preferred-size: 8.333%;
    flex-basis: 8.333%;
    max-width: 8.333%;
  }
  .col-lg-2 {
    -webkit-flex-basis: 16.667%;
    -ms-flex-preferred-size: 16.667%;
    flex-basis: 16.667%;
    max-width: 16.667%;
  }
  .col-lg-3 {
    -webkit-flex-basis: 25%;
    -ms-flex-preferred-size: 25%;
    flex-basis: 25%;
    max-width: 25%;
  }
  .col-lg-4 {
    -webkit-flex-basis: 33.333%;
    -ms-flex-preferred-size: 33.333%;
    flex-basis: 33.333%;
    max-width: 33.333%;
  }
  .col-lg-5 {
    -webkit-flex-basis: 41.667%;
    -ms-flex-preferred-size: 41.667%;
    flex-basis: 41.667%;
    max-width: 41.667%;
  }
  .col-lg-6 {
    -webkit-flex-basis: 50%;
    -ms-flex-preferred-size: 50%;
    flex-basis: 50%;
    max-width: 50%;
  }
  .col-lg-7 {
    -webkit-flex-basis: 58.333%;
    -ms-flex-preferred-size: 58.333%;
    flex-basis: 58.333%;
    max-width: 58.333%;
  }
  .col-lg-8 {
    -webkit-flex-basis: 66.667%;
    -ms-flex-preferred-size: 66.667%;
    flex-basis: 66.667%;
    max-width: 66.667%;
  }
  .col-lg-9 {
    -webkit-flex-basis: 75%;
    -ms-flex-preferred-size: 75%;
    flex-basis: 75%;
    max-width: 75%;
  }
  .col-lg-10 {
    -webkit-flex-basis: 83.333%;
    -ms-flex-preferred-size: 83.333%;
    flex-basis: 83.333%;
    max-width: 83.333%;
  }
  .col-lg-11 {
    -webkit-flex-basis: 91.667%;
    -ms-flex-preferred-size: 91.667%;
    flex-basis: 91.667%;
    max-width: 91.667%;
  }
  .col-lg-12 {
    -webkit-flex-basis: 100%;
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    max-width: 100%;
  }
  .col-lg-offset-1 {
    margin-left: 8.333%;
  }
  .col-lg-offset-2 {
    margin-left: 16.667%;
  }
  .col-lg-offset-3 {
    margin-left: 25%;
  }
  .col-lg-offset-4 {
    margin-left: 33.333%;
  }
  .col-lg-offset-5 {
    margin-left: 41.667%;
  }
  .col-lg-offset-6 {
    margin-left: 50%;
  }
  .col-lg-offset-7 {
    margin-left: 58.333%;
  }
  .col-lg-offset-8 {
    margin-left: 66.667%;
  }
  .col-lg-offset-9 {
    margin-left: 75%;
  }
  .col-lg-offset-10 {
    margin-left: 83.333%;
  }
  .col-lg-offset-11 {
    margin-left: 91.667%;
  }
  .start-lg {
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    text-align: start;
  }
  .center-lg {
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    text-align: center;
  }
  .end-lg {
    -webkit-justify-content: flex-end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    text-align: end;
  }
  .top-lg {
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
  .middle-lg {
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .bottom-lg {
    -webkit-align-items: flex-end;
    -ms-flex-align: end;
    align-items: flex-end;
  }
  .around-lg {
    -webkit-justify-content: space-around;
    -ms-flex-pack: distribute;
    justify-content: space-around;
  }
  .between-lg {
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
  .first-lg {
    -webkit-order: -1;
    -ms-flex-order: -1;
    order: -1;
  }
  .last-lg {
    -webkit-order: 1;
    -ms-flex-order: 1;
    order: 1;
  }
}
/*--------------------------------------------
Combo CSS
----------------------------------------------*/
.clr:before,
.clr:after,
.mini-cart .widget_shopping_cart_content .cart_list li:before,
.mini-cart .widget_shopping_cart_content .cart_list li:after,
.single-post .comment > div:before,
.single-post .comment > div:after,
.page .comment > div:before,
.page .comment > div:after,
.recent-posts__item:before,
.recent-posts__item:after {
  content: " ";
  display: table;
}
.clr:after,
.mini-cart .widget_shopping_cart_content .cart_list li:after,
.single-post .comment > div:after,
.page .comment > div:after,
.recent-posts__item:after {
  clear: both;
}
.icf,
.top-menu .menu-item a:after,
.social-menu .menu li a:before,
.blog16.wpb_widgetised_column .menu-social-container .menu li a:before,
.sidebar .widget_search span:before,
.wpb_widgetised_column .widget_search span:before,
.hentry .read-more span:after,
.widget_product_search label:before,
ul.style1 li:before {
  font-family: 'FontAwesome';
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
}
.icon7stroke {
  font-family: 'Pe-icon-7-stroke';
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
}
.tran,
a,
.search-box i,
.search-box i:before,
.search-box i:after,
.search-box input[type="search"],
.search-box .search-form,
#site-navigation .menu li:hover > .sub-menu,
#site-navigation .menu li:hover > .children,
.mini-cart .mini-cart__button,
.related-projects .project-thumb:after,
.related-projects .project-thumb:before,
.image-product-contain:after,
input,
select,
textarea,
button,
input[type="button"],
input[type="reset"],
input[type="submit"],
.recent-posts__item .recent-posts__thumb a:before,
.contain-gallery .esg-filters .esg-filter-wrapper .esg-filterbutton,
.vc_column_container,
.contact-container-02 .menu-social-container ul li a:before,
.shopby-catogories.white-color .woocommerce ul.products li.product h3 mark:hover,
.shopby-catogories.white-color .woocommerce ul.products li.product h3 ins:hover,
.shopby-catogories.white-color .woocommerce ul.products li.product h3:hover,
.shopby-catogories.white-color .woocommerce ul.products li.product h3 mark:hover *,
.shopby-catogories.white-color .woocommerce ul.products li.product h3 ins:hover *,
.shopby-catogories.white-color .woocommerce ul.products li.product h3:hover * {
  -webkit-transition: all 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
  -moz-transition: all 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
  -o-transition: all 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: all 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
}
/*--------------------------------------------------------------
Common
--------------------------------------------------------------*/
.boxed {
  max-width: 1200px;
  margin: auto;
  overflow: hidden;
}
.tm-vc-row-overlay {
  margin: auto;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  position: absolute !important;
}
.site {
  background-color: #fff;
  position: relative;
  z-index: 2;
  overflow: hidden;
}
.align-center {
  text-align: center;
}
.align-left {
  text-align: left;
}
.align-right {
  text-align: right;
}
@media (max-width: 74.9375rem) {
  .align-center-md {
    text-align: center!important;
  }
  .align-left-md {
    text-align: left!important;
  }
  .align-right-md {
    text-align: right!important;
  }
}
.row:before,
.container:before,
.row:after,
.container:after {
  display: none !important;
}
.btn {
  display: inline-block;
  text-transform: uppercase;
}
.box-center {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.inline-block {
  display: inline-block;
}
#map-canvas img {
  max-width: none;
}
.scrollup {
  display: none;
}
.scrollup {
  display: block;
  cursor: pointer;
  z-index: 2;
  position: fixed;
  right: 30px;
  bottom: -50px;
  text-align: center;
  font-size: 0;
  border: 2px solid;
  font-size: 20px;
  opacity: 0.8;
  height: 40px;
  width: 40px;
}
.scrollup.show {
  bottom: 70px;
}
.btn-link {
  font-size: 12px;
  text-transform: uppercase;
}
.btn-link:hover {
  text-decoration: underline;
}
.img-full * {
  width: 100%;
}
.gallery-container-wrap,
.gallery-container {
  position: relative;
  width: 100%;
  height: 100%;
}
.gallery-container-wrap {
  overflow-x: hidden;
  overflow-y: hidden;
}
.gallery-container {
  white-space: nowrap !important;
}
.gallery-container .placeholder {
  display: block;
}
.gallery-container-wrap .gallery-container .placeholder {
  height: 100%;
  display: inline-block;
  width: auto!important;
  overflow: visible;
}
.gallery-container-wrap .gallery-container .placeholder:first-child img {
  padding-left: 0;
}
.gallery-container-wrap .gallery-container .placeholder:after {
  content: '';
}
.gallery-container .placeholder img {
  width: 100%;
  padding: 7px 0;
}
.gallery-container-wrap .gallery-container .placeholder img {
  height: 100%;
  width: auto!important;
  max-width: none!important;
  padding-left: 30px;
}
/*--------------------------------------------------------------
Header
--------------------------------------------------------------*/
@media (min-width: 48rem) {
  .admin-bar .sticky-menu.headroom--not-top {
    top: 32px;
  }
}
@media (min-width: 62rem) {
  .admin-bar .sticky-menu.headroom--not-top {
    top: 32px;
  }
}
@media (max-width: 47.9375rem) {
  .admin-bar .sticky-menu.headroom--not-top {
    top: 0px;
  }
}
@media (min-width: 62rem) {
  .sticky-menu.headroom--not-top {
    position: fixed !important;
    top: 0;
    z-index: 9999 !important;
    width: 100%;
    box-shadow: 0 1px 1px #eee;
  }
  .sticky-menu.headroom--not-top .search-box .search-form {
    top: 47px;
  }
}
@media (min-width: 62rem) and (min-width: 62rem) {
  .sticky-menu.headroom--not-top .site-branding {
    padding-top: 0;
    padding-bottom: 0;
  }
}
.header03 .primary-menu,
.header03 .search-cart {
  display: inline-block;
  clear: none;
  vertical-align: middle;
}
.header03 #site-navigation {
  display: inline-block;
  vertical-align: middle;
}
.header03 .sub-menu {
  text-align: left;
}
.site-header {
  position: relative;
}
.site-header .custom-logo {
  z-index: 2;
  background-repeat: no-repeat;
  background-position: center center;
}
.site-header .custom-logo,
.site-header .custom-logo a {
  font-size: 0;
}
.mobile-menu .custom-logo {
  display: none;
}
.site-top {
  width: 100%;
  position: relative;
}
.site-top *[class*="pe-7s"],
.site-top .fa {
  display: inline-block;
  vertical-align: middle;
  margin-top: -4px;
}
.absolute-menu .site-header,
.menu-overlay .site-header {
  position: absolute;
  width: 100%;
}
.absolute-menu .header-right,
.menu-overlay .header-right {
  position: relative;
  z-index: 2;
}
.big-title .container,
.big-title--single .container,
.site-top .container {
  position: relative;
}
.site-header,
.big-title,
.big-title--single,
.site-top {
  background-size: cover;
}
@media (min-width: 75rem) {
  .site-header > .container:not(.nav_boxed),
  .big-title > .container:not(.nav_boxed),
  .big-title--single > .container:not(.nav_boxed),
  .site-top > .container:not(.nav_boxed),
  .site-header > .sticky-menu > .container:not(.nav_boxed),
  .big-title > .sticky-menu > .container:not(.nav_boxed),
  .big-title--single > .sticky-menu > .container:not(.nav_boxed),
  .site-top > .sticky-menu > .container:not(.nav_boxed) {
    max-width: 100%;
    margin-left: 105px;
    margin-right: 105px;
  }
  .site-header > .container.nav_boxed,
  .big-title > .container.nav_boxed,
  .big-title--single > .container.nav_boxed,
  .site-top > .container.nav_boxed,
  .site-header > .sticky-menu > .container.nav_boxed,
  .big-title > .sticky-menu > .container.nav_boxed,
  .big-title--single > .sticky-menu > .container.nav_boxed,
  .site-top > .sticky-menu > .container.nav_boxed {
    padding-left: 0;
    padding-right: 0;
  }
}
.site-branding {
  position: relative;
  z-index: 1;
  padding: 20px 15px;
}
.extra-info > div {
  padding: 10px 15px;
  text-align: left;
}
.extra-info i {
  display: inline-block;
  font-size: 30px;
  margin-bottom: 20px;
  float: left;
  margin-right: 15px;
}
.extra-info span {
  font-weight: 600;
  color: #777;
}
.extra-info h3 {
  font-size: 18px;
  line-height: 1.2;
  letter-spacing: normal;
  font-weight: normal;
}
.search-box {
  position: relative;
  z-index: 9999;
  line-height: 1em;
  text-align: left;
}
.search-box i {
  font-size: 16px;
  cursor: pointer;
  display: inline-block;
  vertical-align: middle;
  position: relative;
  overflow: hidden;
  height: 20px;
  width: 20px;
  -moz-transition-duration: 0.1s;
  -webkit-transition-duration: 0.1s;
  -o-transition-duration: 0.1s;
  transition-duration: 0.1s;
}
.search-box i:before,
.search-box i:after {
  position: absolute;
  color: #fff;
  font-family: 'Pe-icon-7-stroke';
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
}
.search-box i:before {
  top: 0;
  left: 0;
  font-size: 20px;
}
.search-box i:after {
  content: "\e680";
  top: 100%;
  left: 0;
  font-size: 25px;
}
.search-box label span,
.search-box input[type="submit"] {
  display: none;
}
.search-box input[type="search"] {
  position: absolute;
  width: 100%;
  z-index: 99;
  border: none;
  padding: 10px;
  background-color: #fff;
  border-top: 2px solid transparent;
  box-shadow: 0 6px 12px 0 rgba(0, 0, 0, 0.2);
  -webkit-box-shadow: 0 6px 12px 0 rgba(0, 0, 0, 0.2);
}
.search-box .search-form {
  position: absolute;
  right: 30px;
  width: 300px;
  height: 100%;
  opacity: 0;
  visibility: hidden;
}
.search-box .search-form:before {
  content: '';
  margin: auto;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}
.search-box .search-form.open {
  opacity: 1;
  visibility: visible;
}
.search-box .search-form.open + i:before {
  top: -100%;
}
.search-box .search-form.open + i:after {
  top: 0;
}
@media (max-width: 74.9375rem) {
  .search-box {
    width: 100%;
  }
}
@media (min-width: 48rem) {
  body {
    color: #000;
  }
}
@media (min-width: 62rem) {
  .site-top .social-menu {
    display: inline-block;
    position: relative;
  }
  .site-top .social-menu ul {
    position: relative;
    z-index: 2;
  }
}
/*--------------------------------------------
Footer
----------------------------------------------*/
.site-footer .widget-title {
  text-transform: uppercase;
  margin-bottom: 35px;
}
@media (max-width: 74.9375rem) {
  .site-footer .col-md-3 {
    margin-bottom: 30px;
  }
}
.site-footer .widget img.logo {
  margin: -10px 0 10px;
}
.site-footer .widget.widget_text span[class*="pe-7s"] {
  font-size: 24px;
  vertical-align: middle;
}
.site-footer .widget.widget_recent_entries ul li {
  list-style-type: none;
  padding: 10px 0;
  border-bottom: 1px solid #333;
}
.site-footer .widget.widget_recent_entries ul li:first-child {
  border-top: 1px solid #333;
}
.site-footer .widget.widget_recent_entries ul li a:before {
  content: '\2022';
  margin-right: 10px;
  font-size: 10px;
}
.site-footer .menu li {
  margin-bottom: 7px;
}
.office p {
  margin-bottom: 10px;
}
.office i {
  font-size: 16px;
  width: 35px;
}
.copyright {
  overflow: hidden;
  line-height: 1;
  background-color: #333333;
}
.copyright .left {
  padding-top: 30px;
  padding-bottom: 30px;
  position: relative;
}
.copyright .right {
  padding-top: 30px;
  padding-bottom: 30px;
  text-align: right;
}
.copyright .center:first-child {
  margin-bottom: 20px;
}
.copyright .social-menu li:first-child {
  margin-left: 0;
}
@media (min-width: 62rem) {
  .site-footer .menu li {
    display: inline-block;
    width: 100%;
  }
  .copyright .left:before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: -1000px;
    width: 1000px;
  }
  .copyright .left:after {
    content: '';
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 200px 0 0 90px;
    border-color: transparent transparent transparent transparent;
    position: absolute;
    top: 0;
    right: -90px;
  }
}
/*--------------------------------------------
Navigation
----------------------------------------------*/
.menu-item,
.page_item {
  display: inline-block;
}
.top-menu {
  position: relative;
  z-index: 1;
}
.top-menu .menu-item {
  padding: 5px;
}
.top-menu .menu-item a:after {
  content: "\f178";
  margin-left: 10px;
}
.search-cart {
  z-index: 2;
}
.search-cart:first-child {
  z-index: 3;
}
.search-cart #open-right {
  color: #fff;
  cursor: pointer;
  text-transform: uppercase;
}
.search-cart #open-right span {
  margin-right: 10px;
  vertical-align: top;
}
.search-cart #open-right i {
  line-height: 1.2em;
  font-size: 19px;
}
#close-right {
  font-size: 40px;
  color: #fff;
  float: right;
  cursor: pointer;
  margin-top: -3px;
}
.snap-drawer-right {
  background-color: #111111;
  padding: 35px;
}
.snap-drawer-right aside.widget {
  margin-bottom: 65px;
}
.snap-drawer-right aside.widget .widget-title {
  color: #fff;
  margin-bottom: 10px;
}
.snap-drawer-right aside.widget .menu-main-container li,
.snap-drawer-right aside.widget .menu-second-menu-container li {
  line-height: 2.2em;
}
.snap-drawer-right aside.widget .menu-main-container li a,
.snap-drawer-right aside.widget .menu-second-menu-container li a {
  text-transform: uppercase;
  color: #fff;
}
.snap-drawer-right aside.widget .menu-main-container li a:hover,
.snap-drawer-right aside.widget .menu-second-menu-container li a:hover {
  color: #1674D1;
}
.snap-drawer-right aside.widget .menu li {
  display: block;
}
.snap-drawer-right aside.widget .menu li a {
  display: block;
  padding: 4px 0;
}
.snap-drawer-right .social-menu {
  text-align: center;
  position: absolute;
  bottom: 35px;
}
.social-menu .menu li,
.blog16.wpb_widgetised_column .menu-social-container .menu li {
  display: inline-block;
  margin-left: 20px;
  width: auto !important;
}
.social-menu .menu li:first-child,
.blog16.wpb_widgetised_column .menu-social-container .menu li:first-child {
  margin-left: 0;
}
.social-menu .menu li:hover,
.blog16.wpb_widgetised_column .menu-social-container .menu li:hover {
  -webkit-transform: translate(0, 0) !important;
  -moz-transform: translate(0, 0) !important;
  -ms-transform: translate(0, 0) !important;
  -o-transform: translate(0, 0) !important;
}
.social-menu .menu li:before,
.blog16.wpb_widgetised_column .menu-social-container .menu li:before {
  display: none;
}
.social-menu .menu li a,
.blog16.wpb_widgetised_column .menu-social-container .menu li a {
  font-size: 0;
}
.social-menu .menu li a:before,
.blog16.wpb_widgetised_column .menu-social-container .menu li a:before {
  font-size: 16px;
  display: inline-block;
}
.social-menu .menu li a[href*="facebook"]:before,
.blog16.wpb_widgetised_column .menu-social-container .menu li a[href*="facebook"]:before {
  content: "\f09a";
}
.social-menu .menu li a[href*="twitter"]:before,
.blog16.wpb_widgetised_column .menu-social-container .menu li a[href*="twitter"]:before {
  content: "\f099";
}
.social-menu .menu li a[href*="instagram"]:before,
.blog16.wpb_widgetised_column .menu-social-container .menu li a[href*="instagram"]:before {
  content: "\f16d";
}
.social-menu .menu li a[href*="youtube"]:before,
.blog16.wpb_widgetised_column .menu-social-container .menu li a[href*="youtube"]:before {
  content: "\f16a";
}
.social-menu .menu li a[href*="plus.google.com"]:before,
.blog16.wpb_widgetised_column .menu-social-container .menu li a[href*="plus.google.com"]:before {
  content: "\f0d5";
}
.social-menu .menu li a[href*="flickr"]:before,
.blog16.wpb_widgetised_column .menu-social-container .menu li a[href*="flickr"]:before {
  content: "\f16e";
}
.social-menu .menu li a[href*="dribbble"]:before,
.blog16.wpb_widgetised_column .menu-social-container .menu li a[href*="dribbble"]:before {
  content: "\f17d";
}
.social-menu .menu li a[href*="foursquare"]:before,
.blog16.wpb_widgetised_column .menu-social-container .menu li a[href*="foursquare"]:before {
  content: "\f180";
}
.social-menu .menu li a[href*="linkedin"]:before,
.blog16.wpb_widgetised_column .menu-social-container .menu li a[href*="linkedin"]:before {
  content: "\f0e1";
}
.social-menu .menu li a[href*="tumblr"]:before,
.blog16.wpb_widgetised_column .menu-social-container .menu li a[href*="tumblr"]:before {
  content: "\f173";
}
.social-menu .menu li a[href*="feed"]:before,
.blog16.wpb_widgetised_column .menu-social-container .menu li a[href*="feed"]:before {
  content: "\f09e";
}
.social-menu .menu li a[href*="pinterest"]:before,
.blog16.wpb_widgetised_column .menu-social-container .menu li a[href*="pinterest"]:before {
  content: "\f0d2";
}
.social-menu .menu li a[href*="behance"]:before,
.blog16.wpb_widgetised_column .menu-social-container .menu li a[href*="behance"]:before {
  content: "\f1b4";
}
.social-menu .menu li a[href*="vimeo"]:before,
.blog16.wpb_widgetised_column .menu-social-container .menu li a[href*="vimeo"]:before {
  content: "\f194";
}
.header04 #site-navigation .menu li:not(.mega-menu) .sub-menu .sub-menu,
.header04 #site-navigation .menu li:not(.mega-menu) .children .sub-menu {
  right: -300px;
  left: auto;
}
#site-navigation {
  z-index: 999;
}
#site-navigation #logo,
#site-navigation .logo {
  width: auto!important;
  padding: 0 10px!important;
  margin: 0!important;
  display: inline-block !important;
}
#site-navigation .menu {
  float: right;
}
#site-navigation .menu li .vc_row[data-vc-full-width],
#site-navigation .menu li .vc_row {
  overflow: visible;
}
#site-navigation .menu li .vc_row[data-vc-full-width] .vc_column_container,
#site-navigation .menu li .vc_row .vc_column_container {
  padding-left: 15px;
  padding-right: 15px;
}
#site-navigation .menu li.new-item {
  background: url('data:image/jpeg;base64,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////////////////////////A+gAAAAA/////////////////////////////wPoAAAAAP////////////////////////////8D6AAAOEJJTQQAAAAAAAACAAI4QklNBAIAAAAAAAgAAAAAAAAAADhCSU0EMAAAAAAABAEBAQE4QklNBC0AAAAAAAYAAQAAAAI4QklNBAgAAAAAABAAAAABAAACQAAAAkAAAAAAOEJJTQQeAAAAAAAEAAAAADhCSU0EGgAAAAADSQAAAAYAAAAAAAAAAAAAAA8AAAAjAAAACgBVAG4AdABpAHQAbABlAGQALQAxAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAjAAAADwAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAABAAAAABAAAAAAAAbnVsbAAAAAIAAAAGYm91bmRzT2JqYwAAAAEAAAAAAABSY3QxAAAABAAAAABUb3AgbG9uZwAAAAAAAAAATGVmdGxvbmcAAAAAAAAAAEJ0b21sb25nAAAADwAAAABSZ2h0bG9uZwAAACMAAAAGc2xpY2VzVmxMcwAAAAFPYmpjAAAAAQAAAAAABXNsaWNlAAAAEgAAAAdzbGljZUlEbG9uZwAAAAAAAAAHZ3JvdXBJRGxvbmcAAAAAAAAABm9yaWdpbmVudW0AAAAMRVNsaWNlT3JpZ2luAAAADWF1dG9HZW5lcmF0ZWQAAAAAVHlwZWVudW0AAAAKRVNsaWNlVHlwZQAAAABJbWcgAAAABmJvdW5kc09iamMAAAABAAAAAAAAUmN0MQAAAAQAAAAAVG9wIGxvbmcAAAAAAAAAAExlZnRsb25nAAAAAAAAAABCdG9tbG9uZwAAAA8AAAAAUmdodGxvbmcAAAAjAAAAA3VybFRFWFQAAAABAAAAAAAAbnVsbFRFWFQAAAABAAAAAAAATXNnZVRFWFQAAAABAAAAAAAGYWx0VGFnVEVYVAAAAAEAAAAAAA5jZWxsVGV4dElzSFRNTGJvb2wBAAAACGNlbGxUZXh0VEVYVAAAAAEAAAAAAAlob3J6QWxpZ25lbnVtAAAAD0VTbGljZUhvcnpBbGlnbgAAAAdkZWZhdWx0AAAACXZlcnRBbGlnbmVudW0AAAAPRVNsaWNlVmVydEFsaWduAAAAB2Rl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bG5zOnJkZj0iaHR0cDovL3d3dy53My5vcmcvMTk5OS8wMi8yMi1yZGYtc3ludGF4LW5zIyI+IDxyZGY6RGVzY3JpcHRpb24gcmRmOmFib3V0PSIiIHhtbG5zOnhtcD0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wLyIgeG1sbnM6ZGM9Imh0dHA6Ly9wdXJsLm9yZy9kYy9lbGVtZW50cy8xLjEvIiB4bWxuczpwaG90b3Nob3A9Imh0dHA6Ly9ucy5hZG9iZS5jb20vcGhvdG9zaG9wLzEuMC8iIHhtbG5zOnhtcE1NPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvbW0vIiB4bWxuczpzdEV2dD0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL3NUeXBlL1Jlc291cmNlRXZlbnQjIiB4bXA6Q3JlYXRvclRvb2w9IkFkb2JlIFBob3Rvc2hvcCBDUzYgKFdpbmRvd3MpIiB4bXA6Q3JlYXRlRGF0ZT0iMjAxNS0xMi0yNFQxNjoyMjo0NiswNzowMCIgeG1wOk1vZGlmeURhdGU9IjIwMTUtMTItMjRUMTY6MjM6MDkrMDc6MDAiIHhtcDpNZXRhZGF0YURhdGU9IjIwMTUtMTItMjRUMTY6MjM6MDkrMDc6MDAiIGRjOmZvcm1hdD0iaW1hZ2UvanBlZyIgcGhvdG9zaG9wOkNvbG9yTW9kZT0iMyIgcGhvdG9zaG9wOklDQ1Byb2ZpbGU9InNSR0IgSUVDNjE5NjYtMi4xIiB4bXBNTTpJbnN0YW5jZUlEPSJ4bXAuaWlkOkNFNzJEMTFFRjRBOUU1MTFBMDc4RjU4NDRGQ0I0RjcxIiB4bXBNTTpEb2N1bWVudElEPSJ4bXAuZGlkOkNENzJEMTFFRjRBOUU1MTFBMDc4RjU4NDRGQ0I0RjcxIiB4bXBNTTpPcmlnaW5hbERvY3VtZW50SUQ9InhtcC5kaWQ6Q0Q3MkQxMUVGNEE5RTUxMUEwNzhGNTg0NEZDQjRGNzEiPiA8eG1wTU06SGlzdG9yeT4gPHJkZjpTZXE+IDxyZGY6bGkgc3RFdnQ6YWN0aW9uPSJjcmVhdGVkIiBzdEV2dDppbnN0YW5jZUlEPSJ4bXAuaWlkOkNENzJEMTFFRjRBOUU1MTFBMDc4RjU4NDRGQ0I0RjcxIiBzdEV2dDp3aGVuPSIyMDE1LTEyLTI0VDE2OjIyOjQ2KzA3OjAwIiBzdEV2dDpzb2Z0d2FyZUFnZW50PSJBZG9iZSBQaG90b3Nob3AgQ1M2IChXaW5kb3dzKSIvPiA8cmRmOmxpIHN0RXZ0OmFjdGlvbj0iY29udmVydGVkIiBzdEV2dDpwYXJhbWV0ZXJzPSJmcm9tIGFwcGxpY2F0aW9uL3ZuZC5hZG9iZS5waG90b3Nob3AgdG8gaW1hZ2UvanBlZyIvPiA8cmRmOmxpIHN0RXZ0OmFjdGlvbj0ic2F2ZWQiIHN0RXZ0Omluc3RhbmNlSUQ9InhtcC5paWQ6Q0U3MkQxMUVGNEE5RTUxMUEwNzhGNTg0NEZDQjRGNzEiIHN0RXZ0OndoZW49IjIwMTUtMTItMjRUMTY6MjM6MDkrMDc6MDAiIHN0RXZ0OnNvZnR3YXJlQWdlbnQ9IkFkb2JlIFBob3Rvc2hvcCBDUzYgKFdpbmRvd3MpIiBzdEV2dDpjaGFuZ2VkPSIvIi8+IDwvcmRmOlNlcT4gPC94bXBNTTpIaXN0b3J5PiA8L3JkZjpEZXNjcmlwdGlvbj4gPC9yZGY6UkRGPiA8L3g6eG1wbWV0YT4gICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA8P3hwYWNrZXQgZW5kPSJ3Ij8+/+IMWElDQ19QUk9GSUxFAAEBAAAMSExpbm8CEAAAbW50clJHQiBYWVogB84AAgAJAAYAMQAAYWNzcE1TRlQAAAAASUVDIHNSR0IAAAAAAAAAAAAAAAEAAPbWAAEAAAAA0y1IUCAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARY3BydAAAAVAA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') no-repeat center right;
}
#site-navigation .menu li > .sub-menu,
#site-navigation .menu li > .children {
  margin-top: 30px;
  z-index: -99;
}
#site-navigation .menu li.mega-menu .vc_wp_custommenu.sub-menu {
  width: 270px;
  right: -270px;
  left: auto;
  top: 0;
}
#primary-menu #site-navigation .menu li.mega-menu .vc_wp_custommenu.sub-menu ul li a {
  position: relative;
}
#primary-menu #site-navigation .menu li.mega-menu .vc_wp_custommenu.sub-menu ul li a:before {
  display: none;
  margin-right: -16px;
  margin-left: -18px;
  margin-top: -2px;
}
#primary-menu #site-navigation .menu li.mega-menu .vc_wp_custommenu.sub-menu ul li a:hover:before {
  display: inline-block;
  margin-right: 0px;
}
#site-navigation .menu li.mega-menu .container {
  margin-left: auto;
  margin-right: auto;
}
#site-navigation .menu li.mega-menu > .sub-menu,
#site-navigation .menu li.mega-menu > .children {
  margin-left: 0;
  padding: 0!important;
}
#site-navigation .menu li.mega-menu > .sub-menu,
#site-navigation .menu li.mega-menu > .children,
#site-navigation .menu li.mega-menu > .sub-menu li,
#site-navigation .menu li.mega-menu > .children li,
#site-navigation .menu li.mega-menu > .sub-menu a,
#site-navigation .menu li.mega-menu > .children a {
  background: none!important;
}
#site-navigation .menu li.mega-menu > .sub-menu a,
#site-navigation .menu li.mega-menu > .children a {
  border-bottom: 1px solid rgba(255, 255, 255, 0.05) !important;
}
#site-navigation .menu li.mega-menu > .sub-menu ul li:first-child > a,
#site-navigation .menu li.mega-menu > .children ul li:first-child > a {
  border-top: 1px solid rgba(255, 255, 255, 0.05) !important;
}
#site-navigation .menu li li.menu-item-has-children > a:after,
#site-navigation .menu li li.page_item_has_children > a:after {
  font-family: 'Pe-icon-7-stroke';
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  content: "\e684";
  font-size: 16px;
  vertical-align: middle;
  position: absolute;
  right: 0;
  top: 50%;
  margin-top: -8px;
}
#site-navigation .menu li:not(.mega-menu) .sub-menu,
#site-navigation .menu li:not(.mega-menu) .children {
  margin-left: 0;
}
#site-navigation .menu li:not(.mega-menu) .sub-menu > li a,
#site-navigation .menu li:not(.mega-menu) .children > li a {
  position: relative;
}
#site-navigation .menu li:not(.mega-menu) .sub-menu > li a:before,
#site-navigation .menu li:not(.mega-menu) .children > li a:before {
  font-family: 'Pe-icon-7-stroke';
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  content: "\e684";
  font-size: 16px;
  vertical-align: middle;
  display: none;
  margin-right: -16px;
  margin-left: -18px;
  margin-top: -2px;
}
#site-navigation .menu li:not(.mega-menu) .sub-menu > li a:hover:before,
#site-navigation .menu li:not(.mega-menu) .children > li a:hover:before {
  display: inline-block;
  margin-right: 0px;
}
#site-navigation .menu li:not(.mega-menu) .sub-menu li,
#site-navigation .menu li:not(.mega-menu) .children li {
  min-width: 210px;
}
#site-navigation .menu li:not(.mega-menu) .sub-menu li a,
#site-navigation .menu li:not(.mega-menu) .children li a {
  position: relative;
}
#site-navigation .menu li:not(.mega-menu) .sub-menu li a:before,
#site-navigation .menu li:not(.mega-menu) .children li a:before {
  font-family: 'Pe-icon-7-stroke';
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  content: "\e684";
  font-size: 16px;
  vertical-align: middle;
}
#site-navigation .menu li:not(.mega-menu) .sub-menu .sub-menu,
#site-navigation .menu li:not(.mega-menu) .children .sub-menu,
#site-navigation .menu li:not(.mega-menu) .sub-menu .children,
#site-navigation .menu li:not(.mega-menu) .children .children {
  -webkit-transition: 0.5s;
  /* Safari */
  transition: 0.5s;
  top: 0;
  left: -303px;
  min-width: 210px;
}
#site-navigation .menu li:not(.mega-menu) .sub-menu .sub-menu li,
#site-navigation .menu li:not(.mega-menu) .children .sub-menu li,
#site-navigation .menu li:not(.mega-menu) .sub-menu .children li,
#site-navigation .menu li:not(.mega-menu) .children .children li {
  clear: both;
  display: block;
}
#site-navigation .menu li.mega-menu {
  position: static;
}
#site-navigation .menu li.mega-menu .wpb_row {
  margin-bottom: 0;
}
#site-navigation .menu li.mega-menu .sub-menu {
  width: 100%;
  left: 0;
}
#site-navigation .menu li.mega-menu .sub-menu > li {
  width: 100%;
}
#site-navigation .menu li.mega-menu:hover > .sub-menu,
#site-navigation .menu li.mega-menu:hover > .children {
  margin-top: -5px;
}
#site-navigation .menu li:hover > .sub-menu,
#site-navigation .menu li:hover > .children {
  margin-top: 0px;
  visibility: visible;
  opacity: 1;
  z-index: 999;
}
#site-navigation .menu li:hover > .sub-menu > li,
#site-navigation .menu li:hover > .children > li {
  margin-right: 0;
}
#site-navigation .menu > ul > li,
#site-navigation .menu > li {
  position: relative;
  vertical-align: middle;
  line-height: 1;
}
#site-navigation .menu > ul > li a,
#site-navigation .menu > li a {
  position: relative;
  display: block;
  z-index: 1;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  line-height: 1.4em;
}
#site-navigation .sub-menu,
#site-navigation .children {
  position: absolute;
  top: 100%;
  z-index: 2;
  opacity: 0;
  visibility: hidden;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}
#site-navigation .sub-menu li,
#site-navigation .children li {
  position: relative;
}
#site-navigation .sub-menu li a,
#site-navigation .children li a {
  letter-spacing: 0.2em;
}
#site-navigation .sub-menu li a span[class*="pe-7s"],
#site-navigation .children li a span[class*="pe-7s"] {
  font-size: 18px;
  vertical-align: middle;
  margin-top: -3px;
}
@media (min-width: 62rem) {
  .top-menu .menu-item {
    padding: 15px 30px 15px 0;
  }
}
#site-navigation .menu li.mega-menu > .sub-menu .mega-menu-content .vc_row,
#site-navigation .menu li.mega-menu > .children .mega-menu-content .vc_row {
  background-size: cover;
}
#site-navigation .menu li.mega-menu > .sub-menu .mega-menu-content ul:not(.products) li,
#site-navigation .menu li.mega-menu > .children .mega-menu-content ul:not(.products) li {
  width: 100%;
}
#site-navigation .menu li.mega-menu > .sub-menu .mega_menu_shop .woocommerce .products .type-product,
#site-navigation .menu li.mega-menu > .children .mega_menu_shop .woocommerce .products .type-product {
  display: table-row;
  margin-bottom: 10px;
  clear: none;
  padding: 0;
  height: 100px;
}
#site-navigation .menu li.mega-menu > .sub-menu .mega_menu_shop .woocommerce .products .type-product a,
#site-navigation .menu li.mega-menu > .children .mega_menu_shop .woocommerce .products .type-product a {
  border: none!important;
}
#site-navigation .menu li.mega-menu > .sub-menu .mega_menu_shop .woocommerce .products .type-product .image-product-contain,
#site-navigation .menu li.mega-menu > .children .mega_menu_shop .woocommerce .products .type-product .image-product-contain,
#site-navigation .menu li.mega-menu > .sub-menu .mega_menu_shop .woocommerce .products .type-product .woo-content-product,
#site-navigation .menu li.mega-menu > .children .mega_menu_shop .woocommerce .products .type-product .woo-content-product {
  display: table-cell;
  vertical-align: top;
}
#site-navigation .menu li.mega-menu > .sub-menu .mega_menu_shop .woocommerce .products .type-product .image-product-contain,
#site-navigation .menu li.mega-menu > .children .mega_menu_shop .woocommerce .products .type-product .image-product-contain {
  height: 95px;
  width: 95px;
}
#site-navigation .menu li.mega-menu > .sub-menu .mega_menu_shop .woocommerce .products .type-product .image-product-contain img.wp-post-image,
#site-navigation .menu li.mega-menu > .children .mega_menu_shop .woocommerce .products .type-product .image-product-contain img.wp-post-image {
  height: 95px;
  width: 95px;
}
#site-navigation .menu li.mega-menu > .sub-menu .mega_menu_shop .woocommerce .products .type-product .image-product-contain img.wp-post-image:hover,
#site-navigation .menu li.mega-menu > .children .mega_menu_shop .woocommerce .products .type-product .image-product-contain img.wp-post-image:hover {
  opacity: .8;
}
#site-navigation .menu li.mega-menu > .sub-menu .mega_menu_shop .woocommerce .products .type-product .image-product-contain .onsale,
#site-navigation .menu li.mega-menu > .children .mega_menu_shop .woocommerce .products .type-product .image-product-contain .onsale {
  z-index: 2;
  padding: 5px;
  margin: 0;
  right: -20px;
  top: -20px;
}
#site-navigation .menu li.mega-menu > .sub-menu .mega_menu_shop .woocommerce .products .type-product .btn-view-detail,
#site-navigation .menu li.mega-menu > .children .mega_menu_shop .woocommerce .products .type-product .btn-view-detail,
#site-navigation .menu li.mega-menu > .sub-menu .mega_menu_shop .woocommerce .products .type-product .image-product-contain:after,
#site-navigation .menu li.mega-menu > .children .mega_menu_shop .woocommerce .products .type-product .image-product-contain:after,
#site-navigation .menu li.mega-menu > .sub-menu .mega_menu_shop .woocommerce .products .type-product h6,
#site-navigation .menu li.mega-menu > .children .mega_menu_shop .woocommerce .products .type-product h6,
#site-navigation .menu li.mega-menu > .sub-menu .mega_menu_shop .woocommerce .products .type-product .add_to_cart_button,
#site-navigation .menu li.mega-menu > .children .mega_menu_shop .woocommerce .products .type-product .add_to_cart_button {
  display: none !important;
}
#site-navigation .menu li.mega-menu > .sub-menu .mega_menu_shop .woocommerce .products .type-product .woo-content-product div,
#site-navigation .menu li.mega-menu > .children .mega_menu_shop .woocommerce .products .type-product .woo-content-product div {
  display: inline-block;
}
#site-navigation .menu li.mega-menu > .sub-menu .mega_menu_shop .woocommerce .products .type-product .woo-content-product div .col-xs-12,
#site-navigation .menu li.mega-menu > .children .mega_menu_shop .woocommerce .products .type-product .woo-content-product div .col-xs-12 {
  padding-right: 5px;
}
#site-navigation .menu li.mega-menu > .sub-menu .mega_menu_shop .woocommerce .products .type-product .woo-content-product div .col-xs-12 .col-xs-12,
#site-navigation .menu li.mega-menu > .children .mega_menu_shop .woocommerce .products .type-product .woo-content-product div .col-xs-12 .col-xs-12 {
  padding: 0;
}
#site-navigation .menu li.mega-menu > .sub-menu .mega_menu_shop .woocommerce .products .type-product .woo-content-product h4.price,
#site-navigation .menu li.mega-menu > .children .mega_menu_shop .woocommerce .products .type-product .woo-content-product h4.price,
#site-navigation .menu li.mega-menu > .sub-menu .mega_menu_shop .woocommerce .products .type-product .woo-content-product .star-rating,
#site-navigation .menu li.mega-menu > .children .mega_menu_shop .woocommerce .products .type-product .woo-content-product .star-rating,
#site-navigation .menu li.mega-menu > .sub-menu .mega_menu_shop .woocommerce .products .type-product .woo-content-product .col-xs-12,
#site-navigation .menu li.mega-menu > .children .mega_menu_shop .woocommerce .products .type-product .woo-content-product .col-xs-12 {
  text-align: left;
}
#site-navigation .menu li.mega-menu > .sub-menu .mega_menu_shop .woocommerce .products .type-product .woo-content-product h4.price,
#site-navigation .menu li.mega-menu > .children .mega_menu_shop .woocommerce .products .type-product .woo-content-product h4.price {
  margin: 8px 0 15px;
}
#site-navigation .menu li.mega-menu > .sub-menu .mega_menu_shop .woocommerce .products .type-product .woo-content-product a,
#site-navigation .menu li.mega-menu > .children .mega_menu_shop .woocommerce .products .type-product .woo-content-product a {
  border: none !important;
  padding: 0;
}
#site-navigation .menu li.mega-menu > .sub-menu .mega_menu_shop .woocommerce .products .type-product .woo-content-product a h5,
#site-navigation .menu li.mega-menu > .children .mega_menu_shop .woocommerce .products .type-product .woo-content-product a h5 {
  text-transform: none!important;
  text-align: left;
}
#site-navigation .menu li.mega-menu > .sub-menu .mega_menu_shop .woocommerce .products .type-product .woo-content-product a h5:hover,
#site-navigation .menu li.mega-menu > .children .mega_menu_shop .woocommerce .products .type-product .woo-content-product a h5:hover {
  color: inherit!important;
}
#site-navigation .menu li.mega-menu > .sub-menu .mega_menu_shop li,
#site-navigation .menu li.mega-menu > .children .mega_menu_shop li,
#site-navigation .menu li.mega-menu > .sub-menu .mega_menu_shop a,
#site-navigation .menu li.mega-menu > .children .mega_menu_shop a {
  border-color: #DEDEDE!important;
  color: #111;
}
#site-navigation .menu li.mega-menu > .sub-menu .mega_menu_shop li:hover,
#site-navigation .menu li.mega-menu > .children .mega_menu_shop li:hover,
#site-navigation .menu li.mega-menu > .sub-menu .mega_menu_shop a:hover,
#site-navigation .menu li.mega-menu > .children .mega_menu_shop a:hover {
  color: #1674D1;
}
#site-navigation .menu li.mega-menu > .sub-menu .mega_menu_shop ul li:first-child a,
#site-navigation .menu li.mega-menu > .children .mega_menu_shop ul li:first-child a {
  border-color: #DEDEDE!important;
}
#site-navigation #primary-menu li .sub-menu .woocommerce li > a {
  padding: 0!important;
  border: none!important;
}
#site-navigation #primary-menu li .sub-menu li .image-product-contain a {
  position: absolute;
  display: block;
  height: 100%;
  width: 100%;
}
/*--------------------------------------------
Sidebar
----------------------------------------------*/
.sidebar .widget,
.wpb_widgetised_column .widget {
  margin-bottom: 40px;
}
.sidebar .widget .tagcloud a,
.wpb_widgetised_column .widget .tagcloud a {
  margin-right: 8px;
  margin-bottom: 8px;
  font-size: 14px;
  color: #999;
  border: 1px solid #eee;
  padding: 10px 20px;
  display: inline-block;
  text-transform: capitalize;
  font-size: 14px!important;
}
.sidebar .widget .tagcloud a:hover,
.wpb_widgetised_column .widget .tagcloud a:hover,
.sidebar .widget .tagcloud a:focus,
.wpb_widgetised_column .widget .tagcloud a:focus {
  border-color: #1674D1;
  color: #1674D1;
}
.sidebar .widget .menu li,
.wpb_widgetised_column .widget .menu li {
  margin: 0;
  padding: 0;
  border-bottom-color: #FFFFFF;
  border-bottom-width: 2px;
}
.sidebar .widget .menu li:hover a,
.wpb_widgetised_column .widget .menu li:hover a,
.sidebar .widget .menu li.current-menu-item a,
.wpb_widgetised_column .widget .menu li.current-menu-item a {
  background-color: #1674D1;
  color: #fff;
}
.sidebar .widget .menu li a,
.wpb_widgetised_column .widget .menu li a {
  padding: 18px 20px;
  display: block;
  background-color: #F4F4F4;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 400;
  color: #111;
  letter-spacing: 0.1em;
}
.sidebar .widget-title,
.wpb_widgetised_column .widget-title {
  line-height: 1;
  text-transform: uppercase;
  display: inline-block;
  margin-bottom: 20px;
  color: #111;
}
.sidebar ul li:first-child {
  border-top: 1px solid #EEEEEE;
  padding-top: 10px;
}
.sidebar ul li,
.wpb_widgetised_column ul li,
.sidebar .recent-posts__item,
.wpb_widgetised_column .recent-posts__item {
  display: block;
  border-bottom: 1px solid #EEEEEE;
  padding-bottom: 10px;
  margin-bottom: 10px;
  -webkit-hyphens: auto;
  -moz-hyphens: auto;
  -ms-hyphens: auto;
  hyphens: auto;
  word-wrap: break-word;
}
.sidebar .recent-posts__item,
.wpb_widgetised_column .recent-posts__item {
  margin-bottom: 20px;
  padding-bottom: 20px;
}
.sidebar .recent-posts > div:last-child,
.wpb_widgetised_column .recent-posts > div:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}
.sidebar .widget_search .search-form,
.wpb_widgetised_column .widget_search .search-form {
  position: relative;
  margin-top: -20px;
}
.sidebar .widget_search span,
.wpb_widgetised_column .widget_search span {
  font-size: 0;
}
.sidebar .widget_search span:before,
.wpb_widgetised_column .widget_search span:before {
  content: "\f002";
  font-size: 16px;
  position: absolute;
  right: 1px;
  top: 23px;
  background-color: #EEEEEE;
  text-align: center;
  height: 47px;
  line-height: 47px;
  width: 48px;
  display: block;
}
.sidebar .widget_search input[type="search"],
.wpb_widgetised_column .widget_search input[type="search"] {
  border: 1px solid #DDDDDD;
  background-color: #fff;
  padding: 15px;
  margin-bottom: 0;
}
.sidebar .widget_search .search-submit,
.wpb_widgetised_column .widget_search .search-submit {
  display: none;
}
.sidebar-contain {
  padding-right: 0px;
}
/*--------------------------------------------
Mini Cart
----------------------------------------------*/
.mini-cart {
  padding: 0 15px;
  position: relative;
}
.site-top .mini-cart {
  display: inline-block;
  top: 4px;
  padding: 0;
}
.site-top .mini-cart .mini-cart__button .mini-cart-icon:after {
  right: -90px;
  top: -12px;
}
.mini-cart .mini-cart__button {
  line-height: 1em;
  cursor: pointer;
}
.mini-cart .mini-cart__button .mini-cart-icon {
  position: relative;
  z-index: 2;
}
.mini-cart .mini-cart__button .mini-cart-icon:before {
  font-family: 'Pe-icon-7-stroke';
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  content: "\e615";
  font-size: 20px;
  float: none;
  width: auto;
  height: auto;
  line-height: normal;
  border: none;
  margin: 0;
}
.mini-cart .mini-cart__button .mini-cart-icon:after {
  font-family: inherit;
  content: attr(data-count);
  font-size: 12px;
  font-weight: 600;
  text-align: center;
  position: absolute;
  top: -16px;
  right: -12px;
  min-width: 20px;
  line-height: 20px;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  border-radius: 100%;
}
.mini-cart .widget_shopping_cart_content {
  padding-top: 15px;
  position: absolute;
  margin-top: 20px;
  right: 0;
  top: 140%;
  width: 300px;
  max-height: 700px;
  overflow: auto;
  opacity: 0;
  visibility: hidden;
  z-index: 99999;
  background-color: #fff;
  border-top: 2px solid transparent;
  box-shadow: 0 6px 12px 0 rgba(0, 0, 0, 0.2);
  -webkit-box-shadow: 0 6px 12px 0 rgba(0, 0, 0, 0.2);
  -webkit-transition: all 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
  -moz-transition: all 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
  -o-transition: all 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: all 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.mini-cart .widget_shopping_cart_content .cart_list li {
  padding: 0 15px 10px;
  margin-bottom: 10px;
  border-bottom: 1px solid #EEEEEE;
}
.mini-cart .widget_shopping_cart_content .cart_list li a {
  font-weight: 700;
}
.mini-cart .widget_shopping_cart_content .cart_list li img {
  width: 70px;
  margin: 0 10px 0 0;
  float: left;
}
.mini-cart .widget_shopping_cart_content .cart_list li .quantity {
  display: block;
  color: #666;
  font-size: 12px;
}
.mini-cart .widget_shopping_cart_content .cart_list li .remove {
  font-size: 20px;
  height: 20px;
  width: 20px;
  text-align: center;
  line-height: 15px;
  float: right;
  position: relative;
  display: inline-block;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  border-radius: 100%;
}
.mini-cart .widget_shopping_cart_content .cart_list li .remove:hover {
  color: #1674D1;
}
.mini-cart .widget_shopping_cart_content .total {
  padding: 5px 15px 5px;
  margin-bottom: 0;
  text-align: center;
}
.mini-cart .widget_shopping_cart_content .buttons {
  text-align: center;
  margin-bottom: 0;
}
.mini-cart .widget_shopping_cart_content .wc-forward {
  display: inline-block;
  color: #111;
  padding: 5px 10px;
  margin: 10px 3px 15px;
  text-transform: uppercase;
  font-weight: 700;
}
.mini-cart .widget_shopping_cart_content .wc-forward:hover {
  color: #1674D1;
}
.mini-cart.open .widget_shopping_cart_content {
  opacity: 1;
  visibility: visible;
  top: 100%;
}
.title-cart {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 12px;
  margin-right: 40px;
}
.search-cart {
  padding-right: 0!important;
  top: -2px;
  position: relative;
}
.search-cart.cart-right {
  position: absolute;
  right: 0;
}
.search-cart.cart-right .mini-cart {
  padding: 22px 22px 16px 18px;
  margin-top: -20px;
}
/* Post Like System */
[data-icon]:before {
  content: attr(data-icon);
}
[data-icon]:before,
.icon-gear:before,
.icon-like:before,
.icon-unlike:before {
  display: inline-block;
  font-family: "FontAwesome";
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  line-height: 1;
  text-decoration: inherit;
  text-rendering: optimizeLegibility;
  text-transform: none;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  font-smoothing: antialiased;
}
.icon-like:before {
  content: "\f08a";
}
.icon-unlike:before {
  content: "\f004";
}
.icon-gear:before {
  content: "\f021";
  -webkit-animation: spin 2s infinite linear;
  -moz-animation: spin 2s infinite linear;
  -o-animation: spin 2s infinite linear;
  animation: spin 2s infinite linear;
}
@-moz-keyframes spin {
  0% {
    -moz-transform: rotate(0deg);
  }
  100% {
    -moz-transform: rotate(359deg);
  }
}
@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(359deg);
  }
}
@-o-keyframes spin {
  0% {
    -o-transform: rotate(0deg);
  }
  100% {
    -o-transform: rotate(359deg);
  }
}
@keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg);
  }
}
a.jm-post-like {
  font-weight: normal;
  display: inline-block;
  width: auto;
  -moz-transition: all 0.3s ease-out 0.2s;
  -webkit-transition: all 0.3s ease-out 0.2s;
  -o-transition: all 0.3s ease-out 0.2s;
}
a.jm-post-like.liked {
  color: #da1b1b;
}
a.jm-post-like:hover,
a.jm-post-like:active,
a.jm-post-like:focus,
a.liked:hover,
a.liked:active,
a.liked:focus {
  color: #000;
}
/*--------------------------------------------------------------
Page
--------------------------------------------------------------*/
.big-title,
.big-title--single {
  position: relative;
  background-position: top;
  margin-bottom: 50px;
  background-size: cover;
}
.big-title h1,
.big-title--single h1 {
  text-transform: uppercase;
}
.big-title .container,
.big-title--single .container {
  position: relative;
  z-index: 1;
}
.big-title:after,
.big-title--single:after {
  content: '';
  margin: auto;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}
.big-title.shop-title,
.big-title--single.shop-title {
  padding: 85px 0;
}
.big-title.shop-title *,
.big-title--single.shop-title * {
  color: #fff;
}
.big-title.shop-title:after,
.big-title--single.shop-title:after {
  display: none;
}
.big-title.shop-title .entry-desc,
.big-title--single.shop-title .entry-desc {
  font-size: 15px;
  letter-spacing: 0.05em;
}
.taxonomy-description {
  margin-top: -100px;
  padding-bottom: 50px;
  display: block;
  font-size: 20px;
}
.archive .big-title .entry-title {
  padding-left: 0;
}
.pagination {
  display: block;
  width: 100%;
  text-align: center;
  margin-bottom: 70px;
}
.pagination a,
.pagination span {
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  display: inline-block;
  border: 2px solid #eee;
  margin-right: 10px;
}
.pagination a.current,
.pagination span.current,
.pagination a:hover,
.pagination span:hover {
  color: #1674D1;
  border-color: #1674D1;
}
.pagination .next,
.pagination .prev {
  width: auto;
  border: none;
  font-size: 0;
  color: #999;
  border: 2px solid #eee;
  padding: 0 15px;
  vertical-align: bottom;
  line-height: 35px;
}
.pagination .next::before {
  content: '»';
  font-size: 14px;
}
.pagination .prev::after {
  content: '«';
  font-size: 14px;
}
.title-arrow {
  background-color: #1372D1;
  padding: 15px 25px;
  position: relative;
  letter-spacing: 0.1em;
}
.title-arrow:after {
  content: '';
  width: 0;
  height: 0;
  border-top: 34px solid transparent;
  border-bottom: 34px solid transparent;
  border-left: 34px solid #1372D1;
  position: absolute;
  right: -34px;
  top: 0;
}
.section-title h1,
.section-title h2,
.section-title h3,
.section-title h4,
.section-title h5,
.section-title h6 {
  letter-spacing: 0.15em;
  line-height: 1.2em;
}
.error404 .site-main {
  text-transform: uppercase;
}
.error404 .site-main > .row {
  min-height: 100vh;
}
.error404 .site-main > .row h5 {
  letter-spacing: 1em;
}
.error404 .site-main > .row h1 {
  margin-top: 20px;
  margin-bottom: 20px;
  letter-spacing: 0.2em;
}
.error404 .content-area {
  background: url("../images/404-bg.jpg") no-repeat center center #ffffff;
  background-size: cover;
}
.error404 .copyright .left {
  padding-top: 36px;
  padding-bottom: 35px;
}
.comming-soon .mc4wp-form form > h3 {
  display: none!important;
}
.comming-soon .mc4wp-form form .input {
  margin-left: 0 !important;
  background: #fff;
  border-color: #fff;
  color: #878787;
  max-width: 500px;
}
.comming-soon.social-menu ul li:first-child {
  margin-left: 0;
}
.comming-soon.social-menu ul li a:before {
  font-size: 20px;
  color: #111;
}
.comming-soon.social-menu ul li a:hover:before {
  color: #1674D1;
}
.color-white.countdown-clock h5 {
  color: #fff;
}
@media (min-width: 75rem) {
  .page .vc_row {
    margin-right: 0;
    margin-left: 0;
  }
}
.vc_row .wpb_column .row {
  margin-left: 0;
  margin-right: 0;
}
.social-menu.link-black ul li a {
  color: #111;
}
.social-menu.link-black ul li a:hover {
  color: #1674D1;
}
.social-menu.link-black ul li a:before {
  font-size: 20px;
}
@media (max-width: 74.9375rem) {
  .md-reset-padding.wpb_column {
    padding: 10px !important;
  }
  .md-reset-padding-left-right.wpb_column {
    padding-left: 10px !important;
    padding-right: 10px !important;
  }
}
@media (max-width: 1700px) {
  .matchHeight .md-reset-padding.wpb_column {
    padding: 50px !important;
  }
}
@media (max-width: 74.9375rem) {
  .xs-reset-padding-left-right-50.wpb_column,
  .xs-reset-padding-left-right.wpb_column {
    padding-left: 50px !important;
    padding-right: 50px !important;
  }
}
@media (max-width: 47.9375rem) {
  .xs-reset-padding.wpb_column {
    padding: 10px !important;
  }
  .xs-reset-padding-btm-50.wpb_column {
    padding-bottom: 50px !important;
  }
  .xs-reset-padding-top-50.wpb_column {
    padding-top: 50px !important;
  }
  .xs-reset-margin-top-50.wpb_content_element {
    margin-top: 50px !important;
  }
  .xs-reset-padding-left-right.wpb_column {
    padding-left: 10px !important;
    padding-right: 10px !important;
  }
  .xs-reset-padding-left-right-50.wpb_column {
    padding-left: 50px !important;
    padding-right: 50px !important;
  }
  h1 {
    font-size: 2em!important;
  }
  .xs-center-image .wpb_column .wpb_wrapper {
    text-align: center;
  }
  .recent-posts.type_1 .recent-posts-desc,
  .recent-posts.type_1 .recent-posts__thumb {
    width: 100%!important;
  }
  .recent-posts.type_1 .recent-posts-desc {
    padding-bottom: 20px !important;
  }
  .recent-posts.type_1 .recent-posts__thumb {
    -webkit-order: -1 !important;
    -ms-flex-order: -1 !important;
    order: -1 !important;
  }
  .recent-posts.type_1 .recent-posts__thumb:after {
    display: none;
  }
  .xs-button-margin .btn {
    margin-bottom: 10px;
  }
}
.woocommerce .site-content {
  min-height: 840px;
}
/*--------------------------------------------
Post
----------------------------------------------*/
.single-post .post-thumb img {
  width: 100%!important;
}
.post-thumb {
  position: relative;
  text-align: center;
  overflow: hidden;
  margin-bottom: 35px;
}
.post-thumb .dates {
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 20px 30px;
  background-color: #fff;
  line-height: 1.2;
}
.post-thumb .dates:after {
  content: '';
  position: absolute;
  top: 0;
  right: -50px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 130px 0 0 50px;
  border-color: transparent transparent transparent #FFFFFF;
}
.post-thumb .month {
  font-weight: 600;
  display: block;
}
.post-thumb .date {
  font-weight: 700;
  display: block;
  font-size: 30px;
}
.post-thumb .year {
  font-style: italic;
  font-weight: 600;
}
.hentry {
  margin-bottom: 50px;
}
.hentry .entry-header {
  margin-bottom: 15px;
}
.hentry .entry-header h2 {
  font-size: 30px;
  letter-spacing: 0;
  line-height: 1.3;
  -webkit-hyphens: auto;
  -moz-hyphens: auto;
  -ms-hyphens: auto;
  hyphens: auto;
  word-wrap: break-word;
}
.hentry .entry-meta span {
  padding-right: 35px;
  display: inline-block;
  margin-bottom: 15px;
}
@media (max-width: 74.9375rem) {
  .hentry .entry-meta span {
    margin-bottom: 10px;
  }
}
.hentry .entry-meta i {
  margin-right: 5px;
}
.hentry .share a {
  margin-left: 10px;
}
.hentry .entry-footer {
  overflow: hidden;
}
.hentry .read-more {
  text-transform: uppercase;
  letter-spacing: .1em;
  border-top: 1px solid #DDDDDD;
  padding: 20px 10px 10px 20px;
  display: inline-block;
  position: relative;
}
.hentry .read-more:before {
  content: '';
  position: absolute;
  right: -87px;
  top: 0;
  height: 300px;
  width: 1px;
  background-color: #DDDDDD;
  -webkit-transform: skew(30deg, 0);
  -moz-transform: skew(30deg, 0);
  -ms-transform: skew(30deg, 0);
  -o-transform: skew(30deg, 0);
}
.hentry .read-more:after {
  content: '';
  position: absolute;
  right: -1029px;
  width: 1000px;
  bottom: 0;
  height: 1px;
  background-color: #DDDDDD;
}
.hentry .read-more span:after {
  content: "\f061";
  margin-left: 10px;
}
@media (min-width: 75rem) {
  .single-post .col-md-9 {
    padding-left: 0;
  }
}
.single-post .entry-title {
  text-transform: uppercase;
  color: #1674D1;
  margin: 30px 0 30px 0;
}
.single-post .entry-footer {
  border-bottom: 1px solid #dddddd;
  padding-bottom: 10px;
}
.single-post .entry-meta {
  margin-bottom: 25px;
}
.single-post .entry-meta span,
.single-post .entry-meta a {
  color: #aaa;
  text-transform: uppercase;
  font-size: 10px;
  letter-spacing: 0.3em;
}
.single-post .entry-meta span i,
.single-post .entry-meta a i {
  letter-spacing: 0;
}
.single-post .entry-meta span i:before,
.single-post .entry-meta a i:before {
  font-size: 12px;
}
.single-post .tags {
  display: block;
  clear: both;
  text-transform: uppercase;
  color: #111;
  margin-top: 30px;
}
.single-post .tags a {
  margin-left: 8px;
  font-size: 14px;
  color: #999;
  border: 1px solid #eee;
  padding: 10px 20px;
  display: inline-block;
  text-transform: capitalize;
}
.single-post .tags a:hover,
.single-post .tags a:focus {
  border-color: #1674D1;
  color: #1674D1;
}
.single-post .share {
  display: block;
  clear: both;
  margin-top: 40px;
}
.single-post .share h5,
.single-post .tags h5 {
  text-transform: uppercase;
  color: #111;
  margin-right: 8px;
  display: inline-block;
}
.single-post .comment-form,
.page .comment-form {
  box-sizing: border-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex: 0 1 auto;
  -ms-flex: 0 1 auto;
  flex: 0 1 auto;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-left: -0.9375rem;
  margin-right: -0.9375rem;
}
.single-post .comment-form:before,
.page .comment-form:before,
.single-post .comment-form:after,
.page .comment-form:after {
  display: none !important;
}
.single-post .comment-form .form-submit,
.page .comment-form .form-submit,
.single-post .comment-form .logged-in-as,
.page .comment-form .logged-in-as {
  padding: 0 15px;
}
.single-post .comment-reply-title,
.page .comment-reply-title,
.single-post .comments-title,
.page .comments-title {
  position: relative;
  text-transform: uppercase;
  font-size: 14px;
  color: #111;
}
.single-post .comments-title,
.page .comments-title {
  margin-bottom: 30px;
  margin-top: 70px;
}
.single-post .comment-reply-title,
.page .comment-reply-title {
  margin: 45px 0 40px 0;
}
.single-post #comments,
.page #comments {
  margin-top: 20px;
}
.single-post #commentform > div p,
.page #commentform > div p {
  margin-bottom: 0;
}
.single-post #commentform .col-md-6:first-child,
.page #commentform .col-md-6:first-child {
  padding-right: 8px;
}
.single-post #commentform .col-md-6:nth-child(2),
.page #commentform .col-md-6:nth-child(2) {
  padding-left: 8px;
}
.single-post .comment,
.page .comment {
  position: relative;
}
.single-post .comment > div,
.page .comment > div {
  background-color: transparent;
  border-bottom: 1px solid #eeeeee;
  padding: 20px 0;
}
.single-post .comment .comment-author,
.page .comment .comment-author {
  float: none;
  display: inline-block;
  vertical-align: top;
  width: 15%;
  padding-right: 20px;
  margin-right: 0;
}
.single-post .comment .comment-author img,
.page .comment .comment-author img {
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
}
.single-post .comment .comment-content,
.page .comment .comment-content {
  display: inline-block;
  vertical-align: top;
  width: 75%;
}
.single-post .comment .comment-content cite.fn,
.page .comment .comment-content cite.fn {
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 0.2em;
  color: #111;
  display: block;
}
.single-post .comment .comment-content .metadata > a,
.page .comment .comment-content .metadata > a {
  font-size: 12px;
  color: #aaa;
  display: inline-block;
  margin-bottom: 15px;
  margin-top: 8px;
}
.single-post .comment .comment-content .metadata > br,
.page .comment .comment-content .metadata > br {
  display: none;
}
.single-post .comment .comment-content p,
.page .comment .comment-content p {
  color: #888;
  margin-bottom: 0;
}
.single-post .comment .comment-reply-link,
.page .comment .comment-reply-link {
  position: absolute;
  top: 10px;
  right: 0px;
  font-size: 12px;
  text-transform: capitalize;
  letter-spacing: 0.3em;
  padding-top: 3px;
  padding-bottom: 0px;
  background: none;
  color: #111;
}
.single-post .comment .comment-reply-link:hover,
.page .comment .comment-reply-link:hover {
  color: #1674D1;
}
@media (min-width: 62rem) {
  .single-post .comment .children > li > div,
  .page .comment .children > li > div {
    padding-left: 100px;
  }
}
.single-post .comment .fn,
.page .comment .fn {
  font-style: normal;
  font-size: 16px;
  text-transform: uppercase;
}
.author-info {
  padding: 50px 0;
}
.author-info .author-avatar,
.author-info .author-desc {
  display: inline-block;
}
.author-info .author-avatar {
  float: none;
  width: 15%;
  padding-right: 20px;
  margin-right: 0;
}
.author-info .author-avatar img {
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
}
.author-info .author-name,
.author-info .author-text {
  margin-bottom: 10px;
}
.author-info .author-name a {
  color: #111;
}
.author-info .author-email a {
  color: #1674D1;
}
.author-info .author-desc {
  width: 80%;
  vertical-align: top;
}
.comment-list {
  list-style: none;
  margin-bottom: 30px;
}
.comment-list .children {
  list-style: none;
  margin: 0;
}
.content-contain {
  padding-left: 0;
}
article.sticky .post-table-sub-content .dates:after {
  content: "";
}
@media (min-width: 62rem) {
  article.sticky .post-table-sub-content .dates:after {
    background-image: url('data:image/png;base64,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');
    margin-left: -15px;
    display: inline-block;
    margin-top: -10px;
    position: relative;
    z-index: -1;
    background-position: bottom left;
    height: 50px;
    width: 70px;
  }
}
.post-table {
  display: block;
  position: relative;
}
.post-table-sub-content {
  width: 92px;
  vertical-align: top;
}
.post-table-sub-content > .dates {
  display: inline-block;
  background-color: #1674D1;
  color: #fff;
  height: 70px;
  width: 70px;
  letter-spacing: 0.3em;
  padding: 15px 0 0 15px;
}
.post-table-sub-content > .dates span {
  display: block;
  text-transform: uppercase;
  line-height: 1.2em;
  font-size: 12px;
}
.post-table-sub-content {
  margin-bottom: 20px;
}
@media (min-width: 62rem) {
  .post-table-sub-content {
    position: absolute;
  }
}
@media (max-width: 74.9375rem) {
  .post-table-sub-content {
    width: auto;
  }
  .post-table-sub-content .dates {
    display: inline-block;
    width: auto;
    height: auto;
    padding: 10px 20px;
  }
  .post-table-sub-content .dates span {
    display: inline-block;
  }
}
@media (min-width: 62rem) {
  .post-table-content {
    padding-left: 90px;
  }
}
.post-table-content,
.post-table-sub-content {
  display: block;
}
.post-table-content .entry-meta,
.post-table-sub-content .entry-meta {
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: 0.3em;
  color: #AAAAAA;
}
.post-table-content .entry-meta i:before,
.post-table-sub-content .entry-meta i:before {
  font-size: 14px;
}
.post-table-content .entry-title,
.post-table-sub-content .entry-title {
  text-transform: uppercase;
}
.post-table-content .entry-title a,
.post-table-sub-content .entry-title a {
  color: #111;
}
.post-table-content .entry-title a:hover,
.post-table-sub-content .entry-title a:hover {
  color: #1674D1;
}
.projects .page-numbers.current {
  color: #111;
  border-color: #999;
}
.paginatio2 {
  margin-bottom: 70px;
  text-align: center;
}
.paginatio2 span,
.paginatio2 a {
  display: inline-block;
  margin-right: 10px;
  color: #aaa;
  line-height: 1.6em;
  letter-spacing: 0.2em;
  font-size: 14px;
  border: 2px solid #ccc;
  font-weight: 400;
  padding: 10px 18px 0px;
}
.paginatio2 span:hover,
.paginatio2 a:hover {
  color: #1674D1;
  border-color: #1674D1;
}
.paginatio2 span.current {
  color: #1674D1;
  border-color: #1674D1;
}
.paginatio2 .next,
.paginatio2 .prev {
  width: auto;
  border: none;
  font-size: 0;
  color: #999;
  border: 2px solid #ccc;
  padding: 13px 18px 0px;
  vertical-align: bottom;
  padding-top: 20px;
}
.paginatio2 .next::before {
  content: '»';
  font-size: 14px;
}
.paginatio2 .prev::after {
  content: '«';
  font-size: 14px;
}
.postcontent-type02,
.postcontent-masonry {
  box-sizing: border-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex: 0 1 auto;
  -ms-flex: 0 1 auto;
  flex: 0 1 auto;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-left: -0.9375rem;
  margin-right: -0.9375rem;
}
.postcontent-type02:before,
.postcontent-masonry:before,
.postcontent-type02:after,
.postcontent-masonry:after {
  display: none !important;
}
.postcontent-type02 article.project .post-thumb img,
.postcontent-masonry article.project .post-thumb img {
  width: 100%;
}
.postcontent-type02 article.post .post-thumb,
.postcontent-masonry article.post .post-thumb,
.postcontent-type02 article.project .post-thumb,
.postcontent-masonry article.project .post-thumb {
  margin-bottom: -1px;
}
.postcontent-type02 article.post .postcontent-gird,
.postcontent-masonry article.post .postcontent-gird,
.postcontent-type02 article.project .postcontent-gird,
.postcontent-masonry article.project .postcontent-gird {
  border: 1px solid #eee;
}
.postcontent-type02 article.post .postcontent-gird-content,
.postcontent-masonry article.post .postcontent-gird-content,
.postcontent-type02 article.project .postcontent-gird-content,
.postcontent-masonry article.project .postcontent-gird-content {
  padding: 30px 20px 0 30px;
}
.postcontent-type02 article.post .postcontent-gird-content .entry-meta,
.postcontent-masonry article.post .postcontent-gird-content .entry-meta,
.postcontent-type02 article.project .postcontent-gird-content .entry-meta,
.postcontent-masonry article.project .postcontent-gird-content .entry-meta {
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: 0.2em;
  color: #AAAAAA;
}
.postcontent-type02 article.post .postcontent-gird-content .entry-title,
.postcontent-masonry article.post .postcontent-gird-content .entry-title,
.postcontent-type02 article.project .postcontent-gird-content .entry-title,
.postcontent-masonry article.project .postcontent-gird-content .entry-title {
  text-transform: uppercase;
}
.postcontent-type02 article.post .postcontent-gird-content .entry-title a,
.postcontent-masonry article.post .postcontent-gird-content .entry-title a,
.postcontent-type02 article.project .postcontent-gird-content .entry-title a,
.postcontent-masonry article.project .postcontent-gird-content .entry-title a {
  color: #111;
}
.postcontent-type02 article.post .postcontent-gird-content .entry-title a:hover,
.postcontent-masonry article.post .postcontent-gird-content .entry-title a:hover,
.postcontent-type02 article.project .postcontent-gird-content .entry-title a:hover,
.postcontent-masonry article.project .postcontent-gird-content .entry-title a:hover {
  color: #1674D1;
}
.postcontent-type02 article.post .postcontent-gird-bottom,
.postcontent-masonry article.post .postcontent-gird-bottom,
.postcontent-type02 article.project .postcontent-gird-bottom,
.postcontent-masonry article.project .postcontent-gird-bottom {
  border-top: 1px solid #eee;
  padding: 10px 30px 10px 30px;
}
.postcontent-type02 article.post .postcontent-gird-bottom span.comments-counts,
.postcontent-masonry article.post .postcontent-gird-bottom span.comments-counts,
.postcontent-type02 article.project .postcontent-gird-bottom span.comments-counts,
.postcontent-masonry article.project .postcontent-gird-bottom span.comments-counts {
  float: right;
}
.postcontent-masonry article.post,
.postcontent-masonry article.project {
  display: block;
  margin-bottom: 30px;
}
.postcontent-masonry article.post .post-gallery.owl-carousel,
.postcontent-masonry article.project .post-gallery.owl-carousel,
.postcontent-masonry article.post .post-quote,
.postcontent-masonry article.project .post-quote,
.postcontent-masonry article.post .post-video,
.postcontent-masonry article.project .post-video {
  margin-bottom: 0;
}
.postcontent-masonry article.post .postcontent-gird,
.postcontent-masonry article.project .postcontent-gird {
  border: 1px solid #eee;
}
.postcontent-masonry article.post .postcontent-gird-content,
.postcontent-masonry article.project .postcontent-gird-content {
  display: block;
  background-color: #fff;
  padding: 30px 20px 30px 30px;
}
.postcontent-masonry article.post .postcontent-gird-content .entry-title,
.postcontent-masonry article.project .postcontent-gird-content .entry-title {
  text-transform: capitalize;
  letter-spacing: 0.05em;
}
.postcontent-masonry article.post .postcontent-gird-content .entry-title a,
.postcontent-masonry article.project .postcontent-gird-content .entry-title a {
  font-size: 24px;
  line-height: 1.2em;
  color: #111;
}
.postcontent-masonry article.post .postcontent-gird-content .entry-title a:hover,
.postcontent-masonry article.project .postcontent-gird-content .entry-title a:hover {
  color: #1674D1;
}
.postcontent-masonry article.post .postcontent-gird-content .entry-meta,
.postcontent-masonry article.project .postcontent-gird-content .entry-meta {
  margin-right: 10px;
}
.postcontent-masonry article.post .postcontent-gird-content .entry-meta span,
.postcontent-masonry article.project .postcontent-gird-content .entry-meta span {
  padding-right: 10px;
  font-size: 10px;
}
.postcontent-type03 article.post:nth-child(even) .recent-posts__thumb {
  -webkit-order: 1;
  -ms-flex-order: 1;
  order: 1;
}
.postcontent-type03 article.post:nth-child(even) .recent-posts__thumb:after {
  background: url('../images/pre_thumb-02.png') repeat-y center right;
  left: 0;
}
.blog16.wpb_widgetised_column .widget {
  margin-bottom: 30px;
}
.blog16.wpb_widgetised_column .widget_nav_menu {
  text-align: center;
  border: 1px solid #DDDDDD;
  padding: 20px 0;
}
.blog16.wpb_widgetised_column .widget_search form {
  margin: 0;
  position: relative;
}
.blog16.wpb_widgetised_column .widget_search form label:after {
  content: "\f002";
  font-family: 'FontAwesome';
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  display: block;
  position: absolute;
  top: 2px;
  right: 2px;
  padding: 15px;
  background-color: #fff;
}
.blog16.wpb_widgetised_column .widget_recent_entries ul li a {
  display: block;
}
.blog16.wpb_widgetised_column .widget_recent_entries ul li span {
  font-size: 12px;
}
.blog16.wpb_widgetised_column .menu-social-container .menu li:first-child {
  margin-left: 0;
}
.blog16.wpb_widgetised_column .menu-social-container .menu li a {
  padding: 0;
  background: none;
}
.blog16.wpb_widgetised_column .menu-social-container .menu li a:hover {
  color: #1674D1;
}
.blog16.wpb_widgetised_column .mc4wp-form {
  text-align: center;
  background-color: #EEEEEE;
  padding: 20px 15px;
}
.blog16.wpb_widgetised_column .mc4wp-form input,
.blog16.wpb_widgetised_column .mc4wp-form button {
  margin-left: 0!important;
  width: 100%;
  text-align: center;
}
.blog16.wpb_widgetised_column .mc4wp-form input {
  background-color: #fff;
  border-color: #DDDDDD;
  color: #111;
}
.blog16.wpb_widgetised_column .mc4wp-form input:focus {
  border-color: #111;
}
.blog16.wpb_widgetised_column .mc4wp-form input[type="submit"] {
  background-color: #1674D1;
  border-color: #1674D1;
  color: #fff;
}
.blog16.wpb_widgetised_column .mc4wp-form h3 {
  color: #111;
  font-size: 18px;
  letter-spacing: 0.3em;
}
@media (min-width: 62rem) {
  .portfolio-metadata {
    padding-right: 20px;
  }
}
.portfolio-metadata h1,
.portfolio-metadata h2,
.portfolio-metadata h3,
.portfolio-metadata h4,
.portfolio-metadata h5,
.portfolio-metadata h6 {
  display: inline-block;
  margin-right: 10px;
}
.portfolio-metadata .metadata {
  display: inline-block;
}
.portfolio-metadata .metadata > span {
  margin-left: 10px;
}
.portfolio-metadata .btn-visit-site {
  margin-top: 20px;
  display: block;
}
.portfolio-metadata > div {
  margin-bottom: 15px;
}
.single-project .portfolio-metadata .metadata {
  color: #999;
}
@media (min-width: 75rem) {
  .single-project .post-navigation {
    margin: 0px -100% 0px;
    position: relative;
  }
  .single-project .entry-content > .vc_row > .vc_column_container {
    padding: 0;
  }
}
.post-navigation {
  border-bottom: 1px solid #EEEEEE;
  border-top: 1px solid #EEEEEE;
  padding: 45px 0;
}
.post-navigation .screen-reader-text {
  display: none;
}
.post-navigation .nav-links {
  max-width: 1170px;
  width: 100%;
  margin: 0 auto;
}
.post-navigation .nav-links a {
  color: #111;
}
.post-navigation .nav-links a:hover {
  color: #1674D1;
}
.single .nav-links .nav-previous a:before {
  left: -10px;
}
.single .nav-links .nav-next a:before {
  right: -10px;
}
.nav-links .nav-previous {
  float: left;
}
.nav-links .nav-previous a {
  padding-left: 22px;
}
.nav-links .nav-previous a:before {
  content: "\e686";
  left: 0;
}
@media (max-width: 47.9375rem) {
  .nav-links .nav-previous {
    width: 100%;
    text-align: left;
  }
}
.nav-links .nav-next {
  float: right;
}
.nav-links .nav-next a {
  padding-right: 22px;
}
.nav-links .nav-next a:before {
  content: "\e684";
  right: 0;
}
@media (max-width: 47.9375rem) {
  .nav-links .nav-next {
    width: 100%;
    text-align: right;
  }
}
.nav-links a {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  line-height: 1.2em;
  display: inline-block;
  position: relative;
}
.nav-links a:before {
  font-family: 'Pe-icon-7-stroke';
  font-size: 30px;
  position: absolute;
  top: 50%;
  margin-top: -8px;
}
.nav-links .portfolio-home-btn {
  position: absolute;
  left: 50%;
  margin-left: -6px;
  top: 50%;
  margin-top: -6px;
  width: 12px;
  height: 12px;
  background: url("../images/home-menu-icon.png") center center no-repeat;
}
@media (max-width: 47.9375rem) {
  .nav-links .portfolio-home-btn {
    display: none;
  }
}
.woo-content-product h5 {
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-top: 15px;
}
.woo-content-product .amount {
  font-size: 14px;
  color: #1674D1;
  letter-spacing: 0.05em;
  font-weight: 400;
}
.woo-content-product .star-rating {
  margin: 0 auto!important;
}
.related-projects {
  margin-bottom: 100px;
  margin-top: 50px;
}
@media (min-width: 75rem) {
  .related-projects > .row {
    margin-right: -30px;
    margin-left: -30px;
  }
}
.related-projects-title {
  margin: 20px 0;
  text-transform: uppercase;
}
.related-projects .related-projects-title {
  margin: 60px 0 40px 0;
}
.related-projects .project-title {
  text-transform: uppercase;
  margin: 15px 0 5px 0;
  font-size: 15px;
}
.related-projects .project-title a {
  color: #111;
}
.related-projects .project-title a:hover {
  color: #1674D1;
}
.related-projects .col-md-4 {
  margin-bottom: 20px;
}
.related-projects .project-thumb {
  position: relative;
}
.related-projects .project-thumb:after {
  content: '';
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  background-color: #1674D1;
}
.related-projects .project-thumb:before {
  content: "\f064";
  font-family: "FontAwesome";
  font-size: 20px;
  color: #fff;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -10px;
  margin-top: -10px;
  z-index: 9;
  opacity: 0;
}
.related-projects .project-thumb:hover:after {
  opacity: .4;
}
.related-projects .project-thumb:hover:before {
  opacity: 1;
}
.post .post-video {
  margin-bottom: 35px;
}
.post .post-quote {
  background-color: #1674d1;
  padding: 40px;
  margin-bottom: 35px;
}
.post .post-quote h2 {
  font-size: 24px;
  letter-spacing: 0.05em;
  color: #fff;
}
.post .post-quote .source-name a {
  font-size: 14px;
  letter-spacing: 0.4em;
  color: #fff;
  margin: 20px 0 10px 0;
  display: block;
}
.post .post-gallery.owl-carousel {
  margin-bottom: 35px;
}
.post .post-gallery.owl-carousel .owl-nav {
  font-size: 0;
}
.post .post-gallery.owl-carousel .owl-nav > div {
  position: absolute;
  top: 50%;
  cursor: pointer;
  -webkit-transform: translate(0, -50%);
  -moz-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  -o-transform: translate(0, -50%);
}
.post .post-gallery.owl-carousel .owl-nav > div:before {
  font-size: 50px;
  color: #fff;
  font-family: 'Pe-icon-7-stroke';
}
.post .post-gallery.owl-carousel .owl-nav .owl-next {
  right: 30px;
}
.post .post-gallery.owl-carousel .owl-nav .owl-next:before {
  content: '\e685';
}
.post .post-gallery.owl-carousel .owl-nav .owl-prev {
  left: 30px;
}
.post .post-gallery.owl-carousel .owl-nav .owl-prev:before {
  content: '\e687';
}
/*--------------------------------------------
WooCommerce
----------------------------------------------*/
.vc_col-sm-8 .woocommerce ul.products li.product,
.vc_col-sm-8 .woocommerce-page ul.products li.product {
  width: 30%;
}
.woocommerce ul.products,
.woocommerce-page ul.products {
  margin-left: -15px;
  margin-right: -15px;
  display: -webkit-box;
  box-sizing: border-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex: 0 1 auto;
  -ms-flex: 0 1 auto;
  -webkit-box-flex: 0;
  flex: 0 1 auto;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  flex-direction: row;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.woocommerce ul.products li.product,
.woocommerce-page ul.products li.product {
  margin: 0;
  padding-left: 15px;
  padding-right: 15px;
  margin-bottom: 40px;
  -webkit-box-flex: 25%;
  -webkit-flex: 25%;
  -ms-flex: 25%;
  flex: 25%;
  -webkit-flex-basis: 25%;
  -ms-flex-preferred-size: 25%;
  flex-basis: 25%;
  max-width: 25%;
}
@media (max-width: 900px) {
  .woocommerce ul.products li.product,
  .woocommerce-page ul.products li.product {
    -webkit-box-flex: 50%;
    -webkit-flex: 50%;
    -ms-flex: 50%;
    flex: 50%;
    -webkit-flex-basis: 50%;
    -ms-flex-preferred-size: 50%;
    flex-basis: 50%;
    max-width: 50%;
  }
}
.widget_product_search .woocommerce-product-search {
  position: relative;
  margin-top: -20px;
}
.widget_product_search label {
  font-size: 0;
}
.widget_product_search label:before {
  content: "\f002";
  font-size: 16px;
  position: absolute;
  right: 1px;
  top: 23px;
  background-color: #EEEEEE;
  text-align: center;
  height: 47px;
  line-height: 47px;
  width: 48px;
  display: block;
}
.widget_product_search label:after {
  content: '';
  position: absolute;
  right: 49px;
  top: 23px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 20px 49px 0;
  border-color: transparent #EEEEEE transparent transparent;
}
.widget_product_search input[type="search"] {
  border: 1px solid #DDDDDD;
  background-color: #fff;
  padding: 15px;
  margin-bottom: 0;
}
.widget_product_search input[type='submit'] {
  display: none;
}
.woocommerce-cart .wc-proceed-to-checkout a.checkout-button {
  display: inline-block;
  text-transform: uppercase;
}
.woocommerce ul.product_list_widget li img {
  width: 70px;
  float: left;
  margin-right: 10px;
}
.woocommerce ul.cart_list li,
.woocommerce ul.product_list_widget li {
  padding: 15px 0;
}
.woocommerce #respond input#submit,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce form.checkout_coupon,
.woocommerce form.login,
.woocommerce form.register {
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
}
.woocommerce .quantity .qty,
.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea {
  padding: 5px;
}
.woocommerce table.cart td.actions .input-text,
.woocommerce-page #content table.cart td.actions .input-text,
.woocommerce-page table.cart td.actions .input-text {
  width: 150px;
}
.woocommerce-cart table.cart td.actions .coupon .input-text {
  padding: 12px;
}
.woocommerce-cart .cart-collaterals .cart_totals table {
  width: 100%;
}
.woocommerce .cart-collaterals,
.woocommerce-page .cart-collaterals {
  margin-bottom: 50px;
}
.woocommerce-cart .cart-collaterals .cart_totals tr td {
  text-align: right;
}
.woocommerce .col2-set,
.woocommerce-page .col2-set {
  margin: 0 -15px;
}
.woocommerce-checkout-review-order {
  margin-bottom: 70px;
}
.woocommerce a.button.alt,
.woocommerce button.button.alt,
.woocommerce input.button.alt,
.woocommerce #respond input#submit.alt,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce #respond input#submit {
  text-transform: uppercase;
}
.woocommerce ul.products li.product h3 {
  font-size: 16px;
  text-transform: uppercase;
  font-weight: normal;
  color: #111;
}
.woocommerce ul.products li.product .price {
  font-weight: bold;
  font-size: 16px;
}
.woocommerce ul.products li.product .price del {
  display: inline-block;
  margin-right: 10px;
}
.woocommerce div.product form.cart .quantity .qty {
  padding: 12px 5px;
}
.related.products h2 {
  margin-bottom: 30px;
  text-transform: uppercase;
  font-size: 18px;
}
.woocommerce .related ul {
  margin-left: -15px;
  margin-right: -15px;
}
.woocommerce .related ul li.product,
.woocommerce .related ul.products li.product,
.woocommerce .upsells.products ul li.product,
.woocommerce .upsells.products ul.products li.product,
.woocommerce-page .related ul li.product,
.woocommerce-page .related ul.products li.product,
.woocommerce-page .upsells.products ul li.product,
.woocommerce-page .upsells.products ul.products li.product {
  width: 25%;
  margin-right: 0;
  padding: 0 15px;
}
.woocommerce .related ul li.product:first-child,
.woocommerce .related ul.products li.product:first-child,
.woocommerce .upsells.products ul li.product:first-child,
.woocommerce .upsells.products ul.products li.product:first-child,
.woocommerce-page .related ul li.product:first-child,
.woocommerce-page .related ul.products li.product:first-child,
.woocommerce-page .upsells.products ul li.product:first-child,
.woocommerce-page .upsells.products ul.products li.product:first-child {
  margin-left: 0;
}
.woocommerce .col2-set.addresses {
  margin-bottom: 70px;
}
.woocommerce div.product .woocommerce-tabs .panel h2 {
  display: none;
}
.woocommerce div.product form.cart .button {
  display: inline-block !important;
  text-transform: uppercase !important;
}
.woocommerce div.product form.cart .button.medium {
  padding: 8px 25px !important;
}
.woocommerce div.product form.cart .button.skin-white {
  color: #fff !important !important;
  border-color: #fff !important;
  background: none !important;
}
.woocommerce div.product form.cart .button.skin-white:hover {
  color: #1674D1 !important !important;
  border-color: #fff !important;
  background-color: #fff !important;
}
.woocommerce div.product form.cart .button.skin-green {
  color: #2DB200 !important !important;
  border-color: #2DB200 !important;
  background: none !important;
}
.woocommerce div.product form.cart .button.skin-green:hover {
  color: #fff !important !important;
  border-color: #2DB200 !important;
  background-color: #2DB200 !important;
}
.woocommerce div.product form.cart .button.skin-fill-white {
  color: #1674D1 !important;
  border-color: #fff !important;
  background-color: #fff !important;
}
.woocommerce div.product form.cart .button.skin-fill-white:hover {
  color: #1674D1 !important;
  border-color: #f5f5f5 !important;
  background-color: #f5f5f5 !important;
}
.woocommerce div.product form.cart .button.skin-fill-white.has-icon i {
  background-color: #fff !important;
  color: #1674D1 !important;
}
.woocommerce div.product form.cart .button.skin-fill-blue {
  color: #fff !important;
  border-color: #1674D1 !important;
  background-color: #1674D1 !important;
}
.woocommerce div.product form.cart .button.skin-fill-blue:hover {
  color: #fff !important;
  border-color: #458bd1 !important;
  background-color: #458bd1 !important;
}
.woocommerce div.product form.cart .button.skin-fill-blue.has-icon i {
  background-color: #fff !important;
  color: #1674D1 !important;
}
.woocommerce div.product form.cart .button.skin-fill-black {
  color: #fff !important !important;
  border-color: #111 !important;
  background-color: #111 !important;
}
.woocommerce div.product form.cart .button.skin-fill-black:hover {
  color: #fff !important;
  border-color: #333 !important;
  background-color: #333 !important;
}
.woocommerce div.product form.cart .button.skin-fill-black.has-icon i {
  background-color: #fff !important;
  color: #111 !important;
}
.woocommerce div.product form.cart .button.has-icon {
  position: relative !important;
  padding-right: 80px !important;
}
.woocommerce div.product form.cart .button.has-icon i {
  position: absolute !important;
  top: 0 !important;
  right: 0 !important;
  height: 100% !important;
  width: 50px !important;
  background-color: #1674D1 !important;
  color: #fff !important;
  font-size: 20px !important;
  display: -webkit-box !important;
  display: -moz-box !important;
  display: -ms-flexbox !important;
  display: -webkit-flex !important;
  display: flex !important;
  -webkit-box-align: center !important;
  -moz-box-align: center !important;
  -ms-flex-align: center !important;
  -webkit-align-items: center !important;
  align-items: center !important;
  -webkit-box-pack: center !important;
  -moz-box-pack: center !important;
  -ms-flex-pack: center !important;
  -webkit-justify-content: center !important;
  justify-content: center !important;
}
.woocommerce div.product p.price del,
.woocommerce div.product span.price del {
  display: inline-block;
  margin-right: 10px;
}
.woocommerce a.added_to_cart {
  margin-left: 20px;
}
.woocommerce ul.products li.product:hover .image-product-contain:after,
.woocommerce ul.products li.product:hover .image-product-contain .btn,
.woocommerce ul.products li.product:hover .image-product-contain h6 {
  visibility: visible;
}
.woocommerce ul.products li.product:hover .image-product-contain:after {
  background-color: #111;
  height: 100%;
}
.image-product-contain {
  display: inline-block;
  position: relative;
}
.image-product-contain:after {
  content: '';
  visibility: hidden;
  width: 100%;
  height: 0;
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: #111;
  opacity: 0.9;
  display: block;
}
.image-product-contain .btn,
.image-product-contain h6 {
  position: absolute;
  z-index: 1;
  display: block;
  visibility: hidden;
}
.image-product-contain .btn {
  top: 50%;
  width: 50px;
  height: 50px;
  padding: 8px 0 0 0;
  font-weight: 400;
  text-align: center;
  font-size: 20px;
  margin-top: -25px;
}
.image-product-contain .btn.added {
  color: #fff;
  border-color: #1674D1;
  background-color: #1674D1;
}
.image-product-contain .btn.added:hover {
  color: #fff;
  border-color: #458bd1;
  background-color: #458bd1;
}
.image-product-contain .btn.added.has-icon i {
  background-color: #fff;
  color: #1674D1;
}
.image-product-contain .btn.btn-view-detail {
  right: 50%;
}
.image-product-contain .btn.add_to_cart_button {
  left: 50%;
}
.image-product-contain .star-rating {
  display: none!important;
}
.image-product-contain .added_to_cart {
  display: none!important;
}
.image-product-contain h6 {
  top: 50%;
  margin-top: 40px;
  width: 100%;
  text-align: center;
  color: #fff;
}
.woocommerce ul.products li.product .onsale {
  margin: 10px;
  padding: 5px 8px;
  text-transform: uppercase;
  background-color: #1674D1;
}
.woocommerce nav.woocommerce-pagination ul {
  border: none;
}
.woocommerce nav.woocommerce-pagination ul li {
  margin-left: 10px;
  border: none;
}
.woocommerce nav.woocommerce-pagination ul li:first-child {
  margin-left: 0;
}
.woocommerce nav.woocommerce-pagination {
  margin-bottom: 50px;
}
.woocommerce nav.woocommerce-pagination ul li a,
.woocommerce nav.woocommerce-pagination ul li span {
  background-color: #fff!important;
  border: 2px solid #eee;
  padding: 10px 15px;
  color: #aaa;
}
.woocommerce nav.woocommerce-pagination ul li a:focus,
.woocommerce nav.woocommerce-pagination ul li a:hover,
.woocommerce nav.woocommerce-pagination ul li span.current {
  border: 2px solid #1674D1;
  color: #1674D1;
}
.custom-button {
  background-color: #fff;
  font-size: 12px;
  font-weight: 900;
  border: 2px solid ;
  padding: 13px 20px;
  margin-left: 10px;
}
.custom-button:hover {
  background-color: #1674D1;
  color: #fff;
}
.woocommerce .product .product_title.entry-title {
  font-size: 24px;
  text-transform: uppercase;
}
.woocommerce .product .price {
  color: #1674D1;
}
.woocommerce .product .onsale {
  margin: 20px;
  padding: 5px 8px;
  text-transform: uppercase;
  background-color: #1674D1;
}
.woocommerce .single_add_to_cart_button {
  border: 2px solid ;
  padding: 13px 20px;
  background-color: #fff;
  font-size: 12px;
  border: 2px solid;
  color: #1674D1;
  padding: 18px 25px;
  margin-left: 10px;
  border-radius: 0 !important;
  text-transform: uppercase;
  font-weight: 900;
  font-family: 'Lato';
}
.woocommerce .single_add_to_cart_button:hover {
  background-color: #1674D1;
  color: #fff;
}
.woocommerce .single_add_to_cart_button:hover {
  background-color: #1674D1;
  color: #fff;
}
.woocommerce .woocommerce-tabs ul.tabs {
  margin-bottom: 0!important;
  border: none;
  padding-left: 0!important;
}
.woocommerce .woocommerce-tabs ul.tabs li {
  border: none!important;
  padding: 0!important;
  margin: 0!important;
  border-radius: 0!important;
}
.woocommerce .woocommerce-tabs ul.tabs li:before,
.woocommerce .woocommerce-tabs ul.tabs li:after {
  display: none;
}
.woocommerce .woocommerce-tabs ul.tabs li.active a {
  background-color: #1674D1;
  color: #fff !important;
  border-color: #1674D1;
}
.woocommerce .woocommerce-tabs ul.tabs li a {
  padding: 15px 30px!important;
  border-radius: 0!important;
  font-size: 12px!important;
  color: #878787!important;
  text-transform: uppercase;
  background-color: #fff;
  border-top: 1px solid #eee;
  border-right: 1px solid #eee;
}
.woocommerce .woocommerce-tabs ul.tabs li a:first-child {
  border-left: 1px solid #eee;
}
.woocommerce .woocommerce-tabs .panel {
  border: 1px solid #eee;
  padding: 50px 40px!important;
}
.woocommerce .woocommerce-tabs .panel #reply-title {
  letter-spacing: 0.05em!important;
}
.woocommerce .woocommerce-tabs .panel #submit {
  border: 2px solid ;
  padding: 13px 20px;
  background-color: #fff;
  font-size: 12px;
  border: 2px solid;
  color: #1674D1;
  padding: 18px 25px;
  margin-left: 10px;
  border-radius: 0 !important;
  text-transform: uppercase;
  font-weight: 900;
  font-family: 'Lato';
  margin-left: 0!important;
}
.woocommerce .woocommerce-tabs .panel #submit:hover {
  background-color: #1674D1;
  color: #fff;
}
.woocommerce .woocommerce-tabs .panel #submit:hover {
  background-color: #1674D1;
  color: #fff;
}
.woocommerce .shop_table.cart {
  border-radius: 0!important;
  text-transform: uppercase;
  color: #1674D1;
}
.woocommerce .shop_table.cart .product-name * {
  color: #111;
}
.woocommerce .shop_table.cart .product-remove .remove {
  color: #333!important;
  float: right;
}
.woocommerce .shop_table.cart .product-remove .remove:hover {
  color: #1674D1!important;
  background: none;
}
.woocommerce .shop_table.cart thead tr {
  background-color: #F5F5F5;
}
.woocommerce .shop_table.cart thead tr th {
  font-size: 12px;
  color: #111;
}
.woocommerce .cart tbody tr:last-child td {
  padding: 20px;
  padding-top: 30px;
}
.woocommerce .cart .button {
  border: 2px solid ;
  padding: 13px 20px;
  background-color: #fff;
  font-size: 12px;
  border: 2px solid;
  color: #1674D1;
  padding: 18px 25px;
  margin-left: 10px;
  border-radius: 0 !important;
  text-transform: uppercase;
  font-weight: 900;
  font-family: 'Lato';
}
.woocommerce .cart .button:hover {
  background-color: #1674D1;
  color: #fff;
}
.woocommerce .cart .button:hover {
  background-color: #1674D1;
  color: #fff;
}
.woocommerce .cart .input-text {
  padding: 12px;
}
.woocommerce .cart_totals h2 {
  font-size: 18px;
  letter-spacing: 0.05em;
  margin-bottom: 20px;
}
.woocommerce .cart_totals table {
  font-size: 14px;
  color: #111;
}
.woocommerce .cart_totals table tr td,
.woocommerce .cart_totals table tr th {
  border-bottom: 1px solid #eee;
}
.woocommerce .cart_totals table tr:first-child td,
.woocommerce .cart_totals table tr:first-child th {
  border-top: 1px solid #eee;
}
.woocommerce .cart_totals .button {
  border: 2px solid ;
  padding: 13px 20px;
  background-color: #fff;
  font-size: 12px;
  border: 2px solid;
  color: #1674D1;
  padding: 18px 25px;
  margin-left: 10px;
  border-radius: 0 !important;
  text-transform: uppercase;
  font-weight: 900;
  font-family: 'Lato';
  margin-left: 0!important;
}
.woocommerce .cart_totals .button:hover {
  background-color: #1674D1;
  color: #fff;
}
.woocommerce .cart_totals .button:hover {
  background-color: #1674D1;
  color: #fff;
}
.woocommerce .checkout h3 {
  font-size: 18px;
  color: #111;
  text-transform: uppercase;
  margin-bottom: 20px;
  padding-left: 3px;
}
.woocommerce .checkout .input-text {
  padding: 10px 15px!important;
}
.woocommerce .checkout select {
  border-radius: 0!important;
  padding: 10px!important;
  height: 40px;
}
.woocommerce .checkout #customer_details {
  margin-bottom: 30px;
}
.woocommerce .checkout .form-row label {
  display: none;
}
.woocommerce .checkout .form-row#billing_postcode_field {
  width: 100%;
}
.woocommerce #payment {
  background: none;
  border-radius: 0;
}
.woocommerce #payment .form-row {
  padding: 0 !important;
}
.woocommerce #payment .form-row .button {
  float: left!important;
  border: 2px solid ;
  padding: 13px 20px;
  background-color: #fff;
  font-size: 12px;
  border: 2px solid;
  color: #1674D1;
  padding: 18px 25px;
  margin-left: 10px;
  border-radius: 0 !important;
  text-transform: uppercase;
  font-weight: 900;
  font-family: 'Lato';
  margin-left: 0!important;
}
.woocommerce #payment .form-row .button:hover {
  background-color: #1674D1;
  color: #fff;
}
.woocommerce #payment .form-row .button:hover {
  background-color: #1674D1;
  color: #fff;
}
.woocommerce #order_review .shop_table {
  border: none;
}
.woocommerce #order_review .shop_table thead tr {
  background-color: #F9F9F9;
}
.woocommerce #order_review .shop_table thead tr th {
  font-size: 12px;
  color: #111;
  letter-spacing: 0.3em;
  font-weight: 400;
}
.woocommerce #order_review .shop_table thead tr th:first-child {
  padding-left: 40px;
}
.woocommerce #order_review .shop_table tbody tr td,
.woocommerce #order_review .shop_table tfoot tr td {
  padding-top: 16px;
  padding-bottom: 16px;
}
.woocommerce #order_review .shop_table tbody tr td:first-child,
.woocommerce #order_review .shop_table tfoot tr td:first-child {
  padding-left: 40px;
}
.woocommerce #order_review .shop_table tbody tr:first-child td,
.woocommerce #order_review .shop_table tfoot tr:first-child td,
.woocommerce #order_review .shop_table tbody tr:first-child th,
.woocommerce #order_review .shop_table tfoot tr:first-child th {
  border-top: none;
}
.woocommerce #order_review .shop_table tfoot tr {
  background-color: #F9F9F9;
}
.woocommerce #order_review .shop_table tfoot tr td,
.woocommerce #order_review .shop_table tfoot tr th {
  text-transform: none;
}
.woocommerce #order_review .shop_table tfoot tr td:first-child,
.woocommerce #order_review .shop_table tfoot tr th:first-child {
  padding-left: 40px;
}
.woocommerce #order_review .shop_table .product-total {
  width: 30%;
}
.woocommerce #payment .payment_methods {
  padding-left: 0!important;
  padding-right: 0!important;
  border-bottom: none!important;
}
.woocommerce #payment .payment_methods li {
  margin-bottom: 20px!important;
}
.woocommerce #payment .payment_methods li label {
  color: #111;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.3em;
}
.woocommerce #payment .payment_methods li .input-radio {
  vertical-align: middle;
  margin-bottom: 4px;
}
.woocommerce #payment .payment_methods li .payment_box {
  background: none;
  font-size: 15px;
  color: #858585;
  margin: 0;
  padding-left: 28px;
}
.woocommerce #payment .payment_methods li .payment_box:before {
  display: none;
}
.woo-black-color .woo-content-product .amount {
  color: #111111;
}
.woo-black-color .woo-content-product h5 {
  color: #999999;
}
.woocommerce ul.products li.first {
  clear: none;
}
body .woocommerce ul.products li,
body .woocommerce-page ul.products li,
body .woocommerce ul.products li.last,
body .woocommerce-page ul.products li.last,
body .woocommerce ul.products li.first,
body .woocommerce-page ul.products li.first {
  width: 25%;
  padding: 30px;
  margin: 0;
}
.shopby-catogories .woocommerce ul.products li,
.shopby-catogories .woocommerce-page ul.products li,
.shopby-catogories .woocommerce ul.products li.last,
.shopby-catogories .woocommerce-page ul.products li.last,
.shopby-catogories .woocommerce ul.products li.first,
.shopby-catogories .woocommerce-page ul.products li.first {
  padding: 0;
}
@media (max-width: 768px) {
  .shopby-catogories {
    background-size: cover;
  }
}
/*--------------------------------------------
Typo
----------------------------------------------*/
ul.style1 li {
  margin-bottom: 10px;
  list-style: none;
}
ul.style1 li:before {
  content: "\f061";
  margin-right: 10px;
}
blockquote {
  border-left-width: 2px;
  border-left-color: #1674D1;
  font-size: inherit;
}
blockquote.blockquote-2 {
  font-style: normal;
}
blockquote.blockquote-3 {
  background-color: #F5F5F5;
  padding-top: 12px;
  padding-bottom: 12px;
}
/*--------------------------------------------
Breadcrumb
----------------------------------------------*/
.breadcrumb {
  overflow: hidden;
}
.tm_bread_crumb {
  margin: 0;
  padding: 15px 0px;
  display: inline-block;
  position: relative;
}
.tm_bread_crumb li {
  display: inline-block;
  margin-right: 6px;
}
.tm_bread_crumb li a:after {
  content: "/";
  margin-left: 10px;
}
.tm_bread_crumb li:last-child {
  margin: 0;
}
@media (max-width: 74.9375rem) {
  .tm_bread_crumb {
    display: none;
  }
}
/*
 *  Owl Carousel - Animate Plugin
 */
.owl-carousel .animated {
  -webkit-animation-duration: 1000ms;
  animation-duration: 1000ms;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}
.owl-carousel .owl-animated-in {
  z-index: 0;
}
.owl-carousel .owl-animated-out {
  z-index: 1;
}
.owl-carousel .fadeOut {
  -webkit-animation-name: fadeOut;
  animation-name: fadeOut;
}
@-webkit-keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
/*
 * 	Owl Carousel - Auto Height Plugin
 */
.owl-height {
  -webkit-transition: height 500ms ease-in-out;
  -moz-transition: height 500ms ease-in-out;
  -ms-transition: height 500ms ease-in-out;
  -o-transition: height 500ms ease-in-out;
  transition: height 500ms ease-in-out;
}
/*
 *  Core Owl Carousel CSS File
 */
.owl-carousel {
  display: none;
  width: 100%;
  -webkit-tap-highlight-color: transparent;
  /* position relative and z-index fix webkit rendering fonts issue */
  position: relative;
  z-index: 1;
}
.owl-carousel .owl-stage {
  position: relative;
  -ms-touch-action: pan-Y;
}
.owl-carousel .owl-stage:after {
  content: ".";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0;
}
.owl-carousel .owl-stage-outer {
  position: relative;
  overflow: hidden;
  /* fix for flashing background */
  -webkit-transform: translate3d(0px, 0px, 0px);
  height: auto!important;
}
.owl-carousel .owl-controls .owl-nav .owl-prev,
.owl-carousel .owl-controls .owl-nav .owl-next,
.owl-carousel .owl-controls .owl-dot {
  cursor: pointer;
  cursor: hand;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.owl-carousel.owl-loaded {
  display: block;
}
.owl-carousel.owl-loading {
  opacity: 0;
  display: block;
}
.owl-carousel.owl-hidden {
  opacity: 0;
}
.owl-carousel .owl-refresh .owl-item {
  display: none;
}
.owl-carousel .owl-item {
  position: relative;
  min-height: 1px;
  float: left;
  -webkit-backface-visibility: hidden;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.owl-carousel .owl-item img {
  -webkit-transform-style: preserve-3d;
}
.owl-carousel.owl-text-select-on .owl-item {
  -webkit-user-select: auto;
  -moz-user-select: auto;
  -ms-user-select: auto;
  user-select: auto;
}
.owl-carousel .owl-grab {
  cursor: move;
  cursor: -webkit-grab;
  cursor: -o-grab;
  cursor: -ms-grab;
  cursor: grab;
}
.owl-carousel.owl-rtl {
  direction: rtl;
}
.owl-carousel.owl-rtl .owl-item {
  float: right;
}
/* No Js */
.no-js .owl-carousel {
  display: block;
}
/*
 * 	Owl Carousel - Lazy Load Plugin
 */
.owl-carousel .owl-item .owl-lazy {
  opacity: 0;
  -webkit-transition: opacity 400ms ease;
  -moz-transition: opacity 400ms ease;
  -ms-transition: opacity 400ms ease;
  -o-transition: opacity 400ms ease;
  transition: opacity 400ms ease;
}
.owl-carousel .owl-item img {
  transform-style: preserve-3d;
}
/*
 * 	Owl Carousel - Video Plugin
 */
.owl-carousel .owl-video-wrapper {
  position: relative;
  height: 100%;
  background: #000;
}
.owl-carousel .owl-video-play-icon {
  position: absolute;
  height: 80px;
  width: 80px;
  left: 50%;
  top: 50%;
  margin-left: -40px;
  margin-top: -40px;
  background: url("owl.video.play.png") no-repeat;
  cursor: pointer;
  z-index: 1;
  -webkit-backface-visibility: hidden;
  -webkit-transition: scale 100ms ease;
  -moz-transition: scale 100ms ease;
  -ms-transition: scale 100ms ease;
  -o-transition: scale 100ms ease;
  transition: scale 100ms ease;
}
.owl-carousel .owl-video-play-icon:hover {
  -webkit-transition: scale(1.3, 1.3);
  -moz-transition: scale(1.3, 1.3);
  -ms-transition: scale(1.3, 1.3);
  -o-transition: scale(1.3, 1.3);
  transition: scale(1.3, 1.3);
}
.owl-carousel .owl-video-playing .owl-video-tn,
.owl-carousel .owl-video-playing .owl-video-play-icon {
  display: none;
}
.owl-carousel .owl-video-tn {
  opacity: 0;
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  -webkit-background-size: contain;
  -moz-background-size: contain;
  -o-background-size: contain;
  background-size: contain;
  -webkit-transition: opacity 400ms ease;
  -moz-transition: opacity 400ms ease;
  -ms-transition: opacity 400ms ease;
  -o-transition: opacity 400ms ease;
  transition: opacity 400ms ease;
}
.owl-carousel .owl-video-frame {
  position: relative;
  z-index: 1;
}
.owl-controls {
  text-align: center;
}
.owl-controls .owl-dot {
  position: relative;
  z-index: 99;
  width: 12px;
  height: 12px;
  display: inline-block;
  vertical-align: top;
  margin: 0 3px;
  background-color: rgba(255, 255, 255, 0.4);
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  border-radius: 100%;
}
.owl-controls .owl-dot.active {
  background-color: #FFFFFF;
}
.snap-content {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: auto;
  height: auto;
  z-index: 2;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
.snap-drawers {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: auto;
  height: auto;
}
.snap-drawer {
  position: fixed;
  top: 0;
  right: auto;
  bottom: 0;
  left: auto;
  width: 266px;
  height: auto;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  -webkit-transition: width 0.3s ease;
  -moz-transition: width 0.3s ease;
  -ms-transition: width 0.3s ease;
  -o-transition: width 0.3s ease;
  transition: width 0.3s ease;
}
.snap-drawer-left {
  left: 0;
  z-index: 1;
}
.snap-drawer-right {
  right: 0;
  z-index: 1;
}
.snapjs-left .snap-drawer-right,
.snapjs-right .snap-drawer-left {
  display: none;
}
.snapjs-expand-left .snap-drawer-left,
.snapjs-expand-right .snap-drawer-right {
  width: 100%;
}
.snapjs-left .snap-drawer-left,
.snapjs-right .snap-drawer-right {
  display: block!important;
}
/*--------------------------------------------
Mobile Menu
----------------------------------------------*/
#open-left {
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
  position: relative;
  z-index: 2;
}
.snap-drawers {
  background-color: #fff;
}
@media (min-width: 75rem) {
  .snapjs-left .snap-drawers {
    display: none;
  }
}
.mobile-menu .sub-menu-toggle {
  display: none;
}
.mobile-menu > ul > li > a {
  padding-left: 20px;
  padding-right: 20px;
}
.mobile-menu > ul li.menu-item {
  display: block;
  position: relative;
}
.mobile-menu > ul li.menu-item > a {
  display: block;
  padding-top: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid #EEEEEE;
}
.mobile-menu > ul li.menu-item:last-child {
  border: none;
}
.mobile-menu > ul li.menu-item .sub-menu {
  display: none;
  padding-left: 20px;
  margin-left: 0;
}
.mobile-menu > ul li.menu-item .sub-menu li.badge:after {
  font-size: 9px;
  top: 0;
  right: 25px;
  -webkit-transform: translate(0, 0);
  -moz-transform: translate(0, 0);
  -ms-transform: translate(0, 0);
  -o-transform: translate(0, 0);
}
.mobile-menu > ul li.menu-item.menu-item-has-children > .sub-menu-toggle {
  display: block;
  position: absolute;
  top: -1px;
  right: 0;
  width: 44px;
  height: 44px;
  line-height: 42px;
  text-align: center;
  outline: 0;
  border: 1px solid #eee;
}
.mobile-menu > ul li.menu-item.menu-item-has-children > .sub-menu-toggle:before {
  display: inline-block;
  -webkit-transition: all 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
  -moz-transition: all 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
  -o-transition: all 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: all 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.mobile-menu > ul li.menu-item.expand > .sub-menu-toggle {
  background-color: #eee;
}
.mobile-menu > ul li.menu-item.expand > .sub-menu-toggle:before {
  transform: rotate(180deg);
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -o-transform: rotate(180deg);
}
.mobile-menu > ul li.menu-item.mega-menu .sub-menu {
  border-bottom: 1px solid #eee;
  padding: 0;
}
.mobile-menu > ul li.menu-item.mega-menu .menu-item-object-tm_mega_menu {
  padding-top: 0;
}
.mobile-menu > ul li.menu-item.mega-menu .vc_row-fluid,
.mobile-menu > ul li.menu-item.mega-menu .vc_row[data-vc-full-width] {
  left: 0!important;
  width: 100%!important;
  padding: 20px !important;
  margin: 0 !important;
}
.mobile-menu > ul li.menu-item.mega-menu .vc_row-fluid .vc_row,
.mobile-menu > ul li.menu-item.mega-menu .vc_row[data-vc-full-width] .vc_row {
  margin: 0 !important;
}
.mobile-menu > ul li.menu-item.mega-menu .vc_row {
  padding-top: 20px !important;
  padding-bottom: 20px !important;
}
.mobile-menu > ul li.menu-item.mega-menu .vc_row .wpb_column {
  padding: 0 !important;
}
.mobile-menu > ul li.menu-item.mega-menu .vc_row .vc_row {
  margin: 0 !important;
  padding: 0 !important;
}
.mobile-menu > ul li.menu-item.mega-menu .col-20 {
  width: 100%!important;
  padding: 0 !important;
}
.mobile-menu > ul li.menu-item.mega-menu ul {
  padding-bottom: 10px;
}
.mobile-menu > ul li.menu-item.mega-menu ul li {
  list-style-type: none;
  padding-top: 10px;
}
.mobile-menu > ul li.menu-item.mega-menu .woocommerce .products li {
  width: 100%;
  padding: 0 !important;
}
.mobile-menu > ul li.menu-item.mega-menu .post-simple-layout {
  padding: 0;
}
.mobile-menu > ul li.menu-item.mega-menu.expand {
  margin-bottom: 10px;
}
.mobile-menu > ul li.menu-item.mega-menu.expand .sub-menu {
  padding-bottom: 0;
}
@media (max-width: 47.9375rem) {
  .mobile-menu .sub-menu li .post-simple-layout > .row > [class*="col"] .post {
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
    margin-bottom: 30px;
  }
  .mobile-menu .sub-menu li .post-simple-layout > .row > [class*="col"]:last-child .post {
    margin-bottom: 0;
  }
}
@media (min-width: 48rem) and (max-width: 61.9375rem) {
  .mobile-menu .sub-menu li .post-simple-layout > .row > [class*="col"] {
    -webkit-flex-basis: 100%;
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    max-width: 100%;
  }
}
@media (min-width: 62rem) and (max-width: 74.9375rem) {
  .mobile-menu .sub-menu li .post-simple-layout > .row > [class*="col"] {
    -webkit-flex-basis: 50%;
    -ms-flex-preferred-size: 50%;
    flex-basis: 50%;
    max-width: 50%;
  }
}
/*--------------------------------------------------------------
Form
--------------------------------------------------------------*/
select,
textarea,
input {
  display: inline-block;
  padding: 15px 25px;
  margin-bottom: 15px;
  vertical-align: top;
  font-size: 14px;
  width: 100%;
  max-width: 100%;
  border: 1px solid #eee;
  font-family: inherit;
  letter-spacing: inherit;
}
textarea {
  resize: vertical;
}
input:-moz-placeholder,
textarea:-moz-placeholder {
  color: #999;
}
input::-moz-placeholder,
textarea::-moz-placeholder {
  color: #999;
}
input:-ms-input-placeholder,
textarea:-ms-input-placeholder {
  color: #999;
}
input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
  color: #999;
}
input,
select,
textarea {
  box-shadow: none;
  color: #111;
  width: 100%;
}
textarea {
  height: 200px;
}
input:focus,
textarea:focus {
  outline: none;
  background-color: #FFFFFF;
}
input[type="checkbox"],
input[type="image"],
input[type="radio"] {
  width: auto;
}
button,
input[type="button"],
input[type="reset"],
input[type="submit"] {
  background-color: #333;
  border: none;
  color: #fff;
  cursor: pointer;
  padding: 15px 20px;
  width: auto;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .05em;
}
button:hover,
input:hover[type="button"],
input:hover[type="reset"],
input:hover[type="submit"],
.button:hover {
  color: #fff;
}
/*--------------------------------------------
Contact Form
----------------------------------------------*/
.contact-detail span[class*='pe-7s'] {
  font-family: 'Lato';
}
.contact-detail span[class*='pe-7s']:before {
  font-family: 'Pe-icon-7-stroke';
  color: #1573D1;
  font-size: 24px;
  display: inline-block;
  vertical-align: middle;
  margin-right: 10px;
}
.contact-detail.dark,
.contact-detail.dark span[class*='pe-7s']:before {
  color: #fff;
}
.contact-detail.dark p {
  margin-bottom: 15px;
  line-height: 1.5em;
}
.wpcf7-form .plan-form select,
.wpcf7-form .plan-form input {
  margin-bottom: 20px;
}
.wpcf7-form .plan-form select {
  padding: 13px 25px;
}
.wpcf7-form .row {
  margin: 0 -5px;
}
.wpcf7-form [class*='col-'] {
  padding: 0 5px;
}
.wpcf7-form textarea {
  height: 210px;
}
.wpcf7-form input {
  margin-bottom: 10px;
}
.wpcf7-form span.wpcf7-not-valid-tip {
  margin-bottom: 10px;
}
.wpcf7-form select,
.wpcf7-form input[type="text"],
.wpcf7-form input[type="email"],
.wpcf7-form textarea {
  background-color: #fff;
  color: #999999;
}
.form-contact-dark .wpcf7-form input {
  margin-bottom: 20px;
}
.form-contact-dark .wpcf7-form select,
.form-contact-dark .wpcf7-form input[type="text"],
.form-contact-dark .wpcf7-form input[type="email"],
.form-contact-dark .wpcf7-form textarea {
  background-color: #26333E;
  border-color: #26333E;
  color: #fff;
}
.form-contact-dark .wpcf7-form textarea {
  height: 140px;
}
.form-contact-dark .wpcf7-form .row [class*='col-'] {
  padding: 0 10px;
}
.form1 select,
.form1 textarea,
.form1 input {
  background-color: #65656F;
  color: #FFFFFF;
  border: none;
}
.form1 select:focus,
.form1 textarea:focus,
.form1 input:focus {
  background-color: #FFFFFF;
  color: #888;
}
.form1 input:-moz-placeholder,
.form1 textarea:-moz-placeholder {
  color: #fff;
}
.form1 input::-moz-placeholder,
.form1 textarea::-moz-placeholder {
  color: #fff;
}
.form1 input:-ms-input-placeholder,
.form1 textarea:-ms-input-placeholder {
  color: #fff;
}
.form1 input::-webkit-input-placeholder,
.form1 textarea::-webkit-input-placeholder {
  color: #fff;
}
.custom-button {
  background-color: #fff;
  font-size: 12px;
  border: 2px solid;
  color: #1674D1;
  padding: 18px 25px;
  margin-left: 10px;
  border-radius: 0 !important;
  text-transform: uppercase;
  font-weight: 900;
  font-family: 'Lato';
}
.custom-button:hover {
  background-color: #1674D1;
  color: #fff;
}
.link-black {
  color: #111;
}
.link-black:hover {
  color: #1674D1;
}
@media (min-width: 75rem) {
  .social-menu.link-white {
    margin-left: -30px;
  }
}
.social-menu.link-white a:before {
  color: #fff;
  font-size: 20px;
}
.social-menu.link-white a:hover:before {
  color: #86BCF2;
}
/*--------------------------------------------
Recent Posts
----------------------------------------------*/
.recent-posts__item {
  margin-bottom: 50px;
  position: relative;
  background-color: #fff;
}
.recent-posts__item .col-md-6 {
  padding: 0;
  margin: 0;
}
.recent-posts__item .recent-posts-desc {
  width: 50%;
  display: inline-block;
  padding: 40px 35px 0;
}
.recent-posts__item .recent-posts-desc .dates {
  display: inline-block;
  background-color: #1674D1;
  color: #fff;
  height: 70px;
  width: 70px;
  letter-spacing: 0.3em;
  padding: 15px 0 0 15px;
}
.recent-posts__item .recent-posts-desc .dates span {
  display: block;
  text-transform: uppercase;
  line-height: 1.2em;
  font-size: 12px;
}
.recent-posts__item .recent-posts-desc .post-meta {
  margin: 15px 0 8px;
}
.recent-posts__item .recent-posts-desc .post-meta span {
  margin-right: 20px;
}
.recent-posts__item .recent-posts-desc .post-meta span,
.recent-posts__item .recent-posts-desc .post-meta span a {
  text-transform: uppercase;
  font-size: 11px;
  color: #AAAAAA;
  letter-spacing: 0.3em;
}
.recent-posts__item .recent-posts-desc h4 {
  margin-bottom: 10px;
}
.recent-posts__item .recent-posts-desc h4 a {
  font-size: 18px;
  text-transform: uppercase;
  color: #111;
}
.recent-posts__item .recent-posts-desc .entry-excerpt,
.recent-posts__item .recent-posts-desc .entry-excerpt p {
  line-height: 1.6em;
}
.recent-posts__item.row:nth-child(even) .recent-posts__thumb {
  -webkit-order: 1;
  -ms-flex-order: 1;
  order: 1;
}
.recent-posts__item.row:nth-child(even) .recent-posts__thumb:after {
  background: url('../images/pre_thumb-02.png') repeat-y center right;
  left: 0;
}
@media (max-width: 74.9375rem) {
  .recent-posts__item .recent-posts__thumb,
  .recent-posts__item .recent-posts-desc {
    width: 100% !important;
  }
  .recent-posts__item .recent-posts-desc {
    padding-bottom: 20px !important;
  }
  .recent-posts__item .recent-posts__thumb {
    -webkit-order: -1 !important;
    -ms-flex-order: -1 !important;
    order: -1 !important;
  }
  .recent-posts__item .recent-posts__thumb:after {
    display: none;
  }
}
.recent-posts__item .recent-posts__thumb {
  display: inline-block;
  width: 50%;
  float: left;
  position: relative;
}
.recent-posts__item .recent-posts__thumb:after {
  content: '';
  background: url('../images/pre_thumb.png') repeat-y center left;
  height: 100%;
  width: 27px;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 2;
}
.recent-posts__item .recent-posts__thumb a:before {
  content: '';
  opacity: 0;
  margin: auto;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}
.recent-posts__item .recent-posts__thumb a img {
  width: 100%;
  max-height: 383px;
}
.recent-posts__item:hover .recent-posts__thumb:before {
  opacity: 1;
}
.recent-posts__item:hover .recent-posts__thumb:after {
  opacity: 1;
}
.recent-posts__item:hover .recent-posts__thumb a:before {
  opacity: .8;
}
.recent-posts.type_2 h3 {
  letter-spacing: normal;
  font-weight: normal;
  margin-bottom: 20px;
}
.recent-posts.type_2 .entry-meta {
  margin-bottom: 20px;
}
.recent-posts.type_2 .entry-meta span {
  padding-right: 10px;
}
.recent-posts.type_2 .entry-meta i {
  margin-right: 5px;
}
.recent-posts.type_2 .entry-excerpt {
  color: #858585;
}
.recent-posts.type_3 .post-thumb {
  margin: 0;
}
.recent-posts.type_3 .contain-info {
  background-color: #F7F7F7;
  padding: 30px 20px;
  text-align: center;
}
.recent-posts.type_3 h3 {
  letter-spacing: normal;
  font-weight: normal;
  margin-bottom: 10px;
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 0.3em;
  line-height: 1.3em;
}
.recent-posts.type_3 h3 a {
  color: #111111;
}
.recent-posts.type_3 .entry-meta {
  margin-bottom: 20px;
}
.recent-posts.type_3 .entry-meta span {
  padding-right: 10px;
}
.recent-posts.type_3 .entry-meta i {
  margin-right: 5px;
}
.recent-posts.type_3 .entry-excerpt {
  color: #858585;
}
.thememove_testimonials {
  text-align: center;
}
.thememove_testimonials.skin-dark .testimonials-text {
  color: #1674D1;
}
.thememove_testimonials.skin-dark cite.author span {
  color: #fff;
}
.thememove_testimonials .quote {
  padding: 20px;
}
.thememove_testimonials blockquote {
  margin: 0;
  padding: 0 0 20px;
  color: #888888;
  font-style: normal;
  font-size: 24px;
  font-weight: 400;
  letter-spacing: 0.05em;
  line-height: 1.6em;
  color: #444;
  border: none;
}
.thememove_testimonials blockquote:before {
  display: none !important;
}
.thememove_testimonials .avatar {
  border-radius: 50%;
  max-width: 60px;
}
.thememove_testimonials .author {
  display: block;
  padding: 15px 20px;
  line-height: 1;
  position: relative;
}
.thememove_testimonials .author:after {
  content: '';
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 68px 0 0 30px;
  border-color: transparent transparent transparent transparent;
  position: absolute;
  top: 0;
  right: -30px;
}
.thememove_testimonials .author span:first-child {
  display: block;
  font-size: 14px;
  color: #111;
  margin-bottom: 20px;
  letter-spacing: 0.3em;
}
.thememove_testimonials .author span:last-child {
  font-style: normal;
  font-size: 15px;
  font-weight: 400;
  color: #999;
  etter-spacing: 0.05em;
}
.thememove_testimonials .owl-controls .owl-nav .owl-prev,
.thememove_testimonials .owl-controls .owl-nav .owl-next {
  display: inline-block;
  padding: 0 3px;
  color: #1674D1;
  font-size: 0;
}
.thememove_testimonials .owl-controls .owl-nav .owl-prev:after,
.thememove_testimonials .owl-controls .owl-nav .owl-next:after {
  font-size: 50px;
  font-family: 'Pe-icon-7-stroke';
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
}
.thememove_testimonials .owl-controls .owl-nav .owl-prev:after {
  content: "\e687";
}
.thememove_testimonials .owl-controls .owl-nav .owl-next:after {
  content: "\e685";
}
.thememove-icon-box.type2 .vc_icon_element,
.thememove-icon-box.type2 .vc_thememove_icon {
  float: left;
  margin-right: 20px;
  padding-top: 10px;
}
.thememove-icon-box .vc_icon_element {
  margin-bottom: 0;
}
.thememove-icon-box .vc_icon_element.vc_icon_element-outer .vc_icon_element-inner {
  width: 2em;
  margin-right: 10px;
}
.thememove-icon-box .vc_thememove_icon,
.thememove-icon-box .vc_vc_custom_heading,
.thememove-icon-box .vc_icon_element,
.thememove-icon-box h1,
.thememove-icon-box h2,
.thememove-icon-box h3,
.thememove-icon-box h4,
.thememove-icon-box h5,
.thememove-icon-box h6 {
  display: inline-block !important;
  vertical-align: middle;
}
.section-title {
  letter-spacing: 0.05em;
}
h1.text-order,
h2.text-order,
h3.text-order,
h4.text-order,
h5.text-order,
h6.text-order {
  position: absolute;
  bottom: 10px;
  right: 20px;
  letter-spacing: 0.05em;
}
.polygon-grid .eg-polygon-skin-01-element-1-a {
  z-index: 2;
}
.polygon-grid .esg-bc {
  z-index: 1;
}
.polygon-grid .minimal-light .esg-navigationbutton,
.polygon-grid .minimal-light .esg-navigationbutton:hover {
  padding: 56px 0;
  border: none;
  background-color: #1674D1;
  color: #fff;
  font-size: 12px;
  font-family: 'Lato';
  border-radius: 0;
  margin: 0;
  width: 100%;
  letter-spacing: 0.3em;
}
.polygon-grid .minimal-light .esg-navigationbutton:hover {
  background-color: #1680E6;
}
.contain-gallery {
  background-repeat: no-repeat;
}
.contain-gallery .esg-navigationbutton.esg-loadmore {
  border: 2px solid ;
  padding: 13px 20px;
  background-color: #fff;
  font-size: 12px;
  border: 2px solid;
  color: #1674D1;
  padding: 18px 25px;
  margin-left: 10px;
  border-radius: 0 !important;
  text-transform: uppercase;
  font-weight: 900;
  font-family: 'Lato';
  line-height: 1em;
  margin-top: 60px;
}
.contain-gallery .esg-navigationbutton.esg-loadmore:hover {
  background-color: #1674D1;
  color: #fff;
}
.contain-gallery .esg-navigationbutton.esg-loadmore:hover {
  background-color: #1674D1;
  color: #fff;
}
.contain-gallery .esg-filters .esg-filter-wrapper {
  margin: 0 0 45px 0;
}
.contain-gallery .esg-filters .esg-filter-wrapper .esg-filterbutton {
  background: none;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
  padding: 0 15px 0 15px;
  line-height: 1em;
  border: none;
  border-left: 1px solid #999;
}
.contain-gallery .esg-filters .esg-filter-wrapper .esg-filterbutton:first-child {
  border: none;
}
.contain-gallery .esg-filters .esg-filter-wrapper .esg-filterbutton.selected span,
.contain-gallery .esg-filters .esg-filter-wrapper .esg-filterbutton:hover span {
  color: #1674D1;
}
.contain-gallery .esg-filters .esg-filter-wrapper .esg-filterbutton span {
  color: #999;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.2em;
  letter-spacing: 0.05em;
}
.eg-polygon-skin-01-element-1-a.esg-absolute {
  z-index: 99;
}
.compose-mode .vc_element.vc_thememove_button {
  display: inline-block;
}
.btn.medium {
  padding: 8px 25px;
}
.btn.skin-white {
  color: #fff !important;
  border-color: #fff;
  background: none;
}
.btn.skin-white:hover {
  color: #1674D1 !important;
  border-color: #fff;
  background-color: #fff;
}
.btn.skin-green {
  color: #2DB200 !important;
  border-color: #2DB200;
  background: none;
}
.btn.skin-green:hover {
  color: #fff !important;
  border-color: #2DB200;
  background-color: #2DB200;
}
.btn.skin-fill-white {
  color: #1674D1;
  border-color: #fff;
  background-color: #fff;
}
.btn.skin-fill-white:hover {
  color: #1674D1;
  border-color: #f5f5f5;
  background-color: #f5f5f5;
}
.btn.skin-fill-white.has-icon i {
  background-color: #fff;
  color: #1674D1;
}
.btn.skin-fill-blue {
  color: #fff;
  border-color: #1674D1;
  background-color: #1674D1;
}
.btn.skin-fill-blue:hover {
  color: #fff;
  border-color: #458bd1;
  background-color: #458bd1;
}
.btn.skin-fill-blue.has-icon i {
  background-color: #fff;
  color: #1674D1;
}
.btn.skin-fill-black {
  color: #fff !important;
  border-color: #111;
  background-color: #111;
}
.btn.skin-fill-black:hover {
  color: #fff;
  border-color: #333;
  background-color: #333;
}
.btn.skin-fill-black.has-icon i {
  background-color: #fff;
  color: #111;
}
.btn.has-icon {
  position: relative;
  padding-right: 80px;
}
.btn.has-icon i {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: 50px;
  background-color: #1674D1;
  color: #fff;
  font-size: 20px;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.section-btn-contain {
  margin-top: -15px;
}
.section-btn-contain .btn {
  margin-right: 20px;
}
.section-text {
  letter-spacing: 0.15em;
}
@media (max-width: 74.9375rem) {
  .vc_row.wpb_row {
    background-size: cover !important;
  }
}
@media (min-width: 75rem) {
  .vc_row.lg-margin-out-70 {
    margin-left: -70px !important;
    margin-right: -70px !important;
  }
}
.vc_tta-accordion .vc_tta-panels .vc_tta-panel:last-child {
  margin-bottom: 0!important;
}
.vc_tta-accordion.skin-dark.vc_tta-color-grey.vc_tta-style-classic .vc_tta-panel {
  margin-bottom: 10px;
}
.vc_tta-accordion.skin-dark.vc_tta-color-grey.vc_tta-style-classic .vc_tta-panel .vc_tta-panel-body,
.vc_tta-accordion.skin-dark.vc_tta-color-grey.vc_tta-style-classic .vc_tta-panel .vc_tta-panel-heading {
  border-color: #333;
}
.vc_tta-accordion.skin-dark.vc_tta-color-grey.vc_tta-style-classic .vc_tta-panel .vc_tta-panel-heading a {
  color: #fff;
}
.vc_tta-accordion.vc_tta-color-grey.vc_tta-style-classic .vc_tta-panel {
  margin-bottom: 10px;
}
.vc_tta-accordion.vc_tta-color-grey.vc_tta-style-classic .vc_tta-panel.vc_active .vc_tta-panel-body {
  border-top: none;
}
.vc_tta-accordion.vc_tta-color-grey.vc_tta-style-classic .vc_tta-panel.vc_active .vc_tta-panel-heading,
.vc_tta-accordion.vc_tta-color-grey.vc_tta-style-classic .vc_tta-panel.vc_active .vc_tta-panel-heading:hover {
  border-bottom: none;
  background: none;
}
.vc_tta-accordion.vc_tta-color-grey.vc_tta-style-classic .vc_tta-panel.vc_active .vc_tta-panel-heading a,
.vc_tta-accordion.vc_tta-color-grey.vc_tta-style-classic .vc_tta-panel.vc_active .vc_tta-panel-heading:hover a {
  color: #1674D1;
}
.vc_tta-accordion.vc_tta-color-grey.vc_tta-style-classic .vc_tta-panel.vc_active .vc_tta-panel-heading .vc_tta-controls-icon.vc_tta-controls-icon-plus:before {
  content: "\e689";
}
.vc_tta-accordion.vc_tta-color-grey.vc_tta-style-classic .vc_tta-panel .vc_tta-panel-body,
.vc_tta-accordion.vc_tta-color-grey.vc_tta-style-classic .vc_tta-panel .vc_tta-panel-heading {
  border-color: #eee;
}
.vc_tta-accordion.vc_tta-color-grey.vc_tta-style-classic .vc_tta-panel .vc_tta-panel-body {
  padding: 0 20px 30px 60px;
}
.vc_tta-accordion.vc_tta-color-grey.vc_tta-style-classic .vc_tta-panel .vc_tta-panel-heading {
  border-radius: 0;
  padding: 8px 0;
}
.vc_tta-accordion.vc_tta-color-grey.vc_tta-style-classic .vc_tta-panel .vc_tta-panel-heading .vc_tta-controls-icon.vc_tta-controls-icon-plus:before {
  font-family: 'Pe-icon-7-stroke';
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  content: "\e685";
  font-size: 26px;
  border: none;
}
.vc_tta-accordion.vc_tta-color-grey.vc_tta-style-classic .vc_tta-panel .vc_tta-panel-heading .vc_tta-controls-icon.vc_tta-controls-icon-plus:after {
  display: none;
}
.vc_tta-accordion.vc_tta-color-grey.vc_tta-style-classic .vc_tta-panel .vc_tta-panel-heading,
.vc_tta-accordion.vc_tta-color-grey.vc_tta-style-classic .vc_tta-panel .vc_tta-panel-heading:hover {
  background: none;
}
.vc_tta-accordion.vc_tta-color-grey.vc_tta-style-classic .vc_tta-panel .vc_tta-panel-heading a {
  color: #111;
}
.vc_tta-accordion.vc_tta-color-grey.vc_tta-style-classic .vc_tta-panel .vc_tta-panel-heading a span {
  font-size: 15px;
  padding-left: 15px;
  display: block;
  line-height: 1.5em;
}
.vc_tta-accordion.vc_tta-color-grey.vc_tta-style-classic .vc_tta-panel .vc_tta-panel-heading a:hover {
  color: #1674D1;
}
.vc_tta-accordion.vc_tta-color-grey.vc_tta-style-classic .vc_tta-panel .vc_tta-panel-body {
  background: none;
}
.polygon-sep-icon {
  display: inline-block;
  width: 32px;
  height: 32px;
  background: url("../images/separate-icon.png") no-repeat center center;
}
.drop-caps.skin2:first-letter {
  color: #fff;
  background: #1674D1;
  border-color: #1674D1;
}
.drop-caps.skin3:first-letter {
  color: #fff;
  background: #111;
  border-color: #111;
}
.drop-caps.skin4:first-letter,
.drop-caps.skin5:first-letter {
  font-size: 60px;
  padding: 0 10px 0px 0;
  background: none;
  border: none;
  margin-top: -16px;
  line-height: 1em;
}
.drop-caps.skin4:first-letter {
  color: #111;
}
.drop-caps.skin5:first-letter {
  color: #1674D1;
}
.drop-caps:first-letter {
  color: #111;
  background: transparent;
  display: block;
  padding: 3px 20px;
  float: left;
  margin-right: 10px;
  margin-top: -22px;
  font-size: 32px;
  border: 2px solid #eee;
}
.polygon-list ol li {
  line-height: 2.5em;
}
.polygon-list ul li {
  line-height: 2.5em;
  list-style-type: none;
}
.polygon-list.type1 li,
.polygon-list.type2 li,
.polygon-list.type3 li {
  position: relative;
}
.polygon-list.type1 li:before,
.polygon-list.type2 li:before,
.polygon-list.type3 li:before {
  font-family: 'Pe-icon-7-stroke';
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  color: #1674D1;
  position: absolute;
  font-size: 20px;
  top: 50%;
  left: -30px;
  margin-top: -10px;
}
.polygon-list.type1 li:before {
  content: "\e685";
}
.polygon-list.type2 li:before {
  left: -25px;
  content: "\e684";
}
.polygon-list.type3 li:before {
  content: "\e66c";
}
.polygon-list.type4 li {
  list-style-type: square;
}
.polygon-list.type5 li {
  list-style-type: disc;
}
.price-table .price-title {
  letter-spacing: 0.05em;
}
blockquote {
  font-size: 15px;
}
.polygon-quote,
.polygon-quote h1,
.polygon-quote h2,
.polygon-quote h3,
.polygon-quote h4,
.polygon-quote h5,
.polygon-quote h6 {
  letter-spacing: 0.15em;
}
.polygon-text-box {
  position: relative;
}
.polygon-text-box .number-text {
  position: absolute;
  top: 0;
  left: 0;
  opacity: .1;
  letter-spacing: 0;
  padding: 0 !important;
  margin: 0 !important;
  line-height: 1em !important;
}
.polygon-text-box .text-box-line {
  background-color: #aaa;
}
.polygon-text-box table td hr {
  background-color: #aaa;
}
.special-title {
  position: relative;
  z-index: 2;
}
.countdown-clock > h1,
.countdown-clock > h2,
.countdown-clock > h3,
.countdown-clock > h4,
.countdown-clock > h5,
.countdown-clock > h6 {
  display: inline-block;
  letter-spacing: 0;
  margin-left: 30px;
  color: #1674D1;
}
.countdown-clock > h1:first-child,
.countdown-clock > h2:first-child,
.countdown-clock > h3:first-child,
.countdown-clock > h4:first-child,
.countdown-clock > h5:first-child,
.countdown-clock > h6:first-child {
  margin-left: 0;
}
@media (max-width: 47.9375rem) {
  .countdown-clock > h1,
  .countdown-clock > h2,
  .countdown-clock > h3,
  .countdown-clock > h4,
  .countdown-clock > h5,
  .countdown-clock > h6 {
    display: block;
    margin-left: 0;
    margin-top: 10px;
  }
  .countdown-clock > h1:first-child,
  .countdown-clock > h2:first-child,
  .countdown-clock > h3:first-child,
  .countdown-clock > h4:first-child,
  .countdown-clock > h5:first-child,
  .countdown-clock > h6:first-child {
    margin-top: 0;
  }
}
.countdown-clock sup h1,
.countdown-clock sup h2,
.countdown-clock sup h3,
.countdown-clock sup h4,
.countdown-clock sup h5,
.countdown-clock sup h6 {
  display: inline-block;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #111;
}
.countdown-clock.type02 > h1,
.countdown-clock.type02 > h2,
.countdown-clock.type02 > h3,
.countdown-clock.type02 > h4,
.countdown-clock.type02 > h5,
.countdown-clock.type02 > h6 {
  margin-right: 40px;
  margin-left: 40px;
  vertical-align: middle;
}
@media (max-width: 47.9375rem) {
  .countdown-clock.type02 > h1,
  .countdown-clock.type02 > h2,
  .countdown-clock.type02 > h3,
  .countdown-clock.type02 > h4,
  .countdown-clock.type02 > h5,
  .countdown-clock.type02 > h6 {
    display: none;
  }
}
.countdown-clock.type02 div {
  display: inline-block;
  vertical-align: middle;
  text-align: center;
}
@media (max-width: 47.9375rem) {
  .countdown-clock.type02 div {
    display: block;
    margin-top: 20px;
  }
  .countdown-clock.type02 div:first-child {
    margin-top: 0;
  }
}
.countdown-clock.type02 div h1,
.countdown-clock.type02 div h2,
.countdown-clock.type02 div h3,
.countdown-clock.type02 div h4,
.countdown-clock.type02 div h5,
.countdown-clock.type02 div h6 {
  diplay: block;
}
.countdown-clock.type02 div h1:first-child,
.countdown-clock.type02 div h2:first-child,
.countdown-clock.type02 div h3:first-child,
.countdown-clock.type02 div h4:first-child,
.countdown-clock.type02 div h5:first-child,
.countdown-clock.type02 div h6:first-child {
  display: inline-block;
  vertical-align: middle;
  text-align: center;
  letter-spacing: 0;
  color: #1674D1;
}
.countdown-clock.type02 div h1:last-child,
.countdown-clock.type02 div h2:last-child,
.countdown-clock.type02 div h3:last-child,
.countdown-clock.type02 div h4:last-child,
.countdown-clock.type02 div h5:last-child,
.countdown-clock.type02 div h6:last-child {
  color: #111;
  text-transform: uppercase;
}
.vc_pie_chart {
  margin-top: 50px;
  position: relative;
}
.vc_pie_chart .vc_pie_chart_back {
  border-color: #EEEEEE !important;
  opacity: 1;
}
.vc_pie_chart.dark .wpb_pie_chart_heading i,
.vc_pie_chart.dark .wpb_pie_chart_heading span {
  color: #fff;
}
.vc_pie_chart.dark .vc_pie_chart_back {
  border-color: #333 !important;
  opacity: 1;
}
.vc_pie_chart .vc_pie_wrapper .vc_pie_chart_value {
  display: inline-block;
  height: auto !important;
  width: auto !important;
  line-height: 1em !important;
  background-color: #1674D1;
  color: #fff;
  font-size: 14px;
  letter-spacing: 0.05em;
  padding: 6px 7px;
  top: -50px;
  left: 50%;
  margin-left: -20px;
}
.vc_pie_chart .vc_pie_wrapper .vc_pie_chart_value:after {
  content: '';
  position: absolute;
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 6px solid #1674D1;
  bottom: -6px;
  left: 50%;
  margin-left: -5px;
}
.vc_pie_chart .wpb_pie_chart_heading {
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: -28px;
  margin-left: -25px;
}
.vc_pie_chart .wpb_pie_chart_heading i,
.vc_pie_chart .wpb_pie_chart_heading span {
  font-size: 50px;
  color: #111;
}
.vc_progress_bar.dark .value-item > span {
  color: #fff;
}
.vc_progress_bar.dark .value-item .content-item .vc_bar .vc_label_units {
  background-color: #1674D1;
}
.vc_progress_bar.dark .value-item .content-item .vc_bar .vc_label_units:after {
  border-top-color: #1674D1;
}
.vc_progress_bar .vc_single_bar {
  display: block;
  height: 5px;
}
.vc_progress_bar .value-item {
  display: table;
  position: relative;
  width: 100%;
  margin-top: 38px;
}
.vc_progress_bar .value-item:first-child {
  margin-top: 0;
}
.vc_progress_bar .value-item > span {
  width: 50px;
  vertical-align: bottom;
  font-size: 25px;
  color: #1674D1;
}
.vc_progress_bar .value-item > span,
.vc_progress_bar .value-item .content-item {
  display: table-cell;
}
.vc_progress_bar .value-item > span .vc_label,
.vc_progress_bar .value-item .content-item .vc_label {
  margin-bottom: 10px;
  font-size: 12px;
  letter-spacing: 0.3em;
  display: inline-block;
}
.vc_progress_bar .value-item > span .vc_bar,
.vc_progress_bar .value-item .content-item .vc_bar {
  position: relative;
}
.vc_progress_bar .value-item > span .vc_bar .vc_label_units,
.vc_progress_bar .value-item .content-item .vc_bar .vc_label_units {
  position: absolute;
  right: -20px;
  top: -50px;
  background-color: #111;
  color: #fff;
  font-size: 14px;
  letter-spacing: 0.05em;
  line-height: 1em;
  padding: 6px 7px;
}
.vc_progress_bar .value-item > span .vc_bar .vc_label_units:after,
.vc_progress_bar .value-item .content-item .vc_bar .vc_label_units:after {
  content: '';
  position: absolute;
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 6px solid #111;
  bottom: -6px;
  left: 50%;
  margin-left: -5px;
}
.vc_message_box .close-message-box {
  float: right;
  font-size: 20px;
  cursor: pointer;
  width: 20px;
  height: 20px;
}
.vc_message_box .vc_message_box-icon i.fa {
  font-size: 14px;
}
.vc_message_box.vc_message_box-standard.vc_message_box-square {
  border: none;
}
.vc_message_box.vc_message_box-standard.vc_message_box-square.vc_color-danger {
  background-color: #FFECEC;
}
.vc_message_box.vc_message_box-standard.vc_message_box-square.vc_color-danger,
.vc_message_box.vc_message_box-standard.vc_message_box-square.vc_color-danger .vc_message_box-icon i.fa {
  color: #DF6060;
}
.vc_message_box.vc_message_box-standard.vc_message_box-square.vc_color-alert-success {
  background-color: #E0F2D9;
}
.vc_message_box.vc_message_box-standard.vc_message_box-square.vc_color-alert-success,
.vc_message_box.vc_message_box-standard.vc_message_box-square.vc_color-alert-success .vc_message_box-icon i.fa {
  color: #58A839;
}
.vc_message_box.vc_message_box-standard.vc_message_box-square.vc_color-sky {
  background-color: #ECF1F9;
}
.vc_message_box.vc_message_box-standard.vc_message_box-square.vc_color-sky,
.vc_message_box.vc_message_box-standard.vc_message_box-square.vc_color-sky .vc_message_box-icon i.fa {
  color: #3D6EBF;
}
.vc_message_box.vc_message_box-standard.vc_message_box-square.vc_color-alert-warning {
  background-color: #FDF9DF;
}
.vc_message_box.vc_message_box-standard.vc_message_box-square.vc_color-alert-warning,
.vc_message_box.vc_message_box-standard.vc_message_box-square.vc_color-alert-warning .vc_message_box-icon i.fa {
  color: #EB9B0A;
}
@media (max-width: 74.9375rem) {
  .md-reset-border .vc_vc_column,
  .md-reset-border .vc_column {
    border: none !important;
  }
}
.counter {
  letter-spacing: 0.05em;
}
.tparrows.hermes.noSwipe {
  background-color: #fff;
}
.tparrows.hermes.noSwipe::before {
  color: #111;
}
@media (min-width: 75rem) {
  .vc_column_container.hover-padding-left-80:hover {
    padding-left: 80px !important;
  }
}
.mc4wp-form h3,
.mc4wp-form input {
  display: inline-block !important;
  vertical-align: middle;
  margin-left: 15px !important;
  margin-top: 10px;
  margin-bottom: 15px;
}
.mc4wp-form h3 {
  color: #1674D1;
  font-size: 28px;
  letter-spacing: 0.15em;
  margin-right: 15px;
}
.mc4wp-form .input {
  max-width: 400px;
  background-color: #324452;
  border-color: #324452;
  color: #fff;
}
.mc4wp-form .btn {
  padding-top: 15px;
  padding-bottom: 15px;
}
.eg-polygon-skin-07-element-11,
.eg-polygon-skin-08-element-8,
.eg-polygon-skin-08-element-14,
.eg-polygon-skin-09-element-8,
.eg-polygon-skin-09-element-14,
.eg-polygon-skin-10-element-3,
.eg-polygon-skin-11-element-3 {
  letter-spacing: 0.3em !important;
}
@media (min-width: 75rem) {
  .form-get-trial .input-email {
    margin-left: -10%;
    width: 100%;
  }
  .form-get-trial .input-email input {
    width: 120%;
    max-width: 120%;
  }
}
.form-get-trial .input-email input {
  border: 2px solid #EEEEEE;
  text-align: center;
  font-size: 20px;
}
.form-get-trial .text-small {
  font-size: 13px;
  font-style: italic;
  color: #bbb;
  margin: 0 auto 30px;
}
.home-custom-menu ul li a {
  display: inline-block;
  font-size: 12px;
  text-transform: uppercase;
  padding: 0 22px;
  letter-spacing: 0.2em;
  color: #868686;
}
.home-custom-menu ul li a:hover {
  color: #1674D1;
}
.home-custom-menu.dark ul li a {
  color: #fff;
}
.home-custom-menu.dark ul li a:hover {
  color: #1674D1;
}
.color-white,
.color-white ul li:before {
  color: #fff !important;
}
.contact-container-02 .menu-social-container ul li {
  margin-left: 30px;
}
.contact-container-02 .menu-social-container ul li:first-child {
  margin-left: 0;
}
.contact-container-02 .menu-social-container ul li a:before {
  font-size: 28px;
  color: #111;
}
.contact-container-02 .menu-social-container ul li a:hover:before {
  color: #1472D1;
}
.esgbox-overlay .esgbox-skin {
  box-shadow: none !important;
}
.esgbox-overlay .esgbox-title.esgbox-title-outside-wrap {
  text-align: left !important;
  font-family: inherit !important;
  font-weight: inherit !important;
  font-size: inherit !important;
}
.esgbox-overlay .esgbox-close {
  bottom: -22px;
  right: -10px;
  top: inherit;
  background: none;
  z-index: 99999;
}
.esgbox-overlay .esgbox-close:before {
  content: "\e680";
  font-family: 'Pe-icon-7-stroke';
  font-size: 40px;
  color: #fff;
}
.esgbox-overlay .esgbox-nav span {
  background: #fff;
  display: block !important;
  opacity: 0.5 !important;
  visibility: visible !important;
  padding: 6px 0 0 0px;
  color: #333333;
  height: 100px;
  margin-top: -50px;
  width: 50px;
  line-height: 90px;
  text-align: center;
}
.esgbox-overlay .esgbox-nav span:before {
  font-family: 'Pe-icon-7-stroke';
  font-size: 45px;
}
.esgbox-overlay .esgbox-nav span:hover {
  opacity: 1 !important;
  color: #1674D1;
}
.esgbox-overlay .esgbox-next span {
  right: 0;
}
.esgbox-overlay .esgbox-next span:before {
  content: "\e684";
}
.esgbox-overlay .esgbox-prev span {
  left: 0;
}
.esgbox-overlay .esgbox-prev span:before {
  content: "\e686";
}
.has-arrow-right {
  position: relative;
}
.has-arrow-right:after {
  content: '';
  width: 0;
  height: 0;
  border-top: 40px solid transparent;
  border-bottom: 40px solid transparent;
  border-left: 20px solid #f7f7f7;
  position: absolute;
  right: -20px;
  top: 50%;
  margin-top: -40px;
}
.carousel-partners .wpb_image_grid_ul {
  height: auto !important;
}
.carousel-partners .wpb_image_grid_ul .owl-item .isotope-item {
  max-width: 100%;
  max-height: 150px;
  width: 100%;
  display: block;
  position: static !important;
  margin: 0 !important;
  text-align: center;
}
.carousel-partners .wpb_image_grid_ul .owl-item .isotope-item img {
  margin: 0 auto;
}
.shopby-catogories {
  background-repeat: no-repeat;
  background-position: center;
}
.shopby-catogories.white-color .woocommerce ul.products li.product h3 mark,
.shopby-catogories.white-color .woocommerce ul.products li.product h3 ins,
.shopby-catogories.white-color .woocommerce ul.products li.product h3 {
  background: none;
  color: #fff;
}
.shopby-catogories.white-color .woocommerce ul.products li.product h3 mark:hover,
.shopby-catogories.white-color .woocommerce ul.products li.product h3 ins:hover,
.shopby-catogories.white-color .woocommerce ul.products li.product h3:hover,
.shopby-catogories.white-color .woocommerce ul.products li.product h3 mark:hover *,
.shopby-catogories.white-color .woocommerce ul.products li.product h3 ins:hover *,
.shopby-catogories.white-color .woocommerce ul.products li.product h3:hover * {
  color: #1674D1 !important;
}
.shopby-catogories .woocommerce ul.products .product-category {
  margin-bottom: 0;
}
.shopby-catogories .woocommerce ul.products .product-category img {
  display: none;
}
.shopby-catogories .woocommerce ul.products .product-category h3 {
  font-size: 14px;
}
.eg-polygon-skin-12-element-6 {
  letter-spacing: 0.3em !important;
}
.eg-polygon-skin-12-content,
.eg-polygon-skin-14-content {
  background: none !important;
}
.col-20 {
  width: 20% !important;
}
.cols-same-height {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.wpb_button,
.wpb_column > .wpb_wrapper > :last-child {
  margin-bottom: 0;
}
.wpb_column > .wpb_wrapper {
  width: 100%;
}
.wpb_button,
.wpb_content_element,
.wpb_row,
ul.wpb_thumbnails-fluid > li {
  margin-bottom: 35px;
}
html .vc_row:before,
html .row:before,
html .vc_row:after,
html .row:after {
  display: block;
}
body .vc_row[data-vc-full-width] {
  overflow: visible;
}
@media (min-width: 768px) {
  .vc_column_container.vc_col-sm-4,
  .vc_column_container.vc_col-sm-8,
  .vc_column_container.vc_col-sm-6,
  .vc_column_container.vc_col-sm-7 {
    width: 100%;
  }
}
@media (min-width: 49em) {
  .vc_column_container.vc_col-sm-4 {
    width: 33.33333333%;
  }
  .vc_column_container.vc_col-sm-8 {
    width: 66.66666667%;
  }
  .vc_column_container.vc_col-sm-6 {
    width: 50%;
  }
  .vc_column_container.vc_col-sm-7 {
    width: 58.33333333%;
  }
}
@media (max-width: 49em) {
  .vc_column_container.vc_col-md-12 {
    width: 100%;
  }
}
@media (min-width: 1200px) {
  .vc_column_container.vc_col-lg-3 {
    width: 25%;
  }
}
@media (max-width: 768px) {
  body .vc_column_container {
    padding-left: 15px !important;
    padding-right: 15px !important;
  }
  body .vc_column_container.no-padding {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
  .wpb_single_image.wpb_content_element {
    text-align: center!important;
  }
}
ul#menu-features {
  margin: 0 15px;
}
.copyright .left {
  line-height: 1.8;
}
@media (max-width: 74.9375rem) {
  .vc_tta.vc_tta-spacing-1.tab-skin1.vc_tta-color-black.vc_tta-style-outline .vc_tta-panel .vc_tta-panel-heading:hover,
  .vc_tta.vc_tta-spacing-1.tab-skin1.vc_tta-color-black.vc_tta-style-outline .vc_tta-panel .vc_tta-panel-heading:focus {
    background-color: #1674D1;
  }
  .vc_tta.vc_tta-spacing-1.tab-skin1.vc_tta-color-black.vc_tta-style-outline .vc_tta-panel .vc_tta-panel-heading:hover span,
  .vc_tta.vc_tta-spacing-1.tab-skin1.vc_tta-color-black.vc_tta-style-outline .vc_tta-panel .vc_tta-panel-heading:focus span {
    color: #fff;
  }
  .vc_tta.vc_tta-spacing-1.tab-skin1 .vc_tta-panels-container .vc_active .vc_tta-panel-heading {
    background-color: #1674D1;
    border-color: #1674D1;
  }
  .vc_tta.vc_tta-spacing-1.tab-skin1 .vc_tta-panels-container .vc_active .vc_tta-panel-heading span {
    color: #fff;
  }
  .vc_tta.vc_tta-spacing-1.tab-skin1 .vc_tta-panels-container .vc_tta-panel-heading {
    border: 1px solid #eee !important;
    border-width: 1px !important;
    font-size: 12px;
  }
  .vc_tta.vc_tta-spacing-1.tab-skin1 .vc_tta-panels-container .vc_tta-panel-heading span {
    font-size: 12px;
    color: #878787;
    letter-spacing: 0.08em;
    font-weight: 900;
  }
  .vc_tta.vc_tta-spacing-1.tab-skin1 .vc_tta-panels-container .vc_tta-panel-body {
    border: 1px solid #eee !important;
  }
  .vc_tta.vc_tta-spacing-1.tab-skin1 .vc_tta-panels-container .vc_tta-panels {
    border: none !important;
  }
}
.vc_tta.vc_tta-spacing-1.tab-skin1 .vc_tta-panels {
  border: none !important;
}
.vc_tta.vc_tta-spacing-1.tab-skin1 .vc_tta-panel {
  margin: 0!important;
  margin-top: 1px!important;
}
.vc_tta.vc_tta-spacing-1.tab-skin1 .vc_tta-tab {
  margin-left: 0;
}
.vc_tta.vc_tta-spacing-1.tab-skin1 .vc_tta-tab a {
  border: none;
  border-top: 1px solid #eee;
  color: #878787;
  font-size: 12px;
  font-weight: 900;
  margin-bottom: 0px;
}
.vc_tta.vc_tta-spacing-1.tab-skin1 .vc_tta-tab a:hover {
  background-color: #1674D1;
  border-color: #1674D1;
  color: #fff;
}
.vc_tta.vc_tta-spacing-1.tab-skin1 .vc_tta-tab:first-child a {
  border-left: 1px solid #eee;
  margin-left: 1px;
}
.vc_tta.vc_tta-spacing-1.tab-skin1 .vc_tta-tab:last-child a {
  border-right: 1px solid #eee;
}
.vc_tta.vc_tta-spacing-1.tab-skin1 .vc_tta-tab.vc_active a {
  background-color: #1674D1;
  border-color: #1674D1;
  color: #fff;
}
.vc_tta.vc_tta-spacing-1.tab-skin1 .vc_tta-panels,
.vc_tta.vc_tta-spacing-1.tab-skin1 .vc_tta-panels .vc_active.vc_tta-panel {
  margin-top: 0;
  border-top: none;
}
.vc_tta.vc_tta-spacing-1.tab-skin1 .vc_tta-panels .vc_active.vc_tta-panel {
  border: 1px solid #eee !important;
}
@media (max-width: 74.9375rem) {
  .vc_tta.vc_tta-spacing-1.tab-skin2.vc_tta-color-black.vc_tta-style-outline .vc_tta-panel .vc_tta-panel-heading:hover,
  .vc_tta.vc_tta-spacing-1.tab-skin2.vc_tta-color-black.vc_tta-style-outline .vc_tta-panel .vc_tta-panel-heading:focus {
    background: none;
  }
  .vc_tta.vc_tta-spacing-1.tab-skin2.vc_tta-color-black.vc_tta-style-outline .vc_tta-panel .vc_tta-panel-heading:hover span,
  .vc_tta.vc_tta-spacing-1.tab-skin2.vc_tta-color-black.vc_tta-style-outline .vc_tta-panel .vc_tta-panel-heading:focus span {
    color: #1674D1;
  }
  .vc_tta.vc_tta-spacing-1.tab-skin2 .vc_tta-panels-container .vc_active .vc_tta-panel-heading {
    background: none;
  }
  .vc_tta.vc_tta-spacing-1.tab-skin2 .vc_tta-panels-container .vc_active .vc_tta-panel-heading span {
    color: #1674D1;
  }
  .vc_tta.vc_tta-spacing-1.tab-skin2 .vc_tta-panels-container .vc_tta-panel-heading {
    border: 1px solid #eee !important;
    border-width: 1px !important;
    font-size: 12px;
  }
  .vc_tta.vc_tta-spacing-1.tab-skin2 .vc_tta-panels-container .vc_tta-panel-heading span {
    font-size: 12px;
    color: #878787;
    letter-spacing: 0.08em;
    font-weight: 900;
  }
  .vc_tta.vc_tta-spacing-1.tab-skin2 .vc_tta-panels-container .vc_tta-panel-body {
    border: none!important;
    padding-left: 5px!important;
  }
  .vc_tta.vc_tta-spacing-1.tab-skin2 .vc_tta-panels-container .vc_tta-panels {
    border: none !important;
  }
}
.vc_tta.vc_tta-spacing-1.tab-skin2 .vc_tta-tab {
  margin-left: 0;
}
.vc_tta.vc_tta-spacing-1.tab-skin2 .vc_tta-tab a {
  border: none;
  border-left: 2px solid #eee;
  color: #878787;
  font-size: 12px;
  font-weight: 900;
  padding-top: 8px;
  padding-bottom: 8px;
}
.vc_tta.vc_tta-spacing-1.tab-skin2 .vc_tta-tab a:hover {
  background: none;
  color: #1674D1;
}
.vc_tta.vc_tta-spacing-1.tab-skin2 .vc_tta-tab:first-child a {
  padding-left: 0;
  border-left: none;
}
.vc_tta.vc_tta-spacing-1.tab-skin2 .vc_tta-tab.vc_active a {
  color: #1674D1;
  border-color: #eee;
}
.vc_tta.vc_tta-spacing-1.tab-skin2 .vc_tta-panels,
.vc_tta.vc_tta-spacing-1.tab-skin2 .vc_tta-panels .vc_active.vc_tta-panel {
  margin-top: 0;
  border: none !important;
}
.vc_tta.vc_tta-spacing-1.tab-skin2 .vc_tta-panels .vc_tta-panel-body,
.vc_tta.vc_tta-spacing-1.tab-skin2 .vc_tta-panels .vc_active.vc_tta-panel .vc_tta-panel-body {
  padding-left: 0;
  padding-right: 0;
}
@media (max-width: 74.9375rem) {
  .polygon-hoz-tab.vc_tta-tabs.vc_tta-color-black.vc_tta-style-outline .vc_tta-panel .vc_tta-panel-heading:hover,
  .polygon-hoz-tab.vc_tta-tabs.vc_tta-color-black.vc_tta-style-outline .vc_tta-panel .vc_tta-panel-heading:focus {
    background: none;
  }
  .polygon-hoz-tab.vc_tta-tabs.vc_tta-color-black.vc_tta-style-outline .vc_tta-panel .vc_tta-panel-heading:hover span,
  .polygon-hoz-tab.vc_tta-tabs.vc_tta-color-black.vc_tta-style-outline .vc_tta-panel .vc_tta-panel-heading:focus span {
    color: #1674D1;
  }
  .polygon-hoz-tab.vc_tta-tabs .vc_tta-panels-container .vc_active .vc_tta-panel-heading {
    background: none;
  }
  .polygon-hoz-tab.vc_tta-tabs .vc_tta-panels-container .vc_active .vc_tta-panel-heading span {
    color: #1674D1;
  }
  .polygon-hoz-tab.vc_tta-tabs .vc_tta-panels-container .vc_tta-panel-heading {
    border: 1px solid #eee !important;
    border-left-color: #1674D1!important;
    border-right-color: #1674D1!important;
    border-left-width: 2px!important;
    border-right-width: 2px!important;
    font-size: 12px;
  }
  .polygon-hoz-tab.vc_tta-tabs .vc_tta-panels-container .vc_tta-panel-heading span {
    font-size: 12px;
    color: #878787;
    letter-spacing: 0.08em;
    font-weight: 900;
  }
  .polygon-hoz-tab.vc_tta-tabs .vc_tta-panels-container .vc_tta-panel-body {
    border: none!important;
    padding-left: 5px!important;
  }
  .polygon-hoz-tab.vc_tta-tabs .vc_tta-panels-container .vc_tta-panels {
    border: none !important;
  }
}
.polygon-hoz-tab.vc_tta-tabs .vc_tta-tab {
  margin-top: -1px !important;
}
.polygon-hoz-tab.vc_tta-tabs .vc_tta-tab a {
  border-top: none!important;
  border-left: 2px solid ;
  border-right: 2px solid ;
  border-bottom: 1px solid #EEEEEE!important;
}
.polygon-hoz-tab.vc_tta-tabs .vc_tta-tab a .vc_tta-title-text {
  color: #878787;
  font-size: 12px;
  font-weight: 900;
}
.polygon-hoz-tab.vc_tta-tabs .vc_tta-tab a:hover {
  background: none!important;
}
.polygon-hoz-tab.vc_tta-tabs .vc_tta-tab a:hover .vc_tta-title-text {
  color: #1674D1;
}
.polygon-hoz-tab.vc_tta-tabs .vc_tta-tab:first-child {
  margin-top: 1px!important;
}
.polygon-hoz-tab.vc_tta-tabs .vc_tta-tab:first-child a {
  border-top: 1px solid #EEEEEE !important;
}
.polygon-hoz-tab.vc_tta-tabs .vc_tta-tab.vc_active a .vc_tta-title-text {
  color: #1674D1;
}
.polygon-hoz-tab.vc_tta-tabs .vc_tta-panels-container .vc_tta-panels {
  border: none!important;
}
/*# sourceMappingURL=main.css.map */