/**
 *
 * Primary Color 
 *
 * Set one color for all global variables. Global variables are
 * placed in /assets/less/variables.less
 */
/**
 *
 * Imports
 *
 * Imports all base styles, variables and mixins.
 * All files are placed in /assets/less/
 */
/**
 * Imports
 */
/**
 * Custom Responsive Classes
 */
.hide-mobile {
  display: block;
}
@media (max-width: 576px) {
  .hide-mobile {
    display: none;
  }
}
.show-mobile {
  display: none;
}
@media (max-width: 576px) {
  .show-mobile {
    display: block;
  }
}
.hide-tablet {
  display: block;
}
@media (max-width: 768px) {
  .hide-tablet {
    display: none;
  }
}
.show-tablet {
  display: none;
}
@media (max-width: 768px) {
  .show-tablet {
    display: block;
  }
}
.hide-desktop {
  display: block;
}
@media (max-width: 992px) {
  .hide-desktop {
    display: none;
  }
}
.show-desktop {
  display: none;
}
@media (max-width: 992px) {
  .show-desktop {
    display: block;
  }
}
.hide-large {
  display: block;
}
@media (max-width: 1200px) {
  .hide-large {
    display: none;
  }
}
.show-large {
  display: none;
}
@media (max-width: 1200px) {
  .show-large {
    display: block;
  }
}
/**
 * Mixins
 */
/**
 * Variables and options
 */
/**
 * Responsive Utilities
 */
/**
 * Import DEMO
 */
.primary-color {
  color: #ffffff;
  padding: 10px;
  display: block;
  background-color: #a9c927;
}
.background-color {
  color: #ffffff;
  padding: 10px;
  display: block;
  background-color: #ffffff;
}
.dark-color {
  color: #ffffff;
  padding: 10px;
  display: block;
  background-color: #4f5049;
}
.light-color {
  color: #ffffff;
  padding: 10px;
  display: block;
  background-color: #838679;
}
.border-color {
  color: #000000;
  padding: 10px;
  display: block;
  background-color: #cccccc;
}
.success-color {
  color: #ffffff;
  padding: 10px;
  display: block;
  background-color: #70c270;
}
.warning-color {
  color: #ffffff;
  padding: 10px;
  display: block;
  background-color: #c27070;
}
.danger-color {
  color: #ffffff;
  padding: 10px;
  display: block;
  background-color: #c27070;
}
.info-color {
  color: #ffffff;
  padding: 10px;
  display: block;
  background-color: #7070c2;
}
.white {
  color: #000000;
  padding: 10px;
  display: block;
  background-color: #ffffff;
}
.black {
  color: #ffffff;
  padding: 10px;
  display: block;
  background-color: #000000;
}
.shadow {
  color: #000000;
  padding: 10px;
  display: block;
  background-color: #ebebeb;
}
/** 
 * Base
 */
html,
body {
  font-size: 16px;
  height: 100%;
}
h1 {
  font-size: 140%;
  font-weight: 600;
  margin-top: 0px;
}
h2 {
  font-size: 120%;
  font-weight: 600;
  margin-top: 0px;
}
article {
  margin-bottom: 20px;
}
article:last-of-type {
  margin-bottom: 0px;
}
.container {
  max-width: 1200px;
}
/**
 * Helpers 
 */
img.alignleft {
  margin: 0 10px 10px 0;
  float: left;
}
img.alignright {
  margin: 0 0 10px 10px;
  float: right;
}
img.aligncenter {
  display: block;
  margin: 0 auto;
  text-align: center;
  margin: 0 0 0 10px;
}
.screen-reader-text {
  display: none;
}
/** 
 * Navigation: Fixes
 */
.mobile-fix {
  margin: 4.5px 0 !important;
}
.navbar .navbar-nav {
  list-style: none;
}
.navbar .navbar-nav > li {
  list-style: none;
}
.navbar .navbar-nav > li > a {
  padding: 20px;
}
.navbar .navbar-brand {
  max-width: 175px;
}
.navbar .navbar-brand.text {
  padding: 20px;
}
@media all and (max-width: 768px) {
  .navbar .navbar-brand.text {
    padding: 20px;
    margin: 4.5px 0 !important;
  }
}
@media all and (max-width: 768px) {
  .navbar .navbar-brand {
    max-width: 200px;
  }
}
/**
 * Navigation: Submenu
 */
