/*===================== Variable =====================*/
/*=== Grid & Layout ===*/
/*=== Color === */
/*=== Background Color ===*/
.clear,
.clear-after:after,
.clear-before:before,
.row:after {
  content: '';
  display: table;
  clear: both;
}
.row,
.sidebar-right #page-body .content-wrap,
.sidebar-left #page-body .content-wrap {
  margin-left: -15px;
  margin-right: -15px;
}
.columns,
.sidebar-right #page-body .content-wrap .content,
.sidebar-right #page-body .content-wrap .sidebars,
.sidebar-left #page-body .content-wrap .content,
.sidebar-left #page-body .content-wrap .sidebars {
  float: left;
  padding: 0 15px;
}
.columns-1 {
  width: 8.333333333333334%;
}
.columns-2 {
  width: 16.666666666666668%;
}
.columns-3,
.sidebar-right #page-body .content-wrap .sidebars,
.sidebar-left #page-body .content-wrap .sidebars {
  width: 25%;
}
.columns-4 {
  width: 33.333333333333336%;
}
.columns-5 {
  width: 41.666666666666664%;
}
.columns-6 {
  width: 50%;
}
.columns-7 {
  width: 58.333333333333336%;
}
.columns-8 {
  width: 66.66666666666667%;
}
.columns-9,
.sidebar-right #page-body .content-wrap .content,
.sidebar-left #page-body .content-wrap .content {
  width: 75%;
}
.columns-10 {
  width: 83.33333333333333%;
}
.columns-11 {
  width: 91.66666666666667%;
}
.columns-12 {
  width: 100%;
}
.pull-1 {
  left: -8.33333333%;
}
.pull-2 {
  left: -16.66666667%;
}
.pull-3 {
  left: -25%;
}
.pull-4 {
  left: -33.33333333%;
}
.pull-5 {
  left: -41.66666667%;
}
.pull-6 {
  left: -50%;
}
.pull-7 {
  left: -58.33333333%;
}
.pull-8 {
  left: -66.66666667%;
}
.pull-9,
.sidebar-left #page-body .content-wrap .sidebars {
  left: -75%;
}
.pull-10 {
  left: -83.33333333%;
}
.pull-11 {
  left: -91.66666667%;
}
.pull-12 {
  left: -100%;
}
.push-1 {
  left: 8.333333333333334%;
}
.push-2 {
  left: 16.666666666666668%;
}
.push-3,
.sidebar-left #page-body .content-wrap .content {
  left: 25%;
}
.push-4 {
  left: 33.333333333333336%;
}
.push-5 {
  left: 41.666666666666664%;
}
.push-6 {
  left: 50%;
}
.push-7 {
  left: 58.333333333333336%;
}
.push-8 {
  left: 66.66666666666667%;
}
.push-9 {
  left: 75%;
}
.push-10 {
  left: 83.33333333333333%;
}
.push-11 {
  left: 91.66666666666667%;
}
.push-12 {
  left: 100%;
}
/*============================================================ 
                        CSS OVERVIEWS
                1. GENERAL
                2. LAYOUT
                3. HEADER
                	3.1. Headerbar
                	3.2. Masthead
                		3.1.1. Site Brand
                		3.1.2. Site Navigator
                		3.1.3. Site Navigator Mobile
                4. CONTENT
                	4.1. Page Header
                	4.2. Page Breadcrumbs
                	4.3. Page Body
                5. WIDGET
                6. FOOTER
                7. BLOG	
                8. NAVIGATION
                9. OTHER PAGES
                	9.1. Author
                	9.2. Search
                	9.3. Error404
                	9.4. Blank Page
                10. MEMBER
                11. PROJECTS	
                12. OTHER
                	12.1. Comments
                	12.2. Form
                	12.3. Gallery
                	12.4. Go To Top
                           	
============================================================*/
/* ============================================================ 
    1. GENERAL
=============================================================*/
*,
*:after,
*:before {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  text-rendering: optimizeLegibility;
  outline: 0;
}
*:focus,
*:after:focus,
*:before:focus {
  outline: 0;
}
*:after,
*:before {
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
}
html body * {
  -moz-osx-font-smoothing: auto;
  -webkit-font-smoothing: auto;
}
.page-loading .loading-overlay {
  -webkit-opacity: 1;
  -khtml-opacity: 1;
  -moz-opacity: 1;
  opacity: 1;
  -ms-filter: progid:DXImageTransform.Microsoft.Alpha(opacity=100);
  filter: alpha(opacity=100);
  display: block;
  visibility: visible;
}
.loading-overlay {
  position: fixed;
  background: #fff;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  z-index: 99999;
  visibility: hidden;
  display: none;
  -webkit-opacity: 0;
  -khtml-opacity: 0;
  -moz-opacity: 0;
  opacity: 0;
  -ms-filter: progid:DXImageTransform.Microsoft.Alpha(opacity=0);
  filter: alpha(opacity=0);
}
.loading-overlay:after {
  content: "";
  position: absolute;
  display: block;
  width: 80px;
  height: 80px;
  top: 50%;
  left: 50%;
  margin-left: -40px;
  margin-top: -40px;
  -webkit-border-radius: 80px;
  -moz-border-radius: 80px;
  -ms-border-radius: 80px;
  -o-border-radius: 80px;
  border-radius: 80px;
  -webkit-box-shadow: 0 3px 0 #1a1a1a;
  -moz-box-shadow: 0 3px 0 #1a1a1a;
  -ms-box-shadow: 0 3px 0 #1a1a1a;
  -o-box-shadow: 0 3px 0 #1a1a1a;
  box-shadow: 0 3px 0 #1a1a1a;
  -webkit-animation: uil-ring-anim 0.5s linear infinite;
  -moz-animation: uil-ring-anim 0.5s linear infinite;
  -ms-animation: uil-ring-anim 0.5s linear infinite;
  -o-animation: uil-ring-anim 0.5s linear infinite;
  animation: uil-ring-anim 0.5s linear infinite;
}
.clear:before,
.clear:after {
  content: ' ';
  display: table;
}
.clear:after {
  clear: both;
}
.clear,
.clear-after:after,
.clear-before:before,
.row:after {
  *zoom: 1;
}
.transition,
.loading-overlay,
.link-more:before,
a,
a.link:after,
textarea,
input[type="text"],
input[type="password"],
input[type="datetime"],
input[type="datetime-local"],
input[type="date"],
input[type="month"],
input[type="time"],
input[type="week"],
input[type="number"],
input[type="email"],
input[type="url"],
input[type="search"],
input[type="tel"],
input[type="color"],
input.input-text,
input[type="submit"],
button[type="submit"],
.button,
.box-button a,
input[type="submit"]:after,
button[type="submit"]:after,
.button:after,
.box-button a:after,
#site-header #headerbar .top-navigator .menu li .sub-menu,
#site-header #masthead #site-navigator .menu > li > a:after,
#site-header #masthead #site-navigator .menu li .sub-menu,
#site-header #masthead #site-navigator .menu li .sub-menu li a:before,
#site-header #masthead #site-navigator .menu.menu-extra .shopping-cart .submenu,
.widget.widget_search .search-form .search-submit,
.navigation.post-navigation .nav-links li.prev-post a:after,
.navigation.post-navigation .nav-links li.next-post a:after,
.navigation.post-navigation .nav-links li.go-back .icon span,
.navigation.post-navigation .nav-links li.go-back .icon span:after,
.navigation.post-navigation .nav-links li.go-back .icon span:before,
.navigation.loadmore a:before,
.search #main-content .content-inner .search-form .search-submit,
.search #main-content .content-inner .search-results article .counter,
.error404 #main-content .content-inner .content-404 .search-form .search-submit,
.social-share .social-share-wrap li a:after,
.appreciation-box .appreciation-box-content button,
#comments .comment-list li .comment-body .reply a:after,
.gallery-caption,
.projects.projects-grid .projects-items .hentry .project-thumbnail a img,
.projects.projects-grid .projects-items .hentry .project-info,
.projects.projects-grid .projects-items .hentry .project-info .project-categories li a:before,
.projects.projects-grid-alt .projects-items .hentry .project-info,
.projects.projects-grid-alt .projects-items .hentry .project-info .project-categories li a:before,
.projects.projects-grid-alt .projects-items .hentry .project-info .project-title:after,
.projects.projects-masonry .projects-filter ul li a:before,
.projects.projects-masonry .projects-items .hentry .project-info .project-categories li a:before,
.projects.projects-masonry .projects-items .hentry .project-info .project-title:after,
.projects.projects-justified .projects-items .hentry > a:after,
.projects.projects-justified .projects-items .hentry .project-info .project-categories li a:after,
.projects .projects-filter ul li a:after,
.projects .projects-items,
.project-single .project-media-item a img,
.project-single .project-meta ul li a:after,
.blog .hentry .entry-cover a img,
.single-post .hentry .entry-cover a img,
.blog .hentry .entry-header .entry-meta a:after,
.single-post .hentry .entry-header .entry-meta a:after,
.blog .hentry .entry-content .readmore .more-link:before,
.single-post .hentry .entry-content .readmore .more-link:before,
.woocommerce .products li .product-thumbnail a img,
.woocommerce-page .products li .product-thumbnail a img,
.woocommerce .products li .product-info,
.woocommerce-page .products li .product-info,
.woocommerce .products li .product-info h3,
.woocommerce-page .products li .product-info h3,
.woocommerce .products li .product-info .secondary-image,
.woocommerce-page .products li .product-info .secondary-image,
.woocommerce .products li.product-category a img,
.woocommerce-page .products li.product-category a img,
.woocommerce .product .summary .product_meta a:after,
.woocommerce-page .product .summary .product_meta a:after,
.woocommerce .product .woocommerce-tabs .tabs li a:after,
.woocommerce-page .product .woocommerce-tabs .tabs li a:after,
.widget.widget_product_search .woocommerce-product-search input[type="submit"],
#site-wrapper .scrollslider .swiper-container .swiper-wrapper .slide-container,
#site-wrapper .iconbox .box-content .box-readmore a:before,
#site-wrapper .member .member-info,
#site-wrapper .imagebox .box-image img,
#site-wrapper .imagebox .box-header,
#site-wrapper .imagebox .box-content,
#site-wrapper .iconlist li.circle i,
#site-wrapper .owl-controls .owl-buttons > div,
#site-wrapper .blog-shortcode.blog-grid .hentry .entry-wrapper,
#site-wrapper .blog-shortcode.blog-grid .hentry .entry-content .read-more a:before,
#site-wrapper .blog-shortcode.post-thumbnail-cover .hentry .entry-cover a img,
#site-wrapper .blog-shortcode.blog-list.post-date-cover .blog-entries .hentry .entry-wrapper .entry-header .entry-title a:after,
#site-wrapper .blog-shortcode.blog-list.post-date-cover .blog-entries .hentry .entry-wrapper .entry-content .read-more a:before,
#site-wrapper .posts-carousel .hentry .entry-cover a img,
.header-v2 #site-header #masthead #site-navigator .navigator-toggle span:after,
.header-v2 #site-header #masthead #site-navigator .navigator-toggle span:before,
.header-v5 #site-header #masthead,
.header-v5 #site-header #masthead .wrapper,
.header-v5 #site-header #masthead #site-navigator .navigator-toggle span:after,
.header-v5 #site-header #masthead #site-navigator .navigator-toggle span:before,
.header-v4 #site-header #masthead {
  -webkit-transition: all 0.2s ease-in-out 0s;
  -moz-transition: all 0.2s ease-in-out 0s;
  -ms-transition: all 0.2s ease-in-out 0s;
  -o-transition: all 0.2s ease-in-out 0s;
  transition: all 0.2s ease-in-out 0s;
}
.wp-caption {
  max-width: 100%;
}
.wp-caption-text {
  font-size: 12px;
  font-style: italic;
  color: #b3b3b3;
}
.alignleft {
  float: left;
  margin: 10px 20px 10px 0;
  clear: left;
}
.alignright {
  float: right;
  margin: 10px 0 10px 20px;
  clear: right;
}
.aligncenter {
  text-align: center;
}
.aligncenter.wp-caption {
  margin: 0 auto;
}
.bypostauthor {
  font-weight: normal;
}
.highlight {
  padding: 0 10px;
  background: #1a1a1a;
}
.wrapper {
  margin: 0 auto;
  position: relative;
}
.wrapper:after {
  clear: both;
  content: "";
  display: table;
}
.group-btn .button:first-child {
  margin-right: 8px;
}
.group-btn .button:last-child {
  margin-left: 8px;
}
.group-btn .link {
  margin-left: 30px;
  color: #fff;
  padding-bottom: 2px;
}
.group-btn .link:hover {
  border-color: #fff;
}
.link-more {
  position: relative;
}
.link-more:before {
  background: url(../../assets/img/arrow.svg);
  background-size: 30px 20px;
  position: absolute;
  right: -30px;
  top: 50%;
  margin-top: -10px;
  height: 20px;
  width: 30px;
  content: "";
  -webkit-opacity: 0;
  -khtml-opacity: 0;
  -moz-opacity: 0;
  opacity: 0;
  -ms-filter: progid:DXImageTransform.Microsoft.Alpha(opacity=0);
  filter: alpha(opacity=0);
}
.link-more:hover {
  margin-left: -10px;
}
.link-more:hover:before {
  right: -45px;
  -webkit-opacity: 1;
  -khtml-opacity: 1;
  -moz-opacity: 1;
  opacity: 1;
  -ms-filter: progid:DXImageTransform.Microsoft.Alpha(opacity=100);
  filter: alpha(opacity=100);
}
html {
  overflow-x: hidden;
}
body {
  font-size: 14px;
  line-height: 1.8;
  overflow-x: hidden;
}
body i.fa {
  font-size: 14px;
}
body i.fa.fa-2x {
  font-size: 2em;
}
body i.fa.fa-3x {
  font-size: 3em;
}
body i.fa.fa-4x {
  font-size: 4em;
}
body i.fa.fa-5x {
  font-size: 5em;
}
body i.fa.icons {
  font-family: "simple-line-icons";
}
body .large-icons .icons {
  font-size: 22pt;
}
a {
  text-decoration: none;
  color: #000;
}
a:hover {
  color: inherit;
}
a.link {
  position: relative;
}
a.link:after {
  width: 100%;
  height: 2px;
  left: 0;
  right: 0;
  bottom: 0;
  position: absolute;
  content: "";
  background: #1a1a1a;
}
a.link:hover:after {
  width: 0;
}
h1 a.link:after,
h2 a.link:after {
  height: 3px;
}
p {
  margin-top: 0;
  margin-bottom: 20px;
}
p:last-child {
  margin-bottom: 0;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 30px 0 20px 0;
  color: #1a1a1a;
  line-height: 1.4;
  position: relative;
}
h1.style1,
h2.style1,
h3.style1,
h4.style1,
h5.style1,
h6.style1 {
  margin-bottom: 70px;
}
h1.style1:after,
h2.style1:after,
h3.style1:after,
h4.style1:after,
h5.style1:after,
h6.style1:after {
  height: 11px;
  width: 162px;
  content: "";
  position: absolute;
  left: 0;
  bottom: -35px;
  background-image: url(../../assets/img/divider.png);
}
h1.style1[style="text-align: center;"]:after,
h2.style1[style="text-align: center;"]:after,
h3.style1[style="text-align: center;"]:after,
h4.style1[style="text-align: center;"]:after,
h5.style1[style="text-align: center;"]:after,
h6.style1[style="text-align: center;"]:after,
h1.style1.aligncenter:after,
h2.style1.aligncenter:after,
h3.style1.aligncenter:after,
h4.style1.aligncenter:after,
h5.style1.aligncenter:after,
h6.style1.aligncenter:after {
  left: 50%;
  margin-left: -81px;
}
h6 {
  text-transform: uppercase;
  font-weight: 400;
}
img {
  border: medium none;
  height: auto;
  max-width: 100%;
  vertical-align: top;
}
textarea,
input[type="text"],
input[type="password"],
input[type="datetime"],
input[type="datetime-local"],
input[type="date"],
input[type="month"],
input[type="time"],
input[type="week"],
input[type="number"],
input[type="email"],
input[type="url"],
input[type="search"],
input[type="tel"],
input[type="color"],
input.input-text {
  background: #f5f5f5;
  position: relative;
  border: 2px solid transparent;
  padding: 0;
  height: 45px;
  max-width: 100%;
  padding: 10px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  -ms-box-shadow: none;
  -o-box-shadow: none;
  box-shadow: none;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  -o-border-radius: 0;
  border-radius: 0;
}
textarea:disabled,
input[type="text"]:disabled,
input[type="password"]:disabled,
input[type="datetime"]:disabled,
input[type="datetime-local"]:disabled,
input[type="date"]:disabled,
input[type="month"]:disabled,
input[type="time"]:disabled,
input[type="week"]:disabled,
input[type="number"]:disabled,
input[type="email"]:disabled,
input[type="url"]:disabled,
input[type="search"]:disabled,
input[type="tel"]:disabled,
input[type="color"]:disabled,
input.input-text:disabled {
  cursor: no-drop;
}
textarea:focus,
input[type="text"]:focus,
input[type="password"]:focus,
input[type="datetime"]:focus,
input[type="datetime-local"]:focus,
input[type="date"]:focus,
input[type="month"]:focus,
input[type="time"]:focus,
input[type="week"]:focus,
input[type="number"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="search"]:focus,
input[type="tel"]:focus,
input[type="color"]:focus,
input.input-text:focus {
  background: #fff;
}
textarea {
  height: auto;
  line-height: 1.8em;
  max-height: 150px;
  resize: none;
}
select {
  border: 2px solid transparent;
  background-color: #f5f5f5;
  height: 45px;
  padding: 10px;
  line-height: 100%;
  outline: 0;
  max-width: 100%;
  background-image: url(../../assets/img/caret.png);
  background-position: 95% center;
  background-repeat: no-repeat;
  position: relative;
  text-indent: 0.01px;
  text-overflow: '';
  cursor: pointer;
  -webkit-appearance: none;
  -moz-appearance: none;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  -ms-box-shadow: none;
  -o-box-shadow: none;
  box-shadow: none;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  -o-border-radius: 0;
  border-radius: 0;
}
input[type="submit"],
button[type="submit"],
.button,
.box-button a {
  color: #fff;
  background-image: none;
  height: 45px;
  line-height: 45px;
  padding: 0 30px;
  cursor: pointer;
  white-space: nowrap;
  border: none;
  display: inline-block;
  position: relative;
  z-index: 1;
  background: #1a1a1a;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  -o-border-radius: 0;
  border-radius: 0;
}
input[type="submit"]:disabled,
button[type="submit"]:disabled,
.button:disabled,
.box-button a:disabled {
  background: #f2f2f2;
  color: #b3b3b3;
  cursor: no-drop;
  border: none;
}
input[type="submit"].outline,
button[type="submit"].outline,
.button.outline,
.box-button a.outline {
  line-height: 41px;
  background: none;
  border: 2px solid;
}
input[type="submit"]:hover,
button[type="submit"]:hover,
.button:hover,
.box-button a:hover {
  color: #000;
}
input[type="submit"]:hover:after,
button[type="submit"]:hover:after,
.button:hover:after,
.box-button a:hover:after {
  width: 100%;
}
input[type="submit"]:after,
button[type="submit"]:after,
.button:after,
.box-button a:after {
  width: 0;
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  height: 100%;
  z-index: -1;
}
input[type="submit"].lg,
button[type="submit"].lg,
.button.lg,
.box-button a.lg {
  height: 60px;
  line-height: 60px;
  padding: 0 50px;
  font-size: 16px;
}
blockquote {
  margin: 30px 50px;
  position: relative;
  color: #1a1a1a;
  font-size: 20px;
}
cite {
  display: block;
  margin: 15px 0 0 0;
  font-size: 0.9em;
  color: #b3b3b3;
}
code {
  background: #f5f5f5;
  padding: 5px;
}
table {
  width: 100%;
}
table thead {
  text-align: left;
}
table thead th {
  padding: 20px;
  color: #fff;
  background: #1a1a1a;
  font-weight: normal;
}
table tbody tr {
  background: #f0f0f0;
}
table tbody tr:nth-child(2n) {
  background: #f5f5f5;
}
table tbody tr td,
table tbody tr th {
  padding: 20px;
  text-align: left;
  font-weight: normal;
}
table tfoot tr {
  background: #1a1a1a;
  text-align: left;
  color: #fff;
}
table tfoot tr th,
table tfoot tr td {
  padding: 20px;
  font-weight: normal;
}
table tfoot tr th a,
table tfoot tr td a {
  color: #999;
}
table tfoot tr th a:hover,
table tfoot tr td a:hover {
  color: #fff;
}
dl dd {
  margin: 0 0 20px 0;
}
pre {
  background: rgba(0, 0, 0, 0.05);
  padding: 20px;
}
figure {
  margin: 1em 0;
}
figcaption {
  margin: 10px 0;
}
article:after {
  clear: both;
  content: "";
  display: table;
}
/* ============================================================ 
    2. LAYOUT
=============================================================*/
.sidebar-right #page-body .content-wrap:after {
  clear: both;
  content: "";
  display: table;
}
.sidebar-right #page-body .content-wrap .content {
  padding-right: 25px;
  width: 70%;
}
.sidebar-right #page-body .content-wrap .sidebars {
  padding-left: 25px;
  width: 30%;
}
.sidebar-left #page-body .content-wrap:after {
  clear: both;
  content: "";
  display: table;
}
.sidebar-left #page-body .content-wrap .content {
  padding-left: 25px;
  width: 70%;
  left: 30%;
}
.sidebar-left #page-body .content-wrap .sidebars {
  padding-right: 25px;
  width: 30%;
  left: -70%;
}
.admin-bar #site-header #masthead.stick {
  top: 32px;
  position: fixed;
}
.bg-scheme {
  color: #fff;
}
/* ============================================================ 
    3. HEADER
=============================================================*/
.header-v1 #site-header #masthead.stick {
  position: fixed;
  background: #fff;
  top: 0;
  left: 0;
  right: 0;
}
.header-v1 #site-header #masthead #site-navigator .menu > li:last-child {
  margin-right: 0;
}
.header-v1.admin-bar #site-header #masthead.stick {
  top: 32px;
}
#site-header {
  /* ============================================================ 
	    3.1. Headerbar
	=============================================================*/
  /* ============================================================ 
	    3.1. Masthead
	=============================================================*/
}
#site-header #headerbar {
  color: #a0a0a0;
  font-size: 14px;
  padding: 10px 0;
  background: #1a1a1a;
}
#site-header #headerbar .custom-info {
  float: left;
}
#site-header #headerbar .custom-info i {
  margin-right: 10px;
}
#site-header #headerbar .custom-info .spacer {
  width: 30px;
  display: inline-block;
}
#site-header #headerbar .social-links {
  float: right;
}
#site-header #headerbar .social-links a {
  float: left;
  display: block;
  margin-left: 18px;
  color: #a0a0a0;
}
#site-header #headerbar .social-links a i {
  font-size: 18px;
  vertical-align: middle;
}
#site-header #headerbar .top-navigator {
  float: right;
}
#site-header #headerbar .top-navigator .menu {
  margin: 0;
  padding: 0;
}
#site-header #headerbar .top-navigator .menu li {
  list-style: none;
  float: left;
  z-index: 9;
}
#site-header #headerbar .top-navigator .menu li a {
  padding: 0 18px;
  display: block;
  color: #999;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}
#site-header #headerbar .top-navigator .menu li:hover a {
  color: #fff;
}
#site-header #headerbar .top-navigator .menu li.menu-item-has-children {
  position: relative;
  z-index: 999;
}
#site-header #headerbar .top-navigator .menu li.menu-item-has-children:hover .sub-menu {
  -webkit-opacity: 1;
  -khtml-opacity: 1;
  -moz-opacity: 1;
  opacity: 1;
  -ms-filter: progid:DXImageTransform.Microsoft.Alpha(opacity=100);
  filter: alpha(opacity=100);
  display: block\9;
  visibility: visible;
}
#site-header #headerbar .top-navigator .menu li .sub-menu {
  position: absolute;
  top: 35px;
  left: 0;
  width: 250px;
  margin: 0;
  padding: 0 0 10px 0;
  visibility: hidden;
  display: none\9;
  background: #222;
  -webkit-opacity: 0;
  -khtml-opacity: 0;
  -moz-opacity: 0;
  opacity: 0;
  -ms-filter: progid:DXImageTransform.Microsoft.Alpha(opacity=0);
  filter: alpha(opacity=0);
}
#site-header #headerbar .top-navigator .menu li .sub-menu li {
  float: none;
}
#site-header #headerbar .top-navigator .menu li .sub-menu li a {
  padding: 5px 18px;
  display: block;
  margin: 0;
  color: #ccc;
  border: none;
}
#site-header #headerbar .top-navigator .menu li .sub-menu li a:hover {
  background: rgba(0, 0, 0, 0.2);
  color: #fff;
}
#site-header #masthead {
  position: relative;
  width: 100%;
  z-index: 99;
  /* ============================================================ 
		    3.1.1. Site Brand
		=============================================================*/
  /* ============================================================ 
		    3.1.2. Site Navigator
		=============================================================*/
  /* ============================================================ 
		    3.1.3. Site Navigator Mobile
		=============================================================*/
}
#site-header #masthead + #masthead-placeholder {
  display: none;
}
#site-header #masthead.stick + #masthead-placeholder {
  display: block;
}
#site-header #masthead #site-brand #site-logo {
  float: left;
  position: relative;
}
#site-header #masthead #site-brand #site-logo .logo {
  margin: 0;
  font-weight: bold;
  font-size: 40px;
  line-height: 77px;
}
#site-header #masthead #site-brand #site-logo .logo a {
  display: block;
}
#site-header #masthead #site-brand #site-logo .logo a img {
  vertical-align: middle;
  display: table;
}
#site-header #masthead #site-brand #site-logo .logo a img.logo-retina {
  display: none;
}
#site-header #masthead #site-navigator {
  float: right;
  margin-top: 20px;
}
#site-header #masthead #site-navigator .menu {
  padding: 0;
  margin: 0;
  float: left;
}
#site-header #masthead #site-navigator .menu > .current-menu-item > a,
#site-header #masthead #site-navigator .menu > .current-menu-ancestor > a {
  color: #1a1a1a;
}
#site-header #masthead #site-navigator .menu > .current-menu-item > a:after,
#site-header #masthead #site-navigator .menu > .current-menu-ancestor > a:after {
  width: 100%;
}
#site-header #masthead #site-navigator .menu > li:hover > a {
  color: #1a1a1a;
}
#site-header #masthead #site-navigator .menu > li:hover > a:after {
  width: 100%;
}
#site-header #masthead #site-navigator .menu > li > a {
  text-transform: uppercase;
}
#site-header #masthead #site-navigator .menu > li > a:after {
  position: absolute;
  content: "";
  width: 0;
  height: 1px;
  left: 0;
  bottom: 7px;
  background: rgba(0, 0, 0, 0.6);
}
#site-header #masthead #site-navigator .menu li {
  list-style: none;
  float: left;
  position: relative;
  margin-right: 30px;
}
#site-header #masthead #site-navigator .menu li:hover > .sub-menu {
  -webkit-opacity: 1;
  -khtml-opacity: 1;
  -moz-opacity: 1;
  opacity: 1;
  -ms-filter: progid:DXImageTransform.Microsoft.Alpha(opacity=100);
  filter: alpha(opacity=100);
  visibility: visible;
  display: block\9;
  top: 100%;
}
#site-header #masthead #site-navigator .menu li a {
  display: block;
  padding: 15px 0;
  position: relative;
}
#site-header #masthead #site-navigator .menu li .sub-menu {
  position: absolute;
  width: 250px;
  padding: 20px 0;
  margin: 0;
  visibility: hidden;
  display: none\9;
  left: -28px;
  top: 110%;
  background: #1a1a1a;
  -webkit-opacity: 0;
  -khtml-opacity: 0;
  -moz-opacity: 0;
  opacity: 0;
  -ms-filter: progid:DXImageTransform.Microsoft.Alpha(opacity=0);
  filter: alpha(opacity=0);
}
#site-header #masthead #site-navigator .menu li .sub-menu li {
  display: block;
  float: none;
  margin: 0;
}
#site-header #masthead #site-navigator .menu li .sub-menu li a {
  padding: 5px 20px;
  position: relative;
  font-size: 14px;
  color: #a0a0a0;
}
#site-header #masthead #site-navigator .menu li .sub-menu li a:before {
  width: 0;
  height: 1px;
  background: #fff;
  content: "";
  display: inline-block;
  margin-right: 8px;
  vertical-align: middle;
  margin-top: -1px;
}
#site-header #masthead #site-navigator .menu li .sub-menu li .sub-menu {
  left: 250px;
  top: -20px;
}
#site-header #masthead #site-navigator .menu li .sub-menu li:hover > a,
#site-header #masthead #site-navigator .menu li .sub-menu li.current-menu-item > a,
#site-header #masthead #site-navigator .menu li .sub-menu li .current_page_item > a {
  color: #fff;
}
#site-header #masthead #site-navigator .menu li .sub-menu li:hover > a:before,
#site-header #masthead #site-navigator .menu li .sub-menu li.current-menu-item > a:before,
#site-header #masthead #site-navigator .menu li .sub-menu li .current_page_item > a:before {
  width: 10px;
}
#site-header #masthead #site-navigator .menu li.megamenu > .sub-menu {
  display: table;
}
#site-header #masthead #site-navigator .menu li.megamenu > .sub-menu > li {
  display: table-cell;
  table-layout: fixed;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}
#site-header #masthead #site-navigator .menu li.megamenu > .sub-menu > li:last-child {
  border: none;
}
#site-header #masthead #site-navigator .menu li.megamenu > .sub-menu > li > a {
  color: #fff;
  background: none;
}
#site-header #masthead #site-navigator .menu li.megamenu .sub-menu {
  width: 235px;
}
#site-header #masthead #site-navigator .menu li.megamenu .sub-menu .sub-menu {
  visibility: inherit;
  display: block\9;
  -webkit-opacity: 1;
  -khtml-opacity: 1;
  -moz-opacity: 1;
  opacity: 1;
  -ms-filter: progid:DXImageTransform.Microsoft.Alpha(opacity=100);
  filter: alpha(opacity=100);
  position: static;
  padding: 0;
}
#site-header #masthead #site-navigator .menu.menu-extra > li > a {
  padding-left: 10px;
  padding-right: 10px;
}
#site-header #masthead #site-navigator .menu.menu-extra > li > a:after {
  display: none;
}
#site-header #masthead #site-navigator .menu.menu-extra > li:last-child > a {
  padding-right: 0;
}
#site-header #masthead #site-navigator .menu.menu-extra .search-box:after {
  display: none;
}
#site-header #masthead #site-navigator .menu.menu-extra .search-box.active .submenu {
  -webkit-opacity: 1;
  -khtml-opacity: 1;
  -moz-opacity: 1;
  opacity: 1;
  -ms-filter: progid:DXImageTransform.Microsoft.Alpha(opacity=100);
  filter: alpha(opacity=100);
  visibility: visible;
  display: block\9;
}
#site-header #masthead #site-navigator .menu.menu-extra .search-box.active .submenu .widget_search .search-field {
  height: 45px;
}
#site-header #masthead #site-navigator .menu.menu-extra .search-box .submenu {
  -webkit-opacity: 0;
  -khtml-opacity: 0;
  -moz-opacity: 0;
  opacity: 0;
  -ms-filter: progid:DXImageTransform.Microsoft.Alpha(opacity=0);
  filter: alpha(opacity=0);
  visibility: hidden;
  display: none\9;
}
#site-header #masthead #site-navigator .menu.menu-extra .search-box .widget_search {
  position: absolute;
  width: 300px;
  right: 0;
  top: 100%;
  margin-top: 1px;
}
#site-header #masthead #site-navigator .menu.menu-extra .search-box .widget_search .search-field {
  background: #fff;
  border: none;
  width: 100%;
  padding: 0 20px;
  -webkit-box-shadow: 0 0 3px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0 0 3px rgba(0, 0, 0, 0.1);
  -ms-box-shadow: 0 0 3px rgba(0, 0, 0, 0.1);
  -o-box-shadow: 0 0 3px rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.1);
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  -o-border-radius: 0;
  border-radius: 0;
}
#site-header #masthead #site-navigator .menu.menu-extra .search-box .widget_search label:after {
  display: none;
}
#site-header #masthead #site-navigator .menu.menu-extra .shopping-cart:hover .submenu {
  top: 100%;
  visibility: visible;
  display: block\9;
  -webkit-opacity: 1;
  -khtml-opacity: 1;
  -moz-opacity: 1;
  opacity: 1;
  -ms-filter: progid:DXImageTransform.Microsoft.Alpha(opacity=100);
  filter: alpha(opacity=100);
}
#site-header #masthead #site-navigator .menu.menu-extra .shopping-cart a:after {
  display: none;
}
#site-header #masthead #site-navigator .menu.menu-extra .shopping-cart > a {
  position: relative;
}
#site-header #masthead #site-navigator .menu.menu-extra .shopping-cart > a .shopping-cart-items-count {
  position: absolute;
  width: 16px;
  height: 16px;
  top: 35px;
  left: 16px;
  line-height: 16px;
  text-align: center;
  font-size: 12px;
  z-index: 9;
  font-weight: normal;
  color: #fff;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  -ms-border-radius: 100%;
  -o-border-radius: 100%;
  border-radius: 100%;
}
#site-header #masthead #site-navigator .menu.menu-extra .shopping-cart > a .shopping-cart-items-count.no-items:after {
  content: "0";
}
#site-header #masthead #site-navigator .menu.menu-extra .shopping-cart .submenu {
  position: absolute;
  width: 300px;
  right: 0;
  top: 150%;
  background: #fff;
  padding: 20px;
  z-index: -1;
  visibility: hidden;
  display: none\9;
  -webkit-opacity: 0;
  -khtml-opacity: 0;
  -moz-opacity: 0;
  opacity: 0;
  -ms-filter: progid:DXImageTransform.Microsoft.Alpha(opacity=0);
  filter: alpha(opacity=0);
  -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
  -ms-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
  -o-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}
