/*
 Flexbox grid @mixin
 EXAMPLE
 .flexbox {
 @include boxGrid(5, 4%);
 }
 */
h1, .h1 {
  color: #fff;
  font-size: 40px;
  line-height: 1.2;
  text-transform: uppercase;
  font-family: 'AvenirNext', sans-serif;
  font-weight: 700;
  letter-spacing: 1px;
}
h2, .h2 {
  color: #171723;
  font-size: 24px;
  line-height: 1.2;
  text-transform: uppercase;
  font-family: 'Avenir', sans-serif;
  font-weight: 900;
  letter-spacing: 1px;
  margin-bottom: 30px;
}
article, aside, details, figcaption, figure, footer, header, hgroup, nav, section, summary, main {
  display: block;
}
audio, canvas, video, progress {
  vertical-align: baseline;
  display: inline-block;
  *display: inline;
  *zoom: 1;
}
audio:not([controls]), [hidden], template, .jEmpty {
  display: none;
  height: 0;
}
*, *:after, *:before {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  -o-box-sizing: border-box;
  box-sizing: border-box;
}
mark {
  background: none;
}
sub, sup {
  position: relative;
  font-size: 75%;
  line-height: 0;
  vertical-align: baseline;
}
sup {
  top: -0.5em;
}
sub {
  bottom: -0.25em;
}
pre {
  overflow: auto;
}
code, kbd, pre, samp {
  font-family: monospace, monospace;
  font-size: 1em;
}
html, body {
  height: 100%;
  margin: 0;
}
html {
  min-height: 100%;
  -webkit-font-smoothing: antialiased;
  -webkit-overflow-scrolling: touch;
  -webkit-text-size-adjust: none;
  -ms-text-size-adjust: none;
}
html > body {
  height: auto;
  min-height: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-direction: normal;
  -webkit-box-orient: vertical;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}