.navbar-custom {
  margin-bottom: 20px;
}
.navbar-custom .navbar-nav li {
  position: relative;
  list-style: none;
}
.navbar-custom .navbar-nav li.menu-item {
  display: inline-block;
}
.navbar-custom .navbar-nav li .sub-menu {
  margin: 0;
  padding: 0;
  display: none;
  position: absolute;
  min-width: 160px;
  background-color: #f8f8f8;
  border-color: #e7e7e7;
  border-width: 1px;
  border-style: solid;
}
.navbar-custom .navbar-nav li .sub-menu a {
  display: block;
  padding: 12px 16px;
  color: #9d9d9d;
  text-decoration: none !important;
}
.navbar-custom .navbar-nav li .sub-menu a:hover {
  background-color: #e7e7e7;
}
.navbar-custom .navbar-nav li:hover .sub-menu {
  display: block;
}
.navbar-custom .navbar-nav li.current-menu-item a {
  color: #000 !important;
}
/** 
 * Navigation: Mobile 
 */
#mobile-button {
  cursor: pointer;
}
#mobile-shadow {
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  display: none;
  position: fixed;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.25);
  z-index: 90;
}
#mobile-menu {
  position: fixed;
  right: -270px;
  top: 0;
  width: 260px;
  height: 100%;
  overflow-x: hidden;
  background: #fff;
  list-style: none;
  z-index: 999999999;
}
#mobile-menu > ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
#mobile-menu > ul > li > a {
  position: relative;
  text-decoration: none;
  color: #333;
  display: block;
  padding: 15px 30px;
  border-bottom: 1px solid #f4f4f4;
}
#mobile-menu > ul > li > a:hover {
  background: #f4f4f4;
  color: #333;
}
#mobile-menu > ul > li > ul {
  list-style: none;
  margin: 0;
  padding: 0;
  background: #f4f4f4;
}
#mobile-menu > ul > li > ul > li > a {
  text-decoration: none;
  color: #333;
  display: block;
  padding: 15px 30px;
}
#mobile-menu .menu-item-has-children > a:after {
  position: absolute;
  right: 30px;
  content: "\2b";
  font-family: 'entypo';
}
#mobile-menu .sub-menu {
  display: none;
}
/** 
 * Sidebar 
 */
#sidebar .widget {
  margin-bottom: 20px;
}
#sidebar .widget:last-of-type {
  margin-bottom: 0px;
}
/**
 * Footer
 */
#page-footer {
  position: relative;
  height: 50px;
  bottom: 0;
}
#page-footer nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  text-align: center;
}
#page-footer nav ul li {
  display: inline-block;
  *display: inline;
  *zoom: 1;
}
#page-footer nav ul li a {
  padding: 20px;
  display: block;
}
@media all and (max-width: 576px) {
  #page-footer nav ul li {
    display: block;
    *display: block;
  }
}
/**
 * Sections
 */
.devhats-area {
  width: 100%;
  height: 150px;
  margin-bottom: 25px;
  position: relative;
}
.devhats-area-inner {
  display: table;
  margin: 0 auto;
  height: 100%;
  width: 100%;
  border: 4px dashed #ddd;
}
[class*="devhats-section-"] {
  display: table-cell;
  text-align: center;
  vertical-align: middle;
  font-size: 120%;
  color: #ddd;
  font-weight: 700;
  text-transform: uppercase;
}
[class*="devhats-section-"] .span {
  display: inline-block;
}
/********************************************************
 *														*
 * 						START							*
 *														*
 *******************************************************/