#site-header #masthead #site-navigator .menu.menu-extra .shopping-cart .submenu .widget_shopping_cart_content .cart_list {
  overflow: hidden;
}
#site-header #masthead #site-navigator .menu.menu-extra .shopping-cart .submenu .widget_shopping_cart_content .cart_list li:first-child {
  padding-top: 0;
}
#site-header #masthead #site-navigator .menu.menu-extra .shopping-cart .submenu .widget_shopping_cart_content .cart_list li:last-child {
  padding-bottom: 0;
  border-bottom: none;
}
#site-header #masthead #site-navigator .menu.menu-extra .shopping-cart .submenu .widget_shopping_cart_content .cart_list li a {
  padding: 0;
  font-family: inherit;
  text-transform: none;
}
#site-header #masthead #site-navigator .menu.menu-extra .shopping-cart .submenu .widget_shopping_cart_content .cart_list li a:hover {
  color: #1a1a1a;
}
#site-header #masthead #site-navigator .menu.menu-extra .shopping-cart .submenu .widget_shopping_cart_content .buttons a {
  float: left;
  color: #fff;
  font-family: inherit;
  font-weight: bold;
  padding: 0;
}
#site-header #masthead #site-navigator-mobile {
  display: none;
}
#site-header #masthead #site-navigator-mobile.navigator-mobile.active .navigator-toggle {
  color: #1a1a1a;
}
#site-header #masthead #site-navigator-mobile.navigator-mobile.active .menu {
  display: block;
}
#site-header #masthead #site-navigator-mobile.navigator-mobile .navigator-toggle {
  position: absolute;
  top: 20px;
  right: 15px;
  width: 50px;
  text-align: center;
  height: 50px;
  line-height: 50px;
  background: #1a1a1a;
}
#site-header #masthead #site-navigator-mobile.navigator-mobile .menu {
  margin: 0;
  padding: 0 15px;
  display: none;
  background: #1a1a1a;
  position: relative;
  z-index: 9;
  top: 0;
}
#site-header #masthead #site-navigator-mobile.navigator-mobile .menu li {
  list-style: none;
  position: relative;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
