/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# Normalize
# Typography
# Grid
# Class
# Forms
# Button
# Header
# Main Menu
# Page Title & Breadcrumb
# Post and Page
# Navigation
# Layout Content
# Widgets
# Media
# Singlular
# Comments
# Footer
# VC Elements
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Typography
--------------------------------------------------------------*/
/* Custom Mixin */
/*--------------------------------------------------------------
# Class
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Forms
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Button
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
/* CMS Button */
/*--------------------------------------------------------------
# Main Menu
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Page Title & Breadcrumb
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Post and Page
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Widgets
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Media
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Comments
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# VC Elements
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Layout Content
--------------------------------------------------------------*/
@-webkit-keyframes moveUp {
  100% {
    -webkit-transform: translateY(0);
    opacity: 1;
  }
}
@keyframes moveUp {
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes spin-rotate-left {
  to {
    transform: rotate(30deg);
  }
  from {
    transform: rotate(175deg);
  }
}
@-webkit-keyframes spin-rotate-left {
  to {
    transform: rotate(30deg);
  }
  from {
    transform: rotate(175deg);
  }
}
@keyframes spin-rotate-right {
  from {
    transform: rotate(-175deg);
  }
  to {
    transform: rotate(-30deg);
  }
}
@-webkit-keyframes spin-rotate-right {
  from {
    transform: rotate(-175deg);
  }
  to {
    transform: rotate(-30deg);
  }
}
@keyframes spin-rotate-all {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(-360deg);
  }
}
@-webkit-keyframes spin-rotate-all {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(-360deg);
  }
}
@keyframes spin-fade-in-first {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@-webkit-keyframes spin-fade-in-first {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes spin-fade-in-second {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@-webkit-keyframes spin-fade-in-second {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@-webkit-keyframes markerWave {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 0.8;
  }
  20% {
    opacity: 0.8;
  }
  100% {
    -webkit-transform: scale(5.5);
    transform: scale(5.5);
    opacity: 0;
  }
}
@keyframes markerWave {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 0.8;
  }
  20% {
    opacity: 0.8;
  }
  100% {
    -webkit-transform: scale(5.5);
    transform: scale(5.5);
    opacity: 0;
  }
}
html {
  box-sizing: border-box;
}
a {
  -webkit-transition: all 0.3s ease 0s;
  -khtml-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -ms-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  color: inherit;
}
a, a:hover, a:focus, a:before, a:after {
  outline: none;
  text-decoration: none;
}
a:hover, a:focus {
  color: inherit;
}
*, *:before, *:after {
  box-sizing: inherit;
}
p {
  margin-bottom: 24px;
}
body {
  background-color: #fff;
  font-size: 15px;
  line-height: 1.53;
  color: #494848;
  -webkit-font-smoothing: inherit;
  -moz-osx-font-smoothing: inherit;
  overflow-x: hidden;
  font-weight: normal;
  font-family: 'Inconsolata', monospace;
  -ms-word-wrap: break-word;
  word-wrap: break-word;
}
.site {
  position: relative;
  overflow: hidden;
}
h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6 {
  color: #272626;
  clear: both;
  line-height: 1.3;
  margin: 0 0 15px;
  font-weight: 700;
  text-transform: capitalize;
  font-family: 'Oswald', sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
h1, .h1 {
  font-size: 85px;
}
@media screen and (max-width: 767px) {
  h1, .h1 {
    font-size: 45px !important;
  }
}
h2, .h2 {
  font-size: 45px;
}
@media screen and (max-width: 767px) {
  h2, .h2 {
    font-size: 28px !important;
  }
}
h3, .h3 {
  font-size: 39px;
}
@media screen and (max-width: 767px) {
  h3, .h3 {
    font-size: 24px !important;
  }
}
h4, .h4 {
  font-size: 32px;
}
@media screen and (max-width: 767px) {
  h4, .h4 {
    font-size: 20px !important;
  }
}
h5, .h5 {
  font-size: 19px;
}
h6, .h6 {
  font-size: 15px;
}
img {
  width: 100%;
  max-width: 100%;
  height: auto;
}
img.size-thumbnail {
  max-width: 160px;
}
label {
  margin-bottom: 0;
  width: 100%;
}
table {
  border-bottom: 1px solid #eaeaea;
  border-collapse: collapse;
  border-spacing: 0;
  line-height: 2;
  margin: 0 0 20px;
  width: 100%;
  -webkit-border-radius: 0;
  -khtml-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  -o-border-radius: 0;
  border-radius: 0;
}
table th {
  color: #272626;
}
caption, td {
  font-weight: normal;
  text-align: left;
}
.table > tbody > tr > td, .table > tbody > tr > th, .table > tfoot > tr > td, .table > tfoot > tr > th, .table > thead > tr > td, .table > thead > tr > th {
  padding: 13px 8px;
}
th {
  font-weight: 700;
}
td {
  border-top: 1px solid #ededed;
  padding: 6px 10px 6px 0;
  /*--- Definition Lists ---*/
}
dl {
  margin: 0 0 0 25px;
}
dl dt {
  font-weight: normal;
  line-height: 26px;
  text-transform: uppercase;
  font-weight: 700;
  color: #000;
}
dl dd {
  line-height: normal;
  margin-bottom: 20px;
}
dl dd a {
  color: #000;
}
dl dd a:hover {
  color: #1b1a1a;
}
code, kbd {
  background-color: transparent;
  border-radius: 4px;
  color: inherit;
  font-size: 100%;
  padding: 2px 4px;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  -o-box-shadow: none;
  box-shadow: none;
}
ins {
  color: #fff;
  border: none;
  text-decoration: none;
  background-color: #1b1a1a;
}
pre {
  background: #f5f5f5;
  color: #666;
  font-size: 14px;
  margin: 20px 0;
  overflow: auto;
  padding: 20px;
  white-space: pre-wrap;
  word-wrap: break-word;
}
ol {
  padding-left: 17px;
  list-style: outside none decimal;
}
ul {
  list-style: none;
  padding: 0;
  margin: 0 0 15px;
}
ul li {
  list-style-position: inside;
}
.entry-content li > ul {
  margin-left: 17px;
}
.wpb_text_column ul li {
  position: relative;
  padding-left: 12px;
  margin-bottom: 5px;
}
.wpb_text_column ul li:before {
  position: absolute;
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  left: 0;
  top: 9px;
  background: #1b1a1a;
  border-radius: 6px;
}
blockquote {
  border-left: 2px solid #1b1a1a;
  padding: 15px 0 20px 30px;
}
blockquote p {
  font-size: 18px;
  color: #272626;
  margin-bottom: 0 !important;
}
blockquote cite {
  display: inline-block;
  margin-top: 10px;
}
dl + h2 + ul {
  padding-left: 2px;
  list-style: outside;
  margin-bottom: 20px;
}
dl + h2 + ul ul {
  padding-left: 35px;
}
dl + h2 + ul ul li {
  list-style: outside;
}
ul + h2 + ol {
  padding-left: 25px;
  margin-bottom: 18px;
}
.post-password-form label {
  display: block;
  max-width: 60%;
}
.post-password-form input {
  margin: 10px 0;
}
@media screen and (max-width: 767px) {
  .post-password-form label {
    max-width: 60%;
  }
}
#tslOverlay {
  background-color: transparent !important;
}
.wp-block-image .is-resized img {
  max-width: 160px;
}
.alignright {
  float: right;
}
.molli-dropcaps {
  position: relative;
  display: inline-block;
  vertical-align: top;
  float: left;
  font-size: 40px;
  line-height: 1.1em;
  font-weight: normal;
  text-align: center;
  margin: 0 8px 0 0;
}
.molli-dropcaps.molli-square, .molli-dropcaps.molli-circle {
  height: 35px;
  width: 35px;
  font-size: 27px;
  line-height: 1.321em;
  font-weight: 600;
  color: #fff;
  background-color: #1b1a1a;
  margin: 6px 9px 0 0;
  box-sizing: border-box;
}
.molli-dropcaps.molli-circle {
  border-radius: 3em;
}
#content[tabindex="-1"]:focus {
  outline: 0;
}
.z-index-high {
  z-index: 888 !important;
}
.primary-color {
  color: #1b1a1a !important;
}
.primary-bg {
  background-color: #1b1a1a !important;
}
.bg-image {
  background-size: cover !important;
  background-position: center center !important;
  background-repeat: no-repeat !important;
}
.bg-overlay {
  position: relative;
}
.bg-overlay:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: inherit;
  display: block;
}
.bg-gradient {
  position: relative;
  overflow: hidden;
  display: block;
}
.bg-gradient:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
  background-image: -webkit-gradient(linear, top bottom, from(#1b1a1a), to(rgba(27, 26, 26, 0.35)));
  background-image: -webkit-linear-gradient(top, #1b1a1a, rgba(27, 26, 26, 0.35) 82%);
  background-image: -moz-linear-gradient(top, #1b1a1a, rgba(27, 26, 26, 0.35) 82%);
  background-image: -ms-linear-gradient(top, #1b1a1a, rgba(27, 26, 26, 0.35) 82%);
  background-image: -o-linear-gradient(top, #1b1a1a, rgba(27, 26, 26, 0.35) 82%);
  background-image: linear-gradient(top, #1b1a1a, rgba(27, 26, 26, 0.35) 82%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorStr='#1b1a1a', endColorStr='rgba(27, 26, 26, 0.35)');
  opacity: 0.25;
}
.primary-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(27, 26, 26, 0.9);
  display: block;
  opacity: 0;
  transition: opacity 450ms ease 0s;
  z-index: 1;
}
.font-smooth {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.inline-block {
  display: inline-block;
}
.row-visible {
  overflow: visible !important;
}
.cms-close {
  display: inline-block;
  height: 32px;
  line-height: 32px;
  width: 30px;
  cursor: pointer;
  position: relative;
  -webkit-transition: all 300ms linear 0ms;
  -khtml-transition: all 300ms linear 0ms;
  -moz-transition: all 300ms linear 0ms;
  -ms-transition: all 300ms linear 0ms;
  -o-transition: all 300ms linear 0ms;
  transition: all 300ms linear 0ms;
}
.cms-close:before, .cms-close:after {
  -webkit-transition: all 300ms linear 0ms;
  -khtml-transition: all 300ms linear 0ms;
  -moz-transition: all 300ms linear 0ms;
  -ms-transition: all 300ms linear 0ms;
  -o-transition: all 300ms linear 0ms;
  transition: all 300ms linear 0ms;
  content: "";
  background-color: #282828;
  display: block;
  height: 2px;
  left: 0;
  margin: auto;
  position: absolute;
  right: 0;
  width: 22px;
  top: 21px;
}
.cms-close:before {
  top: 15px;
  -webkit-transform: rotate(45deg);
  -khtml-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}
.cms-close:after {
  -webkit-transform: rotate(-45deg);
  -khtml-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
  top: 15px;
}
.cms-close:hover:before, .cms-close:hover:after {
  background-color: inherit;
}
a.hover_ {
  position: relative;
  -webkit-transition: all 450ms ease 0ms;
  -khtml-transition: all 450ms ease 0ms;
  -moz-transition: all 450ms ease 0ms;
  -ms-transition: all 450ms ease 0ms;
  -o-transition: all 450ms ease 0ms;
  transition: all 450ms ease 0ms;
}
a.hover_:before {
  content: "_";
  margin-left: -8px;
  opacity: 0;
  -webkit-transition: all 450ms ease 0ms;
  -khtml-transition: all 450ms ease 0ms;
  -moz-transition: all 450ms ease 0ms;
  -ms-transition: all 450ms ease 0ms;
  -o-transition: all 450ms ease 0ms;
  transition: all 450ms ease 0ms;
}
a.hover_:hover:before {
  opacity: 1;
  margin-left: 0;
}
.trim-hover {
  cursor: pointer;
}
.trim-hover img {
  -webkit-transition: 1s cubic-bezier(0.075, 0.82, 0.165, 1);
  -moz-transition: 1s cubic-bezier(0.075, 0.82, 0.165, 1);
  transition: 1s cubic-bezier(0.075, 0.82, 0.165, 1);
  -webkit-clip-path: inset(0 0 0 0);
  clip-path: inset(0 0 0 0);
}
.trim-hover:hover img {
  -webkit-clip-path: inset(30px 30px 30px 30px);
  clip-path: inset(30px 30px 30px 30px);
}
.scale-hover {
  cursor: pointer;
  overflow: hidden;
}
.scale-hover img {
  -webkit-transition: all 1s;
  -khtml-transition: all 1s;
  -moz-transition: all 1s;
  -ms-transition: all 1s;
  -o-transition: all 1s;
  transition: all 1s;
}
.scale-hover:hover img {
  opacity: 0.9;
  -webkit-transform: scale3d(1.1, 1.1, 1);
  transform: scale3d(1.1, 1.1, 1);
}
.nowrap {
  white-space: nowrap;
}
.flex-center, .flex-center .vc_column-inner {
  display: flex;
  align-items: center;
  justify-content: center;
}
.text-right, .align-right {
  text-align: right;
}
.text-left, .align-left {
  text-align: left;
}
.text-center, .align-center {
  text-align: center;
}
@media screen and (min-width: 768px) {
  .text-center-md {
    text-align: center !important;
  }
  .text-left-md {
    text-align: left !important;
  }
  .text-right-md {
    text-align: right !important;
  }
}
@media screen and (min-width: 992px) {
  .text-center-lg {
    text-align: center !important;
  }
  .text-left-lg {
    text-align: left !important;
  }
  .text-right-lg {
    text-align: right !important;
  }
}
@media screen and (min-width: 1200px) {
  .text-center-xl {
    text-align: center !important;
  }
  .text-left-xl {
    text-align: left !important;
  }
  .text-right-xl {
    text-align: right !important;
  }
}
@media screen and (max-width: 1199px) {
  .align-center-md {
    text-align: center;
  }
  .align-left-md {
    text-align: left;
  }
  .align-right-md {
    text-align: right;
  }
}
@media screen and (max-width: 991px) {
  .text-center-md {
    text-align: center !important;
  }
  .text-left-md {
    text-align: left !important;
  }
  .text-right-md {
    text-align: right !important;
  }
  .align-center-sm {
    text-align: center;
  }
  .align-left-sm {
    text-align: left;
  }
  .align-right-sm {
    text-align: right;
  }
}
@media screen and (max-width: 767px) {
  .text-center-sm {
    text-align: center !important;
  }
  .text-left-sm {
    text-align: left !important;
  }
  .text-right-sm {
    text-align: right !important;
  }
  .align-center-xs {
    text-align: center;
  }
  .align-left-xs {
    text-align: left;
  }
  .align-right-xs {
    text-align: right;
  }
}
@media screen and (min-width: 992px) {
  .column-stretch-right, .column-stretch-left {
    position: absolute !important;
    bottom: 0px;
    height: 100%;
  }
}
.column-stretch-left {
  left: 0px;
}
.column-stretch-right {
  right: 0px;
}
.box-overlay-left, .box-overlay-right {
  position: relative;
}
.box-overlay-left:before, .box-overlay-right:before {
  content: '';
  position: absolute;
  display: block;
  width: 210px;
  height: 297px;
  bottom: -30px;
  background-color: #1b1a1a;
  transition: all 1s ease 1.5s;
}
.box-overlay-left img, .box-overlay-right img {
  mix-blend-mode: multiply;
}
.box-overlay-left:before {
  left: -30px;
}
.box-overlay-right:before {
  right: -30px;
}
@keyframes coverOut {
  0% {
    width: 0;
    right: 100%;
  }
  50% {
    width: 100%;
    right: 0;
    opacity: 1;
  }
  100% {
    width: 0;
    right: 0;
    opacity: 1;
  }
}
@keyframes imageIn {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 0;
  }
  51% {
    opacity: 1;
  }
}
.cms-single-image-load .vc_single_image-wrapper:before {
  opacity: 0;
  transform: scale(0);
}
.cms-single-image-load .vc_single_image-wrapper.animate:before {
  opacity: 1;
  transform: scale(1);
}
.cms-single-image-load img {
  opacity: 0;
  transform: scale(1);
}
.cms-single-image-load .vc_single_image-wrapper.animate img {
  animation: imageIn 1.2s ease;
  animation-delay: 400ms;
  transition: opacity 0.1s, transform 0.75s;
  transition-delay: 1s;
  transform: scale(1);
  opacity: 1;
}
.cms-single-image-load .vc_single_image-wrapper.animate::after {
  content: "";
  position: absolute;
  top: 0;
  height: 100%;
  opacity: 0;
  background: #1b1a1a;
  z-index: 1;
  animation: coverOut 1.2s ease;
  animation-delay: 400ms;
  width: 0;
  right: 0;
}
.vc_row {
  overflow: hidden;
}
@media screen and (min-width: 1200px) {
  .vc_row.vc_inner.row-carousel-stretch-right {
    padding-left: 0px !important;
    margin-left: 0px;
    margin-right: -100%;
  }
}
.vc_row.row-overflow-unset {
  overflow: unset !important;
  z-index: 99;
}
.no-padding {
  padding: 0 !important;
}
@media screen and (max-width: 1199px) {
  .lg-no-padding .vc_column-inner {
    padding-left: 15px !important;
    padding-right: 15px !important;
  }
}
@media screen and (max-width: 767px) {
  .vc_row.sm-no-padding, .vc_column-inner.sm-no-padding {
    padding: 0 !important;
  }
}
@media screen and (max-width: 1199px) {
  .lg-no-margin .vc_column-inner {
    margin: 0 !important;
  }
}
.cms-arrow {
  display: inline-block;
  background-size: cover !important;
  background-position: center center !important;
  background-repeat: no-repeat;
  cursor: pointer;
}
.cms-arrow:hover {
  box-shadow: none !important;
}
.cms-arrow.arl {
  width: 16px;
  height: 10px;
  background-image: url(../images/arrow-left.png);
}
.cms-arrow.arl-white {
  width: 16px;
  height: 10px;
  background-image: url(../images/arrow-left-white.png);
}
.cms-arrow.arr {
  width: 16px;
  height: 10px;
  background-image: url(../images/arrow-right.png);
}
.cms-arrow.arr-white {
  width: 16px;
  height: 10px;
  background-image: url(../images/arrow-right-white.png);
}
.cms-arrow.aru {
  width: 10px;
  height: 16px;
  background-image: url(../images/arrow-up.png);
}
.cms-arrow.ard {
  width: 10px;
  height: 16px;
  background-image: url(../images/arrow-down.png);
}
input::-moz-placeholder, textarea::-moz-placeholder {
  color: inherit;
  opacity: 1;
}
input::-webkit-input-placeholder, textarea::-webkit-input-placeholder {
  color: inherit;
  opacity: 1;
}
input::-o-placeholder, textarea::-o-placeholder {
  color: inherit;
  opacity: 1;
}
input::-ms-placeholder, textarea::-ms-placeholder {
  color: inherit;
  opacity: 1;
}
input[type="text"], input[type="email"], input[type="url"], input[type="password"], input[type="search"], input[type="tel"], input[type="number"], input[type="range"], input[type="date"], input[type="month"], input[type="week"], input[type="time"], input[type="datetime"], input[type="datetime-local"], input[type="color"], textarea, select, .nice-select {
  background-color: #fff;
  border: none;
  border-bottom: 2px solid #1b1a1a;
  color: #494848;
  padding: 0;
  height: 50px;
  line-height: normal;
  font-size: 15px;
  -webkit-transition: all 300ms linear 0ms;
  -khtml-transition: all 300ms linear 0ms;
  -moz-transition: all 300ms linear 0ms;
  -ms-transition: all 300ms linear 0ms;
  -o-transition: all 300ms linear 0ms;
  transition: all 300ms linear 0ms;
  width: 100%;
  outline: none;
}
select {
  height: 50px;
  margin-bottom: 7px;
  -webkit-border-radius: 0px;
  -khtml-border-radius: 0px;
  -moz-border-radius: 0px;
  -ms-border-radius: 0px;
  -o-border-radius: 0px;
  border-radius: 0px;
  padding: 0 20px !important;
  line-height: 48px !important;
  border: 1px solid transparent;
  background-color: #f9f9f9;
  font-size: 14px;
  -webkit-appearance: none;
}
select:focus, select:active {
  border-color: #1b1a1a;
}
textarea {
  line-height: normal;
  height: 195px;
  padding-top: 17px;
}
input[type="text"]:focus, input[type="email"]:focus, input[type="url"]:focus, input[type="password"]:focus, input[type="search"]:focus, input[type="number"]:focus, input[type="tel"]:focus, input[type="range"]:focus, input[type="date"]:focus, input[type="month"]:focus, input[type="week"]:focus, input[type="time"]:focus, input[type="datetime"]:focus, input[type="datetime-local"]:focus, input[type="color"]:focus, textarea:focus, select:focus {
  outline: 0;
  border-color: #1b1a1a;
}
input[type=number]::-webkit-inner-spin-button, input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
input[type=number] {
  -moz-appearance: textfield;
  /* Firefox */
}
.cms-select form {
  position: relative;
  background-color: #fff;
  -webkit-border-radius: 4px;
  -khtml-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  -o-border-radius: 4px;
  border-radius: 4px;
}
.cms-select select {
  height: 39px;
  line-height: 37px;
  font-size: 15px;
  background-color: transparent;
  position: relative;
  z-index: 99;
  -webkit-appearance: none;
  -khtml-appearance: none;
  -moz-appearance: none;
  -ms-appearance: none;
  -o-appearance: none;
  appearance: none;
}
.cms-select i {
  position: absolute;
  right: 14px;
  top: 50%;
  -webkit-transform: translate(0px, -50%);
  -khtml-transform: translate(0px, -50%);
  -moz-transform: translate(0px, -50%);
  -ms-transform: translate(0px, -50%);
  -o-transform: translate(0px, -50%);
  transform: translate(0px, -50%);
}
.wpcf7-form .wpcf7-form-control-wrap {
  margin-bottom: 30px;
  display: block;
  line-height: 1;
}
.wpcf7-form .wpcf7-form-control-wrap textarea {
  height: 50px;
}
.wpcf7-form .wpcf7-form-control-wrap .wpcf7-not-valid-tip {
  display: none;
}
.wpcf7-form .wpcf7-form-control-wrap .wpcf7-not-valid {
  border-color: #f13c3c !important;
}
.wpcf7-form .wpcf7-response-output {
  font-size: 13px;
  border: 1px solid #f13c3c;
  padding: 24px 15px;
  margin: 0 0 30px;
  text-align: center;
}
.wpcf7-form .wpcf7-response-output.wpcf7-mail-sent-ok {
  color: #28a745;
  border-color: rgba(40, 167, 69, 0.4);
  background-color: rgba(40, 167, 69, 0.12);
}
.wpcf7-form .wpcf7-response-output.wpcf7-validation-errors {
  color: #dc3545;
  border-color: rgba(220, 53, 69, 0.4);
  background-color: rgba(220, 53, 69, 0.12);
}
.wpcf7-form .wpcf7-submit {
  padding: 0 41px;
  margin-top: 6px;
}
.wpcf7-form .ajax-loader {
  display: none !important;
}
.wpcf7-form .wpcf7-menu {
  display: block;
}
.wpcf7-form .wpcf7-menu select {
  position: relative;
  background-color: #fff;
  border-radius: 0;
  -webkit-appearance: none;
  -khtml-appearance: none;
  -moz-appearance: none;
  -ms-appearance: none;
  -o-appearance: none;
  position: relative;
  z-index: 99;
}
.wpcf7-form .wpcf7-menu select option {
  padding: 5px;
}
.wpcf7-form .wpcf7-menu select:after {
  position: absolute;
  content: "\f0d7";
  font-family: FontAwesome;
  display: block;
  font-size: 15px;
  color: #222;
  right: 0;
}
.select2 .select2-selection--single {
  -webkit-border-radius: 4px;
  -khtml-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  -o-border-radius: 4px;
  border-radius: 4px;
  border: 1px solid #494848;
  height: 47px;
}
.select2 .select2-selection--single .select2-selection__rendered {
  padding-left: 15px;
  line-height: 47px;
}
.select2 .select2-selection--single .select2-selection__arrow {
  right: 8px;
  top: 50%;
  -webkit-transform: translate(0px, -50%);
  -khtml-transform: translate(0px, -50%);
  -moz-transform: translate(0px, -50%);
  -ms-transform: translate(0px, -50%);
  -o-transform: translate(0px, -50%);
  transform: translate(0px, -50%);
}
#ui-datepicker-div {
  -webkit-border-radius: 3px;
  -khtml-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  -o-border-radius: 3px;
  border-radius: 3px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.24);
  border: none;
  padding: 0;
}
#ui-datepicker-div .ui-datepicker-header {
  background-color: #1b1a1a;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  -webkit-border-radius: 3px 3px 0 0;
  -khtml-border-radius: 3px 3px 0 0;
  -moz-border-radius: 3px 3px 0 0;
  -ms-border-radius: 3px 3px 0 0;
  -o-border-radius: 3px 3px 0 0;
  border-radius: 3px 3px 0 0;
  font-weight: normal;
  padding: 0;
}
#ui-datepicker-div .ui-datepicker-header .ui-datepicker-prev, #ui-datepicker-div .ui-datepicker-header .ui-datepicker-next {
  height: 40px;
  width: 40px;
  line-height: 40px;
  text-align: center;
  background-color: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  margin: 0;
  top: 0;
}
#ui-datepicker-div .ui-datepicker-header .ui-datepicker-prev span, #ui-datepicker-div .ui-datepicker-header .ui-datepicker-next span {
  display: none;
}
#ui-datepicker-div .ui-datepicker-header .ui-datepicker-prev:before, #ui-datepicker-div .ui-datepicker-header .ui-datepicker-next:before {
  font-family: "Material-Design-Iconic-Font";
  font-size: 16px;
  color: rgba(255, 255, 255, 0.4);
}
#ui-datepicker-div .ui-datepicker-header .ui-datepicker-prev {
  left: 0;
}
#ui-datepicker-div .ui-datepicker-header .ui-datepicker-prev:before {
  content: "\f2f4";
}
#ui-datepicker-div .ui-datepicker-header .ui-datepicker-next {
  right: 0;
}
#ui-datepicker-div .ui-datepicker-header .ui-datepicker-next:before {
  content: "\f2f6";
}
#ui-datepicker-div .ui-datepicker-title {
  color: #fff;
  font-size: 16px;
  line-height: 40px;
  margin: 0 40px;
}
#ui-datepicker-div .ui-datepicker-title select {
  font-size: inherit;
  color: #fff;
  line-height: normal;
  height: inherit;
  background-color: transparent;
  -webkit-appearance: none;
  -khtml-appearance: none;
  -moz-appearance: none;
  -ms-appearance: none;
  -o-appearance: none;
  appearance: none;
  margin: 0;
  padding: 0;
  width: inherit;
  border: none;
}
#ui-datepicker-div .ui-datepicker-title select option {
  padding: 0;
}
#ui-datepicker-div .ui-datepicker-calendar {
  background-color: transparent;
  border: none;
  margin: 0;
}
#ui-datepicker-div .ui-datepicker-calendar thead {
  background-color: #1b1a1a;
}
#ui-datepicker-div .ui-datepicker-calendar th span {
  text-transform: uppercase;
  color: #fff;
}
#ui-datepicker-div .ui-datepicker-calendar td {
  font-size: 12px;
}
#ui-datepicker-div .ui-datepicker-calendar td a, #ui-datepicker-div .ui-datepicker-calendar td span {
  background-color: transparent;
  border: medium none;
  text-align: center;
}
#ui-datepicker-div .ui-datepicker-calendar td a.ui-state-active, #ui-datepicker-div .ui-datepicker-calendar td span.ui-state-active, #ui-datepicker-div .ui-datepicker-calendar td a.ui-state-highlight, #ui-datepicker-div .ui-datepicker-calendar td span.ui-state-highlight {
  background-color: #1b1a1a;
  color: #fff;
  -webkit-border-radius: 3px;
  -khtml-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  -o-border-radius: 3px;
  border-radius: 3px;
}
#ui-datepicker-div .ui-datepicker-calendar td a.ui-state-highlight, #ui-datepicker-div .ui-datepicker-calendar td span.ui-state-highlight {
  background-color: rgba(27, 26, 26, 0.7);
}
form.search-form, form.woocommerce-product-search {
  position: relative;
}
form.search-form input, form.woocommerce-product-search input {
  -webkit-border-radius: 0px;
  -khtml-border-radius: 0px;
  -moz-border-radius: 0px;
  -ms-border-radius: 0px;
  -o-border-radius: 0px;
  border-radius: 0px;
  background: #fff;
  border: none;
  border-bottom: 2px solid #1b1a1a;
  padding: 0;
  font-size: 15px;
  line-height: 50px;
  color: #494848;
}
form.search-form .search-submit, form.woocommerce-product-search .search-submit, form.search-form button[type="submit"], form.woocommerce-product-search button[type="submit"] {
  border: none;
  border-radius: 0px;
  padding: 0 18px;
  margin-right: -16px;
  line-height: 50px;
  position: absolute;
  top: 0;
  right: 0;
  cursor: pointer;
  font-size: 17px;
  color: #1b1a1a;
  background: transparent;
}
form .select2-container--default {
  width: 100% !important;
}
form .select2-container--default .select2-selection {
  border: 1px solid #494848;
  height: 47px;
}
form .select2-container--default .select2-selection .select2-selection__rendered {
  line-height: 47px;
  padding-left: 15px;
}
form .select2-container--default .select2-selection .select2-selection__arrow {
  right: 10px;
  top: 50%;
  color: #8f8f8f;
}
form .select2-container--default .select2-selection .select2-selection__clear {
  height: 20px;
  line-height: 20px;
  position: absolute;
  right: 30px;
  text-align: center;
  top: 50%;
  -webkit-transform: translate(0px, -50%);
  -khtml-transform: translate(0px, -50%);
  -moz-transform: translate(0px, -50%);
  -ms-transform: translate(0px, -50%);
  -o-transform: translate(0px, -50%);
  transform: translate(0px, -50%);
  width: 20px;
  color: #8f8f8f;
}
form .select2-container--default .select2-selection .select2-selection__placeholder {
  color: rgba(55, 55, 55, 0.87);
}
.select2-container.select2-container--open .select2-dropdown {
  border-color: #494848;
}
.select2-container.select2-container--open .select2-dropdown .select2-search__field {
  border: 1px solid #494848;
  padding-left: 15px;
  padding-right: 15px;
}
.select2-container.select2-container--open .select2-results li.select2-results__option--highlighted {
  background-color: #1b1a1a;
}
.cms-field-checkbox {
  position: relative;
  padding-left: 27px;
}
.cms-field-checkbox .icon-check {
  border: 1px solid #e1e3e3;
  border-radius: 1px;
  display: block;
  height: 17px;
  width: 17px;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translate(0, -50%);
  -khtml-transform: translate(0, -50%);
  -moz-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  -o-transform: translate(0, -50%);
  transform: translate(0, -50%);
  z-index: 1;
}
.cms-field-checkbox .icon-check:before {
  content: "\f00c";
  font-size: 13px;
  color: #1b1a1a;
  position: absolute;
  top: -4px;
  left: 1px;
  font-family: FontAwesome;
  opacity: 0;
}
.cms-field-checkbox input {
  bottom: 0;
  height: 100%;
  left: 0;
  position: absolute;
  width: 100%;
  opacity: 0;
  cursor: pointer;
  z-index: 3;
}
.cms-field-checkbox input:checked + .icon-check:before {
  opacity: 1;
}
.nice-select {
  position: relative;
  padding-right: 40px;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  white-space: nowrap;
}
.nice-select:after {
  content: "\f312";
  font-family: "Material-Design-Iconic-Font";
  font-size: 18px;
  color: #272626;
  position: absolute;
  right: 24px;
  top: 50%;
  -webkit-transform: translate(0px, -50%);
  -khtml-transform: translate(0px, -50%);
  -moz-transform: translate(0px, -50%);
  -ms-transform: translate(0px, -50%);
  -o-transform: translate(0px, -50%);
  transform: translate(0px, -50%);
}
.nice-select span.current {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.nice-select .option {
  text-overflow: ellipsis;
  overflow: hidden;
}
.nice-select.open .list {
  padding: 5px;
  width: 100%;
  max-height: 250px;
  overflow: auto;
  opacity: 1;
  pointer-events: auto;
  -webkit-transform: scale(1) translateY(0);
  -ms-transform: scale(1) translateY(0);
  transform: scale(1) translateY(0);
}
.nice-select.disabled {
  border-color: #ededed;
  color: #999;
  pointer-events: none;
}
.nice-select.disabled:after {
  border-color: #ccc;
}
.nice-select.wide {
  width: 100%;
}
.nice-select.wide .list {
  left: 0 !important;
  right: 0 !important;
}
.nice-select.right {
  float: right;
}
.nice-select.right .list {
  left: auto;
  right: 0;
}
.nice-select.small {
  font-size: 12px;
  height: 36px;
  line-height: 34px;
}
.nice-select.small:after {
  height: 4px;
  width: 4px;
}
.nice-select.small .option {
  line-height: 34px;
  min-height: 34px;
}
.nice-select .list {
  background-color: #fff;
  padding: 5px;
  -webkit-border-radius: 5px;
  -khtml-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  border-radius: 5px;
  -webkit-box-shadow: 0 2px 4px rgba(0, 0, 0, 0.24);
  -khtml-box-shadow: 0 2px 4px rgba(0, 0, 0, 0.24);
  -moz-box-shadow: 0 2px 4px rgba(0, 0, 0, 0.24);
  -ms-box-shadow: 0 2px 4px rgba(0, 0, 0, 0.24);
  -o-box-shadow: 0 2px 4px rgba(0, 0, 0, 0.24);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.24);
  box-sizing: border-box;
  margin-top: 4px;
  opacity: 0;
  overflow: hidden;
  padding: 0;
  pointer-events: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  -webkit-transform-origin: 50% 0;
  -ms-transform-origin: 50% 0;
  transform-origin: 50% 0;
  -webkit-transform: scale(0.75) translateY(-21px);
  -ms-transform: scale(0.75) translateY(-21px);
  transform: scale(0.75) translateY(-21px);
  -webkit-transition: all 0.2s cubic-bezier(0.5, 0, 0, 1.25), opacity 0.15s ease-out;
  transition: all 0.2s cubic-bezier(0.5, 0, 0, 1.25), opacity 0.15s ease-out;
  z-index: 9;
  color: rgba(0, 0, 0, 0.87);
}
.nice-select .list .selected {
  color: #000;
}
.nice-select .list:hover .option:not(:hover) {
  background-color: transparent !important;
}
.nice-select .option {
  cursor: pointer;
  line-height: normal;
  list-style: none;
  outline: none;
  padding: 8px 24px;
  text-align: left;
  -webkit-transition: all 0.2s;
  -khtml-transition: all 0.2s;
  -moz-transition: all 0.2s;
  -ms-transition: all 0.2s;
  -o-transition: all 0.2s;
  transition: all 0.2s;
  -webkit-border-radius: 4px;
  -khtml-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  -o-border-radius: 4px;
  border-radius: 4px;
}
.nice-select .option:hover, .nice-select .option.focus, .nice-select .option.selected.focus {
  background-color: #f3f3f4;
}
.nice-select .option.selected {
  font-weight: bold;
}
.nice-select .option.disabled {
  background-color: transparent;
  color: #999;
  cursor: default;
}
.no-csspointerevents .nice-select .list {
  display: none;
}
.no-csspointerevents .nice-select.open .list {
  display: block;
}
.btn, button, .button, input[type="submit"] {
  background-color: #1b1a1a;
  font-size: 14px;
  border: 2px solid #1b1a1a;
  color: #fff;
  text-transform: uppercase;
  padding: 0 31px;
  line-height: 46px;
  letter-spacing: 0;
  -webkit-transition: all 300ms ease 0s;
  -khtml-transition: all 300ms ease 0s;
  -moz-transition: all 300ms ease 0s;
  -ms-transition: all 300ms ease 0s;
  -o-transition: all 300ms ease 0s;
  transition: all 300ms ease 0s;
  -webkit-border-radius: 0;
  -khtml-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  -o-border-radius: 0;
  border-radius: 0;
  position: relative;
  display: inline-block;
  text-align: center;
  cursor: pointer;
  font-weight: bold;
  font-family: "Oswald", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.btn:hover, button:hover, .button:hover, input[type="submit"]:hover, .btn:focus, button:focus, .button:focus, input[type="submit"]:focus, .btn.focus, .btn:active {
  outline: medium none;
  text-decoration: none;
  background-color: transparent;
  border-color: #1b1a1a;
  color: #1b1a1a;
  box-shadow: none;
}
.btn.btn__hollow {
  background-color: transparent;
  color: #1b1a1a;
  border-color: #1b1a1a;
}
.btn.btn__hollow:hover, .btn.btn__hollow:focus, .btn.btn__hollow:active {
  background-color: #1b1a1a;
  color: #fff;
}
.btn.btn__white {
  background-color: #fff;
  color: #222;
  border-color: #fff;
}
.btn.btn__white:hover, .btn.btn__white:focus, .btn.btn__white:active {
  background-color: #222;
  color: #fff;
  border-color: #222;
}
.btn.btn__fullwidth {
  width: 100%;
}
.btn.btn__linktext {
  background: transparent;
  color: #1b1a1a;
  border: none;
  border-bottom: 2px solid #1b1a1a;
  padding: 0;
  line-height: 32px;
  cursor: pointer;
  transition: all 300ms ease 200ms;
}
.btn.btn__linktext span.loading-icon {
  display: none;
}
.btn.btn__linktext:before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 0;
  border-left: 2px solid #1b1a1a;
  border-right: 2px solid #1b1a1a;
  transition: all 300ms ease 200ms;
}
.btn.btn__linktext:after {
  content: '';
  position: absolute;
  right: 0;
  top: 0;
  width: 0;
  border-top: 2px solid #1b1a1a;
  transition: all 300ms ease 0s;
}
.btn.btn__linktext:hover {
  padding: 0 35px;
  line-height: 48px;
  margin: 0;
  transition: all 300ms ease 0s;
}
.btn.btn__linktext:hover:before {
  height: 100%;
}
.btn.btn__linktext:hover:after {
  left: 0;
  width: 100%;
}
.btn.hover--slide {
  position: relative;
  overflow: hidden;
  flex: none;
}
.btn.hover--slide:after {
  background: #fff;
  content: "";
  height: 155px;
  left: -75px;
  position: absolute;
  top: -50px;
  transform: rotate(35deg);
  transition: all 1500ms cubic-bezier(0.19, 1, 0.22, 1);
  width: 40px;
  opacity: 0;
}
.btn.hover--slide:hover:after {
  left: 120%;
  transition: all 1200ms cubic-bezier(0.19, 1, 0.22, 1);
  opacity: 0.25;
}
.wp-block-button:not(.is-style-outline) .wp-block-button__link:hover {
  background: #1b1a1a;
}
.wp-block-button.is-style-outline .wp-block-button__link:hover {
  color: #1b1a1a;
  border-color: #1b1a1a;
}
#site-header-wrap {
  position: relative;
  z-index: 999;
  height: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