body {
  overflow-x: hidden;
  font-family: 'Open Sans', sans-serif;
  color: #838679;
  background-color: #ffffff;
}
.img-responsive {
  width: 100%;
  height: auto;
}
.logo {
  width: 100%;
}
a {
  color: #a9c927;
}
a:hover {
  color: #859e1f;
}
h1,
h2,
h3,
h4,
h5 {
  color: #808080;
  font-weight: normal !important;
}
.navbar-custom {
  position: relative;
  padding: 10px 0px;
  background-color: #ffffff;
  border-bottom: 1px solid #cccccc;
}
.navbar-custom a {
  color: #808080;
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  padding: 0px;
}
.navbar-custom .menu-item {
  padding: 0px 7px;
}
.navbar-custom .menu-item a {
  padding: 0px !important;
}
.navbar-custom .btn-shop {
  position: absolute;
  bottom: -23px;
  padding: 0 .625rem;
  border: 1px solid #cccccc;
  background: none #a9c927;
  color: #fff;
  font-weight: 700;
  box-shadow: none;
  border-radius: 3px;
  left: 0px;
  text-align: center;
  right: 0px;
  margin: 0 auto;
  width: 200px;
}
.navbar-custom .btn-shop:hover {
  text-decoration: none;
  transition: .2s all ease;
  background-color: #999;
}
#page-footer {
  border-width: 1px 0 0;
  border-style: solid;
  border-color: #cccccc;
  margin: 25px 0 0;
}
/* Blog Feed */
.archive .article-card,
.home .article-card {
  margin: 0 auto;
  position: relative;
  -webkit-box-shadow: 0px 10px 70px 10px rgba(0, 0, 0, 0.07000000000000001);
  -moz-box-shadow: 0px 10px 70px 10px rgba(0, 0, 0, 0.07000000000000001);
  box-shadow: 0px 10px 70px 10px rgba(0, 0, 0, 0.07000000000000001);
  max-width: 90%;
  margin-bottom: 35px;
  border-radius: 3px;
}
.archive .article-card .post-thumbnail a,
.home .article-card .post-thumbnail a {
  position: relative;
  height: 200px;
  width: 100%;
  display: block;
  overflow: hidden;
}
.archive .article-card .post-thumbnail a img,
.home .article-card .post-thumbnail a img {
  position: absolute;
  max-width: 100%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media all and (max-width: 1000px) {
  .archive .article-card .post-thumbnail a,
  .home .article-card .post-thumbnail a {
    height: 150px;
  }
}
@media all and (max-width: 768px) {
  .archive .article-card .post-thumbnail a,
  .home .article-card .post-thumbnail a {
    height: 220px;
  }
}
@media all and (max-width: 400px) {
  .archive .article-card .post-thumbnail a,
  .home .article-card .post-thumbnail a {
    height: 160px;
  }
}
.archive .article-card .post-thumbnail:hover a img,
.home .article-card .post-thumbnail:hover a img {
  filter: grayscale(100);
}
.archive .article-card article,
.home .article-card article {
  border-bottom: 1px solid #cccccc;
  padding-bottom: 0px;
}
.archive .article-card article img,
.home .article-card article img {
  border-top-left-radius: 3px;
  border-top-right-radius: 3px;
}
.archive .article-card article:last-of-type,
.home .article-card article:last-of-type {
  border-bottom: 0px;
}
.archive .article-card article .post-title,
.home .article-card article .post-title {
  background-color: #fff;
  padding: 20px 20px 20px 20px;
  border-radius: 3px;
}
.archive .article-card article .post-title h2 a,
.home .article-card article .post-title h2 a {
  color: #808080;
  font-size: 15px;
}
.archive .article-card article .post-title h2 a:hover,
.home .article-card article .post-title h2 a:hover {
  text-decoration: none;
}
.archive .article-card article .post-content,
.home .article-card article .post-content {
  padding: 0px 30px 50px 30px;
  background-color: #fff;
  font-size: .88em;
}
.archive .article-card article .post-content img,
.home .article-card article .post-content img {
  border-radius: 3px;
  width: 100%;
  height: auto;
  margin: 30px auto;
}
.archive .article-card article .post-content img:hover,
.home .article-card article .post-content img:hover {
  opacity: .5;
}
.archive .article-card article .post-content ul,
.home .article-card article .post-content ul,
.archive .article-card article .post-content ol,
.home .article-card article .post-content ol {
  margin: 30px 0px;
}
.archive .article-card article .post-content ul li,
.home .article-card article .post-content ul li,
.archive .article-card article .post-content ol li,
.home .article-card article .post-content ol li {
  max-width: 430px;
  margin-bottom: 8px;
}
.archive .article-card article .post-content .wp-caption-text,
.home .article-card article .post-content .wp-caption-text {
  text-align: center;
  font-size: .78em;
  padding: 10px;
  background-color: #f2f2f2;
  margin-top: -66px;
  z-index: 3;
  position: relative;
}
.archive .article-card article .post-content strong,
.home .article-card article .post-content strong {
  font-weight: 600;
}
.archive .article-card article .post-content a,
.home .article-card article .post-content a {
  color: #808080;
  transition: .2s all ease;
  border-bottom: 1px solid #a9c927;
}
.archive .article-card article .post-content a:hover,
.home .article-card article .post-content a:hover {
  border-bottom: 1px solid transparent;
  transition: .2s all ease;
  text-decoration: none;
}
.archive .article-card .overlay,
.home .article-card .overlay {
  position: absolute;
  opacity: 0;
  width: 100%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: rgba(169, 201, 39, 0.8);
  height: 100%;
  transition: .2s all ease;
  color: #fff;
}
.archive .article-card .overlay i,
.home .article-card .overlay i {
  position: absolute;
  max-width: 100%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 30px;
}
.archive .article-card .overlay:hover,
.home .article-card .overlay:hover {
  opacity: 1;
  transition: .2s all ease;
}
.featured-slider .owl-nav {
  margin-bottom: 40px;
}
.featured-slider .slide article {
  margin: 0 auto;
  max-width: 90%;
  margin-bottom: 0px;
  border-radius: 3px;
}
.featured-slider .slide article a {
  position: relative;
  display: block;
}
.featured-slider .slide article a img {
  border-radius: 3px;
  width: 100%;
  height: auto;
  margin: 30px auto;
}
.featured-slider .slide article a img:hover {
  opacity: .5;
}
.featured-slider .slide article a .slide-title {
  background-color: #fff;
}
.featured-slider .slide article a .overlay {
  position: absolute;
  opacity: 0;
  width: 100%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: rgba(169, 201, 39, 0.8);
  height: 100%;
  transition: .2s all ease;
  color: #fff;
}
.featured-slider .slide article a .overlay i {
  position: absolute;
  max-width: 100%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 80px;
}
.featured-slider .slide article a .overlay:hover {
  opacity: 1;
  transition: .2s all ease;
}
/* Single */
.single article {
  border-bottom: 1px solid #cccccc;
  padding-bottom: 0px;
}
.single article img {
  border-top-left-radius: 3px;
  border-top-right-radius: 3px;
}
.single article:last-of-type {
  border-bottom: 0px;
}
.single article .post-title {
  background-color: #fff;
  padding: 20px 20px 20px 20px;
  border-radius: 3px;
  margin-top: -35px;
}
.single article .post-title h2 a {
  color: #808080;
  font-size: 18px;
}
.single article .post-title h2 a:hover {
  text-decoration: none;
}
.single article .post-content {
  padding: 0px 30px 50px 30px;
  background-color: #fff;
  font-size: .88em;
}
.single article .post-content img {
  border-radius: 3px;
  width: 100%;
  height: auto;
  margin: 30px auto;
}
.single article .post-content ul,
.single article .post-content ol {
  margin: 30px 0px;
}
.single article .post-content ul li,
.single article .post-content ol li {
  max-width: 430px;
  margin-bottom: 8px;
}
.single article .post-content .wp-caption-text {
  text-align: center;
  font-size: .78em;
  padding: 10px;
  background-color: #f2f2f2;
  margin-top: -66px;
  z-index: 3;
  position: relative;
}
.single article .post-content strong {
  font-weight: 600;
}
.single article .post-content a {
  color: #808080;
  transition: .2s all ease;
  border-bottom: 1px solid #a9c927;
}
.single article .post-content a:hover {
  border-bottom: 1px solid transparent;
  transition: .2s all ease;
  text-decoration: none;
}
/* Sidebar */
.sidebar-container {
  margin: 0 auto;
}
#sidebar {
  margin-top: 0px;
  background-color: #f2f2f2;
  padding: 20px;
  border-radius: 3px;
  border: 1px solid #cccccc;
}
#sidebar aside {
  margin-bottom: 40px !important;
}
#sidebar aside h3 {
  font-size: .88em;
  margin-bottom: 20px;
  font-weight: normal;
  color: #808080;
}
#sidebar aside ul {
  list-style: none;
}
#sidebar aside ul li {
  position: relative;
  font-size: .88em;
  padding-bottom: 5px;
}
#sidebar aside ul li:before {
  position: absolute;
  left: -30px;
  content: '\e926';
  font-family: entypo;
  color: #a9c927;
}
#sidebar aside ul li a {
  color: #808080;
  transition: .2s all ease;
  display: inline-block;
}
#sidebar aside ul li a:hover {
  text-decoration: none;
  transition: .2s all ease;
  transform: translate(4px, 0px);
  -webkit-transform: translate(4px, 0px);
  -moz-transform: translate(4px, 0px);
  -o-transform: translate(4px, 0px);
  -ms-transform: translate(4px, 0px);
}
.breadcrumb {
  margin-top: 70px;
  margin-bottom: 60px;
  font-size: .75em;
  background-color: transparent;
}
.pagination {
  margin: 30px auto;
  text-align: center;
  display: block;
}
.pagination .nav-links span,
.pagination .nav-links a {
  padding: 3px 2px;
  margin: 0px 5px;
  color: #808080;
  font-weight: 600;
}
.pagination .nav-links span:hover,
.pagination .nav-links a:hover {
  text-decoration: none;
}
.pagination .nav-links .current {
  border-bottom: 1px solid #808080;
}
.home .navbar-custom {
  margin-bottom: 100px;
}
/* comments */
.post-footer h3 {
  font-size: 1.1em;
  font-weight: normal;
  margin-bottom: 0px;
  margin-top: 30px;
}
.comment-respond ol,
.comment-respond ol li {
  list-style: none;
}
.comment-respond > .commentlist {
  padding-left: 0px;
}
.comment-respond .comment {
  padding-left: 65px;
  margin-bottom: 20px;
}
.comment-respond .comment .comment-content {
  margin-bottom: 10px;
}
.comment-respond .comment .comment-meta {
  margin-bottom: 10px;
}
.comment-respond .comment .comment-meta .comment-author {
  position: relative;
}
.comment-respond .comment .comment-meta .avatar {
  left: -65px;
  width: 50px;
  height: 50px;
  position: absolute;
}
.comment-respond .comment .comment-meta .fn {
  display: inline-block;
  font-size: 120%;
}
.comment-respond .comment .comment-meta time {
  text-transform: uppercase;
  font-size: 80%;
}
.comment-respond .comment .comment-meta .edit-link {
  text-transform: uppercase;
  margin-left: 10px;
  font-size: 80%;
}
.comment-respond ol ol .comment .comment-meta .avatar {
  left: -45px;
  width: 30px;
  height: 30px;
  position: absolute;
}
.comment-respond .comment-form {
  margin: 20px 0;
}
.comment-respond .comment-form .si_captcha_code_p label {
  display: inline-block !important;
}
.comment-respond .comment-form .comment-notes {
  font-size: .88em !important;
}
.comment-respond .comment-form:after {
  clear: both;
}
.comment-respond .comment-form span.required {
  color: red;
}
.comment-respond .comment-form label {
  display: inline-block;
}
.comment-respond .comment-form input[type="text"],
.comment-respond .comment-form textarea,
.comment-respond .comment-form select {
  border: 1px solid #cccccc;
  display: block;
  max-width: 100%;
  width: 100%;
  color: #999;
  padding: 10px;
  border-radius: 3px;
  background-color: #f2f2f2;
}
.comment-respond .comment-form input[type="text"]:focus,
.comment-respond .comment-form textarea:focus,
.comment-respond .comment-form select:focus {
  border: 1px solid #333;
  outline: none;
  color: #333;
}
.comment-respond .comment-form .submit {
  background: #a9c927;
  color: #fff;
  padding: 7.5px 20px;
  border-radius: 3px;
  text-align: center;
  border: 1px solid #a9c927;
  font-weight: 700;
  min-width: 150px;
  margin: 10px 0 0;
  transition: all .2s ease;
  outline: none;
}
.comment-respond .comment-form .submit:hover {
  color: #fff;
  background: #808080;
  border: 1px solid #999;
  transition: all .2s ease;
}
.comment-respond .comment-form .submit:focus,
.comment-respond .comment-form .submit:active {
  color: #fff;
  background: #999;
  border: 1px solid #999;
  transition: all .1s linear;
  box-shadow: 0px 0px 10px 1px rgba(0, 0, 0, 0.25);
}
@media all and (max-width: 768px) {
  .comment-respond .comment-form .submit {
    display: block;
    margin: 20px auto;
    max-width: 100%;
    width: 50%;
  }
}
@media all and (max-width: 768px) {
  .comment-respond .comment-form .submit {
    display: block;
    max-width: 100%;
    width: 100%;
  }
}
.commentlist {
  margin: 30px 0px;
}
.commentlist a {
  color: #808080;
  transition: .2s all ease;
  border-bottom: 1px solid #a9c927;
}
.commentlist a:hover {
  border-bottom: 1px solid transparent;
  transition: .2s all ease;
  text-decoration: none;
}
.commentlist .comment-meta {
  font-size: .88em;
  margin: 7px 0px;
  color: #808080 !important;
}
.commentlist .comment-meta:hover {
  color: #808080 !important;
}
.commentlist .comment-meta a {
  border-bottom: 0px;
}
.commentlist li {
  margin-bottom: 50px;
}