#site-header #masthead #site-navigator-mobile.navigator-mobile .menu li a {
  display: block;
  color: #ccc;
  line-height: 56px;
  margin-right: 56px;
  padding: 0;
}
#site-header #masthead #site-navigator-mobile.navigator-mobile .menu li .sub-menu {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-left: 20px;
  display: none;
  padding: 0;
}
#site-header #masthead #site-navigator-mobile.navigator-mobile .menu li:last-child {
  border-bottom: none;
}
#site-header #masthead #site-navigator-mobile.navigator-mobile .menu li.menu-item-has-children .toggler {
  position: absolute;
  display: block;
  width: 56px;
  height: 56px;
  border-left: 1px solid rgba(255, 255, 255, 0.1);
  right: 0;
  top: 0;
  z-index: 99;
  cursor: pointer;
}
#site-header #masthead #site-navigator-mobile.navigator-mobile .menu li.menu-item-has-children .toggler:after {
  content: "";
  width: 14px;
  height: 2px;
  background: #fff;
  position: absolute;
  left: 50%;
  margin-left: -7px;
  top: 50%;
  margin-top: -1px;
}
#site-header #masthead #site-navigator-mobile.navigator-mobile .menu li.menu-item-has-children .toggler:before {
  content: "";
  width: 2px;
  height: 14px;
  background: #fff;
  position: absolute;
  left: 50%;
  margin-left: -1px;
  top: 50%;
  margin-top: -7px;
}
#site-header #masthead #site-navigator-mobile.navigator-mobile .menu li.menu-item-has-children.active > .sub-menu {
  display: block;
}
#site-header #masthead #site-navigator-mobile.navigator-mobile .menu li.menu-item-has-children.active > .toggler:before {
  display: none;
}
/* ============================================================ 
    4. CONTENT
=============================================================*/
#site-content {
  /* ============================================================ 
	    4.1. Page Header
	=============================================================*/
  /* ============================================================ 
	    4.2. Page Breadcrumbs
	=============================================================*/
  /* ============================================================ 
	    4.3. Page Body
	=============================================================*/
}
#site-content #page-header + #page-breadcrumbs {
  margin-top: -50px;
}
#site-content #page-header {
  margin-bottom: 50px;
}
#site-content #page-header .wrapper {
  padding: 100px 70px;
  background-attachment: fixed;
  -webkit-transform: translateZ(0px);
}
#site-content #page-header .page-title {
  width: 50%;
  margin: 0 auto;
}
#site-content #page-header .page-title .title {
  margin: 0;
  font-size: 5em;
  color: #000;
}
#site-content #page-breadcrumbs {
  margin-bottom: 50px;
}
#site-content #page-breadcrumbs .wrapper {
  padding-bottom: 15px;
  padding-top: 15px;
  border-bottom: 2px solid rgba(0, 0, 0, 0.07);
}
#site-content #page-breadcrumbs .breadcrumb-trail {
  position: relative;
  padding-left: 40px;
}
#site-content #page-breadcrumbs .breadcrumb-trail:before {
  content: "\e096";
  font-family: "simple-line-icons";
  font-size: 24px;
  display: inline-block;
  position: absolute;
  left: 0;
  top: -8px;
}
#site-content #page-breadcrumbs .breadcrumbs .trail-browse {
  margin-right: 10px;
  font-family: inherit;
}
#site-content #page-breadcrumbs .breadcrumbs .trail-items li:after {
  color: #ccc;
}
#site-content #page-body {
  padding-bottom: 50px;
}
#site-content #page-body .content,
#site-content #page-body .sidebars {
  position: relative;
}
.page .comments-area {
  margin-top: 50px;
}
/* ============================================================ 
    5. WIDGET
=============================================================*/
.widget {
  margin-bottom: 60px;
}
.widget select {
  width: 100%;
}
.widget:last-child {
  margin-bottom: 0;
}
.widget .widget-title {
  font-size: 20px;
  margin-bottom: 20px;
  margin-top: 0;
  padding: 15px 0 0 0;
  border-top: 3px solid;
}
.widget ul {
  margin: 0;
  padding: 0;
}
.widget ul li {
  list-style: none;
}
.widget ul li .children,
.widget ul li .sub-menu {
  margin: 10px 0 10px 20px;
}
.widget.widget_archive select,
.widget.widget_categories select {
  width: 100%;
}
.widget.widget_archive label,
.widget.widget_categories label {
  margin-bottom: 10px;
  display: block;
}
.widget.widget_calendar caption {
  margin-bottom: 15px;
  text-align: inherit;
}
.widget.widget_calendar table thead {
  text-align: center;
}
.widget.widget_calendar table thead th {
  padding: 5px 0;
}
.widget.widget_calendar table tbody tr td,
.widget.widget_calendar table tbody tr th {
  text-align: center;
  padding: 5px 0;
}
.widget.widget_calendar table tbody tr td#today,
.widget.widget_calendar table tbody tr th#today {
  color: #1a1a1a;
}
.widget.widget_calendar table tfoot tr td {
  padding: 5px 0;
  text-align: center;
}
.widget.widget_recent_entries a {
  display: block;
}
.widget.widget_recent_entries .post-date {
  display: block;
  position: relative;
  margin-top: 5px;
  font-size: 14px;
}
.widget.widget_recent_entries .post-date:before {
  content: "\f017";
  font-family: "FontAwesome";
  font-size: 14px;
  margin-right: 10px;
}
.widget.widget_recent_entries li {
  margin-bottom: 20px;
}
.widget.widget_recent_entries li:last-child {
  margin-bottom: 0;
}
.widget.widget_rss ul li {
  padding: 20px 0;
  border-bottom: 1px dotted rgba(0, 0, 0, 0.1);
}
.widget.widget_rss ul li:first-child {
  padding-top: 0;
}
.widget.widget_rss ul li:last-child {
  padding-bottom: 0;
  border-bottom: none;
}
.widget.widget_rss .widget-title img {
  vertical-align: inherit;
}
.widget.widget_search:after {
  display: none;
}
.widget.widget_search .search-form {
  position: relative;
}
.widget.widget_search .search-form label .screen-reader-text {
  display: none;
}
.widget.widget_search .search-form label .search-field {
  width: 100%;
}
.widget.widget_search .search-form .search-submit {
  background-image: url(../../assets/img/arrow.svg);
  background-color: transparent;
  width: 30px;
  height: 20px;
  text-indent: -9999px;
  padding: 0;
  position: absolute;
  right: 10px;
  top: 50%;
  margin-top: -10px;
}
.widget.widget_search .search-form .search-submit:hover {
  right: 5px;
}
.widget.widget_tag_cloud .tagcloud {
  overflow: hidden;
}
.widget.widget_tag_cloud .tagcloud a {
  background: #1a1a1a;
  color: #ccc;
  padding: 0 10px;
  margin: 0 5px 5px 0;
  float: left;
  position: relative;
  font-size: 12px !important;
  -webkit-border-radius: 100px;
  -moz-border-radius: 100px;
  -ms-border-radius: 100px;
  -o-border-radius: 100px;
  border-radius: 100px;
}
.widget.widget_tag_cloud .tagcloud a:hover {
  color: #1a1a1a;
}
.widget.widget_recent_comments ul li {
  margin-bottom: 10px;
}
.widget select[name="monster-widget-just-testing"] option {
  width: 300px;
}
/* ============================================================ 
    6. FOOTER
=============================================================*/
#site-footer {
  margin-bottom: 40px;
}
#site-footer #footer-widgets {
  text-align: center;
}
#site-footer #footer-widgets a {
  /*&:hover {
				color: @white;
			}
			&.button {
				position: relative;
				z-index: 1;
				&:hover {
					color: @black;
					&:after {
						width: 100%;
					}
				}
				&:after {
					width: 0;
					position: absolute;
					content: "";
					left: 0;
					top: 0;
					height: 100%;
					background: @white;
					z-index: -1;
					&:extend(.transition);
				}
			}*/
}
#site-footer #footer-widgets .say-hello {
  padding: 50px 0 100px 0;
}
#site-footer #footer-widgets .say-hello h1,
#site-footer #footer-widgets .say-hello h2,
#site-footer #footer-widgets .say-hello h3,
#site-footer #footer-widgets .say-hello h4,
#site-footer #footer-widgets .say-hello h5,
#site-footer #footer-widgets .say-hello h6 {
  font-size: 40px;
  margin: 0 0 5px 0;
}
#site-footer #footer-widgets .say-hello ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
#site-footer #footer-widgets .say-hello ul li {
  display: inline-block;
}
#site-footer #footer-widgets .say-hello ul li:after {
  content: "-";
  display: inline-block;
  vertical-align: bottom;
  margin: 0 12px;
  font-size: 14px;
}
#site-footer #footer-widgets .say-hello ul li:last-child:after {
  display: none;
}
#site-footer #footer-widgets .say-hello ul li a {
  color: inherit;
}
#footer-content {
  background: rgba(0, 0, 0, 0.85);
  overflow: hidden;
  padding: 30px;
}
#footer-content .copyright-content {
  float: left;
}
#footer-content .copyright-content img {
  vertical-align: middle;
  margin-right: 20px;
}
#footer-content .social-links {
  float: right;
  margin-top: 12px;
}
#footer-content .social-links a {
  display: inline-block;
  margin: 0 0 0 25px;
  color: inherit;
}
#footer-content .social-links a i {
  font-size: 20px;
}
/* ============================================================ 
    7. BLOG
=============================================================*/
/* ============================================================ 
	8. NAVIGATION
=============================================================*/
.navigation:after {
  clear: both;
  content: "";
  display: table;
}
.navigation.post-navigation .nav-links {
  margin: 0;
  padding: 20px 0 0 0 ;
  display: table;
  width: 100%;
}
.navigation.post-navigation .nav-links li {
  list-style: none;
  display: table-cell;
  vertical-align: middle;
  width: 33.3333333%;
  position: relative;
}
.navigation.post-navigation .nav-links li.next-post {
  text-align: right;
}
.navigation.post-navigation .nav-links li.prev-post a,
.navigation.post-navigation .nav-links li.next-post a {
  position: relative;
  display: inline-block;
}
.navigation.post-navigation .nav-links li.prev-post a:after,
.navigation.post-navigation .nav-links li.next-post a:after {
  width: 0;
  position: absolute;
  content: "";
  background: rgba(0, 0, 0, 0.6);
  left: 0;
  bottom: -2px;
  height: 1px;
}
.navigation.post-navigation .nav-links li.prev-post a:hover,
.navigation.post-navigation .nav-links li.next-post a:hover {
  color: #1a1a1a;
}
.navigation.post-navigation .nav-links li.prev-post a:hover:after,
.navigation.post-navigation .nav-links li.next-post a:hover:after {
  width: 100%;
}
.navigation.post-navigation .nav-links li.go-back {
  text-align: center;
}
.navigation.post-navigation .nav-links li.go-back a {
  display: inline-block;
  vertical-align: middle;
}
.navigation.post-navigation .nav-links li.go-back .icon {
  width: 30px;
  height: 30px;
  line-height: 30px;
  margin: 0 auto;
}
.navigation.post-navigation .nav-links li.go-back .icon:hover span:after,
.navigation.post-navigation .nav-links li.go-back .icon:hover span:before {
  background: rgba(0, 0, 0, 0.2);
}
.navigation.post-navigation .nav-links li.go-back .icon span {
  width: 10px;
  height: 10px;
  background: transparent;
  display: block;
  float: left;
  position: relative;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  -ms-border-radius: 100%;
  -o-border-radius: 100%;
  border-radius: 100%;
}
.navigation.post-navigation .nav-links li.go-back .icon span:after,
.navigation.post-navigation .nav-links li.go-back .icon span:before {
  content: "";
  width: 10px;
  height: 10px;
  position: absolute;
  left: 0;
  top: 0;
  background: #1a1a1a;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  -ms-border-radius: 100%;
  -o-border-radius: 100%;
  border-radius: 100%;
}
.navigation.post-navigation .nav-links li.go-back .icon span:before {
  top: auto;
  bottom: -20px;
}
.navigation.post-navigation .nav-links li.go-back .icon span:nth-child(2):after,
.navigation.post-navigation .nav-links li.go-back .icon span:nth-child(2):before {
  display: none;
}
.navigation.post-navigation .nav-links li.disabled {
  color: transparent;
}
.navigation.pager a {
  display: inline-block;
  margin: 0 30px 0 0;
  font-size: 16px;
}
.navigation .page-numbers {
  width: 40px;
  height: 40px;
  display: inline-block;
  background: #f5f5f5;
  text-align: center;
  line-height: 40px;
  margin-right: 5px;
}
.navigation .page-numbers.current {
  color: #fff;
  background: #1a1a1a;
}
.navigation .page-numbers.prev,
.navigation .page-numbers.next {
  width: auto;
  padding-left: 20px;
  padding-right: 20px;
}
.navigation.loadmore {
  text-align: center;
}
.navigation.loadmore a {
  display: inline-block;
  position: relative;
  -webkit-transition: none;
  -moz-transition: none;
  -ms-transition: none;
  -o-transition: none;
  transition: none;
}
.navigation.loadmore a:after {
  visibility: hidden;
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 50px;
  top: 50%;
  left: 50%;
  margin-left: -25px;
  margin-top: -25px;
  -webkit-opacity: 0;
  -khtml-opacity: 0;
  -moz-opacity: 0;
  opacity: 0;
  -ms-filter: progid:DXImageTransform.Microsoft.Alpha(opacity=0);
  filter: alpha(opacity=0);
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  -ms-border-radius: 50px;
  -o-border-radius: 50px;
  border-radius: 50px;
  -webkit-box-shadow: 0 3px 0 #1a1a1a;
  -moz-box-shadow: 0 3px 0 #1a1a1a;
  -ms-box-shadow: 0 3px 0 #1a1a1a;
  -o-box-shadow: 0 3px 0 #1a1a1a;
  box-shadow: 0 3px 0 #1a1a1a;
  -webkit-animation: uil-ring-anim 0.5s linear infinite;
  -moz-animation: uil-ring-anim 0.5s linear infinite;
  -ms-animation: uil-ring-anim 0.5s linear infinite;
  -o-animation: uil-ring-anim 0.5s linear infinite;
  animation: uil-ring-anim 0.5s linear infinite;
}
.navigation.loadmore a:before {
  content: "";
  width: 100%;
  height: 1px;
  background: rgba(0, 0, 0, 0.6);
  position: absolute;
  left: 0;
  bottom: -2px;
}
.navigation.loadmore a:hover {
  color: #1a1a1a;
}
.navigation.loadmore a:hover:before {
  width: 0;
}
.navigation.loadmore.loading a {
  text-indent: -9999px;
  background: none;
  border: none;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  -ms-box-shadow: none;
  -o-box-shadow: none;
  box-shadow: none;
}
.navigation.loadmore.loading a:after {
  visibility: visible;
  -webkit-opacity: 1;
  -khtml-opacity: 1;
  -moz-opacity: 1;
  opacity: 1;
  -ms-filter: progid:DXImageTransform.Microsoft.Alpha(opacity=100);
  filter: alpha(opacity=100);
}
.navigation.loadmore.loading a:hover {
  background: transparent;
}
/* ============================================================ 
	9. OTHER PAGES
=============================================================*/
#site-wrapper .bg-dark .blog-shortcode.post-thumbnail-cover .hentry .entry-header .entry-title a:hover {
  color: #fff;
}
/* ============================================================ 
    9.1. Author
=============================================================*/
.author .box.author-box {
  margin: 0 0 50px 0;
  border: none;
  padding: 0;
  position: relative;
}
.author .box.author-box .box-title {
  display: none;
}
/* ============================================================ 
    9.2. Search
=============================================================*/
.search #main-content .content-inner .search-form {
  position: relative;
  width: 80%;
  margin: 0 auto;
}
.search #main-content .content-inner .search-form label .screen-reader-text {
  display: none;
}
.search #main-content .content-inner .search-form label .search-field {
  width: 100%;
  height: 60px;
  line-height: 60px;
  padding: 0 20px;
}
.search #main-content .content-inner .search-form .search-submit {
  background-image: url(../../assets/img/arrow.svg);
  background-color: transparent;
  width: 30px;
  height: 20px;
  text-indent: -9999px;
  padding: 0;
  position: absolute;
  right: 20px;
  top: 50%;
  margin-top: -10px;
}
.search #main-content .content-inner .search-form .search-submit:hover {
  right: 5px;
}
.search #main-content .content-inner .search-results article {
  position: relative;
  text-align: center;
  margin-top: 130px;
}
.search #main-content .content-inner .search-results article .counter {
  position: absolute;
  top: -75px;
  left: 50%;
  line-height: 1;
  font-size: 10em;
  margin: 0;
  z-index: -1;
  color: rgba(0, 0, 0, 0.1);
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  transform: translateX(-50%);
}
.search #main-content .content-inner .search-results article .counter:before {
  background: #fff;
  content: "";
  width: 200px;
  height: 100px;
  position: absolute;
  left: 50%;
  margin-left: -100px;
  bottom: -25px;
}
.search #main-content .content-inner .search-results article .entry-title {
  font-size: 48px;
  margin: 0;
}
.search #main-content .content-inner .search-results article .entry-excerpt {
  width: 60%;
  margin: 20px auto 0;
}
.search #main-content .navigation {
  margin-top: 30px;
}
/* ============================================================ 
    9.3. Error404
=============================================================*/
.error404 #main-content .content-inner {
  background: #f5f5f5;
}
.error404 #main-content .content-inner:after {
  clear: both;
  content: "";
  display: table;
}
.error404 #main-content .content-inner .heading-404 {
  float: left;
  width: 50%;
}
.error404 #main-content .content-inner .content-404 {
  float: right;
  width: 50%;
  padding: 70px;
}
.error404 #main-content .content-inner .content-404 h3 {
  margin-bottom: 10px;
  margin-top: 0;
  font-size: 30px;
}
.error404 #main-content .content-inner .content-404 .search-form {
  position: relative;
  width: 100%;
  margin: 0 auto;
}
.error404 #main-content .content-inner .content-404 .search-form label .screen-reader-text {
  display: none;
}
.error404 #main-content .content-inner .content-404 .search-form label .search-field {
  width: 100%;
  background: #fff;
}
.error404 #main-content .content-inner .content-404 .search-form .search-submit {
  background-image: url(../../assets/img/arrow.svg);
  background-color: transparent;
  width: 30px;
  height: 20px;
  text-indent: -9999px;
  padding: 0;
  position: absolute;
  right: 10px;
  top: 50%;
  margin-top: -10px;
}
.error404 #main-content .content-inner .content-404 .search-form .search-submit:hover {
  right: 5px;
}
/* ============================================================ 
    9.4. Blank Page
=============================================================*/
.page-blank {
  display: table;
  height: 100%;
  left: 0;
  margin: 0;
  overflow-x: hidden;
  position: absolute;
  top: 0;
  width: 100%;
}
.page-blank #site-wrapper {
  display: table-cell;
  vertical-align: middle;
  padding-bottom: 0;
}
.page-blank #site-wrapper #main-content {
  margin-bottom: 0;
}
.social-share .text {
  margin-right: 10px;
  color: #282828;
}
.social-share .social-share-wrap {
  display: inline-block;
  margin: 0 0 0 10px;
  padding: 0;
  list-style: none;
}
.social-share .social-share-wrap li {
  display: inline-block;
  margin-right: 15px;
}
.social-share .social-share-wrap li:last-child {
  margin: 0;
}
.social-share .social-share-wrap li a {
  position: relative;
  color: #aaa;
}
.social-share .social-share-wrap li a:after {
  width: 0;
  height: 1px;
  background: #1a1a1a;
  position: absolute;
  left: 0;
  bottom: -2px;
  content: "";
}
.social-share .social-share-wrap li a:hover {
  color: #1a1a1a;
}
.social-share .social-share-wrap li a:hover:after {
  width: 100%;
}
.social-share .social-share-wrap li a i {
  margin-right: 3px;
  font-size: 14px;
}
.social-share .social-share-wrap li a i.fa-facebook {
  color: #3c599d;
}
.social-share .social-share-wrap li a i.fa-twitter {
  color: #21aaf7;
}
.social-share .social-share-wrap li a i.fa-google-plus {
  color: #d54a2e;
}
.social-share .social-share-wrap li a i.fa-pinterest {
  color: #cb2128;
}
.appreciation-box {
  text-align: center;
  position: relative;
  margin-bottom: 95px;
}
.appreciation-box:after {
  height: 11px;
  width: 162px;
  content: "";
  position: absolute;
  left: 50%;
  margin-left: -81px;
  bottom: -45px;
  background-image: url(../../assets/img/divider.png);
}
.appreciation-box .appreciation-box-title {
  font-size: 60px;
  margin: 0 0 10px;
}
.appreciation-box .appreciation-box-content button {
  width: 80px;
  height: 80px;
  line-height: 80px;
  text-align: center;
  border: none;
  color: #1a1a1a;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  -ms-border-radius: 100%;
  -o-border-radius: 100%;
  border-radius: 100%;
}
.appreciation-box .appreciation-box-content button:hover {
  background: #fff;
}
.appreciation-box .appreciation-box-content button span {
  display: block;
  line-height: 1.8;
}
.appreciation-box .appreciation-box-content button span i {
  font-size: 28px;
}
/* ============================================================ 
	10. MEMBER
=============================================================*/
/* ============================================================ 
	12. OTHER
=============================================================*/
/* ============================================================ 
	12.1 Comments
=============================================================*/
#comments .comments-title,
#comments #reply-title {
  font-size: 24px;
  margin: 0 0 30px 0;
}
#comments #reply-title {
  margin-bottom: 10px;
}
#comments .comment-list {
  margin: 0;
  padding: 0;
}
#comments .comment-list > li {
  list-style: none;
  margin-bottom: 50px;
}
#comments .comment-list li {
  list-style: none;
}
#comments .comment-list li .comment-body .comment-meta .comment-author .fn {
  font-weight: normal;
  color: #282828;
}
#comments .comment-list li .comment-body .comment-meta .comment-author img {
  float: left;
  width: 34px;
  height: 34px;
  margin-right: 20px;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  -ms-border-radius: 100%;
  -o-border-radius: 100%;
  border-radius: 100%;
}
#comments .comment-list li .comment-body .comment-meta .comment-metadata {
  font-size: 14px;
  margin: 5px 0 10px 0;
}
#comments .comment-list li .comment-body .comment-meta .comment-metadata a {
  color: #a0a0a0;
}
#comments .comment-list li .comment-body .comment-meta .comment-metadata a:hover {
  color: #282828;
}
#comments .comment-list li .comment-body .comment-content,
#comments .comment-list li .comment-body .reply {
  padding-left: 54px;
}
#comments .comment-list li .comment-body .reply {
  margin: 10px 0 0 0;
}
#comments .comment-list li .comment-body .reply a {
  position: relative;
}
#comments .comment-list li .comment-body .reply a:after {
  content: "";
  width: 0;
  height: 1px;
  background: rgba(0, 0, 0, 0.6);
  position: absolute;
  left: 0;
  bottom: -2px;
}
#comments .comment-list li .comment-body .reply a:hover {
  color: #1a1a1a;
}
#comments .comment-list li .comment-body .reply a:hover:after {
  width: 100%;
}
#comments .comment-list li .children {
  padding-left: 54px;
  margin-top: 50px;
}
#comments #respond .comment-form p label {
  display: block;
  margin-bottom: 10px;
}
#comments #respond .comment-form p input,
#comments #respond .comment-form p textarea {
  width: 100%;
}
#comments #respond .comment-form p input.submit,
#comments #respond .comment-form p textarea.submit {
  width: auto;
}
#comments #respond .comment-form p.form-submit {
  margin-bottom: 0;
}
/* ============================================================ 
	12.2 Form
=============================================================*/
.quick-form h1,
.quick-form h2,
.quick-form h3,
.quick-form h4,
.quick-form h5,
.quick-form h6 {
  margin-top: 0;
}
.quick-form .row input[type="text"],
.quick-form .row input[type="password"],
.quick-form .row input[type="datetime"],
.quick-form .row input[type="datetime-local"],
.quick-form .row input[type="date"],
.quick-form .row input[type="month"],
.quick-form .row input[type="time"],
.quick-form .row input[type="week"],
.quick-form .row input[type="number"],
.quick-form .row input[type="email"],
.quick-form .row input[type="url"],
.quick-form .row input[type="search"],
.quick-form .row input[type="tel"],
.quick-form .row input[type="color"],
.quick-form .row input[type="submit"],
.quick-form .row textarea,
.quick-form .row select {
  width: 100%;
  margin-bottom: 30px;
  height: 55px;
  line-height: 55px;
  padding: 0 20px;
}
.quick-form .row textarea {
  height: auto;
}
.quick-form .button {
  width: 100%;
  height: 55px;
  line-height: 55px;
}
/* ============================================================ 
	12.3 Gallery
=============================================================*/
.gallery {
  margin: 0 -2px 20px -2px;
  position: relative;
}
.gallery:after {
  clear: both;
  content: "";
  display: block;
}
.gallery .gallery-item {
  float: left;
  padding: 0 2px;
  overflow: hidden;
  position: relative;
  margin: 0 0 4px 0;
}
.gallery .gallery-item:hover .gallery-caption {
  margin-bottom: 0;
}
.gallery.gallery-columns-1 .gallery-item {
  max-width: 100%;
}
.gallery.gallery-columns-1.gallery-size-medium .gallery-item:nth-of-type(1n+1),
.gallery.gallery-columns-1.gallery-size-thumbnail .gallery-item:nth-of-type(1n+1) {
  clear: left;
}
.gallery.gallery-columns-2 .gallery-item {
  max-width: 50%;
}
.gallery.gallery-columns-2.gallery-size-thumbnail .gallery-item:nth-of-type(2n+1) {
  clear: left;
}
.gallery.gallery-columns-3 .gallery-item {
  max-width: 33.3333333%;
}
.gallery.gallery-columns-3.gallery-size-thumbnail .gallery-item:nth-of-type(3n+1) {
  clear: left;
}
.gallery.gallery-columns-4 .gallery-item {
  max-width: 25%;
}
.gallery.gallery-columns-5 .gallery-item {
  max-width: 20%;
}
.gallery.gallery-columns-6 .gallery-item {
  max-width: 16.6666667%;
}
.gallery.gallery-columns-7 .gallery-item {
  max-width: 14.2857143%;
}
.gallery.gallery-columns-7 .gallery-caption {
  display: none;
}
.gallery.gallery-columns-8 .gallery-item {
  max-width: 12.5%;
}
.gallery.gallery-columns-8 .gallery-caption {
  display: none;
}
.gallery.gallery-columns-9 .gallery-item {
  max-width: 11.1111111%;
}
.gallery.gallery-columns-9 .gallery-caption {
  display: none;
}
.gallery-caption {
  background-color: rgba(0, 0, 0, 0.7);
  color: #fff;
  max-height: 50%;
  margin: 0;
  padding: 10px;
  position: absolute;
  bottom: 0;
  left: 2px;
  right: 2px;
  margin-bottom: -100%;
}
.caption_slider {
  background: rgba(255, 255, 255, 0.9);
  padding: 50px;
  text-align: center;
}
.caption_slider h1,
.caption_slider h2,
.caption_slider h3,
.caption_slider h4,
.caption_slider h5,
.caption_slider h6 {
  margin-top: 0;
}
.tp-video-play-button {
  display: none !important;
}
/* ============================================================ 
	12.4 Go To Top
=============================================================*/
.goto-top.active a {
  bottom: 40px;
  visibility: visible;
  -webkit-opacity: 1;
  -khtml-opacity: 1;
  -moz-opacity: 1;
  opacity: 1;
  -ms-filter: progid:DXImageTransform.Microsoft.Alpha(opacity=100);
  filter: alpha(opacity=100);
}
.goto-top a {
  text-indent: -9999px;
  width: 40px;
  height: 40px;
  background: rgba(0, 0, 0, 0.5);
  right: 20px;
  bottom: 0;
  position: fixed;
  visibility: hidden;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  -ms-border-radius: 100%;
  -o-border-radius: 100%;
  border-radius: 100%;
  -webkit-opacity: 0;
  -khtml-opacity: 0;
  -moz-opacity: 0;
  opacity: 0;
  -ms-filter: progid:DXImageTransform.Microsoft.Alpha(opacity=0);
  filter: alpha(opacity=0);
}
.goto-top a:hover {
  background: #1a1a1a;
}
.goto-top a:before {
  text-indent: 0;
  content: "\f077";
  font-family: 'FontAwesome';
  font-size: 14px;
  position: absolute;
  left: 13px;
  top: 5px;
  color: #fff;
}
#site-content .tp-bullets {
  z-index: 98;
}
#site-content .tp-dottedoverlay.twoxtwo {
  -webkit-opacity: 0.3;
  -khtml-opacity: 0.3;
  -moz-opacity: 0.3;
  opacity: 0.3;
  -ms-filter: progid:DXImageTransform.Microsoft.Alpha(opacity=30);
  filter: alpha(opacity=30);
}
.vc_column-inner {
  padding-top: 0 !important;
}
.vc_row.arrow {
  position: relative;
  overflow: hidden;
  -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05) inset;
  -moz-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05) inset;
  -ms-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05) inset;
  -o-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05) inset;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05) inset;
}
.vc_row.arrow:before {
  background-color: #fff;
  top: -15px;
  content: "";
  height: 30px;
  left: 50%;
  margin-left: -15px;
  position: absolute;
  width: 30px;
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
  -webkit-box-shadow: 0px 0px 2px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0px 0px 2px rgba(0, 0, 0, 0.1);
  -ms-box-shadow: 0px 0px 2px rgba(0, 0, 0, 0.1);
  -o-box-shadow: 0px 0px 2px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 0px 2px rgba(0, 0, 0, 0.1);
}
.vc_row[data-vc-full-width].fix-overflow {
  overflow: visible;
}
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  /* Retina-specific stuff here */
  select {
    background-image: url(../../assets/img/caret@2x.png);
    background-size: 9px 5px;
  }
  #site-header #masthead #site-brand #site-logo .logo a img.logo-standard {
    display: none;
  }
  #site-header #masthead #site-brand #site-logo .logo a img.logo-retina {
    display: table;
  }
}
@-webkit-keyframes uil-ring-anim {
  0% {
    -ms-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -ms-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -webkit-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@-webkit-keyframes uil-ring-anim {
  0% {
    -ms-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -ms-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -webkit-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@-moz-keyframes uil-ring-anim {
  0% {
    -ms-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -ms-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -webkit-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@-ms-keyframes uil-ring-anim {
  0% {
    -ms-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -ms-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -webkit-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@-moz-keyframes uil-ring-anim {
  0% {
    -ms-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -ms-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -webkit-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@-webkit-keyframes uil-ring-anim {
  0% {
    -ms-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -ms-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -webkit-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@-o-keyframes uil-ring-anim {
  0% {
    -ms-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -ms-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -webkit-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes uil-ring-anim {
  0% {
    -ms-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -ms-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -webkit-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
.projects-shortcode.projects {
  margin-bottom: 0;
}
.projects {
  margin-bottom: 30px;
  /**
	 * Animation
	 */
}
.projects[data-columns="2"] .projects-items .hentry {
  width: 50%;
}
.projects[data-columns="3"] .projects-items .hentry {
  width: 33.3333333%;
}
.projects[data-columns="4"] .projects-items .hentry {
  width: 25%;
}
.projects[data-columns="5"] .projects-items .hentry {
  width: 20%;
}
.projects.projects-grid .projects-filter ul li {
  margin: 0;
}
.projects.projects-grid .projects-filter ul li a {
  font-size: 16px;
}
.projects.projects-grid .projects-filter ul li a:after {
  display: none;
}
.projects.projects-grid .projects-filter ul li a:before {
  content: "⁄";
  display: inline-block;
  vertical-align: middle;
  margin: 0 15px;
  color: rgba(0, 0, 0, 0.3);
}
.projects.projects-grid .projects-filter ul li:first-child a:before {
  display: none;
}
.projects.projects-grid .projects-items {
  margin: 0 -15px;
}
.projects.projects-grid .projects-items .hentry {
  padding: 0 15px;
  margin-bottom: 30px;
}
.projects.projects-grid .projects-items .hentry .project-wrap {
  position: relative;
  overflow: hidden;
}
.projects.projects-grid .projects-items .hentry .project-wrap:hover .project-info {
  visibility: visible;
  -webkit-opacity: 1;
  -khtml-opacity: 1;
  -moz-opacity: 1;
  opacity: 1;
  -ms-filter: progid:DXImageTransform.Microsoft.Alpha(opacity=100);
  filter: alpha(opacity=100);
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
}
.projects.projects-grid .projects-items .hentry .project-wrap:hover .project-thumbnail img {
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
  transform: scale(1.1);
  -webkit-filter: blur(2px);
  -ms-filter: blur(2px);
  -o-filter: blur(2px);
  filter: blur(2px);
}
.projects.projects-grid .projects-items .hentry figcaption {
  margin: 0;
}
.projects.projects-grid .projects-items .hentry .project-buttons {
  margin: 0;
  position: absolute;
  bottom: 30px;
  left: 30px;
}
.projects.projects-grid .projects-items .hentry .project-quick-view {
  background: none;
  height: 40px;
  line-height: 40px;
  padding: 0 23px;
  border: 1px solid #fff;
  color: #fff;
}
.projects.projects-grid .projects-items .hentry .project-quick-view:hover {
  color: #1a1a1a;
}
.projects.projects-grid .projects-items .hentry .project-quick-view:hover:after {
  background: #fff;
}
.projects.projects-grid .projects-items .hentry .project-thumbnail {
  margin: 0;
}
.projects.projects-grid .projects-items .hentry .project-thumbnail a {
  display: block;
}
.projects.projects-grid .projects-items .hentry .project-info {
  position: absolute;
  padding: 30px;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  visibility: hidden;
  -webkit-opacity: 0;
  -khtml-opacity: 0;
  -moz-opacity: 0;
  opacity: 0;
  -ms-filter: progid:DXImageTransform.Microsoft.Alpha(opacity=0);
  filter: alpha(opacity=0);
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
  transform: scale(1.1);
}
.projects.projects-grid .projects-items .hentry .project-info .project-categories {
  margin: 0 0 20px 0;
  padding: 0;
  list-style: none;
  font-size: 14px;
}
.projects.projects-grid .projects-items .hentry .project-info .project-categories li {
  display: inline-block;
  margin: 0;
}
.projects.projects-grid .projects-items .hentry .project-info .project-categories li:after {
  content: "/";
  display: inline-block;
  margin: 0 8px;
  color: #666;
  vertical-align: middle;
}
.projects.projects-grid .projects-items .hentry .project-info .project-categories li:last-child:after {
  display: none;
}
.projects.projects-grid .projects-items .hentry .project-info .project-categories li a {
  position: relative;
  color: #fff;
}
.projects.projects-grid .projects-items .hentry .project-info .project-categories li a:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 1px;
  background: #fff;
}
.projects.projects-grid .projects-items .hentry .project-info .project-categories li a:hover {
  color: #fff;
}
.projects.projects-grid .projects-items .hentry .project-info .project-categories li a:hover:before {
  width: 100%;
}
.projects.projects-grid .projects-items .hentry .project-info .project-title {
  font-size: 24px;
  margin: 0 0 5px 0;
  line-height: 1.2;
  position: relative;
}
.projects.projects-grid .projects-items .hentry .project-info .project-title a:hover {
  color: #fff;
}
.projects.projects-grid-alt .projects-filter ul {
  text-align: center;
}
.projects.projects-grid-alt .projects-filter ul li {
  margin: 0 15px;
}
.projects.projects-grid-alt .projects-filter ul li a {
  font-size: 16px;
}
.projects.projects-grid-alt .projects-items {
  margin: 0 -15px;
}
.projects.projects-grid-alt .projects-items .hentry {
  padding: 0 15px;
  margin-bottom: 30px;
}
.projects.projects-grid-alt .projects-items .hentry .project-wrap {
  position: relative;
  overflow: hidden;
}
.projects.projects-grid-alt .projects-items .hentry .project-wrap:hover .project-info {
  visibility: visible;
  -webkit-opacity: 1;
  -khtml-opacity: 1;
  -moz-opacity: 1;
  opacity: 1;
  -ms-filter: progid:DXImageTransform.Microsoft.Alpha(opacity=100);
  filter: alpha(opacity=100);
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
}
.projects.projects-grid-alt .projects-items .hentry figcaption {
  margin: 0;
}
.projects.projects-grid-alt .projects-items .hentry .project-buttons {
  margin: 0;
}
.projects.projects-grid-alt .projects-items .hentry .project-quick-view {
  background: none;
  height: 40px;
  line-height: 40px;
  padding: 0 23px;
  border: 1px solid #1a1a1a;
  color: #1a1a1a;
}
.projects.projects-grid-alt .projects-items .hentry .project-quick-view:hover {
  color: #fff;
}
.projects.projects-grid-alt .projects-items .hentry .project-quick-view:hover:after {
  background: #1a1a1a;
}
.projects.projects-grid-alt .projects-items .hentry .project-thumbnail {
  margin: 0;
}
.projects.projects-grid-alt .projects-items .hentry .project-thumbnail a {
  display: block;
}
.projects.projects-grid-alt .projects-items .hentry .project-info {
  position: absolute;
  text-align: center;
  top: 10px;
  left: 10px;
  right: 10px;
  bottom: 10px;
  background: #fff;
  visibility: hidden;
  -webkit-transform: scale(1.2);
  -moz-transform: scale(1.2);
  -ms-transform: scale(1.2);
  -o-transform: scale(1.2);
  transform: scale(1.2);
  -webkit-opacity: 0;
  -khtml-opacity: 0;
  -moz-opacity: 0;
  opacity: 0;
  -ms-filter: progid:DXImageTransform.Microsoft.Alpha(opacity=0);
  filter: alpha(opacity=0);
}
.projects.projects-grid-alt .projects-items .hentry .project-info:before {
  content: "";
  display: inline-block;
  height: 100%;
  vertical-align: middle;
}
.projects.projects-grid-alt .projects-items .hentry .project-info .project-info-wrap {
  display: inline-block;
  height: auto;
  vertical-align: middle;
  width: 80%;
}
.projects.projects-grid-alt .projects-items .hentry .project-info .project-categories {
  margin: 0 0 20px 0;
  padding: 0;
  list-style: none;
  font-size: 14px;
}
.projects.projects-grid-alt .projects-items .hentry .project-info .project-categories li {
  display: inline-block;
  margin: 0;
}
.projects.projects-grid-alt .projects-items .hentry .project-info .project-categories li:after {
  content: "/";
  display: inline-block;
  margin: 0 8px;
  color: #999;
  vertical-align: middle;
}
.projects.projects-grid-alt .projects-items .hentry .project-info .project-categories li:last-child:after {
  display: none;
}
.projects.projects-grid-alt .projects-items .hentry .project-info .project-categories li a {
  position: relative;
  color: #666;
}
.projects.projects-grid-alt .projects-items .hentry .project-info .project-categories li a:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 1px;
  background: #1a1a1a;
}
.projects.projects-grid-alt .projects-items .hentry .project-info .project-categories li a:hover {
  color: #1a1a1a;
}
.projects.projects-grid-alt .projects-items .hentry .project-info .project-categories li a:hover:before {
  width: 100%;
}
.projects.projects-grid-alt .projects-items .hentry .project-info .project-title {
  font-size: 20px;
  margin: 15px 0 5px 0;
  line-height: 1.2;
  position: relative;
}
.projects.projects-grid-alt .projects-items .hentry .project-info .project-title:after {
  width: 60px;
  height: 2px;
  background: #1a1a1a;
  position: absolute;
  content: "";
  left: 50%;
  margin-left: -30px;
  top: -25px;
}
.projects.projects-grid-alt .projects-items .hentry .project-info .project-title:hover:after {
  width: 120px;
  margin-left: -60px;
}
.projects.projects-masonry .projects-filter ul {
  overflow: hidden;
}
.projects.projects-masonry .projects-filter ul li a {
  padding: 14px 0;
}
.projects.projects-masonry .projects-filter ul li a:after {
  height: 2px;
  bottom: 0;
  background: #1a1a1a;
}
.projects.projects-masonry .projects-filter ul li a:before {
  background: #1a1a1a;
  width: 0;
  height: 2px;
  position: absolute;
  right: 0;
  top: 0;
  content: "";
}
.projects.projects-masonry .projects-filter ul li.active a:before {
  width: 100%;
}
.projects.projects-masonry .projects-items {
  margin: 0 -15px;
}
.projects.projects-masonry .projects-items .hentry {
  padding: 0 15px;
  margin-bottom: 30px;
}
.projects.projects-masonry .projects-items .hentry .project-wrap {
  position: relative;
  overflow: hidden;
}
.projects.projects-masonry .projects-items .hentry .project-wrap:hover .project-info {
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  -o-transform: translateY(0);
  transform: translateY(0);
}
.projects.projects-masonry .projects-items .hentry .project-wrap:hover .project-thumbnail {
  -webkit-transform: translateY(100%);
  -moz-transform: translateY(100%);
  -ms-transform: translateY(100%);
  -o-transform: translateY(100%);
  transform: translateY(100%);
}
.projects.projects-masonry .projects-items .hentry figcaption {
  margin: 0;
}
.projects.projects-masonry .projects-items .hentry .project-buttons {
  margin: 0;
}
.projects.projects-masonry .projects-items .hentry .project-quick-view {
  background: #1a1a1a;
  height: 40px;
  line-height: 40px;
  padding: 0 23px;
}
.projects.projects-masonry .projects-items .hentry .project-quick-view:hover {
  color: #1a1a1a;
}
.projects.projects-masonry .projects-items .hentry .project-thumbnail {
  margin: 0;
  -webkit-transition: all 0.4s ease-in-out 0s;
  -moz-transition: all 0.4s ease-in-out 0s;
  -ms-transition: all 0.4s ease-in-out 0s;
  -o-transition: all 0.4s ease-in-out 0s;
  transition: all 0.4s ease-in-out 0s;
}
.projects.projects-masonry .projects-items .hentry .project-thumbnail a {
  display: block;
}
.projects.projects-masonry .projects-items .hentry .project-info {
  position: absolute;
  text-align: center;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  -webkit-transition: all 0.4s ease-in-out 0s;
  -moz-transition: all 0.4s ease-in-out 0s;
  -ms-transition: all 0.4s ease-in-out 0s;
  -o-transition: all 0.4s ease-in-out 0s;
  transition: all 0.4s ease-in-out 0s;
  -webkit-transform: translateY(-100%);
  -moz-transform: translateY(-100%);
  -ms-transform: translateY(-100%);
  -o-transform: translateY(-100%);
  transform: translateY(-100%);
}
.projects.projects-masonry .projects-items .hentry .project-info:before {
  content: "";
  display: inline-block;
  height: 100%;
  vertical-align: middle;
}
.projects.projects-masonry .projects-items .hentry .project-info .project-info-wrap {
  display: inline-block;
  height: auto;
  vertical-align: middle;
  width: 80%;
}
.projects.projects-masonry .projects-items .hentry .project-info .project-categories {
  margin: 0 0 20px 0;
  padding: 0;
  list-style: none;
  font-size: 14px;
}
.projects.projects-masonry .projects-items .hentry .project-info .project-categories li {
  display: inline-block;
  margin: 0;
}
.projects.projects-masonry .projects-items .hentry .project-info .project-categories li:after {
  content: "/";
  display: inline-block;
  margin: 0 8px;
  color: #1a1a1a;
  vertical-align: middle;
}
.projects.projects-masonry .projects-items .hentry .project-info .project-categories li:last-child:after {
  display: none;
}
.projects.projects-masonry .projects-items .hentry .project-info .project-categories li a {
  position: relative;
}
.projects.projects-masonry .projects-items .hentry .project-info .project-categories li a:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 1px;
  background: #1a1a1a;
}
.projects.projects-masonry .projects-items .hentry .project-info .project-categories li a:hover {
  color: #1a1a1a;
}
.projects.projects-masonry .projects-items .hentry .project-info .project-categories li a:hover:before {
  width: 100%;
}
.projects.projects-masonry .projects-items .hentry .project-info .project-title {
  font-size: 20px;
  margin: 15px 0 5px 0;
  line-height: 1.2;
  position: relative;
}
.projects.projects-masonry .projects-items .hentry .project-info .project-title:after {
  width: 60px;
  height: 11px;
  background-image: url(../../assets/img/divider.png);
  background-position: top center;
  position: absolute;
  content: "";
  left: 50%;
  margin-left: -30px;
  top: -30px;
}
.projects.projects-masonry .projects-items .hentry .project-info .project-title:hover:after {
  width: 120px;
  margin-left: -60px;
}
.projects.projects-justified {
  margin-bottom: 0;
}
.projects.projects-justified .projects-items {
  margin: 0 -0.5px;
}
.projects.projects-justified .projects-items .hentry {
  border: none;
  margin: 0 0.5px 1px 0.5px;
}
.projects.projects-justified .projects-items .hentry > a {
  position: relative;
  display: block;
  height: 100%;
  z-index: 9;
}
.projects.projects-justified .projects-items .hentry > a:after {
  position: absolute;
  content: "";
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  visibility: hidden;
  -webkit-opacity: 0;
  -khtml-opacity: 0;
  -moz-opacity: 0;
  opacity: 0;
  -ms-filter: progid:DXImageTransform.Microsoft.Alpha(opacity=0);
  filter: alpha(opacity=0);
}
.projects.projects-justified .projects-items .hentry .project-info {
  position: absolute;
  text-align: center;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
}
.projects.projects-justified .projects-items .hentry .project-info:before {
  content: "";
  display: inline-block;
  height: 100%;
  vertical-align: middle;
}
.projects.projects-justified .projects-items .hentry .project-info .project-info-wrap {
  display: inline-block;
  height: auto;
  vertical-align: middle;
  width: 80%;
  position: relative;
  z-index: 10;
}
.projects.projects-justified .projects-items .hentry .project-info .project-title {
  font-size: 24px;
  margin: 0 0 5px 0;
}
.projects.projects-justified .projects-items .hentry .project-info .project-title a {
  color: #1a1a1a;
  display: block;
  -webkit-transform: translateX(-150px);
  -moz-transform: translateX(-150px);
  -ms-transform: translateX(-150px);
  -o-transform: translateX(-150px);
  transform: translateX(-150px);
  -webkit-transition: all 0.4s ease 0s;
  -moz-transition: all 0.4s ease 0s;
  -ms-transition: all 0.4s ease 0s;
  -o-transition: all 0.4s ease 0s;
  transition: all 0.4s ease 0s;
  -webkit-opacity: 0;
  -khtml-opacity: 0;
  -moz-opacity: 0;
  opacity: 0;
  -ms-filter: progid:DXImageTransform.Microsoft.Alpha(opacity=0);
  filter: alpha(opacity=0);
  visibility: hidden;
}
.projects.projects-justified .projects-items .hentry .project-info .project-categories {
  margin: 0;
  padding: 0;
  font-size: 14px;
}
.projects.projects-justified .projects-items .hentry .project-info .project-categories li {
  list-style: none;
  display: inline-block;
}
.projects.projects-justified .projects-items .hentry .project-info .project-categories li a {
  color: #1a1a1a;
  display: block;
  margin: 0 7px;
  -webkit-transform: translateX(-150px);
  -moz-transform: translateX(-150px);
  -ms-transform: translateX(-150px);
  -o-transform: translateX(-150px);
  transform: translateX(-150px);
  -webkit-transition: all 0.6s ease 0s;
  -moz-transition: all 0.6s ease 0s;
  -ms-transition: all 0.6s ease 0s;
  -o-transition: all 0.6s ease 0s;
  transition: all 0.6s ease 0s;
  -webkit-opacity: 0;
  -khtml-opacity: 0;
  -moz-opacity: 0;
  opacity: 0;
  -ms-filter: progid:DXImageTransform.Microsoft.Alpha(opacity=0);
  filter: alpha(opacity=0);
  visibility: hidden;
  position: relative;
}
.projects.projects-justified .projects-items .hentry .project-info .project-categories li a:after {
  content: "";
  position: absolute;
  left: 0;
  width: 0;
  height: 1px;
  bottom: 2px;
  background: #1a1a1a;
}
.projects.projects-justified .projects-items .hentry .project-info .project-categories li a:hover:after {
  width: 100%;
}
.projects.projects-justified .projects-items .hentry:hover > a:after {
  visibility: visible;
  -webkit-opacity: 0.9;
  -khtml-opacity: 0.9;
  -moz-opacity: 0.9;
  opacity: 0.9;
  -ms-filter: progid:DXImageTransform.Microsoft.Alpha(opacity=90);
  filter: alpha(opacity=90);
}
.projects.projects-justified .projects-items .hentry:hover .project-info .project-title a {
  -webkit-transform: translateX(0);
  -moz-transform: translateX(0);
  -ms-transform: translateX(0);
  -o-transform: translateX(0);
  transform: translateX(0);
  -webkit-opacity: 1;
  -khtml-opacity: 1;
  -moz-opacity: 1;
  opacity: 1;
  -ms-filter: progid:DXImageTransform.Microsoft.Alpha(opacity=100);
  filter: alpha(opacity=100);
  visibility: visible;
}
.projects.projects-justified .projects-items .hentry:hover .project-info .project-categories {
  font-size: 14px;
}
.projects.projects-justified .projects-items .hentry:hover .project-info .project-categories li a {
  -webkit-transform: translateX(0);
  -moz-transform: translateX(0);
  -ms-transform: translateX(0);
  -o-transform: translateX(0);
  transform: translateX(0);
  -webkit-opacity: 1;
  -khtml-opacity: 1;
  -moz-opacity: 1;
  opacity: 1;
  -ms-filter: progid:DXImageTransform.Microsoft.Alpha(opacity=100);
  filter: alpha(opacity=100);
  visibility: visible;
}
.projects.projects-carousel .projects-items .elements-carousel {
  margin: 0 !important;
}
.projects.projects-carousel .projects-items .hentry {
  float: none;
  padding: 0;
  margin: 0;
}
.projects .projects-filter ul {
  padding: 20px 0 50px 0;
  margin: 0;
}
.projects .projects-filter ul li {
  list-style: none;
  display: inline-block;
  margin-right: 30px;
}
.projects .projects-filter ul li.active a {
  color: #1a1a1a;
}
.projects .projects-filter ul li.active a:after {
  width: 100%;
}
.projects .projects-filter ul li a {
  position: relative;
  color: #707070;
}
.projects .projects-filter ul li a:hover {
  color: #1a1a1a;
}
.projects .projects-filter ul li a:after {
  background: rgba(0, 0, 0, 0.6);
  width: 0;
  height: 1px;
  position: absolute;
  left: 0;
  bottom: -3px;
  content: "";
}
.projects .projects-items:after {
  clear: both;
  content: "";
  display: table;
}
.projects .projects-items .hentry {
  float: left;
}
.projects:not(.projects-carousel) .projects-items .project .project-wrap {
  visibility: hidden;
  -webkit-transform: translate(0, 100px);
  -moz-transform: translate(0, 100px);
  -ms-transform: translate(0, 100px);
  -o-transform: translate(0, 100px);
  transform: translate(0, 100px);
  -webkit-opacity: 0;
  -khtml-opacity: 0;
  -moz-opacity: 0;
  opacity: 0;
  -ms-filter: progid:DXImageTransform.Microsoft.Alpha(opacity=0);
  filter: alpha(opacity=0);
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
  transition-duration: inherit;
}
.projects:not(.projects-carousel) .projects-items .project .project-wrap.animate {
  visibility: visible;
  -webkit-transform: translate(0, 0);
  -moz-transform: translate(0, 0);
  -ms-transform: translate(0, 0);
  -o-transform: translate(0, 0);
  transform: translate(0, 0);
  -webkit-opacity: 1;
  -khtml-opacity: 1;
  -moz-opacity: 1;
  opacity: 1;
  -ms-filter: progid:DXImageTransform.Microsoft.Alpha(opacity=100);
  filter: alpha(opacity=100);
}
.project-single .project-detail {
  font-size: 16px;
  line-height: 2;
}
.project-single .project-detail .social-share {
  font-size: 15px;
}
.project-single.project-content-right .project-single-wrap {
  background: #f5f5f5;
  margin-bottom: 30px;
}
.project-single.project-content-right .project-single-wrap:after {
  clear: both;
  content: "";
  display: table;
}
.project-single.project-content-right .project-single-wrap .project-gallery {
  float: left;
  width: 50%;
}
.project-single.project-content-right .project-single-wrap .project-content {
  float: right;
  width: 50%;
  padding: 70px;
}
.project-single.project-content-right .project-gallery-list .project-media-item {
  margin-bottom: 0;
}
.project-single.project-content-right .project-gallery-grid .project-gallery-wrap {
  margin: 0;
}
.project-single.project-content-right .project-gallery-grid .project-media-item {
  padding: 0;
  margin-bottom: 0;
}
.project-single.project-content-left .project-single-wrap {
  background: #f5f5f5;
  margin-bottom: 30px;
}
.project-single.project-content-left .project-single-wrap:after {
  clear: both;
  content: "";
  display: table;
}
.project-single.project-content-left .project-single-wrap .project-gallery {
  float: right;
  width: 50%;
}
.project-single.project-content-left .project-single-wrap .project-content {
  float: left;
  width: 50%;
  padding: 70px;
}
.project-single.project-content-left .project-gallery-list .project-media-item {
  margin-bottom: 0;
}
.project-single.project-content-left .project-gallery-grid .project-gallery-wrap {
  margin: 0;
}
.project-single.project-content-left .project-gallery-grid .project-media-item {
  padding: 0;
  margin-bottom: 0;
}
.project-single.project-content-fullwidth .project-content {
  width: 80%;
  margin: 0 auto;
}
.project-single.project-content-fullwidth .project-content-wrap {
  padding: 0;
  border: none;
  margin: 50px auto 60px;
}
.project-single.project-content-fullwidth .project-content-wrap:after {
  clear: both;
  content: "";
  display: table;
}
.project-single.project-content-fullwidth .project-content-wrap .project-header {
  float: left;
  width: 50%;
  padding-right: 15px;
}
.project-single.project-content-fullwidth .project-content-wrap .project-detail {
  float: right;
  width: 50%;
  padding-left: 15px;
}
.project-single .project-gallery-list .project-media-item {
  margin-bottom: 30px;
}
.project-single .project-gallery-grid .project-gallery-wrap {
  margin: 0 -15px;
}
.project-single .project-gallery-grid .project-gallery-wrap:after {
  clear: both;
  content: "";
  display: table;
}
.project-single .project-gallery-grid[data-columns="2"] .project-media-item {
  width: 50%;
}
.project-single .project-gallery-grid[data-columns="3"] .project-media-item {
  width: 33.3333333%;
}
.project-single .project-gallery-grid[data-columns="4"] .project-media-item {
  width: 25%;
}
.project-single .project-gallery-grid[data-columns="5"] .project-media-item {
  width: 20%;
}
.project-single .project-gallery-grid .project-media-item {
  float: left;
  padding: 0 15px;
  margin-bottom: 30px;
}
.project-single .project-gallery-fullpage .swiper-container {
  height: calc(100vh - 230px);
}
.project-single .project-media-item a {
  display: block;
  position: relative;
  overflow: hidden;
  cursor: url(../../assets/img/icon-zoom.png), auto;
  cursor: -webkit-image-set(url(../../assets/img/icon-zoom.png) 1x, url(../../assets/img/icon-zoom@2x.png) 2x), auto;
  background: #1a1a1a;
}
.project-single .project-media-item a:hover img {
  -webkit-opacity: 0.5;
  -khtml-opacity: 0.5;
  -moz-opacity: 0.5;
  opacity: 0.5;
  -ms-filter: progid:DXImageTransform.Microsoft.Alpha(opacity=50);
  filter: alpha(opacity=50);
}
.project-single .project-title {
  margin: 0 0 10px 0;
  font-size: 40px;
  line-height: 1.1;
}
.project-single .project-meta {
  position: relative;
  margin-bottom: 80px;
  color: #282828;
}
.project-single .project-meta:after {
  height: 11px;
  width: 162px;
  content: "";
  position: absolute;
  left: 0;
  bottom: -40px;
  background-image: url(../../assets/img/divider.png);
}
.project-single .project-meta ul {
  display: inline-block;
}
.project-single .project-meta ul li {
  display: inline-block;
  margin-left: 15px;
}
.project-single .project-meta ul li:first-child {
  margin-left: 10px;
}
.project-single .project-meta ul li a {
  position: relative;
  color: #aaa;
}
.project-single .project-meta ul li a:after {
  width: 0;
  height: 1px;
  background: #1a1a1a;
  position: absolute;
  left: 0;
  bottom: -2px;
  content: "";
}
.project-single .project-meta ul li a:hover {
  color: #1a1a1a;
}
.project-single .project-meta ul li a:hover:after {
  width: 100%;
}
.project-single .project-content ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.project-single .project-content .iconlist {
  margin-bottom: 20px !important;
}
.project-single .project-content .iconlist li {
  border: 1px solid rgba(0, 0, 0, 0.1);
  padding: 10px 15px;
  margin-bottom: 10px !important;
}
.project-single .project-content .iconlist li i {
  border-right: 1px solid rgba(0, 0, 0, 0.1);
  margin-right: 10px;
  width: 24px;
}
.blog .hentry,
.single-post .hentry {
  margin-top: 80px;
}
.blog .hentry .entry-cover,
.single-post .hentry .entry-cover {
  margin-bottom: 40px;
}
.blog .hentry .entry-cover a,
.single-post .hentry .entry-cover a {
  display: block;
  position: relative;
  background: #1a1a1a;
  cursor: url(../../assets/img/icon-zoom.png), auto;
  cursor: -webkit-image-set(url(../../assets/img/icon-zoom.png) 1x, url(../../assets/img/icon-zoom@2x.png) 2x), auto;
}
.blog .hentry .entry-cover a:hover img,
.single-post .hentry .entry-cover a:hover img {
  -webkit-opacity: 0.5;
  -khtml-opacity: 0.5;
  -moz-opacity: 0.5;
  opacity: 0.5;
  -ms-filter: progid:DXImageTransform.Microsoft.Alpha(opacity=50);
  filter: alpha(opacity=50);
}
.blog .hentry.sticky,
.single-post .hentry.sticky {
  padding: 50px;
  background: #f5f5f5;
}
.blog .hentry .entry-header,
.single-post .hentry .entry-header {
  margin-bottom: 35px;
}
.blog .hentry .entry-header .entry-title,
.single-post .hentry .entry-header .entry-title {
  font-size: 36px;
  margin: 0 0 5px 0;
  -ms-word-wrap: break-word;
  word-wrap: break-word;
}
.blog .hentry .entry-header .entry-meta,
.single-post .hentry .entry-header .entry-meta {
  color: #a0a0a0;
}
.blog .hentry .entry-header .entry-meta a,
.single-post .hentry .entry-header .entry-meta a {
  color: #282828;
  position: relative;
}
.blog .hentry .entry-header .entry-meta a:after,
.single-post .hentry .entry-header .entry-meta a:after {
  width: 0;
  height: 1px;
  background: rgba(0, 0, 0, 0.6);
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
}
.blog .hentry .entry-header .entry-meta a:hover,
.single-post .hentry .entry-header .entry-meta a:hover {
  color: #1a1a1a;
}
.blog .hentry .entry-header .entry-meta a:hover:after,
.single-post .hentry .entry-header .entry-meta a:hover:after {
  width: 100%;
}
.blog .hentry .entry-header .entry-meta .entry-time:before,
.single-post .hentry .entry-header .entry-meta .entry-time:before {
  content: "-";
  display: inline-block;
  vertical-align: middle;
  margin: 0 7px;
}
.blog .hentry .entry-header .entry-meta .entry-categories a,
.single-post .hentry .entry-header .entry-meta .entry-categories a {
  color: #a0a0a0;
}
.blog .hentry .entry-content .readmore + .page-links,
.single-post .hentry .entry-content .readmore + .page-links {
  margin-top: 30px;
}
.blog .hentry .entry-content .page-links span:not(.page-links-title),
.single-post .hentry .entry-content .page-links span:not(.page-links-title) {
  width: 40px;
  height: 40px;
  display: inline-block;
  border: 2px solid;
  text-align: center;
  line-height: 36px;
  margin-right: 5px;
}
.blog .hentry .entry-content .page-links .page-links-title,
.single-post .hentry .entry-content .page-links .page-links-title {
  margin-right: 5px;
}
.blog .hentry .entry-content .readmore,
.single-post .hentry .entry-content .readmore {
  margin-top: 30px;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  padding: 10px 0;
}
.blog .hentry .entry-content .readmore .more-link,
.single-post .hentry .entry-content .readmore .more-link {
  position: relative;
}
.blog .hentry .entry-content .readmore .more-link:before,
.single-post .hentry .entry-content .readmore .more-link:before {
  background: url(../../assets/img/arrow.svg);
  background-size: 30px 20px;
  position: absolute;
  right: -30px;
  top: 50%;
  margin-top: -10px;
  height: 20px;
  width: 30px;
  content: "";
  -webkit-opacity: 0;
  -khtml-opacity: 0;
  -moz-opacity: 0;
  opacity: 0;
  -ms-filter: progid:DXImageTransform.Microsoft.Alpha(opacity=0);
  filter: alpha(opacity=0);
}
.blog .hentry .entry-content .readmore .more-link:hover:before,
.single-post .hentry .entry-content .readmore .more-link:hover:before {
  right: -40px;
  -webkit-opacity: 1;
  -khtml-opacity: 1;
  -moz-opacity: 1;
  opacity: 1;
  -ms-filter: progid:DXImageTransform.Microsoft.Alpha(opacity=100);
  filter: alpha(opacity=100);
}
.blog.no-sidebar #main-content,
.single-post.no-sidebar #main-content {
  width: 70%;
  margin: 0 auto;
}
.blog.sidebar-right .hentry:first-child,
.single-post.sidebar-right .hentry:first-child,
.blog.sidebar-left .hentry:first-child,
.single-post.sidebar-left .hentry:first-child {
  margin-top: 0;
}
.blog .paging-navigation {
  margin-top: 50px;
}
.single-post .hentry {
  padding-bottom: 0;
  border-bottom: none;
  margin-bottom: 50px;
}
.single-post .hentry .entry-content {
  font-size: 16px;
  line-height: 2;
}
.single-post .hentry .entry-footer {
  margin-top: 40px;
}
.single-post .hentry .entry-footer .entry-tags {
  overflow: hidden;
}
.single-post .hentry .entry-footer .entry-tags strong {
  display: none;
}
.single-post .hentry .entry-footer .entry-tags a {
  background: #1a1a1a;
  color: #ccc;
  padding: 0 10px;
  margin: 0 5px 5px 0;
  float: left;
  position: relative;
  font-size: 12px !important;
  -webkit-border-radius: 100px;
  -moz-border-radius: 100px;
  -ms-border-radius: 100px;
  -o-border-radius: 100px;
  border-radius: 100px;
}
.single-post .hentry .entry-footer .entry-tags a:hover {
  color: #1a1a1a;
}
.single-post .navigation {
  margin-bottom: 50px;
}
.single-post .navigation .nav-links {
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  padding-bottom: 20px;
}
.box {
  margin-bottom: 50px;
}
.box:after {
  clear: both;
  content: "";
  display: table;
}
.box .box-title {
  font-size: 20px;
  margin: 0 0 40px 0;
  position: relative;
  overflow: hidden;
  padding-top: 2px;
  padding-bottom: 2px;
}
.box.author-box .author-avatar {
  float: left;
  margin-right: 30px;
  width: 50px;
}
.box.author-box .author-description {
  overflow: hidden;
}
#site-wrapper .box.related-posts-box {
  margin-bottom: 20px;
}
#site-wrapper .box.related-posts-box .blog-grid.blog-shortcode .hentry .entry-wrapper {
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  -ms-box-shadow: none;
  -o-box-shadow: none;
  box-shadow: none;
}
#site-wrapper .box.related-posts-box .blog-grid.blog-shortcode .hentry .entry-header {
  position: static;
  padding: 0;
  margin: 0;
}
#site-wrapper .box.related-posts-box .blog-grid.blog-shortcode .hentry .entry-header .entry-title {
  position: static;
  padding-bottom: 0;
  border: none;
  font-size: 18px;
}
#site-wrapper .box.related-posts-box .blog-grid.blog-shortcode .hentry .entry-header .entry-title:after {
  display: none;
}
#site-wrapper .box.related-posts-box .blog-grid.blog-shortcode .hentry .entry-content {
  padding: 0;
  margin: 15px 0 0 0;
}
.widget .blog-shortcode .hentry {
  margin-bottom: 0;
}
.widget .blog-shortcode .hentry .entry-header .entry-title {
  position: static;
  padding-bottom: 0;
  border: none;
}
.widget .blog-shortcode .hentry .entry-header .entry-title:after {
  display: none;
}
.woocommerce-edit-account .woocommerce,
.woocommerce-edit-address .woocommerce {
  margin-bottom: 50px;
}
.woocommerce-edit-account .woocommerce h3,
.woocommerce-edit-address .woocommerce h3 {
  font-size: 24px;
  margin: 50px 0 42px 0;
  position: relative;
}
.woocommerce-edit-account .woocommerce h3:before,
.woocommerce-edit-address .woocommerce h3:before {
  background: rgba(0, 0, 0, 0.1);
  content: "";
  height: 1px;
  left: 50px;
  right: 0;
  position: absolute;
  bottom: -12px;
}
.woocommerce-edit-account .woocommerce h3:after,
.woocommerce-edit-address .woocommerce h3:after {
  content: "";
  height: 3px;
  left: 0;
  width: 40px;
  position: absolute;
  bottom: -13px;
}
.woocommerce-result-count {
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  padding: 10px 0;
  margin-bottom: 40px;
}
.woocommerce-ordering {
  position: absolute;
  right: 0;
  top: 2px;
}
.woocommerce-ordering select {
  background-color: transparent;
  border: none;
}
.content-inner > .woocommerce .myaccount_user + h2 {
  font-size: 24px;
  margin: 50px 0 30px 0;
  position: relative;
}
.content-inner > .woocommerce .address {
  margin-bottom: 50px;
}
.content-inner > .woocommerce .address h3 {
  font-size: 24px;
  margin: 50px 0 30px 0;
  position: relative;
}
.woocommerce-content-top {
  margin: 0 -15px;
}
.woocommerce-content-top .woocommerce-content-top-wrap {
  display: table;
  table-layout: fixed;
  width: 100%;
}
.woocommerce-content-top .woocommerce-content-top-wrap .widget {
  display: table-cell;
  padding: 0 15px 50px 15px;
  font-size: 14px;
  margin-bottom: 0;
}
.woocommerce-content-top .woocommerce-content-top-wrap .widget .widget-title {
  font-size: 14px;
  padding: 0;
  border: none;
  text-transform: uppercase;
  margin: 50px 0 20px 0;
}
.woocommerce-content-top .woocommerce-content-top-wrap .widget.widget_price_filter .price_slider_wrapper {
  display: inline-block;
  width: 100%;
}
.woocommerce-content-top .woocommerce-content-top-wrap .widget.widget_price_filter .price_slider {
  width: 40%;
  float: left;
  margin-top: 21px;
}
.woocommerce-content-top .woocommerce-content-top-wrap .widget.widget_price_filter .price_slider_amount {
  width: 55%;
  float: right;
  margin: 0;
}
.woocommerce,
.woocommerce-page {
  /* ============================================================ 
	    1. PRODUCTS
	=============================================================*/
}
.woocommerce.no-sidebar.single-product .product .onsale,
.woocommerce-page.no-sidebar.single-product .product .onsale {
  left: calc(15% + 15px);
}
.woocommerce.no-sidebar.single-product .product .images,
.woocommerce-page.no-sidebar.single-product .product .images {
  padding-left: 15%;
}
.woocommerce.no-sidebar.single-product .product .summary,
.woocommerce-page.no-sidebar.single-product .product .summary {
  padding-right: 15%;
}
.woocommerce.no-sidebar.single-product .product .summary .stock,
.woocommerce-page.no-sidebar.single-product .product .summary .stock {
  right: 15%;
}
.woocommerce.no-sidebar.single-product .product .woocommerce-tabs,
.woocommerce-page.no-sidebar.single-product .product .woocommerce-tabs {
  width: 70%;
  margin: 0 auto;
}
.woocommerce.no-sidebar.single-product .product .woocommerce-tabs .tabs,
.woocommerce-page.no-sidebar.single-product .product .woocommerce-tabs .tabs {
  text-align: center;
}
.woocommerce.no-sidebar.single-product .product .woocommerce-tabs .tabs li,
.woocommerce-page.no-sidebar.single-product .product .woocommerce-tabs .tabs li {
  margin: 0 15px;
}
.woocommerce.no-sidebar.single-product .related h2,
.woocommerce-page.no-sidebar.single-product .related h2 {
  text-align: center;
}
.woocommerce form.login,
.woocommerce-page form.login {
  margin-bottom: 80px;
}
.woocommerce[class*="columns-"],
.woocommerce-page[class*="columns-"] {
  width: 100%;
}
.woocommerce.columns-1 .products li,
.woocommerce-page.columns-1 .products li {
  width: 100%;
}
.woocommerce.columns-2 .products li,
.woocommerce-page.columns-2 .products li {
  width: 50%;
}
.woocommerce.columns-3 .products li,
.woocommerce-page.columns-3 .products li {
  width: 33.3333333%;
}
.woocommerce.columns-4 .products li,
.woocommerce-page.columns-4 .products li {
  width: 25%;
}
.woocommerce.columns-5 .products li,
.woocommerce-page.columns-5 .products li {
  width: 20%;
}
.woocommerce .onsale,
.woocommerce-page .onsale {
  position: absolute;
  height: 60px;
  width: 60px;
  text-align: center;
  line-height: 60px;
  color: #1a1a1a;
  left: 15px;
  top: 15px;
  z-index: 2;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  -ms-border-radius: 100%;
  -o-border-radius: 100%;
  border-radius: 100%;
}
.woocommerce .star-rating,
.woocommerce-page .star-rating {
  overflow: hidden;
  position: relative;
  height: 1em;
  line-height: 1.1em;
  font-size: 14px;
  width: 66px;
  font-family: 'FontAwesome';
}
.woocommerce .star-rating:before,
.woocommerce-page .star-rating:before {
  content: "\f006\f006\f006\f006\f006";
  float: left;
  left: 1px;
  position: absolute;
  top: 0;
}
.woocommerce .star-rating span,
.woocommerce-page .star-rating span {
  float: left;
  left: 0;
  overflow: hidden;
  padding-top: 1.5em;
  position: absolute;
  top: 0;
}
.woocommerce .star-rating span:before,
.woocommerce-page .star-rating span:before {
  left: 1px;
  position: absolute;
  top: 0;
  content: "\f005\f005\f005\f005\f005";
}
.woocommerce .woocommerce-pagination ul,
.woocommerce-page .woocommerce-pagination ul {
  margin: 0;
  padding: 20px 0 0 0;
}
.woocommerce .woocommerce-pagination ul li,
.woocommerce-page .woocommerce-pagination ul li {
  list-style: none;
  display: inline-block;
}
.woocommerce .woocommerce-pagination ul li .page-numbers,
.woocommerce-page .woocommerce-pagination ul li .page-numbers {
  width: 40px;
  height: 40px;
  display: inline-block;
  text-align: center;
  line-height: 40px;
  margin-right: 5px;
  background: #f5f5f5;
}
.woocommerce .woocommerce-pagination ul li .page-numbers.current,
.woocommerce-page .woocommerce-pagination ul li .page-numbers.current {
  color: #fff;
  background: #1a1a1a;
}
.woocommerce .woocommerce-pagination ul li .page-numbers.dots,
.woocommerce-page .woocommerce-pagination ul li .page-numbers.dots {
  border-color: transparent;
}
.woocommerce .cart-empty,
.woocommerce-page .cart-empty,
.woocommerce .return-to-shop,
.woocommerce-page .return-to-shop {
  text-align: center;
}
.woocommerce .woocommerce-message,
.woocommerce-page .woocommerce-message,
.woocommerce .woocommerce-info,
.woocommerce-page .woocommerce-info,
.woocommerce .woocommerce-error,
.woocommerce-page .woocommerce-error {
  padding: 20px 20px 20px 60px;
  margin-bottom: 40px;
  color: #777;
  position: relative;
  background: #f5f5f5;
  border-left: 3px solid;
}
.woocommerce .woocommerce-message:after,
.woocommerce-page .woocommerce-message:after,
.woocommerce .woocommerce-info:after,
.woocommerce-page .woocommerce-info:after,
.woocommerce .woocommerce-error:after,
.woocommerce-page .woocommerce-error:after {
  position: absolute;
  font-family: 'FontAwesome';
  left: 20px;
  top: 50%;
  margin-top: -26px;
  font-size: 28px;
  content: "\f058";
}
.woocommerce .woocommerce-message .button,
.woocommerce-page .woocommerce-message .button,
.woocommerce .woocommerce-info .button,
.woocommerce-page .woocommerce-info .button,
.woocommerce .woocommerce-error .button,
.woocommerce-page .woocommerce-error .button {
  float: right;
  margin-top: -9px;
}
.woocommerce .woocommerce-message .showlogin,
.woocommerce-page .woocommerce-message .showlogin,
.woocommerce .woocommerce-info .showlogin,
.woocommerce-page .woocommerce-info .showlogin,
.woocommerce .woocommerce-error .showlogin,
.woocommerce-page .woocommerce-error .showlogin,
.woocommerce .woocommerce-message .showcoupon,
.woocommerce-page .woocommerce-message .showcoupon,
.woocommerce .woocommerce-info .showcoupon,
.woocommerce-page .woocommerce-info .showcoupon,
.woocommerce .woocommerce-error .showcoupon,
.woocommerce-page .woocommerce-error .showcoupon {
  color: #1a1a1a;
}
.woocommerce .woocommerce-message li,
.woocommerce-page .woocommerce-message li,
.woocommerce .woocommerce-info li,
.woocommerce-page .woocommerce-info li,
.woocommerce .woocommerce-error li,
.woocommerce-page .woocommerce-error li {
  list-style: none;
}
.woocommerce .woocommerce-info,
.woocommerce-page .woocommerce-info {
  color: #777;
}
.woocommerce .woocommerce-info:after,
.woocommerce-page .woocommerce-info:after {
  content: "\f05a";
}
.woocommerce .woocommerce-error,
.woocommerce-page .woocommerce-error {
  color: #e74c3c;
}
.woocommerce .woocommerce-error:after,
.woocommerce-page .woocommerce-error:after {
  content: "\f071";
}
.woocommerce .checkout_coupon,
.woocommerce-page .checkout_coupon {
  margin-bottom: 50px;
}
.woocommerce .login .lost_password,
.woocommerce-page .login .lost_password,
.woocommerce .checkout_coupon .lost_password,
.woocommerce-page .checkout_coupon .lost_password,
.woocommerce .checkout .lost_password,
.woocommerce-page .checkout .lost_password {
  margin-bottom: 20px;
}
.woocommerce .login .lost_password a,
.woocommerce-page .login .lost_password a,
.woocommerce .checkout_coupon .lost_password a,
.woocommerce-page .checkout_coupon .lost_password a,
.woocommerce .checkout .lost_password a,
.woocommerce-page .checkout .lost_password a {
  color: #ccc;
}
.woocommerce .login .lost_password a:hover,
.woocommerce-page .login .lost_password a:hover,
.woocommerce .checkout_coupon .lost_password a:hover,
.woocommerce-page .checkout_coupon .lost_password a:hover,
.woocommerce .checkout .lost_password a:hover,
.woocommerce-page .checkout .lost_password a:hover {
  color: #1a1a1a;
}
.woocommerce .login h1,
.woocommerce-page .login h1,
.woocommerce .checkout_coupon h1,
.woocommerce-page .checkout_coupon h1,
.woocommerce .checkout h1,
.woocommerce-page .checkout h1,
.woocommerce .login h2,
.woocommerce-page .login h2,
.woocommerce .checkout_coupon h2,
.woocommerce-page .checkout_coupon h2,
.woocommerce .checkout h2,
.woocommerce-page .checkout h2,
.woocommerce .login h3,
.woocommerce-page .login h3,
.woocommerce .checkout_coupon h3,
.woocommerce-page .checkout_coupon h3,
.woocommerce .checkout h3,
.woocommerce-page .checkout h3,
.woocommerce .login h4,
.woocommerce-page .login h4,
.woocommerce .checkout_coupon h4,
.woocommerce-page .checkout_coupon h4,
.woocommerce .checkout h4,
.woocommerce-page .checkout h4,
.woocommerce .login h4,
.woocommerce-page .login h4,
.woocommerce .checkout_coupon h4,
.woocommerce-page .checkout_coupon h4,
.woocommerce .checkout h4,
.woocommerce-page .checkout h4,
.woocommerce .login h6,
.woocommerce-page .login h6,
.woocommerce .checkout_coupon h6,
.woocommerce-page .checkout_coupon h6,
.woocommerce .checkout h6,
.woocommerce-page .checkout h6 {
  font-size: 24px;
  margin: 0 0 30px 0;
  position: relative;
}
.woocommerce .form-row label,
.woocommerce-page .form-row label {
  display: block;
  margin-bottom: 5px;
  margin-top: 20px;
}
.woocommerce .form-row label.checkbox,
.woocommerce-page .form-row label.checkbox {
  display: inline-block;
}
.woocommerce .form-row .input-text,
.woocommerce-page .form-row .input-text {
  width: 50%;
}
.woocommerce .checkout,
.woocommerce-page .checkout {
  display: inline-block;
  width: 100%;
}
.woocommerce #customer_details,
.woocommerce-page #customer_details {
  float: left;
  width: 45%;
  margin-bottom: 50px;
}
.woocommerce #customer_details .input-text,
.woocommerce-page #customer_details .input-text {
  width: 100%;
}
.woocommerce #customer_details .woocommerce-billing-fields,
.woocommerce-page #customer_details .woocommerce-billing-fields {
  margin-bottom: 30px;
}
.woocommerce #order_review_heading,
.woocommerce-page #order_review_heading {
  width: 48%;
  float: right;
}
.woocommerce #order_review,
.woocommerce-page #order_review {
  text-align: left;
  float: right;
  width: 48%;
  position: relative;
  margin-bottom: 50px;
}
.woocommerce #order_review .shop_table,
.woocommerce-page #order_review .shop_table {
  margin-bottom: 20px;
}
.woocommerce #order_review #payment .payment_methods,
.woocommerce-page #order_review #payment .payment_methods {
  padding: 0 20px;
  margin: 40px 0;
  border: 1px solid rgba(0, 0, 0, 0.1);
}
.woocommerce #order_review #payment .payment_methods li,
.woocommerce-page #order_review #payment .payment_methods li {
  list-style: none;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  padding: 20px 0;
}
.woocommerce #order_review #payment .payment_methods li:last-child,
.woocommerce-page #order_review #payment .payment_methods li:last-child {
  border: none;
}
.woocommerce #order_review #payment .payment_methods li label,
.woocommerce-page #order_review #payment .payment_methods li label {
  cursor: pointer;
}
.woocommerce #order_review #payment .payment_methods li label img,
.woocommerce-page #order_review #payment .payment_methods li label img {
  display: block;
}
.woocommerce #order_review #payment .payment_methods li label .about_paypal,
.woocommerce-page #order_review #payment .payment_methods li label .about_paypal {
  display: block;
}
.woocommerce #order_review #payment .payment_methods li .payment_box,
.woocommerce-page #order_review #payment .payment_methods li .payment_box {
  margin-top: 15px;
}
.woocommerce #order_review #payment #place_order,
.woocommerce-page #order_review #payment #place_order {
  margin-bottom: 20px;
}
.woocommerce .order_details,
.woocommerce-page .order_details {
  margin: 0;
  padding: 20px 0;
  border-top: 1px solid #e6e6e6;
  display: inline-block;
  width: 100%;
}
.woocommerce .order_details li,
.woocommerce-page .order_details li {
  list-style: none;
  float: left;
  border-right: 1px dotted #ccc;
  padding: 0 20px;
}
.woocommerce .order_details li:first-child,
.woocommerce-page .order_details li:first-child {
  padding-left: 0;
}
.woocommerce .order_details li:last-child,
.woocommerce-page .order_details li:last-child {
  border: none;
}
.woocommerce .order_details li strong,
.woocommerce-page .order_details li strong {
  display: block;
}
.woocommerce .products,
.woocommerce-page .products {
  padding: 0;
  margin: 0 -15px;
  position: relative;
  clear: both;
}
.woocommerce .products:after,
.woocommerce-page .products:after {
  clear: both;
  content: "";
  display: block;
}
.woocommerce .products li,
.woocommerce-page .products li {
  list-style: none;
  float: left;
  padding: 0 15px;
  width: 33.3333333%;
  margin-bottom: 30px;
}
.woocommerce .products li .product-inner,
.woocommerce-page .products li .product-inner {
  position: relative;
  overflow: hidden;
}
.woocommerce .products li .product-inner:hover .product-thumbnail a img,
.woocommerce-page .products li .product-inner:hover .product-thumbnail a img {
  -webkit-opacity: 0.5;
  -khtml-opacity: 0.5;
  -moz-opacity: 0.5;
  opacity: 0.5;
  -ms-filter: progid:DXImageTransform.Microsoft.Alpha(opacity=50);
  filter: alpha(opacity=50);
}
.woocommerce .products li .product-inner:hover .product-info,
.woocommerce-page .products li .product-inner:hover .product-info {
  -webkit-transform: translateY(-30px);
  -moz-transform: translateY(-30px);
  -ms-transform: translateY(-30px);
  -o-transform: translateY(-30px);
  transform: translateY(-30px);
}
.woocommerce .products li .product-thumbnail a,
.woocommerce-page .products li .product-thumbnail a {
  display: block;
}
.woocommerce .products li .product-info,
.woocommerce-page .products li .product-info {
  overflow: hidden;
  position: absolute;
  bottom: 0;
  left: 30px;
  right: 30px;
  -webkit-transform: translateY(45px);
  -moz-transform: translateY(45px);
  -ms-transform: translateY(45px);
  -o-transform: translateY(45px);
  transform: translateY(45px);
}
.woocommerce .products li .product-info h3,
.woocommerce-page .products li .product-info h3 {
  font-size: 20px;
  margin: 0 0 15px 0;
}
.woocommerce .products li .product-info .price,
.woocommerce-page .products li .product-info .price {
  display: block;
  margin: 0 0 30px 0;
  color: #1a1a1a;
}
.woocommerce .products li .product-info .price del,
.woocommerce-page .products li .product-info .price del {
  color: #ccc;
  font-weight: normal;
}
.woocommerce .products li .product-info .price ins,
.woocommerce-page .products li .product-info .price ins {
  text-decoration: none;
}
.woocommerce .products li .product-info .price .amount,
.woocommerce-page .products li .product-info .price .amount {
  background: #fff;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  -ms-border-radius: 30px;
  -o-border-radius: 30px;
  border-radius: 30px;
  padding: 3px 10px;
}
.woocommerce .products li .product-info .star-rating,
.woocommerce-page .products li .product-info .star-rating {
  position: absolute;
  right: 0;
  bottom: 72px;
}
.woocommerce .products li .product-info .secondary-image,
.woocommerce-page .products li .product-info .secondary-image {
  position: absolute;
  top: 0;
  left: 0;
  padding: 0 15px;
  visibility: hidden;
  -webkit-opacity: 0;
  -khtml-opacity: 0;
  -moz-opacity: 0;
  opacity: 0;
  -ms-filter: progid:DXImageTransform.Microsoft.Alpha(opacity=0);
  filter: alpha(opacity=0);
}
.woocommerce .products li .add_to_cart_button.loading,
.woocommerce-page .products li .add_to_cart_button.loading {
  -webkit-opacity: 0.3 !important;
  -khtml-opacity: 0.3 !important;
  -moz-opacity: 0.3 !important;
  opacity: 0.3 !important;
  -ms-filter: progid:DXImageTransform.Microsoft.Alpha(opacity=30) !important;
  filter: alpha(opacity=30) !important;
}
.woocommerce .products li .wc-forward,
.woocommerce-page .products li .wc-forward {
  position: absolute;
  width: 50px;
  height: 50px;
  right: 0;
  bottom: 80px;
  text-indent: -9999px;
  z-index: 2;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  -ms-border-radius: 100%;
  -o-border-radius: 100%;
  border-radius: 100%;
}
.woocommerce .products li .wc-forward:after,
.woocommerce-page .products li .wc-forward:after {
  position: absolute;
  content: "\f00c";
  font-family: 'FontAwesome';
  left: 17px;
  top: 8px;
  font-size: 18px;
  color: #fff;
  text-indent: 0;
}
.woocommerce .products li.product-category a,
.woocommerce-page .products li.product-category a {
  display: block;
  background: #000;
}
.woocommerce .products li.product-category a:hover img,
.woocommerce-page .products li.product-category a:hover img {
  -webkit-opacity: 0.5;
  -khtml-opacity: 0.5;
  -moz-opacity: 0.5;
  opacity: 0.5;
  -ms-filter: progid:DXImageTransform.Microsoft.Alpha(opacity=50);
  filter: alpha(opacity=50);
}
.woocommerce .products li.product-category h3,
.woocommerce-page .products li.product-category h3 {
  font-size: 18px;
  margin: 0;
  position: absolute;
  background: #fff;
  bottom: 20px;
  left: 35px;
  right: 35px;
  text-align: center;
  padding: 15px 30px;
  -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  -moz-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  -ms-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  -o-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}