#main {
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
  -moz-flex-grow: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
}
a {
  color: #2c2869;
  text-decoration: none;
  outline: 0 none;
}
a:hover {
  outline: 0 none;
}
input[type='text'], input[type='email'], input[type='password'], input[type='color'], input[type='url'], input[type='image'], input[type='tel'], input[type='submit'], input[type='file'], input[type='range'], input[type='reset'], input[type='button'], input[type='search'], button, textarea, select {
  outline: 0 none;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  -o-box-sizing: border-box;
  box-sizing: border-box;
}
* {
  margin: 0;
  padding: 0;
  border-collapse: collapse;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  word-wrap: break-word;
}
img {
  max-width: 100%;
  height: auto;
  width: auto;
  vertical-align: middle;
}
a > img {
  border: 0;
}
p {
  padding-bottom: 20px;
}
ul, ol {
  list-style: none;
}
#wrap {
  min-height: 100%;
}
.clear {
  clear: both;
}
.cfx:after {
  content: ".";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0;
}
html[xmlns] .cfx {
  display: block;
}
* html .cfx {
  height: 1%;
}
::-moz-selection {
  color: #fff;
  /*background: #00c2cb;*/
}
::selection {
  color: #fff;
  /*background: #00c2cb;*/
}
/* Let's get this party started */
::-webkit-scrollbar {
  width: 12px;
}
::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
}
::-webkit-scrollbar-thumb {
  background: #000;
  box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.8);
}
.valign {
  display: inline-block;
  vertical-align: middle;
  max-width: 98%;
}
.vfix {
  display: inline-block;
  height: 100%;
  vertical-align: middle;
  width: 0;
}
.alignleft {
  float: left;
}
.alignright {
  float: right;
}
img {
  display: block;
}
img.aligncenter {
  margin: 20px auto;
}
img.alignleft {
  margin: 0 20px 20px 0;
}
img.alignright {
  margin: 0 0 20px 20px;
}
.googlemap img {
  max-width: none;
}
hr {
  background: #e1e1e1;
  height: 1px;
  border: 0 none;
  display: block;
  clear: both;
  margin: 20px 0;
}
strong {
  font-weight: 700;
}
.fullframe {
  height: 0;
  margin: 0;
  overflow: hidden;
  padding-bottom: 56.25%;
  padding-top: 30px;
  position: relative;
  z-index: 0;
}
.fullframe > iframe, .fullframe > object, .fullframe > embed {
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: -1;
  border: none;
}
input[type="submit"] {
  cursor: pointer;
}
textarea, button, a, input, .btn {
  -webkit-transition: 0.5s all ease;
  -moz-transition: 0.5s all ease;
  -ms-transition: 0.5s all ease;
  -o-transition: 0.5s all ease;
  transition: 0.5s all ease;
}
body {
  position: relative;
  font: 400 16px/1.4 'Playfair Display', sans-serif;
  color: #666;
  background: #fff;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-direction: normal;
  -webkit-box-orient: vertical;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-flex: auto;
  -webkit-flex: auto;
  -moz-box-flex: auto;
  -moz-flex: auto;
  -ms-flex: auto;
  flex: auto;
}
.selbel_w {
  position: relative;
  display: block;
  width: 100%;
  font: 400 14px/40px 'Playfair Display', sans-serif;
  height: 40px;
}
.selbel_w select {
  width: 100%;
  height: 100%;
  cursor: pointer;
  position: relative;
  display: block;
  z-index: 1;
  opacity: 0;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
}
.selbel_w select + span {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #fff;
  color: #555;
  padding: 0 10px;
  border-radius: 5px;
  border: 1px solid #eee;
}
.selbel_w select + span:after {
  content: '';
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 9px 5px 0 5px;
  border-color: #555 transparent transparent transparent;
  position: absolute;
  right: 13px;
  top: 16px;
}
.selbel_w select + span:before {
  background: #eee;
  bottom: 7px;
  content: "";
  position: absolute;
  right: 35px;
  top: 7px;
  width: 1px;
}
.selbel_w select + span.err {
  border-color: #ef4036;
}
.selbel_w select option {
  padding: 5px;
}
ul {
  margin: 0;
}
.wpcf7 .screen-reader-response {
  display: none !important;
}
.wpcf7 .wpcf7-not-valid-tip {
  background: #eee;
  color: #ff5f5f;
  font: 500 12px/45px 'Museo Sans';
  left: 0;
  position: absolute;
  right: 0;
  text-align: center;
  top: 0;
}
.wpcf7 .wpcf7-response-output {
  background: #fff;
  padding: 2%;
  float: left;
  width: 100%;
  display: none;
  margin: 20px 0;
  text-align: center;
}
.wpcf7 .wpcf7-response-output.wpcf7-validation-errors {
  background: #ff5f5f;
  color: #fff;
}
.wpcf7 .wpcf7-response-output.wpcf7-mail-sent-ng {
  background: #1091ae;
  color: #fff;
}
.wpcf7 .wpcf7-response-output.wpcf7-mail-sent-ok {
  background: #16a085;
  color: #fff;
}
.wpcf7 .wpcf7-form-control-wrap {
  display: block !important;
  position: relative;
}
.ajax-loader {
  height: 0;
  width: 0;
}
.ajax-loader.is-active {
  background: url('../img/spinner.gif');
  width: 30px;
  height: 30px;
  display: block;
  margin: 0 auto;
  background-size: cover;
}
a[href^=tel] {
  text-decoration: inherit;
  color: inherit;
}
.row {
  margin: 0 auto;
  max-width: 96%;
  position: relative;
  width: 1580px;
}
/*=== Start Style ===*/
.hr {
  position: relative;
  display: block;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -moz-box-flex: 1;
  -moz-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
.hr:before {
  width: 100%;
  content: '';
  height: 0.5px;
  left: 0;
  right: 0;
  border: 1px solid #efefef;
  position: absolute;
  bottom: 4px;
}
.box {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
}
#myIndicator {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 0%;
  height: 100%;
  z-index: 2;
  background: #fbf8f3;
  /*#c4984f*/
}
nav > ul > li.gr > a {
  color: #afafaf;
}
header {
  background: #221d36;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 9999;
  padding: 30px 0;
}
header .logo {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 4;
  height: 100%;
  padding: 0 0 17px;
  max-width: 185px;
}
header .logo svg {
  height: 100%;
}
header .logo svg path {
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
header .logo.g svg path {
  fill: #c4984f;
}
header nav {
  text-align: center;
}
#main {
  margin-top: 85px;
}
.top-home {
  min-height: calc(100vh - 85px);
  display: none;
}
.top-home-desc {
  display: block;
  height: calc(100vh - 85px);
  position: relative;
}
.top-home-desc img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.top-home-desc > div {
  position: absolute;
  bottom: 0;
  left: 0;
}
.right-nav {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center;
  width: 240px;
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
}
.right-nav a {
  color: #b28a4c;
  text-transform: uppercase;
  font-size: 18px;
  letter-spacing: 2px;
  font-weight: 900;
  font-family: 'Avenir', sans-serif;
  position: relative;
}
.right-nav a:before {
  content: '';
  width: 0;
  height: 2px;
  background: #b28a4c;
  position: absolute;
  bottom: -2px;
  left: 0;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.right-nav a:hover:before {
  width: 100%;
  right: 0;
}
@media screen and (min-width: 1200px) {
  .sub-menu {
    z-index: -99;
    opacity: 0;
    visibility: hidden;
    position: absolute;
    left: 50%;
    padding-top: 45px;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    -webkit-justify-content: flex-start;
    -moz-justify-content: flex-start;
    justify-content: flex-start;
    -webkit-flex-flow: wrap;
    -moz-flex-flow: wrap;
    -ms-flex-flow: wrap;
    flex-flow: wrap;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    margin: 0 -0;
    width: 100%;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
    width: 97%;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    -moz-justify-content: center;
    justify-content: center;
  }
  .sub-menu > * {
    width: 25%;
    margin: 0 0 0em;
  }
  .sub-menu li {
    position: relative;
    -webkit-transition: none 0.5s ease;
    -moz-transition: none 0.5s ease;
    -ms-transition: none 0.5s ease;
    -o-transition: none 0.5s ease;
    transition: none 0.5s ease;
  }
  .sub-menu a {
    font-size: 0;
    display: block;
    border: 2px solid #fff;
    position: relative;
    -webkit-transition: none 0.5s ease;
    -moz-transition: none 0.5s ease;
    -ms-transition: none 0.5s ease;
    -o-transition: none 0.5s ease;
    transition: none 0.5s ease;
  }
  .sub-menu a:before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
    background-color: rgba(0, 0, 0, 0.3);
  }
  .sub-menu a:hover:before {
    background-color: rgba(196, 152, 79, 0.6);
  }
  .sub-menu a span {
    text-align: left;
    position: absolute;
    bottom: 25px;
    text-transform: uppercase;
    color: #fff;
    left: 40px;
    font-size: 24px;
    font-family: 'AvenirNext', sans-serif;
    font-weight: 500;
    letter-spacing: 3px;
    z-index: 1;
  }
  .sub-menu div {
    -webkit-background-size: cover;
    background-size: cover;
    background-repeat: no-repeat;
  }
  .normal-dropdown .sub-menu {
    -webkit-box-direction: normal;
    -webkit-box-orient: vertical;
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .normal-dropdown .sub-menu li {
    width: 100%;
  }
  .normal-dropdown .sub-menu a {
    white-space: nowrap;
    border: none;
    padding: 20px 0;
    text-transform: uppercase;
    color: #fff;
    font-size: 24px;
    font-family: 'AvenirNext', sans-serif;
    font-weight: 500;
    letter-spacing: 3px;
    z-index: 1;
  }
  .normal-dropdown .sub-menu a:before {
    z-index: -1;
  }
}
nav > ul {
  text-align: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center;
}
nav > ul > li {
  z-index: 3;
  margin: 0 2%;
}
nav > ul > li > a {
  text-transform: uppercase;
  font-size: 18px;
  color: #fff;
  letter-spacing: 4px;
  font-weight: 900;
  font-family: 'Avenir', sans-serif;
  position: relative;
}
nav > ul > li > a:before {
  content: '';
  width: 0;
  height: 2px;
  background: #fff;
  position: absolute;
  bottom: -2px;
  left: 0;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
nav > ul > li > a:hover:before {
  width: 100%;
  right: 0;
}
nav > ul > li:hover .sub-menu {
  visibility: visible;
  opacity: 1;
  z-index: 1;
}
.top-image {
  -webkit-background-size: cover;
  background-size: cover;
  background-position: center;
}
.top-image > div {
  width: 100%;
  margin: auto;
}
.top-home > div {
  width: 100%;
  margin: auto 0 150px;
}
.top-home > div h1 {
  font-weight: 500;
  letter-spacing: 2px;
  font-size: 40px;
  font-family: 'Avenir', sans-serif;
}
.content {
  padding: 100px 0;
}
.career .row {
  width: 860px;
}
.career p {
  padding-bottom: 60px;
}
.content.page .row {
  width: 860px;
}
.content.page p {
  padding-bottom: 60px;
}
.content.tax h1 {
  position: relative;
  text-align: center;
  color: #171723;
  font-size: 32px;
  padding-top: 40px;
  margin-bottom: 90px;
  font-weight: 700;
  letter-spacing: 3px;
  font-family: 'AvenirNext', sans-serif;
}
.content.tax h1:before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 40px;
  height: 5px;
  top: 0;
  background: #c4984f;
}
.content.tax article {
  overflow: hidden;
}
.content.tax article .box {
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.content.tax article .box > a {
  display: block;
  -webkit-flex-basis: 50%;
  -moz-flex-basis: 50%;
  -ms-flex-preferred-size: 50%;
  flex-basis: 50%;
}
.content.tax .blogpost {
  padding: 10px;
  position: relative;
}
.content.tax .blogpost:nth-of-type(odd) {
  padding-right: 5px;
  padding-bottom: 0px;
}
.content.tax .blogpost:nth-of-type(even) {
  padding-left: 5px;
  padding-bottom: 0px;
}
.content.tax .blogpost .thumb {
  position: relative;
}
.content.tax .blogpost .thumb:before {
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  background: #c4984f;
  opacity: 0;
}
.content.tax .blogpost:hover .thumb:before {
  opacity: 0.6;
}
.content.tax .excerpt {
  position: absolute;
  bottom: 50px;
  left: 70px;
  text-transform: uppercase;
  color: #fff;
  font-weight: 500;
  font-family: 'Avenir', sans-serif;
  font-size: 30px;
}
.home .content {
  padding: 100px 0 0;
}
.product-cat .row {
  width: 1735px;
}
.product-cat h1 {
  position: relative;
  text-align: center;
  color: #171723;
  font-size: 32px;
  padding-top: 40px;
  margin-bottom: 90px;
  font-weight: 700;
  letter-spacing: 3px;
  font-family: 'AvenirNext', sans-serif;
}
.product-cat h1:before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 40px;
  height: 5px;
  top: 0;
  background: #c4984f;
}
.product-cat article > .box {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  -moz-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-flex-flow: wrap;
  -moz-flex-flow: wrap;
  -ms-flex-flow: wrap;
  flex-flow: wrap;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  margin: 0 -0.5%;
  width: 101%;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center;
}
.product-cat article > .box > * {
  width: 24%;
  margin: 0 0.5% 0.625em;
}
.product-cat .post-wr {
  -webkit-background-size: cover;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  min-height: 600px !important;
}
.product-cat .post-wr .excerpt {
  position: absolute;
  bottom: 30px;
  z-index: 99;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  padding: 0 30px;
  color: #fff;
  font-size: 24px;
  font-family: 'Avenir', sans-serif;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 2px;
}
.product-cat .post-wr .excerpt span {
  display: block;
  margin-top: 20px;
  font-size: 14px;
}
.product-cat .post-wr:before {
  z-index: 98;
  content: '';
  width: 100%;
  bottom: 0;
  background: rgba(196, 152, 79, 0.4);
  top: 0;
  position: absolute;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.product-cat .post-wr:hover:before {
  opacity: 1;
  visibility: visible;
}
.top-footer {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  justify-content: space-between;
}
.top-footer > div {
  padding: 140px 0;
  -webkit-flex-basis: 50%;
  -moz-flex-basis: 50%;
  -ms-flex-preferred-size: 50%;
  flex-basis: 50%;
}
.top-footer .soc-ico {
  margin-bottom: 50px;
}
.top-footer form {
  width: 70%;
  margin: 0 auto;
}
.top-footer form .h2 {
  text-align: center;
  color: #fff;
}
.top-footer form .h2:before {
  position: absolute;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
  -moz-transform: translate(-50%, 0);
  -ms-transform: translate(-50%, 0);
  -o-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
}
.top-footer form p {
  text-align: center;
  padding-bottom: 60px;
}
.top-footer form label {
  display: block;
  font-weight: 100;
  color: #c4984f;
  font-size: 12px;
  font-family: 'Avenir', sans-serif;
}
.top-footer form .box {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  justify-content: space-between;
  margin-bottom: 45px;
}
.top-footer form .box > div {
  -webkit-flex-basis: 45%;
  -moz-flex-basis: 45%;
  -ms-flex-preferred-size: 45%;
  flex-basis: 45%;
}
.top-footer form input:not([type="submit"]) {
  color: #fff;
  width: 100%;
  height: 35px;
  background: transparent;
  border: 0;
  border-bottom: 1px solid #c4984f;
  margin-top: 5px;
}
.top-footer form textarea {
  color: #fff;
  margin-top: 5px;
  width: 100%;
  height: 50px;
  resize: vertical;
  background: transparent;
  border: 0;
  border-bottom: 1px solid #c4984f;
  margin-bottom: 75px;
}
.top-footer .contact {
  width: 70%;
  margin: 0 auto;
}
.top-footer .contact .contact-info {
  margin-bottom: 25px;
}
.top-footer .contact .contact-info p:first-of-type {
  padding-bottom: 10px;
}
.top-footer .contact .contact-info p:first-of-type a {
  color: #000;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.top-footer .contact .contact-info p:first-of-type a:hover {
  color: #c4984f;
}
.top-footer .contact .contact-info strong {
  font-family: 'Avenir', sans-serif;
  font-weight: 900;
  color: #181b25;
  text-transform: uppercase;
  font-size: 16px;
}
.top-footer .contact .h2 {
  margin-bottom: 80px;
}
.top-footer .soc-ico li {
  margin-right: 30px;
}
.top-footer .soc-ico i {
  font-size: 20px;
  color: #414141;
}
.top-footer .soc-ico a:hover i {
  color: #c4984f;
}
.top-footer .h2 {
  position: relative;
  padding-top: 40px;
  font-size: 36px;
}
.top-footer .h2:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 40px;
  height: 5px;
  background: #c4984f;
}
.top-footer input[type="submit"] {
  padding: 20px 0;
  display: block;
  text-align: center;
  background-color: transparent;
  border: 1px solid #fff;
  color: #fff;
  font-weight: 900;
  font-family: 'Avenir', sans-serif;
  text-transform: uppercase;
  font-size: 16px;
  width: 260px;
  margin: 0 auto;
}
.top-footer input[type="submit"]:hover {
  background: #c4984f;
}
.btn-con {
  padding: 15px 20px;
  background: #c4984f;
  color: #fff;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
  display: inline-block;
  text-transform: uppercase;
  font-family: 'Avenir', sans-serif;
  font-weight: 900;
  font-size: 16px;
}
.btn-con i {
  font-size: 24px;
  padding-right: 10px;
}
.btn-con:hover {
  background: #221d36;
}
.our-blog .row {
  width: 1450px;
}
.our-blog > .box {
  -webkit-box-direction: reverse;
  -webkit-box-orient: horizontal;
  -webkit-flex-direction: row-reverse;
  -moz-flex-direction: row-reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  justify-content: space-between;
}
.our-blog > .box aside {
  -webkit-flex-basis: 18%;
  -moz-flex-basis: 18%;
  -ms-flex-preferred-size: 18%;
  flex-basis: 18%;
}
.our-blog > .box aside .all-posts {
  margin-bottom: 20px;
  font-size: 15px;
  color: #000;
  display: inline-block;
  text-decoration: underline;
}
.our-blog > .box aside .all-posts:hover {
  text-decoration: none;
}
.our-blog > .box article {
  -webkit-flex-basis: 80%;
  -moz-flex-basis: 80%;
  -ms-flex-preferred-size: 80%;
  flex-basis: 80%;
}
.our-blog article > .box {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  -moz-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-flex-flow: wrap;
  -moz-flex-flow: wrap;
  -ms-flex-flow: wrap;
  flex-flow: wrap;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  margin: 0 -1%;
  width: 102%;
}
.our-blog article > .box > * {
  width: 31.3333333333%;
  margin: 0 1% 1.3333333333em;
}
.our-blog article .blogpost .thumb {
  margin-bottom: 30px;
}
.our-blog article .blogtitle {
  font-size: 17px;
  color: #000;
  font-family: 'Avenir', sans-serif;
  font-weight: 900;
  margin-bottom: 20px;
  display: inline-block;
}
.our-blog article .blogmeta {
  color: #c4984f;
  margin-bottom: 20px;
  text-transform: uppercase;
}
.our-blog article .excerpt {
  padding: 0 20px;
}
.our-blog .rm {
  font-weight: 700;
}
.our-blog article > .box > * {
  margin-bottom: 75px !important;
}
.our-blog .widgettitle {
  text-transform: uppercase;
  font-family: 'Avenir', sans-serif;
  font-weight: 900;
  margin-bottom: 20px;
  color: #000;
  font-size: 16px;
}
.widget_categories .widgettitle {
  display: none;
}
.widget_categories li {
  margin-bottom: 25px;
}
.widget_categories li a {
  color: #000;
  display: inline-block;
  font-size: 15px;
}
.widget_categories li a:hover {
  text-decoration: underline;
}
.widget {
  margin-bottom: 45px;
}
.widget:last-of-type {
  margin-bottom: 0;
}
.about .row {
  width: 860px;
}
.about p {
  padding-bottom: 60px;
}
.about .about-top {
  margin-bottom: 130px;
}
.about .about-bottom {
  margin-top: 130px;
}
.video-section {
  position: relative;
}
.video-section a {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #fff;
  text-align: center;
  line-height: 50px;
}
.video-section a i {
  margin-left: 3px;
}
.video-section a:hover {
  background: #c4984f;
}
.popup-single {
  width: 1820px;
}
.popup-single .form {
  display: none;
}
.popup-single .box {
  -webkit-box-direction: reverse;
  -webkit-box-orient: horizontal;
  -webkit-flex-direction: row-reverse;
  -moz-flex-direction: row-reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
@media screen and (max-width: 1024px) {
  .popup-single .box {
    display: block;
  }
}
.popup-single .box .slider-content {
  min-width: 60%;
  -webkit-flex-basis: 60%;
  -moz-flex-basis: 60%;
  -ms-flex-preferred-size: 60%;
  flex-basis: 60%;
}
@media screen and (max-width: 1400px) {
  .popup-single .box .slider-content {
    min-width: 50%;
    -webkit-flex-basis: 50%;
    -moz-flex-basis: 50%;
    -ms-flex-preferred-size: 50%;
    flex-basis: 50%;
  }
}
.popup-single .box .pop-content {
  -webkit-flex-basis: 40%;
  -moz-flex-basis: 40%;
  -ms-flex-preferred-size: 40%;
  flex-basis: 40%;
}
@media screen and (max-width: 1400px) {
  .popup-single .box .pop-content {
    -webkit-flex-basis: 50%;
    -moz-flex-basis: 50%;
    -ms-flex-preferred-size: 50%;
    flex-basis: 50%;
  }
}
.popup-single .pop-content {
  padding: 40px 70px;
}
.popup-single .pop-desc {
  font-family: 'Playfair Display', sans-serif;
}
.popup-single .pop-desc h2 {
  margin-bottom: 70px;
  color: #181b25;
}
.popup-single .pop-desc h3, .popup-single .pop-desc h4, .popup-single .pop-desc h5 {
  text-transform: uppercase;
  font-size: 16px;
  font-weight: 900;
  font-family: 'Avenir', sans-serif;
  color: #181b25;
  margin-bottom: 20px;
  margin-top: 10px;
  display: inline-block;
}
.popup-single .pop-desc p {
  display: inline-block;
}
.popup-single .pop-desc ul, .popup-single .pop-desc ol {
  list-style: inside;
  margin: 0 0 20px 0;
}
.popup-single .pop-desc li {
  margin-bottom: 10px;
}
.popup-single .form h3, .popup-single .form h4 {
  font-size: 36px;
  font-weight: 900;
  text-transform: uppercase;
  font-family: 'Avenir', sans-serif;
  margin-bottom: 20px;
  letter-spacing: 1px;
  color: #000;
}
.popup-single .form h4 {
  font-size: 17px;
  margin-bottom: 50px;
}
.popup-single .form form {
  width: 70%;
  margin: 0 auto;
}
.popup-single .form label {
  text-align: center;
  margin-bottom: 5px;
  display: block;
  color: #c4984f;
}
.popup-single .form input:not([type="submit"]) {
  width: 100%;
  height: 25px;
  background: transparent;
  border: 0;
  border-bottom: 1px solid #c4984f;
  margin-bottom: 15px;
}
.popup-single .form textarea {
  width: 100%;
  height: 50px;
  resize: vertical;
  background: transparent;
  border: 0;
  border-bottom: 1px solid #c4984f;
  margin-bottom: 70px;
}
.popup-single .form input[type="submit"] {
  padding: 20px 0;
  display: block;
  text-align: center;
  border: 1px solid transparent;
  color: #fff;
  background: #c4984f;
  font-weight: 900;
  font-family: 'Avenir', sans-serif;
  text-transform: uppercase;
  font-size: 16px;
  width: 100%;
}
.popup-single .form input[type="submit"]:hover {
  background: #fff;
  color: #c4984f;
  border: 1px solid #c4984f;
}
.popup-single.fancybox-content {
  padding: 0;
}
.popup-single .swiper-slide {
  -webkit-background-size: cover;
  background-size: cover;
  background-position: center;
}
.popup-single .swiper-button-next, .popup-single .swiper-button-prev {
  width: 55px;
  height: 55px;
  background-color: #c4984f;
  -webkit-background-size: 10px 15px;
  background-size: 10px 15px;
}
.popup-single .swiper-button-next {
  right: 0;
}
.popup-single .swiper-button-prev {
  left: 0;
}
#form-ppp {
  display: none;
}
.btn-play {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 70px;
  height: 70px;
  background: #c4984f;
  text-align: center;
  color: #fff;
  line-height: 70px;
  font-size: 22px;
  border-radius: 50%;
}
.btn-play i {
  margin-left: 5px;
}
.btn-play:hover {
  background: #221d36;
}
.except-wysiwyg {
  margin-bottom: 100px;
}
.except-wysiwyg .more_content {
  display: none;
}
.except-wysiwyg span {
  cursor: pointer;
  display: block;
  text-align: right;
  color: #c4984f;
  text-transform: uppercase;
  text-decoration: underline;
}
.single-product {
  color: #4c4a4b;
  padding-top: 42px;
}
.single-product article > .row, .single-product .tab > .row {
  width: 1260px;
}
.single-product h1 {
  position: relative;
  color: #171723;
  font-size: 32px;
  padding-top: 30px;
  margin-bottom: 40px;
  letter-spacing: 3px;
}
.single-product h1:before {
  position: absolute;
  content: '';
  left: 0;
  width: 40px;
  height: 5px;
  top: 0;
  background: #c4984f;
}
.single-product .swiper-slide {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}
.single-product .swiper-slide img {
  margin: 0 auto;
}
.single-product .tabs_item {
  display: none;
  padding: 50px 0 0;
}
.single-product .tabs_item:first-of-type {
  display: block;
}
.single-product .tabs_item h3 {
  margin-bottom: 35px;
  color: #000;
  font-weight: 900;
  font-family: 'Avenir', sans-serif;
  text-transform: uppercase;
}
.single-product .tabs_item ul {
  margin: 20px 0;
  list-style: inside square;
}
.single-product .tabs_item .flexbox {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
}
.single-product .tabs_item figure {
  -webkit-flex-basis: 50%;
  -moz-flex-basis: 50%;
  -ms-flex-preferred-size: 50%;
  flex-basis: 50%;
  margin-right: 20px;
}
.single-product .tabs_item .text {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -moz-box-flex: 1;
  -moz-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
.single-product .tabs {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center;
  padding: 80px 0 0;
  margin-bottom: 30px;
}
.single-product .tabs > div {
  cursor: pointer;
  padding: 0 15px;
  position: relative;
  display: block;
  text-align: center;
  text-transform: uppercase;
  color: #646464;
  font-weight: 300;
  font-family: 'Avenir', sans-serif;
  letter-spacing: 1px;
  font-size: 18px;
}
.single-product .tabs > div:after {
  content: '';
  width: 1px;
  height: 35px;
  position: absolute;
  right: 0;
  top: -5px;
  background: #646464;
}
.single-product .tabs > div.current {
  text-decoration: underline;
  color: #c4984f;
}
.single-product .tabs > div:last-of-type:after {
  display: none;
}
.single-product .swiper-pagination-bullet {
  width: auto;
  height: inherit;
  display: block;
  background: none;
  opacity: 1;
  outline: 0;
}
.welcome {
  padding: 20px 0 120px;
  min-height: calc(100vh - 85px);
}
.welcome .row {
  width: 650px;
}
.welcome h2 {
  position: relative;
  padding-top: 40px;
  font-size: 36px;
  letter-spacing: 2px;
}
.welcome h2:before {
  content: '';
  top: 0;
  position: absolute;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
  -moz-transform: translate(-50%, 0);
  -ms-transform: translate(-50%, 0);
  -o-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
  width: 40px;
  height: 5px;
  background: #c4984f;
}
.welcome h2 + p {
  text-transform: uppercase;
  font-weight: 900;
  font-family: 'Avenir', sans-serif;
  color: #adadad;
  padding-bottom: 60px;
}
.welcome_video {
  -webkit-background-size: cover;
  background-size: cover;
  background-position: center;
  position: relative;
}
.column_3 {
  padding: 100px 0;
  color: #4c4a4b;
  font-size: 17px;
}
.column_3 .row {
  width: 1500px;
}
.column_3 .box {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  -moz-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-flex-flow: wrap;
  -moz-flex-flow: wrap;
  -ms-flex-flow: wrap;
  flex-flow: wrap;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  margin: 0 -1.5%;
  width: 103%;
}
.column_3 .box > * {
  width: 30.3333333333%;
  margin: 0 1.5% 2em;
}
.column_3 h3 {
  color: #181b25;
  font-size: 36px;
  font-weight: 900;
  font-family: 'Avenir', sans-serif;
  text-transform: uppercase;
  position: relative;
  padding-top: 40px;
}
.column_3 h3:before {
  content: '';
  top: 0;
  position: absolute;
  width: 40px;
  height: 5px;
  background: #c4984f;
}
.wr_cat_slider {
  padding: 0 150px;
}
@media screen and (max-width: 1024px) {
  .wr_cat_slider {
    padding: 0 100px;
  }
}
@media screen and (max-width: 767px) {
  .wr_cat_slider {
    padding: 0 50px;
  }
}
.slider_category_pagination .swiper-wrapper {
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
}
.slider_category_pagination .swiper-slide {
  text-align: center;
}
.cat-slider .swiper-button-next, .cat-slider .swiper-button-prev {
  width: 25px;
  height: 26px;
  margin-top: -14px;
}
.slider_category_pagination {
  margin-bottom: 40px;
}
.slider_category_pagination .swiper-slide {
  letter-spacing: 1.5px;
  color: #adadad;
  font-size: 16px;
  font-family: 'Avenir', sans-serif;
  font-weight: 900;
  text-transform: uppercase;
  cursor: pointer;
}
.slider_category_pagination .swiper-slide-thumb-active {
  color: #000;
}
.slider_category {
  height: calc(100vh - 190px);
}
.slider_category .swiper-container {
  height: 100%;
}
.slider_category .pagination-text.box {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center;
}
.slider_category .swiper-pagination-bullet {
  width: auto;
  height: auto;
  display: block;
  border-radius: 100%;
  background: transparent;
  opacity: 1;
  font-weight: 700;
  color: #adadad;
  font-family: 'Avenir', sans-serif;
  letter-spacing: 2px;
  margin: 0 30px !important;
}
.slider_category .swiper-pagination-bullet-active {
  color: #000;
}
.slider_category .swiper-button-white {
  width: 40px;
  height: 40px;
  line-height: 40px;
  background-color: #c4984f;
  background-size: 10px 44px;
}
.slider_category .swiper-slide {
  -webkit-background-size: cover;
  background-size: cover;
  background-position: center center;
  position: relative;
  min-height: 100% !important;
}
.slider_category .custom-tool {
  display: none;
}
@media screen and (min-width: 640px) {
  .slider_category .custom-tool {
    display: block;
    position: absolute;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    border: 2px solid #fff;
    box-shadow: 0px 0px 2px 1px #000;
    width: 30px;
    height: 30px;
    border-radius: 50%;
  }
  .slider_category .custom-tool.-act {
    width: 33px;
    height: 33px;
  }
  .slider_category .custom-tool span {
    display: none;
    bottom: -50px;
    position: absolute;
    min-width: 200px;
    text-align: center;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 5px;
    padding: 10px;
    left: 50%;
    text-transform: uppercase;
    -webkit-transform: translate(-50%, 0);
    -moz-transform: translate(-50%, 0);
    -ms-transform: translate(-50%, 0);
    -o-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
  }
}
.title_rp {
  padding: 80px 0;
  text-align: center;
}
.title_rp a {
  color: #c4984f;
}
.title_rp h3, .title_rp h4 {
  position: relative;
  padding-top: 40px;
  text-align: center;
  font-size: 36px;
}
.title_rp h3:before, .title_rp h4:before {
  content: '';
  top: 0;
  position: absolute;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
  -moz-transform: translate(-50%, 0);
  -ms-transform: translate(-50%, 0);
  -o-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
  width: 40px;
  height: 5px;
  background: #c4984f;
}
.recent_projects .projects {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  -moz-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-flex-flow: wrap;
  -moz-flex-flow: wrap;
  -ms-flex-flow: wrap;
  flex-flow: wrap;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  margin: 0 -0.00000005%;
  width: 100.0000001%;
}
.recent_projects .projects > * {
  width: 33.3333332333%;
  margin: 0 0.00000005% 0.0000000667em;
}
.recent_projects .post-wr {
  -webkit-background-size: cover;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}
.recent_projects .post-wr .excerpt {
  top: auto;
  bottom: 50px;
  position: absolute;
  z-index: 99;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  padding: 0 30px;
  color: #fff;
  font-size: 24px;
  font-family: 'Avenir', sans-serif;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 2px;
}
.recent_projects .post-wr .excerpt span {
  display: block;
  margin-top: 20px;
  font-size: 14px;
}
.recent_projects .post-wr:before {
  z-index: 98;
  content: '';
  width: 100%;
  bottom: 0;
  background: rgba(196, 152, 79, 0.4);
  top: 0;
  position: absolute;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.recent_projects .post-wr:hover:before {
  opacity: 1;
  visibility: visible;
}
.testimonial {
  padding-bottom: 160px;
}
.testimonial-slider .row {
  width: 1860px;
  padding: 0 100px;
}
.testimonial-slider .swiper-button-white {
  width: 40px;
  height: 40px;
  line-height: 40px;
  background-color: #c4984f;
  background-size: 10px 44px;
}
.testimonial-slider .swiper-slide {
  -webkit-background-size: cover;
  background-size: cover;
  background-position: center;
}
.team {
  padding: 150px 0;
}
.team .row {
  width: 1730px;
}
.team .title_team {
  padding: 0 50px;
}
.team .title_team h3 {
  position: relative;
  padding-top: 40px;
  text-align: center;
  font-size: 36px;
  margin-bottom: 20px;
  font-family: 'Avenir', sans-serif;
  font-weight: 900;
  letter-spacing: 2px;
  color: #000;
  text-transform: uppercase;
}
.team .title_team h3:before {
  content: '';
  top: 0;
  position: absolute;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
  -moz-transform: translate(-50%, 0);
  -ms-transform: translate(-50%, 0);
  -o-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
  width: 40px;
  height: 5px;
  background: #c4984f;
}
.team .team-user {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  -moz-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-flex-flow: wrap;
  -moz-flex-flow: wrap;
  -ms-flex-flow: wrap;
  flex-flow: wrap;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  margin: 0 -1%;
  width: 102%;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center;
}
.team .team-user > * {
  width: 31.3333333333%;
  margin: 0 1% 1.3333333333em;
}
.team .team-user span {
  display: block;
  margin: 20px 0;
}
.team .team-user mark {
  font-weight: 900;
  font-family: 'Avenir', sans-serif;
  color: #000;
  text-transform: uppercase;
}
.team .title_team {
  -webkit-flex-basis: 40%;
  -moz-flex-basis: 40%;
  -ms-flex-preferred-size: 40%;
  flex-basis: 40%;
}
.team .team_right {
  -webkit-flex-basis: 60%;
  -moz-flex-basis: 60%;
  -ms-flex-preferred-size: 60%;
  flex-basis: 60%;
  max-width: 890px;
}
.team .team_bottom {
  max-width: 890px;
  margin: 65px auto 0;
}
.fancybox-slide--html .fancybox-content.team-content-pp {
  padding: 0;
  max-width: 860px;
}
.fancybox-slide--html .fancybox-content.team-content-pp .box {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
}
.fancybox-slide--html .fancybox-content.team-content-pp .box figure {
  -webkit-flex-basis: 40%;
  -moz-flex-basis: 40%;
  -ms-flex-preferred-size: 40%;
  flex-basis: 40%;
}
.fancybox-slide--html .fancybox-content.team-content-pp .box div {
  -webkit-flex-basis: 60%;
  -moz-flex-basis: 60%;
  -ms-flex-preferred-size: 60%;
  flex-basis: 60%;
  padding: 50px;
}
.fancybox-slide--html .fancybox-content.team-content-pp span {
  display: block;
  margin: 20px 0;
}
.fancybox-slide--html .fancybox-content.team-content-pp mark {
  font-weight: 900;
  font-family: 'Avenir', sans-serif;
  color: #000;
  text-transform: uppercase;
  padding-bottom: 20px;
  display: block;
}
.address-loc {
  padding: 100px 0 0;
}
.address-loc h4 {
  position: relative;
  padding-top: 40px;
  text-align: center;
  font-size: 36px;
  margin-bottom: 40px;
  font-family: 'Avenir', sans-serif;
  font-weight: 900;
  letter-spacing: 2px;
  color: #000;
  text-transform: uppercase;
}
.address-loc h4:before {
  content: '';
  top: 0;
  position: absolute;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
  -moz-transform: translate(-50%, 0);
  -ms-transform: translate(-50%, 0);
  -o-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
  width: 40px;
  height: 5px;
  background: #c4984f;
}
.address-loc > figure {
  margin-top: 170px;
}
.address-loc > figure img {
  margin: 0 auto;
}
.loc-line {
  width: 640px;
  max-width: 99%;
  margin: 0 auto 60px;
}
.loc-line > div {
  margin-bottom: 10px;
}
.loc-line > div:last-of-type {
  margin-bottom: 0;
}
.copy {
  padding: 30px 0;
  text-align: center;
  font-size: 14px;
  font-weight: 300;
  font-family: 'Open Sans', sans-serif;
}
.footer-menu {
  padding: 30px 0;
  text-align: center;
  font-size: 14px;
  font-weight: 300;
  font-family: 'Open Sans', sans-serif;
  background: #221d36;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.footer-menu li {
  margin: 0 10px;
}
.footer-menu a {
  color: #fff;
}
.footer-menu a:hover {
  text-decoration: underline;
}
.home-post {
  overflow-x: hidden;
}
.home-post .title_rp {
  padding: 100px 0;
  text-transform: uppercase;
  color: #000;
  font-weight: 900;
  font-family: 'Avenir', sans-serif;
}
.home-post > .row > .box {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  -moz-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-flex-flow: wrap;
  -moz-flex-flow: wrap;
  -ms-flex-flow: wrap;
  flex-flow: wrap;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  margin: 0 -5%;
  width: 110%;
}
.home-post > .row > .box > * {
  width: 23.3333333333%;
  margin: 0 5% 6.6666666667em;
}
.home-post .blogtitle {
  display: block;
  margin: 20px 0;
  text-transform: uppercase;
  font-weight: 900;
  font-size: 15px;
  font-family: 'Avenir', sans-serif;
  color: #000;
}
.home-post .blogmeta {
  color: #bdc3d5;
  margin-bottom: 20px;
  text-transform: uppercase;
  font-family: 'Avenir', sans-serif;
  font-size: 10px;
}
.home-post .rm {
  color: #232a40;
  text-transform: uppercase;
  font-family: 'Avenir', sans-serif;
  font-size: 10px;
  font-weight: 900;
}
.home-post .rm:hover {
  text-decoration: underline;
}
.content iframe {
  width: 100% !important;
}
body.preloader-site {
  overflow: hidden;
}
.preloader-wrapper {
  height: 100%;
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999999;
  -webkit-background-size: cover;
  background-size: cover;
  background-repeat: no-repeat;
}
.preloader-wrapper .preloader {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
/**/
article.portfolio_wrappper {
  max-width: 1920px;
  margin: 0 auto;
}
.popup-single .pop-desc .fancybox-button {
  width: auto;
  height: auto;
}
.home #main > .content > .column_3 {
  min-height: calc(100vh - 85px);
}
.welcome_video {
  min-height: calc(100vh - 85px);
}
.alc {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
}
.cat-slider {
  min-height: calc(100vh - 85px);
  margin-top: 50px;
}
.recent_projects .post-wr {
  min-height: calc(100vh - 85px) !important;
}
.team {
  min-height: calc(100vh - 85px);
}
.fancybox-container .fancybox-inner > .fancybox-navigation {
  display: none !important;
}
.custom-fancybox-button {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  justify-content: space-between;
  width: 70%;
  margin: 15px auto 0;
}
.custom-fancybox-button .fancybox-button {
  width: 45%;
  height: auto;
  padding: 20px 10px;
  display: block;
  text-align: center;
  border: 1px solid transparent;
  color: #fff !important;
  background: #c4984f;
  font-weight: 900;
  font-family: 'Avenir', sans-serif;
  font-size: 15px;
  letter-spacing: 0.5px;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.custom-fancybox-button .fancybox-button:hover {
  background: #fff;
  color: #c4984f !important;
  border: 1px solid #c4984f;
}
.image_pr_def {
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}
.home-automation {
  min-height: calc(100vh - 85px);
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
}
.home-automation .title_rp {
  padding: 80px 0 30px;
}
.home-automation .swiper-wrapper {
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
}
.single-pr-page-btn {
  margin-top: 30px;
}
.single-pr-page-btn .row {
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center;
}
.single-pr-page-btn .row > div {
  margin: 0 10px;
}
.single-pr-page-btn .row > div a {
  padding: 15px 20px;
  background: #c4984f;
  color: #fff;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
  display: inline-block;
  text-transform: uppercase;
  font-family: 'Avenir', sans-serif;
  font-weight: 900;
  font-size: 16px;
}
.single-pr-page-btn .row > div a:hover {
  background: #221d36;
}
/* Custom Styling */
.site-phone {
  position: absolute;
  left: 200px;
  top: 0;
  text-transform: uppercase;
  font-size: 18px;
  color: #fff !important;
  letter-spacing: 4px;
  font-weight: 900;
  font-family: 'Avenir', sans-serif;
  position: relative;
  z-index: 9;
}
.site-phone.g {
  color: #afafaf !important;
}
@media screen and (max-width: 1200px) {
  .site-phone {
    position: static;
  }
}
@media screen and (max-width: 768px) {
  .site-phone {
    position: static;
    font-size: 16px;
  }
}
@media screen and (max-width: 420px) {
  .site-phone {
    font-size: 14px;
    letter-spacing: 1px;
  }
}
.home-hero-slider .hero-slide {
  position: relative;
}
.home-hero-slider .hero-slide img {
  width: 100%;
  max-height: 100vh;
  object-fit: cover;
}
.home-hero-slider .hero-slide .hero-slide-title {
  position: absolute;
  top: 50%;
  bottom: auto;
  left: 15px;
  background-color: rgba(0, 0, 0, 0.49);
  padding: 20px;
  color: #fff;
}
.home-hero-slider .hero-slide.active .hero-slide-title {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  animation-name: fadeInUp;
  animation-delay: 0.3s;
}
.home-hero-slider .hero-slider-nav:hover {
  background-color: #fff;
}
.home-hero-slider .hero-slider-nav.swiper-button-next {
  right: 15px;
  width: 50px;
  left: auto;
  background-color: rgba(255, 255, 255, .6);
  background-size: 30%;
}
.home-hero-slider .hero-slider-nav.swiper-button-prev {
  right: 70px;
  left: auto;
  width: 50px;
  background-color: rgba(255, 255, 255, .6);
  background-size: 30%;
}
header {
  background: #221d36;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 9999;
  padding: 0;
}
header .header-nav-wrapper {
  position: relative;
  padding: 30px 0;
}
@media screen and (max-width: 1200px) {
  header {
    flex-wrap: wrap;
  }
  header .logo {
    position: absolute !important;
  }
}
.header-announce-wrapper {
  font-family: 'Avenir', sans-serif;
  background-color: #fff;
  padding: 10px;
  text-align: center;
}
.header-announce-wrapper .announce-contact {
  color: #b28a4c;
  text-decoration: underline;
}
.header-announce-wrapper .announce-phone {
  padding-right: 5px;
  margin-right: 5px;
  border-right: solid 1px #2c2869;
  font-weight: bold;
}
@media screen and (max-width: 1200px) {
  .header-announce-wrapper {
    width: 100vh;
    margin-left: -2%;
    margin-right: -2%;
  }
}
@media screen and (max-width: 1200px) {
  .header-nav-wrapper {
    width: 100%;
  }
}
.image_pr_def {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  font-family: 'Avenir', sans-serif;
  padding: 20px;
}
.image_pr_def .gform_wrapper {
  max-width: 80%;
  width: 400px;
  background-color: rgba(0, 0, 0, .3);
  padding: 20px;
}
.image_pr_def .gform_wrapper input[type="text"], .image_pr_def .gform_wrapper textarea {
  color: #fff;
  width: 100%;
  height: 35px;
  background: transparent;
  border: 0;
  border-bottom: 1px solid #c4984f;
  margin-top: 5px;
  width: 100% !important;
}
.image_pr_def .gform_wrapper label {
  color: #fff;
  text-shadow: 1px 1px #c4984f;
}
.image_pr_def .gform_wrapper input[type="submit"] {
  padding: 20px 0;
  display: block !important;
  text-align: center;
  background-color: #c4984f;
  border: 1px solid #fff;
  color: #fff;
  font-weight: 900;
  text-transform: uppercase;
  font-size: 16px;
  width: 260px !important;
  margin: 0 auto !important;
}
.image_pr_def .gform_wrapper input[type="submit"]:hover {
  background: transparent;
}
.image_pr_def .gform_confirmation_wrapper {
  color: #fff;
  font-size: 1.5em;
}
.embed-container {
  position: relative;
  padding-bottom: 56.25%;
  overflow: hidden;
  max-width: 100%;
  height: auto;
}
.embed-container iframe, .embed-container object, .embed-container embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
@-webkit-keyframes slide {
  from {
    -webkit-transform: rotateY(35deg) skewX(10deg);
    transform: rotateY(35deg) skewX(10deg);
  }
  to {
    -webkit-transform: rotateY(0deg) skewX(0deg);
    transform: rotateY(0deg) skewX(0deg);
  }
}
@keyframes slide {
  from {
    -webkit-transform: rotateY(35deg) skewX(10deg);
    transform: rotateY(35deg) skewX(10deg);
  }
  to {
    -webkit-transform: rotateY(0deg) skewX(0deg);
    transform: rotateY(0deg) skewX(0deg);
  }
}
.navigation.pagination {
  text-align: center;
  margin-top: 50px;
}
.navigation.pagination .screen-reader-text {
  display: none;
}
.navigation.pagination .nav-links {
  font-size: 16px;
  font-weight: 900;
  font-family: 'AvenirNext', sans-serif;
  color: #b7b7b7;
}
.navigation.pagination .nav-links a {
  color: #b7b7b7;
}
.navigation.pagination .nav-links span.current {
  border: 1px solid #c4984f;
  color: #c4984f;
  padding: 10px 15px;
  display: inline-block;
}
.navigation.pagination .nav-links a.page-numbers {
  margin: 0 10px;
  padding: 10px;
}
.navigation.pagination .nav-links a.next, .navigation.pagination .nav-links a.prev {
  text-align: center;
  display: inline-block;
  line-height: 25px;
  height: 25px;
  width: 25px;
  color: #b7b7b7;
  font-weight: 700;
  border-radius: 2px;
}
.navigation.pagination .nav-links a.next:hover, .navigation.pagination .nav-links a.prev:hover {
  color: #c4984f;
}
.navigation.pagination .nav-links a.prev {
  margin-left: 0;
  margin-right: 30px;
}
.navigation.pagination .nav-links a.next {
  margin-right: 0;
  margin-left: 30px;
}
.blog h1, .blog .h1 {
  position: relative;
  text-align: center;
  color: #171723;
  font-size: 32px;
  padding-top: 40px;
  margin-top: 90px;
  font-weight: 700;
  letter-spacing: 3px;
  font-family: 'Avenir', sans-serif;
}
.blog h1:before, .blog .h1:before {
  content: '';
  top: 0;
  position: absolute;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
  -moz-transform: translate(-50%, 0);
  -ms-transform: translate(-50%, 0);
  -o-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
  width: 40px;
  height: 5px;
  background: #c4984f;
}
.top-image h1, .top-image .h1 {
  text-shadow: 4px 5px 20px #000;
}
.content.tax .excerpt {
  text-shadow: 4px 5px 20px #000;
  padding-right: 10px;
}
@media screen and (max-width: 1279px) {
  .our-blog article > .box {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    -webkit-justify-content: flex-start;
    -moz-justify-content: flex-start;
    justify-content: flex-start;
    -webkit-flex-flow: wrap;
    -moz-flex-flow: wrap;
    -ms-flex-flow: wrap;
    flex-flow: wrap;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    margin: 0 -1%;
    width: 102%;
  }
  .our-blog article > .box > * {
    width: 48%;
    margin: 0 1% 1.5em;
  }
  .product-cat article > .box {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    -webkit-justify-content: flex-start;
    -moz-justify-content: flex-start;
    justify-content: flex-start;
    -webkit-flex-flow: wrap;
    -moz-flex-flow: wrap;
    -ms-flex-flow: wrap;
    flex-flow: wrap;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    margin: 0 -0.5%;
    width: 101%;
  }
  .product-cat article > .box > * {
    width: 32.3333333333%;
    margin: 0 0.5% 0.6666666667em;
  }
}
@media screen and (max-width: 1024px) {
  .content {
    padding: 40px 0;
  }
  .blog h1, .blog .h1 {
    margin-top: 40px;
  }
  .our-blog article > .box > * {
    margin-bottom: 40px !important;
  }
  .top-footer {
    -webkit-box-direction: normal;
    -webkit-box-orient: vertical;
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .top-footer > div {
    padding: 40px 0;
  }
  .top-footer .contact .h2 {
    margin-bottom: 40px;
  }
  .top-footer form textarea {
    margin-bottom: 35px;
  }
  .top-footer > div {
    min-height: auto !important;
  }
  .content.tax .excerpt {
    padding-right: 0;
    left: 10px;
    right: 10px;
    width: 100%;
    font-size: 18px;
    text-align: center;
  }
  .content.tax h1 {
    margin-bottom: 40px;
  }
  .about .about-top {
    margin-bottom: 20px;
  }
  .video-section {
    min-height: 450px !important;
  }
  .about .about-bottom {
    margin-top: 40px;
  }
  .about .about-bottom p {
    padding-bottom: 0;
  }
  .content.page p {
    padding-bottom: 0;
  }
  .product-cat article > .box {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    -webkit-justify-content: flex-start;
    -moz-justify-content: flex-start;
    justify-content: flex-start;
    -webkit-flex-flow: wrap;
    -moz-flex-flow: wrap;
    -ms-flex-flow: wrap;
    flex-flow: wrap;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    margin: 0 -0.5%;
    width: 101%;
  }
  .product-cat article > .box > * {
    width: 49%;
    margin: 0 0.5% 0.75em;
  }
  .single-product .tabs_item {
    padding-top: 40px;
  }
  .single-product .tabs {
    padding-top: 40px;
    margin-bottom: 0;
    -webkit-box-direction: normal;
    -webkit-box-orient: vertical;
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .single-product .tabs > div {
    margin-bottom: 20px;
  }
  .single-product .tabs > div:last-child {
    margin-bottom: 0;
  }
  .single-product .tabs div:after {
    display: none;
  }
  .except-wysiwyg {
    margin-bottom: 40px;
  }
  .top-image {
    min-height: 450px !important;
  }
  .top-image h1, .top-image .h1 {
    font-size: 32px;
  }
  .single-product h1 {
    text-align: center;
  }
  .single-product h1:before {
    content: '';
    top: 0;
    position: absolute;
    left: 50%;
    -webkit-transform: translate(-50%, 0);
    -moz-transform: translate(-50%, 0);
    -ms-transform: translate(-50%, 0);
    -o-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
    width: 40px;
    height: 5px;
    background: #c4984f;
  }
}
@media screen and (max-width: 890px) {
  .our-blog > .box {
    -webkit-box-direction: normal;
    -webkit-box-orient: vertical;
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .our-blog > .box aside {
    margin-top: 40px;
  }
  .navigation.pagination {
    margin-top: 20px;
  }
}
@media screen and (max-width: 768px) {
  .our-blog article > .box {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    -webkit-justify-content: flex-start;
    -moz-justify-content: flex-start;
    justify-content: flex-start;
    -webkit-flex-flow: wrap;
    -moz-flex-flow: wrap;
    -ms-flex-flow: wrap;
    flex-flow: wrap;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    margin: 0 -1%;
    width: 102%;
  }
  .our-blog article > .box > * {
    width: 98%;
    margin: 0 1% 2em;
  }
  .top-footer .contact {
    width: 90%;
  }
  .top-footer form {
    width: 90%;
  }
  .content.tax article .box > a {
    -webkit-flex-basis: 100%;
    -moz-flex-basis: 100%;
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
  }
  .popup-single .pop-content {
    padding: 40px 50px;
  }
  .popup-single .swiper-slide {
    min-height: 450px !important;
  }
  .content.tax .blogpost:nth-of-type(even) {
    padding: 5px;
  }
  .content.tax .blogpost:nth-of-type(odd) {
    padding: 5px;
  }
  .product-cat article > .box {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    -webkit-justify-content: flex-start;
    -moz-justify-content: flex-start;
    justify-content: flex-start;
    -webkit-flex-flow: wrap;
    -moz-flex-flow: wrap;
    -ms-flex-flow: wrap;
    flex-flow: wrap;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    margin: 0 -0.5%;
    width: 101%;
  }
  .product-cat article > .box > * {
    width: 99%;
    margin: 0 0.5% 1em;
  }
}
@media screen and (max-width: 576px) {
  .our-blog article .excerpt {
    padding: 0px 10px;
  }
  .top-footer form .box > div {
    -webkit-flex-basis: 100%;
    -moz-flex-basis: 100%;
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    margin-bottom: 45px;
  }
  .top-footer form .box {
    -webkit-box-direction: normal;
    -webkit-box-orient: vertical;
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    margin-bottom: 0;
  }
  .popup-single .pop-content {
    padding: 40px 25px;
  }
  .popup-single .form form {
    width: 100%;
  }
  .popup-single .form h3, .popup-single .form h4 {
    font-size: 29px;
  }
  .popup-single .form h4 {
    font-size: 14px;
  }
  .btn-con {
    text-align: center;
  }
}
#rwd-main-menu {
  display: none;
  text-align: right;
}
a.tIcons {
  display: inline-block;
  width: 1.5em;
  height: 1.25em;
  position: relative;
  margin: 10px;
  fill: #fff;
}
a.tIcons svg {
  width: 100%;
  display: block;
  position: absolute;
}
a.tIcons svg:first-child {
  -webkit-transform-origin: 50% 50%;
  transform-origin: 50% 50%;
  -webkit-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
}
a.tIcons svg:last-child {
  -webkit-transform-origin: 50% 50%;
  transform-origin: 50% 50%;
  -webkit-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
  -webkit-transform: scale(0);
  transform: scale(0);
}
a.tIcons.toggle svg:first-child {
  -webkit-transform: scale(0);
  transform: scale(0);
}
a.tIcons.toggle svg:last-child {
  -webkit-transform: scale(1);
  transform: scale(1);
}
.rwd-menu {
  background: #fff;
  padding: 10px 20px;
  display: none;
  position: absolute;
  right: 0;
  left: 0;
  z-index: 9999;
  margin-top: 15px;
}
.rwd-menu li {
  list-style: none;
  text-transform: uppercase;
  font-family: sans-serif;
  font-weight: 600;
  display: block;
}
.rwd-menu a {
  color: #000;
  letter-spacing: 1px;
  font-size: 18px;
  padding: 5px 0;
  display: inline-block;
}
li.menu-item-has-children i {
  width: 20px;
  height: 20px;
  text-align: center;
  font-size: 18px;
  color: red;
  margin-left: 5px;
}
@media screen and (max-width: 1300px) {
  .sub-menu {
    width: 100%;
  }
  .sub-menu a span {
    font-size: 16px;
  }
  .top-team {
    display: block;
  }
  .team .team_right {
    margin: 0 auto;
  }
  .top-home {
    -webkit-background-size: cover;
    background-size: cover;
    background-position: center center;
  }
  .home .content {
    padding: 50px 0 0;
  }
  .welcome {
    padding-bottom: 50px;
  }
  .column_3 h3 {
    font-size: 28px;
  }
  .title_rp {
    padding: 50px 0;
  }
  .title_rp h3, .title_rp h4 {
    font-size: 28px;
  }
  .testimonial {
    padding-bottom: 50px;
  }
  .team {
    padding: 50px 0;
  }
  .team .title_team {
    padding: 0;
    margin-bottom: 30px;
  }
  .team .title_team h3 {
    font-size: 28px;
  }
  .address-loc {
    padding: 50px 0 0;
  }
  .address-loc h4 {
    font-size: 28px;
  }
  .address-loc > figure {
    margin-top: 50px;
  }
  .home-post .title_rp {
    padding: 50px 0;
  }
  .home-post > .row > .box > * {
    margin-bottom: 20px !important;
  }
  .column_3 {
    padding: 50px 0;
  }
}
@media screen and (max-width: 1200px) {
  #myIndicator {
    display: none;
  }
  .right-nav {
    display: none;
  }
  header {
    position: static;
    padding: 0;
  }
  header nav {
    display: none;
  }
  #main {
    margin: 0;
  }
  header .logo {
    position: static;
    display: block;
    width: 130px;
    height: auto;
  }
  header {
    padding: 0 2%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    -moz-justify-content: space-between;
    justify-content: space-between;
  }
  #rwd-main-menu {
    display: block;
  }
  .sub-menu {
    display: none;
  }
  .welcome {
    min-height: 1px;
  }
  .welcome_video {
    min-height: 100vh;
  }
  .home #main > .content > .column_3 {
    min-height: 100vh;
  }
  .cat-slider {
    min-height: 100vh;
  }
  .slider_category {
    height: calc(100vh - 119px);
  }
  .recent_projects {
    min-height: 100vh;
  }
  .team {
    min-height: 100vh;
  }
  .recent_projects .post-wr {
    min-height: calc(100vh - 0px) !important;
  }
  .top-home {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
  }
  .top-home-desc {
    display: none;
  }
  .slider_category_pagination {
    margin-bottom: 28px;
  }
}
@media screen and (max-width: 1024px) {
  .testimonial-slider .row {
    padding: 0;
  }
  .pagination-text {
    display: none;
  }
}
@media screen and (max-width: 960px) {
  .image_pr_def {
    min-height: 100vh !important;
  }
  .recent_projects .projects {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    -webkit-justify-content: flex-start;
    -moz-justify-content: flex-start;
    justify-content: flex-start;
    -webkit-flex-flow: wrap;
    -moz-flex-flow: wrap;
    -ms-flex-flow: wrap;
    flex-flow: wrap;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    margin: 0 -0.00005%;
    width: 100.0001%;
  }
  .recent_projects .projects > * {
    width: 99.9999%;
    margin: 0 0.00005% 0.0001em;
  }
  .fancybox-slide--html .fancybox-content.team-content-pp .box {
    display: block;
    text-align: center;
  }
  .fancybox-slide--html .fancybox-content.team-content-pp .box img {
    display: inline-block;
  }
  .single-product .tabs_item .flexbox {
    display: block;
  }
  .single-product .tabs_item figure {
    text-align: center;
    margin-right: 0;
    margin-bottom: 20px;
  }
  .single-product .tabs_item figure img {
    display: inline-block;
  }
  .product-cat .post-wr {
    min-height: 100vh !important;
  }
  .single-product .swiper-slide {
    min-height: 100vh !important;
  }
  .home-automation {
    min-height: calc(100vh);
  }
}
@media screen and (max-width: 768px) {
  .home-post > .row > .box {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    -webkit-justify-content: flex-start;
    -moz-justify-content: flex-start;
    justify-content: flex-start;
    -webkit-flex-flow: wrap;
    -moz-flex-flow: wrap;
    -ms-flex-flow: wrap;
    flex-flow: wrap;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    margin: 0 -0.5%;
    width: 101%;
  }
  .home-post > .row > .box > * {
    width: 49%;
    margin: 0 0.5% 0.75em;
  }
  .home-post > .row > .box .blogpost:last-of-type {
    display: none;
  }
}
@media screen and (max-width: 640px) {
  .top-home > div h1 {
    font-size: 28px;
  }
  .column_3 .box {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    -webkit-justify-content: flex-start;
    -moz-justify-content: flex-start;
    justify-content: flex-start;
    -webkit-flex-flow: wrap;
    -moz-flex-flow: wrap;
    -ms-flex-flow: wrap;
    flex-flow: wrap;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    margin: 0 -0.000005%;
    width: 100.00001%;
  }
  .column_3 .box > * {
    width: 99.99999%;
    margin: 0 0.000005% 0.00001em;
  }
  .column_3 h3 {
    font-size: 28px;
    text-align: center;
    margin-bottom: 30px;
  }
  .column_3 h3:before {
    position: absolute;
    left: 50%;
    -webkit-transform: translate(-50%, 0);
    -moz-transform: translate(-50%, 0);
    -ms-transform: translate(-50%, 0);
    -o-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
  }
  .team .team-user mark {
    font-size: 12px;
  }
  .home-post .blogtitle {
    font-size: 12px;
  }
  .title_team br {
    display: none;
  }
  .team .team-user span {
    margin: 5px 0;
  }
}
@media screen and (max-width: 480px) {
  .recent_projects .projects {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    -webkit-justify-content: flex-start;
    -moz-justify-content: flex-start;
    justify-content: flex-start;
    -webkit-flex-flow: wrap;
    -moz-flex-flow: wrap;
    -ms-flex-flow: wrap;
    flex-flow: wrap;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    margin: 0 -0.000005%;
    width: 100.00001%;
  }
  .recent_projects .projects > * {
    width: 99.99999%;
    margin: 0 0.000005% 0.00001em;
  }
  .top-home > div h1 br {
    display: none;
  }
}