#site-header-wrap .container .row {
  align-items: center;
  position: relative;
  height: 100px;
}
#site-header-wrap .site-header-main {
  height: 100px;
}
#site-header-wrap .site-branding {
  position: relative;
}
#site-header-wrap .site-branding a {
  line-height: 0;
  float: left;
  transition: none;
}
#site-header-wrap .site-branding a:not(.logo-dark) {
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
}
#site-header-wrap .site-branding img {
  max-height: 40px;
  width: auto;
}
#site-header-wrap .headroom--not-top .site-branding {
  margin: 0;
}
#site-header-wrap .headroom--not-top .site-branding a.logo-dark {
  opacity: 1 !important;
}
#site-header-wrap .headroom--not-top .site-branding a.logo-light {
  opacity: 0;
}
#site-header-wrap .headroom--not-top .site-header-top {
  display: none;
}
#site-header-wrap .headroom--not-top .icon-in-nav .search-icon i {
  color: #222 !important;
}
@media screen and (min-width: 992px) {
  #site-header-wrap.header-transparent {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
  }
}
@media screen and (min-width: 1365px) {
  #site-header-wrap.header-layout1 .site-header-main > .container, #site-header-wrap.header-layout2 .site-header-main > .container, #site-header-wrap.header-layout3 .site-header-main > .container {
    max-width: 100%;
    padding-left: 100px;
    padding-right: 100px;
  }
  #site-header-wrap.header-layout1 .site-header-main > .container.small-space, #site-header-wrap.header-layout2 .site-header-main > .container.small-space, #site-header-wrap.header-layout3 .site-header-main > .container.small-space {
    padding-left: 50px;
    padding-right: 50px;
  }
}
#site-header-wrap.header-layout1 .site-header-main, #site-header-wrap.header-layout2 .site-header-main, #site-header-wrap.header-layout3 .site-header-main {
  position: relative;
}
#site-header-wrap.header-layout1 .site-header-main .header-left, #site-header-wrap.header-layout2 .site-header-main .header-left, #site-header-wrap.header-layout3 .site-header-main .header-left {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 15px;
  z-index: 9999;
}
@media screen and (max-width: 767px) {
  #site-header-wrap.header-layout1 .site-header-main .header-left, #site-header-wrap.header-layout2 .site-header-main .header-left, #site-header-wrap.header-layout3 .site-header-main .header-left {
    left: 15px;
  }
}
#site-header-wrap.header-layout1 .site-header-main .header-right, #site-header-wrap.header-layout2 .site-header-main .header-right, #site-header-wrap.header-layout3 .site-header-main .header-right {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 15px;
  display: flex;
  align-items: center;
  z-index: 9999;
}
@media screen and (max-width: 991px) {
  #site-header-wrap.header-layout1 .site-header-main .header-right, #site-header-wrap.header-layout2 .site-header-main .header-right, #site-header-wrap.header-layout3 .site-header-main .header-right {
    right: 100px;
  }
}
#site-header-wrap.header-layout1 .site-header-main .header-right .icon-wrap, #site-header-wrap.header-layout2 .site-header-main .header-right .icon-wrap, #site-header-wrap.header-layout3 .site-header-main .header-right .icon-wrap {
  margin-left: 20px;
}
#site-header-wrap.header-layout1 .site-header-main .header-right .cart-desktop, #site-header-wrap.header-layout2 .site-header-main .header-right .cart-desktop, #site-header-wrap.header-layout3 .site-header-main .header-right .cart-desktop {
  margin-right: 5px;
  margin-top: 4px;
}
@media screen and (max-width: 991px) {
  #site-header-wrap.header-layout1 .site-header-main .header-right .cart-desktop, #site-header-wrap.header-layout2 .site-header-main .header-right .cart-desktop, #site-header-wrap.header-layout3 .site-header-main .header-right .cart-desktop {
    display: none;
  }
}
#site-header-wrap.header-layout1 .site-header-main .header-right .cart-desktop .open-cart, #site-header-wrap.header-layout2 .site-header-main .header-right .cart-desktop .open-cart, #site-header-wrap.header-layout3 .site-header-main .header-right .cart-desktop .open-cart {
  position: relative;
  display: inline-block;
}
#site-header-wrap.header-layout1 .site-header-main .header-right .cart-desktop .open-cart .cls-1, #site-header-wrap.header-layout2 .site-header-main .header-right .cart-desktop .open-cart .cls-1, #site-header-wrap.header-layout3 .site-header-main .header-right .cart-desktop .open-cart .cls-1 {
  fill-rule: evenodd;
}
#site-header-wrap.header-layout1 .site-header-main .header-right .cart-desktop .open-cart span.cart-count, #site-header-wrap.header-layout2 .site-header-main .header-right .cart-desktop .open-cart span.cart-count, #site-header-wrap.header-layout3 .site-header-main .header-right .cart-desktop .open-cart span.cart-count {
  position: absolute;
  min-width: 16px;
  padding: 0 7px;
  background: #272626;
  color: #fff;
  font-size: 13px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  top: -10px;
  right: -12px;
}
#site-header-wrap.header-layout1 .site-header-main .header-right .icon-in-nav:not(.mobile-icon) .search-icon, #site-header-wrap.header-layout2 .site-header-main .header-right .icon-in-nav:not(.mobile-icon) .search-icon, #site-header-wrap.header-layout3 .site-header-main .header-right .icon-in-nav:not(.mobile-icon) .search-icon {
  cursor: pointer;
  color: #1b1a1a;
}
#site-header-wrap.header-layout1 .site-header-main .header-right .icon-in-nav:not(.mobile-icon) .search-icon i, #site-header-wrap.header-layout2 .site-header-main .header-right .icon-in-nav:not(.mobile-icon) .search-icon i, #site-header-wrap.header-layout3 .site-header-main .header-right .icon-in-nav:not(.mobile-icon) .search-icon i {
  font-size: 17px;
  transition: all 300ms ease 0s;
}
#site-header-wrap.header-layout1 .site-header-main .header-right .icon-in-nav:not(.mobile-icon) .search-icon:hover, #site-header-wrap.header-layout2 .site-header-main .header-right .icon-in-nav:not(.mobile-icon) .search-icon:hover, #site-header-wrap.header-layout3 .site-header-main .header-right .icon-in-nav:not(.mobile-icon) .search-icon:hover {
  color: #1b1a1a;
}
@media screen and (max-width: 991px) {
  #site-header-wrap.header-layout1 .site-header-main .header-right .icon-in-nav:not(.mobile-icon), #site-header-wrap.header-layout2 .site-header-main .header-right .icon-in-nav:not(.mobile-icon), #site-header-wrap.header-layout3 .site-header-main .header-right .icon-in-nav:not(.mobile-icon) {
    display: none;
  }
}
#site-header-wrap.header-layout1 .site-header-main .header-right .icon-slide-nav, #site-header-wrap.header-layout2 .site-header-main .header-right .icon-slide-nav, #site-header-wrap.header-layout3 .site-header-main .header-right .icon-slide-nav, #site-header-wrap.header-layout1 .site-header-main .header-right .icon-popup-menu, #site-header-wrap.header-layout2 .site-header-main .header-right .icon-popup-menu, #site-header-wrap.header-layout3 .site-header-main .header-right .icon-popup-menu {
  display: flex;
  align-items: center;
  cursor: pointer;
  margin-bottom: 3px;
}
@media screen and (max-width: 991px) {
  #site-header-wrap.header-layout1 .site-header-main .header-right .icon-slide-nav, #site-header-wrap.header-layout2 .site-header-main .header-right .icon-slide-nav, #site-header-wrap.header-layout3 .site-header-main .header-right .icon-slide-nav, #site-header-wrap.header-layout1 .site-header-main .header-right .icon-popup-menu, #site-header-wrap.header-layout2 .site-header-main .header-right .icon-popup-menu, #site-header-wrap.header-layout3 .site-header-main .header-right .icon-popup-menu {
    display: none;
  }
}
#site-header-wrap.header-layout1 .site-header-main .header-right .icon-slide-nav span, #site-header-wrap.header-layout2 .site-header-main .header-right .icon-slide-nav span, #site-header-wrap.header-layout3 .site-header-main .header-right .icon-slide-nav span, #site-header-wrap.header-layout1 .site-header-main .header-right .icon-popup-menu span, #site-header-wrap.header-layout2 .site-header-main .header-right .icon-popup-menu span, #site-header-wrap.header-layout3 .site-header-main .header-right .icon-popup-menu span {
  position: relative;
  width: 16px;
  display: block;
  height: 17px;
  transition: transform 0.33s 0s ease;
  overflow: hidden;
}
#site-header-wrap.header-layout1 .site-header-main .header-right .icon-slide-nav span .lines-button, #site-header-wrap.header-layout2 .site-header-main .header-right .icon-slide-nav span .lines-button, #site-header-wrap.header-layout3 .site-header-main .header-right .icon-slide-nav span .lines-button, #site-header-wrap.header-layout1 .site-header-main .header-right .icon-popup-menu span .lines-button, #site-header-wrap.header-layout2 .site-header-main .header-right .icon-popup-menu span .lines-button, #site-header-wrap.header-layout3 .site-header-main .header-right .icon-popup-menu span .lines-button {
  transition: 0.3s;
  cursor: pointer;
  line-height: 0px !important;
  top: 9px;
  position: relative;
  font-size: 0px !important;
  user-select: none;
  display: block;
}
#site-header-wrap.header-layout1 .site-header-main .header-right .icon-slide-nav span .lines-button:after, #site-header-wrap.header-layout2 .site-header-main .header-right .icon-slide-nav span .lines-button:after, #site-header-wrap.header-layout3 .site-header-main .header-right .icon-slide-nav span .lines-button:after, #site-header-wrap.header-layout1 .site-header-main .header-right .icon-popup-menu span .lines-button:after, #site-header-wrap.header-layout2 .site-header-main .header-right .icon-popup-menu span .lines-button:after, #site-header-wrap.header-layout3 .site-header-main .header-right .icon-popup-menu span .lines-button:after {
  height: 2px;
  background-color: #1b1a1a;
  display: inline-block;
  width: 16px;
  position: absolute;
  left: 0;
  top: 0;
  content: '';
}
#site-header-wrap.header-layout1 .site-header-main .header-right .icon-slide-nav span .lines-button .lines, #site-header-wrap.header-layout2 .site-header-main .header-right .icon-slide-nav span .lines-button .lines, #site-header-wrap.header-layout3 .site-header-main .header-right .icon-slide-nav span .lines-button .lines, #site-header-wrap.header-layout1 .site-header-main .header-right .icon-popup-menu span .lines-button .lines, #site-header-wrap.header-layout2 .site-header-main .header-right .icon-popup-menu span .lines-button .lines, #site-header-wrap.header-layout3 .site-header-main .header-right .icon-popup-menu span .lines-button .lines {
  background-color: #1b1a1a;
}
#site-header-wrap.header-layout1 .site-header-main .header-right .icon-slide-nav span .lines-button .lines:before, #site-header-wrap.header-layout2 .site-header-main .header-right .icon-slide-nav span .lines-button .lines:before, #site-header-wrap.header-layout3 .site-header-main .header-right .icon-slide-nav span .lines-button .lines:before, #site-header-wrap.header-layout1 .site-header-main .header-right .icon-popup-menu span .lines-button .lines:before, #site-header-wrap.header-layout2 .site-header-main .header-right .icon-popup-menu span .lines-button .lines:before, #site-header-wrap.header-layout3 .site-header-main .header-right .icon-popup-menu span .lines-button .lines:before, #site-header-wrap.header-layout1 .site-header-main .header-right .icon-slide-nav span .lines-button .lines:after, #site-header-wrap.header-layout2 .site-header-main .header-right .icon-slide-nav span .lines-button .lines:after, #site-header-wrap.header-layout3 .site-header-main .header-right .icon-slide-nav span .lines-button .lines:after, #site-header-wrap.header-layout1 .site-header-main .header-right .icon-popup-menu span .lines-button .lines:after, #site-header-wrap.header-layout2 .site-header-main .header-right .icon-popup-menu span .lines-button .lines:after, #site-header-wrap.header-layout3 .site-header-main .header-right .icon-popup-menu span .lines-button .lines:after {
  display: block;
  width: 16px;
  height: 2px;
  background: #1b1a1a;
  transition: 0.3s;
  position: absolute;
  right: 0;
  content: '';
}
#site-header-wrap.header-layout1 .site-header-main .header-right .icon-slide-nav span .lines-button .lines:before, #site-header-wrap.header-layout2 .site-header-main .header-right .icon-slide-nav span .lines-button .lines:before, #site-header-wrap.header-layout3 .site-header-main .header-right .icon-slide-nav span .lines-button .lines:before, #site-header-wrap.header-layout1 .site-header-main .header-right .icon-popup-menu span .lines-button .lines:before, #site-header-wrap.header-layout2 .site-header-main .header-right .icon-popup-menu span .lines-button .lines:before, #site-header-wrap.header-layout3 .site-header-main .header-right .icon-popup-menu span .lines-button .lines:before {
  top: 5px;
  width: 12px;
}
#site-header-wrap.header-layout1 .site-header-main .header-right .icon-slide-nav span .lines-button .lines:after, #site-header-wrap.header-layout2 .site-header-main .header-right .icon-slide-nav span .lines-button .lines:after, #site-header-wrap.header-layout3 .site-header-main .header-right .icon-slide-nav span .lines-button .lines:after, #site-header-wrap.header-layout1 .site-header-main .header-right .icon-popup-menu span .lines-button .lines:after, #site-header-wrap.header-layout2 .site-header-main .header-right .icon-popup-menu span .lines-button .lines:after, #site-header-wrap.header-layout3 .site-header-main .header-right .icon-popup-menu span .lines-button .lines:after {
  top: -5px;
}
#site-header-wrap.header-layout1 .site-header-main .header-right .icon-slide-nav span:hover .lines-button .lines:before, #site-header-wrap.header-layout2 .site-header-main .header-right .icon-slide-nav span:hover .lines-button .lines:before, #site-header-wrap.header-layout3 .site-header-main .header-right .icon-slide-nav span:hover .lines-button .lines:before, #site-header-wrap.header-layout1 .site-header-main .header-right .icon-popup-menu span:hover .lines-button .lines:before, #site-header-wrap.header-layout2 .site-header-main .header-right .icon-popup-menu span:hover .lines-button .lines:before, #site-header-wrap.header-layout3 .site-header-main .header-right .icon-popup-menu span:hover .lines-button .lines:before {
  width: 16px;
}
#site-header-wrap.header-layout1 .header-center, #site-header-wrap.header-layout2 .header-center, #site-header-wrap.header-layout3 .header-center {
  width: 100%;
}
@media screen and (max-width: 991px) {
  #site-header-wrap.header-layout1 .site-header-main .header-left {
    left: 15px;
  }
}
#site-header-wrap.header-layout2 .header-center {
  padding: 0 140px;
}
@media screen and (min-width: 992px) {
  #site-header-wrap.header-layout2 .main-navigation > ul {
    justify-content: flex-end;
  }
}
@media screen and (min-width: 992px) {
  #site-header-wrap.header-layout2 li.megamenu > ul.sub-menu {
    right: 0;
    transform: none;
    left: auto;
  }
}
@media screen and (max-width: 767px) {
  #site-header-wrap.header-layout3 .header-right {
    right: 15px !important;
  }
}
@media screen and (max-width: 1400px) {
  #site-header-wrap.header-layout4 .site-header-main .header-search-form {
    min-width: inherit;
    padding-right: 30px;
  }
  #site-header-wrap.header-layout4 .site-header-main .header-search-form .header-search-form-inner {
    max-width: 200px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  #site-header-wrap .site-contact-top {
    padding-right: 32px;
    font-size: 17px;
  }
  .header-layout6 .primary-menu > li {
    margin: 0 14px;
  }
}
@media screen and (max-width: 991px) {
  .fixed-height {
    height: inherit !important;
  }
  #site-header-wrap {
    position: relative;
    -webkit-box-shadow: 0 3px 5px rgba(0, 0, 0, 0.1);
    -khtml-box-shadow: 0 3px 5px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 0 3px 5px rgba(0, 0, 0, 0.1);
    -ms-box-shadow: 0 3px 5px rgba(0, 0, 0, 0.1);
    -o-box-shadow: 0 3px 5px rgba(0, 0, 0, 0.1);
    box-shadow: 0 3px 5px rgba(0, 0, 0, 0.1);
  }
  #site-header-wrap.header-layout1, #site-header-wrap.header-layout3 {
    background-color: #fff;
  }
  #site-header-wrap .site-branding {
    min-height: 100px;
  }
  #site-header-wrap .site-branding img {
    padding: 5px 0;
  }
  #site-header-wrap .site-branding a {
    opacity: 0;
    display: inline-block;
    line-height: 90px !important;
  }
  #site-header-wrap .site-branding a.logo-mobile {
    opacity: 1 !important;
  }
  #site-header-wrap .site-branding a.logo-light, #site-header-wrap .site-branding a.logo-dark {
    opacity: 0 !important;
  }
  #site-header-wrap.header-layout3 #main-menu-mobile {
    position: absolute;
    bottom: 10%;
    top: inherit;
    right: 15px;
    -webkit-transform: translate(0, -50%);
    -khtml-transform: translate(0, -50%);
    -moz-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    -o-transform: translate(0, -50%);
    transform: translate(0, -50%);
  }
}
@media screen and (max-width: 991px) {
  #site-header-wrap .site-header-top {
    display: none;
  }
}
#headroom.headroom--up, #headroom.headroom--down {
  -webkit-transition: all 400ms linear 0ms;
  -khtml-transition: all 400ms linear 0ms;
  -moz-transition: all 400ms linear 0ms;
  -ms-transition: all 400ms linear 0ms;
  -o-transition: all 400ms linear 0ms;
  transition: all 400ms linear 0ms;
}
#headroom.headroom--pinned:not(.headroom--top), #headroom.headroom--unpinned:not(.headroom--top) {
  left: 0;
  right: 0;
  top: 0;
  bottom: auto;
  z-index: 1001;
}
@media screen and (min-width: 992px) {
  #headroom.headroom--pinned:not(.headroom--top), #headroom.headroom--unpinned:not(.headroom--top) {
    position: fixed !important;
  }
}
#headroom.headroom--unpinned:not(.headroom--top) {
  -webkit-transform: translateY(-200px);
  -khtml-transform: translateY(-200px);
  -moz-transform: translateY(-200px);
  -ms-transform: translateY(-200px);
  -o-transform: translateY(-200px);
  transform: translateY(-200px);
}
#headroom.headroom--pinned:not(.headroom--top) {
  -webkit-transform: translateY(0px);
  -khtml-transform: translateY(0px);
  -moz-transform: translateY(0px);
  -ms-transform: translateY(0px);
  -o-transform: translateY(0px);
  transform: translateY(0px);
}
#headroom.headroom--pinned:not(.headroom--top) {
  background: #fff;
  box-shadow: 0px 13px 15px -12px rgba(35, 35, 35, 0.15);
}
.admin-bar #headroom.headroom--pinned:not(.headroom--top), .admin-bar #headroom.headroom--unpinned:not(.headroom--top) {
  top: 32px;
}
ul.menu {
  list-style: none;
  margin: 0;
}
ul.menu ul {
  list-style: none;
  margin: 0;
}
@media screen and (min-width: 992px) {
  #main-menu-mobile, .menu-toggle {
    display: none;
  }
  .main-navigation > ul {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
  }
  .primary-menu {
    list-style: none;
    margin: 0;
    padding: 0;
  }
  .primary-menu li {
    position: relative;
    list-style: none;
    padding: 0 40px;
  }
  .primary-menu li a {
    display: block;
  }
  .primary-menu > li {
    display: inline-block;
    vertical-align: middle;
    float: left;
    white-space: nowrap;
    padding: 0 15px;
  }
  .primary-menu > li:last-child {
    padding-right: 0;
  }
  .primary-menu > li > a {
    color: #1b1a1a;
    font-size: 16px;
    line-height: 100px;
    display: block;
    font-weight: bold;
    font-family: 'Oswald', sans-serif;
    position: relative;
    padding: 0;
    letter-spacing: 0;
    text-transform: uppercase;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }
  .primary-menu > li > a:after {
    position: absolute;
    display: block;
    content: "";
    width: 0;
    height: 2px;
    background: #1b1a1a;
    left: 0;
    bottom: 36px;
    transition: all 450ms ease 0s;
  }
  .primary-menu > li > a:hover, .primary-menu > li.current_page_item > a, .primary-menu > li.current-menu-item > a, .primary-menu > li.current_page_ancestor > a, .primary-menu > li.current-menu-ancestor > a {
    color: #1b1a1a !important;
  }
  .primary-menu > li > a:hover:after, .primary-menu > li.current_page_item > a:after, .primary-menu > li.current-menu-item > a:after, .primary-menu > li.current_page_ancestor > a:after, .primary-menu > li.current-menu-ancestor > a:after {
    width: 100%;
  }
  .primary-menu > li:hover > a:after {
    width: 100%;
  }
  .primary-menu > li .link-icon {
    margin-right: 6px;
  }
  .primary-menu > li.megamenu {
    position: static;
  }
  .primary-menu > li.megamenu > ul.sub-menu {
    padding: 0;
    width: 100%;
    max-width: 1170px;
    left: 50%;
    transform: translateX(-50%);
  }
  .primary-menu > li.megamenu > ul.sub-menu > li {
    padding: 0;
  }
  .primary-menu > li.megamenu .vc_row > .vc_column_container .vc_column-inner {
    padding: 0 !important;
  }
  .primary-menu > li.megamenu .vc_row > .vc_column_container .vc_column-inner .vc_wp_custommenu {
    margin: 0;
  }
  .primary-menu > li.megamenu .vc_row > .vc_column_container .vc_column-inner .vc_wp_custommenu .widget_nav_menu {
    min-width: 235px;
    padding: 35px 40px 25px;
  }
  .primary-menu > li.megamenu .vc_row > .vc_column_container .vc_column-inner .vc_wp_custommenu .widget_nav_menu .widgettitle {
    color: #fff;
    font-size: 17px;
    margin-bottom: 12px;
  }
  .primary-menu > li.megamenu .vc_row > .vc_column_container .vc_column-inner .vc_wp_custommenu .widget_nav_menu ul {
    margin: 0 !important;
  }
  .primary-menu > li.megamenu .vc_row > .vc_column_container .vc_column-inner .vc_wp_custommenu .widget_nav_menu ul li {
    padding: 0;
    margin: 0;
  }
  .primary-menu .sub-menu {
    list-style: none;
    margin: 0;
  }
  .primary-menu .sub-menu {
    position: absolute;
    padding: 25px 0;
    background: #161616;
    top: 100%;
    margin-top: 15px;
    min-width: 235px;
    z-index: 99;
    visibility: hidden;
    opacity: 0;
    -webkit-box-shadow: 0px 5px 83px 0 rgba(40, 40, 40, 0.08);
    -khtml-box-shadow: 0px 5px 83px 0 rgba(40, 40, 40, 0.08);
    -moz-box-shadow: 0px 5px 83px 0 rgba(40, 40, 40, 0.08);
    -ms-box-shadow: 0px 5px 83px 0 rgba(40, 40, 40, 0.08);
    -o-box-shadow: 0px 5px 83px 0 rgba(40, 40, 40, 0.08);
    box-shadow: 0px 5px 83px 0 rgba(40, 40, 40, 0.08);
    -webkit-transition: all 300ms linear 0ms;
    -khtml-transition: all 300ms linear 0ms;
    -moz-transition: all 300ms linear 0ms;
    -ms-transition: all 300ms linear 0ms;
    -o-transition: all 300ms linear 0ms;
    transition: all 300ms linear 0ms;
    clip: rect(1px, 1px, 1px, 1px);
  }
  .primary-menu .sub-menu li {
    padding: 0 10px 0 40px;
  }
  .primary-menu .sub-menu li a {
    position: relative;
    padding: 0 30px 0 0;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    font-size: 15px;
    line-height: 37px;
    font-family: inherit;
    color: #f9f9f9;
    -webkit-transition: all 250ms ease;
    -khtml-transition: all 250ms ease;
    -moz-transition: all 250ms ease;
    -ms-transition: all 250ms ease;
    -o-transition: all 250ms ease;
    transition: all 250ms ease;
  }
  .primary-menu .sub-menu li a:before {
    position: absolute;
    content: '\f301';
    display: inline-block;
    font-family: 'Material-Design-Iconic-Font';
    font-size: 13px;
    width: 20px;
    left: -20px;
    text-align: left;
    opacity: 0;
    -webkit-transition: all 250ms ease;
    -khtml-transition: all 250ms ease;
    -moz-transition: all 250ms ease;
    -ms-transition: all 250ms ease;
    -o-transition: all 250ms ease;
    transition: all 250ms ease;
  }
  .primary-menu .sub-menu li > a:hover, .primary-menu .sub-menu li.current_page_item > a, .primary-menu .sub-menu li.current-menu-item > a, .primary-menu .sub-menu li.current_page_ancestor > a, .primary-menu .sub-menu li.current-menu-ancestor > a {
    padding: 0 10px 0 20px;
  }
  .primary-menu .sub-menu li > a:hover:before, .primary-menu .sub-menu li.current_page_item > a:before, .primary-menu .sub-menu li.current-menu-item > a:before, .primary-menu .sub-menu li.current_page_ancestor > a:before, .primary-menu .sub-menu li.current-menu-ancestor > a:before {
    opacity: 1;
    left: 0;
  }
  .primary-menu .sub-menu li:last-child > a {
    border: none;
  }
  .primary-menu .sub-menu li:last-child > a:after {
    display: none;
  }
  .primary-menu .sub-menu li.menu-item-has-children > a:after {
    position: absolute;
    right: 30px;
    content: "\f105";
    font-family: "FontAwesome";
    color: #fff;
    font-size: 13px;
  }
  .primary-menu .sub-menu .sub-menu {
    top: -25px;
    left: 100%;
    background: #161616;
  }
  .primary-menu li:hover, .primary-menu li.focus {
    overflow: visible;
  }
  .primary-menu li:hover > .sub-menu, .primary-menu li.focus > .sub-menu {
    visibility: visible;
    opacity: 1;
    margin-top: 0px;
    clip: inherit;
  }
}
@media screen and (max-width: 991px) {
  .main-navigation {
    background-color: #fff;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    position: absolute;
    padding: 15px 20px;
    top: 130px;
    bottom: auto;
    left: 0;
    right: 0;
    visibility: hidden;
    opacity: 0;
    -webkit-transition: all 300ms ease 0ms;
    -khtml-transition: all 300ms ease 0ms;
    -moz-transition: all 300ms ease 0ms;
    -ms-transition: all 300ms ease 0ms;
    -o-transition: all 300ms ease 0ms;
    transition: all 300ms ease 0ms;
    z-index: -1;
  }
  .main-navigation.navigation-open {
    opacity: 1;
    visibility: visible;
    top: 100px;
    z-index: 999;
  }
  .primary-menu {
    list-style: none;
    margin: 0;
    padding: 0;
  }
  .primary-menu li {
    position: relative;
    list-style: none;
  }
  .primary-menu li a {
    display: block;
    position: relative;
    padding: 10px 0;
    color: #000;
    font-weight: 600;
    font-size: 15px;
  }
  .primary-menu li a:before {
    content: '\f301';
    display: inline-block;
    font-family: 'Material-Design-Iconic-Font';
    font-size: 13px;
    width: 20px;
    margin-left: -20px;
    text-align: left;
    opacity: 0;
    -webkit-transition: all 250ms ease-in-out 0ms;
    -khtml-transition: all 250ms ease-in-out 0ms;
    -moz-transition: all 250ms ease-in-out 0ms;
    -ms-transition: all 250ms ease-in-out 0ms;
    -o-transition: all 250ms ease-in-out 0ms;
    transition: all 250ms ease-in-out 0ms;
  }
  .primary-menu > li > a {
    font-weight: 700;
  }
  .primary-menu > li.current_page_item > a:before, .primary-menu > li.current-menu-item > a:before, .primary-menu > li.current_page_ancestor > a:before, .primary-menu > li.current-menu-ancestor > a:before {
    opacity: 1;
    margin-left: 0;
  }
  .primary-menu > li.megamenu ul.sub-menu {
    margin-top: 15px;
  }
  .primary-menu > li.megamenu ul.sub-menu .widget_nav_menu .widgettitle {
    font-size: 20px !important;
  }
  .primary-menu > li.megamenu ul.sub-menu .widget_nav_menu ul li {
    margin-bottom: 0;
  }
  .primary-menu > li.megamenu ul.sub-menu .widget_nav_menu ul li.current_page_item > a:before, .primary-menu > li.megamenu ul.sub-menu .widget_nav_menu ul li.current-menu-item > a:before, .primary-menu > li.megamenu ul.sub-menu .widget_nav_menu ul li.current_page_ancestor > a:before, .primary-menu > li.megamenu ul.sub-menu .widget_nav_menu ul li.current-menu-ancestor > a:before {
    opacity: 1;
    margin-left: 0;
  }
  .primary-menu > li.megamenu ul.sub-menu .wpb_content_element {
    margin-bottom: 0;
  }
  .primary-menu .sub-menu {
    position: relative;
    padding-left: 20px;
    display: none;
  }
  .primary-menu .sub-menu > li.current_page_item > a, .primary-menu .sub-menu > li.current-menu-item > a, .primary-menu .sub-menu > li.current_page_ancestor > a, .primary-menu .sub-menu > li.current-menu-ancestor > a {
    color: #1b1a1a;
  }
  .primary-menu .sub-menu > li.current_page_item > a:before, .primary-menu .sub-menu > li.current-menu-item > a:before, .primary-menu .sub-menu > li.current_page_ancestor > a:before, .primary-menu .sub-menu > li.current-menu-ancestor > a:before {
    opacity: 1;
    margin-left: 0;
  }
  .primary-menu .sub-menu.submenu-open + .main-menu-toggle:before {
    height: 0;
  }
  .primary-menu li.focus > .sub-menu {
    visibility: visible;
    opacity: 1;
    max-height: none;
    overflow: visible;
  }
  .primary-menu-not-set {
    margin: 0;
    list-style: none;
  }
  .primary-menu-not-set a {
    display: block;
    padding: 10px 0;
    color: #000;
    font-weight: 600;
    font-size: 15px;
  }
  .primary-menu-not-set a:hover {
    color: #1b1a1a;
  }
  #main-menu-mobile {
    position: absolute;
    top: 50%;
    right: 15px;
    -webkit-transform: translate(0, -50%);
    -khtml-transform: translate(0, -50%);
    -moz-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    -o-transform: translate(0, -50%);
    transform: translate(0, -50%);
    display: flex;
    align-items: center;
  }
  #main-menu-mobile .icon-in-nav {
    margin-right: 17px;
    margin-top: 1px;
  }
  #main-menu-mobile .icon-in-nav .search-icon {
    cursor: pointer;
  }
  #main-menu-mobile .icon-in-nav .search-icon i {
    font-size: 17px;
    color: #282828;
    transition: all 300ms ease 0s;
  }
  #main-menu-mobile .icon-in-nav .search-icon i:hover {
    color: #1b1a1a;
  }
  #main-menu-mobile .btn-nav-mobile {
    color: #282828;
    display: inline-block;
    font-size: 16px;
    height: 32px;
    line-height: 32px;
    text-align: center;
    vertical-align: middle;
    width: 30px;
    cursor: pointer;
    position: relative;
    -webkit-transition: all 300ms linear 0ms;
    -khtml-transition: all 300ms linear 0ms;
    -moz-transition: all 300ms linear 0ms;
    -ms-transition: all 300ms linear 0ms;
    -o-transition: all 300ms linear 0ms;
    transition: all 300ms linear 0ms;
  }
  #main-menu-mobile .btn-nav-mobile:before, #main-menu-mobile .btn-nav-mobile:after, #main-menu-mobile .btn-nav-mobile span {
    -webkit-transition: all 300ms linear 0ms;
    -khtml-transition: all 300ms linear 0ms;
    -moz-transition: all 300ms linear 0ms;
    -ms-transition: all 300ms linear 0ms;
    -o-transition: all 300ms linear 0ms;
    transition: all 300ms linear 0ms;
    content: "";
    background-color: #282828;
    display: block;
    height: 2px;
    left: 0;
    margin: auto;
    position: absolute;
    right: 0;
    width: 22px;
    top: 21px;
  }
  #main-menu-mobile .btn-nav-mobile:before {
    top: 9px;
  }
  #main-menu-mobile .btn-nav-mobile span {
    top: 15px;
  }
  #main-menu-mobile .btn-nav-mobile.opened:before {
    top: 15px;
    -webkit-transform: rotate(45deg);
    -khtml-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
  }
  #main-menu-mobile .btn-nav-mobile.opened:after {
    -webkit-transform: rotate(-45deg);
    -khtml-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
    top: 15px;
  }
  #main-menu-mobile .btn-nav-mobile.opened span {
    display: none;
  }
  .main-menu-toggle {
    -webkit-transition: all 300ms linear 0ms;
    -khtml-transition: all 300ms linear 0ms;
    -moz-transition: all 300ms linear 0ms;
    -ms-transition: all 300ms linear 0ms;
    -o-transition: all 300ms linear 0ms;
    transition: all 300ms linear 0ms;
    cursor: pointer;
    display: inline-block;
    height: 19px;
    line-height: 19px;
    position: absolute;
    right: 0;
    text-align: center;
    top: 10px;
    width: 19px;
  }
  .main-menu-toggle:before, .main-menu-toggle:after {
    content: "";
    position: absolute;
    background-color: #222;
  }
  .main-menu-toggle:before {
    height: 11px;
    left: 9px;
    top: 5px;
    width: 1px;
  }
  .main-menu-toggle:after {
    height: 1px;
    left: 4px;
    top: 10px;
    width: 11px;
  }
}
@media screen and (max-width: 767px) {
  .megamenu ul.sub-menu {
    margin-top: 0 !important;
  }
  .megamenu ul.sub-menu .widget_nav_menu {
    margin-top: 15px;
  }
}
.comment-navigation, .posts-navigation, .post-navigation {
  /* add class back when submenu out body */
}
.site-main .comment-navigation, .site-main .posts-navigation, .site-main .post-navigation {
  margin: 0 0 1.5em;
  overflow: hidden;
}
.comment-navigation .nav-previous, .posts-navigation .nav-previous, .post-navigation .nav-previous {
  float: left;
  width: 50%;
}
.comment-navigation .nav-next, .posts-navigation .nav-next, .post-navigation .nav-next {
  float: right;
  text-align: right;
  width: 50%;
}
ul.back {
  right: 100%;
  left: auto !important;
}
.pagetitle-wrap {
  padding: 0 100px;
}
@media screen and (max-width: 1399px) {
  .pagetitle-wrap {
    padding: 0;
  }
}
#pagetitle {
  padding: 85px 0 92px;
  overflow: hidden;
}
#pagetitle.no-title {
  padding: 42px 0;
}
#pagetitle .page-title-inner {
  text-align: left;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 99;
}
#pagetitle.align-left .page-title-inner {
  text-align: left;
  margin-left: 0;
}
#pagetitle.align-right .page-title-inner {
  text-align: right;
  margin-right: 0;
}
#pagetitle.overlay-secondary:before {
  background-color: rgba(0, 0, 0, 0.7);
}
#pagetitle.overlay-gradient {
  position: relative;
  overflow: hidden;
  display: block;
}
#pagetitle.overlay-gradient:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
  background-image: -webkit-gradient(linear, top bottom, from(#1b1a1a), to(rgba(27, 26, 26, 0.34)));
  background-image: -webkit-linear-gradient(top, #1b1a1a, rgba(27, 26, 26, 0.34) 82%);
  background-image: -moz-linear-gradient(top, #1b1a1a, rgba(27, 26, 26, 0.34) 82%);
  background-image: -ms-linear-gradient(top, #1b1a1a, rgba(27, 26, 26, 0.34) 82%);
  background-image: -o-linear-gradient(top, #1b1a1a, rgba(27, 26, 26, 0.34) 82%);
  background-image: linear-gradient(top, #1b1a1a, rgba(27, 26, 26, 0.34) 82%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorStr='#1b1a1a', endColorStr='rgba(27, 26, 26, 0.34)');
  opacity: 0.35;
}
#pagetitle h1.page-title {
  color: #1b1a1a;
  font-size: 55px;
  margin: 0 0 10px -3px;
  z-index: 99;
  font-weight: bold;
}
#pagetitle .cms-breadcrumb {
  margin: 0;
}
#pagetitle .cms-breadcrumb li {
  display: inline-block;
  color: #272626;
  font-size: 15px;
  line-height: 26px;
}
#pagetitle .cms-breadcrumb li + li {
  padding-left: 28px;
  position: relative;
}
#pagetitle .cms-breadcrumb li + li:before {
  content: "/";
  left: 12px;
  position: absolute;
}
#pagetitle .cms-breadcrumb li a:active, #pagetitle .cms-breadcrumb li a:hover {
  -webkit-box-shadow: inset 0 0 0 rgba(0, 0, 0, 0), 0 1px 0 #000;
  box-shadow: inset 0 0 0 rgba(0, 0, 0, 0), 0 1px 0 #000;
}
#pagetitle .cms-back-blog {
  margin-bottom: 10px;
}
#pagetitle .cms-back-blog a {
  color: #fff;
  font-size: 13px;
}
#pagetitle .cms-back-blog a:hover {
  color: #ec3642;
}
.page #pagetitle {
  padding: 126px 0 102px;
}
.page #pagetitle h1.page-title {
  font-size: 85px;
  margin: 0 0 5px -3px;
}
.overlay-dotted:before {
  background-color: transparent;
  background-image: url(../images/dot-overlay.png);
  background-repeat: repeat;
}
#pagetitle-post {
  background-color: rgba(27, 26, 26, 0.9);
  padding: 107px 0 34px;
  background-attachment: fixed;
  text-align: center;
}
#pagetitle-post .page-title-post-inner {
  max-width: 940px;
  margin: auto;
}
#pagetitle-post h2 {
  font-size: 58px;
  line-height: normal;
  color: #fff;
  margin-bottom: 8px;
}
@media screen and (max-width: 991px) {
  #pagetitle-post h2 {
    font-size: 36px;
  }
}
#pagetitle-post .entry-meta {
  margin-bottom: 23px;
}
#pagetitle-post .entry-meta li {
  font-size: 18px;
  line-height: 26px;
  color: rgba(255, 255, 255, 0.33);
  position: relative;
}
#pagetitle-post .entry-meta li:before {
  content: "•";
  position: absolute;
  top: 50%;
  left: 4px;
  -webkit-transform: translate(0, -50%);
  -khtml-transform: translate(0, -50%);
  -moz-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  -o-transform: translate(0, -50%);
  transform: translate(0, -50%);
}
#pagetitle-post .entry-meta li:first-child:before {
  display: none;
}
#pagetitle-post .entry-meta li a {
  color: rgba(255, 255, 255, 0.33);
}
#pagetitle-post .entry-meta li a:hover {
  color: #fff;
}
#pagetitle-post .entry-social-share li {
  margin: 0 12px;
}
#pagetitle-post .entry-social-share li a {
  border: none;
  padding: 0;
  color: #fff;
  font-size: 22px;
}
#pagetitle-post .entry-social-share li a:hover {
  background-color: transparent;
  color: rgba(255, 255, 255, 0.8);
}
#pagetitle-post .entry-social-share li a span {
  display: none;
}
.cms-back-blog {
  font-size: 15px;
  font-weight: 500;
}
.cms-back-blog a {
  color: #000;
}
.cms-back-blog a:hover {
  color: #1b1a1a;
}
.cms-back-blog i {
  padding-right: 9px;
}
.cms-back-blog.general-back-archive {
  font-size: 14px;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 14px;
}
.cms-back-blog.general-back-archive a {
  color: #1b1a1a;
}
.sticky {
  display: block;
}
.entry-content li a:hover {
  text-decoration: underline;
}
.two-line-gap {
  background-color: #101010;
  position: relative;
  height: 2px;
}
.two-line-gap:before {
  content: "";
  height: 1px;
  background-color: #2e2e2e;
  left: 0;
  right: 0;
  bottom: 0;
  display: block;
  position: absolute;
}
.updated:not(.published) {
  display: none;
}
.format-gallery .entry-featured {
  position: relative;
}
.format-gallery .entry-featured .owl-next, .format-gallery .entry-featured .owl-prev {
  background: #fff;
  width: 34px;
  height: 34px;
  line-height: 34px;
  text-align: center;
  position: absolute;
  color: #000;
  font-size: 18px;
  -webkit-transition: all 300ms linear 0ms;
  -khtml-transition: all 300ms linear 0ms;
  -moz-transition: all 300ms linear 0ms;
  -ms-transition: all 300ms linear 0ms;
  -o-transition: all 300ms linear 0ms;
  transition: all 300ms linear 0ms;
  opacity: 0;
}
.format-gallery .entry-featured .owl-next:hover, .format-gallery .entry-featured .owl-prev:hover {
  background: #1b1a1a;
  color: #fff;
}
.format-gallery .entry-featured .owl-next {
  right: 0;
  top: 50%;
  -webkit-transform: translate(0, -50%);
  -khtml-transform: translate(0, -50%);
  -moz-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  -o-transform: translate(0, -50%);
  transform: translate(0, -50%);
}
.format-gallery .entry-featured .owl-prev {
  left: 0;
  top: 50%;
  -webkit-transform: translate(0, -50%);
  -khtml-transform: translate(0, -50%);
  -moz-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  -o-transform: translate(0, -50%);
  transform: translate(0, -50%);
}
.format-gallery .entry-featured:hover .owl-next, .format-gallery .entry-featured:hover .owl-prev {
  opacity: 1;
}
.format-gallery .entry-featured:hover .owl-next.disabled, .format-gallery .entry-featured:hover .owl-prev.disabled {
  opacity: 0.76;
}
.page-links span.page-links-title {
  margin-right: 10px;
}
.page-links > a, .page-links > span:not(.page-links-title) {
  height: 36px;
  width: 36px;
  line-height: 36px;
  -webkit-border-radius: 36px;
  -khtml-border-radius: 36px;
  -moz-border-radius: 36px;
  -ms-border-radius: 36px;
  -o-border-radius: 36px;
  border-radius: 36px;
  font-size: 18px;
  font-weight: 500;
  background-color: #1b1a1a;
  color: #fff;
  display: inline-block;
  text-align: center;
}
.page-links > a {
  background-color: transparent;
  color: rgba(0, 0, 0, 0.4);
}
.page-links > a:hover {
  background-color: #1b1a1a;
  color: #fff;
  text-decoration: none;
}
.entry-video iframe, .entry-video .wp-video {
  width: 100% !important;
}
.posts-pagination {
  text-align: center;
  margin-top: -5px;
}
.posts-pagination .page-numbers {
  display: inline-block;
  color: #272626;
  font-size: 15px;
  font-weight: bold;
  font-family: "Oswald", sans-serif;
  padding: 0 5px;
}
@media screen and (max-width: 767px) {
  .posts-pagination .page-numbers {
    margin-bottom: 15px;
  }
}
.posts-pagination .page-numbers.current, .posts-pagination .page-numbers:hover {
  color: #1b1a1a;
  text-decoration: underline;
}
.posts-pagination .page-numbers.next, .posts-pagination .page-numbers.prev {
  padding: 0;
}
.posts-pagination .page-numbers.next {
  margin-left: 16px;
}
.posts-pagination .page-numbers.prev {
  margin-right: 16px;
}
.posts-pagination .page-numbers.dots.current, .posts-pagination .page-numbers.dots:hover {
  text-decoration: unset;
}
.entry-featured {
  position: relative;
}
.entry-featured .post-image {
  margin-bottom: 24px;
  overflow: hidden;
}
.entry-featured .post-image img {
  transition: all 1s;
}
.entry-featured .post-image a {
  width: 100%;
}
.entry-featured .post-image a, .entry-featured .post-image span {
  display: inline-block;
}
.entry-featured .post-image:hover img {
  opacity: 0.9;
  -webkit-transform: scale3d(1.1, 1.1, 1);
  transform: scale3d(1.1, 1.1, 1);
}
.entry-featured .entry-video, .entry-featured .cms-carousel {
  margin-bottom: 30px;
}
.post-meta .cats-date {
  margin-bottom: 6px;
}
.post-meta .cats-date a {
  color: #272626;
}
.post-meta .cats-date a:hover {
  -webkit-box-shadow: inset 0 0 0 rgba(0, 0, 0, 0), 0 1px 0 #272626;
  box-shadow: inset 0 0 0 rgba(0, 0, 0, 0), 0 1px 0 #272626;
}
.post-meta .data .entry-title {
  font-weight: bold;
  line-height: 1.26;
  margin-bottom: 18px;
  color: #282828;
}
.post-meta .data .entry-title a {
  -ms-word-wrap: break-word;
  word-wrap: break-word;
}
.post-meta .data .entry-title a:hover {
  color: #1b1a1a;
}
.post-meta ul.entry-meta {
  margin-top: -11px;
  margin-bottom: 18px;
}
.post-meta ul.entry-meta li {
  display: inline-block;
  font-size: 14px;
  margin-right: 20px;
}
.post-meta ul.entry-meta li:last-child {
  margin-right: 0;
}
.post-meta ul.entry-meta li a {
  color: #272626;
  font-weight: 400;
}
.post-meta ul.entry-meta li a:hover {
  -webkit-box-shadow: inset 0 0 0 rgba(0, 0, 0, 0), 0 1px 0 #272626;
  box-shadow: inset 0 0 0 rgba(0, 0, 0, 0), 0 1px 0 #272626;
}
.single-hentry {
  margin-bottom: 44px;
}
.single-hentry:last-child {
  margin-bottom: 0;
}
@media screen and (max-width: 767px) {
  .single-hentry .entry-holder {
    padding-left: 0;
    padding-right: 0;
  }
}
.single-hentry .entry-more {
  margin-top: 18px;
}
.single-hentry .entry-more .cms-arrow {
  margin-right: 9px;
}
.single-hentry .entry-more a {
  font-size: 14px;
  font-family: "Oswald", sans-serif;
  font-weight: bold;
  color: #1b1a1a;
  text-transform: uppercase;
}
.single-hentry .entry-more a:hover {
  -webkit-box-shadow: inset 0 0 0 rgba(0, 0, 0, 0), 0 1px 0 #1b1a1a;
  box-shadow: inset 0 0 0 rgba(0, 0, 0, 0), 0 1px 0 #1b1a1a;
}
.single-hentry .entry-tags a {
  display: inline-block;
  margin: 4px 10px 0;
  font-size: 15px;
  color: #272626;
}
.single-hentry .entry-tags a:first-child {
  margin-left: 0;
}
.single-hentry .entry-tags a:hover {
  -webkit-box-shadow: inset 0 0 0 rgba(0, 0, 0, 0), 0 1px 0 #272626;
  box-shadow: inset 0 0 0 rgba(0, 0, 0, 0), 0 1px 0 #272626;
}
.post-previous-next {
  padding: 39px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.post-previous-next .post-previous {
  display: inline-block;
  align-self: flex-start;
  min-width: 16px;
  transition: all 300ms ease 0s;
  cursor: pointer;
}
.post-previous-next .post-previous:hover {
  transform: translateX(-5px);
}
.post-previous-next .post-next {
  display: inline-block;
  align-self: flex-end;
  min-width: 16px;
  transition: all 300ms ease 0s;
  cursor: pointer;
}
.post-previous-next .post-next:hover {
  transform: translateX(5px);
}
.post-previous-next .blog-single-social {
  display: inline-block;
  color: #1b1a1a;
}
.post-previous-next .blog-single-social .cms-social-media li + li {
  margin-left: 0;
}
.post-previous-next .grid-archive a {
  color: #1b1a1a;
}
.post-previous-next .grid-archive a .molli-archive-button {
  position: relative;
  display: inline-block;
  width: 18px;
  height: 18px;
  cursor: pointer;
}
.post-previous-next .grid-archive a .molli-archive-button .molli-btn-square {
  width: 6px;
  height: 6px;
  display: inline-block;
  position: absolute;
  background-color: #1b1a1a;
  -webkit-transition: transform 0.15s;
  -moz-transition: transform 0.15s;
  transition: transform 0.15s;
}
.post-previous-next .grid-archive a .molli-archive-button .molli-btn-square.square-1 {
  left: 2px;
  top: 2px;
}
.post-previous-next .grid-archive a .molli-archive-button .molli-btn-square.square-2 {
  right: 2px;
  top: 2px;
}
.post-previous-next .grid-archive a .molli-archive-button .molli-btn-square.square-3 {
  left: 2px;
  bottom: 2px;
}
.post-previous-next .grid-archive a .molli-archive-button .molli-btn-square.square-4 {
  right: 2px;
  bottom: 2px;
}
.post-previous-next .grid-archive a .molli-archive-button:hover .square-1 {
  -webkit-transform: translate(-2px, -2px);
  -moz-transform: translate(-2px, -2px);
  transform: translate(-2px, -2px);
}
.post-previous-next .grid-archive a .molli-archive-button:hover .square-2 {
  -webkit-transform: translate(2px, -2px);
  -moz-transform: translate(2px, -2px);
  transform: translate(2px, -2px);
}
.post-previous-next .grid-archive a .molli-archive-button:hover .square-3 {
  -webkit-transform: translate(-2px, 2px);
  -moz-transform: translate(-2px, 2px);
  transform: translate(-2px, 2px);
}
.post-previous-next .grid-archive a .molli-archive-button:hover .square-4 {
  -webkit-transform: translate(2px, 2px);
  -moz-transform: translate(2px, 2px);
  transform: translate(2px, 2px);
}
.post-previous-next.portfolio {
  padding: 20px 0;
  margin-top: 42px;
}
.admin-info {
  display: flex;
  padding: 40px;
  background: #f9f9f9;
}
@media screen and (max-width: 575px) {
  .admin-info {
    flex-direction: column;
  }
  .admin-info .avatar-info {
    margin-bottom: 20px;
  }
}
.admin-info .avatar-info {
  max-width: 120px;
  flex: none;
  margin-right: 30px;
}
.admin-info .avatar-info img {
  border-radius: 2px;
}
.admin-info .main-info h3 {
  font-size: 19px;
  text-transform: capitalize;
  margin-top: -4px;
  margin-bottom: 11px;
}
.admin-info .main-info p.desc {
  margin-bottom: 18px;
  font-size: 15px;
}
.admin-info .main-info .cms-social-media {
  color: #1b1a1a;
  margin-left: -10px !important;
  margin-right: -10px !important;
}
.admin-info .main-info .cms-social-media a {
  padding: 0 10px;
}
body.error404 #pagetitle, body.error404 footer {
  display: none;
}
body.error404 #content {
  padding: 0;
}
body.error404 .site-main {
  padding: 0 100px;
}
@media screen and (max-width: 575px) {
  body.error404 .site-main {
    padding: 0 30px;
  }
}
body.error404 .content-404 {
  position: relative;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  height: calc(100vh - 100px);
}
body.error404 .content-404 .error-404-text {
  text-align: center;
  position: relative;
  z-index: 9;
  margin-bottom: 19px;
}
body.error404 .content-404 .error-404-text .page-number h1 {
  line-height: 1;
  margin-bottom: 33px;
}
@media screen and (max-width: 575px) {
  body.error404 .content-404 .error-404-text .page-number h1 {
    font-size: 120px !important;
    margin-bottom: 20px;
  }
}
body.error404 .content-404 .error-404-text .page-heading h2 {
  font-weight: bold;
}
@media screen and (max-width: 575px) {
  body.error404 .content-404 .error-404-text .page-heading h2 {
    font-size: 35px !important;
  }
}
body.error404 .content-404 .error-404-text .page-desc {
  margin-top: 17px;
  margin-bottom: 43px;
  padding: 0 31px;
  line-height: 1.55;
}
body.error404 .content-404 .error-404-text .page-desc p {
  letter-spacing: 0;
}
body.error404 .content-404 .error-404-text .page-button a.btn {
  padding: 0 40px;
}
body.error404 .content-404 .social-wrap {
  position: absolute;
  width: 100%;
  height: 100%;
}
body.error404 .content-404 .social-wrap .social-left-side {
  left: -62px;
  color: #1b1a1a;
}
body.error404 .content-404 .social-wrap .social-left-side .cms-social-media a {
  margin: 0 auto 8px;
}
body.error404 .bottom-404 {
  padding: 28px 0 30px;
}
body.error404.admin-bar .content-404 {
  height: calc(100vh - 135px);
}
.widget {
  margin-bottom: 32px;
}
.widget:last-child {
  margin-bottom: 0;
}
.widget .screen-reader-text {
  display: none;
}
.widget select {
  max-width: 100%;
  margin-top: 6px;
  margin-bottom: 7px;
}
.widget .widget-title {
  font-size: 19px;
  font-weight: 600;
  line-height: 29px;
  text-transform: capitalize;
  margin-bottom: 18px;
}
.widget .widget-content > ul {
  margin: 0;
  list-style: none;
}
#content .widget_categories ul ul ul ul ul, #content .widget_product_categories ul ul ul ul ul, #content .widget_pages ul ul ul ul ul, #content .widget_nav_menu ul ul ul ul ul, #content .widget_meta ul ul ul ul ul {
  padding-left: 0;
}
#content .widget_categories ul li, #content .widget_product_categories ul li, #content .widget_nav_menu ul li, #content .widget_pages ul li, #content .widget_archive ul li, #content .widget_recent_entries ul li, #content .widget_meta ul li {
  font-size: 0;
  line-height: 0;
}
#content .widget_categories ul li a, #content .widget_product_categories ul li a, #content .widget_nav_menu ul li a, #content .widget_pages ul li a, #content .widget_archive ul li a, #content .widget_recent_entries ul li a, #content .widget_meta ul li a {
  font-size: 15px;
  line-height: 35px;
  font-weight: 400;
  letter-spacing: 0.02em;
}
#content .widget_categories ul li.current-cat > a, #content .widget_product_categories ul li.current-cat > a, #content .widget_nav_menu ul li.current-cat > a, #content .widget_pages ul li.current-cat > a, #content .widget_archive ul li.current-cat > a, #content .widget_recent_entries ul li.current-cat > a, #content .widget_meta ul li.current-cat > a, #content .widget_categories ul li.current-cat-parent > a, #content .widget_product_categories ul li.current-cat-parent > a, #content .widget_nav_menu ul li.current-cat-parent > a, #content .widget_pages ul li.current-cat-parent > a, #content .widget_archive ul li.current-cat-parent > a, #content .widget_recent_entries ul li.current-cat-parent > a, #content .widget_meta ul li.current-cat-parent > a, #content .widget_categories ul li > a:hover, #content .widget_product_categories ul li > a:hover, #content .widget_nav_menu ul li > a:hover, #content .widget_pages ul li > a:hover, #content .widget_archive ul li > a:hover, #content .widget_recent_entries ul li > a:hover, #content .widget_meta ul li > a:hover {
  color: #1b1a1a;
}
#content .widget_categories ul.sub-menu li, #content .widget_product_categories ul.sub-menu li, #content .widget_nav_menu ul.sub-menu li, #content .widget_pages ul.sub-menu li, #content .widget_archive ul.sub-menu li, #content .widget_recent_entries ul.sub-menu li, #content .widget_meta ul.sub-menu li {
  padding-left: 0;
}
#content .widget_categories .nice-select ul li, #content .widget_product_categories .nice-select ul li, #content .widget_nav_menu .nice-select ul li, #content .widget_pages .nice-select ul li, #content .widget_archive .nice-select ul li, #content .widget_recent_entries .nice-select ul li, #content .widget_meta .nice-select ul li {
  font-size: 15px;
  line-height: normal;
}
#secondary.widget-area.widget-has-sidebar .widget {
  padding: 0;
  background: #fff;
  margin-bottom: 40px;
  color: #272626;
}
#secondary.widget-area.widget-has-sidebar .widget a:hover {
  -webkit-box-shadow: inset 0 0 0 rgba(0, 0, 0, 0), 0 1px 0 #272626;
  box-shadow: inset 0 0 0 rgba(0, 0, 0, 0), 0 1px 0 #272626;
}
#secondary.widget-area.widget-has-sidebar .widget:last-child {
  margin-bottom: 0;
}
#secondary.widget-area.widget-has-sidebar .widget.widget_search, #secondary.widget-area.widget-has-sidebar .widget.widget_product_search {
  margin-bottom: 53px;
}
#secondary.widget-area.widget-has-sidebar .widget.widget_search .widget-title, #secondary.widget-area.widget-has-sidebar .widget.widget_product_search .widget-title {
  margin-bottom: 5px;
}
#secondary.widget-area.widget-has-sidebar .widget.widget_media_image {
  margin-bottom: 23px !important;
  margin-top: 60px;
}
.widget_cms_recent_posts {
  padding-bottom: 18px;
}
.widget_cms_recent_posts .widget-content .posts-list .entry-media {
  width: 70px;
  margin-right: 25px;
  flex: none;
}
.widget_cms_recent_posts .widget-content .posts-list .entry-media a {
  display: block;
  width: 100%;
  height: 70px;
  background-position: center bottom;
  background-size: cover;
  background-repeat: no-repeat;
}
.widget_cms_recent_posts .widget-content .posts-list .entry-brief {
  margin-bottom: 24px;
  display: flex;
  padding-bottom: 18px;
  border-bottom: 1px solid #eaeaea;
}
.widget_cms_recent_posts .widget-content .posts-list .entry-brief:last-child {
  margin-bottom: 0;
  border-bottom: none;
}
.widget_cms_recent_posts .widget-content .posts-list .entry-brief .entry-content .entry-meta {
  display: flex;
  font-size: 13px;
}
.widget_cms_recent_posts .widget-content .posts-list .entry-brief .entry-content .entry-meta .cats-meta {
  display: inline-block;
  margin-right: 20px;
}
.widget_cms_recent_posts .widget-content .posts-list .entry-brief .entry-content .entry-meta .cats-meta a {
  color: #1b1a1a;
}
.widget_cms_recent_posts .widget-content .posts-list .entry-brief .entry-content .entry-meta .cats-meta a:after {
  content: ",";
}
.widget_cms_recent_posts .widget-content .posts-list .entry-brief .entry-content .entry-meta .cats-meta a:last-child:after {
  content: '';
}
.widget_cms_recent_posts .widget-content .posts-list .entry-brief .entry-content .entry-meta > span {
  display: inline-block;
  color: #616161;
}
.widget_cms_recent_posts .widget-content .posts-list .entry-brief .entry-content .entry-title {
  font-size: 15px;
  line-height: 22px;
  margin-top: -3px;
  margin-bottom: 5px;
  font-weight: 600;
}
.widget_cms_recent_posts .widget-content .posts-list .entry-brief .entry-content .entry-title a {
  color: inherit;
}
.widget_cms_recent_posts .widget-content .posts-list .entry-brief .entry-content .entry-title a:hover {
  color: #1b1a1a;
}
.widget_nav_menu.column3 ul.menu {
  margin: 0 -15px;
  overflow: hidden;
}
.widget_nav_menu.column3 ul.menu li {
  width: 33.33%;
  padding: 0 15px;
  float: left;
}
@media screen and (max-width: 767px) {
  .widget_nav_menu.column3 ul.menu li {
    width: 50%;
  }
}
@media screen and (max-width: 575px) {
  .widget_nav_menu.column3 ul.menu li {
    width: 100%;
  }
}
.widget_nav_menu.column2 ul.menu {
  margin: 0 -15px;
  overflow: hidden;
}
.widget_nav_menu.column2 ul.menu li {
  width: 50%;
  padding: 0 15px;
  float: left;
}
@media screen and (max-width: 575px) {
  .widget_nav_menu.column2 ul.menu li {
    width: 100%;
  }
}
.widget_categories .widget-title, .widget_product_categories .widget-title, .widget_nav_menu .widget-title, .widget_pages .widget-title, .widget_archive .widget-title, .widget_meta .widget-title {
  margin-bottom: 12px;
}
.widget_categories ul.sub-menu, .widget_product_categories ul.sub-menu, .widget_nav_menu ul.sub-menu, .widget_pages ul.sub-menu, .widget_archive ul.sub-menu, .widget_meta ul.sub-menu {
  margin-left: 15px;
}
.widget.widget_recent_entries ul {
  margin-top: -5px;
}
.widget.widget_recent_comments ul {
  margin-top: -2px;
  margin-bottom: 44px;
}
.widget.widget_recent_comments ul .recentcomments {
  margin-bottom: 9px;
}
.widget.widget_recent_comments ul .recentcomments a {
  font-size: 15px;
  line-height: 1.777;
  font-weight: 500;
}
.widget.widget_recent_comments ul .recentcomments > a {
  font-weight: bold;
  font-size: 15px;
}
.widget.widget_recent_comments ul .recentcomments > a:before {
  content: '\A';
  white-space: pre;
}
.widget_rss ul {
  list-style: none;
  padding: 0;
}
.widget_rss li {
  margin-bottom: 18px;
}
.widget_rss li:last-child {
  margin-bottom: 0;
  padding-bottom: 7px;
}
.widget_rss .rssSummary {
  margin-top: 5px;
}
.widget_rss .rsswidget {
  font-weight: 700;
  display: inline-block;
}
.widget_rss .rss-date {
  font-size: 0.875em;
  font-style: italic;
  display: block;
}
.widget_rss cite {
  font-weight: 700;
  font-size: 0.875em;
}
.widget_calendar {
  padding-bottom: 4px !important;
}
.widget_calendar th, .widget_calendar td {
  text-align: center;
}
.widget_calendar tbody td a {
  color: #1b1a1a;
}
.widget_calendar #wp-calendar {
  margin-bottom: 0;
  margin-top: -3px;
}
.widget_ef_recent_posts li {
  padding-bottom: 14px;
}
.widget_ef_recent_posts li:last-child {
  padding-bottom: 0;
}
.widget_ef_recent_posts .entry-posted-in a {
  font-size: 15px;
  font-weight: 500;
  color: rgba(0, 0, 0, 0.66);
}
.widget_ef_recent_posts .entry-posted-in a:hover {
  color: #1b1a1a;
}
.widget_ef_recent_posts .entry-title {
  font-size: 18px;
  line-height: 24px;
  margin-top: 4px;
}
.widget_ef_recent_posts .entry-title a {
  color: #000;
}
.widget_ef_recent_posts .entry-title a:hover {
  color: #1b1a1a;
}
.widget_ef_recent_posts .entry-title + .entry-meta {
  margin-top: 15px;
}
.widget_cms_check_availability {
  background-color: #fff;
  border: 1px solid #e5e5e5 !important;
  -webkit-border-radius: 6px;
  -khtml-border-radius: 6px;
  -moz-border-radius: 6px;
  -ms-border-radius: 6px;
  -o-border-radius: 6px;
  border-radius: 6px;
  margin-bottom: 55px !important;
  padding: 30px !important;
}
.widget_cms_check_availability .select2-selection__arrow {
  display: none !important;
}
.widget_newsletterwidget .newsletter-subscription {
  margin: 0;
}
.widget_newsletterwidget .footer-widget-title + p {
  font-size: 15px;
  line-height: 21px;
  margin-bottom: 35px;
}
.widget_newsletterwidget .tnp-widget {
  margin-top: 10px;
}
.widget_newsletterwidget form .tnp-field-email {
  margin: 0;
}
.widget_newsletterwidget form .tnp-field-email label {
  display: none;
}
.widget_newsletterwidget form .tnp-field-email .tnp-email {
  -webkit-box-shadow: none;
  -khtml-box-shadow: none;
  -moz-box-shadow: none;
  -ms-box-shadow: none;
  -o-box-shadow: none;
  box-shadow: none;
  border: 1px solid #c4c4c4 !important;
  background-color: transparent !important;
  height: 30px !important;
  line-height: 47px;
  font-size: 13px !important;
  font-style: italic;
  color: #fff;
  -webkit-border-radius: 50px;
  -khtml-border-radius: 50px;
  -moz-border-radius: 50px;
  -ms-border-radius: 50px;
  -o-border-radius: 50px;
  border-radius: 50px;
  padding: 0 20px;
}
.widget_newsletterwidget form .tnp-field-email .tnp-email:focus {
  border-color: #1b1a1a !important;
}
.widget_newsletterwidget form .tnp-field-button {
  margin-bottom: 0;
  width: 100%;
  margin-top: 10px;
}
.widget_newsletterwidget form .tnp-field-button .tnp-submit {
  color: #fff;
  height: 31px !important;
  width: inherit !important;
  padding: 0 20px;
  font-size: 13px;
  font-weight: 500;
  border: none !important;
  -webkit-border-radius: 50px;
  -khtml-border-radius: 50px;
  -moz-border-radius: 50px;
  -ms-border-radius: 50px;
  -o-border-radius: 50px;
  border-radius: 50px;
  text-transform: capitalize;
  background-color: #1b1a1a;
  border-color: #1b1a1a;
}
.widget_newsletterwidget form .tnp-field-button .tnp-submit:hover {
  background-color: #302e2e;
  border-color: #302e2e;
}
@media screen and (max-width: 575px) {
  .widget_newsletterwidget form .tnp-field-button .tnp-submit {
    padding-left: 12px;
    padding-right: 12px;
    font-size: 12px;
  }
}
.tagcloud a {
  display: inline-block;
  font-size: 15px !important;
  line-height: 16px;
  margin-bottom: 8px;
  position: relative;
  margin-right: 15px;
}
.tagcloud a:not(:last-child):after {
  content: '/';
  position: absolute;
  right: -15px;
}
.tagcloud a:hover {
  -webkit-box-shadow: inset 0 0 0 rgba(0, 0, 0, 0), 0 1px 0 #272626;
  box-shadow: inset 0 0 0 rgba(0, 0, 0, 0), 0 1px 0 #272626;
}
.widget ul.children {
  margin-left: 15px;
}
.logged-in .hide-logged {
  display: none;
}
.page-content .wp-smiley, .entry-content .wp-smiley, .comment-content .wp-smiley {
  border: none;
  margin-bottom: 0;
  margin-top: 0;
  padding: 0;
}
embed, iframe, object {
  max-width: 100%;
}
.custom-logo-link {
  display: inline-block;
}
.wp-caption {
  margin-bottom: 1.5em;
  max-width: 100%;
}
.wp-caption img[class*="wp-image-"] {
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.wp-caption .wp-caption-text {
  padding: 0.8075em 0;
  font-size: 0.875em;
  font-style: italic;
}
.wp-caption-text {
  text-align: center;
}
.gallery {
  margin-bottom: 1.5em;
}
.gallery-item {
  display: inline-block;
  text-align: left;
  vertical-align: top;
  margin: 0 0 1em;
  padding: 0 1em 0 0;
  width: 50%;
}
.gallery-caption {
  display: block;
  text-align: left;
  padding: 0 10px 0 0;
  margin-bottom: 0;
}
.gallery-columns-1 .gallery-item {
  width: 100%;
}
@media (min-width: 480px) {
  .gallery-columns-3 .gallery-item {
    width: 33.33333%;
  }
}
@media (min-width: 480px) {
  .gallery-columns-4 .gallery-item {
    width: 25%;
  }
}
.gallery-columns-5 .gallery-caption {
  display: none;
}
@media (min-width: 480px) {
  .gallery-columns-5 .gallery-item {
    width: 25%;
  }
}
@media (min-width: 768px) {
  .gallery-columns-5 .gallery-item {
    width: 20%;
  }
}
.gallery-columns-6 .gallery-caption {
  display: none;
}
@media (min-width: 480px) {
  .gallery-columns-6 .gallery-item {
    width: 25%;
  }
}
@media (min-width: 768px) {
  .gallery-columns-6 .gallery-item {
    width: 16.66%;
  }
}
.gallery-columns-7 .gallery-caption {
  display: none;
}
@media (min-width: 480px) {
  .gallery-columns-7 .gallery-item {
    width: 25%;
  }
}
@media (min-width: 768px) {
  .gallery-columns-7 .gallery-item {
    width: 14.28%;
  }
}
.gallery-columns-8 .gallery-caption {
  display: none;
}
@media (min-width: 480px) {
  .gallery-columns-8 .gallery-item {
    width: 25%;
  }
}
@media (min-width: 768px) {
  .gallery-columns-8 .gallery-item {
    width: 12.5%;
  }
}
.gallery-columns-9 .gallery-caption {
  display: none;
}
@media (min-width: 480px) {
  .gallery-columns-9 .gallery-item {
    width: 25%;
  }
}
@media (min-width: 768px) {
  .gallery-columns-9 .gallery-item {
    width: 11.11%;
  }
}
.gallery-caption {
  display: block;
}
.cms-social-media {
  margin-left: -7px !important;
  margin-right: -7px !important;
}
.cms-social-media a {
  font-size: 18px;
  padding: 0 7px;
}
.cms-social-media a i {
  transition: all 800ms ease 0.02s;
}
.cms-social-media a:hover {
  box-shadow: none !important;
}
.cms-social-media a:hover i {
  -webkit-transform: rotateY(360deg);
  -ms-transform: rotateY(360deg);
  transform: rotateY(360deg);
}
.cms-social-media span {
  display: none;
}
ul.cms-social-media {
  margin-bottom: 0;
  display: inline-flex;
}
ul.cms-social-media li {
  display: inline-block;
}
ul.cms-social-media li + li {
  margin-left: 6px;
}
.comment-content a {
  word-wrap: break-word;
  color: #333;
}
.bypostauthor {
  display: block;
}
.comments-area .comment-list-wrap .comment-list {
  margin-top: 35px;
  margin-bottom: 20px;
}
.comments-area .comment-respond {
  padding-top: 10px;
}
.comments-area ul {
  margin: 0px;
}
.comments-area .comment-text {
  margin-bottom: 5px;
}
.comments-area .comments-title, .comments-area .comment-reply-title {
  font-size: 21px;
  margin-bottom: 0;
  color: #272626;
  font-weight: 600;
  text-transform: capitalize;
}
.comments-area .comments-title {
  margin-top: 64px;
}
.comments-area .comment-reply-title {
  margin-top: 5px;
  margin-bottom: 38px;
}
.comments-area dl + h2 + ul {
  margin-bottom: 20px;
  margin-left: 17px;
}
li .comment-respond {
  margin-bottom: 45px;
}
.comment-list {
  padding: 0;
  list-style: none;
}
.comment-list li {
  list-style-position: inherit;
}
.comment-list li .children {
  width: 100%;
  float: right;
  padding-left: 70px;
}
.comment-list li .children > li {
  padding-top: 30px;
  border-top: 1px solid #eaeaea;
}
.comment-list li:after {
  display: block;
  clear: both;
  content: "";
}
.comment-list > li {
  margin-bottom: 20px;
}
.comment-list > li:last-child {
  margin-bottom: 0;
}
.comment-list ul.children {
  list-style: none;
}
.comment-media {
  float: left;
  flex: none;
}
.comment-media img.avatar {
  margin-right: 20px;
  max-width: 50px;
}
.comment-content {
  padding-bottom: 26px;
}
@media screen and (max-width: 575px) {
  .comment-content {
    padding-bottom: 42px;
  }
}
.comment-title {
  margin-top: 4px;
  margin-bottom: 0;
  text-transform: capitalize;
  font-size: 17px;
  font-weight: 600;
}
.comment-date {
  text-transform: none;
  font-weight: normal;
  color: #272626;
  display: inline-block;
  font-size: 14px;
  margin-bottom: 18px;
}
.comment-text {
  font-size: 15px;
  line-height: 23px;
}
.comment-text p:last-child {
  margin-bottom: 11px;
}
.comment-reply {
  line-height: 1;
}
.comment-reply i {
  margin-right: 5px;
  font-size: 18px;
  color: #1b1a1a;
}
.comment-reply a {
  font-weight: 700;
}
.comment-reply a:hover {
  -webkit-box-shadow: inset 0 0 0 rgba(0, 0, 0, 0), 0 1px 0 #1b1a1a;
  box-shadow: inset 0 0 0 rgba(0, 0, 0, 0), 0 1px 0 #1b1a1a;
}
#commentform.comment-form label {
  font-size: 14px;
  font-weight: 500;
  color: #282828;
  margin: 0;
  min-height: 40px;
  line-height: 40px;
}
#commentform.comment-form input:not(.submit), #commentform.comment-form textarea {
  min-height: 48px;
  height: 48px;
  margin-bottom: 30px;
}
#commentform.comment-form .form-submit {
  margin-top: 4px;
  margin-bottom: 26px;
}
#commentform.comment-form .comment-form-cookies-consent {
  display: none;
  align-items: center;
}
#commentform.comment-form .comment-form-cookies-consent #wp-comment-cookies-consent {
  margin: 0;
}
#commentform.comment-form .comment-form-cookies-consent label {
  margin-left: 15px;
  min-height: unset;
  line-height: 1;
}
.comment-body {
  position: relative;
}
.comment-body .comment-inner {
  display: flex;
}
.comment-body .comment-reply-link {
  color: #1b1a1a;
  font-size: 14px;
  font-weight: bold;
  font-family: 'Oswald', sans-serif;
}
.logged-in-as {
  line-height: 1;
  margin-bottom: 15px;
}
.logged-in-as a {
  color: #272626;
}
.logged-in-as a:hover {
  -webkit-box-shadow: inset 0 0 0 rgba(0, 0, 0, 0), 0 1px 0 #272626;
  box-shadow: inset 0 0 0 rgba(0, 0, 0, 0), 0 1px 0 #272626;
}
@media screen and (max-width: 767px) {
  .comment-media {
    float: none;
    display: inline-block;
  }
  .comment-content {
    padding-left: 0;
    display: block;
    float: none;
    width: auto;
  }
  .comment-list li .children {
    padding-left: 0;
  }
  .comment-list li .children > li > .comment-body {
    border: none;
  }
}
.site-footer {
  font-size: 15px;
  line-height: 23px;
}
.site-footer .cms-footer-item {
  display: flex;
  align-items: center;
}
.site-footer .scroll-top {
  display: none;
}
.site-footer .cms-logo-footer {
  max-width: 100%;
}
.site-footer .cms-logo-footer img {
  max-height: 40px;
  width: auto;
}
.site-footer .cms-social-media a:hover, .site-footer .widget.widget_text a:hover, .site-footer .widget.widget_media_image a:hover {
  box-shadow: none !important;
}
.site-footer .widget .cms-contact-info-holder a {
  border-bottom: 1px solid transparent;
  line-height: 1.6;
}
.site-footer .widget .cms-contact-info-holder a:hover {
  border-bottom-color: inherit;
  text-decoration: none;
}
@media screen and (min-width: 992px) {
  .site-footer .widget.widget_cs_social_widget {
    text-align: center;
    margin: 0 auto;
  }
}
.site-footer .footer-widget-title {
  color: inherit;
}
.site-footer .top-footer {
  padding: 103px 0;
  color: #fff;
}
@media screen and (max-width: 991px) {
  .site-footer .top-footer {
    padding: 80px 0;
  }
  .site-footer .top-footer .cms-footer-item {
    margin-bottom: 30px;
  }
  .site-footer .top-footer .cms-footer-item:last-child {
    margin-bottom: 0;
  }
}
.site-footer .top-footer + .bottom-footer .bf-gap {
  background-color: #eaeaea;
  height: 1px;
  left: 0;
  margin: auto;
  max-width: 1170px;
  position: absolute;
  right: 0;
  top: 0;
  width: 100%;
}
.site-footer .bottom-footer {
  padding: 31px 0;
  position: relative;
  color: #fff;
}
.site-footer .bottom-footer .footer-bottom-widget {
  margin-bottom: 4px;
}
.site-footer .bottom-footer .footer-bottom-widget ul {
  margin: 0 !important;
}
.site-footer .bottom-footer .footer-bottom-widget ul li {
  display: inline-block;
  line-height: 1;
  padding: 0 12px 0 7px;
  font-size: 13px;
  border-right: 1px solid #9b9b9b;
}
.site-footer .bottom-footer .footer-bottom-widget ul li:first-child {
  padding-left: 0;
}
.site-footer .bottom-footer .footer-bottom-widget ul li:last-child {
  padding-right: 0;
  border: none;
}
.site-footer .bottom-footer .footer-bottom-copyright {
  font-size: 15px;
  color: #fff;
}
.site-footer .bottom-footer .footer-bottom-copyright a {
  color: #fff;
  text-decoration: underline;
}
.site-footer.footer-layout1 .bg-overlay {
  background-color: #1b1a1a;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
@media screen and (min-width: 992px) {
  .site-footer.footer-layout1 .top-footer.custom-width .cms-footer-item.col-xl-3:nth-child(1) {
    flex: 0 0 41.5%;
    max-width: 41.5%;
    padding-right: 100px;
  }
  .site-footer.footer-layout1 .top-footer.custom-width .cms-footer-item.col-xl-3:nth-child(2) {
    flex: 0 0 16.5%;
    max-width: 16.5%;
  }
  .site-footer.footer-layout1 .top-footer.custom-width .cms-footer-item.col-xl-3:nth-child(3) {
    flex: 0 0 22.5%;
    max-width: 22.5%;
  }
  .site-footer.footer-layout1 .top-footer.custom-width .cms-footer-item.col-xl-3:nth-child(4) {
    flex: 0 0 19.5%;
    max-width: 19.5%;
  }
}
.vc_column-inner .cms-contact-info-holder a {
  border-bottom: 1px solid transparent;
  line-height: 1.6;
}
.vc_column-inner .cms-contact-info-holder a:hover {
  border-bottom-color: inherit;
  text-decoration: none;
}
.scroll-top:not(.fixed-bottom) {
  background-color: #1b1a1a;
  bottom: 0;
  opacity: 0;
  visibility: hidden;
  color: #fff;
  height: 45px;
  position: fixed;
  right: 40px;
  text-align: center;
  width: 45px;
  font-size: 22px;
  z-index: 9999;
  -webkit-box-shadow: 6px 6px rgba(0, 0, 0, 0.16);
  -khtml-box-shadow: 6px 6px rgba(0, 0, 0, 0.16);
  -moz-box-shadow: 6px 6px rgba(0, 0, 0, 0.16);
  -ms-box-shadow: 6px 6px rgba(0, 0, 0, 0.16);
  -o-box-shadow: 6px 6px rgba(0, 0, 0, 0.16);
  box-shadow: 6px 6px rgba(0, 0, 0, 0.16);
}
.scroll-top:not(.fixed-bottom):focus, .scroll-top:not(.fixed-bottom):active {
  background-color: #1b1a1a;
  color: #fff;
}
.scroll-top:not(.fixed-bottom):hover {
  background-color: #0e0d0d;
  color: #fff;
}
.scroll-top:not(.fixed-bottom).on {
  visibility: visible;
  opacity: 1;
  bottom: 100px;
}
.scroll-top:not(.fixed-bottom) i {
  left: 0;
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translate(0px, -50%);
  -khtml-transform: translate(0px, -50%);
  -moz-transform: translate(0px, -50%);
  -ms-transform: translate(0px, -50%);
  -o-transform: translate(0px, -50%);
  transform: translate(0px, -50%);
}
.scroll-top:not(.fixed-bottom).default {
  -webkit-border-radius: 45px;
  -khtml-border-radius: 45px;
  -moz-border-radius: 45px;
  -ms-border-radius: 45px;
  -o-border-radius: 45px;
  border-radius: 45px;
  -webkit-box-shadow: none;
  -khtml-box-shadow: none;
  -moz-box-shadow: none;
  -ms-box-shadow: none;
  -o-box-shadow: none;
  box-shadow: none;
}
@media screen and (max-width: 1199px) {
  .top-footer::after {
    display: none;
  }
}
@media screen and (max-width: 991px) {
  .top-footer::after {
    display: none;
  }
  .scroll-top {
    display: none;
  }
  .site-footer .scroll-top {
    display: block;
    width: 45px;
    background-color: #1b1a1a !important;
    -webkit-border-radius: 3px 0 0 0;
    -khtml-border-radius: 3px 0 0 0;
    -moz-border-radius: 3px 0 0 0;
    -ms-border-radius: 3px 0 0 0;
    -o-border-radius: 3px 0 0 0;
    border-radius: 3px 0 0 0;
    text-align: center;
    font-size: 25px;
    color: #fff !important;
    left: auto;
    line-height: 25px;
    opacity: 0;
    visibility: hidden;
    z-index: -9999;
  }
  .site-footer .scroll-top.on {
    opacity: 1;
    visibility: visible;
    z-index: 999;
  }
}
h4.caption {
  display: table;
  padding-right: 5px;
  text-align: right;
  width: 100%;
}
.left {
  float: left;
}
.right {
  float: right;
}
.cms-grid .item-featured {
  overflow: hidden;
}
.cms-grid .item-featured:hover img {
  opacity: 0.9;
  -webkit-transform: scale3d(1.1, 1.1, 1);
  transform: scale3d(1.1, 1.1, 1);
}
.cms-grid .cms-grid-inner {
  position: relative;
}
.cms-grid .grid-item.cms-animated .grid-item-inner {
  animation: 0.65s ease 0s normal forwards 1 running moveUp;
  -webkit-animation: 0.65s ease 0s normal forwards 1 running moveUp;
  -webkit-transform: translateY(200px);
  -khtml-transform: translateY(200px);
  -moz-transform: translateY(200px);
  -ms-transform: translateY(200px);
  -o-transform: translateY(200px);
  transform: translateY(200px);
}
.cms-grid .grid-sizer {
  z-index: -1;
}
.cms-grid .cms-load-more {
  margin-top: 17px;
}
.cms-grid .cms-load-more .btn {
  padding: 0 50px;
}
.cms-grid .cms-load-more span.loading-icon {
  position: absolute;
  display: inline-block;
  line-height: 1;
  top: 50%;
  transform: translateY(-50%);
  right: 25px;
}
.cms-grid .item-title {
  font-size: 24px;
  line-height: 1.33;
}
.cms-grid .item-title a {
  color: inherit;
}
.cms-grid .item-title a:hover {
  color: #1b1a1a;
}
@media screen and (max-width: 991px) {
  .cms-grid .cms-grid-inner {
    margin: 0 -15px !important;
  }
  .cms-grid .cms-grid-inner .grid-item {
    padding: 15px !important;
  }
  .cms-grid .cms-grid-inner .grid-item .grid-item-inner {
    margin-top: 0 !important;
  }
}
.cms-grid .cms-grid-pagination {
  margin-top: 35px;
}
.cms-grid .item-featured a {
  display: block;
  position: relative;
}
.cms-grid .item-featured a img {
  -webkit-transition: all 1s;
  -khtml-transition: all 1s;
  -moz-transition: all 1s;
  -ms-transition: all 1s;
  -o-transition: all 1s;
  transition: all 1s;
}
.grid-filter-wrap {
  margin-bottom: 19px;
}
.grid-filter-wrap .filter-item {
  cursor: pointer;
  display: inline-block;
  font-size: 16px;
  -webkit-transition: all 300ms ease 0ms;
  -khtml-transition: all 300ms ease 0ms;
  -moz-transition: all 300ms ease 0ms;
  -ms-transition: all 300ms ease 0ms;
  -o-transition: all 300ms ease 0ms;
  transition: all 300ms ease 0ms;
  text-transform: uppercase;
  color: #1b1a1a;
  font-weight: bold;
  font-family: "Oswald", sans-serif;
  position: relative;
}
.grid-filter-wrap .filter-item:after {
  content: "";
  position: absolute;
  display: block;
  width: 100%;
  transform: scale(0);
  left: 0;
  bottom: -2px;
  height: 2px;
  background-color: transparent;
  transition: all 300ms ease 0s;
}
.grid-filter-wrap.align-left .filter-item {
  margin-right: 25px;
}
.grid-filter-wrap.align-left .filter-item:last-child {
  margin-right: 0;
}
.grid-filter-wrap.align-right .filter-item {
  margin-left: 25px;
}
.grid-filter-wrap.align-right .filter-item:last-child {
  margin-left: 0;
}
.grid-filter-wrap.align-center span {
  margin: 0 12px;
}
.grid-filter-wrap.filter-secondary span.active, .grid-filter-wrap.filter-secondary span:hover {
  color: #272626;
}
.grid-filter-wrap.filter-secondary span.active:after, .grid-filter-wrap.filter-secondary span:hover:after {
  background-color: #272626;
  transform: scale(1);
}
.grid-filter-wrap.filter-primary .filter-item.active, .grid-filter-wrap.filter-primary .filter-item:hover {
  color: #1b1a1a;
}
.grid-filter-wrap.filter-primary .filter-item.active:after, .grid-filter-wrap.filter-primary .filter-item:hover:after {
  background-color: #1b1a1a;
  transform: scale(1);
}
.select-filter-wrap.nice-select, .select-order-wrap.nice-select {
  min-width: 160px;
  height: 40px;
  line-height: 40px;
  padding: 0 40px 0 21px;
  display: inline-block;
  width: inherit;
  border: none;
  -webkit-border-radius: 4px;
  -khtml-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  -o-border-radius: 4px;
  border-radius: 4px;
  -webkit-box-shadow: 0 2px 4px rgba(0, 0, 0, 0.24);
  -khtml-box-shadow: 0 2px 4px rgba(0, 0, 0, 0.24);
  -moz-box-shadow: 0 2px 4px rgba(0, 0, 0, 0.24);
  -ms-box-shadow: 0 2px 4px rgba(0, 0, 0, 0.24);
  -o-box-shadow: 0 2px 4px rgba(0, 0, 0, 0.24);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.24);
  font-size: 15px;
}
.select-filter-wrap.nice-select:after, .select-order-wrap.nice-select:after {
  content: "\f2f9";
  right: 15px;
  font-size: 15px;
}
.select-order-wrap {
  margin-left: 15px;
}
.cms-grid-header {
  align-items: center;
  display: flex;
  display: -webkit-flex;
  display: -ms-flex;
  flex-wrap: nowrap;
  margin-bottom: 45px;
}
.cms-grid-header > h3 {
  margin: 0;
  font-size: 40px;
  letter-spacing: 0.03em;
  flex-grow: 1;
  -webkit-flex-grow: 1;
  -ms-flex-grow: 1;
  -o-flex-grow: 1;
}
@media screen and (max-width: 991px) {
  .cms-grid-header {
    display: block;
  }
  .cms-grid-header > h3 {
    margin-bottom: 25px;
  }
}
@media screen and (max-width: 991px) {
  .cms-grid-header .nice-select {
    margin: 15px 0 0;
  }
}
.item-order {
  position: absolute;
  opacity: 0;
  visibility: hidden;
}
.owl-carousel .owl-nav .owl-prev, .owl-carousel .owl-nav .owl-next {
  position: absolute;
  width: 50px;
  height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #1b1a1a;
  top: 50%;
  transform: translateY(-50%);
  transition: all 300ms ease 0s;
}
.owl-carousel .owl-nav .owl-prev:hover, .owl-carousel .owl-nav .owl-next:hover {
  opacity: 0.9;
}
@media screen and (max-width: 767px) {
  .owl-carousel .owl-nav .owl-prev, .owl-carousel .owl-nav .owl-next {
    width: 35px !important;
    height: 35px !important;
  }
}
.owl-carousel .owl-nav .owl-prev {
  left: 50px;
}
@media screen and (max-width: 767px) {
  .owl-carousel .owl-nav .owl-prev {
    left: 15px !important;
    top: 50% !important;
  }
}
.owl-carousel .owl-nav .owl-next {
  right: 50px;
}
@media screen and (max-width: 767px) {
  .owl-carousel .owl-nav .owl-next {
    right: 15px !important;
    top: 50% !important;
  }
}
.owl-carousel .owl-dots {
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: center;
  margin-top: 10px;
}
.owl-carousel .owl-dots .owl-dot {
  background-color: #8d8c8c;
  display: inline-block;
  width: 8px;
  height: 8px;
  margin: 0 5px;
}
.owl-carousel .owl-dots .owl-dot.active {
  background-color: #1b1a1a;
  width: 10px;
  height: 10px;
}
.owl-carousel .owl-dots .owl-dot span {
  display: none;
}
.owl-carousel.hide-nav .owl-nav {
  display: none;
}
.owl-carousel .owl-stage-outer {
  padding: 30px;
  margin: 0 -30px;
}
.owl-carousel .owl-stage-outer .owl-item {
  opacity: 0;
  visibility: hidden;
  transition: all 350ms ease 0s;
}
.owl-carousel .owl-stage-outer .owl-item.active {
  opacity: 1;
  visibility: visible;
}
.cms-carousel-filter {
  margin-bottom: 25px;
}
.cms-carousel-filter .cms-filter-item {
  font-size: 24px;
  line-height: normal;
  color: rgba(0, 0, 0, 0.33);
  -webkit-transition: all 300ms linear 0ms;
  -khtml-transition: all 300ms linear 0ms;
  -moz-transition: all 300ms linear 0ms;
  -ms-transition: all 300ms linear 0ms;
  -o-transition: all 300ms linear 0ms;
  transition: all 300ms linear 0ms;
  margin: 0 38px 10px 0;
  display: inline-block;
}
.cms-carousel-filter .cms-filter-item.cms-filter-active, .cms-carousel-filter .cms-filter-item:hover {
  color: #1b1a1a;
  cursor: pointer;
}
@keyframes load_zoom {
  /* Page Loading */
  0% {
    opacity: 1;
    transform: scale(1);
  }
  20% {
    opacity: 1;
    transform: scale(0.7);
  }
  40% {
    opacity: 1;
    transform: scale(0.5);
  }
  60% {
    opacity: 1;
    transform: scale(0.3);
  }
  80% {
    opacity: 1;
    transform: scale(0.1);
  }
  100% {
    opacity: 1;
    transform: scale(0);
  }
}
#cms-loadding, #apply-loadding {
  background-color: #1b1a1a;
  height: 100%;
  position: fixed;
  width: 100%;
  z-index: 999999;
  top: 0;
  left: 0;
}
#cms-loadding .loading-center-absolute, #apply-loadding .loading-center-absolute {
  position: absolute;
  width: 3000px;
  height: 3000px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
}
#cms-loadding .loading-center-absolute .mouse-loader, #apply-loadding .loading-center-absolute .mouse-loader {
  width: 100%;
  height: 100%;
  border-radius: 100%;
  opacity: 0;
  background-color: #1b1a1a;
  transition: all 600ms ease 0s;
}
#cms-loadding.load-ok, #apply-loadding.load-ok {
  background-color: transparent;
}
#cms-loadding.load-ok .mouse-loader, #apply-loadding.load-ok .mouse-loader {
  animation: load_zoom 0.6s;
}
#apply-loadding {
  background-color: rgba(27, 26, 26, 0.5);
}
.nav-tabs.cms-tabs {
  border: none;
  margin-bottom: 10px;
}
.nav-tabs.cms-tabs .nav-item {
  margin: 0 0 10px 26px;
}
.nav-tabs.cms-tabs .nav-item:first-child {
  margin-left: 0;
}
.nav-tabs.cms-tabs .nav-item a {
  margin: 0;
  border: none;
  padding: 0;
  font-size: 13px;
  color: rgba(39, 38, 38, 0.33);
  font-family: ;
}
.nav-tabs.cms-tabs .nav-item a.active {
  color: #272626;
}
.entry-footer .entry-edit-link {
  display: none;
}
div.pp_overlay {
  z-index: 9999 !important;
  opacity: 0.85 !important;
}
.cms-close {
  display: block;
  height: 22px;
  line-height: 22px;
  width: 22px;
  background-color: #eee;
  -webkit-border-radius: 2px;
  -khtml-border-radius: 2px;
  -moz-border-radius: 2px;
  -ms-border-radius: 2px;
  -o-border-radius: 2px;
  border-radius: 2px;
  right: 10px;
  top: 10px;
  opacity: 0;
}
.cms-close:before, .cms-close:after {
  background-color: #272626;
  width: 10px;
  top: 11px;
  z-index: 999;
}
.cms-close:hover {
  background-color: #1b1a1a;
}
.cms-close:hover:before, .cms-close:hover:after {
  background-color: #fff;
}
.cms-modal {
  background-color: #1b1a1a;
  height: 100%;
  left: 0;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 9999;
  -webkit-transform: translateX(100%);
  -khtml-transform: translateX(100%);
  -moz-transform: translateX(100%);
  -ms-transform: translateX(100%);
  -o-transform: translateX(100%);
  transform: translateX(100%);
  opacity: 0;
  -webkit-transition: all 500ms ease-in-out;
  -khtml-transition: all 500ms ease-in-out;
  -moz-transition: all 500ms ease-in-out;
  -ms-transition: all 500ms ease-in-out;
  -o-transition: all 500ms ease-in-out;
  transition: all 500ms ease-in-out;
}
.cms-modal .cms-modal-inner {
  padding: 0 15px;
  max-width: 800px;
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%) scaleX(0);
  -khtml-transform: translate(-50%, -50%) scaleX(0);
  -moz-transform: translate(-50%, -50%) scaleX(0);
  -ms-transform: translate(-50%, -50%) scaleX(0);
  -o-transform: translate(-50%, -50%) scaleX(0);
  transform: translate(-50%, -50%) scaleX(0);
  position: relative;
  -webkit-transition: all 500ms ease-in-out;
  -khtml-transition: all 500ms ease-in-out;
  -moz-transition: all 500ms ease-in-out;
  -ms-transition: all 500ms ease-in-out;
  -o-transition: all 500ms ease-in-out;
  transition: all 500ms ease-in-out;
  transition-delay: 500ms;
}
.cms-modal.open {
  -webkit-transform: translateX(0%);
  -khtml-transform: translateX(0%);
  -moz-transform: translateX(0%);
  -ms-transform: translateX(0%);
  -o-transform: translateX(0%);
  transform: translateX(0%);
  opacity: 1;
}
.cms-modal.open .cms-modal-inner {
  -webkit-transform: translate(-50%, -50%) scaleX(1);
  -khtml-transform: translate(-50%, -50%) scaleX(1);
  -moz-transform: translate(-50%, -50%) scaleX(1);
  -ms-transform: translate(-50%, -50%) scaleX(1);
  -o-transform: translate(-50%, -50%) scaleX(1);
  transform: translate(-50%, -50%) scaleX(1);
}
.cms-modal.remove {
  -webkit-transform: translateX(100%);
  -khtml-transform: translateX(100%);
  -moz-transform: translateX(100%);
  -ms-transform: translateX(100%);
  -o-transform: translateX(100%);
  transform: translateX(100%);
  opacity: 0;
  transition-delay: 500ms;
}
.cms-modal.remove .cms-modal-inner {
  -webkit-transform: translate(-50%, -50%) scaleX(0);
  -khtml-transform: translate(-50%, -50%) scaleX(0);
  -moz-transform: translate(-50%, -50%) scaleX(0);
  -ms-transform: translate(-50%, -50%) scaleX(0);
  -o-transform: translate(-50%, -50%) scaleX(0);
  transform: translate(-50%, -50%) scaleX(0);
  transition-delay: 0ms;
}
.cms-modal .cms-modal-inner .cms-modal-content .cms-search-form .search-submit {
  position: absolute;
  font-size: 27px;
  line-height: 60px;
  left: 15px;
  padding: 0;
  top: 50%;
  transform: translateY(-58%);
  color: #fff;
  background: transparent;
  border: none;
}
.cms-modal .cms-modal-inner .cms-modal-content .cms-search-form input {
  background: transparent;
  border: none;
  border-bottom: 2px solid #fff;
  color: #fff;
  font-size: 35px;
  font-weight: normal;
  padding-left: 45px;
  height: 86px;
}
@media screen and (max-width: 575px) {
  .cms-modal .cms-modal-inner .cms-modal-content .cms-search-form input {
    font-size: 22px;
    height: 60px;
  }
}
.cms-modal .cms-close-search {
  position: absolute;
  top: 10%;
  right: 50px;
  width: 50px;
  height: 50px;
  line-height: 50px;
  background: transparent;
  text-align: center;
  font-size: 25px;
  cursor: pointer;
  color: #fff;
  transition: all 300ms ease 0s;
}
.cms-modal .cms-close-search:hover {
  background: #1b1a1a;
  color: #fff;
}
.cms-modal .cms-close {
  position: absolute;
  top: 30px;
  right: 30px;
  display: none;
}
.cms-modal .cms-close:before, .cms-modal .cms-close:after {
  background-color: #fff;
}
.cms-modal .cms-close:hover:before, .cms-modal .cms-close:hover:after {
  background-color: #1b1a1a;
}
@media screen and (max-width: 991px) {
  .cms-modal .cms-close {
    display: block;
  }
}
.cms-modal .cms-contact-form-footer {
  text-align: center;
  padding-top: 35px;
  color: #fff;
}
.cms-modal .cms-contact-form-footer > h3 {
  color: #fff;
  font-size: 27px;
  line-height: 32px;
  margin-bottom: 10px;
}
.cms-modal .cms-contact-form-footer > h6 {
  font-size: 18px;
  line-height: 32px;
  color: rgba(255, 255, 255, 0.87);
}
.cms-modal.cms-modal-contact-form {
  cursor: zoom-out;
}
.cms-modal.cms-modal-contact-form .cms-modal-inner {
  cursor: auto;
}
.cms-modal.cms-modal-contact-form .cms-modal-inner .el-title {
  color: #fff;
  margin-bottom: 30px;
}
.cms-modal.cms-modal-contact-form .cms-modal-inner label, .cms-modal.cms-modal-contact-form .cms-modal-inner h1, .cms-modal.cms-modal-contact-form .cms-modal-inner h2, .cms-modal.cms-modal-contact-form .cms-modal-inner h3, .cms-modal.cms-modal-contact-form .cms-modal-inner h4, .cms-modal.cms-modal-contact-form .cms-modal-inner h5, .cms-modal.cms-modal-contact-form .cms-modal-inner h6 {
  color: #fff;
}
.nav-tabs-none {
  border: none;
}
.nav-tabs-none li.nav-item {
  margin: 0;
}
.nav-tabs-none li.nav-item a.nav-link {
  border: none;
  padding: 0;
}
.rev_slider_wrapper .custom .tp-bullet {
  height: 11px;
  width: 11px;
  border: 1px solid #fff;
  -webkit-border-radius: 11px;
  -khtml-border-radius: 11px;
  -moz-border-radius: 11px;
  -ms-border-radius: 11px;
  -o-border-radius: 11px;
  border-radius: 11px;
  background: none;
}
.rev_slider_wrapper .custom .tp-bullet.selected {
  background-color: #fff;
}
.slick-slider .cms-slick-prev, .slick-slider .cms-slick-next {
  position: absolute;
  display: inline-flex;
  height: 42px;
  right: -45px;
  z-index: 99;
}
.slick-slider .cms-slick-prev {
  bottom: 50%;
  border-bottom: 1px solid #9b9b9b;
}
.slick-slider .cms-slick-next {
  border-top: 1px solid #9b9b9b;
  top: 50%;
  align-items: flex-end;
}
.primary-menu-not-set {
  line-height: 100px;
  margin-bottom: 0;
}
.primary-menu-not-set a {
  color: #1b1a1a;
}
.slide-nav-wrapper {
  position: fixed;
  top: 0;
  right: -15px;
  height: 100%;
  z-index: 999;
  color: #f9f9f9;
  font-size: 15px;
  -webkit-transition: -webkit-transform 600ms cubic-bezier(0.77, 0, 0.175, 1);
  -moz-transition: transform 600ms cubic-bezier(0.77, 0, 0.175, 1);
  -o-transition: -o-transform 600ms cubic-bezier(0.77, 0, 0.175, 1);
  transition: transform 600ms cubic-bezier(0.77, 0, 0.175, 1);
  -webkit-transform: translate(470px, 0px);
  -ms-transform: translate(470px, 0px);
  transform: translate(470px, 0px);
  -o-transform: translate(470px, 0px);
  -webkit-backface-visibility: hidden;
  -webkit-font-smoothing: subpixel-antialiased;
  -webkit-overflow-scrolling: touch;
  max-width: 470px;
  padding: 100px;
  box-sizing: border-box;
  background: #161616;
  overflow-y: scroll;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
}
@media screen and (max-width: 575px) {
  .slide-nav-wrapper {
    padding: 100px 30px;
  }
}
.slide-nav-wrapper .cms-close-slide {
  position: absolute;
  top: 50px;
  right: 42px;
  width: 30px;
  height: 30px;
  line-height: 33px;
  background: transparent;
  text-align: center;
  font-size: 25px;
  cursor: pointer;
  color: #fff;
  transition: all 300ms ease 0s;
}
.slide-nav-wrapper .cms-close-slide:hover {
  -webkit-transform: rotate(90deg);
  -moz-transform: rotate(90deg);
  transform: rotate(90deg);
}
@media screen and (max-width: 767px) {
  .slide-nav-wrapper .cms-close-slide {
    top: 80px;
  }
}
.slide-nav-wrapper .slide-logo-wrap {
  margin-bottom: 40px;
}
.slide-nav-wrapper .slide-logo-wrap img {
  max-width: 93px;
}
.slide-nav-wrapper .slide-desc {
  margin-bottom: 35px;
}
.slide-nav-wrapper .slide-instagram {
  margin-bottom: 85px;
}
.slide-nav-wrapper .slide-button {
  margin-top: 35px;
}
.slide-nav-wrapper .slide-button a {
  display: block;
  width: 100%;
  font-size: 14px;
  text-transform: uppercase;
  font-family: 'Oswald', sans-serif;
  font-weight: bold;
  color: #fff;
  height: 50px;
  line-height: 46px;
  text-align: center;
  border: 2px solid #fff;
}
.slide-nav-wrapper .cms-social-media {
  margin-top: 35px;
}
.slide-nav-wrapper .slide-contact-phone a:hover, .slide-nav-wrapper .slide-contact-email a:hover {
  -webkit-box-shadow: inset 0 0 0 rgba(0, 0, 0, 0), 0 1px 0 #fff;
  box-shadow: inset 0 0 0 rgba(0, 0, 0, 0), 0 1px 0 #fff;
}
body.js_nav .slide-nav-wrapper {
  -webkit-transform: translate(0px, 0px);
  -moz-transform: translate(0px, 0px);
  transform: translate(0px, 0px);
}
.slide-instagram .col-img-4 {
  float: left;
  width: 33.33333%;
}
.slide-instagram .col-img-4 a {
  display: block;
  position: relative;
}
.slide-instagram .col-img-4 a:after {
  content: "\f06e";
  opacity: 0;
  -webkit-transition: all ease-in-out 0.3s;
  -khtml-transition: all ease-in-out 0.3s;
  -moz-transition: all ease-in-out 0.3s;
  -ms-transition: all ease-in-out 0.3s;
  -o-transition: all ease-in-out 0.3s;
  transition: all ease-in-out 0.3s;
  font-family: FontAwesome;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  width: calc(100% - 20px);
  height: calc(100% - 20px);
  color: #fff;
  top: 10px;
  left: 10px;
  background: #1b1a1a;
  z-index: 9;
}
.slide-instagram .col-img-4 a:hover:after {
  opacity: 0.7;
}
.slide-instagram .col-img-4 img {
  width: 100%;
}
.button-menu {
  display: block;
  position: absolute;
  top: 0;
  right: 50px;
  padding: 1em;
  z-index: 1051;
}
.button-menu i {
  display: block;
  float: left;
  transition: opacity ease-in 0.3s;
  opacity: 1;
}
.button-menu i + i {
  margin-left: -1em;
  opacity: 0;
  color: #fff;
}
.modal.modal-popup-menu {
  padding: 0 !important;
}
.modal.modal-popup-menu .modal-dialog {
  margin: 0;
  width: 100%;
  max-width: 100%;
  min-height: 100%;
  background: #161616;
}
.modal.modal-popup-menu .modal-dialog .modal-content {
  border: 0;
  border-radius: 0;
  box-shadow: none;
  background: transparent;
  position: absolute;
  width: 100%;
  height: 100%;
}
.modal.modal-popup-menu .modal-dialog .modal-content .cms-close-popup-menu {
  position: absolute;
  top: 65px;
  right: 105px;
  width: 30px;
  height: 30px;
  line-height: 33px;
  background: transparent;
  text-align: center;
  font-size: 25px;
  cursor: pointer;
  color: #fff;
  transition: all 300ms ease 0s;
}
.modal.modal-popup-menu .modal-dialog .modal-content .cms-close-popup-menu:hover {
  -webkit-transform: rotate(90deg);
  -moz-transform: rotate(90deg);
  transform: rotate(90deg);
}
@media screen and (max-width: 767px) {
  .modal.modal-popup-menu .modal-dialog .modal-content .cms-close-popup-menu {
    top: 80px;
    right: 50px;
  }
}
.modal.modal-popup-menu .modal-dialog .modal-content .modal-content-inner {
  position: absolute;
  left: 100px;
  top: 180px;
}
@media screen and (max-width: 575px) {
  .modal.modal-popup-menu .modal-dialog .modal-content .modal-content-inner {
    left: 30px;
  }
}
.modal.modal-popup-menu .modal-dialog .modal-content .modal-content-inner ul {
  display: flex;
  flex-direction: column;
}
.modal.modal-popup-menu .modal-dialog .modal-content .modal-content-inner ul a {
  color: #fff;
  text-decoration: none;
  font-size: 56px;
  line-height: 94px;
  font-weight: bold;
  font-family: 'Oswald', sans-serif;
  text-transform: uppercase;
}
@media (max-width: 480px) {
  .modal.modal-popup-menu .modal-dialog .modal-content .modal-content-inner ul a {
    font-size: 30px;
    line-height: 60px;
  }
}
.modal.modal-popup-menu .modal-dialog .modal-content .modal-content-inner ul a:hover {
  opacity: 0.7;
}
.modal.modal-popup-menu .modal-dialog .modal-content .modal-content-inner ul.sub-menu {
  margin-left: 30px;
  opacity: 0;
  visibility: hidden;
  display: none;
}
.modal.modal-popup-menu .modal-dialog .modal-content .modal-content-inner ul.sub-menu li a {
  font-size: 30px;
  line-height: 50px;
}
@media screen and (max-width: 575px) {
  .modal.modal-popup-menu .modal-dialog .modal-content .modal-content-inner ul.sub-menu li a {
    font-size: 16px;
    line-height: 35px;
  }
}
.modal.modal-popup-menu .modal-dialog .modal-content .modal-content-inner li.menu-item-has-children.active ul.sub-menu {
  opacity: 1;
  visibility: visible;
}
.modal.modal-popup-menu .modal-dialog .modal-content .modal-content-inner .modal-contact {
  color: #fff;
  margin-top: 72px;
}
.modal.modal-popup-menu .modal-dialog .modal-content .modal-content-inner .cms-social-media {
  margin-top: 19px;
}
.modal.modal-popup-menu .modal-dialog {
  transform: translateX(-100%);
  transition: transform 0.5s ease-out;
  opacity: 1;
}
.modal.modal-popup-menu .modal-dialog .modal-content {
  opacity: 1;
}
.modal.modal-popup-menu .modal-dialog .modal-content ul li {
  transform: translateX(-100%);
  transition: transform 0.5s ease-out;
}
.modal.modal-popup-menu .modal-dialog .modal-content ul li:nth-child(1) {
  transition-delay: 0.16s;
}
.modal.modal-popup-menu .modal-dialog .modal-content ul li:nth-child(2) {
  transition-delay: 0.22s;
}
.modal.modal-popup-menu .modal-dialog .modal-content ul li:nth-child(3) {
  transition-delay: 0.28s;
}
.modal.modal-popup-menu .modal-dialog .modal-content ul li:nth-child(4) {
  transition-delay: 0.34s;
}
.modal.modal-popup-menu .modal-dialog .modal-content ul li:nth-child(5) {
  transition-delay: 0.4s;
}
.modal.modal-popup-menu .modal-dialog .modal-content ul li:nth-child(6) {
  transition-delay: 0.46s;
}
.modal.modal-popup-menu .modal-dialog .modal-content ul li:nth-child(7) {
  transition-delay: 0.52s;
}
.modal.modal-popup-menu .modal-dialog .modal-content ul li:nth-child(8) {
  transition-delay: 0.58s;
}
.modal.modal-popup-menu .modal-dialog .modal-content ul li:nth-child(9) {
  transition-delay: 0.64s;
}
.modal.modal-popup-menu .modal-dialog .modal-content ul li:nth-child(10) {
  transition-delay: 0.7s;
}
.modal.modal-popup-menu .modal-dialog .modal-content .modal-contact {
  transform: translateX(-100%);
  transition: transform 0.3s ease-out;
  transition-delay: 0.4s;
}
.modal.modal-popup-menu.show .modal-dialog {
  transform: translateX(0%);
  opacity: 1;
}
.modal.modal-popup-menu.show .modal-dialog .modal-content {
  opacity: 1;
}
.modal.modal-popup-menu.show .modal-dialog .modal-content ul li {
  transform: translateX(0);
}
.modal.modal-popup-menu.show .modal-dialog .modal-content .modal-contact {
  transform: translateX(0);
}
@media screen and (max-width: 767px) {
  .vc_column_container > .vc_column-inner {
    padding-left: 15px !important;
    padding-right: 15px !important;
  }
}
body img.mfp-img {
  padding: 0 !important;
}
body .mfp-image-holder .mfp-close, body .mfp-iframe-holder .mfp-close {
  line-height: 40px;
  padding: 0;
  right: 0;
  text-align: center;
  top: -44px;
  width: 40px;
  -webkit-border-radius: 2px 2px 0 0;
  -khtml-border-radius: 2px 2px 0 0;
  -moz-border-radius: 2px 2px 0 0;
  -ms-border-radius: 2px 2px 0 0;
  -o-border-radius: 2px 2px 0 0;
  border-radius: 2px 2px 0 0;
}
body .mfp-bottom-bar {
  margin-top: 0;
}
.mfp-wrap .mfp-container .mfp-arrow {
  background-color: #1b1a1a;
}
.mfp-wrap .mfp-container .mfp-arrow:before {
  border: none;
}
@media screen and (min-width: 1200px) {
  .mfp-wrap .mfp-container {
    padding: 0 120px;
  }
}
.site-social ul {
  display: flex;
  margin: 0;
  align-items: center;
}
.site-social ul li {
  margin-left: 20px;
}
.site-social ul li a i {
  font-size: 17px;
}
.site-social ul li a:hover {
  color: #1b1a1a;
}
.site-social.site-social--light a {
  color: #f9f9f9;
}
.site-social.site-social--dark a {
  color: #333;
}
.wpb_revslider_element.wpb_content_element {
  margin-bottom: 0;
}
.grid-item-inner .item-featured {
  position: relative;
}
.cms-heading .heading-tag {
  text-transform: unset;
  color: #1b1a1a;
}
.cms-heading.layout2 .subtitle p {
  font-weight: bold;
  letter-spacing: 0;
  color: #272626;
}
.cms-heading.layout2 .title-heading .heading-tag {
  margin-bottom: 0px;
}
.cms-button-wrapper {
  /*------------------------------------*\
    #Animation
\*------------------------------------*/
}
.cms-button-wrapper.btn__linktext-wrap {
  height: 55px;
}
@keyframes pulses {
  0% {
    width: 103px;
    height: 103px;
  }
  100% {
    width: 111px;
    height: 111px;
    opacity: 0;
  }
}
@keyframes pulses-small {
  /*Video Popup*/
  0% {
    width: 68px;
    height: 68px;
  }
  100% {
    width: 74px;
    height: 74px;
    opacity: 0;
  }
}
.cms-video-popup-content {
  position: relative;
  z-index: 9;
  text-align: center;
}
.cms-video-popup-content .play-video-button {
  display: flex;
  align-items: center;
}
.cms-video-popup-content .play-video-button .icon {
  position: relative;
}
.cms-video-popup-content .play-video-button .icon .fa {
  display: flex;
  position: relative;
  align-items: center;
  justify-content: center;
  margin: auto;
  background: #1b1a1a;
  -webkit-border-radius: 50%;
  -khtml-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  border-radius: 50%;
  color: #fff;
}
.cms-video-popup-content .play-video-button .icon .fa:after {
  content: '';
  border: 2px solid rgba(27, 26, 26, 0.6);
  display: block;
  position: absolute;
  -webkit-border-radius: 50%;
  -khtml-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  border-radius: 50%;
}
.cms-video-popup-content .play-video-button .icon .radar:after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -khtml-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  display: block;
  border: 2px solid #1b1a1a;
  -webkit-border-radius: 50%;
  -khtml-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  border-radius: 50%;
  animation: pulses-small;
  animation-delay: 0s;
  animation-iteration-count: infinite;
  animation-duration: 1s;
}
.cms-video-popup-content .play-video-button .icon.size-default .fa {
  width: 76px;
  height: 76px;
}
.cms-video-popup-content .play-video-button .icon.size-default .fa:after {
  width: 92px;
  height: 92px;
  left: -8px;
  top: -8px;
}
.cms-video-popup-content .play-video-button .icon.size-default .radar:after {
  animation: pulses;
  animation-delay: 0s;
  animation-iteration-count: infinite;
  animation-duration: 1s;
}
@media screen and (max-width: 575px) {
  .cms-video-popup-content .play-video-button .icon.size-default .fa {
    width: 50px;
    height: 50px;
  }
  .cms-video-popup-content .play-video-button .icon.size-default .fa:before {
    font-size: 12px;
    margin-left: 2px;
  }
  .cms-video-popup-content .play-video-button .icon.size-default .fa:after {
    width: 60px;
    height: 60px;
    left: -5px;
    top: -5px;
  }
  .cms-video-popup-content .play-video-button .icon.size-default .radar:after {
    animation: pulses-small;
    animation-delay: 0s;
    animation-iteration-count: infinite;
    animation-duration: 1s;
  }
}
.cms-video-popup-content .play-video-button .icon.size-small .fa {
  width: 50px;
  height: 50px;
}
.cms-video-popup-content .play-video-button .icon.size-small .fa:before {
  font-size: 12px;
  margin-left: 2px;
}
.cms-video-popup-content .play-video-button .icon.size-small .fa:after {
  width: 60px;
  height: 60px;
  left: -5px;
  top: -5px;
}
.cms-video-popup-content .play-video-button .icon.size-small .radar:after {
  animation: pulses-small;
  animation-delay: 0s;
  animation-iteration-count: infinite;
  animation-duration: 1s;
}
.cms-video-popup-content .play-video-button.has-image {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -khtml-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.cms-video-popup-content .play-video-button.white-button .fa {
  background: #fff;
  color: #1b1a1a;
}
.cms-video-popup-content .play-video-button.white-button .fa:after {
  border-color: #fff;
}
.cms-video-popup-content .play-video-button.white-button .radar:after {
  border-color: #fff;
}
.cms-video-popup-content .button-text {
  color: #fff;
  font-weight: bold;
  margin: 0 0 0 20px;
}
@media screen and (max-width: 767px) {
  .cms-video-popup-content .button-text {
    display: none;
  }
}
.cms-testimonial-title h2 {
  font-size: 19px;
  font-weight: bold;
  margin-bottom: -20px;
}
.cms-testimonial-carousel .testimonials-icon i {
  transform: rotate(180deg);
}
.cms-testimonial-carousel.layout1 {
  background-image: url(../images/quote-icon.png);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}
.cms-testimonial-carousel.layout1 .owl-nav .owl-prev, .cms-testimonial-carousel.layout1 .owl-nav .owl-next {
  width: 30px;
  height: 30px;
  background-color: transparent;
}
@media screen and (max-width: 767px) {
  .cms-testimonial-carousel.layout1 .owl-nav .owl-prev, .cms-testimonial-carousel.layout1 .owl-nav .owl-next {
    display: none;
  }
}
.cms-testimonial-carousel.layout1 .owl-nav .owl-prev {
  left: -92px;
  top: 31%;
}
@media screen and (max-width: 991px) {
  .cms-testimonial-carousel.layout1 .owl-nav .owl-prev {
    left: 0;
  }
}
.cms-testimonial-carousel.layout1 .owl-nav .owl-next {
  right: -92px;
  top: 31%;
}
@media screen and (max-width: 991px) {
  .cms-testimonial-carousel.layout1 .owl-nav .owl-next {
    right: 0;
  }
}
.cms-testimonial-carousel.layout1 .cms-testimonial-content {
  position: relative;
  margin: auto;
  padding: 20px 0 0;
  text-align: center;
}
@media screen and (max-width: 991px) {
  .cms-testimonial-carousel.layout1 .cms-testimonial-content {
    padding: 20px 55px;
  }
}
@media screen and (max-width: 767px) {
  .cms-testimonial-carousel.layout1 .cms-testimonial-content {
    padding: 20px 15px;
  }
}
.cms-testimonial-carousel.layout1 .cms-testimonial-content .testimonials-icon {
  position: absolute;
  left: 16%;
  top: -65px;
}
.cms-testimonial-carousel.layout1 .cms-testimonial-content .testimonials-icon i {
  font-size: 171px;
}
.cms-testimonial-carousel.layout1 .cms-testimonial-content .content {
  position: relative;
  font-size: 22px;
  line-height: 32px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 31px;
}
.cms-testimonial-carousel.layout1 .cms-testimonial-content img {
  max-width: 50px;
  border-radius: 50px;
  margin: 0 auto;
}
.cms-testimonial-carousel.layout1 .cms-testimonial-content p.name {
  font-size: 17px;
  font-weight: bold;
  margin-top: 14px;
  margin-bottom: 2px;
  font-family: 'Oswald', sans-serif;
}
.cms-testimonial-carousel.layout1 .cms-testimonial-content p.position {
  font-size: 15px;
  font-weight: 400;
  margin-bottom: 0;
}
.cms-accordion .card {
  border: none;
  border-bottom: 2px solid #1b1a1a;
  border-radius: 0;
  box-shadow: none;
  background: transparent;
}
.cms-accordion .card:first-child {
  margin-top: 0;
}
.cms-accordion .card:last-child {
  margin-bottom: 0;
}
.cms-accordion .card .card-header {
  background: transparent;
  padding: 0;
  border: none;
  border-radius: 0;
}
.cms-accordion .card .card-header .collapse-item {
  display: block;
  font-size: 18px;
  padding: 21px 10px 25px 0;
  position: relative;
  transition: all 0.3s ease 0s;
  cursor: pointer;
  font-weight: bold;
  font-family: 'Oswald', sans-serif;
}
.cms-accordion .card .card-header .collapse-item:after {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  content: "\f278";
  font-family: "Material-Design-Iconic-Font";
  transition: all 300ms linear 0s;
  font-size: 16px;
  background: transparent;
  text-align: center;
}
.cms-accordion .card .card-header .collapse-item[aria-expanded="true"]:after {
  content: "\f273";
}
.cms-accordion .card .card-body {
  border: none;
  padding: 0;
  box-shadow: none;
  height: auto;
  background: transparent none repeat scroll 0 0;
  position: relative;
  margin-top: -5px;
}
.cms-accordion .card .card-body p {
  margin-bottom: 24px;
}
.cms-portfolio-grid.default .grid-item-inner .item-holder {
  padding-top: 22px;
}
.cms-portfolio-grid.default .grid-item-inner .item-holder .cat {
  color: #272626;
}
.cms-portfolio-grid.default .grid-item-inner .item-holder .cat a {
  font-size: 15px;
  margin-bottom: 4px;
  display: inline-block;
}
.cms-portfolio-grid.default .grid-item-inner .item-holder .cat a:hover {
  -webkit-box-shadow: inset 0 0 0 rgba(0, 0, 0, 0), 0 1px 0 #272626;
  box-shadow: inset 0 0 0 rgba(0, 0, 0, 0), 0 1px 0 #272626;
}
.cms-portfolio-grid.default .grid-item-inner .item-holder h5 {
  font-weight: bold;
  line-height: 28px;
  margin-bottom: 8px;
}
.cms-portfolio-grid.default .grid-item-inner .ripple-wrap {
  position: absolute;
  z-index: 999;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
}
.cms-portfolio-grid.default .grid-item-inner .ripple-wrap canvas {
  cursor: pointer;
}
.cms-portfolio-grid.default .grid-item-inner .item-featured a.ripple img {
  opacity: 0;
}
.cms-portfolio-grid.default .cms-load-more {
  margin-top: 25px;
}
.cms-portfolio-grid.grid-gallery .item-featured {
  cursor: pointer;
}
.cms-portfolio-grid.grid-gallery .item-featured img {
  transform: scale(1);
}
.cms-portfolio-grid.grid-gallery .item-featured .item-holder {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  background: #1b1a1a;
  color: #fff;
  padding: 35px 40px;
  opacity: 0;
  transition: all 300ms ease-out 0s;
  overflow: hidden;
}
.cms-portfolio-grid.grid-gallery .item-featured .item-holder .item-holder-inner {
  transition: all 150ms ease-out 0s;
  opacity: 0;
}
.cms-portfolio-grid.grid-gallery .item-featured .item-holder .item-holder-inner h5 {
  color: #fff;
  margin-bottom: 11px;
}
.cms-portfolio-grid.grid-gallery .item-featured .item-holder .item-holder-inner .cat a {
  font-size: 15px;
  color: #fff;
  display: inline-block;
  line-height: 18px;
}
.cms-portfolio-grid.grid-gallery .item-featured .item-holder .item-holder-inner .cat a:hover {
  -webkit-box-shadow: inset 0 0 0 rgba(0, 0, 0, 0), 0 1px 0 #fff;
  box-shadow: inset 0 0 0 rgba(0, 0, 0, 0), 0 1px 0 #fff;
}
.cms-portfolio-grid.grid-gallery .item-featured:hover .item-holder {
  opacity: 1;
}
.cms-portfolio-grid.grid-gallery .item-featured:hover .item-holder .item-holder-inner {
  opacity: 1;
}
.cms-portfolio-grid.grid-gallery .cms-load-more {
  height: 50px;
  margin-top: 14px;
}
.cms-portfolio-grid.grid-gallery .cms-load-more .btn {
  background: transparent;
  color: #1b1a1a;
  border: none;
  border-bottom: 2px solid #1b1a1a;
  padding: 0;
  line-height: 32px;
  cursor: pointer;
  transition: all 300ms ease 200ms;
}
.cms-portfolio-grid.grid-gallery .cms-load-more .btn span.loading-icon {
  display: none;
}
.cms-portfolio-grid.grid-gallery .cms-load-more .btn:before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 0;
  border-left: 2px solid #1b1a1a;
  border-right: 2px solid #1b1a1a;
  transition: all 300ms ease 200ms;
}
.cms-portfolio-grid.grid-gallery .cms-load-more .btn:after {
  content: '';
  position: absolute;
  right: 0;
  top: 0;
  width: 0;
  border-top: 2px solid #1b1a1a;
  transition: all 300ms ease 0s;
}
.cms-portfolio-grid.grid-gallery .cms-load-more .btn:hover {
  padding: 0 50px;
  line-height: 48px;
  margin: 0;
  transition: all 300ms ease 0s;
}
.cms-portfolio-grid.grid-gallery .cms-load-more .btn:hover span.loading-icon {
  display: inline-block;
}
.cms-portfolio-grid.grid-gallery .cms-load-more .btn:hover:before {
  height: 100%;
}
.cms-portfolio-grid.grid-gallery .cms-load-more .btn:hover:after {
  left: 0;
  width: 100%;
}
.cms-portfolio-grid.grid-gallery.gap-0 .grid-filter-wrap {
  margin-bottom: 34px;
}
.cms-portfolio-grid.grid-gallery.gap-0 .cms-load-more {
  margin-top: 39px;
}
.cms-portfolio-grid.grid-gallery.gap-0 .item-featured .item-holder {
  background: rgba(27, 26, 26, 0.95);
  padding: 44px 50px;
}
.cms-portfolio-grid.float-gallery .grid-item .grid-item-inner .item-featured img {
  transform: scale(1);
  opacity: 1;
}
.cms-portfolio-grid.float-gallery .grid-item .grid-item-inner .item-holder {
  padding-top: 22px;
}
.cms-portfolio-grid.float-gallery .grid-item .grid-item-inner .item-holder .cat a {
  font-size: 15px;
  line-height: 20px;
  color: #272626;
  margin-bottom: 4px;
  display: inline-block;
}
.cms-portfolio-grid.float-gallery .grid-item .grid-item-inner .item-holder .cat a:hover {
  -webkit-box-shadow: inset 0 0 0 rgba(0, 0, 0, 0), 0 1px 0 #272626;
  box-shadow: inset 0 0 0 rgba(0, 0, 0, 0), 0 1px 0 #272626;
}
.cms-portfolio-grid.float-gallery .grid-item .grid-item-inner .item-holder h5 {
  font-weight: bold;
  line-height: 28px;
  margin-bottom: 8px;
}
@media screen and (min-width: 992px) {
  .cms-portfolio-grid.float-gallery .grid-item .grid-item-inner .item-holder h5 {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
}
@media screen and (min-width: 992px) {
  .cms-portfolio-grid.float-gallery .grid-item:nth-child(4n-2) {
    display: flex;
    align-items: center;
  }
  .cms-portfolio-grid.float-gallery .grid-item:nth-child(4n-2) .grid-item-inner {
    padding-left: 200px;
    margin-bottom: 74px;
  }
  .cms-portfolio-grid.float-gallery .grid-item:nth-child(4n-1) {
    display: flex;
    align-items: center;
  }
  .cms-portfolio-grid.float-gallery .grid-item:nth-child(4n-1) .grid-item-inner {
    padding-right: 200px;
    margin-bottom: 74px;
  }
}
.cms-portfolio-grid.grid-masonry .item-featured {
  cursor: pointer;
}
.cms-portfolio-grid.grid-masonry .item-featured img {
  transform: scale(1);
}
.cms-portfolio-grid.grid-masonry .item-featured .item-holder {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  top: 30px;
  left: 30px;
  right: 30px;
  bottom: 30px;
  background: #fff;
  opacity: 0;
  transform: scale(0);
  transition: all 350ms ease-out 0s;
  overflow: hidden;
}
.cms-portfolio-grid.grid-masonry .item-featured .item-holder .item-holder-inner {
  text-align: center;
}
.cms-portfolio-grid.grid-masonry .item-featured .item-holder .item-holder-inner h5 {
  margin-bottom: 11px;
}
.cms-portfolio-grid.grid-masonry .item-featured .item-holder .item-holder-inner .cat a {
  font-size: 15px;
  color: #272626;
  display: inline-block;
  line-height: 18px;
}
.cms-portfolio-grid.grid-masonry .item-featured .item-holder .item-holder-inner .cat a:hover {
  -webkit-box-shadow: inset 0 0 0 rgba(0, 0, 0, 0), 0 1px 0 #272626;
  box-shadow: inset 0 0 0 rgba(0, 0, 0, 0), 0 1px 0 #272626;
}
.cms-portfolio-grid.grid-masonry .item-featured:hover img {
  opacity: 1;
}
.cms-portfolio-grid.grid-masonry .item-featured:hover .item-holder {
  opacity: 1;
  transform: scale(1);
}
.cms-portfolio-grid.center-title .item-featured .item-holder {
  display: flex;
  align-items: center;
}
.cms-portfolio-grid.middle-title .item-featured .item-holder {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.cms-portfolio-grid.bottom-title .item-featured .item-holder {
  display: flex;
  align-items: flex-end;
  padding-bottom: 44px;
}
.cms-portfolio-grid.bottom-title .cms-load-more {
  margin-top: 24px;
}
.cms-portfolio-carousel.default .grid-item-inner .item-holder {
  position: absolute;
  top: 75px;
  left: 80px;
  display: flex;
  flex-direction: column;
  opacity: 0;
  transition: all 500ms ease 50ms;
}
.cms-portfolio-carousel.default .grid-item-inner .item-holder h5 {
  font-size: 19px;
  align-self: flex-start;
  font-weight: bold;
  line-height: 1.3;
  background-color: #fff;
  margin-bottom: 0;
  padding: 15px 20px 17px;
}
.cms-portfolio-carousel.default .grid-item-inner .item-holder .cat {
  background-color: #fff;
  align-self: flex-start;
  padding: 0 20px 10px;
  margin-top: -8px;
  color: #272626;
}
.cms-portfolio-carousel.default .grid-item-inner .item-holder .cat a {
  font-size: 15px;
  margin-bottom: 4px;
  display: inline-block;
}
.cms-portfolio-carousel.default .grid-item-inner .item-holder .cat a:hover {
  -webkit-box-shadow: inset 0 0 0 rgba(0, 0, 0, 0), 0 1px 0 #272626;
  box-shadow: inset 0 0 0 rgba(0, 0, 0, 0), 0 1px 0 #272626;
}
.cms-portfolio-carousel.default .grid-item-inner:hover .item-holder {
  left: 40px;
  opacity: 1;
}
.cms-portfolio-slider.default .grid-item-inner {
  position: relative;
}
.cms-portfolio-slider.default .grid-item-inner .item-holder {
  position: absolute;
  top: 45%;
  right: 31%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  opacity: 0;
  transition: all 500ms ease 50ms;
}
.cms-portfolio-slider.default .grid-item-inner .item-holder h5 {
  font-size: 19px;
  align-self: flex-start;
  font-weight: bold;
  line-height: 1.3;
  background-color: #1b1a1a;
  color: #fff;
  margin-bottom: 0;
  padding: 15px 20px 17px;
}
.cms-portfolio-slider.default .grid-item-inner .item-holder .cat {
  background-color: #1b1a1a;
  align-self: flex-start;
  padding: 0 20px 10px;
  margin-top: -8px;
  color: #fff;
}
.cms-portfolio-slider.default .grid-item-inner .item-holder .cat a {
  font-size: 15px;
  margin-bottom: 4px;
  display: inline-block;
}
.cms-portfolio-slider.default .grid-item-inner .item-holder .cat a:hover {
  -webkit-box-shadow: inset 0 0 0 rgba(0, 0, 0, 0), 0 1px 0 #fff;
  box-shadow: inset 0 0 0 rgba(0, 0, 0, 0), 0 1px 0 #fff;
}
.cms-portfolio-slider.default .grid-item-inner:hover .item-holder {
  opacity: 1;
}
.cms-portfolio-slider.default .grid-item-inner .portfolio-share {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: -50px;
}
.cms-portfolio-slider.default .grid-item-inner .portfolio-share .cms-social-media {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.cms-portfolio-slider.default .grid-item-inner .portfolio-share .cms-social-media li {
  margin: 3px 0;
}
.cms-portfolio-slider.default .grid-item-inner .portfolio-share .cms-social-media li a {
  padding: 0;
  color: #1b1a1a;
}
.cms-portfolio-slider.default .cms-slick-prev, .cms-portfolio-slider.default .cms-slick-next {
  right: 45px;
}
@media screen and (max-width: 767px) {
  .cms-portfolio-slider.default .cms-slick-prev, .cms-portfolio-slider.default .cms-slick-next {
    display: none !important;
  }
}
@media screen and (min-width: 768px) {
  .cms-portfolio-slider.default .slick-list {
    padding: 0 100px;
  }
}
body.portfolio-split #headroom.headroom--pinned:not(.headroom--top), body.portfolio-split #headroom.headroom--unpinned:not(.headroom--top) {
  position: static !important;
  box-shadow: none !important;
}
body.portfolio-split #headroom.headroom--unpinned:not(.headroom--top) {
  transform: none !important;
}
@media screen and (min-width: 992px) {
  body.portfolio-split #site-header-wrap {
    position: fixed;
    left: 0;
    right: 0;
    background: #fff;
  }
}
.portfolio-split-wrap .cms-portfolio-split .item-holder .item-holder-inner {
  text-align: center;
}
.portfolio-split-wrap .cms-portfolio-split .item-holder .item-holder-inner h2 {
  font-size: 49px;
  margin-bottom: 14px;
}
.portfolio-split-wrap .cms-portfolio-split .item-holder .item-holder-inner .cat {
  color: #272626;
}
.portfolio-split-wrap .cms-portfolio-split .item-holder .item-holder-inner .cat a {
  font-size: 15px;
  display: inline-block;
}
.portfolio-split-wrap .cms-portfolio-split .item-holder .item-holder-inner .cat a:hover {
  -webkit-box-shadow: inset 0 0 0 rgba(0, 0, 0, 0), 0 1px 0 #272626;
  box-shadow: inset 0 0 0 rgba(0, 0, 0, 0), 0 1px 0 #272626;
}
.portfolio-split-wrap .cms-portfolio-split .portfolio-share {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 8px;
}
.portfolio-split-wrap .cms-portfolio-split .portfolio-share .cms-social-media {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.portfolio-split-wrap .cms-portfolio-split .portfolio-share .cms-social-media li {
  margin: 3px 0;
}
.portfolio-split-wrap .cms-portfolio-split .portfolio-share .cms-social-media li a {
  padding: 0;
  color: #1b1a1a;
}
.portfolio-split-wrap .split-nav .split-prev, .portfolio-split-wrap .split-nav .split-next {
  position: absolute;
  display: inline-flex;
  height: 42px;
  right: 45px;
  z-index: 99;
}
.portfolio-split-wrap .split-nav .split-prev {
  bottom: 50%;
  border-bottom: 1px solid #9b9b9b;
}
.portfolio-split-wrap .split-nav .split-next {
  border-top: 1px solid #9b9b9b;
  top: 50%;
  align-items: flex-end;
}
.cms-portfolio-list {
  position: relative;
}
.cms-portfolio-list .portfolio-image .item-featured .item-background {
  height: 100vh;
  cursor: pointer;
}
.cms-portfolio-list .portfolio-link {
  position: absolute;
  left: 215px;
  top: 50%;
  transform: translateY(-50%);
}
@media screen and (max-width: 991px) {
  .cms-portfolio-list .portfolio-link {
    left: 50px;
  }
}
@media screen and (max-width: 767px) {
  .cms-portfolio-list .portfolio-link {
    left: 35px;
    top: 53%;
  }
}
.cms-portfolio-list .portfolio-link .slick-slide {
  float: none;
  width: auto !important;
  margin-bottom: 27px;
}
.cms-portfolio-list .portfolio-link .portfolio-item {
  width: auto !important;
}
.cms-portfolio-list .portfolio-link .portfolio-item h2 {
  font-size: 49px;
  margin-bottom: 14px;
  cursor: move;
}
.cms-portfolio-list .portfolio-link .portfolio-item .cat a {
  font-size: 15px;
  display: inline-block;
  border-bottom: 1px solid transparent;
}
.cms-portfolio-list .portfolio-link .portfolio-item .cat a:hover {
  border-color: inherit;
}
.portfolio-extra-info .info-content {
  display: flex;
  align-items: baseline;
  margin-bottom: 15px;
}
.portfolio-extra-info .info-content h5 {
  margin-bottom: 0;
  font-size: 17px;
  min-width: 120px;
}
@media screen and (max-width: 991px) {
  .portfolio-extra-info .info-content h5 {
    min-width: 80px;
    margin-right: 10px;
  }
}
.portfolio-extra-info .info-content p {
  margin-bottom: 0;
}
.portfolio-extra-info .info-content p.cat a {
  border-bottom: 1px solid transparent;
}
.portfolio-extra-info .info-content p.cat a:hover {
  border-color: inherit;
}
.portfolio-extra-info .button-wrap {
  margin-top: 34px;
}
.portfolio-extra-info .button-wrap .button-link:hover {
  background: #1b1a1a;
  color: #fff;
}
.portfolio-extra-info .portfolio-share {
  color: #1b1a1a;
  margin-top: 35px;
}
.cms-images-carousel.owl-carousel .owl-nav .owl-prev {
  left: 40px;
}
.cms-images-carousel.owl-carousel .owl-nav .owl-next {
  right: 40px;
}
.cms-images-carousel.owl-carousel.layout2 .owl-nav .owl-prev {
  right: 102px;
  left: auto;
  top: auto;
  bottom: 115px;
}
.cms-images-carousel.owl-carousel.layout2 .owl-nav .owl-next {
  right: 50px;
  top: auto;
  bottom: 115px;
}
.cms-count-down .cms-count-down-container {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
}
.cms-count-down .cms-count-down-container .time-item {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  margin: 0 68px;
}
.cms-count-down .cms-count-down-container .time-item span:first-child {
  font-family: 'Oswald', sans-serif;
  font-size: 50px;
  font-weight: bold;
  color: #1b1a1a;
  letter-spacing: 0.04em;
  line-height: 1.28;
}
.cms-count-down .cms-count-down-container .time-item span:last-child {
  font-size: 20px;
  font-weight: bold;
  color: #272626;
  letter-spacing: 0.035em;
}
@media screen and (max-width: 991px) {
  .cms-count-down .cms-count-down-container .time-item {
    margin: 0 30px;
  }
  .cms-count-down .cms-count-down-container .time-item span:first-child {
    font-size: 35px;
  }
}
@media screen and (max-width: 575px) {
  .cms-count-down .cms-count-down-container .time-item {
    margin: 0 15px;
  }
  .cms-count-down .cms-count-down-container .time-item span:first-child {
    font-size: 25px;
  }
  .cms-count-down .cms-count-down-container .time-item span:last-child {
    font-size: 16px;
  }
}
@keyframes updown {
  0% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-5px);
  }
  100% {
    transform: translateY(0);
  }
}
.cms-fancybox .cms-fancybox-content .cms-fancybox-title {
  font-weight: 600;
}
.cms-fancybox .cms-fancybox-content .cms-fancybox-description {
  margin-top: 20px;
}
.cms-fancybox .cms-fancybox-content .cms-fancybox-description p {
  line-height: 23px;
  margin-bottom: 0;
  padding-right: 16px;
}
.cms-fancybox .cms-fancybox-content .item-readmore {
  display: inline-block;
  cursor: pointer;
  margin-top: 16px;
}
.cms-fancybox .cms-fancybox-content .item-readmore a {
  visibility: hidden;
  transform: translateX(25px);
  transition: all ease-out 200ms 0.1s;
}
.cms-fancybox .cms-fancybox-content .item-readmore:hover a {
  visibility: visible;
  color: #1b1a1a;
  transform: translateX(0);
}
.cms-fancybox.layout2 .cms-fancybox-subtitle p {
  margin-bottom: 0;
  color: #272626;
  font-weight: bold;
}
.cms-fancybox.layout2 .cms-fancybox-title {
  display: inline-block;
  font-weight: bold;
  padding-bottom: 5px;
  border-bottom: 2px solid;
  border-color: inherit;
  margin-bottom: 14px;
}
.cms-fancybox.layout2 .cms-fancybox-description {
  margin: 0;
}
.cms-fancybox.layout3 .cms-fancybox-content {
  padding-top: 5px;
}
.cms-fancybox.layout3 .cms-fancybox-icon {
  margin-bottom: 23px;
}
.cms-fancybox.layout3 .cms-fancybox-icon img {
  width: auto;
  max-height: 48px;
  cursor: pointer;
}
.cms-fancybox.layout3 .cms-fancybox-icon img:hover {
  animation: updown 400ms ease-in-out 50ms;
}
.cms-fancybox.layout3 .cms-fancybox-description {
  margin-top: 19px;
}
.cms-fancybox.layout3.align-center .cms-fancybox-content .cms-fancybox-description p {
  padding: 0 5px;
}
.cms-counter .cms-counter-content-inner {
  text-align: center;
}
.cms-counter .cms-counter-content-inner .cms-counter-icon {
  margin-bottom: 15px;
}
.cms-counter .cms-counter-content-inner .cms-counter-digit {
  font-family: 'Oswald', sans-serif;
  font-weight: bold;
  letter-spacing: 0.04em;
}
.cms-counter .cms-counter-content-inner .cms-counter-title {
  margin-top: 8px;
  margin-bottom: 0;
  font-weight: bold;
}
.cms-clients-carousel.layout1 .owl-item {
  position: relative;
}
.cms-clients-carousel.layout1 .owl-item .client-item {
  text-align: center;
  width: 100%;
  height: 272px;
  -webkit-transition: all ease-in-out 0.3s;
  -khtml-transition: all ease-in-out 0.3s;
  -moz-transition: all ease-in-out 0.3s;
  -ms-transition: all ease-in-out 0.3s;
  -o-transition: all ease-in-out 0.3s;
  transition: all ease-in-out 0.3s;
}
.cms-clients-carousel.layout1 .owl-item .client-item img {
  max-height: 100px;
  width: auto;
  opacity: 0.7;
  transition: opacity 300ms ease 0s;
}
.cms-clients-carousel.layout1 .owl-item .client-item .client1, .cms-clients-carousel.layout1 .owl-item .client-item .client2 {
  width: 100%;
  height: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.cms-clients-carousel.layout1 .owl-item .client-item .client1:hover img, .cms-clients-carousel.layout1 .owl-item .client-item .client2:hover img {
  opacity: 1;
}
.cms-clients-carousel.layout1 .owl-item .client-item .client1 {
  border-bottom: 1px solid #f0f0f0;
}
.cms-clients-carousel.layout1 .owl-item .client-item .client1 img {
  margin-bottom: 17px;
}
.cms-clients-carousel.layout1 .owl-item .client-item .client2 img {
  margin-top: 17px;
}
.cms-clients-carousel.layout1 .owl-item:before, .cms-clients-carousel.layout1 .owl-item:after {
  position: absolute;
  content: "";
  display: block;
  width: 30px;
  height: 30px;
  background: #fff;
  top: 50%;
  transform: translateY(-50%);
  border-radius: 50%;
  z-index: 9;
}
.cms-clients-carousel.layout1 .owl-item:before {
  right: -15px;
}
.cms-clients-carousel.layout1 .owl-item:after {
  left: -15px;
}
.cms-clients-carousel.layout1 .owl-item.active + .active .client-item {
  border-left: 1px solid #f0f0f0;
}
.cms-clients-carousel.layout1 .owl-dots {
  margin-top: 7px;
}
.cms-clients-carousel.layout2 .owl-item {
  position: relative;
}
.cms-clients-carousel.layout2 .owl-item.active + .active:before {
  content: "";
  display: block;
  position: absolute;
  width: 2px;
  height: 20px;
  background: #efefef;
  left: -16px;
  top: 50%;
  transform: translateY(-50%);
}
.cms-clients-carousel.layout2 .owl-item .client-item img {
  width: auto !important;
  margin: 0 auto;
  opacity: 0.7;
  transition: opacity 300ms ease 0s;
}
.cms-clients-carousel.layout2 .owl-item .client-item:hover img {
  opacity: 1;
}
.cms-list ul {
  list-style-type: none;
}
.cms-list ul li {
  margin-bottom: 8px;
}
.cms-list ul li a {
  display: flex;
  align-items: center;
}
.cms-list ul li a i {
  margin-right: 10px;
  transition: all 300ms ease 0s;
}
.cms-list ul li a:hover {
  color: #1b1a1a !important;
  text-decoration: none;
}
.cms-list ul li a:hover i {
  color: #1b1a1a !important;
}
.cms-contact-location.layout1 {
  position: relative;
}
.cms-contact-location.layout1 .title {
  background-color: #1b1a1a;
  display: flex;
  align-items: center;
  padding: 27px 30px;
  border-radius: 1px 1px 0 0;
}
.cms-contact-location.layout1 .title img {
  max-width: 24px;
  flex: none;
  margin-right: 15px;
}
.cms-contact-location.layout1 .title h3 {
  color: #fff;
  font-size: 17px;
  margin-bottom: 0;
}
@media screen and (min-width: 768px) {
  .cms-contact-location.layout1 .card-wrap {
    position: absolute;
    z-index: 99999999;
    left: 0;
    width: 100%;
    top: 100%;
    background: #fff;
    box-shadow: 0px 5px 83px 0 rgba(40, 40, 40, 0.08);
    border-radius: 0 0 1px 1px;
  }
}
.cms-contact-location.layout1 .card-wrap .card {
  border: none;
  border-bottom: 1px solid #eaeaea;
  border-radius: 0;
  box-shadow: none;
  background: transparent;
}
.cms-contact-location.layout1 .card-wrap .card:first-child {
  margin-top: 0;
}
.cms-contact-location.layout1 .card-wrap .card:last-child {
  margin-bottom: 0;
  border-bottom: none;
}
.cms-contact-location.layout1 .card-wrap .card .card-header {
  background: transparent;
  padding: 0;
  border: none;
  border-radius: 0;
}
.cms-contact-location.layout1 .card-wrap .card .card-header .collapse-item {
  font-size: 17px;
  color: #282828;
  padding: 17px 30px;
  position: relative;
  transition: all 0.3s ease 0s;
  cursor: pointer;
  font-weight: bold;
}
.cms-contact-location.layout1 .card-wrap .card .card-header .collapse-item:after {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  content: "\f278";
  font-family: "Material-Design-Iconic-Font";
  transition: all 300ms linear 0s;
  font-size: 16px;
  display: inline-block;
  width: 20px;
  height: 20px;
  line-height: 20px;
  border-radius: 1px;
  background: transparent;
  text-align: center;
}
@media screen and (max-width: 575px) {
  .cms-contact-location.layout1 .card-wrap .card .card-header .collapse-item:after {
    right: 10px;
  }
}
.cms-contact-location.layout1 .card-wrap .card .card-header .collapse-item[aria-expanded="true"]:after {
  content: "\f273";
  background: #1b1a1a;
  color: #fff;
}
@media screen and (max-width: 575px) {
  .cms-contact-location.layout1 .card-wrap .card .card-header .collapse-item[aria-expanded="true"]:after {
    top: 40%;
  }
}
.cms-contact-location.layout1 .card-wrap .card .card-body {
  border: none;
  padding: 24px 50px 24px 30px;
  box-shadow: none;
  height: auto;
  background: transparent none repeat scroll 0 0;
  position: relative;
  border-top: 1px solid #eaeaea;
}
.cms-contact-location.layout1 .card-wrap .card .card-body p {
  line-height: 21px;
  margin-bottom: 9px;
  font-size: 14px;
  color: #a5a5a5;
}
.cms-contact-location.layout1 .card-wrap .card .card-body p:last-child {
  margin-bottom: 0;
}
.cms-contact-location.layout2 .contact-item {
  text-align: center;
  box-shadow: 0px 5px 83px 0 rgba(40, 40, 40, 0.1);
}
.cms-contact-location.layout2 .contact-item .location {
  padding: 33px 0;
  border-bottom: 1px solid #eaeaea;
}
.cms-contact-location.layout2 .contact-item .location p {
  font-size: 17px;
  line-height: 24px;
  color: #282828;
  font-weight: bold;
  margin-bottom: 0;
}
.cms-contact-location.layout2 .contact-item .contact-info {
  padding: 35px 0 40px;
}
.cms-contact-location.layout2 .contact-item .contact-info p {
  font-size: 14px;
  line-height: 21px;
  color: #a5a5a5;
  margin-bottom: 9px;
}
.cms-contact-location.layout2 .contact-item .contact-info .contact-link.btn {
  padding: 0 28px;
  margin-top: 15px;
}
.cms-newsletter .tnp-subscription {
  max-width: unset;
  margin: 0 auto;
}
.cms-newsletter .tnp-subscription form {
  display: flex;
  justify-content: space-between;
  border-bottom: 2px solid #1b1a1a;
  height: 50px;
}
.cms-newsletter .tnp-subscription form input[type=email] {
  padding: 0;
  color: #494848;
  font-size: 15px;
  float: left;
  border: none;
  background-color: transparent;
  height: 100%;
}
.cms-newsletter .tnp-subscription form input[type=email]::placeholder {
  color: #494848;
}
.cms-newsletter .tnp-subscription form input[type=email]:focus {
  border-color: #1b1a1a;
}
.cms-newsletter .tnp-subscription form .tnp-field-button {
  position: relative;
  overflow: hidden;
  flex: none;
}
.cms-newsletter .tnp-subscription form .tnp-field-button:after {
  content: "";
  display: block;
  width: 16px;
  height: 10px;
  background-image: url(../images/arrow-right.png);
  background-size: cover !important;
  background-position: center center !important;
  background-repeat: no-repeat;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  cursor: pointer;
  z-index: -1;
}
.cms-newsletter .tnp-subscription form .tnp-field-button input.tnp-submit {
  background-color: transparent;
  color: transparent;
  width: 32px;
  height: 100%;
  margin: 0;
  padding: 0;
}
.cms-newsletter .tnp-subscription form div.tnp-field {
  margin-bottom: 0;
}
.cms-newsletter .tnp-subscription form div.tnp-field.tnp-field-email {
  flex-grow: 1;
  width: 100%;
}
.cms-social {
  display: inline-block;
}
.cms-social.social-left-side {
  position: absolute;
  top: 51%;
  transform: translateY(-50%);
}
.cms-social.social-left-side .cms-social-media {
  margin: 0 !important;
  display: inline-flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: center;
}
.cms-social.social-left-side .cms-social-media li {
  margin: 0 auto 8px;
}
.cms-anchor-link {
  display: inline-block;
  position: absolute;
  top: 51%;
  transform: translateY(-50%);
}
.cms-anchor-link .anchor-nav-button {
  display: inline-block;
  width: 14px;
  height: 86px;
  background-size: cover !important;
  background-position: center center !important;
  background-repeat: no-repeat;
  cursor: pointer;
  background-image: url(../images/anchor-button.png);
}
.cms-call-to-action.layout1 .cms-cta-subtitle p {
  font-size: 17px;
  font-weight: bold;
  margin-bottom: 12px;
}
.cms-call-to-action.layout1 .cms-cta-title h2 {
  font-size: 43px;
  letter-spacing: -0.02em;
  line-height: 1.35;
}
.cms-call-to-action.layout1 .item-button {
  margin-top: 25px;
}
.cms-call-to-action.layout1 .item-button a.btn {
  padding: 0 26px;
}
.cms-call-to-action.layout1 .item-button a.btn:hover {
  border-color: #fff;
  color: #fff;
}
.cms-team-grid {
  /*Pricing*/
}
.cms-team-grid .cms-member-image {
  overflow: hidden;
}
.cms-team-grid .cms-team-info .name-info {
  margin-bottom: 11px;
}
.cms-team-grid .cms-team-info .occupation-info {
  margin-bottom: 10px;
  color: #272626;
}
.cms-team-grid .cms-team-info .social-info {
  color: #1b1a1a;
}
.cms-team-grid.layout1 .cms-team-item {
  margin-bottom: 30px;
}
.cms-team-grid.layout1 .cms-team-item-inner {
  position: relative;
  cursor: pointer;
}
.cms-team-grid.layout1 .cms-team-item-inner:hover .cms-team-info {
  opacity: 1;
}
.cms-team-grid.layout1 .cms-team-info {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #1b1a1a;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 300ms ease 0s;
}
.cms-team-grid.layout1 .cms-team-info .info-wrap {
  text-align: center;
}
.cms-team-grid.layout1 .cms-team-info .name-info, .cms-team-grid.layout1 .cms-team-info .occupation-info, .cms-team-grid.layout1 .cms-team-info .social-info {
  color: #fff;
}
.cms-team-grid.layout2 .cms-member-image img {
  -webkit-transition: all 1s;
  -khtml-transition: all 1s;
  -moz-transition: all 1s;
  -ms-transition: all 1s;
  -o-transition: all 1s;
  transition: all 1s;
}
.cms-team-grid.layout2 .cms-member-image:hover img {
  opacity: 0.9;
  -webkit-transform: scale3d(1.1, 1.1, 1);
  transform: scale3d(1.1, 1.1, 1);
}
.cms-team-grid.layout2 .cms-team-info {
  padding-top: 25px;
  padding-bottom: 43px;
}
.cms-grid-pricing {
  /*Google Map*/
}
.cms-grid-pricing .grid-pricing-wrap {
  margin-bottom: 30px;
}
.cms-grid-pricing .grid-pricing-content .pricing-head {
  background-color: #1b1a1a;
  text-align: center;
  padding: 42px 50px 45px;
}
@media screen and (max-width: 991px) {
  .cms-grid-pricing .grid-pricing-content .pricing-head {
    padding: 42px 10px 45px;
  }
}
.cms-grid-pricing .grid-pricing-content .pricing-head .pricing-title p {
  color: #f9f9f9;
  margin-bottom: 20px;
  font-weight: bold;
}
.cms-grid-pricing .grid-pricing-content .pricing-head .price-package {
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Oswald', sans-serif;
  line-height: 1;
}
.cms-grid-pricing .grid-pricing-content .pricing-head .price-package .pricing-currency {
  font-size: 45px;
  align-self: flex-end;
  margin-bottom: 2px;
}
.cms-grid-pricing .grid-pricing-content .pricing-head .price-package .pricing-price-number {
  font-size: 90px;
}
@media screen and (max-width: 991px) {
  .cms-grid-pricing .grid-pricing-content .pricing-head .price-package .pricing-price-number {
    font-size: 60px;
  }
}
.cms-grid-pricing .grid-pricing-content .pricing-head .price-package .pricing-divide-time {
  align-self: flex-end;
  font-size: 17px;
  font-weight: bold;
  margin-bottom: 3px;
  margin-left: 5px;
}
.cms-grid-pricing .grid-pricing-content .pricing-head .pricing-description {
  color: #f9f9f9;
  margin-top: 20px;
}
.cms-grid-pricing .grid-pricing-content .pricing-body {
  background-color: #1b1a1a;
  text-align: center;
  margin-top: 2px;
  padding: 36px 15px 50px;
}
.cms-grid-pricing .grid-pricing-content .pricing-body ul {
  margin-bottom: 36px;
}
.cms-grid-pricing .grid-pricing-content .pricing-body ul li {
  font-size: 15px;
  line-height: 38px;
  color: #f9f9f9;
}
.cms-grid-pricing .grid-pricing-content .pricing-body a.btn {
  position: relative;
  overflow: hidden;
  flex: none;
  background-color: #fff;
  color: #222;
  border-color: #fff;
  padding: 0 38px;
}
.cms-grid-pricing .grid-pricing-content .pricing-body a.btn:after {
  background: #1b1a1a;
  content: "";
  height: 155px;
  left: -75px;
  position: absolute;
  top: -50px;
  transform: rotate(35deg);
  transition: all 1500ms cubic-bezier(0.19, 1, 0.22, 1);
  width: 40px;
  opacity: 0;
}
.cms-grid-pricing .grid-pricing-content .pricing-body a.btn:hover:after {
  left: 120%;
  transition: all 1200ms cubic-bezier(0.19, 1, 0.22, 1);
  opacity: 0.6;
}
.cms-google-map .gm-style .gm-style-iw-c {
  background-color: #1b1a1a;
  border-radius: 0;
  box-shadow: none;
  max-width: 300px !important;
  max-height: unset !important;
  padding: 34px 40px !important;
  top: 95px;
  left: 185px;
}
@media screen and (max-width: 991px) {
  .cms-google-map .gm-style .gm-style-iw-c {
    display: none;
  }
}
.cms-google-map .gm-style .gm-style-iw-c .info-content p {
  font-size: 15px;
  color: #fff;
  font-family: 'Inconsolata', monospace;
  line-height: 23px;
  margin-bottom: 0;
}
.cms-google-map .gm-style .gm-style-iw-c .info-content p:first-child {
  margin-bottom: 7px;
}
.cms-google-map .gm-style .gm-style-iw-c button {
  top: 0 !important;
  right: 0 !important;
  position: relative;
}
.cms-google-map .gm-style .gm-style-iw-c button img {
  display: none !important;
}
.cms-google-map .gm-style .gm-style-iw-c button:after {
  content: "\f00d";
  font-family: "FontAwesome";
  color: #fff;
  font-weight: normal;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.cms-google-map .gm-style .gm-style-iw-t::after {
  display: none;
}
.cms-google-map .gm-style .gm-style-iw-d {
  overflow: hidden !important;
  max-width: unset !important;
  max-height: unset !important;
}
@media screen and (max-width: 991px) {
  .cms-gallery-grid .cms-grid-inner .grid-item {
    padding: 0px !important;
  }
}
.cms-gallery-grid .cms-grid-inner .grid-item .grid-item-inner {
  overflow: hidden;
  position: relative;
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px transparent;
  position: relative;
  -webkit-transition-property: color;
  transition-property: color;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  cursor: pointer;
}
.cms-gallery-grid .cms-grid-inner .grid-item .grid-item-inner .hover-effect:before {
  position: absolute;
  content: "";
  width: 100%;
  opacity: 0;
  top: 0;
  bottom: 0;
  left: 0;
  background-color: rgba(27, 26, 26, 0.95);
  -webkit-transition: all ease-in-out 0.4s;
  -khtml-transition: all ease-in-out 0.4s;
  -moz-transition: all ease-in-out 0.4s;
  -ms-transition: all ease-in-out 0.4s;
  -o-transition: all ease-in-out 0.4s;
  transition: all ease-in-out 0.4s;
  display: flex;
  align-items: flex-end;
}
.cms-gallery-grid .cms-grid-inner .grid-item .grid-item-inner .grid-item-content {
  width: 100%;
  text-align: center;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transition: 0.4s;
  -khtml-transition: 0.4s;
  -moz-transition: 0.4s;
  -ms-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
  visibility: hidden;
  opacity: 0;
}
.cms-gallery-grid .cms-grid-inner .grid-item .grid-item-inner .grid-item-content .up-icon, .cms-gallery-grid .cms-grid-inner .grid-item .grid-item-inner .grid-item-content .gallery-link {
  display: inline-block;
  margin: 0 10px;
}
.cms-gallery-grid .cms-grid-inner .grid-item .grid-item-inner .grid-item-content .up-icon i, .cms-gallery-grid .cms-grid-inner .grid-item .grid-item-inner .grid-item-content .gallery-link i {
  font-size: 30px;
  color: #fff;
}
.cms-gallery-grid .cms-grid-inner .grid-item .grid-item-inner:hover .hover-effect:before {
  opacity: 1;
}
.cms-gallery-grid .cms-grid-inner .grid-item .grid-item-inner:hover .grid-item-content {
  visibility: visible;
  opacity: 1;
}
.cms-progressbar.layout1 .cms-progress-item .progress-text {
  margin-bottom: 6px;
  position: relative;
}
.cms-progressbar.layout1 .cms-progress-item .progress-text .cms-progress-title {
  font-size: 17px;
  font-weight: bold;
  color: #282828;
  margin: 0;
}
.cms-progressbar.layout1 .cms-progress-item .progress-text .cms-progress-percent {
  font-size: 15px;
  color: #272626;
  position: absolute;
  top: 0;
  transform: translateX(-100%);
  margin-top: 2px;
}
.cms-progressbar.layout1 .cms-progress-item .cms-progress {
  height: 4px;
  border-radius: 0;
  margin-bottom: 26px;
  box-shadow: none;
  background-color: transparent;
}
.cms-progressbar.layout1 .cms-progress-item .cms-progress .progress-bar {
  background-color: #272626;
}
.cms-contact-form input[type="text"]:focus, .cms-contact-form input[type="email"]:focus, .cms-contact-form input[type="url"]:focus, .cms-contact-form input[type="password"]:focus, .cms-contact-form input[type="number"]:focus, .cms-contact-form input[type="tel"]:focus, .cms-contact-form input[type="date"]:focus, .cms-contact-form input[type="month"]:focus, .cms-contact-form input[type="week"]:focus, .cms-contact-form textarea:focus {
  outline: 0;
  border-color: #1b1a1a;
}
.cms-contact-form label {
  font-size: 14px;
  color: #282828;
  font-weight: bold;
  margin-bottom: 13px;
}
.cms-contact-form label + span.wpcf7-form-control-wrap {
  margin-bottom: 25px;
}
.cms-contact-form p {
  margin-bottom: 2px;
}
.cms-contact-form p i {
  margin-right: 10px;
}
.cms-contact-form span.wpcf7-menu {
  position: relative;
}
.cms-contact-form span.wpcf7-menu:after {
  content: "\f107";
  position: absolute;
  right: 15px;
  top: 17px;
  font-family: FontAwesome;
  font-size: 16px;
  color: #9b9b9b;
  z-index: 9999;
  font-weight: bold;
}
.cms-contact-form .wpcf7-list-item {
  margin: 3px 30px 4px 0;
  display: inline-flex;
  align-items: baseline;
  position: relative;
}
@media screen and (max-width: 767px) {
  .cms-contact-form .wpcf7-list-item {
    margin-bottom: 15px;
  }
}
.cms-contact-form .wpcf7-list-item input[type="radio"] {
  opacity: 0;
  position: absolute;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9;
  cursor: pointer;
}
.cms-contact-form .wpcf7-list-item input[type="radio"] + span {
  position: relative;
  padding-left: 27px;
  font-size: 13px;
}
.cms-contact-form .wpcf7-list-item input[type="radio"] + span::before {
  content: '';
  position: absolute;
  left: 0;
  top: -3px;
  cursor: pointer;
  display: block;
  width: 17px;
  height: 17px;
  border: 2px solid #eaeaea;
  border-radius: 15px;
}
.cms-contact-form .wpcf7-list-item input[type="radio"] + span::after {
  content: '';
  display: inline-block;
  position: absolute;
  width: 7px;
  height: 7px;
  border-radius: 7px;
  left: 5px;
  top: 2px;
  background-color: transparent;
}
.cms-contact-form .wpcf7-list-item input[type="radio"]:checked + span::after {
  background-color: #1b1a1a;
}
.cms-grid-blog.layout1 .item-holder {
  padding: 24px 0 14px;
}
.cms-grid-blog.layout1 .entry-meta {
  font-size: 14px;
}
@media screen and (max-width: 575px) {
  .cms-grid-blog.layout1 .entry-meta {
    flex-direction: column;
    margin-bottom: 10px;
  }
  .cms-grid-blog.layout1 .entry-meta span.divide {
    display: none;
  }
}
.cms-grid-blog.layout1 .entry-meta .cats-meta {
  display: inline-block;
}
.cms-grid-blog.layout1 .entry-meta .cats-meta a {
  color: #272626;
  position: relative;
  margin-left: 7px;
}
.cms-grid-blog.layout1 .entry-meta .cats-meta a:first-child {
  margin-left: 0;
}
.cms-grid-blog.layout1 .entry-meta .cats-meta a:after {
  position: absolute;
  right: -7px;
  content: ",";
}
.cms-grid-blog.layout1 .entry-meta .cats-meta a:last-child:after {
  content: "";
}
.cms-grid-blog.layout1 .entry-meta .cats-meta a:hover {
  -webkit-box-shadow: inset 0 0 0 rgba(0, 0, 0, 0), 0 1px 0 #272626;
  box-shadow: inset 0 0 0 rgba(0, 0, 0, 0), 0 1px 0 #272626;
}
.cms-grid-blog.layout1 .entry-meta > span {
  display: inline-block;
}
.cms-grid-blog.layout1 .item-title {
  font-size: 21px;
  line-height: 27px;
  margin-top: 8px;
  margin-bottom: 19px;
}
.cms-grid-blog.layout1 .item-content {
  font-size: 15px;
  margin-bottom: 17px;
}
.cms-grid-blog.layout1 .item-readmore {
  display: inline-block;
  cursor: pointer;
}
.cms-grid-blog.layout1 .item-readmore a {
  visibility: hidden;
  transform: translateX(25px);
  transition: all ease-out 200ms 0.1s;
}
.cms-grid-blog.layout1 .item-readmore:hover a {
  visibility: visible;
  color: #1b1a1a;
  transform: translateX(0);
}
.cms-grid-blog.layout1 .cms-grid-pagination {
  margin-top: 13px;
}
.item-readmore a {
  display: inline-block;
  font-size: 14px;
  color: #1b1a1a;
  font-weight: bold;
  font-family: "Oswald", sans-serif;
  position: relative;
  text-transform: uppercase;
  transition: all 300ms ease 0s;
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-moz-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.rev_slider_wrapper .tparrows {
  -webkit-transition: all 300ms linear 0ms;
  -khtml-transition: all 300ms linear 0ms;
  -moz-transition: all 300ms linear 0ms;
  -ms-transition: all 300ms linear 0ms;
  -o-transition: all 300ms linear 0ms;
  transition: all 300ms linear 0ms;
}
.rev_slider_wrapper .tparrows.molli-1 {
  background-color: transparent;
  border: none;
  background-repeat: no-repeat;
  border-radius: 0;
  right: -55px !important;
  left: unset !important;
  transform: none !important;
  display: flex;
  -webkit-transition: all 300ms linear 0ms;
  -khtml-transition: all 300ms linear 0ms;
  -moz-transition: all 300ms linear 0ms;
  -ms-transition: all 300ms linear 0ms;
  -o-transition: all 300ms linear 0ms;
  transition: all 300ms linear 0ms;
}
.rev_slider_wrapper .tparrows.molli-1.tp-leftarrow {
  bottom: 50%;
  border-bottom: 1px solid #9b9b9b;
  top: unset !important;
}
.rev_slider_wrapper .tparrows.molli-1.tp-leftarrow:before {
  content: "";
  width: 10px;
  height: 16px;
  position: absolute;
  top: 0;
  left: 0;
  background-image: url(../images/arrow-up.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}
.rev_slider_wrapper .tparrows.molli-1.tp-rightarrow {
  border-top: 1px solid #9b9b9b;
  top: 50%;
}
.rev_slider_wrapper .tparrows.molli-1.tp-rightarrow:before {
  content: "";
  width: 10px;
  height: 16px;
  position: absolute;
  bottom: 0;
  left: 0;
  background-image: url(../images/arrow-down.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}
.rev_slider_wrapper .tparrows.molli-1:before {
  color: transparent;
  line-height: 46px;
}
.rev_slider_wrapper .tparrows.molli-2 {
  border: none;
  background-repeat: no-repeat;
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background-position: center center;
  animation: fadeIn ease 5s;
  -webkit-animation: fadeIn ease 5s;
  -moz-animation: fadeIn ease 5s;
}
.rev_slider_wrapper .tparrows.molli-2.tp-leftarrow:before {
  content: '';
  width: 16px;
  height: 10px;
  background-image: url(../images/arrow-left-white.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}
.rev_slider_wrapper .tparrows.molli-2.tp-rightarrow:before {
  content: '';
  width: 16px;
  height: 10px;
  background-image: url(../images/arrow-right-white.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}
.rev_slider_wrapper .tparrows.molli-2:before {
  color: transparent;
  line-height: 46px;
}
.rev_slider_wrapper .tp-bullets.molli-1 .tp-bullet, .rev_slider_wrapper .tp-bullets.molli-2 .tp-bullet {
  width: 8px;
  height: 8px;
  border: none;
  border-radius: 0;
  background-color: #797572;
  transform: translateY(-50%);
}
.rev_slider_wrapper .tp-bullets.molli-1 .tp-bullet.selected, .rev_slider_wrapper .tp-bullets.molli-2 .tp-bullet.selected {
  width: 10px;
  height: 10px;
  background-color: #1b1a1a;
}
@media screen and (min-width: 768px) {
  #content .cascading-fixed {
    position: fixed;
    left: 0;
    z-index: 9999;
  }
}
#content .cascading-menu ul.menu > li > a {
  font-family: 'Oswald', sans-serif;
  font-size: 16px;
  font-weight: bold;
  color: #1b1a1a;
  line-height: 43px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-transform: uppercase;
  border-bottom: 2px solid transparent;
  transition: all 200ms;
  text-decoration: none;
}
#content .cascading-menu ul.menu > li > a:hover {
  border-color: #1b1a1a;
}
#content .cascading-menu ul.menu > li ul.sub-menu {
  margin: 2px 0 5px 15px;
  display: none;
}
#content .cascading-menu ul.menu > li ul.sub-menu li {
  margin-bottom: 0;
}
#content .cascading-menu ul.menu > li ul.sub-menu li a {
  color: #1b1a1a;
  font-size: 15px;
  line-height: 30px;
  border-bottom: 1px solid transparent;
  transition: all 200ms;
}
#content .cascading-menu ul.menu > li ul.sub-menu li a:hover {
  border-color: #1b1a1a;
}
#content .cascading-menu ul.menu > li ul.sub-menu li.current-menu-item a {
  border-color: #1b1a1a;
}
#content .cascading-menu ul.menu > li.current-menu-ancestor > a {
  border-color: #1b1a1a;
}
#content .molli-sitemap .widget_nav_menu .menu li a {
  font-size: 16px;
  line-height: 26px;
  color: #1b1a1a;
  border-bottom: 1px solid transparent;
}
#content .molli-sitemap .widget_nav_menu .menu li a:hover {
  border-color: #1b1a1a;
  text-decoration: none;
}
#content .molli-sitemap .widget_nav_menu .menu li.menu-item-has-children > a {
  border: none;
  font-size: 32px;
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  color: #1b1a1a;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
#content .molli-sitemap .widget_nav_menu .menu ul.sub-menu {
  margin-left: 0;
  margin-top: 33px;
}
#content .molli-sitemap .widget_nav_menu .menu ul.sub-menu > li.menu-item-has-children > a {
  font-size: 19px;
}
#content .molli-sitemap .widget_nav_menu .menu ul.sub-menu > li.menu-item-has-children ul.sub-menu {
  margin-top: 8px;
  margin-bottom: 15px;
}
#content .molli-sitemap .widget_nav_menu .menu ul.sub-menu > li.menu-item-has-children:last-child ul.sub-menu {
  margin-bottom: 0;
}
#content .molli-sitemap .widget_nav_menu .menu > .menu-item {
  padding-bottom: 31px;
  margin-bottom: 38px;
  border-bottom: 1px solid #1b1a1a;
}
@media screen and (max-width: 767px) {
  .cms-round-chart {
    margin-left: 0 !important;
  }
}
.cms-round-chart .wpb_wrapper {
  display: flex;
  flex-direction: column;
}
.cms-round-chart .wpb_wrapper .vc_chart-with-legend {
  width: 100%;
  max-width: 400px;
}
.cms-round-chart .wpb_wrapper ul.vc_chart-legend {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  margin-top: 14px;
}
.cms-round-chart .wpb_wrapper ul.vc_chart-legend li {
  line-height: 29px;
  width: 50%;
  margin-left: 0;
  font-size: 14px;
  font-weight: bold;
  margin-bottom: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.cms-round-chart .wpb_wrapper ul.vc_chart-legend li span {
  width: 8px;
  height: 8px;
  border-radius: 8px;
}
.entry-content .page-links {
  clear: left;
  padding-top: 10px;
  padding-bottom: 10px;
  margin-bottom: 12px;
}
.entry-content .page-links a {
  margin-left: 10px;
}
.is-parallax .site-content {
  -webkit-transform: translate3d(0, 0, 0) !important;
  -khtml-transform: translate3d(0, 0, 0) !important;
  -moz-transform: translate3d(0, 0, 0) !important;
  -ms-transform: translate3d(0, 0, 0) !important;
  -o-transform: translate3d(0, 0, 0) !important;
  transform: translate3d(0, 0, 0) !important;
}
.is-parallax .site-content .content-inner.rm-parallax {
  -webkit-transform: translate3d(0, 0, 0) !important;
  -khtml-transform: translate3d(0, 0, 0) !important;
  -moz-transform: translate3d(0, 0, 0) !important;
  -ms-transform: translate3d(0, 0, 0) !important;
  -o-transform: translate3d(0, 0, 0) !important;
  transform: translate3d(0, 0, 0) !important;
}
.border-box > .vc_column-inner > .wpb_wrapper {
  padding: 30px;
  border: 1px solid #f1f1f1;
  background-color: #f7f7f7;
  -webkit-border-radius: 14px;
  -khtml-border-radius: 14px;
  -moz-border-radius: 14px;
  -ms-border-radius: 14px;
  -o-border-radius: 14px;
  border-radius: 14px;
}
@media screen and (min-width: 992px) {
  body .container {
    max-width: 1200px;
    width: 100%;
  }
  .content-row {
    margin-left: -15px;
    margin-right: -15px;
  }
  .content-row #primary {
    padding-left: 15px;
    padding-right: 15px;
  }
  .content-row #secondary {
    padding-left: 35px;
    padding-right: 15px;
  }
  .content-has-sidebar.float-right {
    order: 2;
    -webkit-order: 2;
    -ms-order: 2;
  }
  .content-has-sidebar.float-right#primary {
    padding-left: 15px;
    padding-right: 15px;
  }
  .content-has-sidebar.float-right + #secondary {
    padding-left: 15px;
    padding-right: 35px;
    order: 1;
    -webkit-order: 1;
    -ms-order: 1;
  }
}
@media screen and (max-width: 1199px) {
  body .container {
    max-width: 100%;
  }
}
@media screen and (max-width: 991px) {
  #primary + #secondary {
    margin-top: 60px;
  }
}
body .site-content {
  padding: 0 0 84px;
}
body.woocommerce.single-product .site-content {
  padding: 0 0 60px;
}
.page-template-default .entry-footer {
  text-align: center;
}
.page-template-default .entry-footer i {
  padding-right: 8px;
}
.vc_column_container > .theiaStickySidebar > .vc_column-inner {
  box-sizing: border-box;
  padding-left: 15px;
  padding-right: 15px;
  width: 100%;
}
.vc-row-overlay {
  position: relative;
  overflow: hidden;
}
.row-overlay {
  position: relative;
}
.row-overlay:after {
  background-color: inherit;
  bottom: 0;
  content: "";
  display: block !important;
  height: 100% !important;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  visibility: visible !important;
}
.row-overlay .vc_column-inner {
  position: relative;
  z-index: 1;
}
.row-overlay.dotted-overlay:after {
  background-image: url(../images/dot-overlay.png);
  background-repeat: repeat;
}
.col-overlay .vc_column-inner {
  position: relative;
}
.col-overlay .vc_column-inner:after {
  background-color: inherit;
  bottom: 0;
  content: "";
  display: block !important;
  height: 100% !important;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  visibility: visible !important;
}
.col-overlay .vc_column-inner .wpb_wrapper {
  position: relative;
  z-index: 1;
}
.vc_row.vc_row-fluid > .wpb_column {
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
}
.vc_row .cms-row-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.vc_row .cms-row-overlay.cms-row-overlay-skew {
  right: 0;
  -webkit-transform: skew(-20deg);
  -khtml-transform: skew(-20deg);
  -moz-transform: skew(-20deg);
  -ms-transform: skew(-20deg);
  -o-transform: skew(-20deg);
  transform: skew(-20deg);
  left: -1000px;
  border-right: 10px solid #1b1a1a;
}
@media screen and (max-width: 767px) {
  .vc_row .cms-row-overlay.cms-row-overlay-skew {
    opacity: 0;
    display: none;
  }
}
.vc_row.row-border-box {
  background-color: #fff;
  padding: 70px 55px 30px;
  -webkit-border-radius: 7px;
  -khtml-border-radius: 7px;
  -moz-border-radius: 7px;
  -ms-border-radius: 7px;
  -o-border-radius: 7px;
  border-radius: 7px;
  -webkit-box-shadow: 0 10px 50px rgba(0, 0, 0, 0.20);
  -khtml-box-shadow: 0 10px 50px rgba(0, 0, 0, 0.20);
  -moz-box-shadow: 0 10px 50px rgba(0, 0, 0, 0.20);
  -ms-box-shadow: 0 10px 50px rgba(0, 0, 0, 0.20);
  -o-box-shadow: 0 10px 50px rgba(0, 0, 0, 0.20);
  box-shadow: 0 10px 50px rgba(0, 0, 0, 0.20);
  z-index: 109;
  position: relative;
}
@media screen and (min-width: 1400px) {
  .site-layout-boxed .site {
    width: 1310px;
    margin: auto;
    -webkit-box-shadow: 0 0 40px rgba(0, 0, 0, 0.66);
    -khtml-box-shadow: 0 0 40px rgba(0, 0, 0, 0.66);
    -moz-box-shadow: 0 0 40px rgba(0, 0, 0, 0.66);
    -ms-box-shadow: 0 0 40px rgba(0, 0, 0, 0.66);
    -o-box-shadow: 0 0 40px rgba(0, 0, 0, 0.66);
    box-shadow: 0 0 40px rgba(0, 0, 0, 0.66);
    overflow: visible;
  }
  .site-layout-boxed .site .site-content {
    overflow: hidden;
  }
  .site-layout-boxed .site [data-vc-full-width="true"] {
    width: 1310px !important;
    left: -55px !important;
  }
  .site-layout-boxed .site [data-vc-full-width="true"]:not(.vc_row-no-padding) {
    padding-left: 55px !important;
    padding-right: 55px !important;
  }
  .site-layout-boxed #headroom.headroom--pinned:not(.headroom--top), .site-layout-boxed #headroom.headroom--unpinned:not(.headroom--top) {
    max-width: 1310px;
    margin: auto;
  }
}
@media (min-width: 1200px) and (max-width: 1400px) {
  .site-layout-boxed .site {
    width: 1200px;
    margin: auto;
    -webkit-box-shadow: 0 0 40px rgba(0, 0, 0, 0.66);
    -khtml-box-shadow: 0 0 40px rgba(0, 0, 0, 0.66);
    -moz-box-shadow: 0 0 40px rgba(0, 0, 0, 0.66);
    -ms-box-shadow: 0 0 40px rgba(0, 0, 0, 0.66);
    -o-box-shadow: 0 0 40px rgba(0, 0, 0, 0.66);
    box-shadow: 0 0 40px rgba(0, 0, 0, 0.66);
  }
  .site-layout-boxed .site .container {
    max-width: 1140px;
  }
  .site-layout-boxed #headroom.headroom--pinned:not(.headroom--top), .site-layout-boxed #headroom.headroom--unpinned:not(.headroom--top) {
    max-width: 1200px;
    margin: auto;
  }
}
@media screen and (min-width: 992px) {
  .entry-content > .vc_row > .float-right {
    order: 2;
    -webkit-order: 2;
    -ms-order: 2;
  }
}
@media screen and (max-width: 991px) {
  .vc_row.row-border-box {
    padding: 40px 40px 0px;
    margin: 0;
  }
  .vc_row.row-rm-padding-md {
    margin-left: -15px !important;
    margin-right: -15px !important;
  }
  #primary .vc_row.rm-margin-md {
    margin-left: -15px !important;
    margin-right: -15px !important;
  }
  .rm-margin-top-md > .vc_column-inner {
    margin-top: 0 !important;
  }
  .add-margin-bottom-md > .vc_column-inner {
    margin-bottom: 45px;
  }
}
@media screen and (max-width: 767px) {
  .vc_row.row-border-box {
    padding: 40px 15px 0px 15px;
  }
  .rm-padding-xs > .vc_column-inner, .rm-padding-xs > .theiaStickySidebar > .vc_column-inner {
    padding-left: 15px !important;
    padding-right: 15px !important;
  }
  .vc_row.row-rm-padding-sm {
    margin-left: -15px !important;
    margin-right: -15px !important;
  }
  .rm-margin-sm > .vc_column-inner {
    margin: 0 !important;
  }
  .wpb_single_image.image_align_xs_left {
    text-align: left !important;
    margin: 0 !important;
  }
  .wpb_single_image.image_align_xs_center {
    text-align: center !important;
    margin: 0 !important;
  }
  .wpb_single_image.image_align_xs_right {
    text-align: right !important;
    margin: 0 !important;
  }
}
@media screen and (max-width: 575px) {
  .vc_row.row-rm-padding-xs {
    margin-left: -15px !important;
    margin-right: -15px !important;
  }
}
@media screen and (max-width: 1600px) {
  .divider-hidden-lg {
    display: none;
  }
}
@media screen and (min-width: 992px) {
  .col-lg-2-5 {
    -ms-flex: 0 0 20%;
    flex: 0 0 20%;
    max-width: 20%;
  }
}
@font-face {
  font-family: 'GT-Walsheim-Bold';
  src: url('../fonts/main/gt-walsheim-bold-webfont.woff2') format('woff2'), url('../fonts/main/gt-walsheim-bold-webfont.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'GT-Walsheim-Medium';
  src: url('../fonts/main/gt-walsheim-medium-webfont.woff2') format('woff2'), url('../fonts/main/gt-walsheim-medium-webfont.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'GT-Walsheim-Regular';
  src: url('../fonts/main/gt-walsheim-regular-webfont.woff2') format('woff2'), url('../fonts/main/gt-walsheim-regular-webfont.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'Nimbus-Sans-Bold';
  src: url('../fonts/main/nimbus-sans-bold-webfont.woff2') format('woff2'), url('../fonts/main/nimbus-sans-bold-webfont.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'Nimbus-Sans-Regular';
  src: url('../fonts/main/nimbus-sans-regular-webfont.woff2') format('woff2'), url('../fonts/main/nimbus-sans-regular-webfont.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'Maison-Neue-Mono';
  src: url('../fonts/main/maisonneuemono-webfont.woff2') format('woff2'), url('../fonts/main/maisonneuemono-webfont.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'Maison-Neue-Bold';
  src: url('../fonts/main/maisonneuebold-webfont.woff2') format('woff2'), url('../fonts/main/maisonneuebold-webfont.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'Sf-Ui-Text-Bold';
  src: url('../fonts/main/sf-ui-text-bold-webfont.woff2') format('woff2'), url('../fonts/main/sf-ui-text-bold-webfont.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'Sf-Ui-Text-Medium';
  src: url('../fonts/main/sf-ui-text-medium-webfont.woff2') format('woff2'), url('../fonts/main/sf-ui-text-medium-webfont.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'Proxima-Nova-Bold';
  src: url('../fonts/main/proxima-nova-bold-webfont.woff2') format('woff2'), url('../fonts/main/proxima-nova-bold-webfont.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'Proxima-Nova-Semibold';
  src: url('../fonts/main/proxima-nova-semibold-webfont.woff2') format('woff2'), url('../fonts/main/proxima-nova-semibold-webfont.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'Proxima-Nova-Semibold-Italic';
  src: url('../fonts/main/proxima-nova-semibold-italic-webfont.woff2') format('woff2'), url('../fonts/main/proxima-nova-semibold-italic-webfont.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'Proxima-Nova-Regular';
  src: url('../fonts/main/proxima-nova-regular-webfont.woff2') format('woff2'), url('../fonts/main/proxima-nova-regular-webfont.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'Calibre-Regular';
  src: url('../fonts/main/calibre-regular.woff2') format('woff2'), url('../fonts/main/calibre-regular.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'Calibre-Medium';
  src: url('../fonts/main/calibre-medium.woff2') format('woff2'), url('../fonts/main/calibre-medium.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'Calibre-Semibold';
  src: url('../fonts/main/calibre-semibold.woff2') format('woff2'), url('../fonts/main/calibre-semibold.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'Norwester';
  src: url('../fonts/main/norwester-webfont.woff2') format('woff2'), url('../fonts/main/norwester-webfont.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'HoneymoonAvenue';
  src: url('../fonts/main/HoneymoonAvenue.ttf') format('ttf'), url('../fonts/main/HoneymoonAvenue.otf') format('otf');
  font-weight: normal;
  font-style: normal;
}
.ft-honey {
  font-family: 'HoneymoonAvenue' !important;
}
.ft-main-r, body {
  font-family: ;
}
h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6 {
  font-family: ;
}
.woocommerce #secondary .widget {
  background-color: transparent;
  border: none;
  padding: 0;
}
.woocommerce .quantity-icon {
  display: none;
}
.woocommerce .woocommerce-message {
  border-color: transparent;
  background-color: #f9f9f9;
  font-size: 19px;
  font-weight: 600;
  font-family: "Oswald", sans-serif;
  line-height: 32px;
  padding: 29px 30px 29px 60px;
  color: #272626;
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
  align-items: center;
}
.woocommerce .woocommerce-message:before {
  color: #1b1a1a;
  top: 50%;
  transform: translateY(-47%);
}
.woocommerce .woocommerce-message:after {
  display: none;
}
@media screen and (max-width: 767px) {
  .woocommerce .woocommerce-message {
    flex-direction: column-reverse;
    align-items: baseline;
  }
  .woocommerce .woocommerce-message:before {
    top: 46px;
  }
  .woocommerce .woocommerce-message a.button {
    margin-top: 25px;
  }
}
.woocommerce input[type="text"], .woocommerce input[type="email"], .woocommerce input[type="url"], .woocommerce input[type="password"], .woocommerce input[type="tel"], .woocommerce input[type="number"], .woocommerce input[type="range"], .woocommerce input[type="date"], .woocommerce input[type="month"], .woocommerce input[type="week"], .woocommerce input[type="time"], .woocommerce input[type="datetime"], .woocommerce input[type="datetime-local"], .woocommerce input[type="color"], .woocommerce textarea {
  padding: 0 15px !important;
  line-height: 30px !important;
  border: 1px solid #e5e5e5;
  -webkit-border-radius: 0px;
  -khtml-border-radius: 0px;
  -moz-border-radius: 0px;
  -ms-border-radius: 0px;
  -o-border-radius: 0px;
  border-radius: 0px;
  background-color: #f7f7f7;
  color: rgba(0, 0, 0, 0.66);
  font-size: 16px;
}
.woocommerce input[type="text"]:focus, .woocommerce input[type="email"]:focus, .woocommerce input[type="url"]:focus, .woocommerce input[type="password"]:focus, .woocommerce input[type="tel"]:focus, .woocommerce input[type="number"]:focus, .woocommerce input[type="range"]:focus, .woocommerce input[type="date"]:focus, .woocommerce input[type="month"]:focus, .woocommerce input[type="week"]:focus, .woocommerce input[type="time"]:focus, .woocommerce input[type="datetime"]:focus, .woocommerce input[type="datetime-local"]:focus, .woocommerce input[type="color"]:focus, .woocommerce textarea:focus, .woocommerce input[type="text"]:active, .woocommerce input[type="email"]:active, .woocommerce input[type="url"]:active, .woocommerce input[type="password"]:active, .woocommerce input[type="tel"]:active, .woocommerce input[type="number"]:active, .woocommerce input[type="range"]:active, .woocommerce input[type="date"]:active, .woocommerce input[type="month"]:active, .woocommerce input[type="week"]:active, .woocommerce input[type="time"]:active, .woocommerce input[type="datetime"]:active, .woocommerce input[type="datetime-local"]:active, .woocommerce input[type="color"]:active, .woocommerce textarea:active {
  border-color: #1b1a1a;
}
.woocommerce .woocommerce-ordering {
  position: relative;
}
.woocommerce .woocommerce-ordering select {
  margin-bottom: 0;
  padding: 0 45px 0 20px !important;
}
.woocommerce .woocommerce-ordering:after {
  position: absolute;
  content: "\f107";
  font-family: "FontAwesome";
  font-size: 14px;
  top: 15px;
  right: 20px;
}
.woocommerce textarea {
  padding-top: 7px !important;
  line-height: normal !important;
}
.woocommerce .quantity {
  position: relative;
  font-weight: 600;
  color: #000;
  display: flex;
}
.woocommerce .quantity .qty {
  width: 50px;
  height: 50px;
  padding: 0 !important;
  background-color: transparent;
  text-align: center;
  border-color: #494848;
  border-radius: 0;
  font-size: 15px;
  color: #494848;
  font-family: "Oswald", sans-serif;
  font-weight: bold;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.woocommerce div.product form.cart .group_table {
  border: none;
}
.woocommerce div.product form.cart .group_table td {
  vertical-align: middle;
}
.woocommerce div.product form.cart .group_table td del {
  margin-right: 5px;
}
.woocommerce .button.single_add_to_cart_button {
  border-radius: 0 !important;
}
.woocommerce .button.add_to_cart_button.loading {
  opacity: 1;
}
.woocommerce .button.add_to_cart_button.loading::after {
  top: 0;
}
.woocommerce-page #add_payment_method table.cart img, .woocommerce-page.woocommerce-cart table.cart img, .woocommerce-page.woocommerce-checkout table.cart img {
  width: 60px;
  height: 60px !important;
}
.woocommerce form .select2-container--default, .woocommerce-page form .select2-container--default {
  width: 100% !important;
}
.woocommerce form .select2-container--default .select2-selection, .woocommerce-page form .select2-container--default .select2-selection {
  border: 1px solid #e5e5e5;
  height: 32px;
  border-radius: 0;
}
.woocommerce form .select2-container--default .select2-selection .select2-selection__rendered, .woocommerce-page form .select2-container--default .select2-selection .select2-selection__rendered {
  line-height: 32px;
  padding-left: 15px;
}
.woocommerce form .select2-container--default .select2-selection .select2-selection__arrow, .woocommerce-page form .select2-container--default .select2-selection .select2-selection__arrow {
  right: 10px;
  top: 56%;
  color: #8f8f8f;
}
.woocommerce form .select2-container--default .select2-selection .select2-selection__clear, .woocommerce-page form .select2-container--default .select2-selection .select2-selection__clear {
  height: 20px;
  line-height: 20px;
  position: absolute;
  right: 30px;
  text-align: center;
  top: 50%;
  -webkit-transform: translate(0px, -50%);
  -khtml-transform: translate(0px, -50%);
  -moz-transform: translate(0px, -50%);
  -ms-transform: translate(0px, -50%);
  -o-transform: translate(0px, -50%);
  transform: translate(0px, -50%);
  width: 20px;
  color: #8f8f8f;
}
.woocommerce form .select2-container--default .select2-selection .select2-selection__placeholder, .woocommerce-page form .select2-container--default .select2-selection .select2-selection__placeholder {
  color: rgba(0, 0, 0, 0.66);
}
.woocommerce .select2-container.select2-container--open .select2-dropdown, .woocommerce-page .select2-container.select2-container--open .select2-dropdown {
  border-color: #494848;
}
.woocommerce .select2-container.select2-container--open .select2-dropdown .select2-search__field, .woocommerce-page .select2-container.select2-container--open .select2-dropdown .select2-search__field {
  border: 1px solid #494848;
  padding-left: 15px;
  padding-right: 15px;
}
.woocommerce .select2-container.select2-container--open .select2-results li.select2-results__option--highlighted, .woocommerce-page .select2-container.select2-container--open .select2-results li.select2-results__option--highlighted {
  background-color: #1b1a1a;
}
.woocommerce .select2 .select2-selection--single, .woocommerce-page .select2 .select2-selection--single {
  -webkit-border-radius: 20px;
  -khtml-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  -o-border-radius: 20px;
  border-radius: 20px;
  background-color: #f7f7f7;
}
@media screen and (min-width: 769px) {
  .woocommerce-page #content div.product div.images {
    width: 46.8%;
    margin-bottom: 68px;
  }
}
.woocommerce-page #content div.product div.images .flex-control-thumbs {
  margin-left: -3px;
  margin-right: -3px;
  margin-top: 3px;
}
.woocommerce-page #content div.product div.images .flex-control-thumbs li {
  width: 33.3333%;
  padding: 3px;
}
@media screen and (min-width: 769px) {
  .woocommerce-page #content div.product div.summary {
    width: 49%;
    margin-bottom: 70px;
    padding-top: 45px;
  }
}
#shop-newsletter {
  text-align: center;
  padding: 40px 30px 30px 30px;
  color: rgba(255, 255, 255, 0.87);
  -webkit-border-radius: 14px;
  -khtml-border-radius: 14px;
  -moz-border-radius: 14px;
  -ms-border-radius: 14px;
  -o-border-radius: 14px;
  border-radius: 14px;
  margin-top: 60px;
}
#shop-newsletter h3 {
  font-size: 32px;
  color: #fff;
  margin-bottom: 13px;
}
#shop-newsletter .shop-newsletter-introduction {
  color: #fff;
  text-transform: uppercase;
}
#shop-newsletter .shop-newsletter-introduction, #shop-newsletter .shop-newsletter-desc {
  max-width: 590px;
  margin: auto;
}
#shop-newsletter .cms-newsletter-inner {
  margin-top: 33px;
  margin-bottom: 18px;
}
#shop-newsletter .cms-newsletter-inner .tnp-email {
  background-color: #fff;
  color: rgba(0, 0, 0, 0.33);
}
#shop-newsletter .cms-newsletter-inner .tnp-field-button {
  position: absolute;
  top: 0;
  right: 0;
}
.widget_products ul.product_list_widget li {
  margin-bottom: 5px;
  color: #1b1a1a;
  padding-top: 0;
}
.widget_products ul.product_list_widget li:last-child {
  margin-bottom: 8px;
}
.widget_products ul.product_list_widget li a {
  font-weight: 400;
  letter-spacing: 0.05em;
  margin-bottom: 6px;
}
.widget_products ul.product_list_widget li a img {
  float: left;
  width: 110px;
  margin-right: 26px;
  margin-top: 6px;
}
.widget_products ul.product_list_widget li span.amount {
  font-family: Roboto, sans-serif;
  font-size: 15px;
  font-weight: 400;
  color: #1b1a1a;
}
.widget_products ul.product_list_widget li del span.amount {
  color: #777;
  margin-right: 12px;
}
.widget_products ul.product_list_widget li ins {
  color: #1b1a1a;
  background-color: transparent;
}
.widget_rating_filter .wc-layered-nav-rating a {
  font-size: 0px;
  display: block;
  padding-left: 28px !important;
  position: relative;
}
.widget_rating_filter .wc-layered-nav-rating a:before {
  content: "";
  height: 18px;
  width: 18px;
  border: 1px solid #e6e6e6;
  -webkit-border-radius: 18px;
  -khtml-border-radius: 18px;
  -moz-border-radius: 18px;
  -ms-border-radius: 18px;
  -o-border-radius: 18px;
  border-radius: 18px;
  position: absolute;
  top: 1px;
  left: 0;
  -webkit-transition: all 0.2s cubic-bezier(0.39, 0.575, 0.565, 1) 0s;
  -khtml-transition: all 0.2s cubic-bezier(0.39, 0.575, 0.565, 1) 0s;
  -moz-transition: all 0.2s cubic-bezier(0.39, 0.575, 0.565, 1) 0s;
  -ms-transition: all 0.2s cubic-bezier(0.39, 0.575, 0.565, 1) 0s;
  -o-transition: all 0.2s cubic-bezier(0.39, 0.575, 0.565, 1) 0s;
  transition: all 0.2s cubic-bezier(0.39, 0.575, 0.565, 1) 0s;
}
.widget_rating_filter .wc-layered-nav-rating a .star-rating {
  font-size: 15px;
}
.widget_rating_filter .wc-layered-nav-rating a:hover:before {
  border-color: #1b1a1a;
  background-color: #1b1a1a;
}
.widget_rating_filter .wc-layered-nav-rating.chosen a:before {
  border-color: #1b1a1a;
  background-color: #1b1a1a;
}
.widget_price_filter {
  padding-bottom: 1px !important;
}
.widget_price_filter .price_slider_wrapper .ui-slider.ui-widget-content {
  height: 4px;
  background-color: #f2f2f2;
  margin-top: 25px;
  margin-bottom: 10px;
  margin-right: 0;
}
.widget_price_filter .price_slider_wrapper .ui-slider.ui-widget-content .ui-slider-range {
  background-color: #282828;
}
.widget_price_filter .price_slider_wrapper .ui-slider.ui-widget-content .ui-slider-handle {
  background-color: #282828;
  width: 8px;
  height: 8px;
  border-radius: 0;
  top: -2px;
}
.widget_price_filter .price_slider_wrapper .price_slider_amount {
  text-align: left;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  flex-direction: row-reverse;
}
@media screen and (max-width: 1199px) {
  .widget_price_filter .price_slider_wrapper .price_slider_amount {
    align-items: flex-start;
    flex-direction: column-reverse;
  }
}
.widget_price_filter .price_slider_wrapper .price_slider_amount .price_label {
  flex-grow: 1;
  font-size: 14px;
  color: #494848;
}
@media screen and (max-width: 1199px) {
  .widget_price_filter .price_slider_wrapper .price_slider_amount .price_label {
    margin-bottom: 10px;
  }
}
.widget_price_filter .price_slider_wrapper .price_slider_amount .price_label span {
  color: #272626;
}
.widget_price_filter .price_slider_wrapper .price_slider_amount button[type="submit"] {
  padding: 0 !important;
  background-color: transparent !important;
  border: none !important;
  font-size: 14px !important;
  font-weight: bold !important;
  color: #1b1a1a !important;
  line-height: 20px !important;
  min-width: auto !important;
  width: auto !important;
}
.widget_price_filter .price_slider_wrapper .price_slider_amount button[type="submit"]:hover {
  -webkit-box-shadow: inset 0 0 0 rgba(0, 0, 0, 0), 0 1px 0 #1b1a1a;
  box-shadow: inset 0 0 0 rgba(0, 0, 0, 0), 0 1px 0 #1b1a1a;
}
.widget_shopping_cart_content {
  width: 310px;
  padding: 30px;
  position: absolute;
  background: #1b1a1a;
  color: #fff;
  top: 100%;
  right: 0;
  display: none;
  opacity: 0;
  transition: top ease-in-out 0.3s;
}
@media screen and (max-width: 767px) {
  .widget_shopping_cart_content {
    top: 50px;
    right: -95px;
  }
}
.widget_shopping_cart_content.active {
  display: block;
  opacity: 1;
  z-index: 9999;
}
.widget_shopping_cart_content ul.product_list_widget {
  font-size: 0;
  line-height: 0;
  margin: 0;
}
.widget_shopping_cart_content ul.product_list_widget li {
  display: block !important;
  line-height: normal !important;
  position: relative;
  margin: 0 !important;
}
.widget_shopping_cart_content ul.product_list_widget li a {
  text-align: left;
  display: flex !important;
  align-items: flex-start;
  line-height: 25px !important;
  width: calc(100% - 25px);
  font-size: 14px;
  font-family: "Oswald", sans-serif;
  font-weight: bold;
  color: #fff;
}
.widget_shopping_cart_content ul.product_list_widget li a img {
  float: none;
  margin-right: 15px;
  width: 60px;
  height: 60px;
  max-width: 60px;
}
.widget_shopping_cart_content ul.product_list_widget li .remove_from_cart_button {
  position: absolute;
  display: block !important;
  width: 20px;
  height: 20px;
  font-size: 21px;
  line-height: 20px !important;
  background: #fff;
  right: 0;
  top: 25px;
  border-radius: 0px;
  color: #1b1a1a !important;
  text-align: center;
}
.widget_shopping_cart_content ul.product_list_widget li .quantity {
  font-size: 16px;
  font-weight: bold;
  margin: -29px 0px 12px 75px;
  display: block;
  text-align: left;
  color: #fff;
}
.widget_shopping_cart_content ul.product_list_widget li + li {
  padding-top: 20px;
}
.widget_shopping_cart_content ul.product_list_widget li:first-child .remove_from_cart_button {
  top: 5px;
}
.widget_shopping_cart_content .woocommerce-mini-cart__total {
  font-size: 19px;
  font-family: "Oswald", sans-serif;
  color: #fff;
  font-weight: 600;
  padding: 23px 0 0;
  margin: 0;
  text-align: left;
}
.widget_shopping_cart_content .woocommerce-mini-cart__buttons {
  line-height: normal;
  padding-top: 24px;
  margin: 0;
  white-space: normal;
  text-align: left;
}
.widget_shopping_cart_content .woocommerce-mini-cart__buttons a.button {
  background: transparent;
  color: #fff;
  border: 2px solid #fff;
  border-radius: 0;
  width: 100%;
  font-size: 14px;
  padding: 0 31px;
  line-height: 46px;
  letter-spacing: 0;
}
.widget_shopping_cart_content .woocommerce-mini-cart__buttons a.button:hover {
  background: #fff;
  color: #1b1a1a;
  border-color: #fff;
}
.widget_shopping_cart_content .woocommerce-mini-cart__buttons a.checkout {
  display: none;
  background: none;
  border-color: #fff;
  color: #fff;
  float: right;
}
.widget_shopping_cart_content .woocommerce-mini-cart__empty-message {
  margin-bottom: 0;
}
#shop-topbar {
  border-bottom: 1px solid #e5e5e5;
  background-color: #f7f7f7;
}
#shop-topbar .shop-topbar-item {
  margin: 11px 0;
  position: relative;
  padding-left: 76px;
  color: #000;
  font-size: 16px;
  min-height: 56px;
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
}
#shop-topbar .shop-topbar-item i {
  height: 56px;
  width: 56px;
  -webkit-border-radius: 56px;
  -khtml-border-radius: 56px;
  -moz-border-radius: 56px;
  -ms-border-radius: 56px;
  -o-border-radius: 56px;
  border-radius: 56px;
  border: 1px solid #e5e5e5;
  line-height: 54px;
  text-align: center;
  font-size: 24px;
  position: absolute;
  top: 0;
  left: 0;
}
#shop-topbar .shop-topbar-item span {
  font-weight: 500;
}
#shop-breadcrumb {
  padding: 23px 0;
}
#shop-breadcrumb ul {
  list-style: none;
  margin: 0;
}
#shop-breadcrumb ul li {
  display: inline-block;
  font-size: 16px;
  font-weight: 500;
  color: #1b1a1a;
  margin: 10px 0;
  padding: 0 12px;
  position: relative;
}
#shop-breadcrumb ul li::after {
  content: '/';
  color: #e9e9e9;
  position: absolute;
  top: 0;
  right: -4px;
}
#shop-breadcrumb ul li:first-child {
  padding-left: 0;
}
#shop-breadcrumb ul li:last-child:after {
  display: none;
}
#shop-breadcrumb ul li a {
  color: #272626;
}
#shop-breadcrumb ul li a:hover {
  color: #1b1a1a;
}
.woocommerce .nice-select {
  display: none;
}
.woocommerce-page .site #content .button, .woocommerce-page .site #content input[type="submit"], .woocommerce-page .site #content .button.alt, .woocommerce-page .site #content button.alt, .woocommerce-page .site #content .button.alt.disabled, .woocommerce-page .site #content button.alt.disabled, .woocommerce-page .site #content a.button, .woocommerce-page .site #content #respond input#submit, .woocommerce-page .site #content input.button:disabled, .woocommerce-page .site #content input.button.disabled, .woocommerce-page .site #content input.button[disabled]:disabled, .wpb_wrapper .woocommerce .products .product .button {
  opacity: 1;
  background-color: #1b1a1a;
  font-size: 14px;
  border: 2px solid #1b1a1a;
  color: #fff;
  text-transform: uppercase;
  padding: 0 15px;
  width: 95%;
  max-width: 170px;
  line-height: 46px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-transition: all 0.2s cubic-bezier(0.39, 0.575, 0.565, 1) 0s;
  -khtml-transition: all 0.2s cubic-bezier(0.39, 0.575, 0.565, 1) 0s;
  -moz-transition: all 0.2s cubic-bezier(0.39, 0.575, 0.565, 1) 0s;
  -ms-transition: all 0.2s cubic-bezier(0.39, 0.575, 0.565, 1) 0s;
  -o-transition: all 0.2s cubic-bezier(0.39, 0.575, 0.565, 1) 0s;
  transition: all 0.2s cubic-bezier(0.39, 0.575, 0.565, 1) 0s;
  -webkit-border-radius: 0px;
  -khtml-border-radius: 0px;
  -moz-border-radius: 0px;
  -ms-border-radius: 0px;
  -o-border-radius: 0px;
  border-radius: 0px;
  position: relative;
  display: inline-block;
  text-align: center;
  cursor: pointer;
  font-weight: 500;
}
.woocommerce-page .site #content .button:hover, .woocommerce-page .site #content input[type="submit"]:hover, .woocommerce-page .site #content .button.alt:hover, .woocommerce-page .site #content button.alt:hover, .woocommerce-page .site #content .button.alt.disabled:hover, .woocommerce-page .site #content button.alt.disabled:hover, .woocommerce-page .site #content a.button:hover, .woocommerce-page .site #content #respond input#submit:hover, .woocommerce-page .site #content input.button:disabled:hover, .woocommerce-page .site #content input.button.disabled:hover, .woocommerce-page .site #content input.button[disabled]:disabled:hover, .wpb_wrapper .woocommerce .products .product .button:hover, .woocommerce-page .site #content .button :focus, .woocommerce-page .site #content input[type="submit"] :focus, .woocommerce-page .site #content .button.alt :focus, .woocommerce-page .site #content button.alt :focus, .woocommerce-page .site #content .button.alt.disabled :focus, .woocommerce-page .site #content button.alt.disabled :focus, .woocommerce-page .site #content a.button :focus, .woocommerce-page .site #content #respond input#submit :focus, .woocommerce-page .site #content input.button:disabled :focus, .woocommerce-page .site #content input.button.disabled :focus, .woocommerce-page .site #content input.button[disabled]:disabled :focus, .wpb_wrapper .woocommerce .products .product .button :focus {
  outline: medium none;
  text-decoration: none;
  background-color: transparent;
  border-color: #1b1a1a;
  color: #1b1a1a;
}
#content .added_to_cart.wc-forward {
  color: #fff;
  margin-bottom: 45px;
}
#content .added_to_cart.wc-forward:hover {
  -webkit-box-shadow: inset 0 0 0 rgba(0, 0, 0, 0), 0 1px 0 #fff;
  box-shadow: inset 0 0 0 rgba(0, 0, 0, 0), 0 1px 0 #fff;
}
.woocommerce .woocommerce-result-count {
  padding: 13px 0;
}
.woocommerce .woocommerce-result-count, .woocommerce .woocommerce-ordering {
  margin-bottom: 30px;
}
.woocommerce span.onsale {
  width: 64px;
  height: 23px;
  min-height: unset;
  line-height: 23px;
  border-radius: 0;
  font-size: 13px;
  font-family: Roboto, Sans-serif;
  text-transform: uppercase;
  font-weight: 500;
  text-align: center;
  background-color: #1b1a1a;
  color: #fff;
  margin: 0 !important;
  padding: 0 !important;
  top: 12px !important;
  right: 12px !important;
  left: auto !important;
}
.woocommerce.single-product span.onsale {
  display: none;
}
.woocommerce .star-rating {
  margin: 0;
  letter-spacing: 0.3em;
  width: 89px;
  height: 16px;
}
.woocommerce .star-rating span::before, .woocommerce .star-rating:before {
  content: "\f27d\f27d\f27d\f27d\f27d";
  font-family: 'Material-Design-Iconic-Font';
  font-size: 16px;
  letter-spacing: 0.3em;
}
.woocommerce .star-rating span::before {
  color: #282828;
}
.woocommerce .star-rating:before {
  color: #9b9b9b;
}
.woocommerce ul.products {
  display: flex;
  flex-wrap: wrap;
  margin: 0px -15px !important;
}
.woocommerce ul.products li.product {
  padding: 0px 15px;
  margin: 0 !important;
  width: 100% !important;
}
@media screen and (min-width: 576px) {
  .woocommerce ul.products li.product {
    width: 50% !important;
  }
}
@media screen and (min-width: 992px) {
  .woocommerce ul.products li.product {
    width: 25% !important;
  }
}
.woocommerce ul.products.columns-1 li.product {
  width: 100% !important;
}
.woocommerce ul.products.columns-2 li.product {
  width: 100% !important;
}
@media screen and (min-width: 576px) {
  .woocommerce ul.products.columns-2 li.product {
    width: 50% !important;
  }
}
.woocommerce ul.products.columns-3 li.product {
  width: 100% !important;
}
@media screen and (min-width: 576px) {
  .woocommerce ul.products.columns-3 li.product {
    width: 50% !important;
  }
}
@media screen and (min-width: 768px) {
  .woocommerce ul.products.columns-3 li.product {
    width: 33.33333% !important;
  }
}
.woocommerce ul.products.columns-4 li.product {
  width: 100% !important;
}
@media screen and (min-width: 576px) {
  .woocommerce ul.products.columns-4 li.product {
    width: 50% !important;
  }
}
@media screen and (min-width: 992px) {
  .woocommerce ul.products.columns-4 li.product {
    width: 25% !important;
  }
}
.woocommerce ul.products.columns-5 li.product {
  width: 100% !important;
}
@media screen and (min-width: 576px) {
  .woocommerce ul.products.columns-5 li.product {
    width: 50% !important;
  }
}
@media screen and (min-width: 992px) {
  .woocommerce ul.products.columns-5 li.product {
    width: 20% !important;
  }
}
.woocommerce ul.products.columns-6 li.product {
  width: 100% !important;
}
@media screen and (min-width: 992px) {
  .woocommerce ul.products.columns-6 li.product {
    width: 16.66667% !important;
  }
}
.woocommerce section.related.products {
  position: relative;
  margin-top: 65px;
}
.woocommerce section.related.products h2 {
  font-size: 21px !important;
  line-height: 30px;
  font-weight: 600;
  margin-bottom: 24px;
  text-transform: capitalize;
  text-align: center;
}
@media screen and (min-width: 992px) {
  .woocommerce section.related.products ul.products li.product {
    flex: 0 0 25% !important;
    max-width: 25% !important;
  }
}
.woocommerce ul.products.owl-carousel {
  position: static;
  padding-top: 60px;
  border-top: 1px solid #c8c8c8;
  margin-top: -9px;
}
.woocommerce ul.products.owl-carousel li {
  width: 100% !important;
}
@media screen and (min-width: 480px) {
  .woocommerce ul.products.owl-carousel .owl-nav {
    position: absolute;
    top: -2px;
    right: 0;
    padding-left: 15px;
    padding-bottom: 10px;
    background: #fff;
  }
}
.woocommerce ul.products.owl-carousel .owl-nav .owl-prev, .woocommerce ul.products.owl-carousel .owl-nav .owl-next {
  width: 30px;
  height: 30px;
  line-height: 32px;
  font-size: 20px;
  background-color: #1b1a1a;
  color: #fff;
}
.woocommerce ul.products.owl-carousel .owl-nav .owl-prev {
  margin-right: 3px;
}
.woocommerce ul.products li.product .woocommerce-product-title, .woocommerce .woocommerce-product-title {
  font-size: 19px;
  font-weight: bold;
  line-height: normal;
  margin-top: 13px;
  text-transform: capitalize;
  text-align: center;
}
.woocommerce ul.products li.product .woocommerce-product-title a, .woocommerce .woocommerce-product-title a {
  color: #282828;
}
.woocommerce .woocommerce-product-meta {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  align-items: center;
  margin: 0 -10px;
}
.woocommerce .woocommerce-product-meta .star-rating {
  margin: 3px 10px 10px 12px;
}
.woocommerce ul.products li.product .price {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin: 2px 0 0 !important;
  line-height: 1;
  padding: 0 10px;
  color: #272626;
  font-size: 19px;
  font-weight: bold;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.woocommerce ul.products li.product .price del {
  opacity: 1;
  display: block;
  color: #494848;
}
.woocommerce ul.products li.product .price ins {
  color: #272626;
}
.woocommerce ul.products li.product .price span.amount {
  margin: 0 6px;
}
.woocommerce .woocommerce-product-inner .woocommerce-product-header {
  position: relative;
  transition: all 300ms ease 0s;
}
.woocommerce .woocommerce-product-inner .woocommerce-product-header img {
  margin: 0 !important;
}
.woocommerce .woocommerce-product-inner .woocommerce-product-header .woocomerce-overlay-add-cart {
  position: absolute;
  height: 100%;
  top: 0px;
  left: -1px;
  right: -1px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-direction: column;
  background: #1b1a1a;
  opacity: 0;
  padding: 0px 0px 30px 0px;
  transition: all 300ms ease 0s;
  z-index: 99;
}
.woocommerce .woocommerce-product-inner .woocommerce-product-header .woocomerce-overlay-add-cart a.button {
  position: absolute !important;
  top: 50%;
  margin: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  border-color: #fff !important;
}
.woocommerce .woocommerce-product-inner .woocommerce-product-header .woocomerce-overlay-add-cart a.button:hover {
  color: #fff !important;
}
.woocommerce .woocommerce-product-inner .woocommerce-product-holder {
  padding: 0 15px 46px;
  transition: all 300ms ease 0s;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}
.woocommerce .woocommerce-product-inner:hover .woocomerce-overlay-add-cart {
  opacity: 1;
}
.woocommerce .woocommerce-pagination {
  margin-bottom: -5px;
  margin-top: -7px;
}
.woocommerce .woocommerce-pagination ul.page-numbers {
  border: none;
}
.woocommerce .woocommerce-pagination ul.page-numbers li {
  border: none;
  overflow: inherit;
}
.woocommerce .woocommerce-pagination ul.page-numbers .page-numbers {
  font-size: 15px;
  font-family: "Oswald", sans-serif;
  font-weight: bold;
  color: #1b1a1a;
  padding: 0;
  margin: 0 5px;
  background: transparent;
  line-height: normal;
}
.woocommerce .woocommerce-pagination ul.page-numbers .page-numbers.current, .woocommerce .woocommerce-pagination ul.page-numbers .page-numbers:hover {
  color: #272626;
  text-decoration: underline;
}
.woocommerce .woocommerce-pagination ul.page-numbers .page-numbers.next {
  margin-left: 20px;
}
.woocommerce .woocommerce-pagination ul.page-numbers .page-numbers.prev {
  margin-right: 20px;
}
.single-product #shop-breadcrumb {
  padding-bottom: 46px;
}
.single-product #shop-newsletter {
  margin-top: 30px;
}
.single-product #primary .entry-summary .entry-title {
  font-size: 19px !important;
  color: #282828;
  font-weight: 600;
  text-transform: capitalize;
  margin-bottom: 2px;
}
.single-product #primary .entry-summary form.cart {
  margin-bottom: 17px;
}
.single-product #primary .entry-summary .single-price-rating {
  margin-top: 8px;
}
.single-product #primary .entry-summary .single-price-rating .woocommerce-product-rating {
  margin-bottom: 10px;
}
.single-product #primary .entry-summary .single-price-rating .woocommerce-product-rating .star-rating {
  width: 89px;
  height: 16px;
  margin-right: 25px;
}
.single-product #primary .entry-summary .single-price-rating .product_meta {
  margin-bottom: 10px;
}
.single-product #primary .entry-summary .cms-social-media a {
  color: #1b1a1a;
}
.single-product #primary .entry-summary .woocommerce-product-details__short-description {
  font-size: 15px;
  padding-top: 14px;
  padding-bottom: 0;
}
.single-product #primary .entry-summary .price {
  font-size: 26px;
  font-family: 'Inconsolata', monospace;
  color: #272626;
  font-weight: bold;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  margin-top: 10px;
  margin-bottom: 0;
}
.single-product #primary .entry-summary .price del {
  color: #494848;
  opacity: 1;
  margin-right: 10px;
}
.single-product #primary .entry-summary .price ins {
  color: #272626;
  opacity: 1;
}
.single-product #primary .entry-summary .woocommerce-review-link {
  font-size: 14px;
}
.single-product #primary .woocommerce-tabs ul.wc-tabs {
  padding: 0;
  text-align: center;
}
.single-product #primary .woocommerce-tabs ul.wc-tabs:before, .single-product #primary .woocommerce-tabs ul.wc-tabs:after {
  display: none !important;
}
.single-product #primary .woocommerce-tabs ul.wc-tabs li {
  padding: 0;
  border: none;
  background-color: transparent;
  margin: 0 11px;
}
.single-product #primary .woocommerce-tabs ul.wc-tabs li:before, .single-product #primary .woocommerce-tabs ul.wc-tabs li:after {
  display: none !important;
}
.single-product #primary .woocommerce-tabs ul.wc-tabs li a {
  padding: 6px 0;
  font-family: 'Oswald', sans-serif;
  font-size: 16px;
  text-transform: capitalize;
  letter-spacing: 0.02em;
  color: #1b1a1a;
  background-color: transparent;
  font-weight: bold;
  position: relative;
}
.single-product #primary .woocommerce-tabs ul.wc-tabs li a:after {
  content: "";
  position: absolute;
  display: block;
  width: 100%;
  transform: scale(0);
  left: 0;
  bottom: 0;
  height: 2px;
  background-color: transparent;
  transition: all 300ms ease 0s;
}
.single-product #primary .woocommerce-tabs ul.wc-tabs li a:hover:after {
  background-color: #1b1a1a;
  transform: scale(1);
}
.single-product #primary .woocommerce-tabs ul.wc-tabs li.active > a:after {
  background-color: #1b1a1a;
  transform: scale(1);
}
@media screen and (max-width: 767px) {
  .single-product #primary .woocommerce-tabs ul.wc-tabs {
    display: flex;
    flex-direction: column;
  }
  .single-product #primary .woocommerce-tabs ul.wc-tabs li {
    margin: 0;
    text-align: center;
  }
}
.single-product #primary .woocommerce-tabs .tab-product-feature-list {
  font-size: 18px;
  line-height: 34px;
}
.single-product #primary .woocommerce-tabs .tab-product-feature-list .col-xl-4 {
  font-weight: 600;
}
.single-product #primary .woocommerce-tabs .tab-product-feature-list .line-gap {
  margin: 0;
  width: 100%;
}
.single-product #primary .woocommerce-tabs .woocommerce-Tabs-panel {
  font-size: 15px;
  line-height: 25px;
}
.single-product #primary .woocommerce-tabs .woocommerce-Tabs-panel > h2 {
  display: none;
}
.single-product #primary .woocommerce-tabs .woocommerce-Tabs-panel.panel {
  padding: 0 100px;
}
@media screen and (max-width: 768px) {
  .single-product #primary .woocommerce-tabs .woocommerce-Tabs-panel.panel {
    padding: 0 15px;
  }
}
.single-product #primary .woocommerce-tabs .woocommerce-Tabs-panel--reviews #reviews .woocommerce-Reviews-title {
  font-size: 21px !important;
  font-weight: 500;
  margin-bottom: 35px;
}
.single-product #primary .woocommerce-tabs .woocommerce-Tabs-panel--reviews #reviews ol.commentlist {
  padding: 0;
  margin-bottom: 6px;
}
.single-product #primary .woocommerce-tabs .woocommerce-Tabs-panel--reviews #reviews ol.commentlist li.review {
  margin-bottom: 35px;
}
.single-product #primary .woocommerce-tabs .woocommerce-Tabs-panel--reviews #reviews ol.commentlist li.review .comment_container {
  position: relative;
}
.single-product #primary .woocommerce-tabs .woocommerce-Tabs-panel--reviews #reviews ol.commentlist li.review img.avatar {
  padding: 0;
  width: 50px;
}
@media screen and (max-width: 768px) {
  .single-product #primary .woocommerce-tabs .woocommerce-Tabs-panel--reviews #reviews ol.commentlist li.review img.avatar {
    width: 40px;
  }
}
.single-product #primary .woocommerce-tabs .woocommerce-Tabs-panel--reviews #reviews ol.commentlist li.review .comment-text {
  margin: 0 0 0 70px;
  border: 1px solid rgba(0, 0, 0, .1);
  border-radius: 0;
  padding: 20px 20px 0;
}
@media screen and (max-width: 768px) {
  .single-product #primary .woocommerce-tabs .woocommerce-Tabs-panel--reviews #reviews ol.commentlist li.review .comment-text {
    margin: 0 0 0 55px;
  }
}
.single-product #primary .woocommerce-tabs .woocommerce-Tabs-panel--reviews #reviews ol.commentlist li.review .comment-text .star-rating:before, .single-product #primary .woocommerce-tabs .woocommerce-Tabs-panel--reviews #reviews ol.commentlist li.review .comment-text .star-rating span:before {
  font-size: 16px;
}
.single-product #primary .woocommerce-tabs .woocommerce-Tabs-panel--reviews #reviews ol.commentlist li.review .meta .woocommerce-review__author {
  font-weight: 600;
  font-size: 17px;
  color: #272626;
  font-family: 'Oswald', sans-serif;
}
.single-product #primary .woocommerce-tabs .woocommerce-Tabs-panel--reviews #reviews ol.commentlist li.review .meta .woocommerce-review__published-date {
  text-transform: none;
  color: #272626;
  font-size: 14px;
}
.single-product #primary .woocommerce-tabs .woocommerce-Tabs-panel--reviews #reviews ol.commentlist li.review .description {
  font-size: 15px;
  line-height: 23x;
}
.single-product #primary .woocommerce-tabs .woocommerce-Tabs-panel--reviews #review_form_wrapper #review_form span.comment-reply-title {
  font-size: 15px;
  color: #777;
  font-family: Roboto, sans-serif;
}
.single-product #primary .woocommerce-tabs .woocommerce-Tabs-panel--reviews #review_form_wrapper #review_form .comment-form {
  display: flex;
  flex-direction: column;
}
.single-product #primary .woocommerce-tabs .woocommerce-Tabs-panel--reviews #review_form_wrapper #review_form .comment-form .comment-form-comment label {
  display: none;
}
.single-product #primary .woocommerce-tabs .woocommerce-Tabs-panel--reviews #review_form_wrapper #review_form .comment-form .comment-notes {
  order: -2;
}
.single-product #primary .woocommerce-tabs .woocommerce-Tabs-panel--reviews #review_form_wrapper #review_form .comment-form .comment-form-rating {
  order: -1;
  margin-bottom: 5px;
}
.single-product #primary .woocommerce-tabs .woocommerce-Tabs-panel--reviews #review_form_wrapper #review_form .comment-form .comment-form-rating label {
  font-size: 15px;
  font-family: Roboto, sans-serif;
  color: #222;
  letter-spacing: 0.05em;
}
.single-product #primary .woocommerce-tabs .woocommerce-Tabs-panel--reviews #review_form_wrapper #review_form .comment-form .comment-form-rating p.stars a {
  color: #282828;
}
.single-product #primary .woocommerce-tabs .woocommerce-Tabs-panel--reviews #review_form_wrapper #review_form .comment-form .comment-form-rating p.stars a:before {
  font-size: 13px;
}
.single-product #primary .woocommerce-tabs .woocommerce-Tabs-panel--reviews #review_form_wrapper #review_form .comment-form input:not(.submit), .single-product #primary .woocommerce-tabs .woocommerce-Tabs-panel--reviews #review_form_wrapper #review_form .comment-form textarea {
  font-size: 13px;
  border-radius: 0;
  background: transparent;
  margin-bottom: 0;
}
.single-product #primary .woocommerce-tabs .woocommerce-Tabs-panel--reviews #review_form_wrapper #review_form .comment-form input:not(.submit)::placeholder, .single-product #primary .woocommerce-tabs .woocommerce-Tabs-panel--reviews #review_form_wrapper #review_form .comment-form textarea::placeholder {
  color: #999;
}
.single-product #primary .woocommerce-tabs .woocommerce-Tabs-panel--reviews #review_form_wrapper #review_form .comment-form .fields-wrap {
  display: flex;
  flex-wrap: wrap;
}
.single-product #primary .woocommerce-tabs .woocommerce-Tabs-panel--reviews #review_form_wrapper #review_form .comment-form .fields-wrap .comment-form-author, .single-product #primary .woocommerce-tabs .woocommerce-Tabs-panel--reviews #review_form_wrapper #review_form .comment-form .fields-wrap .comment-form-email {
  width: 50%;
}
.single-product #primary .woocommerce-tabs .woocommerce-Tabs-panel--reviews #review_form_wrapper #review_form .comment-form .fields-wrap .comment-form-author {
  padding-right: 8px;
}
.single-product #primary .woocommerce-tabs .woocommerce-Tabs-panel--reviews #review_form_wrapper #review_form .comment-form .fields-wrap .comment-form-email {
  padding-left: 8px;
}
.single-product #primary .woocommerce-tabs .woocommerce-Tabs-panel--reviews #review_form_wrapper #review_form .comment-form .comment-form-comment textarea {
  margin-top: 6px;
  padding-top: 16px !important;
}
.single-product #primary .woocommerce-tabs .woocommerce-Tabs-panel--reviews #review_form_wrapper #review_form .comment-form .form-submit {
  margin-bottom: 16px;
}
.single-product #primary .quantity {
  margin-right: 10px;
}
.single-product #primary .product_meta .sku_wrapper, .single-product #primary .product_meta .posted_in, .single-product #primary .product_meta .tagged_as {
  display: block;
}
.single-product #primary .product_meta .sku_wrapper span.label, .single-product #primary .product_meta .posted_in span.label, .single-product #primary .product_meta .tagged_as span.label {
  font-weight: bold;
  color: #272626;
  font-size: 17px;
  line-height: 40px;
  font-family: "Oswald", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  display: inline-block;
  min-width: 125px;
}
.single-product #primary .product_meta .sku_wrapper span, .single-product #primary .product_meta .posted_in span, .single-product #primary .product_meta .tagged_as span, .single-product #primary .product_meta .sku_wrapper a, .single-product #primary .product_meta .posted_in a, .single-product #primary .product_meta .tagged_as a {
  color: #494848;
  font-size: 15px;
  font-weight: normal;
  text-transform: none;
  font-family: 'Inconsolata', monospace;
}
.single-product #primary .product_meta .sku_wrapper a:hover, .single-product #primary .product_meta .posted_in a:hover, .single-product #primary .product_meta .tagged_as a:hover {
  -webkit-box-shadow: inset 0 0 0 rgba(0, 0, 0, 0), 0 1px 0 #494848;
  box-shadow: inset 0 0 0 rgba(0, 0, 0, 0), 0 1px 0 #494848;
}
.single-product #primary .yith-wcwl-add-to-wishlist {
  margin-bottom: 25px;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: -12px;
}
.single-product #primary .yith-wcwl-add-to-wishlist a {
  color: #1b1a1a;
  cursor: pointer;
}
.woocommerce-cart #content #primary .button {
  width: 134px;
  min-width: 134px;
  height: 42px;
  padding: 0;
  line-height: 38px;
  text-transform: capitalize;
  font-size: 14px;
  font-weight: bold;
}
.woocommerce-cart .woocommerce .woocommerce-message {
  flex-direction: row;
}
.woocommerce-cart .woocommerce-cart-form table.shop_table {
  border: 1px solid #494848;
  border-radius: 0;
}
.woocommerce-cart .woocommerce-cart-form table.shop_table tr th, .woocommerce-cart .woocommerce-cart-form table.shop_table tr td {
  text-align: center;
  vertical-align: top !important;
}
.woocommerce-cart .woocommerce-cart-form table.shop_table tr th:last-child, .woocommerce-cart .woocommerce-cart-form table.shop_table tr td:last-child {
  border-right: none;
}
@media screen and (min-width: 769px) {
  .woocommerce-cart .woocommerce-cart-form table.shop_table tr th, .woocommerce-cart .woocommerce-cart-form table.shop_table tr td {
    border-right: 1px solid #494848;
  }
}
.woocommerce-cart .woocommerce-cart-form table.shop_table th {
  font-size: 15px;
  font-family: "Oswald", sans-serif;
  font-weight: bold;
  color: #272626;
  line-height: 27px;
}
@media screen and (min-width: 992px) {
  .woocommerce-cart .woocommerce-cart-form table.shop_table th.product-price, .woocommerce-cart .woocommerce-cart-form table.shop_table th.product-quantity, .woocommerce-cart .woocommerce-cart-form table.shop_table th.product-subtotal {
    width: 180px;
  }
}
.woocommerce-cart .woocommerce-cart-form table.shop_table td {
  border-top: 1px solid #494848;
  padding: 20px 20px 30px;
}
.woocommerce-cart .woocommerce-cart-form table.shop_table td > a {
  font-size: 16px;
  font-weight: bold;
  font-family: "Oswald", sans-serif;
  color: #282828;
}
.woocommerce-cart .woocommerce-cart-form table.shop_table td > span {
  font-size: 16px;
  font-weight: bold;
  color: #272626;
}
.woocommerce-cart .woocommerce-cart-form table.shop_table td.product-name {
  display: flex;
  justify-content: space-between;
}
.woocommerce-cart .woocommerce-cart-form table.shop_table td.product-name .product-thumbnail {
  flex: none;
}
.woocommerce-cart .woocommerce-cart-form table.shop_table td.product-name a.name {
  flex-grow: 1;
  text-align: left;
  padding-left: 20px;
}
.woocommerce-cart .woocommerce-cart-form table.shop_table td.product-name .product-remove a {
  display: inline-block;
  width: 20px;
  height: 20px;
  background-color: #000;
  color: #fff !important;
  text-align: center;
  line-height: 21px;
  border: none;
  border-radius: 0;
  font-weight: normal;
  font-size: 16px;
}
.woocommerce-cart .woocommerce-cart-form table.shop_table td.product-quantity .quantity {
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .woocommerce-cart .woocommerce-cart-form table.shop_table td.product-quantity .quantity {
    justify-content: flex-end;
  }
}
.woocommerce-cart .woocommerce-cart-form table.shop_table td.product-quantity .quantity .qty {
  width: 30px;
  height: 25px;
  font-size: 16px;
  font-family: 'Inconsolata', monospace;
  border-color: #272626;
}
.woocommerce-cart .woocommerce-cart-form table.shop_table td.product-quantity .quantity .quantity-icon {
  display: block;
  width: 25px;
  height: 25px;
  text-align: center;
  line-height: 25px;
  position: relative;
  border: 1px solid #272626;
  cursor: pointer;
}
.woocommerce-cart .woocommerce-cart-form table.shop_table td.product-quantity .quantity .quantity-icon.minus {
  margin-right: 5px;
}
.woocommerce-cart .woocommerce-cart-form table.shop_table td.product-quantity .quantity .quantity-icon.plus {
  margin-left: 5px;
}
.woocommerce-cart .woocommerce-cart-form table.shop_table td.product-quantity .quantity .quantity-icon i {
  font-size: 13px;
  font-weight: bold;
  color: #272626;
  cursor: pointer;
  text-align: center;
  transition: all 300ms ease 0s;
}
.woocommerce-cart .woocommerce-cart-form table.shop_table td.product-quantity .quantity .quantity-icon i:hover {
  color: #1b1a1a;
}
@media screen and (max-width: 768px) {
  .woocommerce-cart .woocommerce-cart-form table.shop_table td.product-quantity .quantity .quantity-icon .quantity-icon {
    display: none;
  }
}
.woocommerce-cart .woocommerce-cart-form table.shop_table td.actions {
  padding: 30px 30px 23px;
}
@media screen and (max-width: 575px) {
  .woocommerce-cart .woocommerce-cart-form table.shop_table td.actions {
    padding: 30px 7px 23px;
  }
}
.woocommerce-cart .woocommerce-cart-form table.shop_table td.actions .coupon #coupon_code {
  width: 250px;
  height: 42px;
  margin-right: 10px;
  font-size: 14px;
  background: transparent;
  border-color: #494848;
}
@media screen and (max-width: 768px) {
  .woocommerce-cart .woocommerce-cart-form table.shop_table td.actions .coupon {
    display: flex;
    flex-direction: column;
  }
  .woocommerce-cart .woocommerce-cart-form table.shop_table td.actions .coupon #coupon_code {
    margin-bottom: 10px;
  }
}
.woocommerce-cart .woocommerce-cart-form table.shop_table td.actions .update-and-checkout {
  display: inline-flex;
}
@media screen and (max-width: 768px) {
  .woocommerce-cart .woocommerce-cart-form table.shop_table td.actions .update-and-checkout {
    display: flex;
    margin-top: 20px;
  }
}
.woocommerce-cart .woocommerce-cart-form table.shop_table td.actions .update-and-checkout button[name="update_cart"]:disabled {
  background-color: rgba(27, 26, 26, 0.85) !important;
  color: #fff !important;
  border: rgba(27, 26, 26, 0.85) !important;
  cursor: not-allowed !important;
}
.woocommerce-cart .woocommerce-cart-form table.shop_table td.actions .update-and-checkout .wc-proceed-to-checkout {
  padding: 0;
  margin-left: 10px;
}
.woocommerce-cart .woocommerce-cart-form table.shop_table td.actions .update-and-checkout .wc-proceed-to-checkout a.button {
  margin-bottom: 0;
}
.woocommerce-cart .woocommerce-cart-form .product-remove {
  position: relative;
}
.woocommerce-cart .cart-collaterals {
  display: flex;
  flex-wrap: wrap;
  margin-top: 50px;
  margin-bottom: 25px;
}
.woocommerce-cart .cart-collaterals .molli-cart-calculator {
  width: 50%;
  padding-right: 15px;
}
@media screen and (max-width: 768px) {
  .woocommerce-cart .cart-collaterals .molli-cart-calculator {
    width: 100%;
    padding-right: 0;
    margin-bottom: 50px;
  }
}
.woocommerce-cart .cart-collaterals .molli-cart-calculator .calulator-inner {
  border: 1px solid #494848;
  padding: 20px 30px;
}
.woocommerce-cart .cart-collaterals .molli-cart-calculator .calulator-inner form h3 {
  font-size: 17px;
  margin-bottom: 12px;
}
.woocommerce-cart .cart-collaterals .molli-cart-calculator .calulator-inner form select, .woocommerce-cart .cart-collaterals .molli-cart-calculator .calulator-inner form .select2-selection, .woocommerce-cart .cart-collaterals .molli-cart-calculator .calulator-inner form input {
  border: 1px solid #494848;
  background: transparent;
  font-size: 15px;
  height: 38px;
}
.woocommerce-cart .cart-collaterals .molli-cart-calculator .calulator-inner form .shipping-calculator-form .form-row {
  padding: 0;
  margin-bottom: 18px;
}
.woocommerce-cart .cart-collaterals .molli-cart-calculator .calulator-inner form .shipping-calculator-form .form-row:first-child {
  margin-bottom: 22px;
}
.woocommerce-cart .cart-collaterals .molli-cart-calculator .calulator-inner form .shipping-calculator-form .state-postcode-wrap {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 1px;
}
.woocommerce-cart .cart-collaterals .molli-cart-calculator .calulator-inner form .shipping-calculator-form .state-postcode-wrap > p {
  width: 50%;
}
.woocommerce-cart .cart-collaterals .molli-cart-calculator .calulator-inner form .shipping-calculator-form .state-postcode-wrap > p:first-child {
  padding-right: 15px;
}
.woocommerce-cart .cart-collaterals .molli-cart-calculator .calulator-inner form .shipping-calculator-form .state-postcode-wrap > p:first-child.validate-required + p {
  padding-left: 15px;
}
@media screen and (max-width: 575px) {
  .woocommerce-cart .cart-collaterals .molli-cart-calculator .calulator-inner form .shipping-calculator-form .state-postcode-wrap > p {
    width: 100%;
    padding: 0 !important;
  }
}
.woocommerce-cart .cart-collaterals .molli-cart-calculator .calulator-inner form .shipping-calculator-form .shipping-button {
  text-align: right;
  margin-bottom: 10px;
}
.woocommerce-cart .cart-collaterals .cart-collaterals-wrap {
  width: 50%;
  padding-left: 15px;
}
@media screen and (max-width: 768px) {
  .woocommerce-cart .cart-collaterals .cart-collaterals-wrap {
    width: 100%;
    padding-left: 0;
  }
}
.woocommerce-cart .cart-collaterals .cart-collaterals-wrap .cart_totals {
  border: 1px solid #494848;
  float: none;
  width: 100%;
  padding: 21px 30px 13px;
}
.woocommerce-cart .cart-collaterals .cart-collaterals-wrap .cart_totals h2 {
  font-size: 17px;
  margin-bottom: 15px;
}
.woocommerce-cart .cart-collaterals .cart-collaterals-wrap .cart_totals table.shop_table {
  border: none;
}
.woocommerce-cart .cart-collaterals .cart-collaterals-wrap .cart_totals table.shop_table th, .woocommerce-cart .cart-collaterals .cart-collaterals-wrap .cart_totals table.shop_table td {
  padding: 6px 0;
}
.woocommerce-cart .cart-collaterals .cart-collaterals-wrap .cart_totals table.shop_table th {
  font-size: 15px;
  font-family: "Oswald", sans-serif;
  font-weight: bold;
  border: none;
}
.woocommerce-cart .cart-collaterals .cart-collaterals-wrap .cart_totals table.shop_table td {
  text-align: right;
  border: none;
}
.woocommerce-checkout #customer_details {
  margin: 0 -15px;
}
.woocommerce-checkout #customer_details .col-1, .woocommerce-checkout #customer_details .col-2 {
  width: 50%;
  flex: inherit;
  max-width: 100%;
}
@media screen and (max-width: 767px) {
  .woocommerce-checkout #customer_details {
    margin: 0;
  }
  .woocommerce-checkout #customer_details .col-1, .woocommerce-checkout #customer_details .col-2 {
    width: 100%;
  }
}
.woocommerce-checkout #customer_details label {
  font-size: 16px;
  color: rgba(0, 0, 0, 0.87);
  font-weight: 600;
  display: block;
  width: 100%;
  margin-bottom: 4px;
}
.woocommerce-checkout #customer_details span.woocommerce-input-wrapper {
  width: 100%;
  display: block;
}
.woocommerce-checkout #customer_details span.woocommerce-input-wrapper .select2-container--default .select2-selection {
  height: 50px;
}
.woocommerce-checkout #customer_details span.woocommerce-input-wrapper .select2-container--default .select2-selection .select2-selection__rendered {
  line-height: 47px;
}
.woocommerce-checkout #customer_details .woocommerce-billing-fields {
  margin-bottom: 45px;
}
.woocommerce-checkout #customer_details .woocommerce-billing-fields > h3 {
  font-size: 28px;
}
.woocommerce-checkout #customer_details .woocommerce-additional-fields {
  margin-bottom: 45px;
}
.woocommerce-checkout #customer_details .woocommerce-additional-fields > h3 {
  font-size: 28px;
}
.woocommerce-checkout form.woocommerce-checkout #order_review_heading {
  font-size: 28px;
}
.woocommerce-checkout #payment label {
  font-size: 16px;
  color: rgba(0, 0, 0, 0.87);
  font-weight: 600;
}
.woocommerce-checkout img {
  width: auto;
}
.woocommerce-account .woocommerce-MyAccount-navigation {
  margin-bottom: 30px;
}
.woocommerce-account .woocommerce-MyAccount-navigation ul {
  margin: 0;
  list-style: none;
}
.woocommerce-account .woocommerce-MyAccount-navigation ul li {
  border-bottom: 1px solid #e5e5e6;
  padding: 13px 0;
  position: relative;
}
.woocommerce-account .woocommerce-MyAccount-navigation ul li a {
  font-size: 16px;
  color: #272626;
}
.woocommerce-account .woocommerce-MyAccount-navigation ul li a:hover {
  color: #1b1a1a;
}
.woocommerce-account .woocommerce-MyAccount-navigation ul li.is-active > a {
  color: #1b1a1a;
}
.woocommerce-account .woocommerce-MyAccount-content {
  margin-bottom: 30px;
}
.woocommerce-account #customer_login {
  margin: 0 -15px;
}
.woocommerce-account #customer_login h2 {
  font-size: 28px;
}
.woocommerce-account #customer_login label {
  font-size: 16px;
  color: rgba(0, 0, 0, 0.87);
  font-weight: 600;
  display: block;
  width: 100%;
  margin-bottom: 4px;
}
.woocommerce-account #customer_login .woocommerce-Button {
  margin-right: 16px;
}
.woocommerce-account #customer_login form .form-row label {
  line-height: normal;
  padding: 10px 0;
}
.woocommerce-account #customer_login .u-column1.col-1, .woocommerce-account #customer_login .u-column2.col-2 {
  width: 50%;
  flex: inherit;
  max-width: 100%;
}
@media screen and (max-width: 767px) {
  .woocommerce-account #customer_login {
    margin: 0;
  }
  .woocommerce-account #customer_login .u-column1.col-1, .woocommerce-account #customer_login .u-column2.col-2 {
    width: 100%;
  }
}
.woocommerce-account .woocommerce-password-strength.bad {
  background-color: transparent;
  padding: 8px 0;
}