.woocommerce .products li.product-category h3 mark,
.woocommerce-page .products li.product-category h3 mark {
  background: none;
  position: relative;
  font-size: 14px;
  top: -10px;
  color: #777;
}
.woocommerce .products li.product-category.last,
.woocommerce-page .products li.product-category.last {
  margin-bottom: 50px;
}
.woocommerce .quantity .input-text,
.woocommerce-page .quantity .input-text {
  width: 90px;
  vertical-align: middle;
  text-align: center;
}
.woocommerce .product,
.woocommerce-page .product {
  position: relative;
}
.woocommerce .product .images,
.woocommerce-page .product .images {
  float: left;
  width: 50%;
  padding-right: 25px;
  position: relative;
}
.woocommerce .product .images a,
.woocommerce-page .product .images a {
  display: block;
  position: relative;
  overflow: hidden;
  cursor: zoom-in;
}
.woocommerce .product .images .thumbnails,
.woocommerce-page .product .images .thumbnails {
  overflow: hidden;
  width: auto;
  margin: 0 -5px;
}
.woocommerce .product .images .thumbnails a,
.woocommerce-page .product .images .thumbnails a {
  float: left;
  width: 25%;
  padding: 0 5px;
  margin-top: 10px;
}
.woocommerce .product .summary,
.woocommerce-page .product .summary {
  float: right;
  width: 50%;
  padding-left: 25px;
}
.woocommerce .product .summary .stock,
.woocommerce-page .product .summary .stock {
  font-size: 14px;
  padding: 0 15px;
  background: #f5f5f5;
  position: absolute;
  top: 0;
  right: 0;
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  -ms-border-radius: 50px;
  -o-border-radius: 50px;
  border-radius: 50px;
}
.woocommerce .product .summary .product_title,
.woocommerce-page .product .summary .product_title {
  margin-top: 0;
  font-size: 30px;
}
.woocommerce .product .summary .woocommerce-product-rating,
.woocommerce-page .product .summary .woocommerce-product-rating {
  margin-bottom: 10px;
}
.woocommerce .product .summary .woocommerce-product-rating .star-rating,
.woocommerce-page .product .summary .woocommerce-product-rating .star-rating {
  display: inline-block;
  margin-right: 10px;
}
.woocommerce .product .summary .woocommerce-product-rating .woocommerce-review-link,
.woocommerce-page .product .summary .woocommerce-product-rating .woocommerce-review-link {
  color: #a0a0a0;
  font-size: 14px;
  vertical-align: top;
}
.woocommerce .product .summary .woocommerce-product-rating .woocommerce-review-link:hover,
.woocommerce-page .product .summary .woocommerce-product-rating .woocommerce-review-link:hover {
  color: #1a1a1a;
}
.woocommerce .product .summary p.price,
.woocommerce-page .product .summary p.price {
  font-size: 18px;
  margin-bottom: 10px;
  color: #1a1a1a;
}
.woocommerce .product .summary p.price .amount,
.woocommerce-page .product .summary p.price .amount {
  display: inline-block;
}
.woocommerce .product .summary p.price .from,
.woocommerce-page .product .summary p.price .from {
  color: #1a1a1a;
}
.woocommerce .product .summary p.price del,
.woocommerce-page .product .summary p.price del {
  color: #ccc;
}
.woocommerce .product .summary p.price del span,
.woocommerce-page .product .summary p.price del span {
  color: #ccc !important;
}
.woocommerce .product .summary p.price del .amount,
.woocommerce-page .product .summary p.price del .amount {
  background: none;
  padding: 0;
  margin-right: 10px;
  text-decoration: inherit;
}
.woocommerce .product .summary p.price ins,
.woocommerce-page .product .summary p.price ins {
  text-decoration: none;
}
.woocommerce .product .summary p.cart,
.woocommerce-page .product .summary p.cart {
  margin-bottom: 50px;
}
.woocommerce .product .summary .cart,
.woocommerce-page .product .summary .cart {
  margin: 30px 0;
}
.woocommerce .product .summary .cart.variations_form,
.woocommerce-page .product .summary .cart.variations_form {
  margin-bottom: 0;
  margin-top: 30px;
}
.woocommerce .product .summary .cart.variations_form .variations_button,
.woocommerce-page .product .summary .cart.variations_form .variations_button {
  margin-bottom: 50px;
}
.woocommerce .product .summary .cart button.single_add_to_cart_button,
.woocommerce-page .product .summary .cart button.single_add_to_cart_button {
  padding-top: 0;
  vertical-align: middle;
}
.woocommerce .product .summary .cart button.single_add_to_cart_button:disabled,
.woocommerce-page .product .summary .cart button.single_add_to_cart_button:disabled {
  background: #f2f2f2;
  cursor: no-drop;
}
.woocommerce .product .summary .cart button.single_add_to_cart_button:disabled:hover,
.woocommerce-page .product .summary .cart button.single_add_to_cart_button:disabled:hover {
  background: #f2f2f2;
}
.woocommerce .product .summary .cart .quantity,
.woocommerce-page .product .summary .cart .quantity {
  float: left;
  margin-right: 10px;
}
.woocommerce .product .summary .cart .variations,
.woocommerce-page .product .summary .cart .variations {
  position: relative;
  background: none;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  -ms-box-shadow: none;
  -o-box-shadow: none;
  box-shadow: none;
}
.woocommerce .product .summary .cart .variations tr,
.woocommerce-page .product .summary .cart .variations tr {
  margin-bottom: 10px;
  border: none;
  background: none;
}
.woocommerce .product .summary .cart .variations tr td,
.woocommerce-page .product .summary .cart .variations tr td {
  vertical-align: sub;
}
.woocommerce .product .summary .cart .variations tr td.label,
.woocommerce-page .product .summary .cart .variations tr td.label {
  padding: 10px 10px 0 0;
  border: none;
}
.woocommerce .product .summary .cart .variations tr td.value,
.woocommerce-page .product .summary .cart .variations tr td.value {
  width: 100%;
  padding: 0 0 10px 0;
  border: none;
}
.woocommerce .product .summary .cart .variations tr td.value select,
.woocommerce-page .product .summary .cart .variations tr td.value select {
  width: 100%;
}
.woocommerce .product .summary .cart .variations tr td.value a.reset_variations,
.woocommerce-page .product .summary .cart .variations tr td.value a.reset_variations {
  margin-top: 10px;
  display: block;
  color: #ccc;
  font-size: 11px;
}
.woocommerce .product .summary .cart .variations tr td.value a.reset_variations:hover,
.woocommerce-page .product .summary .cart .variations tr td.value a.reset_variations:hover {
  color: #1a1a1a;
}
.woocommerce .product .summary .cart .single_variation_wrap .single_variation .price,
.woocommerce-page .product .summary .cart .single_variation_wrap .single_variation .price {
  font-size: 18px;
  color: #1a1a1a;
}
.woocommerce .product .summary .cart table,
.woocommerce-page .product .summary .cart table {
  border: none;
}
.woocommerce .product .summary .product_meta,
.woocommerce-page .product .summary .product_meta {
  font-size: 14px;
  color: #282828;
}
.woocommerce .product .summary .product_meta a,
.woocommerce-page .product .summary .product_meta a {
  position: relative;
  color: #aaa;
}
.woocommerce .product .summary .product_meta a:after,
.woocommerce-page .product .summary .product_meta a:after {
  width: 0;
  height: 1px;
  background: #1a1a1a;
  position: absolute;
  left: 0;
  bottom: -2px;
  content: "";
}
.woocommerce .product .summary .product_meta a:hover,
.woocommerce-page .product .summary .product_meta a:hover {
  color: #1a1a1a;
}
.woocommerce .product .summary .product_meta a:hover:after,
.woocommerce-page .product .summary .product_meta a:hover:after {
  width: 100%;
}
.woocommerce .product .summary .product_meta .posted_in,
.woocommerce-page .product .summary .product_meta .posted_in,
.woocommerce .product .summary .product_meta .tagged_as,
.woocommerce-page .product .summary .product_meta .tagged_as,
.woocommerce .product .summary .product_meta .sku_wrapper,
.woocommerce-page .product .summary .product_meta .sku_wrapper {
  margin-right: 20px;
}
.woocommerce .product .woocommerce-tabs,
.woocommerce-page .product .woocommerce-tabs {
  padding-top: 60px;
  clear: both;
}
.woocommerce .product .woocommerce-tabs:after,
.woocommerce-page .product .woocommerce-tabs:after {
  clear: both;
  content: "";
  display: table;
}
.woocommerce .product .woocommerce-tabs .tabs,
.woocommerce-page .product .woocommerce-tabs .tabs {
  padding: 0;
  margin: 0 0 30px 0;
  display: inline-block;
  width: 100%;
}
.woocommerce .product .woocommerce-tabs .tabs li,
.woocommerce-page .product .woocommerce-tabs .tabs li {
  list-style: none;
  display: inline-block;
  margin-right: 30px;
}
.woocommerce .product .woocommerce-tabs .tabs li.active a,
.woocommerce-page .product .woocommerce-tabs .tabs li.active a {
  color: #1a1a1a;
}
.woocommerce .product .woocommerce-tabs .tabs li.active a:after,
.woocommerce-page .product .woocommerce-tabs .tabs li.active a:after {
  width: 100%;
}
.woocommerce .product .woocommerce-tabs .tabs li a,
.woocommerce-page .product .woocommerce-tabs .tabs li a {
  position: relative;
  color: #707070;
}
.woocommerce .product .woocommerce-tabs .tabs li a:hover,
.woocommerce-page .product .woocommerce-tabs .tabs li a:hover {
  color: #1a1a1a;
}
.woocommerce .product .woocommerce-tabs .tabs li a:after,
.woocommerce-page .product .woocommerce-tabs .tabs li a:after {
  background: rgba(0, 0, 0, 0.6);
  width: 0;
  height: 1px;
  position: absolute;
  left: 0;
  bottom: -5px;
  content: "";
}
.woocommerce .product .woocommerce-tabs .entry-content,
.woocommerce-page .product .woocommerce-tabs .entry-content {
  padding: 0;
}
.woocommerce .product .woocommerce-tabs .entry-content img.alignnone,
.woocommerce-page .product .woocommerce-tabs .entry-content img.alignnone {
  margin-top: 50px;
  margin-bottom: 50px;
}
.woocommerce .product .woocommerce-tabs .entry-content h2,
.woocommerce-page .product .woocommerce-tabs .entry-content h2 {
  display: none;
}
.woocommerce .product .woocommerce-tabs .shop_attributes,
.woocommerce-page .product .woocommerce-tabs .shop_attributes {
  width: 100%;
}
.woocommerce .product .woocommerce-tabs .shop_attributes tr,
.woocommerce-page .product .woocommerce-tabs .shop_attributes tr {
  text-align: left;
}
.woocommerce .product .woocommerce-tabs .shop_attributes tr:last-child,
.woocommerce-page .product .woocommerce-tabs .shop_attributes tr:last-child {
  border: none;
}
.woocommerce .product .woocommerce-tabs .shop_attributes tr th,
.woocommerce-page .product .woocommerce-tabs .shop_attributes tr th {
  width: 200px;
  font-weight: normal;
  color: #000;
}
.woocommerce .product .woocommerce-tabs #comments,
.woocommerce-page .product .woocommerce-tabs #comments {
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  -ms-box-shadow: none;
  -o-box-shadow: none;
  box-shadow: none;
  padding: 0;
}
.woocommerce .product .related,
.woocommerce-page .product .related,
.woocommerce .product .upsells,
.woocommerce-page .product .upsells {
  padding-top: 60px;
  margin: 0;
}
.woocommerce .product .related h2,
.woocommerce-page .product .related h2,
.woocommerce .product .upsells h2,
.woocommerce-page .product .upsells h2 {
  font-size: 24px;
  margin: 0 0 30px 0;
}
.woocommerce #respond #reply-title,
.woocommerce-page #respond #reply-title {
  font-size: 18px;
  margin-top: 0;
}
.woocommerce #respond #commentform,
.woocommerce-page #respond #commentform {
  width: 100%;
}
.woocommerce #respond #commentform p label,
.woocommerce-page #respond #commentform p label {
  display: inline-block;
  margin-bottom: 5px;
}
.woocommerce #respond #commentform p input,
.woocommerce-page #respond #commentform p input,
.woocommerce #respond #commentform p textarea#comment,
.woocommerce-page #respond #commentform p textarea#comment {
  width: 100%;
  margin: 0;
}
.woocommerce #respond #commentform p.stars,
.woocommerce-page #respond #commentform p.stars {
  overflow: hidden;
  position: relative;
  height: 1em;
  line-height: 1.1em;
  font-size: 14px;
  width: 66px;
  font-family: 'FontAwesome';
  margin-top: 10px;
}
.woocommerce #respond #commentform p.stars:before,
.woocommerce-page #respond #commentform p.stars:before {
  content: "\f006\f006\f006\f006\f006";
  float: left;
  left: 0;
  position: absolute;
  top: 0;
}
.woocommerce #respond #commentform p.stars span a,
.woocommerce-page #respond #commentform p.stars span a {
  float: left;
  height: 0;
  left: 0;
  overflow: hidden;
  padding-top: 1em;
  position: absolute;
  top: 0;
}
.woocommerce #respond #commentform p.stars span a:before,
.woocommerce-page #respond #commentform p.stars span a:before {
  left: 0;
  position: absolute;
  top: 0;
  visibility: hidden;
  content: "\f005\f005\f005\f005\f005";
}
.woocommerce #respond #commentform p.stars span a.star-1,
.woocommerce-page #respond #commentform p.stars span a.star-1 {
  width: 13px;
  z-index: 10;
}
.woocommerce #respond #commentform p.stars span a.star-2,
.woocommerce-page #respond #commentform p.stars span a.star-2 {
  width: 26px;
  z-index: 9;
}
.woocommerce #respond #commentform p.stars span a.star-3,
.woocommerce-page #respond #commentform p.stars span a.star-3 {
  width: 39px;
  z-index: 8;
}
.woocommerce #respond #commentform p.stars span a.star-4,
.woocommerce-page #respond #commentform p.stars span a.star-4 {
  width: 52px;
  z-index: 7;
}
.woocommerce #respond #commentform p.stars span a.star-5,
.woocommerce-page #respond #commentform p.stars span a.star-5 {
  width: 65px;
  z-index: 6;
}
.woocommerce #respond #commentform p.stars span a.active:before,
.woocommerce-page #respond #commentform p.stars span a.active:before {
  color: #000;
  visibility: visible;
}
.woocommerce #respond #commentform p.comment-form-comment,
.woocommerce-page #respond #commentform p.comment-form-comment {
  float: none;
  padding: 0;
  width: 100%;
}
.woocommerce #respond #commentform p.comment-form-comment textarea,
.woocommerce-page #respond #commentform p.comment-form-comment textarea {
  height: 100px;
}
.woocommerce #respond #commentform p.form-submit input,
.woocommerce-page #respond #commentform p.form-submit input {
  width: auto;
}
.woocommerce #reviews #comments,
.woocommerce-page #reviews #comments {
  margin-top: 0;
  margin-bottom: 20px;
}
.woocommerce #reviews #comments ol.commentlist,
.woocommerce-page #reviews #comments ol.commentlist {
  padding: 0;
  margin: 20px 0 0;
}
.woocommerce #reviews #comments ol.commentlist li,
.woocommerce-page #reviews #comments ol.commentlist li {
  list-style: none;
  position: relative;
  display: inline-block;
  width: 100%;
  padding: 30px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.woocommerce #reviews #comments ol.commentlist li img.avatar,
