@charset "utf-8";
/*------------------------------------------------------------------
/*------------------------------------------------------------------
[Main Template Styles]

Project:  Beardz - HTML5 Template for Barbershops
Author: Diego Pereira & Thais Barbosa @ DotRex
Version:  1.0.3
Last change:  15/03/2017
Primary use:  
-------------------------------------------------------------------*/
/*------------------------------------------------------------------
[Table of contents]

00. Imports
01. General
02. Buttons
03. Forms
04. Page Loader
05. Header
06. Footer
07. Blog
08. Module: Packery
09. Modals
10. Cross Browser Solutions

/* ==========================================================
! >> 00. Imports (LESS)
==============  =========================================== */
/*--------------------------------------------------------------
>>> _S BASE STYLES - TABLE OF CONTENTS
----------------------------------------------------------------
            # Normalize
            # Typography
            # Elements
            # Forms
            # Navigation
              ## Links
              ## Menus
            # Accessibility
            # Alignments
            # Clearings
            # Widgets
            # Content
              ## Posts and pages
              ## Asides
              ## Comments
            # Infinite scroll
            # Media
              ## Captions
              ## Galleries
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Normalize
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Elements
--------------------------------------------------------------*/
html {
  box-sizing: border-box;
}
*,
*:before,
*:after {
  /* Inherit box-sizing to make it easier to change the property for components that leverage other behavior; see http://css-tricks.com/inheriting-box-sizing-probably-slightly-better-best-practice/ */
  box-sizing: inherit;
}
body {
  background: #fff;
  /* Fallback for when there is no custom background color defined. */
}
blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
}
blockquote,
q {
  quotes: "" "";
}
hr {
  background-color: #ccc;
  border: 0;
  height: 1px;
  margin-bottom: 1.5em;
}
img {
  height: auto;
  /* Make sure images are scaled correctly. */
  max-width: 100%;
  /* Adhere to container width. */
}
table {
  margin: 0 0 1.5em;
  width: 100%;
}
/*--------------------------------------------------------------
# Forms
--------------------------------------------------------------*/
button,
input[type="button"],
input[type="reset"],
input[type="submit"] {
  border: 1px solid;
  border-color: #ccc #ccc #bbb;
  border-radius: 3px;
}
button:hover,
input[type="button"]:hover,
input[type="reset"]:hover,
input[type="submit"]:hover {
  border-color: #ccc #bbb #aaa;
}
button:focus,
input[type="button"]:focus,
input[type="reset"]:focus,
input[type="submit"]:focus,
button:active,
input[type="button"]:active,
input[type="reset"]:active,
input[type="submit"]:active {
  border-color: #aaa #bbb #bbb;
}
input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="search"],
input[type="number"],
input[type="tel"],
input[type="range"],
input[type="date"],
input[type="month"],
input[type="week"],
input[type="time"],
input[type="datetime"],
input[type="datetime-local"],
input[type="color"],
textarea {
  color: #666;
  border: 1px solid #ccc;
  border-radius: 3px;
}
select {
  border: 1px solid #ccc;
}
input[type="text"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="password"]:focus,
input[type="search"]:focus,
input[type="number"]:focus,
input[type="tel"]:focus,
input[type="range"]:focus,
input[type="date"]:focus,
input[type="month"]:focus,
input[type="week"]:focus,
input[type="time"]:focus,
input[type="datetime"]:focus,
input[type="datetime-local"]:focus,
input[type="color"]:focus,
textarea:focus {
  color: #111;
}
input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="search"],
input[type="number"],
input[type="tel"],
input[type="range"],
input[type="date"],
input[type="month"],
input[type="week"],
input[type="time"],
input[type="datetime"],
input[type="datetime-local"],
input[type="color"] {
  padding: 3px;
}
textarea {
  padding-left: 3px;
  width: 100%;
}
/*--------------------------------------------------------------
# Navigation
--------------------------------------------------------------*/
/*--------------------------------------------------------------
## Links
--------------------------------------------------------------*/
a {
  color: royalblue;
}
a:visited {
  color: purple;
}
a:hover,
a:focus,
a:active {
  color: midnightblue;
}
a:focus {
  outline: thin dotted;
}
a:hover,
a:active {
  outline: 0;
}
/*--------------------------------------------------------------
## Menus
--------------------------------------------------------------*/
.main-navigation {
  clear: both;
  display: block;
  float: left;
  width: 100%;
}
.main-navigation ul {
  display: none;
  list-style: none;
  margin: 0;
  padding-left: 0;
}
.main-navigation li {
  float: left;
  position: relative;
}
.main-navigation a {
  display: block;
  text-decoration: none;
}
.main-navigation ul ul {
  float: left;
  position: absolute;
  top: 1.5em;
  left: -999em;
  z-index: 99999;
}
.main-navigation ul ul ul {
  left: -999em;
  top: 0;
}
.main-navigation ul ul a {
  width: 200px;
}
.main-navigation ul li:hover > ul,
.main-navigation ul li.focus > ul {
  left: auto;
}
.main-navigation ul ul li:hover > ul,
.main-navigation ul ul li.focus > ul {
  left: 100%;
}
/* Small menu. */
.menu-toggle,
.main-navigation.toggled ul {
  display: block;
}
@media screen and (min-width: 37.5em) {
  .menu-toggle {
    display: none;
  }
  .main-navigation ul {
    display: block;
  }
}
.site-main .comment-navigation,
.site-main .posts-navigation,
.site-main .post-navigation {
  margin: 0 0 1.5em;
  overflow: hidden;
}
.comment-navigation .nav-previous,
.posts-navigation .nav-previous,
.post-navigation .nav-previous {
  float: left;
  width: 50%;
}
.comment-navigation .nav-next,
.posts-navigation .nav-next,
.post-navigation .nav-next {
  float: right;
  text-align: right;
  width: 50%;
}
/*--------------------------------------------------------------
# Accessibility
--------------------------------------------------------------*/
/* Text meant only for screen readers. */
.screen-reader-text {
  clip: rect(1px, 1px, 1px, 1px);
  position: absolute !important;
  height: 1px;
  width: 1px;
  overflow: hidden;
}
.screen-reader-text:focus {
  background-color: #f1f1f1;
  border-radius: 3px;
  clip: auto !important;
  color: #21759b;
  display: block;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: bold;
  height: auto;
  left: 5px;
  line-height: normal;
  padding: 15px 23px 14px;
  text-decoration: none;
  top: 5px;
  width: auto;
  z-index: 100000;
  /* Above WP toolbar. */
}
/* Do not show the outline on the skip link target. */
#content[tabindex="-1"]:focus {
  outline: 0;
}
/*--------------------------------------------------------------
# Alignments
--------------------------------------------------------------*/
.alignleft {
  display: inline;
  float: left;
  margin-right: 1.5em;
}
.alignright {
  display: inline;
  float: right;
  margin-left: 1.5em;
}
.aligncenter {
  clear: both;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
/*--------------------------------------------------------------
# Clearings
--------------------------------------------------------------*/
.clear:before,
.clear:after,
.entry-content:before,
.entry-content:after,
.comment-content:before,
.comment-content:after,
.site-header:before,
.site-header:after,
.site-content:before,
.site-content:after,
.site-footer:before,
.site-footer:after {
  content: "";
  display: table;
  table-layout: fixed;
}
.clear:after,
.entry-content:after,
.comment-content:after,
.site-header:after,
.site-content:after,
.site-footer:after {
  clear: both;
}
/*--------------------------------------------------------------
# Widgets
--------------------------------------------------------------*/
.widget {
  margin: 0 0 1.5em;
}
/* Make sure select elements fit in widgets. */
.widget select {
  max-width: 100%;
}
/*--------------------------------------------------------------
# Content
--------------------------------------------------------------*/
/*--------------------------------------------------------------
## Posts and pages
--------------------------------------------------------------*/
.sticky {
  display: block;
}
.hentry {
  margin: 0 0 1.5em;
}
.byline,
.updated:not(.published) {
  display: none;
}
.single .byline,
.group-blog .byline {
  display: inline;
}
.page-content,
.entry-content,
.entry-summary {
  margin: 1.5em 0 0;
}
.page-links {
  clear: both;
  margin: 0 0 1.5em;
}
/*--------------------------------------------------------------
## Asides
--------------------------------------------------------------*/
.blog .format-aside .entry-title,
.archive .format-aside .entry-title {
  display: none;
}
/*--------------------------------------------------------------
## Comments
--------------------------------------------------------------*/
.comment-content a {
  word-wrap: break-word;
}
.bypostauthor {
  display: block;
}
/*--------------------------------------------------------------
# Infinite scroll
--------------------------------------------------------------*/
/* Globally hidden elements when Infinite Scroll is supported and in use. */
.infinite-scroll .posts-navigation,
.infinite-scroll.neverending .site-footer {
  /* Theme Footer (when set to scrolling) */
  display: none;
}
/* When Infinite Scroll has reached its end we need to re-display elements that were hidden (via .neverending) before. */
.infinity-end.neverending .site-footer {
  display: block;
}
/*--------------------------------------------------------------
# Media
--------------------------------------------------------------*/
.page-content .wp-smiley,
.entry-content .wp-smiley,
.comment-content .wp-smiley {
  border: none;
  margin-bottom: 0;
  margin-top: 0;
  padding: 0;
}
/* Make sure embeds and iframes fit their containers. */
embed,
iframe,
object {
  max-width: 100%;
}
/*--------------------------------------------------------------
## Captions
--------------------------------------------------------------*/
.wp-caption {
  margin-bottom: 1.5em;
  max-width: 100%;
}
.wp-caption img[class*="wp-image-"] {
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.wp-caption .wp-caption-text {
  margin: 0.8075em 0;
}
.wp-caption-text {
  text-align: center;
}
/*--------------------------------------------------------------
## Galleries
--------------------------------------------------------------*/
.gallery {
  margin-bottom: 1.5em;
}
.gallery-item {
  display: inline-block;
  text-align: center;
  vertical-align: top;
  width: 100%;
}
.gallery-columns-2 .gallery-item {
  max-width: 50%;
}
.gallery-columns-3 .gallery-item {
  max-width: 33.33%;
}
.gallery-columns-4 .gallery-item {
  max-width: 25%;
}
.gallery-columns-5 .gallery-item {
  max-width: 20%;
}
.gallery-columns-6 .gallery-item {
  max-width: 16.66%;
}
.gallery-columns-7 .gallery-item {
  max-width: 14.28%;
}
.gallery-columns-8 .gallery-item {
  max-width: 12.5%;
}
.gallery-columns-9 .gallery-item {
  max-width: 11.11%;
}
.gallery-caption {
  display: block;
}
.color1 {
  color: #111111;
}
.color2 {
  color: #ffc905;
}
.color3 {
  color: #111111;
}
.font1 {
  font-family: 'Libre Baskerville', serif;
}
.font2 {
  font-family: 'Roboto', sans-serif;
}
.bold {
  font-weight: bold;
}
.box-shadow {
  -webkit-box-shadow: 0px 2px 6px 0px rgba(0, 0, 0, 0.3);
  -moz-box-shadow: 0px 2px 6px 0px rgba(0, 0, 0, 0.3);
  box-shadow: 0px 2px 6px 0px rgba(0, 0, 0, 0.3);
}
.responsive-image {
  width: 100%;
}
.text-left {
  text-align: left !important;
}
.text-right {
  text-align: right !important;
}
.clean-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.clean-list li {
  padding-left: 0;
  margin-left: 0;
}
.clearfix:after {
  content: '';
  display: block;
  clear: both;
}
.mtop0 {
  margin-top: 0;
}
.mtop20 {
  margin-top: 20px;
}
.mtop40 {
  margin-top: 40px;
}
.bg-cover,
.background-cover {
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
}
.vertically-centered {
  transform: translate(0, -50%);
  -webkit-transform: translate(0, -50%);
  -moz-transform: translate(0, -50%);
  -o-transform: translate(0, -50%);
  position: absolute;
  top: 50%;
}
.horizontally-centered {
  transform: translate(-50%, 0);
  -webkit-transform: translate(-50%, 0);
  -moz-transform: translate(-50%, 0);
  -o-transform: translate(-50%, 0);
  position: absolute;
  left: 50%;
}
.absolute-centered {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
}
.no-transform {
  transform: none !important;
  -webkit-transform: none !important;
  -moz-transform: none !important;
  -o-transform: none !important;
}
.image-zoom {
  overflow: hidden;
}
.image-zoom img {
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  max-width: 100%;
}
.image-zoom img:hover {
  transform: scale(1.05);
  -webkit-transform: scale(1.05);
  -moz-transform: scale(1.05);
}
.box-up-hover {
  -webkit-transition: all 0.35s ease-in-out;
  -moz-transition: all 0.35s ease-in-out;
  transition: all 0.35s ease-in-out;
  transform: translate(0, 0);
  -webkit-transform: translate(0, 0);
  -moz-transform: translate(0, 0);
}
.box-up-hover:hover {
  transform: translate(0, -10px);
  -webkit-transform: translate(0, -10px);
  -moz-transform: translate(0, -10px);
}
.box-slide-left {
  -webkit-transition: all 0.35s ease-in-out;
  -moz-transition: all 0.35s ease-in-out;
  transition: all 0.35s ease-in-out;
  transform: translate(0, 0);
  -webkit-transform: translate(0, 0);
  -moz-transform: translate(0, 0);
}
.box-slide-left:hover {
  transform: translate(-10px, -10px);
  -webkit-transform: translate(-10px, -10px);
  -moz-transform: translate(-10px, -10px);
}
.box-slide-right {
  -webkit-transition: all 0.35s ease-in-out;
  -moz-transition: all 0.35s ease-in-out;
  transition: all 0.35s ease-in-out;
  transform: translate(0, 0);
  -webkit-transform: translate(0, 0);
  -moz-transform: translate(0, 0);
}
.box-slide-right:hover {
  transform: translate(10px, -10px);
  -webkit-transform: translate(10px, -10px);
  -moz-transform: translate(10px, -10px);
}
/* ==========================================================
! >> 01. General
========================================================== */
* {
  box-sizing: border-box !important;
}
body {
  font-family: 'Roboto', sans-serif;
  -webkit-font-smoothing: subpixel-antialiased;
  background: url('../img/body-bg.jpg');
  background-attachment: fixed;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
}
.container {
  padding: 0;
}
@media (min-width: 1600px) {
  .container {
    width: 1280px;
  }
}
@media (min-width: 1400px) {
  .container {
    width: 1400px;
  }
}
.iframe-wrapper iframe {
  width: 100%;
}
.dl-horizontal {
  padding-left: 0;
  margin: 0;
}
.dl-horizontal dt {
  text-align: left;
  font-family: 'Libre Baskerville', serif;
  font-style: italic;
  font-weight: bold;
  margin-bottom: 5px;
  font-size: 13px;
  border-bottom: 1px solid #eee;
  padding-bottom: 2px;
  margin-right: 20px;
  width: 100px;
}
.dl-horizontal dd {
  margin-bottom: 5px;
  font-size: 12px;
  line-height: 1;
  padding-top: 10px;
  vertical-align: bottom;
  min-height: 22px;
  font-weight: bold;
}
@media (min-width:992px) {
  .dl-horizontal dd {
    margin-left: 100px;
  }
}
/* ==========================================================
! >> 02. Buttons
========================================================== */
.btn {
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  background-color: #111111;
  margin-bottom: 8px;
}
.btn-default {
  border: 0;
  background: #ffc905;
  color: #333!important;
  padding: 15px 30px;
  display: inline-block;
  color: inherit;
  vertical-align: middle;
  position: relative;
  z-index: 1;
  text-transform: uppercase;
  letter-spacing: 6px;
  font-weight: normal;
  border-radius: 20px;
  -moz-border-radius: 20px;
  -webkit-border-radius: 20px;
}
.btn-default:focus {
  outline: none;
  background: #cc9600;
}
.btn-default > span {
  vertical-align: middle;
  color: #333;
}
.btn-default:hover {
  background: #111111;
}
.btn-rayen {
  overflow: hidden;
  padding: 0;
}
.btn-rayen:before {
  content: attr(data-text);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #111111 !important;
  -webkit-transform: translate3d(-100%, 0, 0);
  transform: translate3d(-100%, 0, 0);
  color: #ffffff;
}
.btn-rayen > span {
  display: block;
}
.btn-rayen:before,
.btn-rayen > span {
  padding: 1em 2em;
  -webkit-transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  -webkit-transition-timing-function: cubic-bezier(0.75, 0, 0.125, 1);
  transition-timing-function: cubic-bezier(0.75, 0, 0.125, 1);
}
.btn-rayen:hover:before {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
.btn-rayen:hover span {
  -webkit-transform: translate3d(0, 100%, 0);
  transform: translate3d(0, 100%, 0);
}
.btn-wapasha {
  background: #111111;
  color: #ffffff;
  -webkit-transition: background-color 0.3s, color 0.3s;
  transition: background-color 0.3s, color 0.3s;
  padding: 0;
  text-align: center;
}
.btn-wapasha:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 2px solid #ffc905;
  z-index: -1;
  border-radius: inherit;
  opacity: 0;
  -webkit-transform: scale3d(0.6, 0.6, 1);
  transform: scale3d(0.6, 0.6, 1);
  -webkit-transition: -webkit-transform 0.3s, opacity 0.3s;
  transition: transform 0.3s, opacity 0.3s;
  -webkit-transition-timing-function: cubic-bezier(0.75, 0, 0.125, 1);
  transition-timing-function: cubic-bezier(0.75, 0, 0.125, 1);
}
.btn-wapasha:hover {
  background-color: transparent;
  color: #ffc905;
}
.btn-wapasha:hover:before {
  -webkit-transform: scale3d(1, 1, 1);
  transform: scale3d(1, 1, 1);
  opacity: 1;
}
.btn-negative {
  background: transparent;
  color: #ffffff;
  border: 2px solid #ffffff;
  text-transform: uppercase;
  padding: 12px;
  font-size: 11px;
  letter-spacing: 6px;
  font-weight: normal;
}
.btn-negative:hover {
  border-color: #ffffff;
}
.btn-primary {
  background-color: #3276b1;
}
.btn-success {
  background-color: #4cae4c;
}
.btn-info {
  background-color: #4cae4c;
}
.btn-warning {
  background-color: #eea236;
}
.btn-danger {
  background-color: #d43f3a;
}
.primary-btn {
  display: inline-block;
  border: 0;
  color: #111!important;
  background-color: #ffc905;
  font-size: 12px;
  line-height: 1;
  text-transform: uppercase;
  text-decoration: none;
  padding: 15px 35px;
  overflow: hidden;
  position: relative;
  z-index: 1;
  text-align: center;
  font-weight: bold;
  font-style: italic;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  border-radius: 30px;
  -moz-border-radius: 30px;
  -webkit-border-radius: 30px;
  font-family: 'Libre Baskerville', serif;
}
.primary-btn:before {
  content: "";
  width: 100%;
  height: 100%;
  background-color: #111111;
  position: absolute;
  left: 0;
  top: 0;
  transform: translate(0, 100%);
  -webkit-transform: translate(0, 100%);
  -moz-transform: translate(0, 100%);
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  z-index: -1;
}
.primary-btn:hover {
  color: #fff!important;
  text-decoration: none;
}
.primary-btn:hover:before {
  transform: translate(0, 0);
  -webkit-transform: translate(0, 0);
  -moz-transform: translate(0, 0);
}
.primary-btn .btn-icon {
  margin-right: 15px;
  display: inline-block;
  margin-top: -14px;
}
@media (min-width: 1400px) {
  .primary-btn .btn-icon {
    margin-top: 0;
  }
}
/* ==========================================================
! >> 03. Forms
========================================================== */
.form-control {
  width: 100%!important;
  border-radius: 6px;
  -moz-border-radius: 6px;
  -webkit-border-radius: 6px;
  height: 50px;
  font-size: 14px;
  color: #111;
  margin-bottom: 5px;
  font-family: 'Libre Baskerville', serif;
}
textarea.form-control {
  min-height: 100px;
}
textarea.textarea2 {
  height: 115px!important;
}
.btn-form {
  width: 100%;
  height: 50px;
}
/* ==========================================================
! 04. Page Loader
========================================================== */
#page-loader {
  width: 100%;
  height: 100%;
  background: #ffc905;
  color: #111111;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
}
.loading-wrapper {
  width: 300px;
  position: fixed;
  top: 40%;
  left: 50%;
  padding-top: 115px;
  margin-left: -190px;
  visibility: hidden;
  opacity: 0;
  position: relative;
}
#loading-center-absolute {
  position: absolute;
  left: 50%;
  top: 50%;
  height: 60px;
  width: 60px;
  margin-top: -30px;
  margin-left: -30px;
  -webkit-animation: loading-center-absolute 1s infinite;
  animation: loading-center-absolute 1s infinite;
}
.object {
  width: 20px;
  height: 20px;
  background-color: #FFF;
  float: left;
  -moz-border-radius: 50% 50% 50% 50%;
  -webkit-border-radius: 50% 50% 50% 50%;
  border-radius: 50% 50% 50% 50%;
  margin-right: 20px;
  margin-bottom: 20px;
}
.object:nth-child(2n+0) {
  margin-right: 0px;
}
#object_one {
  -webkit-animation: object_one 1s infinite;
  animation: object_one 1s infinite;
}
#object_two {
  -webkit-animation: object_two 1s infinite;
  animation: object_two 1s infinite;
}
#object_three {
  -webkit-animation: object_three 1s infinite;
  animation: object_three 1s infinite;
}
#object_four {
  -webkit-animation: object_four 1s infinite;
  animation: object_four 1s infinite;
}
@-webkit-keyframes loading-center-absolute {
  100% {
    -ms-transform: rotate(360deg);
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes loading-center-absolute {
  100% {
    -ms-transform: rotate(360deg);
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@-webkit-keyframes object_one {
  50% {
    -ms-transform: translate(20px, 20px);
    -webkit-transform: translate(20px, 20px);
    transform: translate(20px, 20px);
  }
}
@keyframes object_one {
  50% {
    -ms-transform: translate(20px, 20px);
    -webkit-transform: translate(20px, 20px);
    transform: translate(20px, 20px);
  }
}
@-webkit-keyframes object_two {
  50% {
    -ms-transform: translate(-20px, 20px);
    -webkit-transform: translate(-20px, 20px);
    transform: translate(-20px, 20px);
  }
}
@keyframes object_two {
  50% {
    -ms-transform: translate(-20px, 20px);
    -webkit-transform: translate(-20px, 20px);
    transform: translate(-20px, 20px);
  }
}
@-webkit-keyframes object_three {
  50% {
    -ms-transform: translate(20px, -20px);
    -webkit-transform: translate(20px, -20px);
    transform: translate(20px, -20px);
  }
}
@keyframes object_three {
  50% {
    -ms-transform: translate(20px, -20px);
    -webkit-transform: translate(20px, -20px);
    transform: translate(20px, -20px);
  }
}
@-webkit-keyframes object_four {
  50% {
    -ms-transform: translate(-20px, -20px);
    -webkit-transform: translate(-20px, -20px);
    transform: translate(-20px, -20px);
  }
}
@keyframes object_four {
  50% {
    -ms-transform: translate(-20px, -20px);
    -webkit-transform: translate(-20px, -20px);
    transform: translate(-20px, -20px);
  }
}
/* ==========================================================
! 05. Header
========================================================== */
#top-bar {
  background-color: #000;
  color: #ffffff;
  border-bottom: 0;
  padding-top: 5px;
  display: none;
  z-index: 999;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  height: 45px;
  overflow: hidden;
}
@media (min-width:992px) {
  #top-bar {
    display: block;
  }
}
#top-bar a {
  color: #ffffff;
  font-weight: 300;
}
#top-bar .list-inline {
  margin-bottom: 0;
}
#top-bar .top-bar-item {
  border-left: 1px dotted rgba(255, 255, 255, 0.5);
  padding: 0 15px;
  padding-top: 6px;
  padding-bottom: 6px;
  font-size: 12px;
  opacity: 0.9;
  font-weight: lighter;
  font-style: italic;
}
#top-bar .top-bar-item:first-child {
  padding-left: 0;
  border-left: none;
  margin-top: 2px;
}
@media (min-width: 1400px) {
  #top-bar .top-bar-item:first-child {
    margin-top: 0;
  }
}
#top-bar .top-bar-item .fa {
  color: #ffc905;
  margin-right: 10px;
}
#top-bar .social-icons {
  margin-top: 5px;
}
#top-bar .social-icons li {
  margin-right: 0;
  margin-left: 0;
  width: 28px;
}
#top-bar .social-icons a {
  width: 25px;
  height: 25px;
  font-size: 12px;
  padding-top: 5px;
  line-height: 1;
  border-radius: 100%;
  -moz-border-radius: 100%;
  -webkit-border-radius: 100%;
  background: #eeb800;
}
#top-bar.topbar-hide {
  transform: translateY(-100%);
  -webkit-transform: translateY(-100%);
  -moz-transform: translateY(-100%);
  opacity: 0;
}
.social-icons {
  margin-bottom: 0;
}
.social-icons li {
  display: inline-block;
  list-style: none;
}
.social-icons a {
  display: inline-block;
  text-align: center;
  width: 22px;
  height: 22px;
  line-height: 22px;
  background: #ffffff;
  border-radius: 100%;
  -moz-border-radius: 100%;
  -webkit-border-radius: 100%;
  color: #111111;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  padding: 0;
  font-size: 12px;
}
.social-icons a:hover {
  background: #ffc905;
}
.contact-info-list {
  margin-bottom: 0;
  line-height: 22px;
  opacity: 0.8;
  font-size: 12px;
}
#header {
  font-family: 'Libre Baskerville', serif;
  background: #111111;
  margin-bottom: 40px;
}
@media (min-width:992px) {
  #header {
    padding-top: 0;
    height: 105px;
  }
}
#header .container {
  position: relative;
  z-index: 999;
}
#header .menu-wrapper:after {
  content: '';
  display: block;
  clear: both;
}
@media (min-width:992px) {
  #header .menu-wrapper {
    padding-top: 0px;
    padding-bottom: 0px;
  }
}
#header .navbar {
  margin-bottom: 0;
}
.navbar-collapse {
  padding-top: 20px;
  background: #111;
}
@media (min-width: 768px) {
  .navbar-collapse {
    padding-top: 0;
    text-align: center;
    background-color: transparent;
  }
}
@media (min-width:992px) {
  .navbar-collapse {
    padding-top: 0;
  }
}
.navbar {
  padding-top: 0px;
  padding-bottom: 0px;
  font-family: 'Roboto', sans-serif;
}
@media (min-width:992px) {
  .navbar {
    padding-top: 0px;
    padding-bottom: 0;
  }
}
.navbar .nav {
  background: #111;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  opacity: 1;
  transform: translateX(0);
  -webkit-transform: translateX(0);
  -moz-transform: translateX(0);
}
@media (min-width: 768px) {
  .navbar .nav {
    background-color: transparent;
    display: block;
    text-align: center;
    padding-top: 0px;
    margin-left: -10px;
    margin-right: -10px;
  }
}
@media (min-width: 1400px) {
  .navbar .nav {
    margin-left: -15px;
    margin-right: -15px;
  }
}
.navbar li {
  position: relative;
  float: none;
}
@media (min-width: 768px) {
  .navbar li {
    float: left;
  }
}
.navbar li > a {
  white-space: nowrap;
  color: #ffffff;
  text-transform: uppercase;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  margin-right: 0;
  position: relative;
  font-weight: bold;
  font-size: 12px;
}
@media (min-width:992px) {
  .navbar li > a {
    letter-spacing: 4px;
    font-size: 10px;
    padding-left: 10px;
    padding-right: 10px;
    height: 104px;
    line-height: 104px;
    padding-top: 0;
    background: transparent;
    border-left: 1px solid #222222;
    border-right: 1px solid #222222;
    margin-right: -1px;
  }
}
@media (min-width:1200px) {
  .navbar li > a {
    padding-left: 24px;
    padding-right: 24px;
  }
}
.navbar li > a:hover,
.navbar li > a:focus,
.navbar li > a:active {
  background: #ffc905;
  color: #111111;
  text-decoration: none;
}
.navbar li a.activeMenu {
  background: #ffc905;
  color: #111111;
  text-decoration: none;
}
.navbar li > a:after {
  content: '';
  display: block;
  background: #111111;
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  opacity: 0;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  z-index: -1;
}
.navbar li > a:hover:after {
  width: 100%;
  opacity: 1;
}
.navbar li > ul {
  list-style: none;
  position: relative;
  width: 100%;
}
.navbar li > ul > li {
  width: 100%;
  padding: 0;
}
.navbar li > ul > li a {
  padding: 5px;
  padding-left: 8px;
  display: block;
  height: auto;
  padding: 8px;
  padding-top: 15px;
  padding-bottom: 15px;
  line-height: 1;
  background: #ffc905;
}
.navbar li > ul > li a:hover,
.navbar li > ul > li a:focus,
.navbar li > ul > li a:active {
  background: #eeb800 !important;
  color: #ffffff;
  text-decoration: none;
}
.navbar li > ul > li a:after {
  display: none;
}
@media (min-width: 768px) {
  .navbar li:hover > ul {
    visibility: visible;
    opacity: 1;
  }
  .navbar li > ul {
    position: absolute;
    top: 100%;
    left: 0;
    padding: 0;
    display: block;
    list-style: none;
    visibility: hidden;
    opacity: 0;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    z-index: 999999999;
  }
  .navbar li > ul > li {
    padding: 0;
  }
  .navbar li > ul > li a {
    display: block;
    padding: 10px;
    white-space: nowrap;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    color: #ffffff;
    background: #ffc905;
  }
  .navbar li > ul > li a:hover {
    background: #111111;
    text-decoration: none;
  }
}
.navbar-toggle {
  color: #ffffff;
  border-color: #ffffff;
}
.navbar-brand {
  display: block;
  height: auto;
  width: 140px;
  font-family: 'Libre Baskerville', serif;
  color: #fff;
  font-size: 24px;
  letter-spacing: -0.5px;
  word-spacing: -6px;
  line-height: 1.1;
  text-align: center;
  color: #ffffff;
  font-weight: normal;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.navbar-brand:hover,
.navbar-brand:active,
.navbar-brand:visited {
  color: #ffffff;
}
@media (min-width: 768px) {
  .navbar-brand {
    width: auto;
    float: none;
    display: inline-block;
  }
}
@media (min-width:992px) {
  .navbar-brand {
    padding-right: 0;
    font-size: 46px;
    padding-top: 22px;
  }
}
.navbar-brand img {
  max-width: 100%;
  max-height: 60px;
  opacity: 0.95;
}
/* ==========================================================
! 06. Footer
========================================================== */
#footer {
  color: #fff;
  background: #1b1919;
  text-align: center;
  margin-top: 40px;
  padding-bottom: 40px;
  font-family: 'Libre Baskerville', serif;
}
#footer a {
  color: #333;
}
#footer .widget {
  padding: 0;
  background-color: transparent;
}
#footer .widget ul {
  margin-top: 0;
}
#footer .widget_about p {
  font-size: 12px;
  line-height: 16px;
}
#footer-top {
  background: #ffc905;
  color: #333;
  padding: 30px;
  margin-bottom: 30px;
}
#footer-bottom {
  color: #fff;
}
#footer-bottom a {
  color: #ffc905;
  font-weight: bold;
}
.footer-bottom-text1 {
  font-size: 11px;
  text-transform: uppercase;
}
@media (min-width: 768px) {
  .footer-bottom-text1 {
    font-family: 'Roboto', sans-serif;
    letter-spacing: 2px;
    font-weight: bold;
    font-size: 13px;
    opacity: 1;
    margin-bottom: 10px;
  }
}
.footer-bottom-text1 a {
  color: #ffc905;
  text-decoration: underline;
}
.footer-bottom-text2 {
  opacity: 0.5;
  font-size: 12px;
  font-family: 'Roboto', sans-serif;
}
.secondary-footer {
  background: #111;
  padding-top: 15px;
  padding-bottom: 15px;
  margin-top: 20px;
}
.footer-logo {
  opacity: 0.7;
  max-width: 150px;
}
.footer-quote {
  font-size: 12px;
  font-weight: lighter;
  padding-top: 4px;
  line-height: 16px;
  margin-bottom: 8px;
  font-style: italic;
  font-family: 'Roboto', sans-serif;
  font-weight: bold;
}
@media (min-width:992px) {
  .footer-quote {
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 0;
  }
}
.footer-quote-author {
  font-size: 12px;
  letter-spacing: 1px;
}
.social-icons-footer {
  font-size: 24px;
  text-align: center;
  font-family: 'Roboto', sans-serif;
}
@media (min-width: 768px) {
  .social-icons-footer {
    display: block;
  }
}
.social-icons-footer a {
  color: #333!important;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  opacity: 1;
  display: inline-block;
  margin-right: 35px;
  font-family: 'Roboto', sans-serif !important;
}
.social-icons-footer a:hover {
  opacity: 0.7;
}
.social-footer {
  text-align: center;
  list-style: none;
  padding-top: 7px;
  padding-bottom: 5px;
  margin-top: 0px;
  padding-left: 35px;
  font-family: 'Roboto', sans-serif;
}
@media (min-width:992px) {
  .social-footer {
    display: block;
  }
}
.social-footer li {
  display: inline-block;
  margin-right: 20px;
}
.social-footer li a,
.social-footer li a.btn-default {
  display: block;
  text-align: center;
  width: 35px;
  height: 35px;
  padding-left: 5px;
  line-height: 35px;
  margin-right: 0;
  font-size: 13px;
  color: #333!important;
  background-color: transparent !important;
  border-radius: 0 !important;
  -moz-border-radius: 0 !important;
  -webkit-border-radius: 0 !important;
}
.social-footer li a:hover,
.social-footer li a.btn-default:hover {
  color: #ffc905;
}
.social-footer li a:after,
.social-footer li a.btn-default:after {
  display: none;
}
/* ==========================================================
! 07. Blog
========================================================== */
/*
* Posts
*/
.page-heading {
  background-color: #111111;
  padding: 20px;
  color: #ffffff;
  margin-bottom: 40px;
  border-radius: 10px;
  -moz-border-radius: 10px;
  -webkit-border-radius: 10px;
}
.page-heading .page-title {
  font-size: 18px;
  line-height: 1.2;
  margin-bottom: 5px;
  text-transform: none;
  color: #ffffff;
  position: relative;
  font-weight: bold;
}
.page-heading .page-title span {
  text-transform: uppercase;
  font-weight: bold;
  font-size: 20px;
}
.page-heading .taxonomy-description {
  font-style: italic;
  font-size: 14px;
}
.page-heading .taxonomy-description p {
  font-size: 14px;
}
.tabular-div {
  display: table;
  width: 100%;
}
.tabular-div .table-cell {
  display: table-cell;
}
.tabular-div .table-cell:middle {
  vertical-align: middle;
}
.page-content-fluid:after {
  content: '';
  display: block;
  clear: both;
}
.blog-item .primary-btn {
  font-size: 12px;
  padding: 12px 20px;
  font-weight: bold;
  color: #ffffff;
  letter-spacing: 2px;
}
.blog-item .primary-btn:before {
  background-color: #ffffff;
}
.blog-item .primary-btn:hover {
  color: #ffc905;
}
.blog-item .blog-content {
  background-color: #111111;
  padding: 35px 25px;
}
.blog-item .heading {
  font-weight: bold;
  color: #401510;
  margin-bottom: 10px;
}
.blog-item p {
  color: #ffffff;
  font-weight: normal;
  font-size: 13px;
}
.blog-item .blog-item-img {
  position: relative;
}
.blog-item .blog-item-img img {
  width: 100%;
}
.blog-item .blog-item-img:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  display: block;
  opacity: 0;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.blog-item .blog-item-img:after {
  content: "";
  background-image: url(../img/line-heart.png);
  width: 94px;
  height: 86px;
  display: block;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  opacity: 0;
}
.blog-item .blog-item-img:hover:before {
  opacity: 1;
}
.blog-item .blog-item-img:hover:after {
  opacity: 1;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.blog-item-img {
  display: block;
  width: 100%;
  height: 320px;
  background-image: url(../img/icon_blog.png);
  background-repeat: no-repeat;
  background-position: center center;
  background-color: #ddd;
}
.blog-item-img-cover {
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
}
.post-element {
  margin-bottom: 0;
  background-color: transparent;
}
.post-element-aside,
.post-element-link {
  border: 0px solid #ffc905;
  color: #ffffff;
}
.post-element-aside .post-content,
.post-element-link .post-content {
  background: #ffc905;
}
.post-element-aside p,
.post-element-link p {
  font-size: 18px;
  line-height: 1.4;
  margin-bottom: 10px;
  margin-top: 0;
}
.post-element-link {
  display: block;
  background-color: #111111;
  color: #ffffff;
  font-size: 14px;
  padding: 20px;
  padding-left: 40px;
  background-image: url('../img/ico-link-bg.png');
  background-position: -20px center;
  background-repeat: no-repeat;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.post-element-link:hover {
  text-decoration: none;
  padding-left: 60px;
}
.post-element-link p {
  font-size: 14px;
  margin-bottom: 0;
}
.post-link-title {
  font-size: 20px;
  text-transform: uppercase;
  font-weight: bold;
  color: #ffffff;
  margin-top: 0;
  margin-bottom: 5px;
}
.post-element-quote {
  background-image: url('../img/quote-bg1.png');
  background-position: -10px -10px;
  background-repeat: no-repeat;
  position: relative;
  padding-top: 30px;
  overflow: hidden;
  padding-bottom: 20px;
}
.post-element-quote:after {
  display: block;
  content: '';
  background-image: url('../img/quote-bg2.png');
  background-position: 10px 20px;
  background-repeat: no-repeat;
  width: 127px;
  height: 96px;
  position: absolute;
  right: 0;
  bottom: 0;
}
@media (min-width: 768px) {
  .post-element-quote {
    padding-left: 80px;
    padding-right: 80px;
  }
}
.post-element-quote p {
  font-size: 18px;
  font-style: italic;
  line-height: 1.5;
  margin-bottom: 5px;
}
.post-element-quote .quote-author {
  font-weight: bold;
  font-size: 12px;
}
.post-element-quote blockquote {
  padding-left: 0;
  border-left: 0;
}
.post-element-video iframe {
  width: 100% !important;
}
.gallery-item {
  margin: 0;
}
.sticky .posted-on {
  display: none;
}
.entry-footer {
  background: #eee;
  padding: 20px;
  margin-top: 30px;
  position: relative;
  top: 30px;
}
@media (min-width: 768px) {
  .entry-footer {
    margin-left: -30px;
    margin-right: -30px;
  }
}
.entry-footer .cat-links {
  display: inline-block;
  padding-right: 10px;
}
.entry-footer .cat-links a {
  display: inline-block;
  background: transparent;
  color: #111111;
  text-transform: uppercase;
  border: 1px dashed;
  border-color: #111111;
  font-size: 11px;
  font-family: 'Roboto', sans-serif;
  font-weight: bold;
  padding: 4px 12px;
  border-radius: 6px;
  -moz-border-radius: 6px;
  -webkit-border-radius: 6px;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  margin-bottom: 3px;
  font-style: italic;
}
.entry-footer .cat-links a:hover {
  background-color: #111111;
  color: #ffffff;
  text-decoration: none;
}
.entry-footer .tags-links {
  display: inline-block;
  padding-right: 8px;
}
.entry-footer .tags-links a {
  display: inline-block;
  background: transparent;
  border-left: 0px solid;
  border-color: #ccc;
  font-size: 11px;
  font-weight: lighter;
  font-family: 'Roboto', sans-serif;
  font-weight: bold;
  padding: 4px 4px;
  margin-right: 2px;
  border-radius: 0;
  -moz-border-radius: 0;
  -webkit-border-radius: 0;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  margin-bottom: 3px;
  font-style: italic;
}
.entry-footer .tags-links a:hover {
  text-decoration: none;
}
.entry-footer .comments-link {
  display: block;
  float: right;
  text-transform: uppercase;
}
.entry-footer .comments-link a {
  display: inline-block;
  color: #ffffff;
  font-weight: bold;
  padding: 4px 8px;
  font-size: 12px;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  background-color: #111111;
  border-radius: 6px;
  -moz-border-radius: 6px;
  -webkit-border-radius: 6px;
}
.entry-footer .comments-link a:hover {
  text-decoration: none;
  background-color: #111111;
}
.post-element {
  margin-bottom: 35px;
  background-color: #ffffff;
}
@media (min-width: 768px) {
  .post-element {
    margin-bottom: 55px;
  }
}
.post-element .post-featured-image {
  overflow: hidden;
  position: relative;
}
.post-element .post-featured-image img {
  width: 100%;
  -webkit-transition: all 0.35s ease-in-out;
  -moz-transition: all 0.35s ease-in-out;
  transition: all 0.35s ease-in-out;
}
.post-element .post-content {
  padding: 25px 15px;
}
@media (min-width: 768px) {
  .post-element .post-content {
    padding: 30px 30px;
  }
}
.post-element .entry-meta {
  font-size: 13px;
  line-height: 1.3;
  font-style: italic;
  margin-bottom: 15px;
  margin: 15px auto 15px;
  font-family: 'Libre Baskerville', serif;
}
.post-element .entry-meta a {
  color: #ffc905;
  font-weight: bold;
}
.post-element .entry-title {
  font-size: 22px;
  line-height: 35px;
  font-weight: 900;
  color: #111111;
  font-family: 'Libre Baskerville', serif;
  letter-spacing: -1px;
}
.post-element .entry-title a {
  color: #111111;
}
.post-element .entry-title a:hover {
  text-decoration: none;
}
@media (min-width: 768px) {
  .post-element .entry-title {
    font-size: 30px;
    line-height: 36px;
  }
}
.post-element .entry-content,
.post-element .entry-content p {
  font-size: 15px;
  line-height: 1.6;
}
.post-element .entry-btn-wrapper {
  margin-top: 40px;
}
.type-page .entry-title {
  padding-bottom: 10px;
  border-bottom: 1px solid #eee;
}
.post-block .post-block-col {
  padding: 0;
}
.post-block.post {
  margin-bottom: 35px;
}
@media (min-width:992px) {
  .post-block.post {
    margin-bottom: 0;
  }
}
.post-block .post-content {
  max-width: 640px;
  margin-right: auto;
  margin-left: auto;
  padding: 30px;
}
@media (min-width: 768px) {
  .post-block .post-content {
    padding: 60px 30px;
  }
}
@media (min-width:992px) {
  .post-block .post-content {
    padding: 100px 30px;
  }
}
@media (min-width: 1600px) {
  .post-block .post-featured-image,
  .post-block .post-featured-image > a,
  .post-block .post-featured-image img {
    height: 100%;
    display: block;
  }
}
.about-author {
  background-color: #252525;
  padding: 30px;
  color: #ffffff;
}
.about-author .author-image {
  margin-bottom: 20px;
}
@media (min-width: 768px) {
  .about-author .author-image {
    margin-bottom: 0;
  }
}
.about-author .author-title {
  font-weight: 300;
}
.about-author .author-title span {
  font-weight: normal;
}
/*
* BLog - Sidebar
*/
.widget {
  margin-bottom: 30px;
}
.widget.search_widget {
  margin-bottom: 20px;
}
.widget ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.widget ul li {
  padding-left: 0;
  margin-left: 0;
}
.widget ul li,
.widget ul a {
  font-size: 12px;
  color: #555555;
  font-weight: 300;
  position: relative;
  -webkit-transition: all 0.35s ease-in-out;
  -moz-transition: all 0.35s ease-in-out;
  transition: all 0.35s ease-in-out;
}
.widget ul a {
  display: inline-block;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.widget ul a:hover {
  color: #111111;
  border-color: #ffc905;
  padding-left: 6px;
}
.widget ul > li {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  padding: 17px 0 14px 20px;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.widget ul > li ul.children {
  margin-top: 5px;
  margin-bottom: 0px;
}
.widget ul > li ul.children li {
  padding-top: 5px;
  padding-bottom: 5px;
  border-bottom: 0px dotted #ccc;
  list-style-position: inside;
  padding-left: 0px;
  list-style-image: url('../framework/img/list-style-mini.png');
  font-size: 12px;
  margin-bottom: 0;
}
.widget ul > li ul.children li a {
  font-size: 12px;
}
.widget ul > li ul.children li:before {
  display: none;
}
.widget ul > li ul.children ul.children {
  margin-bottom: 0;
}
.widget ul > li ul.children ul.children li {
  padding-left: 16px;
  list-style-image: url('../framework/img/list-style-mini.png');
  font-style: italic;
  margin-bottom: 0;
}
.widget ul > li:before {
  content: "";
  width: 12px;
  height: 12px;
  background: url(../img/aside-arrow.png) no-repeat center center;
  left: 0;
  top: 20px;
  position: absolute;
}
.widget .widget-title {
  background-color: #111111;
  color: #ffffff;
  padding: 13px 18px;
  margin-bottom: 10px;
  text-transform: none;
  font-weight: bold;
  position: relative;
  font-size: 18px;
}
.widget .widget-title:after {
  content: "";
  width: 101px;
  height: 13px;
  display: inline-block;
  margin-left: 10px;
}
.widget .widget-title a {
  color: #ffffff;
}
.widget select {
  width: 100%;
  padding: 10px;
}
.widget .calendar_wrap {
  padding-left: 25px;
  padding-right: 25px;
}
.sidebar-area {
  margin-top: 40px;
}
@media (min-width:992px) {
  .sidebar-area {
    margin-top: 0;
  }
}
.sidebar-area .widget {
  background: #ebebeb;
  padding: 15px;
}
.sidebar-area .widget .widget-title {
  background: #ffc905;
  margin-left: -15px;
  margin-right: -15px;
  margin-top: -15px;
  color: #111;
  font-family: 'Libre Baskerville', serif;
  font-style: italic;
  font-size: 20px;
}
.widget_tag_cloud .tagcloud a {
  background-color: #111111;
  color: #ffffff;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  border-radius: 3px;
  display: inline-block;
  font-size: 12px;
  margin: 0 5px 5px 0;
  padding: 4px 8px;
  text-decoration: none;
}
.widget_tag_cloud .tagcloud a:hover {
  background-color: #000000;
  color: #ffffff;
}
.widget_rss .widget-title img {
  display: none;
}
.widget_rss li {
  margin-bottom: 0.625rem;
}
.widget_rss li a {
  display: block;
  font-weight: 900;
  font-size: 14px;
}
.widget_rss li .rss-date {
  display: inline-block;
  margin-right: 0.5rem;
  font-weight: bold;
}
.widget_rss li .rss-date,
.widget_rss li cite {
  color: #333;
  font-size: 12px;
  line-height: 1.1;
}
.widget_rss li .rssSummary {
  font-size: 12px;
  display: inline;
}
/*
* Blog - Calendar Widget
*/
#wp-calendar {
  width: 100%;
}
#wp-calendar caption {
  text-align: center;
  font-weight: bold;
  text-transform: uppercase;
  margin-top: 10px;
  margin-bottom: 15px;
}
#wp-calendar thead {
  font-size: 10px;
}
#wp-calendar thead th {
  padding-bottom: 10px;
  text-align: center;
}
#wp-calendar tbody {
  color: #333;
}
#wp-calendar tbody td {
  border: 1px solid #111;
  text-align: center;
  padding: 8px;
}
#wp-calendar tbody .pad {
  background: none;
}
#wp-calendar tfoot #next {
  font-size: 10px;
  text-transform: uppercase;
  text-align: right;
}
#wp-calendar tfoot #prev {
  font-size: 10px;
  text-transform: uppercase;
  padding-top: 10px;
}
.search-form {
  position: relative;
}
.search-form label {
  display: block;
  width: 100%;
  position: relative;
}
.search-form .search-submit {
  background: url(../img/lens.png) no-repeat center center transparent;
  border: 0;
  width: 19px;
  height: 19px;
  overflow: hidden;
  text-indent: -9999px;
  right: 20px;
  transform: translate(0, -50%);
  -webkit-transform: translate(0, -50%);
  -moz-transform: translate(0, -50%);
  -o-transform: translate(0, -50%);
  position: absolute;
  top: 50%;
}
.search-form .search-field {
  width: 100%!important;
  height: 45px;
  padding-left: 20px;
  font-size: 14px;
  background-color: #ffffff;
  border: none;
  color: #555555;
  font-weight: normal;
  font-family: 'Libre Baskerville', serif;
  font-style: italic;
}
.page-content .search-form .search-field {
  border: 1px solid #ccc;
}
.error-404 h1 {
  font-weight: bold;
  text-transform: none;
}
.tags a {
  background-color: #ffffff;
  display: inline-block;
  font-size: 14px;
  line-height: 17px;
  padding: 6px 20px;
  margin-right: 5px;
  margin-bottom: 5px;
  -webkit-transition: all 0.35s ease-in-out;
  -moz-transition: all 0.35s ease-in-out;
  transition: all 0.35s ease-in-out;
}
.tags a:hover {
  background-color: #111111;
  color: #ffffff;
}
/*
* Blog - Comments
*/
.comments-area {
  padding: 25px;
  background-color: #ffffff;
  display: block;
}
.comments-area .comment-form {
  display: block;
  padding-bottom: 0;
  margin-bottom: 20px;
  margin-top: 20px;
}
.comments-area .comments-title {
  margin-bottom: 30px;
  color: #111111;
  font-size: 22px;
  font-weight: 900;
  text-transform: uppercase;
}
.comments-area .comments-title:after {
  content: "";
  background-image: url(../img/maroon-leave-horizontal-big.png);
  width: 150px;
  height: 20px;
  display: inline-block;
  margin-left: 10px;
}
.comments-area .comment-reply-title {
  font-weight: bold;
  margin-top: 20px;
  font-size: 24px;
  font-family: 'Libre Baskerville', serif;
  font-style: italic;
}
.comments-area input[type=submit] {
  display: inline-block;
  border: 0;
  color: #111!important;
  background-color: #ffc905;
  font-size: 12px;
  line-height: 1;
  text-transform: uppercase;
  text-decoration: none;
  padding: 15px 35px;
  overflow: hidden;
  position: relative;
  z-index: 1;
  text-align: center;
  font-weight: bold;
  font-style: italic;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  border-radius: 30px;
  -moz-border-radius: 30px;
  -webkit-border-radius: 30px;
  font-family: 'Libre Baskerville', serif;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  margin-top: 15px;
  font-size: 14px;
  box-shadow: 0;
  -webkit-box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0);
  -moz-box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0);
  box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0);
}
.comments-area input[type=submit]:before {
  content: "";
  width: 100%;
  height: 100%;
  background-color: #111111;
  position: absolute;
  left: 0;
  top: 0;
  transform: translate(0, 100%);
  -webkit-transform: translate(0, 100%);
  -moz-transform: translate(0, 100%);
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  z-index: -1;
}
.comments-area input[type=submit]:hover {
  color: #fff!important;
  text-decoration: none;
}
.comments-area input[type=submit]:hover:before {
  transform: translate(0, 0);
  -webkit-transform: translate(0, 0);
  -moz-transform: translate(0, 0);
}
.comments-area input[type=submit] .btn-icon {
  margin-right: 15px;
  display: inline-block;
  margin-top: -14px;
}
@media (min-width: 1400px) {
  .comments-area input[type=submit] .btn-icon {
    margin-top: 0;
  }
}
.comments-area input[type=submit]:hover {
  color: #fff!important;
  background: #111111;
}
.comments-area .comment-form-author,
.comments-area .comment-form-email {
  width: 49%;
  display: inline-block;
  padding-right: 5px;
}
.comments-area input[type=text],
.comments-area input[type=email],
.comments-area input[type=url] {
  height: 40px;
  padding-top: 2px;
  padding-left: 10px;
  width: 100%;
  display: block;
  border: 1px solid;
  border-bottom: 2px solid;
  border-right: 2px solid;
  border-color: #ffc905;
  background: transparent;
  color: #111;
  font-style: italic;
  font-size: 12px;
  font-family: 'Libre Baskerville', serif;
}
.comments-area label {
  font-size: 16px;
  font-weight: bold;
  font-style: italic;
  opacity: 0.8;
  display: block;
}
.comments-area textarea {
  border: 1px solid;
  border-bottom: 2px solid;
  border-right: 2px solid;
  border-color: #ffc905;
  padding: 12px;
  width: 100% !important;
  color: #111;
  font-style: italic;
  font-size: 12px;
  font-family: 'Libre Baskerville', serif;
}
ol.comment-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
ol.comment-list > li {
  padding: 15px;
  margin-bottom: 15px;
  background: #fff;
}
@media (min-width: 768px) {
  ol.comment-list > li {
    padding: 30px;
  }
}
ol.comment-list ol.children {
  list-style: none;
  margin-left: 0;
  padding-top: 10px;
  padding-bottom: 10px;
}
ol.comment-list ol.children > li {
  background: #eee;
  padding-top: 10px;
  padding-bottom: 10px;
  padding-left: 20px;
  margin-bottom: 10px;
}
ol.comment-list ol.children > li > ol.children li {
  border-left: 2px solid #ddd;
  border-radius: 0;
  -moz-border-radius: 0;
  -webkit-border-radius: 0;
}
.comment-author {
  padding-top: 5px;
}
.comment-author .fn {
  font-size: 16px;
  text-transform: uppercase;
}
@media (min-width: 768px) {
  .comment-author .fn {
    font-size: 18px;
  }
}
.comment-author .fn a {
  color: #555555;
}
.comment-author .says {
  opacity: 0.8;
  font-size: 16px;
}
@media (min-width: 768px) {
  .comment-author .says {
    font-size: 18px;
  }
}
.comment-author img.avatar {
  border-radius: 50%;
  -moz-border-radius: 50%;
  -webkit-border-radius: 50%;
  float: left;
  margin-right: 20px;
  margin-top: -5px;
}
.comment-metadata {
  font-size: 12px;
  font-weight: 300;
}
.comment-metadata a {
  color: #555555;
}
.comment-meta {
  min-height: 64px;
  margin-bottom: 20px;
}
.comment-reply-link {
  display: inline-block;
  color: #111111;
  font-weight: bold;
  margin-bottom: 20px;
}
.comment-content {
  font-size: 14px;
  margin-bottom: 0px;
  padding-bottom: 0px;
}
.comment-content ul {
  padding: 0;
  list-style: inside;
}
.comment-body .reply a {
  font-weight: bold;
  font-size: 14px;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.pingback {
  font-weight: bold;
  font-size: 14px;
}
/*
* Blog - Pagination
*/
.navigation a {
  display: inline-block;
  padding: 10px;
  background: #111111;
  color: #ffffff;
  border-radius: 3px;
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
  font-size: 11px;
  padding-left: 14px;
  padding-right: 14px;
  font-weight: bold;
  text-decoration: none;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  text-transform: uppercase;
  font-style: italic;
  border-bottom: 2px solid #000000;
}
.navigation a:hover {
  background: #000000;
  color: #ffffff;
}
.navigation .nav-previous a:before {
  content: '« ';
}
.navigation .nav-next a:after {
  content: ' »';
}
/* ==========================================================
! 08. Module: Packery
========================================================== */
/*
* Packery - Mixins & Variables
*/
.blockz-element {
  width: 100%;
}
.blockz-element .blockz-element-wrapper {
  width: 100%;
}
@media (min-width: 768px) {
  .blockz-element.size-1 {
    width: 50%;
  }
}
@media (min-width:992px) {
  .blockz-element.size-1 {
    width: 25%;
  }
}
.blockz-element.size-1 .blockz-element-wrapper {
  min-height: 280px;
}
.blockz-element.size-1 .blockz-element-wrapper .blockz-element-content {
  min-height: 240px;
}
@media (min-width:992px) {
  .blockz-element.size-2 {
    width: 50%;
  }
}
.blockz-element.size-2 .blockz-element-wrapper {
  min-height: 280px;
}
.blockz-element.size-2 .blockz-element-wrapper .blockz-element-content {
  min-height: 240px;
}
@media (min-width:992px) {
  .blockz-element.size-3 {
    width: 75%;
  }
}
.blockz-element.size-3 .blockz-element-wrapper {
  min-height: 280px;
}
.blockz-element.size-3 .blockz-element-wrapper .blockz-element-content {
  min-height: 240px;
}
.blockz-element.size-4 {
  width: 100%;
}
.blockz-element.size-4 .blockz-element-wrapper {
  min-height: 280px;
}
.blockz-element.size-4 .blockz-element-wrapper .blockz-element-content {
  min-height: 240px;
}
.blockz-element.hsize-1 .blockz-element-wrapper {
  min-height: 280px;
}
.blockz-element.hsize-1 .blockz-element-wrapper .blockz-element-content {
  min-height: 240px;
}
.blockz-element.hsize-2 .blockz-element-wrapper {
  min-height: 570px;
}
.blockz-element.hsize-2 .blockz-element-wrapper .blockz-element-content {
  min-height: 530px;
}
.blockz-element.hsize-3 .blockz-element-wrapper {
  min-height: 860px;
}
.blockz-element.hsize-3 .blockz-element-wrapper .blockz-element-content {
  min-height: 820px;
}
/*
* Packery - Grid & Blocks
*/
.blockz-element {
  padding: 5px;
}
.blockz-element .blockz-element-wrapper {
  position: relative;
  -webkit-box-shadow: 0px 2px 6px 0px rgba(0, 0, 0, 0.3);
  -moz-box-shadow: 0px 2px 6px 0px rgba(0, 0, 0, 0.3);
  box-shadow: 0px 2px 6px 0px rgba(0, 0, 0, 0.3);
  background: #ffffff;
}
.blockz-element .blockz-element-wrapper.with-padding .blockz-element-content {
  padding: 20px;
  position: relative;
}
.blockz-element .blockz-element-wrapper.with-border {
  padding: 20px;
}
.blockz-element .blockz-element-wrapper.with-border .blockz-element-content {
  padding: 30px;
  position: relative;
}
.blockz-element .blockz-element-wrapper.with-border .blockz-element-content:before {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 1px solid #ffc905;
}
.blockz-element .blockz-element-wrapper.with-decoration .blockz-element-content {
  position: relative;
}
.blockz-element .blockz-element-wrapper.with-decoration .blockz-element-content:after {
  content: '';
  background: url(../img/info-hearts.png) no-repeat center center;
  width: 52px;
  height: 42px;
  display: block;
  position: absolute;
  right: 15px;
  top: 15px;
}
@media (min-width: 768px) {
  .blockz-element .blockz-element-wrapper.with-big-text .blockz-element-content {
    padding: 40px;
  }
}
.blockz-element .blockz-element-wrapper.with-big-text .blockz-block-title {
  font-size: 36px;
}
.blockz-element .blockz-element-wrapper.with-big-text p {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 20px;
}
/*
* Packery - General
*/
.blockz-title {
  color: #ffc905;
  margin-bottom: 15px;
  opacity: 1;
  z-index: 2;
  font-weight: normal;
  margin-top: 0;
  font-family: 'Libre Baskerville', serif;
}
.blockz-element h1,
.blockz-element h2,
.blockz-element h3,
.blockz-element h4 {
  color: #ffc905;
  margin-bottom: 15px;
  opacity: 1;
  z-index: 2;
  font-weight: normal;
  margin-top: 0;
  font-family: 'Libre Baskerville', serif;
}
@media (min-width:992px) {
  .blockz-element h1 {
    font-size: 42px;
  }
}
.blockz-element h4 {
  font-style: italic;
  font-size: 14px;
  margin-bottom: 5px;
}
.blockz-element p {
  font-weight: 200;
}
.blockz-block-title {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -1px;
  font-family: 'Libre Baskerville', serif;
  font-style: italic;
}
.blockz-block-title:after {
  content: '';
  display: block;
  width: 70%;
  height: 2px;
  background: #ffc905;
  margin-top: 6px;
  margin-bottom: 20px;
  border-radius: 2px;
  -moz-border-radius: 2px;
  -webkit-border-radius: 2px;
}
.blockz-map {
  padding-bottom: 0;
  margin-bottom: 20px;
}
@media (min-width: 768px) {
  .blockz-map {
    margin-bottom: 0;
  }
}
.blockz-map iframe {
  width: 100% !important;
  margin-bottom: -5px !important;
  pointer-events: none;
  border: 0 !important;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
/*
* Packery - Elements
*/
.blockz-intro {
  position: relative;
  width: 100%;
  height: 280px;
  background-position: center center;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
}
@media (min-width: 768px) {
  .blockz-intro {
    height: 570px;
  }
}
.blockz-intro-mask {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.35);
  text-align: center;
  color: #ffffff;
  opacity: 0;
  -webkit-transition: all 0.6s ease-in-out;
  -moz-transition: all 0.6s ease-in-out;
  transition: all 0.6s ease-in-out;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.5);
}
.blockz-intro-content {
  position: absolute;
  top: 50%;
  margin-top: -125px;
  width: 100%;
  text-align: center;
}
@media (min-width: 768px) {
  .blockz-intro-content {
    margin-top: -110px;
  }
}
.blockz-intro-title {
  font-size: 14px;
  font-family: 'Libre Baskerville', serif;
  -webkit-transition: all 0.6s ease-in-out;
  -moz-transition: all 0.6s ease-in-out;
  transition: all 0.6s ease-in-out;
  transform: translateY(30px);
  -webkit-transform: translateY(30px);
  -moz-transform: translateY(30px);
  font-weight: 700;
  opacity: 0;
  -webkit-transition-delay: 0.6s;
  transition-delay: 0.6s;
  color: #fff!important;
}
@media (min-width: 768px) {
  .blockz-intro-title {
    font-size: 72px;
    letter-spacing: -3px;
    margin-bottom: 20px;
  }
}
.blockz-intro-bar {
  display: block;
  width: 100%;
  margin-bottom: 5px;
  opacity: 0;
  -webkit-transition: all 0.6s ease-in-out;
  -moz-transition: all 0.6s ease-in-out;
  transition: all 0.6s ease-in-out;
  -webkit-transition-delay: 1.2s;
  transition-delay: 1.2s;
  margin-top: 40px;
}
@media (min-width: 768px) {
  .blockz-intro-bar {
    margin-top: 0;
  }
}
.blockz-intro-bar img {
  max-width: 36px;
}
@media (min-width: 768px) {
  .blockz-intro-bar img {
    max-width: inherit;
  }
}
.blockz-intro-title2 {
  font-family: 'Libre Baskerville', serif;
  font-size: 14px;
  margin-top: 10px;
  font-weight: 200;
  -webkit-transition: all 0.6s ease-in-out;
  -moz-transition: all 0.6s ease-in-out;
  transition: all 0.6s ease-in-out;
  transform: translateY(30px);
  -webkit-transform: translateY(30px);
  -moz-transform: translateY(30px);
  opacity: 0;
  -webkit-transition-delay: 1.4s;
  transition-delay: 1.4s;
}
@media (min-width:992px) {
  .blockz-intro-title2 {
    font-size: 18px;
  }
  .blockz-intro-title2:before,
  .blockz-intro-title2:after {
    content: '';
    display: inline-block;
    vertical-align: middle;
    height: 1px;
    background: #fff;
    width: 40px;
    margin-left: 6px;
    margin-right: 6px;
  }
}
.blockz-intro-btn-left {
  opacity: 0;
  transform: translateX(-60px);
  -webkit-transform: translateX(-60px);
  -moz-transform: translateX(-60px);
  -webkit-transition: all 0.6s ease-in-out;
  -moz-transition: all 0.6s ease-in-out;
  transition: all 0.6s ease-in-out;
  -webkit-transition-delay: 2s;
  transition-delay: 2s;
}
.blockz-intro-btn-right {
  opacity: 0;
  transform: translateX(60px);
  -webkit-transform: translateX(60px);
  -moz-transform: translateX(60px);
  -webkit-transition: all 0.6s ease-in-out;
  -moz-transition: all 0.6s ease-in-out;
  transition: all 0.6s ease-in-out;
  -webkit-transition-delay: 2s;
  transition-delay: 2s;
}
.blockz-intro-buttons {
  margin-top: 20px;
}
.blockz-intro-buttons .btn-default {
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.7);
  border-radius: 0;
  -moz-border-radius: 0;
  -webkit-border-radius: 0;
  font-size: 10px!important;
}
.blockz-intro-buttons .btn-default span {
  padding-top: 15px;
  padding-bottom: 15px;
}
.blockz-intro-buttons .btn-default:before {
  background: #dda700 !important;
  padding-top: 15px;
  padding-bottom: 15px;
}
.blockz-intro.active .blockz-intro-mask {
  opacity: 1!important;
}
.blockz-intro.active .blockz-intro-title {
  transform: translateY(0);
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  opacity: 1;
}
.blockz-intro.active .blockz-intro-title2 {
  transform: translateY(0);
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  opacity: 0.8;
}
.blockz-intro.active .blockz-intro-bar {
  opacity: 1;
}
.blockz-intro.active .blockz-intro-btn-left,
.blockz-intro.active .blockz-intro-btn-right {
  opacity: 1;
  transform: translateX(0);
  -webkit-transform: translateX(0);
  -moz-transform: translateX(0);
}
.blockz-picture {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  background-position: center center;
}
.blockz-picture-mask {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  color: #eee!important;
  font-size: 42px;
  text-align: center;
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.blockz-picture-mask .blockz-picture-content {
  position: absolute;
  width: 100%;
  top: 50%;
  left: 0;
  text-align: center;
  margin-top: -20px;
}
.blockz-picture-mask:hover {
  opacity: 1;
}
.blockz-overlayz {
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  background-position: center center;
  overflow: hidden;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.blockz-overlayz:hover .blockz-overlayz-mask {
  transform: translateX(-100%);
  -webkit-transform: translateX(-100%);
  -moz-transform: translateX(-100%);
}
.blockz-overlayz .blockz-overlayz-mask {
  position: absolute;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.7);
  color: #ffffff;
  text-align: left;
  width: 100%;
  height: 100%;
  -webkit-transition: all 0.6s ease-in-out;
  -moz-transition: all 0.6s ease-in-out;
  transition: all 0.6s ease-in-out;
  transform: translateX(0);
  -webkit-transform: translateX(0);
  -moz-transform: translateX(0);
}
.blockz-overlayz .blockz-overlayz-mask p {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  opacity: 0.95;
  font-size: 18px;
  font-weight: bold;
  padding-left: 20px;
  padding-right: 20px;
}
.blockz-overlayz .blockz-overlayz-mask p small {
  font-weight: lighter;
  font-size: 12px;
}
.blockz-overlayz .blockz-overlayz-content {
  padding: 25px;
  -webkit-transition: all 0.6s ease-in-out;
  -moz-transition: all 0.6s ease-in-out;
  transition: all 0.6s ease-in-out;
}
.blockz-overlayz .blockz-overlayz-title {
  font-size: 18px;
  line-height: 1.3;
  color: #fff;
  margin-bottom: 6px;
}
.blockz-overlayz .blockz-overlayz-text {
  font-size: 12px;
  font-family: 'Libre Baskerville', serif;
  font-style: italic;
}
.blockz-overlayz .blockz-overlayz-text p {
  font-size: 12px;
}
.blockz-overlayz-style1:hover .blockz-overlayz-mask {
  opacity: 0;
  transform: translateX(0px);
  -webkit-transform: translateX(0px);
  -moz-transform: translateX(0px);
}
.blockz-overlayz-style1:hover .blockz-overlayz-content {
  transform: translateX(-60px);
  -webkit-transform: translateX(-60px);
  -moz-transform: translateX(-60px);
  opacity: 0;
}
.blockz-overlayz-style1 .blockz-overlayz-mask {
  opacity: 1;
}
.blockz-overlayz-style1 .blockz-overlayz-content {
  position: absolute;
  bottom: 0;
  left: 0;
}
.blockz-overlayz-style2:hover .blockz-overlayz-mask {
  opacity: 0;
  transform: translateX(0px);
  -webkit-transform: translateX(0px);
  -moz-transform: translateX(0px);
}
.blockz-overlayz-style2:hover .blockz-overlayz-content {
  transform: translateX(-60px);
  -webkit-transform: translateX(-60px);
  -moz-transform: translateX(-60px);
  opacity: 0;
}
.blockz-overlayz-style2 .blockz-overlayz-mask {
  opacity: 1;
}
.blockz-overlayz-style2 .blockz-overlayz-content {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  margin-top: -100px;
  text-align: center;
}
.blockz-overlayz-style2 .blockz-overlayz-title {
  font-size: 60px;
  font-weight: bold;
  font-style: normal;
}
@media (min-width:992px) {
  .blockz-overlayz-style2 .blockz-overlayz-title {
    font-size: 90px;
  }
}
.blockz-overlayz-style2 .blockz-overlayz-text {
  font-size: 24px;
  font-weight: 200;
  letter-spacing: 2px;
  text-transform: uppercase;
  opacity: 0.7;
}
.blockz-overlayz-style2 .blockz-overlayz-text p {
  font-size: 24px;
}
.blockz-overlayz-big .blockz-overlayz-title {
  font-size: 28px;
  letter-spacing: -0.5px;
  line-height: 1.3;
  color: #fff;
  margin-bottom: 6px;
}
.blockz-overlayz-big .blockz-overlayz-text {
  font-size: 13px;
  font-family: 'Libre Baskerville', serif;
  font-weight: 200;
  font-style: italic;
}
.blockz-overlayz-big .blockz-overlayz-text p {
  font-size: 12px;
}
.blockz-overlayz-style3:hover .blockz-overlayz-mask {
  opacity: 0;
  transform: translateX(-60px);
  -webkit-transform: translateX(-60px);
  -moz-transform: translateX(-60px);
}
.blockz-overlayz-style3 .blockz-overlayz-mask {
  opacity: 1;
  background: -moz-linear-gradient(top, rgba(0, 0, 0, 0) 0, rgba(0, 0, 0, 0.7) 100%);
  background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0) 0, rgba(0, 0, 0, 0.7) 100%);
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0, rgba(0, 0, 0, 0.7) 100%);
}
.blockz-overlayz-style3 .blockz-overlayz-content {
  position: absolute;
  bottom: 15px;
  left: 15px;
  width: 100%;
  border-left: 0px solid #fff;
  text-align: left;
  padding-top: 0;
  padding-bottom: 0;
  padding-left: 0px;
}
.blockz-overlayz-style3 .blockz-overlayz-title {
  font-weight: bold;
  font-style: italic;
  font-size: 20px;
}
.blockz-overlayz-style3 .blockz-overlayz-text {
  font-size: 12px;
  font-weight: 200;
  font-style: italic;
}
.blockz-service {
  padding-top: 20px;
}
.blockz-service .blockz-service-title {
  margin-bottom: 5px;
  font-weight: bold;
  font-size: 22px;
  letter-spacing: -0.5px;
}
.blockz-service .blockz-service-ico {
  margin-bottom: 20px;
}
.blockz-service p {
  font-size: 12px;
  font-style: italic;
}
.blockz-price-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.blockz-price-name {
  display: table-cell;
  width: 1%;
  white-space: nowrap;
  padding-right: 4px;
  font-size: 16px;
  line-height: 22px;
  font-weight: bold;
  font-family: 'Libre Baskerville', serif;
}
.blockz-price-dots {
  height: 2px;
  background: radial-gradient(circle closest-side, #b3b3b3 99%, transparent 100%);
  background-position: 50% 77%;
  background-size: 4px 2px;
  background-repeat: repeat-x;
  display: table-cell;
  width: 98%;
  z-index: 1;
  position: relative;
}
.blockz-price-price {
  display: table-cell;
  width: 1%;
  padding-left: 4px;
  white-space: nowrap;
  font-size: 18px;
  line-height: 22px;
  font-weight: bold;
  font-family: 'Libre Baskerville', serif;
  color: #111111;
}
.blockz-price-description {
  margin-top: 4px;
  font-size: 12px!important;
}
.blockz-price-description p {
  margin-bottom: 10px;
  font-size: 14px!important;
  font-style: italic;
}
.blockz-contact-form .form-group {
  position: relative;
}
.blockz-contact-form .form-control {
  width: 100%!important;
  border-radius: 0px;
  -moz-border-radius: 0px;
  -webkit-border-radius: 0px;
  height: 50px;
  font-size: 14px;
  color: #111;
  margin-bottom: 5px;
  font-family: 'Roboto', sans-serif;
  background-color: transparent;
  border: 2px solid transparent;
  border-bottom: 1px solid #111111;
  -webkit-box-shadow: 0 0 0 0 rgba(50, 50, 50, 0.3);
  -moz-box-shadow: 0 0 0 0 rgba(50, 50, 50, 0.3);
  box-shadow: 0 0 0 0 rgba(50, 50, 50, 0.3);
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  position: relative;
  padding-left: 20px;
}
.blockz-contact-form .form-control:focus {
  border-left: 2px solid #ffc905;
}
.blockz-contact-form .form-control .placeholder-style {
  text-transform: uppercase;
  letter-spacing: 4px;
  font-size: 11px;
  font-weight: normal;
}
.blockz-contact-form .form-control::-webkit-input-placeholder {
  text-transform: uppercase;
  letter-spacing: 4px;
  font-size: 11px;
  font-weight: normal;
}
.blockz-contact-form .form-control:-moz-placeholder {
  text-transform: uppercase;
  letter-spacing: 4px;
  font-size: 11px;
  font-weight: normal;
}
.blockz-contact-form .form-control::-moz-placeholder {
  text-transform: uppercase;
  letter-spacing: 4px;
  font-size: 11px;
  font-weight: normal;
}
.blockz-contact-form .form-control:-ms-input-placeholder {
  text-transform: uppercase;
  letter-spacing: 4px;
  font-size: 11px;
  font-weight: normal;
}
.blockz-contact-form .form-send {
  margin-bottom: 0;
}
.blockz-contact-form .form-send button {
  width: 100%!important;
  height: 60px;
  margin-bottom: 0;
  margin-top: 0px!important;
}
.blockz-contact-form .form-send button:before {
  padding-top: 20px;
}
/* ==========================================================
! 09. Modals
========================================================== */
.modal-wrap {
  display: none;
}
.modal-bg {
  background: #333;
  opacity: 0.9;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
}
.modal-content {
  background: #111111;
  font-size: 18px;
  position: fixed;
  top: 40%;
  left: 50%;
  margin-left: -125px;
  width: 250px;
  z-index: 9999;
  padding: 10px 20px;
  color: #ffffff !important;
}
.modal-content .modal-title {
  color: #ffc905;
  font-size: 22px;
  border-bottom: 1px solid #ccc;
  margin-bottom: 5px;
  font-weight: bold;
}
.modal-content p {
  font-size: 14px;
  margin-bottom: 0;
  color: #ffffff !important;
}
#contactError .modal-title {
  color: #fff;
}
/* ==========================================================
! 10. Cross Browser Solutions
========================================================== */
.ie9 #page-loader {
  display: none;
}
a:active,
a:focus {
  outline: none!important;
}