.woocommerce-page #reviews #comments ol.commentlist li img.avatar {
  float: left;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  -ms-border-radius: 100%;
  -o-border-radius: 100%;
  border-radius: 100%;
}
.woocommerce #reviews #comments ol.commentlist li .comment-text,
.woocommerce-page #reviews #comments ol.commentlist li .comment-text {
  margin-left: 95px;
  position: relative;
}
.woocommerce #reviews #comments ol.commentlist li .comment-text p.meta,
.woocommerce-page #reviews #comments ol.commentlist li .comment-text p.meta {
  margin-bottom: 5px;
}
.woocommerce #reviews #comments ol.commentlist li .comment-text p.meta time,
.woocommerce-page #reviews #comments ol.commentlist li .comment-text p.meta time {
  color: #b3b3b3;
}
.woocommerce #reviews #comments ol.commentlist li .comment-text p.meta strong,
.woocommerce-page #reviews #comments ol.commentlist li .comment-text p.meta strong {
  color: #1a1a1a;
}
.woocommerce #reviews #comments ol.commentlist li .star-rating,
.woocommerce-page #reviews #comments ol.commentlist li .star-rating {
  position: absolute;
  right: 0;
  top: 5px;
}
.woocommerce #reviews #comments .add_review,
.woocommerce-page #reviews #comments .add_review {
  padding-left: 75px;
}
.woocommerce #reviews #comments .add_review a,
.woocommerce-page #reviews #comments .add_review a {
  margin: 0;
}
.woocommerce .shop_table,
.woocommerce-page .shop_table {
  display: table;
}
.woocommerce .shop_table tbody tr td.product-remove,
.woocommerce-page .shop_table tbody tr td.product-remove {
  padding-right: 20px;
}
.woocommerce .shop_table tbody tr td.product-remove .remove,
.woocommerce-page .shop_table tbody tr td.product-remove .remove {
  width: 24px;
  height: 24px;
  line-height: 24px;
  text-align: center;
  display: inline-block;
  background: rgba(0, 0, 0, 0.05);
}
.woocommerce .shop_table tbody tr td.product-remove .remove:hover,
.woocommerce-page .shop_table tbody tr td.product-remove .remove:hover {
  background: #1a1a1a;
  color: #fff;
}
.woocommerce .shop_table tbody tr td.product-name a,
.woocommerce-page .shop_table tbody tr td.product-name a {
  color: #1a1a1a;
}
.woocommerce .shop_table tbody tr td.product-price .amount,
.woocommerce-page .shop_table tbody tr td.product-price .amount,
.woocommerce .shop_table tbody tr td.product-subtotal .amount,
.woocommerce-page .shop_table tbody tr td.product-subtotal .amount {
  color: #e74c3c;
}
.woocommerce .shop_table tbody tr td.actions .coupon label[for="coupon_code"],
.woocommerce-page .shop_table tbody tr td.actions .coupon label[for="coupon_code"] {
  display: none;
}
.woocommerce .shop_table tbody tr td.actions .coupon #coupon_code,
.woocommerce-page .shop_table tbody tr td.actions .coupon #coupon_code {
  float: left;
}
.woocommerce .shop_table tbody tr td.actions .coupon .button,
.woocommerce-page .shop_table tbody tr td.actions .coupon .button {
  float: left;
  margin: 0 10px;
}
.woocommerce .shop_table tbody tr td img,
.woocommerce-page .shop_table tbody tr td img {
  width: 50px;
}
.woocommerce .shop_table.order_details,
.woocommerce-page .shop_table.order_details {
  border-top: none;
  margin-bottom: 30px;
}
.woocommerce .customer_details,
.woocommerce-page .customer_details {
  margin: 0;
}
.woocommerce .customer_details dt,
.woocommerce-page .customer_details dt,
.woocommerce .customer_details dd,
.woocommerce-page .customer_details dd {
  display: block;
  margin: 0;
}
.woocommerce .customer_details dt,
.woocommerce-page .customer_details dt {
  margin-top: 10px;
}
.woocommerce .customer_details h3,
.woocommerce-page .customer_details h3 {
  font-size: 24px;
}
.woocommerce .cart-collaterals,
.woocommerce-page .cart-collaterals {
  margin-bottom: 50px;
}
.woocommerce .cart-collaterals h2,
.woocommerce-page .cart-collaterals h2 {
  font-size: 24px;
  margin: 50px 0 40px 0;
}
.woocommerce .cart-collaterals .products li,
.woocommerce-page .cart-collaterals .products li {
  margin-bottom: 0;
}
.woocommerce .cart-collaterals .cart_totals table,
.woocommerce-page .cart-collaterals .cart_totals table {
  margin-bottom: 20px;
}
.woocommerce .cart-collaterals .cart_totals table tr th,
.woocommerce-page .cart-collaterals .cart_totals table tr th,
.woocommerce .cart-collaterals .cart_totals table tr td,
.woocommerce-page .cart-collaterals .cart_totals table tr td {
  width: 50%;
}
.woocommerce .cart-collaterals .cart_totals table tr th .amount,
.woocommerce-page .cart-collaterals .cart_totals table tr th .amount,
.woocommerce .cart-collaterals .cart_totals table tr td .amount,
.woocommerce-page .cart-collaterals .cart_totals table tr td .amount {
  color: #e74c3c;
}
.woocommerce .cart-collaterals .cart_totals table tr.shipping .woocommerce-shipping-calculator > p,
.woocommerce-page .cart-collaterals .cart_totals table tr.shipping .woocommerce-shipping-calculator > p {
  margin-bottom: 0;
}
.woocommerce .cart-collaterals .cart_totals table tr.shipping .shipping-calculator-form,
.woocommerce-page .cart-collaterals .cart_totals table tr.shipping .shipping-calculator-form {
  margin-top: 10px;
}
.woocommerce .return-to-shop,
.woocommerce-page .return-to-shop {
  margin-bottom: 50px;
}
.woocommerce .return-to-shop .wc-backward,
.woocommerce-page .return-to-shop .wc-backward {
  height: 45px;
  line-height: 45px;
  padding: 0 50px;
  display: inline-block;
  width: auto;
}
.woocommerce fieldset {
  border: none;
  padding: 0;
  margin: 0 0 50px 0;
}
.woocommerce fieldset legend {
  color: #1a1a1a;
  font-size: 18px;
  margin: 30px 0 10px;
}
/* ============================================================ 
    2. WIDGET STYLES
=============================================================*/
.widget_shopping_cart .cart_list,
.widget_shopping_cart_content .cart_list {
  margin: 0;
  padding: 0;
}
.widget_shopping_cart .cart_list li,
.widget_shopping_cart_content .cart_list li {
  padding: 20px 30px 20px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  position: relative;
  display: block;
  width: 100%;
}
.widget_shopping_cart .cart_list li.empty,
.widget_shopping_cart_content .cart_list li.empty {
  padding: 0;
}
.widget_shopping_cart .cart_list li a,
.widget_shopping_cart_content .cart_list li a {
  display: block;
  line-height: 1.6;
}
.widget_shopping_cart .cart_list li a img,
.widget_shopping_cart_content .cart_list li a img {
  max-width: 55px;
  height: auto;
  float: left;
  margin-right: 15px;
}
.widget_shopping_cart .cart_list li a .quantity,
.widget_shopping_cart_content .cart_list li a .quantity {
  font-size: 14px;
}
.widget_shopping_cart .cart_list li .remove,
.widget_shopping_cart_content .cart_list li .remove {
  color: #ccc;
  position: absolute !important;
  height: 24px;
  line-height: 22px;
  text-align: center;
  width: 24px;
  margin-top: 15px;
  border: 2px solid rgba(0, 0, 0, 0.1);
  right: 0;
  top: 50%;
  margin-top: -12px;
}
.widget_shopping_cart .cart_list li .remove:hover,
.widget_shopping_cart_content .cart_list li .remove:hover {
  color: #1a1a1a;
  border-color: #1a1a1a;
}
.widget_shopping_cart .cart_list li:first-child a.remove,
.widget_shopping_cart_content .cart_list li:first-child a.remove {
  margin-top: -22px;
}
.widget_shopping_cart .cart_list li:last-child a.remove,
.widget_shopping_cart_content .cart_list li:last-child a.remove {
  margin-top: -2px;
}
.widget_shopping_cart .cart_list li .variation dt,
.widget_shopping_cart_content .cart_list li .variation dt,
.widget_shopping_cart .cart_list li .variation dd,
.widget_shopping_cart_content .cart_list li .variation dd {
  display: inline-block;
  margin: 0;
}
.widget_shopping_cart .total,
.widget_shopping_cart_content .total {
  padding-top: 20px;
  color: #1a1a1a;
  text-align: center;
}
.widget_shopping_cart .buttons,
.widget_shopping_cart_content .buttons {
  display: inline-block;
  width: 100%;
}
.widget_shopping_cart .buttons .button,
.widget_shopping_cart_content .buttons .button {
  width: 50%;
  text-align: center;
}
.widget_shopping_cart .buttons .button.checkout,
.widget_shopping_cart_content .buttons .button.checkout {
  float: right;
}
.widget.widget_layered_nav ul {
  margin: 0;
  padding: 0;
}
.widget.widget_layered_nav ul li {
  list-style: none;
}
.widget.widget_price_filter .price_slider_wrapper .ui-slider-horizontal {
  height: 2px;
  background-color: #eee;
}
.widget.widget_price_filter .price_slider_wrapper .ui-slider {
  position: relative;
}
.widget.widget_price_filter .price_slider_wrapper .ui-slider .ui-slider-range {
  position: absolute;
  z-index: 1;
  display: block;
  height: 100%;
  top: 0;
  background: #1a1a1a;
}
.widget.widget_price_filter .price_slider_wrapper .ui-slider .ui-slider-handle {
  height: 10px;
  width: 10px;
  cursor: pointer;
  position: absolute;
  z-index: 2;
  top: -4px;
  outline: 0;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  -ms-border-radius: 100%;
  -o-border-radius: 100%;
  border-radius: 100%;
  -webkit-transition: none;
  -moz-transition: none;
  -ms-transition: none;
  -o-transition: none;
  transition: none;
}
.widget.widget_price_filter .price_slider_wrapper .ui-slider .ui-slider-handle:last-child {
  margin-left: -10px;
}
.widget.widget_price_filter .price_slider_wrapper .price_slider_amount {
  margin-top: 25px;
}
.widget.widget_price_filter .price_slider_wrapper .price_slider_amount .button {
  float: right;
  margin: 0;
  cursor: pointer;
  padding: 0 20px;
}
.widget.widget_price_filter .price_slider_wrapper .price_slider_amount .price_label {
  padding: 10px 0;
}
.widget.widget_products ul,
.widget.widget_recently_viewed_products ul,
.widget.widget_recent_reviews ul,
.widget.widget_top_rated_products ul {
  padding: 0;
  margin: 0;
}
.widget.widget_products ul li,
.widget.widget_recently_viewed_products ul li,
.widget.widget_recent_reviews ul li,
.widget.widget_top_rated_products ul li {
  display: inline-block;
  width: 100%;
  padding: 20px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}
.widget.widget_products ul li:last-child,
.widget.widget_recently_viewed_products ul li:last-child,
.widget.widget_recent_reviews ul li:last-child,
.widget.widget_top_rated_products ul li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.widget.widget_products ul li:first-child,
.widget.widget_recently_viewed_products ul li:first-child,
.widget.widget_recent_reviews ul li:first-child,
.widget.widget_top_rated_products ul li:first-child {
  padding-top: 10;
}
.widget.widget_products ul li a,
.widget.widget_recently_viewed_products ul li a,
.widget.widget_recent_reviews ul li a,
.widget.widget_top_rated_products ul li a {
  display: block;
  line-height: 1.6;
}
.widget.widget_products ul li a img,
.widget.widget_recently_viewed_products ul li a img,
.widget.widget_recent_reviews ul li a img,
.widget.widget_top_rated_products ul li a img {
  float: right;
  max-width: 55px;
  height: auto;
  margin-left: 15px;
}
.widget.widget_products ul li .star-rating,
.widget.widget_recently_viewed_products ul li .star-rating,
.widget.widget_recent_reviews ul li .star-rating,
.widget.widget_top_rated_products ul li .star-rating {
  margin: 5px 0;
}
.widget.widget_products ul li .amount,
.widget.widget_recently_viewed_products ul li .amount,
.widget.widget_recent_reviews ul li .amount,
.widget.widget_top_rated_products ul li .amount {
  font-size: 14px;
}
.widget.widget_products ul li ins,
.widget.widget_recently_viewed_products ul li ins,
.widget.widget_recent_reviews ul li ins,
.widget.widget_top_rated_products ul li ins {
  text-decoration: none;
}
.widget.widget_product_search .woocommerce-product-search {
  position: relative;
}
.widget.widget_product_search .woocommerce-product-search .screen-reader-text {
  display: none;
}
.widget.widget_product_search .woocommerce-product-search .search-field {
  width: 100%;
}
.widget.widget_product_search .woocommerce-product-search input[type="submit"] {
  background-image: url(../../assets/img/arrow.svg);
  background-color: transparent;
  width: 30px;
  height: 20px;
  text-indent: -9999px;
  padding: 0;
  position: absolute;
  right: 10px;
  top: 50%;
  margin-top: -10px;
}
.widget.widget_product_search .woocommerce-product-search input[type="submit"]:hover {
  right: 5px;
}
.widget.widget_product_tag_cloud .tagcloud {
  overflow: hidden;
}
.widget.widget_product_tag_cloud .tagcloud a {
  background: #1a1a1a;
  color: #ccc;
  padding: 0 10px;
  margin: 0 5px 5px 0;
  float: left;
  position: relative;
  font-size: 12px !important;
  -webkit-border-radius: 100px;
  -moz-border-radius: 100px;
  -ms-border-radius: 100px;
  -o-border-radius: 100px;
  border-radius: 100px;
}
.widget.widget_product_tag_cloud .tagcloud a:hover {
  color: #1a1a1a;
}
@media only screen and (max-width: 991px) {
  .woocommerce.no-sidebar.single-product .product .images,
  .woocommerce-page.no-sidebar.single-product .product .images {
    padding: 0 15px 0 0;
  }
  .woocommerce.no-sidebar.single-product .product .summary,
  .woocommerce-page.no-sidebar.single-product .product .summary {
    padding: 0 0 0 15px;
  }
}
@media only screen and (max-width: 768px) {
  .woocommerce .products li,
  .woocommerce-page .products li {
    width: 50% !important;
  }
  .woocommerce .product .images,
  .woocommerce-page .product .images,
  .woocommerce .product .summary,
  .woocommerce-page .product .summary {
    float: none;
    width: 100%;
    padding: 0;
  }
  .woocommerce .product .images,
  .woocommerce-page .product .images {
    margin-bottom: 50px;
  }
  .woocommerce .product .woocommerce-tabs,
  .woocommerce-page .product .woocommerce-tabs {
    float: none;
    width: 100%;
    padding-left: 0;
  }
  .woocommerce .cart-collaterals .cart_totals,
  .woocommerce-page .cart-collaterals .cart_totals,
  .woocommerce .cart-collaterals .shipping_calculator,
  .woocommerce-page .cart-collaterals .shipping_calculator {
    float: none;
    width: 100%;
  }
  .woocommerce #customer_details,
  .woocommerce-page #customer_details,
  .woocommerce #order_review,
  .woocommerce-page #order_review,
  .woocommerce #order_review_heading,
  .woocommerce-page #order_review_heading {
    float: none;
    width: 100%;
  }
  .woocommerce .order_details li,
  .woocommerce-page .order_details li {
    float: none;
    border-right: none;
    border-bottom: 1px dotted #ccc;
    padding: 20px 0;
  }
  .woocommerce.no-sidebar.single-product .product .images,
  .woocommerce-page.no-sidebar.single-product .product .images,
  .woocommerce.no-sidebar.single-product .product .summary,
  .woocommerce-page.no-sidebar.single-product .product .summary {
    padding: 0 ;
  }
  .woocommerce.no-sidebar.single-product .product .woocommerce-tabs,
  .woocommerce-page.no-sidebar.single-product .product .woocommerce-tabs {
    width: 100%;
  }
  .woocommerce-content-top .woocommerce-content-top-wrap .widget {
    width: 100%;
    display: block;
  }
  .woocommerce-content-top .woocommerce-content-top-wrap .widget .widget-title {
    margin-top: 0;
  }
}
@media only screen and (max-width: 568px) {
  .woocommerce .products li,
  .woocommerce-page .products li {
    width: 100% !important;
  }
  .woocommerce-content-top .woocommerce-content-top-wrap .widget.widget_price_filter .price_slider {
    float: none;
    width: 100%;
  }
  .woocommerce-content-top .woocommerce-content-top-wrap .widget.widget_price_filter .price_slider_amount {
    float: none;
    width: 100%;
    margin-top: 30px;
  }
}
@media only screen and (max-width: 1211px) {
  body.layout-boxed #site-wrapper {
    width: 100%;
    padding: 0;
    max-width: 95%;
  }
  body .wrapper {
    width: 100%;
    padding-left: 15px;
    padding-right: 15px;
  }
  body.header-v2 #site-header #masthead .wrapper {
    padding: 0 15px;
  }
  body.header-v2 #site-header #masthead .wrapper:before {
    border: none;
  }
}
@media only screen and (max-width: 991px) {
  body #site-header #headerbar {
    text-align: center;
  }
  body #site-header #headerbar .custom-info {
    width: 100%;
    float: none;
    margin-bottom: 20px;
  }
  body #site-header #headerbar .social-links {
    float: none;
    margin: 0 0 15px 0;
  }
  body #site-header #headerbar .social-links a {
    float: none;
    margin: 0 5px;
    display: inline-block;
  }
  body #site-header #headerbar .top-navigator {
    float: none;
  }
  body #site-header #headerbar .top-navigator .menu li {
    float: none;
    display: inline-block;
  }
  body #site-header #headerbar .top-navigator .menu li a {
    padding: 6px 8px;
    display: inline-block;
    margin: 0;
    border: none;
  }
  body #site-header #headerbar .top-navigator .menu li .sub-menu {
    text-align: left;
  }
  body #site-header #headerbar .top-navigator .menu li .sub-menu li {
    display: block;
  }
  body #site-header #masthead {
    padding-bottom: 0;
    top: auto !important;
  }
  body #site-header #masthead #site-navigator {
    display: none;
  }
  body #site-header #masthead #site-navigator-mobile {
    display: block;
  }
  body #site-header #masthead + #masthead-placeholder {
    display: none !important;
    height: 0;
  }
  body.header-v2.admin-bar #site-header #masthead.stick {
    top: auto !important;
  }
  body.header-v2 #site-header #headerbar {
    padding-bottom: 10px;
  }
  body.header-v2 #site-header #masthead {
    margin-top: 0;
    position: relative;
  }
  body.header-v2 #site-header #masthead.stick {
    top: auto !important;
    position: relative !important;
  }
  body.header-v2 #site-header #masthead .wrapper {
    padding: 0 15px;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    -ms-box-shadow: none;
    -o-box-shadow: none;
    box-shadow: none;
  }
  body.header-v4 #site-header #masthead .header-widgets {
    right: 100px;
  }
  body #site-footer .columns,
  body #content-bottom-widgets .columns {
    margin-bottom: 50px;
    border: none !important;
  }
  body #site-footer .columns:last-child,
  body #content-bottom-widgets .columns:last-child {
    margin-bottom: 0;
  }
  body #site-footer .columns .widget .subscrbe-form,
  body #content-bottom-widgets .columns .widget .subscrbe-form {
    padding: 0;
  }
  body.sidebar-right #page-body .content-wrap .content {
    padding-right: 15px;
    width: 100%;
  }
  body.sidebar-right #page-body .content-wrap .sidebars {
    padding-left: 15px;
    width: 100%;
  }
  body.sidebar-left #page-body .content-wrap .content {
    left: 0;
    padding-left: 15px;
    width: 100%;
  }
  body.sidebar-left #page-body .content-wrap .sidebars {
    right: 0;
    left: auto;
    padding-right: 15px;
    width: 100%;
  }
  body #site-wrapper .cd-headline {
    font-size: 48px;
  }
  body #site-wrapper .blog-shortcode.blog-grid.blog-two-columns .hentry,
  body #site-wrapper .blog-shortcode.blog-grid.blog-three-columns .hentry,
  body #site-wrapper .blog-shortcode.blog-grid.blog-four-columns .hentry {
    width: 50%;
  }
  body #site-wrapper .blog-shortcode.blog-grid.blog-two-columns .hentry:nth-of-type(2n+1),
  body #site-wrapper .blog-shortcode.blog-grid.blog-three-columns .hentry:nth-of-type(2n+1),
  body #site-wrapper .blog-shortcode.blog-grid.blog-four-columns .hentry:nth-of-type(2n+1),
  body #site-wrapper .blog-shortcode.blog-grid.blog-two-columns .hentry:nth-of-type(3n+1),
  body #site-wrapper .blog-shortcode.blog-grid.blog-three-columns .hentry:nth-of-type(3n+1),
  body #site-wrapper .blog-shortcode.blog-grid.blog-four-columns .hentry:nth-of-type(3n+1),
  body #site-wrapper .blog-shortcode.blog-grid.blog-two-columns .hentry:nth-of-type(4n+1),
  body #site-wrapper .blog-shortcode.blog-grid.blog-three-columns .hentry:nth-of-type(4n+1),
  body #site-wrapper .blog-shortcode.blog-grid.blog-four-columns .hentry:nth-of-type(4n+1) {
    clear: none;
  }
  body .projects[data-columns="2"] .projects-items .hentry,
  body .projects[data-columns="3"] .projects-items .hentry,
  body .projects[data-columns="4"] .projects-items .hentry,
  body .projects[data-columns="5"] .projects-items .hentry {
    width: 33.3333333%;
  }
  body .project-single.project-content-fullwidth .project-content {
    width: 100%;
  }
  body .project-single.project-content-right .project-single-wrap,
  body .project-single.project-content-left .project-single-wrap {
    background: none;
  }
  body .project-single.project-content-right .project-single-wrap .project-gallery,
  body .project-single.project-content-left .project-single-wrap .project-gallery,
  body .project-single.project-content-right .project-single-wrap .project-content,
  body .project-single.project-content-left .project-single-wrap .project-content {
    padding: 0 15px 0 0;
  }
  body .project-single.project-content-right .project-single-wrap .project-content,
  body .project-single.project-content-left .project-single-wrap .project-content {
    padding: 0 0 0 15px;
    position: static !important;
  }
  .columns-1,
  .columns-2,
  .columns-3,
  .columns-4,
  .columns-5,
  .columns-6,
  .columns-7,
  .columns-8,
  .columns-9,
  .columns-10,
  .columns-11,
  .columns-12,
  .sidebar-right #page-body .content-wrap .content,
  .sidebar-right #page-body .content-wrap .sidebars,
  .sidebar-left #page-body .content-wrap .content,
  .sidebar-left #page-body .content-wrap .sidebars {
    width: 100%;
  }
}
@media only screen and (max-width: 768px) {
  body #site-header #masthead #site-brand .header-widgets .widget {
    border: none;
    padding: 0;
  }
  body #site-header #masthead #site-brand .header-widgets .widget:last-child {
    margin-right: 30px;
  }
  body #site-content #page-header .page-title .title {
    font-size: 30px;
  }
  body #site-content .wpb_column .wpb_column {
    margin-bottom: 30px;
  }
  body #site-content .wpb_column .wpb_column:last-child {
    margin-bottom: 0;
  }
  body #site-footer #footer-content {
    text-align: center;
  }
  body #site-footer #footer-content .copyright {
    float: none;
  }
  body #site-footer #footer-content .social-links {
    float: none;
    margin-bottom: 20px;
  }
  body #site-footer #footer-content .social-links a {
    margin: 0 5px;
    float: none;
    display: inline-block;
  }
  body #site-footer #footer-widgets .say-hello {
    background: rgba(255, 255, 255, 0.8);
    padding: 80px 30px;
  }
  body #site-footer #footer-widgets .say-hello h3 {
    font-size: 30px;
    margin-bottom: 10px;
  }
  body #site-wrapper .blog-shortcode.blog-grid.blog-two-columns .hentry,
  body #site-wrapper .blog-shortcode.blog-grid.blog-three-columns .hentry,
  body #site-wrapper .blog-shortcode.blog-grid.blog-four-columns .hentry {
    width: 100%;
  }
  body.blog .hentry,
  body.single-post .hentry {
    margin-left: 0;
  }
  body.blog .hentry .entry-time,
  body.single-post .hentry .entry-time {
    position: static;
    font-size: 14px;
    width: auto;
    height: auto;
    padding: 10px 20px;
    display: inline-block;
    margin-bottom: 30px;
  }
  body.blog .hentry .entry-time span,
  body.single-post .hentry .entry-time span {
    display: inline;
  }
  body.blog .hentry .entry-time:after,
  body.single-post .hentry .entry-time:after {
    display: none;
  }
  body.blog .hentry .entry-content blockquote,
  body.single-post .hentry .entry-content blockquote {
    margin-left: 0;
  }
  body.blog.no-sidebar #main-content,
  body.single-post.no-sidebar #main-content {
    width: 100%;
  }
  body .projects.projects-masonry .projects-filter ul,
  body .projects.projects-grid .projects-filter ul,
  body .projects.projects-grid-alt .projects-filter ul {
    padding-bottom: 10px;
    display: inline-block;
    width: 100%;
    text-align: left;
  }
  body .projects.projects-masonry .projects-filter ul:after,
  body .projects.projects-grid .projects-filter ul:after,
  body .projects.projects-grid-alt .projects-filter ul:after {
    display: none;
  }
  body .projects.projects-masonry .projects-filter ul li,
  body .projects.projects-grid .projects-filter ul li,
  body .projects.projects-grid-alt .projects-filter ul li {
    margin: 0 10px 10px 0;
    float: left;
  }
  body .projects.projects-masonry .projects-filter ul li a,
  body .projects.projects-grid .projects-filter ul li a,
  body .projects.projects-grid-alt .projects-filter ul li a {
    display: block;
    background: #f5f5f5;
    padding: 10px 20px;
    line-height: inherit;
    height: auto;
  }
  body .projects.projects-masonry .projects-filter ul li a:after,
  body .projects.projects-grid .projects-filter ul li a:after,
  body .projects.projects-grid-alt .projects-filter ul li a:after {
    height: 100%;
    bottom: 0;
    background: #1a1a1a;
    z-index: -1;
  }
  body .projects.projects-masonry .projects-filter ul li a:before,
  body .projects.projects-grid .projects-filter ul li a:before,
  body .projects.projects-grid-alt .projects-filter ul li a:before {
    display: none;
  }
  body .projects.projects-masonry .projects-filter ul li.active a,
  body .projects.projects-grid .projects-filter ul li.active a,
  body .projects.projects-grid-alt .projects-filter ul li.active a {
    color: #fff;
    background: #1a1a1a;
  }
  body .projects.projects-masonry .projects-filter ul li.active a:hover,
  body .projects.projects-grid .projects-filter ul li.active a:hover,
  body .projects.projects-grid-alt .projects-filter ul li.active a:hover {
    color: #fff;
  }
  body .projects[data-columns="2"] .projects-items .hentry,
  body .projects[data-columns="3"] .projects-items .hentry,
  body .projects[data-columns="4"] .projects-items .hentry,
  body .projects[data-columns="5"] .projects-items .hentry {
    width: 50%;
  }
  body .project-single.project-content-fullwidth .project-content {
    width: 100%;
  }
  body .project-single.project-content-fullwidth .project-content .project-header {
    float: none;
    width: 100%;
    padding: 0;
  }
  body .project-single.project-content-fullwidth .project-content .project-detail {
    float: none;
    width: 100%;
    padding: 0;
  }
  body .project-single.project-content-right .project-single-wrap .project-gallery,
  body .project-single.project-content-left .project-single-wrap .project-gallery,
  body .project-single.project-content-right .project-single-wrap .project-content,
  body .project-single.project-content-left .project-single-wrap .project-content {
    float: none;
    padding: 0;
    width: 100%;
  }
  body .project-single.project-content-right .project-single-wrap .project-gallery .project-title,
  body .project-single.project-content-left .project-single-wrap .project-gallery .project-title,
  body .project-single.project-content-right .project-single-wrap .project-content .project-title,
  body .project-single.project-content-left .project-single-wrap .project-content .project-title {
    margin-top: 30px;
  }
  body .project-single.project-content-right .project-single-wrap .project-content,
  body .project-single.project-content-left .project-single-wrap .project-content {
    margin-bottom: 50px;
  }
  body .project-single .project-gallery-grid[data-columns="2"] .project-media-item,
  body .project-single .project-gallery-grid[data-columns="3"] .project-media-item,
  body .project-single .project-gallery-grid[data-columns="4"] .project-media-item,
  body .project-single .project-gallery-grid[data-columns="4"] .project-media-item {
    width: 50%;
  }
  body.header-v4 #site-header #masthead #site-brand .wrapper .header-widgets {
    float: none;
    clear: both;
    margin: 0;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    padding-top: 10px;
  }
  body.header-v4 #site-header #masthead #site-brand .wrapper .header-widgets .widget {
    float: none;
    display: inline-block;
    margin: 0 20px 0 0;
  }
  body.header-v4 #site-header #masthead #site-brand .wrapper .header-widgets .widget:first-child {
    margin-right: 20px;
    margin-left: 0;
  }
}
@media only screen and (max-width: 568px) {
  body .projects[data-columns="2"] .projects-items .hentry,
  body .projects[data-columns="3"] .projects-items .hentry,
  body .projects[data-columns="4"] .projects-items .hentry,
  body .projects[data-columns="5"] .projects-items .hentry {
    width: 100%;
  }
  body.header-v4 #site-header #masthead .header-widgets {
    display: none;
  }
  body #footer-widgets .say-hello h3 {
    margin-bottom: 20px;
  }
}
/*============================================================ 
                1. IMAGE
                2. SEPARATOR
                3. ACCORDION
                4. GELLERY
                5. CALL TO ACTION
                6. CAROUSEL
                7. GMAP
                8. TABS
                9. TOUR
                10. BUTTON
                11. PROGRESS BAR
                12. CONTENT GRID
                13. ICON BOX
                14. TESTIMONIAL
                15. MEMBER
                16. IMAGE BOX
                17. ICON LIST
                18. COUNTER
                19. OPENHOURS
                20. COUNTDOWN
                21. HEADING
                22. FLEX SLIDER
                23. CAROUSEL
                24. TOGGLE
                25. DROPCAP
                26. PRICING TABLE
                27. BLOG ELEMENTS
============================================================*/
#site-wrapper {
  /* ============================================================ 
	    1. IMAGE
	=============================================================*/
  /* ============================================================ 
	    3. ACCORDION
	=============================================================*/
  /* ============================================================ 
	    4. GELLERY
	=============================================================*/
  /* ============================================================ 
	    5. CALL TO ACTION
	=============================================================*/
  /* ============================================================ 
	    6. CAROUSEL
	=============================================================*/
  /* ============================================================ 
	    7. GMAP
	=============================================================*/
  /* ============================================================ 
	    8. TABS
	=============================================================*/
  /* ============================================================ 
	    9. TOUR
	=============================================================*/
  /* ============================================================ 
	    10. BUTTON
	=============================================================*/
  /* ============================================================ 
	    11. PROGRESS BAR
	=============================================================*/
  /* ============================================================ 
	    12. CONTENT GRID
	=============================================================*/
  /* ============================================================ 
	    13. ICON BOX
	=============================================================*/
  /* ============================================================ 
	    14. TESTIMONIAL
	=============================================================*/
  /* ============================================================ 
	    15. MEMBER
	=============================================================*/
  /* ============================================================ 
	    16. IMAGE BOX
	=============================================================*/
  /* ============================================================ 
	    17. ICON LIST
	=============================================================*/
  /* ============================================================ 
	    18. COUNTER
	=============================================================*/
  /* ============================================================ 
	    19. OPENHOURS
	=============================================================*/
  /* ============================================================ 
	    20. COUNTDOWN
	=============================================================*/
  /* ============================================================ 
	    21. HEADING
	=============================================================*/
  /* ============================================================ 
	    22. FLEX SLIDER
	=============================================================*/
  /* ============================================================ 
	    23. CAROUSEL
	=============================================================*/
  /* ============================================================ 
	    24. TOGGLE
	=============================================================*/
  /* ============================================================ 
	    25. DROPCAP
	=============================================================*/
  /* ============================================================ 
	    26. PRICING TABLE
	=============================================================*/
  /* ============================================================ 
	    27. BLOG ELEMENTS
	=============================================================*/
}
#site-wrapper .vc_column_container:after {
  clear: both;
  content: "";
  display: table;
}
#site-wrapper .wpb_row {
  margin-bottom: 0;
}
#site-wrapper .wpb_content_element,
#site-wrapper ul.wpb_thumbnails-fluid > li,
#site-wrapper .last_toggle_el_margin,
#site-wrapper .wpb_button {
  margin-bottom: 0;
}
#site-wrapper .no-margin.projects-shortcode.projects-grid .projects-items,
#site-wrapper .no-margin.projects-shortcode.projects-grid-alt .projects-items,
#site-wrapper .no-margin.projects-shortcode.projects-masonry .projects-items,
#site-wrapper .no-margin.projects-shortcode.projects-justified .projects-items {
  margin: 0;
}
#site-wrapper .no-margin.projects-shortcode.projects-grid .projects-items .hentry,
#site-wrapper .no-margin.projects-shortcode.projects-grid-alt .projects-items .hentry,
#site-wrapper .no-margin.projects-shortcode.projects-masonry .projects-items .hentry,
#site-wrapper .no-margin.projects-shortcode.projects-justified .projects-items .hentry {
  padding: 0;
  margin: 0;
}
#site-wrapper .scrollslider .swiper-container {
  height: 460px;
  position: relative;
}
#site-wrapper .scrollslider .swiper-container .swiper-wrapper .swiper-slide {
  background-size: cover;
  background-position: center center;
}
#site-wrapper .scrollslider .swiper-container .swiper-wrapper .slide-container {
  background: rgba(0, 0, 0, 0.1);
  border: 2px solid #fff;
  padding: 30px 50px;
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
  color: #fff;
  font-size: 18px;
  -webkit-transform: translateX(-50%) translateY(-50%);
  -moz-transform: translateX(-50%) translateY(-50%);
  -ms-transform: translateX(-50%) translateY(-50%);
  -o-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
}
#site-wrapper .scrollslider .swiper-container .swiper-wrapper .slide-container .slide-title {
  font-size: 48px;
  color: #fff;
  margin: 0 0 10px 0;
}
#site-wrapper .scrollslider .swiper-container .swiper-wrapper .slide-container:hover {
  background: rgba(0, 0, 0, 0.7);
}
#site-wrapper .scrollslider .swiper-container .swiper-wrapper .slide-container a {
  color: #fff;
}
#site-wrapper .scrollslider .swiper-container .swiper-pagination {
  right: 30px;
}
#site-wrapper .scrollslider .swiper-container .swiper-pagination .swiper-pagination-bullet {
  background: #fff;
  height: 10px;
  width: 10px;
  -webkit-opacity: 1;
  -khtml-opacity: 1;
  -moz-opacity: 1;
  opacity: 1;
  -ms-filter: progid:DXImageTransform.Microsoft.Alpha(opacity=100);
  filter: alpha(opacity=100);
  margin: 8px 0;
}
#site-wrapper .wpb_gmaps_widget .wpb_wrapper {
  padding: 0;
}
#site-wrapper .google-maps img {
  max-width: none;
}
#site-wrapper .vc_progress_bar .vc_single_bar {
  background: rgba(0, 0, 0, 0.05);
  padding: 0;
  height: 3px;
  position: relative;
  margin-bottom: 60px;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  -o-border-radius: 0;
  border-radius: 0;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  -ms-box-shadow: none;
  -o-box-shadow: none;
  box-shadow: none;
}
#site-wrapper .vc_progress_bar .vc_single_bar:last-child {
  margin-bottom: 0;
}
#site-wrapper .vc_progress_bar .vc_label {
  padding: 0;
  top: -30px;
  font-size: 1em;
  color: inherit;
  text-shadow: none;
}
#site-wrapper .vc_progress_bar .vc_label .vc_label_units {
  font-size: 1em;
  float: right;
  color: #1a1a1a;
}
#site-wrapper .vc_progress_bar .vc_bar {
  height: 3px;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  -o-border-radius: 0;
  border-radius: 0;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  -ms-box-shadow: none;
  -o-box-shadow: none;
  box-shadow: none;
}
#site-wrapper .iconbox .box-header .box-icon {
  margin: 0 0 30px 0;
}
#site-wrapper .iconbox .box-header .box-icon i.fa {
  font-size: 42px;
}
#site-wrapper .iconbox .box-header .box-icon i[class*="icon-"] {
  font-size: 32px;
}
#site-wrapper .iconbox .box-header .box-title {
  margin: 0 0 20px 0;
}
#site-wrapper .iconbox .box-content i {
  color: rgba(0, 0, 0, 0.2);
  margin-right: 5px;
}
#site-wrapper .iconbox .box-content .box-readmore {
  margin: 15px 0 0 0;
}
#site-wrapper .iconbox .box-content .box-readmore a {
  position: relative;
}
#site-wrapper .iconbox .box-content .box-readmore a:before {
  background: url(../../assets/img/arrow.svg);
  background-size: 30px 20px;
  position: absolute;
  right: -30px;
  top: 50%;
  margin-top: -10px;
  height: 20px;
  width: 30px;
  content: "";
  -webkit-opacity: 0;
  -khtml-opacity: 0;
  -moz-opacity: 0;
  opacity: 0;
  -ms-filter: progid:DXImageTransform.Microsoft.Alpha(opacity=0);
  filter: alpha(opacity=0);
}
#site-wrapper .iconbox .box-content .box-readmore a:hover {
  margin-left: -10px;
}
#site-wrapper .iconbox .box-content .box-readmore a:hover:before {
  right: -45px;
  -webkit-opacity: 1;
  -khtml-opacity: 1;
  -moz-opacity: 1;
  opacity: 1;
  -ms-filter: progid:DXImageTransform.Microsoft.Alpha(opacity=100);
  filter: alpha(opacity=100);
}
#site-wrapper .testimonial {
  text-align: center;
}
#site-wrapper .testimonial .testimonial-content blockquote {
  padding: 0;
  margin: 30px 0 10px 0;
}
#site-wrapper .testimonial .testimonial-image img {
  width: 70px;
  -webkit-border-radius: 100px;
  -moz-border-radius: 100px;
  -ms-border-radius: 100px;
  -o-border-radius: 100px;
  border-radius: 100px;
}
#site-wrapper .testimonial .testimonial-author .author-name {
  font-weight: normal;
}
#site-wrapper .member {
  position: relative;
  overflow: hidden;
}
#site-wrapper .member:hover .member-info {
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  -o-transform: translateY(0);
  transform: translateY(0);
}
#site-wrapper .member .member-info {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  background: #f5f5f5;
  padding: 20px 25px;
  -webkit-transform: translateY(100%);
  -moz-transform: translateY(100%);
  -ms-transform: translateY(100%);
  -o-transform: translateY(100%);
  transform: translateY(100%);
}
#site-wrapper .member .member-info .member-name {
  font-size: 16px;
  margin: 5px 0 0 0;
  line-height: 1.1;
}
#site-wrapper .member .member-info .member-subtitle {
  font-size: 14px;
}
#site-wrapper .member .member-info .social-links {
  overflow: hidden;
  position: absolute;
  right: 25px;
  top: 33px;
}
#site-wrapper .member .member-info .social-links a {
  float: left;
  margin: 0 0 0 20px;
}
#site-wrapper .member .member-info .social-links a i {
  font-size: 22px;
}
#site-wrapper .imagebox {
  position: relative;
}
#site-wrapper .imagebox .box-wrapper {
  overflow: hidden;
  position: relative;
}
#site-wrapper .imagebox .box-header {
  position: absolute;
  left: 50%;
  top: 50%;
  text-align: center;
  border: 2px solid #fff;
  padding: 10px;
  background: rgba(0, 0, 0, 0.1);
  -webkit-transform: translateX(-50%) translateY(-50%);
  -moz-transform: translateX(-50%) translateY(-50%);
  -ms-transform: translateX(-50%) translateY(-50%);
  -o-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
}
#site-wrapper .imagebox .box-header .box-title {
  font-size: 18px;
  margin: 0;
  position: relative;
}
#site-wrapper .imagebox .box-header .box-title a {
  color: #fff;
}
#site-wrapper .imagebox .box-header .box-subtitle {
  margin: 5px 0 0 0;
  color: #fff;
}
#site-wrapper .imagebox .box-content {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  color: #fff;
  background: rgba(0, 0, 0, 0.5);
  padding: 30px;
  visibility: hidden;
  -webkit-transform: scale(1.2);
  -moz-transform: scale(1.2);
  -ms-transform: scale(1.2);
  -o-transform: scale(1.2);
  transform: scale(1.2);
  -webkit-opacity: 0;
  -khtml-opacity: 0;
  -moz-opacity: 0;
  opacity: 0;
  -ms-filter: progid:DXImageTransform.Microsoft.Alpha(opacity=0);
  filter: alpha(opacity=0);
}
#site-wrapper .imagebox .box-content .box-button {
  margin-top: 25px;
}
#site-wrapper .imagebox .box-content .box-button a {
  line-height: 41px;
  background: none;
  border: 2px solid;
}
#site-wrapper .imagebox .box-content .box-button a:hover {
  border-color: transparent;
}
#site-wrapper .imagebox:hover .box-image img {
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
  transform: scale(1.1);
  -webkit-filter: blur(2px);
  -ms-filter: blur(2px);
  -o-filter: blur(2px);
  filter: blur(2px);
}
#site-wrapper .imagebox:hover .box-header {
  visibility: hidden;
  -webkit-opacity: 0;
  -khtml-opacity: 0;
  -moz-opacity: 0;
  opacity: 0;
  -ms-filter: progid:DXImageTransform.Microsoft.Alpha(opacity=0);
  filter: alpha(opacity=0);
}
#site-wrapper .imagebox:hover .box-content {
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
  visibility: visible;
  -webkit-opacity: 1;
  -khtml-opacity: 1;
  -moz-opacity: 1;
  opacity: 1;
  -ms-filter: progid:DXImageTransform.Microsoft.Alpha(opacity=100);
  filter: alpha(opacity=100);
}
#site-wrapper .iconlist {
  margin: 0;
  padding: 0;
}
#site-wrapper .iconlist li {
  list-style: none;
  margin-bottom: 10px;
}
#site-wrapper .iconlist li i,
#site-wrapper .iconlist li img {
  margin-right: 5px;
  vertical-align: middle;
  text-align: center;
}
#site-wrapper .iconlist li i {
  width: 20px;
}
#site-wrapper .iconlist li.circle {
  margin-bottom: 10px;
}
#site-wrapper .iconlist li.circle i {
  background: rgba(0, 0, 0, 0.05);
  width: 28px;
  height: 28px;
  text-align: center;
  line-height: 28px;
  text-shadow: 0 1px 0 #fff;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  -ms-border-radius: 100%;
  -o-border-radius: 100%;
  border-radius: 100%;
  -webkit-box-shadow: 0 -1px 0 rgba(0, 0, 0, 0.1) inset;
  -moz-box-shadow: 0 -1px 0 rgba(0, 0, 0, 0.1) inset;
  -ms-box-shadow: 0 -1px 0 rgba(0, 0, 0, 0.1) inset;
  -o-box-shadow: 0 -1px 0 rgba(0, 0, 0, 0.1) inset;
  box-shadow: 0 -1px 0 rgba(0, 0, 0, 0.1) inset;
}
#site-wrapper .iconlist li.circle:hover i {
  background-color: #1a1a1a;
  text-shadow: none;
  color: #fff;
}
#site-wrapper .counter .counter-image {
  text-align: center;
  margin-bottom: 10px;
}
#site-wrapper .counter .counter-image i {
  font-size: 3em;
  vertical-align: middle;
}
#site-wrapper .counter .counter-image + .counter-content {
  display: block;
  text-align: center;
  font-size: 36px;
  line-height: 1.3;
}
#site-wrapper .counter .counter-image + .counter-content + .counter-title {
  display: block;
  text-align: center;
  font-size: 16px;
}
#site-wrapper .counter .counter-content {
  display: inline-block;
  color: #1a1a1a;
  vertical-align: middle;
}
#site-wrapper .counter .counter-title {
  display: inline-block;
  vertical-align: middle;
}
#site-wrapper .vc_custom_heading h1,
#site-wrapper .vc_custom_heading h2,
#site-wrapper .vc_custom_heading h3,
#site-wrapper .vc_custom_heading h4,
#site-wrapper .vc_custom_heading h5,
#site-wrapper .vc_custom_heading h6 {
  margin: 0;
}
#site-wrapper .cd-headline {
  font-weight: bold;
  font-size: 72px;
}
#site-wrapper .cd-words-wrapper b {
  font-weight: bold;
}
#site-wrapper .cd-headline.clip span {
  padding: 0;
}
#site-wrapper .wpb_gallery .wpb_flexslider .flex-direction-nav a:before {
  display: none;
}
#site-wrapper .flexslider {
  position: relative;
  overflow: hidden;
}
#site-wrapper .flexslider .slides {
  margin: 0;
  padding: 0;
}
#site-wrapper .flexslider .slides li {
  list-style: none;
}
#site-wrapper .flexslider .flex-control-nav {
  margin: 0;
  padding: 0;
  text-align: center;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 98;
}
#site-wrapper .flexslider .flex-control-nav li {
  list-style: none;
  display: inline-block;
  margin: 0 2px;
}
#site-wrapper .flexslider .flex-control-nav li a {
  width: 10px;
  height: 10px;
  background: #fff;
  border: 2px solid transparent;
  display: block;
  text-indent: -9999px;
  cursor: pointer;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  border-radius: 10px;
}
#site-wrapper .flexslider .flex-control-nav li a.flex-active {
  background: none;
  border-color: #fff;
}
#site-wrapper .flexslider .flex-direction-nav {
  margin: 0;
  padding: 0;
}
#site-wrapper .flexslider .flex-direction-nav li {
  list-style: none;
}
#site-wrapper .flexslider .flex-direction-nav li a {
  position: absolute;
  width: 50px;
  height: 50px;
  background: none;
  border: 2px solid #fff;
  color: #fff;
  bottom: 20px;
  right: 20px;
  text-indent: -9999px;
  z-index: 98;
  text-align: inherit;
  text-shadow: none;
  -webkit-opacity: 1;
  -khtml-opacity: 1;
  -moz-opacity: 1;
  opacity: 1;
  -ms-filter: progid:DXImageTransform.Microsoft.Alpha(opacity=100);
  filter: alpha(opacity=100);
}
#site-wrapper .flexslider .flex-direction-nav li a.flex-prev {
  right: 80px;
}
#site-wrapper .flexslider .flex-direction-nav li a.flex-prev:after {
  content: "\f104";
  right: 18px;
}
#site-wrapper .flexslider .flex-direction-nav li a:after {
  content: "\f105";
  position: absolute;
  text-indent: 0;
  right: 17px;
  top: -2px;
  font-family: 'FontAwesome';
  font-size: 28px;
}
#site-wrapper .flexslider .flex-direction-nav li a:hover {
  background: #fff;
  color: #1a1a1a;
}
#site-wrapper .elements-carousel {
  margin: 0 -15px;
}
#site-wrapper .elements-carousel .owl-item {
  padding: 0 15px;
}
#site-wrapper .owl-controls .owl-buttons > div {
  background-image: url(../../assets/img/arrow.svg);
  background-color: transparent;
  width: 30px;
  height: 20px;
  text-indent: -9999px;
  padding: 0;
  position: absolute;
  right: 15px;
  bottom: -5px;
}
#site-wrapper .owl-controls .owl-buttons > div:hover {
  right: 5px;
}
#site-wrapper .owl-controls .owl-buttons > div.owl-prev {
  right: 55px;
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  transform: rotate(180deg);
}
#site-wrapper .owl-controls .owl-buttons > div.owl-prev:hover {
  right: 65px;
}
#site-wrapper .owl-controls .owl-pagination {
  position: relative;
  overflow: hidden;
  margin-top: 30px;
  padding-left: 15px;
}
#site-wrapper .owl-controls .owl-pagination .owl-page {
  float: left;
  margin-right: 10px;
}
#site-wrapper .owl-controls .owl-pagination .owl-page span {
  width: 10px;
  height: 10px;
  background: rgba(0, 0, 0, 0.1);
  display: block;
  text-indent: -99999px;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  -o-border-radius: 0;
  border-radius: 0;
}
#site-wrapper .blog-shortcode.blog-grid .blog-entries {
  margin: 0 -0.5px;
}
#site-wrapper .blog-shortcode.blog-grid .blog-entries:after {
  clear: both;
  content: "";
  display: table;
}
#site-wrapper .blog-shortcode.blog-grid .hentry {
  float: left;
  position: relative;
  padding: 0 0.5px;
  margin-bottom: 1px;
}
#site-wrapper .blog-shortcode.blog-grid .hentry .entry-wrapper {
  padding: 50px;
  position: relative;
  background: #f5f5f5;
}
#site-wrapper .blog-shortcode.blog-grid .hentry .entry-wrapper:hover {
  background: #fff;
}
#site-wrapper .blog-shortcode.blog-grid .hentry .entry-header {
  margin-bottom: 20px;
}
#site-wrapper .blog-shortcode.blog-grid .hentry .entry-header .entry-title {
  margin: 0;
  font-size: 24px;
}
#site-wrapper .blog-shortcode.blog-grid .hentry .entry-header .post-meta {
  margin: 20px 0 0 0;
}
#site-wrapper .blog-shortcode.blog-grid .hentry .entry-content .read-more {
  margin-top: 30px;
}
#site-wrapper .blog-shortcode.blog-grid .hentry .entry-content .read-more a {
  position: relative;
}
#site-wrapper .blog-shortcode.blog-grid .hentry .entry-content .read-more a:before {
  background: url(../../assets/img/arrow.svg);
  background-size: 30px 20px;
  position: absolute;
  right: -30px;
  top: 50%;
  margin-top: -10px;
  height: 20px;
  width: 30px;
  content: "";
  -webkit-opacity: 0;
  -khtml-opacity: 0;
  -moz-opacity: 0;
  opacity: 0;
  -ms-filter: progid:DXImageTransform.Microsoft.Alpha(opacity=0);
  filter: alpha(opacity=0);
}
#site-wrapper .blog-shortcode.blog-grid .hentry .entry-content .read-more a:hover:before {
  right: -40px;
  -webkit-opacity: 1;
  -khtml-opacity: 1;
  -moz-opacity: 1;
  opacity: 1;
  -ms-filter: progid:DXImageTransform.Microsoft.Alpha(opacity=100);
  filter: alpha(opacity=100);
}
#site-wrapper .blog-shortcode.blog-grid.blog-one-column .hentry {
  width: 100%;
  float: none;
}
#site-wrapper .blog-shortcode.blog-grid.blog-two-columns .hentry {
  width: 50%;
}
#site-wrapper .blog-shortcode.blog-grid.blog-two-columns .hentry:nth-of-type(2n+1) {
  clear: left;
}
#site-wrapper .blog-shortcode.blog-grid.blog-three-columns .hentry {
  width: 33.3333333%;
}
#site-wrapper .blog-shortcode.blog-grid.blog-three-columns .hentry:nth-of-type(3n+1) {
  clear: left;
}
#site-wrapper .blog-shortcode.blog-grid.blog-four-columns .hentry {
  width: 25%;
}
#site-wrapper .blog-shortcode.blog-grid.blog-four-columns .hentry:nth-of-type(4n+1) {
  clear: left;
}
#site-wrapper .blog-shortcode.post-thumbnail-cover .entries-wrapper {
  margin: 0 -15px;
}
#site-wrapper .blog-shortcode.post-thumbnail-cover .entries-wrapper:after {
  clear: both;
  content: "";
  display: table;
}
#site-wrapper .blog-shortcode.post-thumbnail-cover .hentry {
  padding: 0 15px;
  margin-bottom: 50px;
}
#site-wrapper .blog-shortcode.post-thumbnail-cover .hentry .entry-wrapper {
  background: none;
  padding: 0;
}
#site-wrapper .blog-shortcode.post-thumbnail-cover .hentry .entry-wrapper:hover {
  background: none;
}
#site-wrapper .blog-shortcode.post-thumbnail-cover .hentry .entry-cover {
  margin-bottom: 30px;
}
#site-wrapper .blog-shortcode.post-thumbnail-cover .hentry .entry-cover a {
  display: block;
  background: #1a1a1a;
  cursor: url(../../assets/img/icon-zoom.png), auto;
  cursor: -webkit-image-set(url(../../assets/img/icon-zoom.png) 1x, url(../../assets/img/icon-zoom@2x.png) 2x), auto;
}
#site-wrapper .blog-shortcode.post-thumbnail-cover .hentry .entry-cover a:hover img {
  -webkit-opacity: 0.5;
  -khtml-opacity: 0.5;
  -moz-opacity: 0.5;
  opacity: 0.5;
  -ms-filter: progid:DXImageTransform.Microsoft.Alpha(opacity=50);
  filter: alpha(opacity=50);
}
#site-wrapper .blog-shortcode.post-thumbnail-cover .hentry .entry-header .entry-title {
  margin: 0 0 10px 0;
  font-size: 20px;
}
#site-wrapper .blog-shortcode.post-thumbnail-cover .hentry .entry-header .post-meta {
  margin: 0;
  color: #a0a0a0;
}
#site-wrapper .blog-shortcode.post-thumbnail-cover .hentry .entry-content .read-more {
  margin-top: 25px;
  padding: 10px 0;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
#site-wrapper .blog-shortcode.post-date-cover .hentry .entry-time {
  margin-bottom: 10px;
  display: block;
}
#site-wrapper .blog-shortcode.blog-list.post-date-cover .blog-entries .hentry {
  margin-bottom: 80px;
}
#site-wrapper .blog-shortcode.blog-list.post-date-cover .blog-entries .hentry:last-child {
  margin-bottom: 0;
}
#site-wrapper .blog-shortcode.blog-list.post-date-cover .blog-entries .hentry .entry-wrapper {
  display: inline-block;
  width: 100%;
}
#site-wrapper .blog-shortcode.blog-list.post-date-cover .blog-entries .hentry .entry-wrapper .entry-time {
  float: left;
  width: 200px;
  border-top: 1px solid rgba(0, 0, 0, 0.15);
  margin: 0;
  padding: 20px 0 0 0;
}
#site-wrapper .blog-shortcode.blog-list.post-date-cover .blog-entries .hentry .entry-wrapper .entry-header {
  margin: 0 0 0 250px;
  border-top: 1px solid rgba(0, 0, 0, 0.15);
  padding: 20px 0 0 0;
}
#site-wrapper .blog-shortcode.blog-list.post-date-cover .blog-entries .hentry .entry-wrapper .entry-header .entry-title {
  margin: 0 0 20px 0;
  font-size: 24px;
}
#site-wrapper .blog-shortcode.blog-list.post-date-cover .blog-entries .hentry .entry-wrapper .entry-header .entry-title a {
  position: relative;
  display: block;
}
#site-wrapper .blog-shortcode.blog-list.post-date-cover .blog-entries .hentry .entry-wrapper .entry-header .entry-title a:after {
  width: 0;
  height: 1px;
  position: absolute;
  left: 0;
  top: -21px;
  content: "";
  background: #1a1a1a;
}
#site-wrapper .blog-shortcode.blog-list.post-date-cover .blog-entries .hentry .entry-wrapper .entry-header .entry-title a:hover:after {
  width: 100%;
}
#site-wrapper .blog-shortcode.blog-list.post-date-cover .blog-entries .hentry .entry-wrapper .entry-content {
  margin: 0 0 0 250px;
}
#site-wrapper .blog-shortcode.blog-list.post-date-cover .blog-entries .hentry .entry-wrapper .entry-content .read-more {
  margin-top: 15px;
}
#site-wrapper .blog-shortcode.blog-list.post-date-cover .blog-entries .hentry .entry-wrapper .entry-content .read-more a {
  position: relative;
}
#site-wrapper .blog-shortcode.blog-list.post-date-cover .blog-entries .hentry .entry-wrapper .entry-content .read-more a:before {
  background: url(../../assets/img/arrow.svg);
  background-size: 30px 20px;
  position: absolute;
  right: -30px;
  top: 50%;
  margin-top: -10px;
  height: 20px;
  width: 30px;
  content: "";
  -webkit-opacity: 0;
  -khtml-opacity: 0;
  -moz-opacity: 0;
  opacity: 0;
  -ms-filter: progid:DXImageTransform.Microsoft.Alpha(opacity=0);
  filter: alpha(opacity=0);
}
#site-wrapper .blog-shortcode.blog-list.post-date-cover .blog-entries .hentry .entry-wrapper .entry-content .read-more a:hover:before {
  right: -40px;
  -webkit-opacity: 1;
  -khtml-opacity: 1;
  -moz-opacity: 1;
  opacity: 1;
  -ms-filter: progid:DXImageTransform.Microsoft.Alpha(opacity=100);
  filter: alpha(opacity=100);
}
#site-wrapper .posts-carousel .hentry {
  margin-bottom: 0;
}
#site-wrapper .posts-carousel .hentry .entry-wrapper {
  position: relative;
}
#site-wrapper .posts-carousel .hentry .entry-cover a {
  display: block;
  position: relative;
  background: #000;
}
#site-wrapper .posts-carousel .hentry .entry-cover a:hover img {
  -webkit-opacity: 1;
  -khtml-opacity: 1;
  -moz-opacity: 1;
  opacity: 1;
  -ms-filter: progid:DXImageTransform.Microsoft.Alpha(opacity=100);
  filter: alpha(opacity=100);
}
#site-wrapper .posts-carousel .hentry .entry-cover a:hover:after,
#site-wrapper .posts-carousel .hentry .entry-cover a:hover:before {
  visibility: visible;
  -webkit-opacity: 1;
  -khtml-opacity: 1;
  -moz-opacity: 1;
  opacity: 1;
  -ms-filter: progid:DXImageTransform.Microsoft.Alpha(opacity=100);
  filter: alpha(opacity=100);
}
#site-wrapper .posts-carousel .hentry .entry-cover a img {
  -webkit-opacity: 0.8;
  -khtml-opacity: 0.8;
  -moz-opacity: 0.8;
  opacity: 0.8;
  -ms-filter: progid:DXImageTransform.Microsoft.Alpha(opacity=80);
  filter: alpha(opacity=80);
}
#site-wrapper .posts-carousel .hentry .entry-header {
  position: absolute;
  left: 30px;
  right: 30px;
  bottom: 30px;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}
#site-wrapper .posts-carousel .hentry .entry-header .entry-title {
  font-size: 20px;
  margin: 0 0 20px 0;
  line-height: 1.3;
}
#site-wrapper .posts-carousel .hentry .entry-header .entry-title a {
  color: #fff;
}
#site-wrapper .posts-carousel .hentry .entry-header .post-meta .entry-time {
  color: #fff;
  border: 2px solid #fff;
  padding: 5px 15px;
  text-transform: uppercase;
  font-weight: bold;
}
@media only screen and (max-width: 768px) {
  #site-wrapper .rev_slider a.button {
    height: auto;
    line-height: 1.8;
    padding-top: 10px;
    padding-bottom: 10px;
  }
  #site-wrapper .blog-shortcode.blog-list.post-date-cover .blog-entries .hentry {
    border-bottom: 1px solid rgba(0, 0, 0, 0.15);
    padding-bottom: 30px;
    margin-bottom: 30px;
  }
  #site-wrapper .blog-shortcode.blog-list.post-date-cover .blog-entries .hentry .entry-wrapper .entry-time {
    float: none;
    border: none;
    padding: 0;
    margin-bottom: 20px;
  }
  #site-wrapper .blog-shortcode.blog-list.post-date-cover .blog-entries .hentry .entry-wrapper .entry-header,
  #site-wrapper .blog-shortcode.blog-list.post-date-cover .blog-entries .hentry .entry-wrapper .entry-content {
    margin: 0;
    padding: 0;
    border: none;
  }
  #site-wrapper .blog-shortcode.blog-list.post-date-cover .blog-entries .hentry .entry-wrapper .entry-header .entry-title a:after {
    display: none;
  }
}
#site-wrapper span.wpcf7-not-valid-tip {
  margin-top: 8px;
  font-size: 12px;
}
#site-wrapper div.wpcf7-response-output {
  padding: 20px 20px 20px 60px;
  margin-left: 0;
  margin-right: 0;
  position: relative;
}
#site-wrapper div.wpcf7-response-output.wpcf7-validation-errors {
  border-color: #e74c3c;
  color: #e74c3c;
}
#site-wrapper div.wpcf7-response-output.wpcf7-validation-errors:after {
  position: absolute;
  font-family: 'FontAwesome';
  left: 20px;
  top: 50%;
  margin-top: -24px;
  font-size: 28px;
  content: "\f071";
}
#site-wrapper div.wpcf7-response-output.wpcf7-mail-sent-ok:after {
  position: absolute;
  font-family: 'FontAwesome';
  left: 20px;
  top: 50%;
  margin-top: -24px;
  font-size: 28px;
  content: "\f058";
}
/*============================================================ 
                1. GENERAL
                2. LAYOUT
                3. WIDGET
                4. ELEMENTS
                5. BLOG
                6. OTHER
                7. WOOCOMMERCE
                8. PROJECTS
                9. RESPONSIVE
============================================================*/
.rtl {
  /* ============================================================ 
	    1. GENERAL
	=============================================================*/
  direction: rtl;
  unicode-bidi: embed;
  /* ============================================================ 
	    2. LAYOUT
	=============================================================*/
  /* ============================================================ 
	    3. WIDGET
	=============================================================*/
  /* ============================================================ 
	    4. ELEMENTS
	=============================================================*/
  /* ============================================================ 
	    5. BLOG
	=============================================================*/
  /* ============================================================ 
	    6. OTHER
	=============================================================*/
  /* ============================================================ 
	    7. WOOCOMMERCE
	=============================================================*/
  /* ============================================================ 
	    8. PROJECTS
	=============================================================*/
}
.rtl .alignleft {
  float: right;
  margin: 10px 0 10px 20px;
  clear: right;
}
.rtl .alignright {
  float: left;
  margin: 10px 20px 10px 0;
  clear: left;
}
.rtl table thead {
  text-align: right;
}
.rtl table tbody tr td,
.rtl table tbody tr th {
  text-align: right;
}
.rtl select {
  background-position: left center;
}
.rtl h1.title-divider:after,
.rtl h2.title-divider:after,
.rtl h3.title-divider:after,
.rtl h4.title-divider:after,
.rtl h5.title-divider:after,
.rtl h6.title-divider:after {
  left: auto;
  right: 0;
}
.rtl h1.title-divider[style="text-align: center;"]:after,
.rtl h2.title-divider[style="text-align: center;"]:after,
.rtl h3.title-divider[style="text-align: center;"]:after,
.rtl h4.title-divider[style="text-align: center;"]:after,
.rtl h5.title-divider[style="text-align: center;"]:after,
.rtl h6.title-divider[style="text-align: center;"]:after {
  left: auto;
  right: 50%;
  margin-left: 0;
  margin-right: -15px;
}
.rtl a.download i {
  margin-right: 0;
  margin-left: 15px;
  border-right: none;
  border-left: 1px solid rgba(0, 0, 0, 0.1);
}
.rtl .goto-top a {
  text-indent: 0;
}
.rtl #site-header #headerbar .custom-info {
  float: right;
}
.rtl #site-header #headerbar .custom-info i {
  margin-left: 5px;
  margin-right: 0;
}
.rtl #site-header #headerbar .social-links {
  float: left;
  margin-left: 0;
  margin-right: 10px;
}
.rtl #site-header #headerbar .social-links a {
  margin-left: 0;
  margin-right: 10px;
}
.rtl #site-header #headerbar .top-navigator {
  float: left;
}
.rtl #site-header #headerbar .top-navigator .menu li {
  float: right;
}
.rtl #site-header #headerbar .top-navigator .menu li.menu-item-has-children {
  padding-left: 3px;
  padding-right: 8px;
}
.rtl #site-header #headerbar .top-navigator .menu li.menu-item-has-children:after {
  margin: 0 0 0 10px;
}
.rtl #site-header #headerbar .top-navigator .menu li .sub-menu {
  left: auto;
  right: 0;
}
.rtl #site-header #masthead #site-brand #site-logo {
  float: right;
}
.rtl #site-header #masthead #site-brand .header-widgets {
  text-align: left;
}
.rtl #site-header #masthead #site-brand .header-widgets .widget {
  margin-right: 60px;
  margin-left: 0;
  text-align: right;
}
.rtl #site-header #masthead #site-brand .header-widgets .widget .info-icon i {
  margin-right: 0;
  margin-left: 10px;
}
.rtl #site-header #masthead #site-brand .header-widgets .widget .button i {
  margin-left: 10px;
  margin-right: 0;
}
.rtl #site-header #masthead #site-navigator .menu li .sub-menu {
  left: auto;
  right: 0;
  text-align: right;
}
.rtl #site-header #masthead #site-navigator .menu li .sub-menu li .sub-menu {
  left: auto;
  right: 250px;
}
.rtl #site-content #page-breadcrumbs .breadcrumbs {
  left: auto;
  right: 15px;
}
.rtl #site-content #page-breadcrumbs .breadcrumbs .trail-browse {
  margin-left: 5px;
  margin-right: 0;
}
.rtl #site-content #page-breadcrumbs .breadcrumbs span {
  float: right;
}
.rtl #site-footer .social-links {
  float: left;
}
.rtl #site-footer .social-links a {
  margin-left: 0;
  margin-right: 10px;
}
.rtl #site-footer .copyright {
  float: right;
}
.rtl.header-v1 #site-header #masthead #site-navigator,
.rtl.header-v3 #site-header #masthead #site-navigator {
  float: left;
}
.rtl.header-v1 #site-header #masthead #site-navigator .menu.menu-extra .search-box > a,
.rtl.header-v3 #site-header #masthead #site-navigator .menu.menu-extra .search-box > a {
  margin-left: 0;
  margin-right: 20px;
}
.rtl.header-v1 #site-header #masthead #site-navigator .menu.menu-extra .shopping-cart .submenu,
.rtl.header-v3 #site-header #masthead #site-navigator .menu.menu-extra .shopping-cart .submenu {
  right: auto;
  left: 0;
}
.rtl.header-v1 #site-header #masthead #site-navigator .menu.menu-extra .shopping-cart a .shopping-cart-items-count,
.rtl.header-v3 #site-header #masthead #site-navigator .menu.menu-extra .shopping-cart a .shopping-cart-items-count {
  right: auto;
  left: 0;
}
.rtl.header-v3 #site-header #masthead #site-navigator #menu-main-menu > li > .sub-menu {
  -webkit-border-radius: 3px 0 3px 3px;
  -moz-border-radius: 3px 0 3px 3px;
  -ms-border-radius: 3px 0 3px 3px;
  -o-border-radius: 3px 0 3px 3px;
  border-radius: 3px 0 3px 3px;
}
.rtl .widgettitle:after,
.rtl .widget-title:after {
  left: auto;
  right: 0;
}
.rtl .widget .widget-title:after {
  left: auto;
  right: 0;
}
.rtl .widget.widget_search .search-form label:after {
  right: auto;
  left: 0;
}
.rtl .widget.widget_product_search .woocommerce-product-search::after {
  left: 0;
  right: auto;
}
.rtl .widget.widget_shopping_cart .cart_list li .remove {
  float: left;
}
.rtl .widget.widget_shopping_cart .cart_list li a img {
  float: right;
  margin-right: 0;
  margin-left: 15px;
}
.rtl .sidebars .widget.widget_nav_menu .menu li a {
  padding: 10px 25px 10px 0;
}
.rtl .sidebars .widget.widget_nav_menu .menu li a:before {
  left: auto;
  right: 0;
}
.rtl .sidebars .widget.widget_nav_menu .menu li a:hover {
  padding-right: 30px;
}
.rtl .sidebars .widget.widget_nav_menu .menu li.current_page_item a,
.rtl .sidebars .widget.widget_nav_menu .menu li.current-menu-item a {
  padding: 10px 55px 10px 30px;
}
.rtl .sidebars .widget.widget_nav_menu .menu li.current_page_item a:before,
.rtl .sidebars .widget.widget_nav_menu .menu li.current-menu-item a:before {
  left: auto;
  right: 30px;
}
.rtl .sidebars .widget.widget_nav_menu .menu li .sub-menu {
  margin-left: 0;
  margin-right: 20px;
}
.rtl .sidebars .widget.widget_archive ul li .children,
.rtl .sidebars .widget.widget_categories ul li .children,
.rtl .sidebars .widget.widget_pages ul li .children,
.rtl .sidebars .widget.widget_meta ul li .children,
.rtl .sidebars .widget.widget_recent_comments ul li .children,
.rtl .sidebars .widget.widget_recent_entries ul li .children,
.rtl .sidebars .widget.widget_rss ul li .children {
  margin-left: 0;
  margin-right: 20px;
}
.rtl #site-wrapper .iconlist li i,
.rtl #site-wrapper .iconlist li img {
  margin-right: 0;
  margin-left: 10px;
}
.rtl #site-wrapper .iconlist li.circle {
  padding-left: 0;
  padding-right: 44px;
}
.rtl #site-wrapper .iconlist li.circle i {
  left: auto;
  right: 0;
}
.rtl #site-wrapper .iconlist li.circle:after {
  left: 0;
  right: 44px;
}
.rtl #site-wrapper .iconlist li.circle:first-child:before {
  left: 0;
  right: 44px;
}
.rtl #site-wrapper .iconlist li:after {
  left: 0;
  right: 30px;
}
.rtl #site-wrapper .iconlist li:first-child:before {
  left: 0;
  right: 30px;
}
.rtl #site-wrapper .iconbox .box-header .box-title:after {
  left: auto;
  right: 0;
}
.rtl #site-wrapper .iconbox.aligncenter .box-header .box-title:after {
  right: 50%;
  margin-right: -15px;
  margin-left: 0;
}
.rtl #site-wrapper .iconbox.aligncenter:hover .box-header .box-title:after {
  right: 0;
  left: 0;
  margin-right: 0;
}
.rtl #site-wrapper .wpb_tabs .wpb_tabs_nav li {
  float: right;
}
.rtl #site-wrapper .wpb_tabs .wpb_tabs_nav li a {
  margin-right: 0;
  margin-left: 30px;
}
.rtl #site-wrapper .wpb_accordion .wpb_accordion_header a {
  padding: 0 0 0 75px;
}
.rtl #site-wrapper .wpb_accordion .wpb_accordion_header .ui-accordion-header-icon {
  left: 0;
  right: auto;
}
.rtl #site-wrapper .wpb_accordion .wpb_accordion_header .ui-accordion-header-icon:before {
  left: 8px;
  right: auto;
}
.rtl #site-wrapper .wpb_accordion .wpb_accordion_header .ui-accordion-header-icon:after {
  right: auto;
  left: 0;
}
.rtl #site-wrapper .wpb_tour .wpb_tabs_nav {
  float: right;
  border-right: none;
  border-left: 1px solid rgba(0, 0, 0, 0.1);
}
.rtl #site-wrapper .wpb_tour .wpb_tabs_nav li.ui-state-default.ui-tabs-active a::after {
  left: -1px;
  right: auto;
}
.rtl #site-wrapper .wpb_tour .wpb_tour_tabs_wrapper .wpb_tab {
  padding: 0 30px 0 0;
}
.rtl #site-wrapper .vc_progress_bar .vc_single_bar .vc_bar {
  right: 0;
  left: auto;
}
.rtl #site-wrapper .vc_progress_bar .vc_label .vc_label_units {
  float: left;
}
.rtl #site-wrapper .testimonial .testimonial-content blockquote:after {
  left: auto;
  right: -35px;
}
.rtl #site-wrapper .openhours .hours-table li .hours {
  left: 0;
  right: auto;
}
.rtl #site-wrapper .openhours .hours-table li .dayname .dayname-icon {
  margin-right: 0;
  margin-left: 10px;
}
.rtl #site-wrapper .flexslider {
  direction: ltr;
}
.rtl #site-wrapper .owl-carousel {
  direction: ltr;
}
.rtl #site-wrapper .owl-carousel .owl-item {
  direction: rtl;
}
.rtl #site-wrapper .owl-controls .owl-pagination {
  right: auto;
  left: 15px;
}
.rtl #site-wrapper .owl-controls .owl-pagination .owl-page span {
  margin: 0 10px 0 0;
}
.rtl.blog .hentry .entry-header .entry-title:after,
.rtl.single .hentry .entry-header .entry-title:after {
  left: auto;
  right: 0;
}
.rtl .blog-shortcode.blog-list .hentry .entry-cover {
  float: right;
}
.rtl .blog-shortcode.blog-list .hentry .entry-header,
.rtl .blog-shortcode.blog-list .hentry .entry-content {
  margin-left: 0;
  margin-right: 65px;
}
.rtl .box .box-title::after {
  left: auto;
  right: 0;
}
.rtl .box.author-box .author-avatar {
  float: right;
  margin-left: 30px;
  margin-right: 0;
}
.rtl #comments .comments-title:after,
.rtl #comments #reply-title:after {
  left: auto;
  right: 0;
}
.rtl #comments .comment-list li .comment-body .comment-meta .comment-author img {
  float: right;
  margin-right: 0;
  margin-left: 20px;
}
.rtl #comments .comment-list li .comment-body .comment-content,
.rtl #comments .comment-list li .comment-body .reply {
  padding-left: 0;
  padding-right: 54px;
}
.rtl #comments .comment-list li .children {
  padding-left: 30px;
  padding-right: 54px;
}
.rtl.search #main-content .content-inner .search-form .search-submit {
  left: 0;
  right: auto;
}
.rtl.search #main-content .content-inner .search-results article {
  padding: 30px 65px 30px 0;
}
.rtl.search #main-content .content-inner .search-results article .counter {
  left: auto;
  right: 0;
}
.rtl .wpcf7 {
  direction: rtl;
}
.rtl.woocommerce .products li .add_to_cart_button,
.rtl.woocommerce-page .products li .add_to_cart_button {
  right: auto;
  left: 15px;
}
.rtl.woocommerce .product .summary .cart .quantity,
.rtl.woocommerce-page .product .summary .cart .quantity {
  float: right;
  margin-right: 0;
  margin-left: 10px;
}
.rtl.woocommerce .product .woocommerce-tabs .tabs li,
.rtl.woocommerce-page .product .woocommerce-tabs .tabs li {
  float: right;
}
.rtl.woocommerce .product .woocommerce-tabs .tabs li a,
.rtl.woocommerce-page .product .woocommerce-tabs .tabs li a {
  margin-right: 0;
  margin-left: 30px;
}
.rtl.woocommerce #reviews #comments ol.commentlist li .star-rating,
.rtl.woocommerce-page #reviews #comments ol.commentlist li .star-rating {
  right: auto;
  left: 0;
}
.rtl.woocommerce #reviews #comments ol.commentlist li img.avatar,
.rtl.woocommerce-page #reviews #comments ol.commentlist li img.avatar {
  float: right;
}
.rtl.woocommerce #reviews #comments ol.commentlist li .comment-text,
.rtl.woocommerce-page #reviews #comments ol.commentlist li .comment-text {
  margin-left: 0;
  margin-right: 95px;
}
.rtl .projects .projects-items .hentry .project-wrap .project-info {
  padding: 50px 15px 10px 80px;
}
.rtl .projects .projects-items .hentry .project-wrap .project-thumbnail figcaption .project-buttons a {
  right: auto;
  left: 15px;
}
.rtl .project-single .project-gallery-grid .project-media-item {
  float: right;
}
/* ============================================================ 
    9. RESPONSIVE
=============================================================*/
@media only screen and (max-width: 991px) {
  body.rtl #site-header #headerbar .custom-info {
    float: none;
  }
  body.rtl #site-header #headerbar .social-links {
    float: none;
    margin-right: 0;
  }
  body.rtl #site-header #headerbar .top-navigator {
    float: none;
  }
  body.rtl #site-header #headerbar .top-navigator .menu li {
    float: none;
  }
  body.rtl #site-header #headerbar .top-navigator .menu li .sub-menu {
    text-align: right;
  }
  body.rtl #site-header #masthead #site-brand #site-logo {
    float: none;
  }
  body.rtl #site-header #masthead #site-brand .header-widgets {
    text-align: center;
  }
  body.rtl #site-header #masthead #site-brand .header-widgets .widget {
    margin: 0 30px 30px 30px;
  }
}
@media only screen and (max-width: 768px) {
  body.rtl #site-header #masthead #site-navigator .menu.menu-extra {
    right: auto;
    left: 0;
  }
  body.rtl #site-header #masthead #site-navigator-mobile.navigator-mobile .navigator-toggle {
    left: auto;
    right: 0;
  }
  body.rtl #site-header #masthead #site-navigator-mobile.navigator-mobile .menu li.menu-item-has-children .toggler {
    right: auto;
    left: 0;
    border-left: 0;
    border-right: 1px solid #e6e6e6;
  }
  body.rtl #site-header #masthead #site-navigator-mobile.navigator-mobile .menu li a {
    margin-right: 0;
    margin-left: 56px;
  }
  body.rtl #site-header #masthead #site-navigator-mobile.navigator-mobile .menu li .sub-menu {
    margin-left: 0;
    margin-right: 20px;
  }
  body.rtl #site-wrapper .wpb_tour .wpb_tabs_nav {
    float: none;
    border-left: none;
    margin-bottom: 30px;
  }
  body.rtl #site-wrapper .wpb_tour .wpb_tabs_nav .ui-state-default {
    float: right;
    margin-right: 0;
    margin-left: 30px;
  }
  body.rtl #site-wrapper .wpb_tour .wpb_tour_tabs_wrapper .wpb_tab {
    padding: 0;
  }
}
@media only screen and (max-width: 568px) {
  body.rtl #site-header #headerbar .custom-info .spacer {
    display: block;
  }
  body.rtl #site-header #masthead #site-brand .header-widgets {
    display: block;
    text-align: center;
    padding-bottom: 30px;
  }
  body.rtl #site-header #masthead #site-brand .header-widgets .widget {
    display: block;
    border: none;
    text-align: center;
  }
  body.rtl #site-footer .copyright {
    float: none;
  }
  body.rtl #site-footer .social-links {
    float: none;
    margin-bottom: 20px;
  }
  body.rtl #site-footer .social-links a {
    margin-right: 15px;
    margin-left: 0;
  }
}
.header-v3 #site-header {
  text-align: center;
}
.header-v3 #site-header #masthead {
  padding-top: 30px;
}
.header-v3 #site-header #masthead.stick {
  top: 0;
  position: fixed;
  background: #fff;
}
.header-v3 #site-header #masthead #site-brand #site-logo {
  margin-top: 0;
  margin-bottom: 0;
  float: none;
}
.header-v3 #site-header #masthead #site-brand #site-logo img {
  margin: 0 auto;
}
.header-v3 #site-header #masthead #site-navigator {
  float: none;
  margin: 0;
  padding: 30px 0;
}
.header-v3 #site-header #masthead #site-navigator .menu {
  float: none;
  display: inline-block;
}
.header-v3 #site-header #masthead #site-navigator .menu li {
  float: none;
  display: inline-block;
  margin: 0 15px;
}
.header-v3 #site-header #masthead #site-navigator .menu li .sub-menu {
  text-align: left;
}
.header-v3.admin-bar #site-header #masthead.stick {
  top: 32px;
}
.header-v3.layout-boxed #site-header #masthead {
  left: auto;
  right: auto;
}
.header-v2 #site-header #masthead #site-navigator .navigator-toggle {
  width: 50px;
  height: 50px;
  display: inline-block;
  text-align: right;
  margin: 0;
}
.header-v2 #site-header #masthead #site-navigator .navigator-toggle span {
  width: 24px;
  height: 2px;
  background: #1a1a1a;
  display: inline-block;
  position: relative;
  vertical-align: top;
  top: 24px;
}
.header-v2 #site-header #masthead #site-navigator .navigator-toggle span:after,
.header-v2 #site-header #masthead #site-navigator .navigator-toggle span:before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 2px;
  background: #1a1a1a;
  top: -8px;
}
.header-v2 #site-header #masthead #site-navigator .navigator-toggle span:before {
  top: auto;
  bottom: -8px;
}
.header-v2 #site-header #masthead #site-navigator .menu:not(.menu-extra) > li {
  visibility: hidden;
  -webkit-opacity: 0;
  -khtml-opacity: 0;
  -moz-opacity: 0;
  opacity: 0;
  -ms-filter: progid:DXImageTransform.Microsoft.Alpha(opacity=0);
  filter: alpha(opacity=0);
}
.header-v2 #site-header #masthead #site-navigator .menu:not(.menu-extra) > li:nth-child(n+1) {
  -webkit-transition-delay: 60ms;
  -moz-transition-delay: 60ms;
  -ms-transition-delay: 60ms;
  -o-transition-delay: 60ms;
  transition-delay: 60ms;
  -webkit-transition-duration: 250ms;
  -moz-transition-duration: 250ms;
  -ms-transition-duration: 250ms;
  -o-transition-duration: 250ms;
  transition-duration: 250ms;
}
.header-v2 #site-header #masthead #site-navigator .menu:not(.menu-extra) > li:nth-child(n+2) {
  -webkit-transition-delay: 120ms;
  -moz-transition-delay: 120ms;
  -ms-transition-delay: 120ms;
  -o-transition-delay: 120ms;
  transition-delay: 120ms;
  -webkit-transition-duration: 350ms;
  -moz-transition-duration: 350ms;
  -ms-transition-duration: 350ms;
  -o-transition-duration: 350ms;
  transition-duration: 350ms;
}
.header-v2 #site-header #masthead #site-navigator .menu:not(.menu-extra) > li:nth-child(n+3) {
  -webkit-transition-delay: 180ms;
  -moz-transition-delay: 180ms;
  -ms-transition-delay: 180ms;
  -o-transition-delay: 180ms;
  transition-delay: 180ms;
  -webkit-transition-duration: 450ms;
  -moz-transition-duration: 450ms;
  -ms-transition-duration: 450ms;
  -o-transition-duration: 450ms;
  transition-duration: 450ms;
}
.header-v2 #site-header #masthead #site-navigator .menu:not(.menu-extra) > li:nth-child(n+4) {
  -webkit-transition-delay: 240ms;
  -moz-transition-delay: 240ms;
  -ms-transition-delay: 240ms;
  -o-transition-delay: 240ms;
  transition-delay: 240ms;
  -webkit-transition-duration: 550ms;
  -moz-transition-duration: 550ms;
  -ms-transition-duration: 550ms;
  -o-transition-duration: 550ms;
  transition-duration: 550ms;
}
.header-v2 #site-header #masthead #site-navigator .menu:not(.menu-extra) > li:nth-child(n+5) {
  -webkit-transition-delay: 300ms;
  -moz-transition-delay: 300ms;
  -ms-transition-delay: 300ms;
  -o-transition-delay: 300ms;
  transition-delay: 300ms;
  -webkit-transition-duration: 650ms;
  -moz-transition-duration: 650ms;
  -ms-transition-duration: 650ms;
  -o-transition-duration: 650ms;
  transition-duration: 650ms;
}
.header-v2 #site-header #masthead #site-navigator .menu:not(.menu-extra) > li:nth-child(n+6) {
  -webkit-transition-delay: 360ms;
  -moz-transition-delay: 360ms;
  -ms-transition-delay: 360ms;
  -o-transition-delay: 360ms;
  transition-delay: 360ms;
  -webkit-transition-duration: 750ms;
  -moz-transition-duration: 750ms;
  -ms-transition-duration: 750ms;
  -o-transition-duration: 750ms;
  transition-duration: 750ms;
}
.header-v2 #site-header #masthead #site-navigator .menu:not(.menu-extra) > li:nth-child(n+7) {
  -webkit-transition-delay: 420ms;
  -moz-transition-delay: 420ms;
  -ms-transition-delay: 420ms;
  -o-transition-delay: 420ms;
  transition-delay: 420ms;
  -webkit-transition-duration: 850ms;
  -moz-transition-duration: 850ms;
  -ms-transition-duration: 850ms;
  -o-transition-duration: 850ms;
  transition-duration: 850ms;
}
.header-v2 #site-header #masthead #site-navigator .menu:not(.menu-extra) > li:nth-child(n+8) {
  -webkit-transition-delay: 480ms;
  -moz-transition-delay: 480ms;
  -ms-transition-delay: 480ms;
  -o-transition-delay: 480ms;
  transition-delay: 480ms;
  -webkit-transition-duration: 950ms;
  -moz-transition-duration: 950ms;
  -ms-transition-duration: 950ms;
  -o-transition-duration: 950ms;
  transition-duration: 950ms;
}
.header-v2 #site-header #masthead #site-navigator .menu:not(.menu-extra) > li:nth-child(n+9) {
  -webkit-transition-delay: 540ms;
  -moz-transition-delay: 540ms;
  -ms-transition-delay: 540ms;
  -o-transition-delay: 540ms;
  transition-delay: 540ms;
  -webkit-transition-duration: 1050ms;
  -moz-transition-duration: 1050ms;
  -ms-transition-duration: 1050ms;
  -o-transition-duration: 1050ms;
  transition-duration: 1050ms;
}
.header-v2 #site-header #masthead.stick {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: #fff;
}
.header-v2.admin-bar #site-header #masthead.stick {
  top: 32px !important;
}
.header-v2.active-navigator #site-header #masthead #site-navigator .menu > li {
  visibility: visible;
  -webkit-opacity: 1;
  -khtml-opacity: 1;
  -moz-opacity: 1;
  opacity: 1;
  -ms-filter: progid:DXImageTransform.Microsoft.Alpha(opacity=100);
  filter: alpha(opacity=100);
}
.header-v2.active-navigator #site-header #masthead #site-navigator .menu > li:nth-last-child(n+1) {
  -webkit-transition-delay: 60ms;
  -moz-transition-delay: 60ms;
  -ms-transition-delay: 60ms;
  -o-transition-delay: 60ms;
  transition-delay: 60ms;
  -webkit-transition-duration: 250ms;
  -moz-transition-duration: 250ms;
  -ms-transition-duration: 250ms;
  -o-transition-duration: 250ms;
  transition-duration: 250ms;
}
.header-v2.active-navigator #site-header #masthead #site-navigator .menu > li:nth-last-child(n+2) {
  -webkit-transition-delay: 120ms;
  -moz-transition-delay: 120ms;
  -ms-transition-delay: 120ms;
  -o-transition-delay: 120ms;
  transition-delay: 120ms;
  -webkit-transition-duration: 350ms;
  -moz-transition-duration: 350ms;
  -ms-transition-duration: 350ms;
  -o-transition-duration: 350ms;
  transition-duration: 350ms;
}
.header-v2.active-navigator #site-header #masthead #site-navigator .menu > li:nth-last-child(n+3) {
  -webkit-transition-delay: 180ms;
  -moz-transition-delay: 180ms;
  -ms-transition-delay: 180ms;
  -o-transition-delay: 180ms;
  transition-delay: 180ms;
  -webkit-transition-duration: 450ms;
  -moz-transition-duration: 450ms;
  -ms-transition-duration: 450ms;
  -o-transition-duration: 450ms;
  transition-duration: 450ms;
}
.header-v2.active-navigator #site-header #masthead #site-navigator .menu > li:nth-last-child(n+4) {
  -webkit-transition-delay: 240ms;
  -moz-transition-delay: 240ms;
  -ms-transition-delay: 240ms;
  -o-transition-delay: 240ms;
  transition-delay: 240ms;
  -webkit-transition-duration: 550ms;
  -moz-transition-duration: 550ms;
  -ms-transition-duration: 550ms;
  -o-transition-duration: 550ms;
  transition-duration: 550ms;
}
.header-v2.active-navigator #site-header #masthead #site-navigator .menu > li:nth-last-child(n+5) {
  -webkit-transition-delay: 300ms;
  -moz-transition-delay: 300ms;
  -ms-transition-delay: 300ms;
  -o-transition-delay: 300ms;
  transition-delay: 300ms;
  -webkit-transition-duration: 650ms;
  -moz-transition-duration: 650ms;
  -ms-transition-duration: 650ms;
  -o-transition-duration: 650ms;
  transition-duration: 650ms;
}
.header-v2.active-navigator #site-header #masthead #site-navigator .menu > li:nth-last-child(n+6) {
  -webkit-transition-delay: 360ms;
  -moz-transition-delay: 360ms;
  -ms-transition-delay: 360ms;
  -o-transition-delay: 360ms;
  transition-delay: 360ms;
  -webkit-transition-duration: 750ms;
  -moz-transition-duration: 750ms;
  -ms-transition-duration: 750ms;
  -o-transition-duration: 750ms;
  transition-duration: 750ms;
}
.header-v2.active-navigator #site-header #masthead #site-navigator .menu > li:nth-last-child(n+7) {
  -webkit-transition-delay: 420ms;
  -moz-transition-delay: 420ms;
  -ms-transition-delay: 420ms;
  -o-transition-delay: 420ms;
  transition-delay: 420ms;
  -webkit-transition-duration: 850ms;
  -moz-transition-duration: 850ms;
  -ms-transition-duration: 850ms;
  -o-transition-duration: 850ms;
  transition-duration: 850ms;
}
.header-v2.active-navigator #site-header #masthead #site-navigator .menu > li:nth-last-child(n+8) {
  -webkit-transition-delay: 480ms;
  -moz-transition-delay: 480ms;
  -ms-transition-delay: 480ms;
  -o-transition-delay: 480ms;
  transition-delay: 480ms;
  -webkit-transition-duration: 950ms;
  -moz-transition-duration: 950ms;
  -ms-transition-duration: 950ms;
  -o-transition-duration: 950ms;
  transition-duration: 950ms;
}
.header-v2.active-navigator #site-header #masthead #site-navigator .menu > li:nth-last-child(n+9) {
  -webkit-transition-delay: 540ms;
  -moz-transition-delay: 540ms;
  -ms-transition-delay: 540ms;
  -o-transition-delay: 540ms;
  transition-delay: 540ms;
  -webkit-transition-duration: 1050ms;
  -moz-transition-duration: 1050ms;
  -ms-transition-duration: 1050ms;
  -o-transition-duration: 1050ms;
  transition-duration: 1050ms;
}
.header-v2.active-navigator #site-header #masthead #site-navigator .navigator-toggle span {
  background: transparent;
}
.header-v2.active-navigator #site-header #masthead #site-navigator .navigator-toggle span:after {
  -webkit-transform: translateY(8px) rotateZ(-45deg);
  -moz-transform: translateY(8px) rotateZ(-45deg);
  -ms-transform: translateY(8px) rotateZ(-45deg);
  -o-transform: translateY(8px) rotateZ(-45deg);
  transform: translateY(8px) rotateZ(-45deg);
}
.header-v2.active-navigator #site-header #masthead #site-navigator .navigator-toggle span:before {
  -webkit-transform: translateY(-8px) rotateZ(45deg);
  -moz-transform: translateY(-8px) rotateZ(45deg);
  -ms-transform: translateY(-8px) rotateZ(45deg);
  -o-transform: translateY(-8px) rotateZ(45deg);
  transform: translateY(-8px) rotateZ(45deg);
}
.header-v5 #site-header #masthead {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
}
.header-v5 #site-header #masthead .wrapper {
  padding-left: 30px;
  padding-right: 30px;
}
.header-v5 #site-header #masthead #site-navigator .navigator-toggle {
  width: 50px;
  height: 50px;
  display: inline-block;
  text-align: right;
  margin: 0;
}
.header-v5 #site-header #masthead #site-navigator .navigator-toggle span {
  width: 24px;
  height: 2px;
  background: #fff;
  display: inline-block;
  position: relative;
  vertical-align: top;
  top: 24px;
}
.header-v5 #site-header #masthead #site-navigator .navigator-toggle span:after,
.header-v5 #site-header #masthead #site-navigator .navigator-toggle span:before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 2px;
  background: #fff;
  top: -8px;
}
.header-v5 #site-header #masthead #site-navigator .navigator-toggle span:before {
  top: auto;
  bottom: -8px;
}
.header-v5 #site-header #masthead #site-navigator .menu > li > a {
  color: #fff;
}
.header-v5 #site-header #masthead #site-navigator .menu:not(.menu-extra) > li {
  visibility: hidden;
  -webkit-opacity: 0;
  -khtml-opacity: 0;
  -moz-opacity: 0;
  opacity: 0;
  -ms-filter: progid:DXImageTransform.Microsoft.Alpha(opacity=0);
  filter: alpha(opacity=0);
}
.header-v5 #site-header #masthead #site-navigator .menu:not(.menu-extra) > li:nth-child(n+1) {
  -webkit-transition-delay: 60ms;
  -moz-transition-delay: 60ms;
  -ms-transition-delay: 60ms;
  -o-transition-delay: 60ms;
  transition-delay: 60ms;
  -webkit-transition-duration: 250ms;
  -moz-transition-duration: 250ms;
  -ms-transition-duration: 250ms;
  -o-transition-duration: 250ms;
  transition-duration: 250ms;
}
.header-v5 #site-header #masthead #site-navigator .menu:not(.menu-extra) > li:nth-child(n+2) {
  -webkit-transition-delay: 120ms;
  -moz-transition-delay: 120ms;
  -ms-transition-delay: 120ms;
  -o-transition-delay: 120ms;
  transition-delay: 120ms;
  -webkit-transition-duration: 350ms;
  -moz-transition-duration: 350ms;
  -ms-transition-duration: 350ms;
  -o-transition-duration: 350ms;
  transition-duration: 350ms;
}
.header-v5 #site-header #masthead #site-navigator .menu:not(.menu-extra) > li:nth-child(n+3) {
  -webkit-transition-delay: 180ms;
  -moz-transition-delay: 180ms;
  -ms-transition-delay: 180ms;
  -o-transition-delay: 180ms;
  transition-delay: 180ms;
  -webkit-transition-duration: 450ms;
  -moz-transition-duration: 450ms;
  -ms-transition-duration: 450ms;
  -o-transition-duration: 450ms;
  transition-duration: 450ms;
}
.header-v5 #site-header #masthead #site-navigator .menu:not(.menu-extra) > li:nth-child(n+4) {
  -webkit-transition-delay: 240ms;
  -moz-transition-delay: 240ms;
  -ms-transition-delay: 240ms;
  -o-transition-delay: 240ms;
  transition-delay: 240ms;
  -webkit-transition-duration: 550ms;
  -moz-transition-duration: 550ms;
  -ms-transition-duration: 550ms;
  -o-transition-duration: 550ms;
  transition-duration: 550ms;
}
.header-v5 #site-header #masthead #site-navigator .menu:not(.menu-extra) > li:nth-child(n+5) {
  -webkit-transition-delay: 300ms;
  -moz-transition-delay: 300ms;
  -ms-transition-delay: 300ms;
  -o-transition-delay: 300ms;
  transition-delay: 300ms;
  -webkit-transition-duration: 650ms;
  -moz-transition-duration: 650ms;
  -ms-transition-duration: 650ms;
  -o-transition-duration: 650ms;
  transition-duration: 650ms;
}
.header-v5 #site-header #masthead #site-navigator .menu:not(.menu-extra) > li:nth-child(n+6) {
  -webkit-transition-delay: 360ms;
  -moz-transition-delay: 360ms;
  -ms-transition-delay: 360ms;
  -o-transition-delay: 360ms;
  transition-delay: 360ms;
  -webkit-transition-duration: 750ms;
  -moz-transition-duration: 750ms;
  -ms-transition-duration: 750ms;
  -o-transition-duration: 750ms;
  transition-duration: 750ms;
}
.header-v5 #site-header #masthead #site-navigator .menu:not(.menu-extra) > li:nth-child(n+7) {
  -webkit-transition-delay: 420ms;
  -moz-transition-delay: 420ms;
  -ms-transition-delay: 420ms;
  -o-transition-delay: 420ms;
  transition-delay: 420ms;
  -webkit-transition-duration: 850ms;
  -moz-transition-duration: 850ms;
  -ms-transition-duration: 850ms;
  -o-transition-duration: 850ms;
  transition-duration: 850ms;
}
.header-v5 #site-header #masthead #site-navigator .menu:not(.menu-extra) > li:nth-child(n+8) {
  -webkit-transition-delay: 480ms;
  -moz-transition-delay: 480ms;
  -ms-transition-delay: 480ms;
  -o-transition-delay: 480ms;
  transition-delay: 480ms;
  -webkit-transition-duration: 950ms;
  -moz-transition-duration: 950ms;
  -ms-transition-duration: 950ms;
  -o-transition-duration: 950ms;
  transition-duration: 950ms;
}
.header-v5 #site-header #masthead #site-navigator .menu:not(.menu-extra) > li:nth-child(n+9) {
  -webkit-transition-delay: 540ms;
  -moz-transition-delay: 540ms;
  -ms-transition-delay: 540ms;
  -o-transition-delay: 540ms;
  transition-delay: 540ms;
  -webkit-transition-duration: 1050ms;
  -moz-transition-duration: 1050ms;
  -ms-transition-duration: 1050ms;
  -o-transition-duration: 1050ms;
  transition-duration: 1050ms;
}
.header-v5 #site-header #masthead.stick {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.7);
}
.header-v5 #site-header #masthead.stick .wrapper {
  padding-left: 0;
  padding-right: 0;
}
.header-v5.admin-bar #site-header #masthead {
  top: 32px !important;
}
.header-v5.active-navigator #site-header #masthead #site-navigator .menu > li {
  visibility: visible;
  -webkit-opacity: 1;
  -khtml-opacity: 1;
  -moz-opacity: 1;
  opacity: 1;
  -ms-filter: progid:DXImageTransform.Microsoft.Alpha(opacity=100);
  filter: alpha(opacity=100);
}
.header-v5.active-navigator #site-header #masthead #site-navigator .menu > li:nth-last-child(n+1) {
  -webkit-transition-delay: 60ms;
  -moz-transition-delay: 60ms;
  -ms-transition-delay: 60ms;
  -o-transition-delay: 60ms;
  transition-delay: 60ms;
  -webkit-transition-duration: 250ms;
  -moz-transition-duration: 250ms;
  -ms-transition-duration: 250ms;
  -o-transition-duration: 250ms;
  transition-duration: 250ms;
}
.header-v5.active-navigator #site-header #masthead #site-navigator .menu > li:nth-last-child(n+2) {
  -webkit-transition-delay: 120ms;
  -moz-transition-delay: 120ms;
  -ms-transition-delay: 120ms;
  -o-transition-delay: 120ms;
  transition-delay: 120ms;
  -webkit-transition-duration: 350ms;
  -moz-transition-duration: 350ms;
  -ms-transition-duration: 350ms;
  -o-transition-duration: 350ms;
  transition-duration: 350ms;
}
.header-v5.active-navigator #site-header #masthead #site-navigator .menu > li:nth-last-child(n+3) {
  -webkit-transition-delay: 180ms;
  -moz-transition-delay: 180ms;
  -ms-transition-delay: 180ms;
  -o-transition-delay: 180ms;
  transition-delay: 180ms;
  -webkit-transition-duration: 450ms;
  -moz-transition-duration: 450ms;
  -ms-transition-duration: 450ms;
  -o-transition-duration: 450ms;
  transition-duration: 450ms;
}
.header-v5.active-navigator #site-header #masthead #site-navigator .menu > li:nth-last-child(n+4) {
  -webkit-transition-delay: 240ms;
  -moz-transition-delay: 240ms;
  -ms-transition-delay: 240ms;
  -o-transition-delay: 240ms;
  transition-delay: 240ms;
  -webkit-transition-duration: 550ms;
  -moz-transition-duration: 550ms;
  -ms-transition-duration: 550ms;
  -o-transition-duration: 550ms;
  transition-duration: 550ms;
}
.header-v5.active-navigator #site-header #masthead #site-navigator .menu > li:nth-last-child(n+5) {
  -webkit-transition-delay: 300ms;
  -moz-transition-delay: 300ms;
  -ms-transition-delay: 300ms;
  -o-transition-delay: 300ms;
  transition-delay: 300ms;
  -webkit-transition-duration: 650ms;
  -moz-transition-duration: 650ms;
  -ms-transition-duration: 650ms;
  -o-transition-duration: 650ms;
  transition-duration: 650ms;
}
.header-v5.active-navigator #site-header #masthead #site-navigator .menu > li:nth-last-child(n+6) {
  -webkit-transition-delay: 360ms;
  -moz-transition-delay: 360ms;
  -ms-transition-delay: 360ms;
  -o-transition-delay: 360ms;
  transition-delay: 360ms;
  -webkit-transition-duration: 750ms;
  -moz-transition-duration: 750ms;
  -ms-transition-duration: 750ms;
  -o-transition-duration: 750ms;
  transition-duration: 750ms;
}
.header-v5.active-navigator #site-header #masthead #site-navigator .menu > li:nth-last-child(n+7) {
  -webkit-transition-delay: 420ms;
  -moz-transition-delay: 420ms;
  -ms-transition-delay: 420ms;
  -o-transition-delay: 420ms;
  transition-delay: 420ms;
  -webkit-transition-duration: 850ms;
  -moz-transition-duration: 850ms;
  -ms-transition-duration: 850ms;
  -o-transition-duration: 850ms;
  transition-duration: 850ms;
}
.header-v5.active-navigator #site-header #masthead #site-navigator .menu > li:nth-last-child(n+8) {
  -webkit-transition-delay: 480ms;
  -moz-transition-delay: 480ms;
  -ms-transition-delay: 480ms;
  -o-transition-delay: 480ms;
  transition-delay: 480ms;
  -webkit-transition-duration: 950ms;
  -moz-transition-duration: 950ms;
  -ms-transition-duration: 950ms;
  -o-transition-duration: 950ms;
  transition-duration: 950ms;
}
.header-v5.active-navigator #site-header #masthead #site-navigator .menu > li:nth-last-child(n+9) {
  -webkit-transition-delay: 540ms;
  -moz-transition-delay: 540ms;
  -ms-transition-delay: 540ms;
  -o-transition-delay: 540ms;
  transition-delay: 540ms;
  -webkit-transition-duration: 1050ms;
  -moz-transition-duration: 1050ms;
  -ms-transition-duration: 1050ms;
  -o-transition-duration: 1050ms;
  transition-duration: 1050ms;
}
.header-v5.active-navigator #site-header #masthead #site-navigator .navigator-toggle span {
  background: transparent;
}
.header-v5.active-navigator #site-header #masthead #site-navigator .navigator-toggle span:after {
  -webkit-transform: translateY(8px) rotateZ(-45deg);
  -moz-transform: translateY(8px) rotateZ(-45deg);
  -ms-transform: translateY(8px) rotateZ(-45deg);
  -o-transform: translateY(8px) rotateZ(-45deg);
  transform: translateY(8px) rotateZ(-45deg);
}
.header-v5.active-navigator #site-header #masthead #site-navigator .navigator-toggle span:before {
  -webkit-transform: translateY(-8px) rotateZ(45deg);
  -moz-transform: translateY(-8px) rotateZ(45deg);
  -ms-transform: translateY(-8px) rotateZ(45deg);
  -o-transform: translateY(-8px) rotateZ(45deg);
  transform: translateY(-8px) rotateZ(45deg);
}
.header-v5 #site-footer {
  margin-bottom: 0;
}
.header-v5 #site-footer #footer-content {
  padding-left: 1000px;
  padding-right: 1000px;
  margin-right: -1000px;
  margin-left: -1000px;
}
.header-v4 #site-header #masthead {
  background: #fff;
}
.header-v4 #site-header #masthead #site-brand {
  float: left;
  margin-right: 50px;
}
.header-v4 #site-header #masthead #site-navigator {
  float: left;
}
.header-v4 #site-header #masthead #site-navigator .menu > li {
  visibility: visible;
  -webkit-opacity: 1;
  -khtml-opacity: 1;
  -moz-opacity: 1;
  opacity: 1;
  -ms-filter: progid:DXImageTransform.Microsoft.Alpha(opacity=100);
  filter: alpha(opacity=100);
}
.header-v4 #site-header #masthead #site-navigator .menu > li:nth-child(n+1) {
  -webkit-transition-delay: 60ms;
  -moz-transition-delay: 60ms;
  -ms-transition-delay: 60ms;
  -o-transition-delay: 60ms;
  transition-delay: 60ms;
  -webkit-transition-duration: 250ms;
  -moz-transition-duration: 250ms;
  -ms-transition-duration: 250ms;
  -o-transition-duration: 250ms;
  transition-duration: 250ms;
}
.header-v4 #site-header #masthead #site-navigator .menu > li:nth-child(n+2) {
  -webkit-transition-delay: 120ms;
  -moz-transition-delay: 120ms;
  -ms-transition-delay: 120ms;
  -o-transition-delay: 120ms;
  transition-delay: 120ms;
  -webkit-transition-duration: 350ms;
  -moz-transition-duration: 350ms;
  -ms-transition-duration: 350ms;
  -o-transition-duration: 350ms;
  transition-duration: 350ms;
}
.header-v4 #site-header #masthead #site-navigator .menu > li:nth-child(n+3) {
  -webkit-transition-delay: 180ms;
  -moz-transition-delay: 180ms;
  -ms-transition-delay: 180ms;
  -o-transition-delay: 180ms;
  transition-delay: 180ms;
  -webkit-transition-duration: 450ms;
  -moz-transition-duration: 450ms;
  -ms-transition-duration: 450ms;
  -o-transition-duration: 450ms;
  transition-duration: 450ms;
}
.header-v4 #site-header #masthead #site-navigator .menu > li:nth-child(n+4) {
  -webkit-transition-delay: 240ms;
  -moz-transition-delay: 240ms;
  -ms-transition-delay: 240ms;
  -o-transition-delay: 240ms;
  transition-delay: 240ms;
  -webkit-transition-duration: 550ms;
  -moz-transition-duration: 550ms;
  -ms-transition-duration: 550ms;
  -o-transition-duration: 550ms;
  transition-duration: 550ms;
}
.header-v4 #site-header #masthead #site-navigator .menu > li:nth-child(n+5) {
  -webkit-transition-delay: 300ms;
  -moz-transition-delay: 300ms;
  -ms-transition-delay: 300ms;
  -o-transition-delay: 300ms;
  transition-delay: 300ms;
  -webkit-transition-duration: 650ms;
  -moz-transition-duration: 650ms;
  -ms-transition-duration: 650ms;
  -o-transition-duration: 650ms;
  transition-duration: 650ms;
}
.header-v4 #site-header #masthead #site-navigator .menu > li:nth-child(n+6) {
  -webkit-transition-delay: 360ms;
  -moz-transition-delay: 360ms;
  -ms-transition-delay: 360ms;
  -o-transition-delay: 360ms;
  transition-delay: 360ms;
  -webkit-transition-duration: 750ms;
  -moz-transition-duration: 750ms;
  -ms-transition-duration: 750ms;
  -o-transition-duration: 750ms;
  transition-duration: 750ms;
}
.header-v4 #site-header #masthead #site-navigator .menu > li:nth-child(n+7) {
  -webkit-transition-delay: 420ms;
  -moz-transition-delay: 420ms;
  -ms-transition-delay: 420ms;
  -o-transition-delay: 420ms;
  transition-delay: 420ms;
  -webkit-transition-duration: 850ms;
  -moz-transition-duration: 850ms;
  -ms-transition-duration: 850ms;
  -o-transition-duration: 850ms;
  transition-duration: 850ms;
}
.header-v4 #site-header #masthead #site-navigator .menu > li:nth-child(n+8) {
  -webkit-transition-delay: 480ms;
  -moz-transition-delay: 480ms;
  -ms-transition-delay: 480ms;
  -o-transition-delay: 480ms;
  transition-delay: 480ms;
  -webkit-transition-duration: 950ms;
  -moz-transition-duration: 950ms;
  -ms-transition-duration: 950ms;
  -o-transition-duration: 950ms;
  transition-duration: 950ms;
}
.header-v4 #site-header #masthead #site-navigator .menu > li:nth-child(n+9) {
  -webkit-transition-delay: 540ms;
  -moz-transition-delay: 540ms;
  -ms-transition-delay: 540ms;
  -o-transition-delay: 540ms;
  transition-delay: 540ms;
  -webkit-transition-duration: 1050ms;
  -moz-transition-duration: 1050ms;
  -ms-transition-duration: 1050ms;
  -o-transition-duration: 1050ms;
  transition-duration: 1050ms;
}
.header-v4 #site-header #masthead .header-widgets {
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
}
.header-v4 #site-header #masthead .header-widgets .social-links a {
  margin: 0 0 0 15px;
}
.header-v4 #site-header #masthead .header-widgets .social-links a i {
  font-size: 18px;
}
.header-v4 #site-header #masthead.stick {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
}
.header-v4 #site-header #masthead.stick #site-navigator .menu > li {
  visibility: hidden;
  -webkit-opacity: 0;
  -khtml-opacity: 0;
  -moz-opacity: 0;
  opacity: 0;
  -ms-filter: progid:DXImageTransform.Microsoft.Alpha(opacity=0);
  filter: alpha(opacity=0);
}
.header-v4 #site-header #masthead.stick #site-navigator .menu > li:nth-child(n+1) {
  -webkit-transition-delay: 60ms;
  -moz-transition-delay: 60ms;
  -ms-transition-delay: 60ms;
  -o-transition-delay: 60ms;
  transition-delay: 60ms;
  -webkit-transition-duration: 250ms;
  -moz-transition-duration: 250ms;
  -ms-transition-duration: 250ms;
  -o-transition-duration: 250ms;
  transition-duration: 250ms;
}
.header-v4 #site-header #masthead.stick #site-navigator .menu > li:nth-child(n+2) {
  -webkit-transition-delay: 120ms;
  -moz-transition-delay: 120ms;
  -ms-transition-delay: 120ms;
  -o-transition-delay: 120ms;
  transition-delay: 120ms;
  -webkit-transition-duration: 350ms;
  -moz-transition-duration: 350ms;
  -ms-transition-duration: 350ms;
  -o-transition-duration: 350ms;
  transition-duration: 350ms;
}
.header-v4 #site-header #masthead.stick #site-navigator .menu > li:nth-child(n+3) {
  -webkit-transition-delay: 180ms;
  -moz-transition-delay: 180ms;
  -ms-transition-delay: 180ms;
  -o-transition-delay: 180ms;
  transition-delay: 180ms;
  -webkit-transition-duration: 450ms;
  -moz-transition-duration: 450ms;
  -ms-transition-duration: 450ms;
  -o-transition-duration: 450ms;
  transition-duration: 450ms;
}
.header-v4 #site-header #masthead.stick #site-navigator .menu > li:nth-child(n+4) {
  -webkit-transition-delay: 240ms;
  -moz-transition-delay: 240ms;
  -ms-transition-delay: 240ms;
  -o-transition-delay: 240ms;
  transition-delay: 240ms;
  -webkit-transition-duration: 550ms;
  -moz-transition-duration: 550ms;
  -ms-transition-duration: 550ms;
  -o-transition-duration: 550ms;
  transition-duration: 550ms;
}
.header-v4 #site-header #masthead.stick #site-navigator .menu > li:nth-child(n+5) {
  -webkit-transition-delay: 300ms;
  -moz-transition-delay: 300ms;
  -ms-transition-delay: 300ms;
  -o-transition-delay: 300ms;
  transition-delay: 300ms;
  -webkit-transition-duration: 650ms;
  -moz-transition-duration: 650ms;
  -ms-transition-duration: 650ms;
  -o-transition-duration: 650ms;
  transition-duration: 650ms;
}
.header-v4 #site-header #masthead.stick #site-navigator .menu > li:nth-child(n+6) {
  -webkit-transition-delay: 360ms;
  -moz-transition-delay: 360ms;
  -ms-transition-delay: 360ms;
  -o-transition-delay: 360ms;
  transition-delay: 360ms;
  -webkit-transition-duration: 750ms;
  -moz-transition-duration: 750ms;
  -ms-transition-duration: 750ms;
  -o-transition-duration: 750ms;
  transition-duration: 750ms;
}
.header-v4 #site-header #masthead.stick #site-navigator .menu > li:nth-child(n+7) {
  -webkit-transition-delay: 420ms;
  -moz-transition-delay: 420ms;
  -ms-transition-delay: 420ms;
  -o-transition-delay: 420ms;
  transition-delay: 420ms;
  -webkit-transition-duration: 850ms;
  -moz-transition-duration: 850ms;
  -ms-transition-duration: 850ms;
  -o-transition-duration: 850ms;
  transition-duration: 850ms;
}
.header-v4 #site-header #masthead.stick #site-navigator .menu > li:nth-child(n+8) {
  -webkit-transition-delay: 480ms;
  -moz-transition-delay: 480ms;
  -ms-transition-delay: 480ms;
  -o-transition-delay: 480ms;
  transition-delay: 480ms;
  -webkit-transition-duration: 950ms;
  -moz-transition-duration: 950ms;
  -ms-transition-duration: 950ms;
  -o-transition-duration: 950ms;
  transition-duration: 950ms;
}
.header-v4 #site-header #masthead.stick #site-navigator .menu > li:nth-child(n+9) {
  -webkit-transition-delay: 540ms;
  -moz-transition-delay: 540ms;
  -ms-transition-delay: 540ms;
  -o-transition-delay: 540ms;
  transition-delay: 540ms;
  -webkit-transition-duration: 1050ms;
  -moz-transition-duration: 1050ms;
  -ms-transition-duration: 1050ms;
  -o-transition-duration: 1050ms;
  transition-duration: 1050ms;
}
.header-v4 #site-header #masthead.stick:hover #site-navigator .menu > li {
  visibility: visible;
  -webkit-opacity: 1;
  -khtml-opacity: 1;
  -moz-opacity: 1;
  opacity: 1;
  -ms-filter: progid:DXImageTransform.Microsoft.Alpha(opacity=100);
  filter: alpha(opacity=100);
}
.header-v4.admin-bar #site-header #masthead.stick {
  top: 32px;
}
.scheme,
.projects.projects-masonry .projects-items .hentry .project-quick-view::after,
.highlight,
.cd-words-wrapper,
#footer-content .social-links a:hover,
#site-wrapper .blog-shortcode.blog-grid .hentry .entry-header .entry-title a:hover,
.projects.projects-masonry .projects-items .hentry .project-quick-view,
.projects.projects-grid .projects-items .hentry .project-info .project-title a,
.blog .hentry .entry-header .entry-title a:hover,
#site-header #headerbar .custom-info i,
#site-header #headerbar .social-links a:hover,
.woocommerce .star-rating span::before,
.woocommerce-page .star-rating span::before,
.woocommerce .star-rating,
.woocommerce-page .star-rating,
.woocommerce .products li .product-info h3,
.woocommerce-page .products li .product-info h3,
#site-wrapper .iconbox .box-header .box-icon i,
#site-wrapper .counter .counter-image i,
#site-header #masthead #site-navigator-mobile.navigator-mobile .navigator-toggle,
.header-v4 #site-header #masthead .header-widgets .social-links a:hover,
.search #main-content .content-inner .search-results article:hover .counter,
#site-wrapper .bg-dark .blog-shortcode.post-thumbnail-cover .hentry .entry-header .entry-title a,
.projects.projects-grid .projects-filter ul li.active a,
.header-v5 #site-header #masthead #site-navigator .menu > .current-menu-item > a,
.header-v5 #site-header #masthead #site-navigator .menu > .current-menu-ancestor > a {
  color: #ffe400;
}
textarea:focus,
input[type="text"]:focus,
input[type="password"]:focus,
input[type="datetime"]:focus,
input[type="datetime-local"]:focus,
input[type="date"]:focus,
input[type="month"]:focus,
input[type="time"]:focus,
input[type="week"]:focus,
input[type="number"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="search"]:focus,
input[type="tel"]:focus,
input[type="color"]:focus,
input.input-text:focus,
select:focus {
  border-color: #ffe400;
}
input[type="submit"]:hover,
button[type="submit"]:hover,
.button::after,
.box-button a::after,
#site-footer #footer-widgets a.button.outline:hover,
#site-footer #footer-widgets a.button:hover,
.projects.projects-masonry .projects-items .hentry .project-info,
.appreciation-box .appreciation-box-content button,
#site-wrapper .cd-headline.clip .cd-words-wrapper::after,
.projects.projects-justified .projects-items .hentry > a::after,
.single-post .hentry .entry-footer .entry-tags a:hover,
.widget.widget_tag_cloud .tagcloud a:hover,
#site-wrapper .owl-controls .owl-pagination .owl-page.active span,
.widget.widget_product_tag_cloud .tagcloud a:hover,
.ui-slider-handle,
.woocommerce .onsale,
.woocommerce-page .onsale,
#site-wrapper .scrollslider .swiper-container .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active,
#site-header #masthead #site-navigator-mobile.navigator-mobile.active .navigator-toggle,
#site-header #masthead #site-navigator-mobile.navigator-mobile .menu li.menu-item-has-children .toggler::before,
#site-header #masthead #site-navigator-mobile.navigator-mobile .menu li.menu-item-has-children .toggler::after,
.header-v5 #site-header #masthead #site-navigator .menu > li > a::after,
.woocommerce .products li .wc-forward,
.woocommerce-page .products li .wc-forward {
  background-color: #1da31d;
}
.owl-carousel .owl-wrapper:after {
  content: ".";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0;
}
/* display none until init */
.owl-carousel {
  display: none;
  position: relative;
  width: 100%;
  -ms-touch-action: pan-y;
}
.owl-carousel .owl-wrapper {
  display: none;
  position: relative;
  -webkit-transform: translate3d(0px, 0px, 0px);
}
.owl-carousel .owl-wrapper-outer {
  overflow: hidden;
  position: relative;
  width: 100%;
}
.owl-carousel .owl-wrapper-outer.autoHeight {
  -webkit-transition: height 500ms ease-in-out;
  -moz-transition: height 500ms ease-in-out;
  -ms-transition: height 500ms ease-in-out;
  -o-transition: height 500ms ease-in-out;
  transition: height 500ms ease-in-out;
}
.owl-carousel .owl-item {
  float: left;
}
.owl-controls .owl-page,
.owl-controls .owl-buttons div {
  cursor: pointer;
}
.owl-controls {
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
/* mouse grab icon */
.grabbing {
  cursor: url(grabbing.png) 8 8, move;
}
/* fix */
.owl-carousel .owl-wrapper,
.owl-carousel .owl-item {
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -ms-backface-visibility: hidden;
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
}
