@charset "UTF-8";
/*
       _ _                     _   _
 _ __ / / | ___ _ __ ___  __ _| |_(_)_   _____
| '_ \| | |/ __| '__/ _ \/ _` | __| \ \ / / _ \
| |_) | | | (__| | |  __/ (_| | |_| |\ V /  __/
| .__/|_|_|\___|_|  \___|\__,_|\__|_| \_/ \___|
|_|

/*
|--------------------------------------------------------------------------
| Variables
| Author: P11 Interactive Team
| Visit us: @ p11.com
|--------------------------------------------------------------------------
|
| This file holds all of the variables for the site.
| 1. Fonts
| 2. Colors
| 3. Color Variations
| 4. Transparent Colors
| 5. Color List
| 6. Screen Sizes / Breakpoints
|
*/
/*
| 1. Fonts
| --------------------------------------------------
| These font variables are used to hold the values for
| the sitewide fonts used on the project.
|
*/
/*
| 2. Colors
| --------------------------------------------------
| The variables are used to store the color theme for
| the site.
|
*/
/*
| 3. Color Variations
| --------------------------------------------------
| These color variations are auto generated by the
| following functions below.
*/
/*
| 4. Transparent Colors
| --------------------------------------------------
| These transparent colors are auto generated by the
| following functions below.
*/
/*
| 5. Colors List
| --------------------------------------------------
| This list is used for building out the various
| classes for using colors accross the site, classes
| for type, background colors, etc.
*/
/*
| 6. Screen Sizes / Breakpoints
| --------------------------------------------------
| Breakpoint variables in pixel widths for media queries.
|
*/
/*
| Extra small mobile
*/
/*
| Mobile
*/
/*
| Tablet
*/
/*
| Middle Sized Devices
*/
/*
| Small Laptop
*/
/*
| Large Laptop / Desktop
*/
/*
| Large Desktop
*/
/*
       _ _                     _   _
 _ __ / / | ___ _ __ ___  __ _| |_(_)_   _____
| '_ \| | |/ __| '__/ _ \/ _` | __| \ \ / / _ \
| |_) | | | (__| | |  __/ (_| | |_| |\ V /  __/
| .__/|_|_|\___|_|  \___|\__,_|\__|_| \_/ \___|
|_|

/*
|--------------------------------------------------------------------------
| Mixins
| Author: P11 Interactive Team
| Visit us: @ p11.com
|--------------------------------------------------------------------------
| 1. Resets
| 2. Positioning
|
| Notes: Define patterns of property value pairs, which can then be reused in other rule sets
|
*/
/*
| Font Smoothing
| --------------------------------------------------
|
| Aligns most of the browsers with the same font antialiasing.
|
*/
/*
| Strict Button Style
| --------------------------------------------------
|
| Sets the button style appearance to none for various
| mobile browsers and OS's that will auto change the styling
|
*/
/*
| Positioning
| --------------------------------------------------
|
| The following mixins are used for positioning elements
| via the absolute rule
|
*/
/*
| Transition
| --------------------------------------------------
|
| Used to apply all browser prefixes for the css3
| transition property
|
*/
/*
| Box Shadow
| --------------------------------------------------
|
| Used to apply all browser prefixes for the css3
| box-shadow property
|
*/
/*
| Text Shadow
| --------------------------------------------------
|
| Used to apply all browser prefixes for the css3
| text-shadow property
|
*/
/*
| SVG Shadow
| --------------------------------------------------
|
| Used to apply all browser prefixes for the css3
| filter property
|
*/
/*
| Responsive Media Query Mixins
| --------------------------------------------------
|
| The following mixins are used for applying various
| media queries and specified breakpoints
|
*/
/*
| Transparent Colors
| --------------------------------------------------
|
| Function for creating transparent colors.
|
*/
/*
| Tint Colors
| --------------------------------------------------
|
| Function for creating Tinted colors.
|
*/
/*
| Gradient Backgrounds
| --------------------------------------------------
|
| Mixin for creating gradient backgrounds
| @include bg-gradient(fn-transparent-color($color-black, 1), fn-transparent-color($color-black, 0), top, bottom, 0%, 100%);
|
*/
/*
| Rotation
| --------------------------------------------------
|
| Mixin for applying the correct browser prefixes for the
| transform: rotate property
|
*/
/*
| Keyframe animations
| --------------------------------------------------
| Mixin for applying animations to elements
|
*/
@import url("https://fonts.googleapis.com/css2?family=Varela+Round&display=swap");
html, body {
  margin: 0;
  padding: 0;
  font-family: "Lato", sans-serif;
}

h1, h2, h3, h4, h5, h6, p, blockquote, address, big, cite, code, em, font, img, small, strike, sub, sup, li, ol, ul, fieldset, form, label, legend, button, table, caption, tr, th, td {
  margin: 0;
  padding: 0;
  border: 0;
  font-weight: normal;
  font-style: normal;
  font-size: 100%;
  line-height: 1.25em;
  font-family: inherit;
  text-align: left;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

ol, ul {
  list-style: none;
}

blockquote:before, blockquote:after {
  content: "";
}

a {
  outline: none;
}

input[type=search],
input[type=text],
input[type=email],
input[type=url],
input[type=button],
input[type=tel],
input[type=submit],
textarea {
  -moz-appearance: none;
  -webkit-appearance: none;
}

input[type=search]::-webkit-search-decoration,
input[type=search]::-webkit-search-cancel-button,
input[type=search]::-webkit-search-results-button,
input[type=search]::-webkit-search-results-decoration {
  display: none;
}

.script {
  font-family: "Rock Salt", sans-serif !important;
}

/* -------------------------------------------------------------------------------- */
/*	1. Document setup
/* -------------------------------------------------------------------------------- */
body {
  margin: 0;
  padding: 0;
  border: none;
  background: #f1f1f1;
  color: #777;
  font-size: 18px;
  -webkit-font-smoothing: antialiased;
}

body a {
  color: #444;
  text-decoration: none;
}

body a:hover {
  color: #666;
  text-decoration: none;
}

* {
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
}

img {
  max-width: 100%;
  height: auto;
}

.hidden {
  display: none;
}

.clear {
  clear: both;
}

.fleft {
  float: left;
}

.fright {
  float: right;
}

::selection {
  background: #777;
  color: #FFF;
}

::-webkit-input-placeholder {
  color: #999;
}

:-ms-input-placeholder {
  color: #999;
}

.linelink {
  text-decoration: underline !important;
}

/* Transitions --------------------------------------- */
body a {
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.blog-title a,
.post-title a,
.post-overlay,
.post-likes,
.post-meta a,
.pagination,
.main-menu a,
.main-menu > .has-children > a::after,
.main-menu > .page_item_has_children > a::after,
.searchbutton,
.search-toggle,
.comment-form input[type=text],
.comment-form input[type=email],
.comment-form textarea,
.form-submit #submit,
.widget_search .searchsubmit,
.widget_search .s,
.format-gallery .flex-direction-nav a,
.nav-toggle .bar,
.dribbble-shot,
.flickr_badge_image a,
.post-content input[type=submit],
.post-content input[type=reset],
.post-content input[type=button] {
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

.tothetop,
.header,
.portfolio-item a .portfolio-header-container,
.featured-media a img {
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

#infscr-loading {
  position: fixed;
  bottom: 100px;
  left: 50%;
  margin-left: -22.5px;
  z-index: 999;
}

#infscr-loading img {
  text-align: right;
  margin: 0 auto;
  padding-bottom: 20px;
}

/* -------------------------------------------------------------------------------- */
/*	2.	Structure
/* -------------------------------------------------------------------------------- */
.section {
  position: relative;
  padding: 80px 0;
}

.no-padding {
  padding: 0;
}

.small-padding {
  padding: 40px 0;
}

.medium-padding {
  padding: 60px 0;
}

.big-padding {
  padding: 100px 0;
}

.section-inner {
  max-width: 90%;
  width: 1400px;
  margin: 0 auto;
}

.section-inner.content {
  width: 1440px;
  max-width: 92.6%;
}

/*.content .post .post-header { background: url(images/bg-grunge1.jpg) right -130px no-repeat; }*/
.section-inner.wide {
  width: 1240px;
}

.section-inner.thin {
  width: 700px;
}

.bg-dark {
  background-color: #1d1d1d;
}

.bg-graphite {
  background-color: #262626;
}

.bg-grey {
  background-color: #f1f1f1;
}

.bg-yellow {
  background-color: #ffbb20;
}

.bg-image {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.cover {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.cover.shade-light {
  background: rgba(0, 0, 0, 0.25);
}

.cover.shade-medium {
  background: rgba(0, 0, 0, 0.5);
}

.cover.shade-dark {
  background: rgba(0, 0, 0, 0.75);
}

/* columns */
.row .one-fourth {
  width: 21.5%;
  margin-left: 5%;
  float: left;
}

.row .one-third {
  width: 30%;
  margin-left: 5%;
  float: left;
}

.row .one-half {
  width: 47.5%;
  margin-left: 5%;
  float: left;
}

.row .two-thirds {
  width: 65%;
  margin-left: 5%;
  float: left;
}

.row .one-fourth:first-child,
.row .one-third:first-child,
.row .one-half:first-child,
.row .two-thirds:first-child {
  margin-left: 0;
}

/*
       _ _                     _   _
 _ __ / / | ___ _ __ ___  __ _| |_(_)_   _____
| '_ \| | |/ __| '__/ _ \/ _` | __| \ \ / / _ \
| |_) | | | (__| | |  __/ (_| | |_| |\ V /  __/
| .__/|_|_|\___|_|  \___|\__,_|\__|_| \_/ \___|
|_|

Site design by p11|creative
Visit us @ p11.com

/*
|--------------------------------------------------------------------------
| Grid
|--------------------------------------------------------------------------
|
| This file holds all of the grid / structure related styles for the site.
|
*/
.full {
  width: 100%;
}

.half {
  width: 50%;
}
@media (max-width: 768px) {
  .half {
    width: 100%;
  }
  .half.md-half {
    width: 50%;
  }
}
@media (max-width: 640px) {
  .half {
    width: 100%;
  }
  .half.md-half {
    width: 100%;
  }
  .half.sm-half {
    width: 50%;
  }
}

.third {
  width: 33.33333333%; /* IE Fallback */
  width: 33.3333333333%;
}
@media (max-width: 768px) {
  .third {
    width: 100%;
  }
  .third.md-third {
    width: 33.3333333333%;
  }
}
@media (max-width: 640px) {
  .third {
    width: 100%;
  }
  .third.md-third {
    width: 100%;
  }
  .third.sm-third {
    width: 33.3333333333%;
  }
}

.twothird,
.two-third {
  width: 66.66%; /* IE Fallback */
  width: 66.6666666667%;
}
@media (max-width: 768px) {
  .twothird,
  .two-third {
    width: 100%;
  }
  .twothird.md-twothird, .twothird.md-two-third,
  .two-third.md-twothird,
  .two-third.md-two-third {
    width: 66.6666666667%;
  }
}
@media (max-width: 640px) {
  .twothird,
  .two-third {
    width: 100%;
  }
  .twothird.md-twothird, .twothird.md-two-third,
  .two-third.md-twothird,
  .two-third.md-two-third {
    width: 100%;
  }
  .twothird.sm-twothird, .twothird.sm-two-third,
  .two-third.sm-twothird,
  .two-third.sm-two-third {
    width: 66.6666666667%;
  }
}

.fourth {
  width: 25%;
}
@media (max-width: 768px) {
  .fourth {
    width: 100%;
  }
  .fourth.md-fourth, .fourth.md-fourth {
    width: 25%;
  }
}
@media (max-width: 640px) {
  .fourth {
    width: 100%;
  }
  .fourth.md-fourth, .fourth.md-fourth {
    width: 100%;
  }
  .fourth.sm-fourth, .fourth.sm-fourth {
    width: 25%;
  }
}

.twofourth,
.two-fourth {
  width: 50%;
}
@media (max-width: 768px) {
  .twofourth,
  .two-fourth {
    width: 100%;
  }
  .twofourth.md-fourth, .twofourth.md-fourth,
  .two-fourth.md-fourth,
  .two-fourth.md-fourth {
    width: 50%;
  }
}
@media (max-width: 640px) {
  .twofourth,
  .two-fourth {
    width: 100%;
  }
  .twofourth.md-fourth, .twofourth.md-fourth,
  .two-fourth.md-fourth,
  .two-fourth.md-fourth {
    width: 100%;
  }
  .twofourth.sm-fourth, .twofourth.sm-fourth,
  .two-fourth.sm-fourth,
  .two-fourth.sm-fourth {
    width: 50%;
  }
}

.threefourth,
.three-fourth {
  width: 75%;
}
@media (max-width: 768px) {
  .threefourth,
  .three-fourth {
    width: 100%;
  }
  .threefourth.md-threefourth, .threefourth.md-three-fourth,
  .three-fourth.md-threefourth,
  .three-fourth.md-three-fourth {
    width: 75%;
  }
}
@media (max-width: 640px) {
  .threefourth,
  .three-fourth {
    width: 100%;
  }
  .threefourth.md-threefourth, .threefourth.md-three-fourth,
  .three-fourth.md-threefourth,
  .three-fourth.md-three-fourth {
    width: 100%;
  }
  .threefourth.sm-threefourth, .threefourth.sm-threefourth,
  .three-fourth.sm-threefourth,
  .three-fourth.sm-threefourth {
    width: 25%;
  }
}

.fifth {
  width: 20%;
}
@media (max-width: 768px) {
  .fifth {
    width: 100%;
  }
  .fifth.md-fifth, .fifth.md-fifth {
    width: 20%;
  }
}
@media (max-width: 640px) {
  .fifth {
    width: 100%;
  }
  .fifth.md-fifth, .fifth.md-fifth {
    width: 100%;
  }
  .fifth.sm-fifth, .fifth.sm-fifth {
    width: 20%;
  }
}

.twofifth,
.two-fifth {
  width: 40%;
}
@media (max-width: 768px) {
  .twofifth,
  .two-fifth {
    width: 100%;
  }
  .twofifth.md-twofifth, .twofifth.md-two-fifth,
  .two-fifth.md-twofifth,
  .two-fifth.md-two-fifth {
    width: 40%;
  }
}
@media (max-width: 640px) {
  .twofifth,
  .two-fifth {
    width: 100%;
  }
  .twofifth.md-twofifth, .twofifth.md-two-fifth,
  .two-fifth.md-twofifth,
  .two-fifth.md-two-fifth {
    width: 100%;
  }
  .twofifth.sm-twofifth, .twofifth.sm-two-fifth,
  .two-fifth.sm-twofifth,
  .two-fifth.sm-two-fifth {
    width: 40%;
  }
}

.threefifth,
.three-fifth {
  width: 60%;
}
@media (max-width: 768px) {
  .threefifth,
  .three-fifth {
    width: 100%;
  }
  .threefifth.md-threefifth, .threefifth.md-three-fifth,
  .three-fifth.md-threefifth,
  .three-fifth.md-three-fifth {
    width: 60%;
  }
}
@media (max-width: 640px) {
  .threefifth,
  .three-fifth {
    width: 100%;
  }
  .threefifth.md-threefifth, .threefifth.md-three-fifth,
  .three-fifth.md-threefifth,
  .three-fifth.md-three-fifth {
    width: 100%;
  }
  .threefifth.sm-threefifth, .threefifth.sm-three-fifth,
  .three-fifth.sm-threefifth,
  .three-fifth.sm-three-fifth {
    width: 60%;
  }
}

.fourfifth,
.four-fifth {
  width: 80%;
}
@media (max-width: 768px) {
  .fourfifth,
  .four-fifth {
    width: 100%;
  }
  .fourfifth.md-fourfifth, .fourfifth.md-four-fifth,
  .four-fifth.md-fourfifth,
  .four-fifth.md-four-fifth {
    width: 80%;
  }
}
@media (max-width: 640px) {
  .fourfifth,
  .four-fifth {
    width: 100%;
  }
  .fourfifth.md-fourfifth, .fourfifth.md-four-fifth,
  .four-fifth.md-fourfifth,
  .four-fifth.md-four-fifth {
    width: 100%;
  }
  .fourfifth.sm-fourfifth, .fourfifth.sm-four-fifth,
  .four-fifth.sm-fourfifth,
  .four-fifth.sm-four-fifth {
    width: 80%;
  }
}

.sixth {
  width: 16.66666666; /* IE Fallback */
  width: 16.6666666667%;
}
@media (max-width: 768px) {
  .sixth {
    width: 100%;
  }
  .sixth.md-sixth, .sixth.md-sixth {
    width: 16%;
    width: 16.6666666667%;
  }
}
@media (max-width: 640px) {
  .sixth {
    width: 100%;
  }
  .sixth.md-sixth, .sixth.md-sixth {
    width: 100%;
  }
  .sixth.sm-sixth, .sixth.sm-sixth {
    width: 16%;
    width: 16.6666666667%;
  }
}

.twosixth,
.two-sixth {
  width: 33.33333333; /* IE Fallback */
  width: 33.3333333333%;
}
@media (max-width: 768px) {
  .twosixth,
  .two-sixth {
    width: 100%;
  }
  .twosixth.md-twosixth, .twosixth.md-two-sixth,
  .two-sixth.md-twosixth,
  .two-sixth.md-two-sixth {
    width: 33.33333333; /* IE Fallback */
    width: 33.3333333333%;
  }
}
@media (max-width: 640px) {
  .twosixth,
  .two-sixth {
    width: 100%;
  }
  .twosixth.md-twosixth, .twosixth.md-two-sixth,
  .two-sixth.md-twosixth,
  .two-sixth.md-two-sixth {
    width: 100%;
  }
  .twosixth.sm-twosixth, .twosixth.sm-two-sixth,
  .two-sixth.sm-twosixth,
  .two-sixth.sm-two-sixth {
    width: 33.33333333; /* IE Fallback */
    width: 33.3333333333%;
  }
}

.threesixth,
.three-sixth {
  width: 50%;
}
@media (max-width: 768px) {
  .threesixth,
  .three-sixth {
    width: 100%;
  }
  .threesixth.md-threesixth, .threesixth.md-three-sixth,
  .three-sixth.md-threesixth,
  .three-sixth.md-three-sixth {
    width: 50%;
  }
}
@media (max-width: 640px) {
  .threesixth,
  .three-sixth {
    width: 100%;
  }
  .threesixth.md-threesixth, .threesixth.md-three-sixth,
  .three-sixth.md-threesixth,
  .three-sixth.md-three-sixth {
    width: 100%;
  }
  .threesixth.sm-threesixth, .threesixth.sm-three-sixth,
  .three-sixth.sm-threesixth,
  .three-sixth.sm-three-sixth {
    width: 50%;
  }
}

.foursixth,
.four-sixth {
  width: 66.66666666; /* IE Fallback */
  width: 66.6666666667%;
}
@media (max-width: 768px) {
  .foursixth,
  .four-sixth {
    width: 100%;
  }
  .foursixth.md-foursixth, .foursixth.md-four-sixth,
  .four-sixth.md-foursixth,
  .four-sixth.md-four-sixth {
    width: 66.66666666%;
    width: 66.6666666667%;
  }
}
@media (max-width: 640px) {
  .foursixth,
  .four-sixth {
    width: 100%;
  }
  .foursixth.md-foursixth, .foursixth.md-four-sixth,
  .four-sixth.md-foursixth,
  .four-sixth.md-four-sixth {
    width: 100%;
  }
  .foursixth.sm-foursixth, .foursixth.sm-four-sixth,
  .four-sixth.sm-foursixth,
  .four-sixth.sm-four-sixth {
    width: 66.66666666%;
    width: 66.6666666667%;
  }
}

.fivesixth,
.five-sixth {
  width: 83.33333333; /* IE Fallback */
  width: 83.3333333333%;
}
@media (max-width: 768px) {
  .fivesixth,
  .five-sixth {
    width: 100%;
  }
  .fivesixth.md-fivesixth, .fivesixth.md-five-sixth,
  .five-sixth.md-fivesixth,
  .five-sixth.md-five-sixth {
    width: 83.33333333%;
    width: 83.3333333333%;
  }
}
@media (max-width: 640px) {
  .fivesixth,
  .five-sixth {
    width: 100%;
  }
  .fivesixth.md-fivesixth, .fivesixth.md-five-sixth,
  .five-sixth.md-fivesixth,
  .five-sixth.md-five-sixth {
    width: 100%;
  }
  .fivesixth.sm-fivesixth, .fivesixth.sm-five-sixth,
  .five-sixth.sm-fivesixth,
  .five-sixth.sm-five-sixth {
    width: 83.33333333%;
    width: 83.3333333333%;
  }
}

/**** Gutters ***/
.half-gutter1 .half {
  width: calc(50% - 0.5em);
}
@media (max-width: 768px) {
  .half-gutter1 .half {
    width: 100%;
  }
}
.half-gutter1 .half:nth-child(even) {
  margin-left: 1em;
}
@media (max-width: 768px) {
  .half-gutter1 {
    width: 100%;
    margin-left: 0 !important;
  }
}

.half-gutter2 .half {
  width: calc(50% - 1em);
}
@media (max-width: 768px) {
  .half-gutter2 .half {
    width: 100%;
  }
}
.half-gutter2 .half:nth-child(even) {
  margin-left: 2em;
}
@media (max-width: 768px) {
  .half-gutter2 .half:nth-child(even) {
    margin-left: 0 !important;
  }
}

.third-gutter1 .third {
  width: calc(33.3333333333% - 0.67em);
  margin: 1em 0 0;
}
.third-gutter1 .third:nth-child(3n+2) {
  margin: 1em 1em 0;
}
@media (max-width: 1024px) {
  .third-gutter1 .third {
    width: calc(50% - 0.5em);
  }
  .third-gutter1 .third:nth-of-type(n) {
    margin: 1em 0 0 0;
  }
  .third-gutter1 .third:nth-child(2n+1) {
    margin-right: 1em;
  }
}
@media (max-width: 768px) {
  .third-gutter1 .third {
    width: 100%;
  }
  .third-gutter1 .third:nth-of-type(n) {
    margin: 1em 0 0 0;
  }
}

.left {
  float: left;
}

.right {
  float: right;
}

.center {
  margin: 0 auto;
}

.clearfix:before,
.clearfix:after {
  content: " "; /* 1 */
  display: table; /* 2 */
}

.clearfix:after {
  clear: both;
}

.clearfix {
  *zoom: 1;
}

.fill {
  position: absolute;
  top: 0px;
  left: 0px;
  height: 100%;
  width: 100%;
  z-index: 0;
}

/*~~ TEXT ALIGN ~~*/
.tleft,
.text-left {
  text-align: left;
}

.tright,
.text-right {
  text-align: right;
}

.tcenter,
.text-center {
  text-align: center;
}

.italic {
  font-style: italic;
}

.noselect {
  -webkit-touch-callout: none; /* iOS Safari */
  -webkit-user-select: none; /* Safari */
  -khtml-user-select: none; /* Konqueror HTML */
  -moz-user-select: none; /* Old versions of Firefox */
  -ms-user-select: none; /* Internet Explorer/Edge */
  user-select: none; /* Non-prefixed version, currently supported by Chrome, Edge, Opera and Firefox */
  pointer-events: none;
}

/*~~ PADDING ~~*/
.no-pad,
.nopad,
.pad0 {
  padding: 0;
}

.pad0-1 {
  padding: 0 1em;
}

.pad0-half {
  padding: 0 0.5em;
}

.pad-half {
  padding: 0.5em;
}

.pad1-0 {
  padding: 1em 0;
}

.pad2-0 {
  padding: 2em 0;
}

.pad3-0 {
  padding: 3em 0;
}

.pad4-0 {
  padding: 4em 0;
}

.pad5-0 {
  padding: 5em 0;
}

.pad6-0 {
  padding: 6em 0;
}

.pad7-0 {
  padding: 7em 0;
}

.pad8-0 {
  padding: 8em 0;
}

.pad0-1 {
  padding: 0 1em;
}

.pad0-2 {
  padding: 0 2em;
}

.pad0-3 {
  padding: 0 3em;
}

.pad0-4 {
  padding: 0 4em;
}

.pad1-2 {
  padding: 1em 2em;
}

.pad1-3 {
  padding: 1em 3em;
}

.pad1-4 {
  padding: 1em 4em;
}

.pad2-1 {
  padding: 2em 1em;
}

.pad2-3 {
  padding: 2em 3em;
}

.pad2-4 {
  padding: 2em 4em;
}

.pad3-1 {
  padding: 3em 1em;
}

.pad3-2 {
  padding: 3em 2em;
}

.pad3-4 {
  padding: 3em 4em;
}

.pad4-1 {
  padding: 4em 1em;
}

.pad4-2 {
  padding: 4em 2em;
}

.pad4-3 {
  padding: 4em 3em;
}

.pad1 {
  padding: 1em;
}

.pad2 {
  padding: 2em;
}

.pad3 {
  padding: 3em;
}

.pad4 {
  padding: 4em;
}

/*~~ PADDING  TOP~~*/
.padt0 {
  padding-top: 0;
}

.padt1 {
  padding-top: 1em;
}

.padt2 {
  padding-top: 2em;
}

.padt3 {
  padding-top: 3em;
}

.padt4 {
  padding-top: 4em;
}

.padt5 {
  padding-top: 5em;
}

.padt6 {
  padding-top: 6em;
}

.padl1 {
  padding-left: 1em;
}
@media (max-width: 640px) {
  .padl1 {
    padding-left: 0;
  }
}

/*~~ PADDING BOTTOM ~~*/
.padb0 {
  padding-bottom: 0;
}

.padb1 {
  padding-bottom: 1em;
}

.padb2 {
  padding-bottom: 2em;
}

.padb3 {
  padding-bottom: 3em;
}

.padb4 {
  padding-bottom: 4em;
}

.padb5 {
  padding-bottom: 5em;
}

.padb6 {
  padding-bottom: 6em;
}

/*~~ MARGIN ~~*/
.no-mar,
.nomar,
.nomarg,
.mar0 {
  margin: 0;
}

.mar-half {
  margin: 0.5em;
}

.mar1-0 {
  margin: 1em 0;
}

.mar2-0 {
  margin: 2em 0;
}

.mar3-0 {
  margin: 3em 0;
}

.mar4-0 {
  margin: 4em 0;
}

.mar0-1 {
  margin: 0 1em;
}

.mar0-2 {
  margin: 0 2em;
}

.mar0-3 {
  margin: 0 3em;
}

.mar0-4 {
  margin: 0 4em;
}

.mar1-2 {
  margin: 1em 2em;
}

.mar1-3 {
  margin: 1em 3em;
}

.mar1-4 {
  margin: 1em 4em;
}

.mar2-1 {
  margin: 2em 1em;
}

.mar2-3 {
  margin: 2em 3em;
}

.mar2-4 {
  margin: 2em 4em;
}

.mar3-1 {
  margin: 3em 1em;
}

.mar3-2 {
  margin: 3em 2em;
}

.mar3-4 {
  margin: 3em 4em;
}

.mar4-1 {
  margin: 4em 1em;
}

.mar4-2 {
  margin: 4em 2em;
}

.mar4-3 {
  margin: 4em 3em;
}

.mar1 {
  margin: 1em;
}

.mar2 {
  margin: 2em;
}

.mar3 {
  margin: 3em;
}

.mar4 {
  margin: 4em;
}

/*~~ margin  TOP~~*/
.mart1 {
  margin-top: 1em;
}

.mart2 {
  margin-top: 2em;
}

.mart3 {
  margin-top: 3em;
}

.mart4 {
  margin-top: 4em;
}

/*~~ margin BOTTOM ~~*/
.marb0 {
  margin-bottom: 0;
}

.marb1 {
  margin-bottom: 1em;
}

.marb2 {
  margin-bottom: 2em;
}

.marb3 {
  margin-bottom: 3em;
}

.marb4 {
  margin-bottom: 4em;
}

.marb5 {
  margin-bottom: 5em;
}

.marb6 {
  margin-bottom: 6em;
}

/*~~ PADDING MOBILE ~~*/
@media (max-width: 768px) {
  .padm2 {
    padding: 2em;
  }
}

@media (max-width: 768px) {
  .padm4-0 {
    padding: 4em 0;
  }
}

@media (max-width: 768px) {
  .padm3-0 {
    padding: 3em 0;
  }
}

@media (max-width: 768px) {
  .padm2-0 {
    padding: 2em 0;
  }
}

@media (max-width: 768px) {
  .padm1-0 {
    padding: 1em 0;
  }
}

@media (max-width: 768px) {
  .padbm1 {
    padding-bottom: 1em;
  }
}

@media (max-width: 768px) {
  .padbm2 {
    padding-bottom: 2em;
  }
}

@media (max-width: 768px) {
  .padbm4 {
    padding-bottom: 4em;
  }
}

@media (max-width: 768px) {
  .padmt4 {
    padding-top: 4em;
  }
}

@media (max-width: 768px) {
  .padmt2 {
    padding-top: 2em;
  }
}

@media (max-width: 768px) {
  .marmb4 {
    margin-bottom: 4em;
  }
}

@media (max-width: 768px) {
  .marmt4 {
    margin-top: 4em;
  }
}

/*~~ GLOBAL ~~*/
sup {
  vertical-align: top;
  font-size: 0.6em;
  line-height: 1.25em;
  position: relative;
}

.center {
  margin: 0 auto;
}

.upper {
  text-transform: uppercase;
}

.lower {
  text-transform: lowercase;
}

.hidden {
  display: none;
}

.noscroll,
.no-scroll {
  height: 100%;
  overflow: hidden;
}

.relative {
  position: relative;
}

.figure {
  overflow: hidden;
  position: relative;
}

.figure img,
.stretch {
  width: 100%;
  height: auto;
}

.cover {
  background-repeat: no-repeat;
  background-position: center;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
}

.fixedbg,
.fixed-bg {
  background-attachment: fixed;
  will-change: top;
}

.css-table {
  display: table;
}
.css-table .css-col {
  display: table-cell;
}

/*
       _ _                     _   _
 _ __ / / | ___ _ __ ___  __ _| |_(_)_   _____
| '_ \| | |/ __| '__/ _ \/ _` | __| \ \ / / _ \
| |_) | | | (__| | |  __/ (_| | |_| |\ V /  __/
| .__/|_|_|\___|_|  \___|\__,_|\__|_| \_/ \___|
|_|

Site design by p11|creative
Visit us @ p11.com


/*
|--------------------------------------------------------------------------
| Font Style Generator (See Mixin)
|--------------------------------------------------------------------------
*/
@font-face {
  font-family: "Aristotelica Light";
  src: url("../fonts/aristotelica/AristotelicaDisplay-ExLt.eot?") format("eot"), url("../fonts/aristotelica/AristotelicaDisplay-ExLt.woff") format("woff"), url("../fonts/aristotelica/AristotelicaDisplay-ExLt.ttf") format("truetype"), url("../fonts/aristotelica/AristotelicaDisplay-ExLt.svg#Aristotelica_Light") format("svg");
}
@font-face {
  font-family: "Aristotelica Bold";
  src: url("../fonts/aristotelica/AristotelicaDisplay-DmBd.eot?") format("eot"), url("../fonts/aristotelica/AristotelicaDisplay-DmBd.woff") format("woff"), url("../fonts/aristotelica/AristotelicaDisplay-DmBd.ttf") format("truetype"), url("../fonts/aristotelica/AristotelicaDisplay-DmBd.svg#Aristotelica_Bold") format("svg");
}
@font-face {
  font-family: "Aristotelica Regular";
  src: url("../fonts/aristotelica/AristotelicaText-Regular.eot?") format("eot"), url("../fonts/aristotelica/AristotelicaText-Regular.woff") format("woff"), url("../fonts/aristotelica/AristotelicaText-Regular.ttf") format("truetype"), url("../fonts/aristotelica/AristotelicaText-Regular.svg#Aristotelica_Regular") format("svg");
}
/* -------------------------------------------------------------------------------- */
/*	0. CSS Reset
/* -------------------------------------------------------------------------------- */
html, body {
  margin: 0;
  padding: 0;
  font-family: "Lato", sans-serif;
}

#empire-nav {
  padding: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}
#empire-nav h2 {
  color: #fff;
  font-size: 1rem;
  font-weight: 400;
}
@media (max-width: 640px) {
  #empire-nav h2 {
    display: none;
  }
}
#empire-nav a {
  display: inline-block;
  color: #fff;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5em;
  padding: 0.25rem 1rem;
  border-radius: 25px;
  transition: color 0.3s ease;
  background-color: #4c4c4c;
  transition: background-color 0.5s ease, color 0.5s ease;
}
#empire-nav a:hover, #empire-nav a.active {
  color: #000;
  background-color: #ffbb20;
}
#empire-nav a.empire-hj:hover, #empire-nav a.empire-hj.active {
  color: #000;
  background-color: #b3d3e0;
}

h1, h2, h3, h4, h5, h6, p, blockquote, address, big, cite, code, em, font, img, small, strike, sub, sup, li, ol, ul, fieldset, form, label, legend, button, table, caption, tr, th, td {
  margin: 0;
  padding: 0;
  border: 0;
  font-weight: normal;
  font-style: normal;
  font-size: 100%;
  line-height: 1.25em;
  font-family: inherit;
  text-align: left;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

ol, ul {
  list-style: none;
}

blockquote:before, blockquote:after {
  content: "";
}

a {
  outline: none;
}

input[type=search],
input[type=text],
input[type=email],
input[type=url],
input[type=button],
input[type=tel],
input[type=submit],
textarea {
  -moz-appearance: none;
  -webkit-appearance: none;
}

input[type=submit] {
  margin-top: 1rem !important;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.125em;
  border: 0;
  border-radius: 25px;
  color: #fff;
  background-color: #444;
  padding: 0.75rem 1.5rem;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
  transform: translate(0);
  -moz-transform: translate(0);
  -webkit-transform: translate(0);
  transition: background-color 0.3s ease-in-out, transform 0.3s ease-in-out;
}
input[type=submit]:hover {
  color: #fff;
  background-color: #000;
  transform: translateY(-3px);
  -moz-transform: translateY(-3px);
  -webkit-transform: translateY(-3px);
}

input[type=search]::-webkit-search-decoration,
input[type=search]::-webkit-search-cancel-button,
input[type=search]::-webkit-search-results-button,
input[type=search]::-webkit-search-results-decoration {
  display: none;
}

.script {
  font-family: "Rock Salt", sans-serif !important;
}

.boxbtn {
  display: inline-block;
  font-weight: 600;
  font-size: 1rem;
  line-height: 1.125em;
  border-radius: 25px;
  color: #fff;
  background-color: #444;
  padding: 0.75rem 1.5rem;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
  transform: translate(0);
  -moz-transform: translate(0);
  -webkit-transform: translate(0);
  transition: color 0.3s ease-in-out, background-color 0.3s ease-in-out, transform 0.3s ease-in-out;
}
.boxbtn:hover {
  color: #fff;
  background-color: #000;
  transform: translateY(-3px);
  -moz-transform: translateY(-3px);
  -webkit-transform: translateY(-3px);
}
.boxbtn.bgwhite {
  color: #444;
  background-color: #fff;
}
.boxbtn.bgwhite:hover {
  color: #000;
  background-color: #f1f1f1;
}
.boxbtn.bgyellow {
  color: #000;
  background-color: #b3d3e0;
}
.boxbtn.bgyellow:hover {
  color: #fff;
}
.boxbtn.disabled, .boxbtn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  color: gray;
  pointer-events: none;
  background-color: #ccc;
}
.boxbtn.disabled:hover, .boxbtn:disabled:hover {
  background-color: #ccc;
  transform: translate(0);
  -moz-transform: translate(0);
  -webkit-transform: translate(0);
}

/*~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  ANIMATE
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*/
[class*=animate] {
  opacity: 0;
  -webkit-transition: transform 1s ease, zoom 1s ease, opacity 1s ease;
  -moz-transition: transform 1s ease, zoom 1s ease, opacity 1s ease;
  -ms-transition: transform 1s ease, zoom 1s ease, opacity 1s ease;
  -o-transition: transform 1s ease, zoom 1s ease, opacity 1s ease;
  transition: transform 1s ease, zoom 1s ease, opacity 1s ease;
  transition-delay: 0.125s;
}
[class*=animate].quick {
  transition-delay: 0.05s;
}
[class*=animate].short-delay {
  transition-delay: 0.5s;
}
[class*=animate].medium-delay {
  transition-delay: 0.75s;
}
[class*=animate].long-delay {
  transition-delay: 1s;
}
[class*=animate].nofade {
  opacity: 1 !important;
}

.animate-fadein {
  opacity: 0;
  -webkit-transition: opacity 1s ease;
  -moz-transition: opacity 1s ease;
  -ms-transition: opacity 1s ease;
  -o-transition: opacity 1s ease;
  transition: opacity 1s ease;
}

.animate-left {
  transform: translateX(50px);
}
@media (max-width: 640px) {
  .animate-left {
    transform: translateX(0);
  }
}

.animate-right {
  transform: translateX(-50px);
}
@media (max-width: 640px) {
  .animate-right {
    transform: translateX(0);
  }
}

.animate-up {
  transform: translateY(50px);
}
@media (max-width: 640px) {
  .animate-up {
    transform: translateX(0);
  }
}

.animate-down {
  transform: translateY(-50px);
}
@media (max-width: 640px) {
  .animate-down {
    transform: translateX(0);
  }
}

.animate-zoomin {
  transform: scale(0.85);
}

.animate-zoomout {
  transform: scale(1.5);
}

.animate-zoom-and-spin {
  transform: scale(0.65) rotate(-90deg);
  transform-origin: 50% 50% !important;
}

.animate-fade-sequence:nth-of-type(1) {
  transition-delay: 0.125s;
}
.animate-fade-sequence:nth-of-type(2) {
  transition-delay: 0.25s;
}
.animate-fade-sequence:nth-of-type(3) {
  transition-delay: 0.375s;
}
.animate-fade-sequence:nth-of-type(4) {
  transition-delay: 0.5s;
}
.animate-fade-sequence:nth-of-type(5) {
  transition-delay: 0.625s;
}
.animate-fade-sequence:nth-of-type(6) {
  transition-delay: 0.75s;
}
.animate-fade-sequence:nth-of-type(7) {
  transition-delay: 0.875s;
}
.animate-fade-sequence:nth-of-type(8) {
  transition-delay: 1s;
}
.animate-fade-sequence:nth-of-type(9) {
  transition-delay: 1.125s;
}
.animate-fade-sequence:nth-of-type(10) {
  transition-delay: 1.25s;
}

.in-view {
  opacity: 1;
}
.in-view.animate-up, .in-view.animate-down, .in-view.animate-left, .in-view.animate-right {
  transform: translate(0);
}
.in-view.animate-zoomin, .in-view.animate-zoomout {
  transform: scale(1);
}
.in-view.animate-zoom-and-spin {
  transform: scale(1) rotate(0);
  transform-origin: 50% 50% !important;
}

/* -------------------------------------------------------------------------------- */
/*	1. Document setup
/* -------------------------------------------------------------------------------- */
#main-content {
  position: relative;
  background-image: url(../../images/smudge.jpg), url(../../images/smudge.jpg), url(../../images/smudge.jpg);
  background-size: 1000px auto, 800px auto, 900px auto;
  background-position: 0 0, 100% 20%, 50% 60%;
  background-repeat: repeat;
  mix-blend-mode: multiply;
  background-attachment: fixed;
}

#main-content .content {
  position: relative;
  z-index: 1;
}

#main-content.default-page .content {
  width: calc(100% - 375px);
}

/* Override smudge backgrounds for sidebar */
body {
  margin: 0;
  padding: 0;
  border: none;
  background: #f1f1f1;
  color: #000000;
  font-size: 18px;
  -webkit-font-smoothing: antialiased;
}

body a {
  color: #444;
  text-decoration: none;
}

body a:hover {
  color: #666;
  text-decoration: none;
}

* {
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
}

img {
  max-width: 100%;
  height: auto;
}

.hidden {
  display: none;
}

.clear {
  clear: both;
}

.fleft {
  float: left;
}

.fright {
  float: right;
}

::selection {
  background: #777;
  color: #FFF;
}

::-webkit-input-placeholder {
  color: #999;
}

:-ms-input-placeholder {
  color: #999;
}

.linelink {
  text-decoration: underline !important;
}

/* Transitions --------------------------------------- */
body a {
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.page-content h1, .page-content h2, .page-content h3, .page-content h4, .page-content h5, .page-content h6 {
  margin-bottom: 1rem;
}
.page-content h2 {
  font-size: 1.5rem;
}
.page-content p {
  margin-bottom: 1rem;
  line-height: 1.5em;
}
.page-content ul {
  list-style: disc;
  margin-bottom: 1rem;
}

.blog-title a,
.post-title a,
.post-overlay,
.post-likes,
.post-meta a,
.pagination,
.main-menu a,
.main-menu > .has-children > a::after,
.main-menu > .page_item_has_children > a::after,
.searchbutton,
.search-toggle,
.comment-form input[type=text],
.comment-form input[type=email],
.comment-form textarea,
.form-submit #submit,
.widget_search .searchsubmit,
.widget_search .s,
.format-gallery .flex-direction-nav a,
.nav-toggle .bar,
.dribbble-shot,
.flickr_badge_image a,
.post-content input[type=submit],
.post-content input[type=reset],
.post-content input[type=button] {
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

.tothetop,
.header,
.portfolio-item a .portfolio-header-container,
.featured-media a img {
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

#infscr-loading {
  position: fixed;
  bottom: 100px;
  left: 50%;
  margin-left: -22.5px;
  z-index: 999;
}

#infscr-loading img {
  text-align: right;
  margin: 0 auto;
  padding-bottom: 20px;
}

/* -------------------------------------------------------------------------------- */
/*	2.	Structure
/* -------------------------------------------------------------------------------- */
.section {
  position: relative;
  padding: 80px 0;
}

.no-padding {
  padding: 0;
}

.small-padding {
  padding: 40px 0;
}

.medium-padding {
  padding: 60px 0;
}

.big-padding {
  padding: 100px 0;
}

.section-inner {
  max-width: 90%;
  width: 1400px;
  margin: 0 auto;
}
.section-inner.with-sidebar {
  position: relative;
}
.section-inner.with-sidebar .content {
  width: calc(100% - 375px - 2rem);
}
.section-inner.with-sidebar .sidebar {
  position: sticky;
  top: 2rem;
}

.section-inner.content {
  width: 1440px;
  max-width: 92.6%;
}

/*.content .post .post-header { background: url(../../images/bg-grunge1.jpg) right -130px no-repeat; }*/
.section-inner.wide {
  width: 1240px;
}

.section-inner.thin {
  width: 700px;
}

.bg-dark {
  background-color: #1d1d1d;
}

.bg-graphite {
  background-color: #262626;
}

.bg-grey {
  background-color: #f1f1f1;
}

.bg-yellow {
  background-color: #b3d3e0;
}

.bg-image {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.cover {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.cover.shade-light {
  background: rgba(0, 0, 0, 0.25);
}

.cover.shade-medium {
  background: rgba(0, 0, 0, 0.5);
}

.cover.shade-dark {
  background: rgba(0, 0, 0, 0.75);
}

/* columns */
.row .one-fourth {
  width: 21.5%;
  margin-left: 5%;
  float: left;
}

.row .one-third {
  width: 30%;
  margin-left: 5%;
  float: left;
}

.row .one-half {
  width: 47.5%;
  margin-left: 5%;
  float: left;
}

.row .two-thirds {
  width: 65%;
  margin-left: 5%;
  float: left;
}

.row .one-fourth:first-child,
.row .one-third:first-child,
.row .one-half:first-child,
.row .two-thirds:first-child {
  margin-left: 0;
}

/* -------------------------------------------------------------------------------- */
/*	3. Header
/* -------------------------------------------------------------------------------- */
.header {
  padding: 15px 0;
}

.header .cover {
  background: rgba(29, 29, 29, 0.25);
}

/* Moving background for header using direct div element */
.header.moving-bg {
  background-color: #4c4c4c;
  position: relative;
  overflow: hidden;
  background: transparent !important;
  border: none !important;
  margin: 0 !important;
  padding: 0 !important;
}

/* Remove any borders, outlines, and margins from navigation and header */
.navigation {
  border: none !important;
  outline: none !important;
  margin: 0 !important;
  padding: 0 !important;
}

.header.moving-bg {
  outline: none !important;
  margin: 0 !important;
}

/* Remove any potential browser default styling */
body {
  border: none !important;
  outline: none !important;
}

html {
  border: none !important;
  outline: none !important;
}

.moving-background {
  position: absolute;
  top: 0;
  left: 0;
  width: max-content; /* Let content determine width */
  min-width: 400vw; /* Ensure minimum width for very wide screens */
  height: 100%;
  background-color: #4c4c4c; /* Background color */
  animation: slideBackgroundTransform 50s linear infinite;
  z-index: -1;
  pointer-events: none;
  display: flex;
}

.moving-bg-image {
  height: 100%;
  width: auto; /* Maintain aspect ratio */
  object-fit: cover; /* Fill height while maintaining aspect ratio */
  flex-shrink: 0; /* Don't shrink the images */
}

/* Make cover transparent for moving background */
.header.moving-bg .cover {
  background: transparent !important;
}

@keyframes slideBackgroundTransform {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%); /* Move exactly half the content width for seamless loop */
  }
}
.header-inner {
  position: relative;
}

#since {
  display: block;
  float: right;
  color: #f1f1f1;
  font-family: "Rock Salt", sans-serif;
  font-size: 1.125em;
  font-weight: 200;
  line-height: 160%;
  text-align: center;
  padding: 2em 0 0 0;
  letter-spacing: 0.08em;
}
#since img.bolt-s,
#since img.bolt-s-2 {
  width: 10px;
  height: auto;
}
#since img.bolt-s {
  margin-left: 5px;
  transform: translateY(5px);
}
#since img.bolt-s-2 {
  width: 13px;
  margin-right: 2px;
  transform: translateY(5px);
}
#since span.since {
  display: inline-block;
  transform: translateY(-6px);
}

#since2 {
  position: absolute;
  top: -1000px;
}

.header .logo {
  display: inline-block;
  padding: 0.5rem 0;
}

.header .logo img {
  max-height: 172px;
  width: auto;
}

.blog-title {
  font-family: "Rock Salt", sans-serif;
  font-size: 2.25em;
  text-align: center;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.25);
}

.blog-title a {
  color: #fff;
}

.blog-title a:hover {
  color: #777;
}

.blog-description {
  font-size: 1.1em;
  line-height: 110%;
  font-weight: 400;
  color: #999;
  margin: 20px 0 0 0;
  text-align: center;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.25);
}

/* search-toggle */
.search-toggle {
  display: block;
  width: 68px;
  height: 68px;
  background: url(../../images/icons/1x/spyglass-w.png) no-repeat center;
  background-size: 24px auto;
  opacity: 0.5;
  -moz-opacity: 0.5;
  -webkit-opacity: 0.5;
}

.search-toggle:hover {
  opacity: 1;
  -moz-opacity: 1;
  -webkit-opacity: 1;
  background-position: 46% 46%;
}

.search-toggle.active {
  opacity: 1;
  -moz-opacity: 1;
  -webkit-opacity: 1;
}

/* header search block

.header-search-block {
	position: absolute;
	z-index: 10000;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
}
*/
.header-search-block {
  height: 85px;
  position: relative;
  width: 100%;
  background: #3f3f3f;
}

.header-search-block .section-inner {
  position: relative;
}

.header-search-block .s {
  background: none repeat scroll 0 0 #fff;
  border: 1px solid #000;
  border-radius: 5px;
  color: #1d1d1d;
  font-size: 1.25em;
  font-weight: 500;
  left: 5%;
  margin: -25px 0 0;
  padding: 8px 8px;
  position: absolute;
  right: 5%;
  text-align: right;
  top: 50%;
  width: 90%;
}

.header-search-block .s:focus {
  outline: none;
}

.header-search-block .searchsubmit {
  display: none;
}

/* -------------------------------------------------------------------------------- */
/*	4. Navigation
/* -------------------------------------------------------------------------------- */
.main-menu {
  font-size: 0.8em;
  text-align: center;
  text-transform: none;
}

.main-menu li {
  position: relative;
}

.main-menu > li {
  float: left;
}

.main-menu > li:before {
  content: "|";
  display: block;
  position: absolute;
  right: 0;
  top: 50%;
  margin-top: -9px;
  margin-right: -3px;
  font-size: 16px;
  color: #777;
  font-weight: 300;
  z-index: 1000;
}

.main-menu > li:last-child:before {
  content: none;
}

.main-menu > li > a {
  display: block;
  padding: 27px 0;
  margin: 0 27px;
  font-size: 0.85em;
  color: #999;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 700;
  position: relative;
  transition: color 0.3s ease;
}

.main-menu > li:first-child > a {
  color: #b3d3e0;
}

.main-menu > li:first-child > a {
  margin-left: 0;
}

.main-menu > .has-children > a,
.main-menu > .page_item_has_children > a {
  padding-right: 47px;
  position: relative;
}

.main-menu > .has-children > a::after,
.main-menu > .page_item_has_children > a::after {
  content: "";
  display: block;
  border: 5px solid transparent;
  border-top-color: #999;
  position: absolute;
  z-index: 1001;
  right: 29px;
  top: 50%;
  margin-top: -2px;
}

.main-menu li:hover > a,
.main-menu li.active > a {
  cursor: pointer;
  color: #fff;
}

/* Special styling for buy menu items */
.main-menu li.buy-now:hover > a,
.main-menu li.buy-now.active > a {
  color: #b3d3e0 !important;
}

/* Hand-drawn underline effects for each menu item */
.main-menu > li > a::after {
  content: "";
  position: absolute;
  bottom: 22px;
  left: 0;
  width: 0;
  height: 2px;
  background: #fff;
  opacity: 0;
  transition: opacity 0.2s ease, width 0.4s ease-in-out;
  z-index: 1;
  border-radius: 50px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

/* Add wavy hand-drawn effect using pseudo-elements */
/* Different hand-drawn styles for each menu item */
.main-menu > li:nth-child(1) > a::after {
  transform: rotate(-0.8deg) skewX(-2deg);
}

.main-menu > li:nth-child(1) > a::before {
  transform: rotate(-0.5deg) skewX(-1deg);
}

.main-menu > li:nth-child(2) > a::after {
  transform: rotate(1.2deg) skewX(1deg);
}

.main-menu > li:nth-child(2) > a::before {
  transform: rotate(0.8deg) skewX(0.5deg);
}

.main-menu > li:nth-child(3) > a::after {
  transform: rotate(-0.4deg) skewX(-1.5deg);
}

.main-menu > li:nth-child(3) > a::before {
  transform: rotate(-0.2deg) skewX(-0.8deg);
}

.main-menu > li:nth-child(4) > a::after {
  transform: rotate(0.9deg) skewX(2deg);
}

.main-menu > li:nth-child(4) > a::before {
  transform: rotate(0.6deg) skewX(1deg);
}

.main-menu > li:nth-child(5) > a::after {
  transform: rotate(-1.1deg) skewX(-0.5deg);
}

.main-menu > li:nth-child(5) > a::before {
  transform: rotate(-0.7deg) skewX(-0.3deg);
}

.main-menu > li:nth-child(6) > a::after {
  transform: rotate(0.6deg) skewX(1.5deg);
}

.main-menu > li:nth-child(6) > a::before {
  transform: rotate(0.4deg) skewX(0.8deg);
}

.main-menu > li:nth-child(7) > a::after {
  transform: rotate(-0.7deg) skewX(-1deg);
}

.main-menu > li:nth-child(7) > a::before {
  transform: rotate(-0.4deg) skewX(-0.5deg);
}

.main-menu > li:nth-child(8) > a::after {
  transform: rotate(0.8deg) skewX(0.8deg);
}

.main-menu > li:nth-child(8) > a::before {
  transform: rotate(0.5deg) skewX(0.4deg);
}

/* Show underline on hover and active with width animation */
.main-menu > li:hover > a::after,
.main-menu > li:hover > a::before,
.main-menu > li.active > a::after,
.main-menu > li.active > a::before {
  opacity: 1;
}

/* Set final widths for each menu item on hover and active - drawing from left to right */
.main-menu > li:nth-child(1):hover > a::after,
.main-menu > li:nth-child(1):hover > a::before,
.main-menu > li:nth-child(1).active > a::after,
.main-menu > li:nth-child(1).active > a::before {
  width: 100%;
}

.main-menu > li:nth-child(2):hover > a::after,
.main-menu > li:nth-child(2):hover > a::before,
.main-menu > li:nth-child(2).active > a::after,
.main-menu > li:nth-child(2).active > a::before {
  width: 100%;
}

.main-menu > li:nth-child(3):hover > a::after,
.main-menu > li:nth-child(3):hover > a::before,
.main-menu > li:nth-child(3).active > a::after,
.main-menu > li:nth-child(3).active > a::before {
  width: 100%;
}

.main-menu > li:nth-child(4):hover > a::after,
.main-menu > li:nth-child(4):hover > a::before,
.main-menu > li:nth-child(4).active > a::after,
.main-menu > li:nth-child(4).active > a::before {
  width: 100%;
}

.main-menu > li:nth-child(5):hover > a::after,
.main-menu > li:nth-child(5):hover > a::before,
.main-menu > li:nth-child(5).active > a::after,
.main-menu > li:nth-child(5).active > a::before {
  width: 100%;
}

.main-menu > li:nth-child(6):hover > a::after,
.main-menu > li:nth-child(6):hover > a::before,
.main-menu > li:nth-child(6).active > a::after,
.main-menu > li:nth-child(6).active > a::before {
  width: 100%;
}

.main-menu > li:nth-child(7):hover > a::after,
.main-menu > li:nth-child(7):hover > a::before,
.main-menu > li:nth-child(7).active > a::after,
.main-menu > li:nth-child(7).active > a::before {
  width: 100%;
}

.main-menu > li:nth-child(8):hover > a::after,
.main-menu > li:nth-child(8):hover > a::before,
.main-menu > li:nth-child(8).active > a::after,
.main-menu > li:nth-child(8).active > a::before {
  width: 100%;
}

/* Special underline color for buy menu items */
.main-menu > li.buy-now:hover > a::after,
.main-menu > li.buy-now.active > a::after {
  background: #b3d3e0 !important;
}

/* Set transform origin for proper animation */
.main-menu > li > a::after,
.main-menu > li > a::before {
  transform-origin: left center;
}

.main-menu > .has-children:hover > a::after,
.main-menu > .page_item_has_children:hover > a::after {
  border-top-color: #fff;
}

/* Sub menus --------------------------------------- */
.main-menu li ul {
  position: absolute;
  z-index: 10000;
  display: block;
  left: -9999px;
  top: 38px;
  opacity: 0;
  -moz-opacity: 0;
  -webkit-opacity: 0;
  z-index: 999;
  -webkit-transition: opacity 0.3s ease-in-out, top 0.3s ease-in-out;
  -moz-transition: opacity 0.3s ease-in-out, top 0.3s ease-in-out;
  -ms-transition: opacity 0.3s ease-in-out, top 0.3s ease-in-out;
  -o-transition: opacity 0.3s ease-in-out, top 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out, top 0.3s ease-in-out;
}

.is_mobile .main-menu li ul {
  opacity: 1;
  -moz-opacity: 1;
  -webkit-opacity: 1;
  display: none;
}

.main-menu > li > ul {
  padding-top: 20px;
}

.main-menu > li > ul:before {
  content: "";
  display: block;
  position: absolute;
  z-index: 1000;
  top: 0px;
  left: 50%;
  margin-left: -10px;
  border: 10px solid transparent;
  border-bottom-color: #2d2d2d;
}

.main-menu ul li {
  float: none;
  display: block;
  border-top: 1px solid rgba(255, 255, 255, 0.075);
}

.main-menu ul li:first-child {
  border-top: none;
}

.main-menu ul > .has-children::after,
.main-menu ul > .page_item_has_children::after {
  content: "";
  display: block;
  border: 6px solid transparent;
  border-left-color: rgba(255, 255, 255, 0.4);
  position: absolute;
  z-index: 1001;
  right: 10px;
  top: 50%;
  margin-top: -5px;
}

.main-menu ul > .has-children:hover::after,
.main-menu ul > .page_item_has_children:hover::after {
  border-left-color: #FFF;
}

.main-menu ul li {
  display: block;
  width: 240px;
  background: #2d2d2d;
}

.main-menu ul a {
  display: block;
  text-align: center;
  padding: 20px;
  margin: 0;
  line-height: 130%;
  color: #999;
}

.main-menu ul a:hover {
  color: #fff;
}

.main-menu li:hover > ul {
  opacity: 1;
  -moz-opacity: 1;
  -webkit-opacity: 1;
  left: 50%;
  margin-left: -120px;
  top: 48px;
}

.is_mobile .main-menu li:hover ul {
  display: block;
}

.main-menu > li.current-menu-item a {
  color: #FFF;
}

/* Deep down --------------------------------------- */
.main-menu ul li ul {
  top: 5px;
}

.main-menu ul li:hover > ul {
  top: 0;
  left: 240px;
  margin-left: 0;
}

.main-menu ul ul li {
  background: #3d3d3d;
}

.main-menu ul ul ul li {
  background: #4d4d4d;
}

.main-menu ul ul ul ul li {
  background: #4d4d4d;
}

#under-header {
  width: 100%;
}

.under-header-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  padding: 1em 0;
  position: relative;
}

.header-tagline {
  width: fit-content;
  overflow: hidden;
  flex-wrap: nowrap;
  display: flex;
  align-items: center;
}

#under-header h2 {
  font-family: "Rock Salt", sans-serif;
  font-size: 1.25em;
  display: block;
  padding: 0 0 0 1em;
}

#fivelogo {
  width: 100px;
}

#fivelogo img {
  width: 100%;
  height: auto;
}

#view-pricing {
  margin: 0 2.5em;
  width: 275px;
  text-align: center;
}

.options-close {
  position: absolute;
  right: 2%;
  top: 10%;
}

#logocount {
  font-family: "Rock Salt", sans-serif;
  display: block;
  width: 100%;
  font-size: 1.5em;
  font-weight: 300;
  line-height: 0.75em;
  padding: 0 0 2em;
  text-align: center;
}

#logocountnum {
  font-family: "Lato", sans-serif;
  font-weight: 600;
  background-color: #d3d2d2;
  color: #444;
  border-radius: 25px;
  font-size: 0.85em;
  padding: 0.5rem 1em;
  margin-left: 0.25em;
}

/* -------------------------------------------------------------------------------- */
/*	5. Content
/* -------------------------------------------------------------------------------- */
.posts {
  overflow: visible !important;
}

.post-container {
  width: 33.3%;
  padding: 0 1.5% 4.5% 1.5%;
}

.post {
  width: 100%;
  position: relative;
  background: #fff;
  border-radius: 3px;
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
  transform: translate(0);
  -moz-transform: translate(0);
  -webkit-transform: translate(0);
  overflow: hidden;
  border-radius: 20px;
  overflow: hidden;
  transition: box-shadow 0.3s ease-in-out, transform 0.3s ease-in-out;
}

.home .post:hover {
  box-shadow: 20px 25px 30px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 20px 25px 30px rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: 20px 25px 30px rgba(0, 0, 0, 0.1);
  transform: translate(-5px, -5px);
  -moz-transform: translate(-5px, -5px);
  -webkit-transform: translate(-5px, -5px);
}
@media (max-width: 610px) {
  .home .post:hover {
    transform: translate(0, 0);
    -moz-transform: translate(0, 0);
    -webkit-transform: translate(0, 0);
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
    -webkit-box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
  }
}
.home .post .post-header .post-title {
  padding: 1rem 0;
}

.post.sticky .post-header {
  padding-right: 17.5%;
}

.post .sticky-post {
  display: block;
  position: absolute;
  z-index: 100;
  right: 5%;
  height: 38px;
  width: 26px;
  background: #2B3542 url(../../images/icons/1x/tack-w.png) no-repeat center;
  background-size: 12px auto;
  top: 0;
  text-indent: -9999px;
}

.post .sticky-post:after {
  content: "";
  display: block;
  border: 13px solid transparent;
  border-left-color: #000;
  border-right-color: #000;
  position: absolute;
  right: 0;
  margin-top: -13px;
  top: 38px;
}

#backtoall {
  position: absolute;
  left: 2rem;
  top: 2rem;
  z-index: 990;
}

/*  Featured media  ----------------------------------------- */
.featured-media a,
.featured-media img,
.featured-media iframe {
  display: block;
}

.featured-media iframe,
.featured-media object {
  border: none;
  margin: 0;
}

.featured-media a {
  overflow: hidden;
}

.featured-media a:hover img {
  -webkit-transform: scale(1.1);
  opacity: 0.8;
  -moz-opacity: 0.8;
  -webkit-opacity: 0.8;
}

.media-caption {
  font-size: 0.8em;
  line-height: 110%;
  font-weight: 700;
  color: #999;
  padding: 20px 0;
  margin: 0 10%;
  border-bottom: 1px solid #eee;
}

/*  Post inner  ----------------------------------------- */
#jingleLink a {
  display: block;
  background-color: #b3d3e0;
  color: #000;
  font-size: 15px;
  font-weight: 600;
  margin: 0 auto;
  padding: 2% 0;
  text-align: center;
  width: 100%;
  text-decoration: none;
  transition: background-color 0.3s ease-in-out, color 0.3s ease-in-out;
}
#jingleLink a:hover {
  color: #fff;
}

body.single #jingleLink {
  position: relative;
  width: 100%;
}
body.single #jingleLink a {
  max-width: 300px;
  transition: color 0.3s ease-in-out, transform 0.3s ease-in-out;
}

#singelSocial {
  width: 50%;
  float: left;
  padding: 15px 0 0 0;
}

.post-header {
  position: relative;
  padding: 5% 20% 5% 5%;
}

body.single .post-header {
  padding: 7rem 2rem 3rem 2rem;
}

body {
  background-color: #f6f6f4;
}

.home .post-header, .single .post-header {
  background: url(../../images/beer.jpg) 99% 15px no-repeat;
}

.post-header .post-title {
  font-family: "Rock Salt", sans-serif;
  font-size: 1.125em;
  line-height: 120%;
  font-weight: 400;
  color: #000;
  word-break: break-word;
  -ms-word-break: break-word;
  padding: 4rem 0;
}

iframe.fbLikeHome {
  width: 100px !important;
  position: absolute;
  right: 0;
  bottom: 15px;
}

iframe.fbLikeSingle {
  width: 100px !important;
}

.page .post-header {
  /*background:url(../../images/bg-small-bolt.png) top right no-repeat;*/
}

.page .post-header .post-title {
  padding: 0;
}

.post-header .post-title a {
  color: #000;
}

.post-header .post-title a:hover {
  color: #777;
}

.post-excerpt {
  padding: 5%;
  position: relative;
}

.post-excerpt a {
  display: inline-block;
}

.post-excerpt img {
  width: 100%;
  height: auto;
}

.post-excerpt p {
  font-size: 0.95em;
  line-height: 150%;
  color: #666;
}

.post-excerpt p + p {
  margin-top: 1em;
}

.post-excerpt .more-link {
  display: block;
  margin-top: 1.1em;
}

.post-excerpt .more-link:hover {
  text-decoration: underline;
}

.posts .post-meta {
  background: #F9F9F9;
  padding: 0 10%;
  display: none;
}

.posts .post-meta a {
  display: block;
  color: #999;
  font-size: 0.8em;
  font-weight: 700;
  float: left;
  padding: 20px 0px 20px 24px;
  background: no-repeat left center;
  background-size: 18px auto;
  margin-left: 20px;
}

.posts .post-meta a:first-child {
  margin-left: 0;
}

.posts .post-meta a:hover {
  color: #777;
}

.posts .post-meta a.post-date {
  background-image: url(../../images/icons/1x/clock-g.png);
}

.posts .post-meta a.post-date:hover {
  background-image: url(../../images/icons/1x/clock-c.png);
}

.posts .post-meta a.zilla-likes {
  background-image: url(../../images/icons/1x/heart-g.png);
}

.posts .post-meta a.zilla-likes:hover,
.posts .post-meta a.zilla-likes.active {
  background-image: url(../../images/icons/1x/heart-c.png);
  color: #777;
}

.posts .post-meta a.post-comments {
  background-image: url(../../images/icons/1x/comment-g.png);
}

.posts .post-meta a.post-comments:hover {
  background-image: url(../../images/icons/1x/comment-c.png);
}

.posts .post-meta a.post-edit-link {
  height: 59px;
  width: 20px;
  text-indent: -9999px;
  background-image: url(../../images/icons/1x/edit-g.png);
  background-size: 20px auto;
  background-position: center;
}

.posts .post-meta a.post-edit-link:hover {
  background-image: url(../../images/icons/1x/edit-c.png);
}

/*  Post formats  ----------------------------------------- */
/* format standard, format quote, format link */
/* format video, format image */
.posts .format-video .post-header:before,
.posts .format-video .post-header:after,
.posts .format-image .post-header:before,
.posts .format-image .post-header:after {
  content: none;
}

/* format image */
.format-image .post-excerpt {
  padding-top: 7.5%;
  font-size: 0.9em;
}

.format-image .post-excerpt .image-caption {
  font-weight: 600;
}

/* format audio */
.posts .format-audio .post-header:before,
.posts .format-audio .post-header:after {
  content: none;
}

.post-audio .mejs-container {
  max-width: 100%;
  height: auto !important;
  background: #000;
  padding: 4rem 0;
  color: #FFF;
  position: relative;
}

.post-audio .mejs-controls .mejs-time-rail .mejs-time-handle,
.post-audio .mejs-controls .mejs-horizontal-volume-slider .mejs-horizontal-volume-handle,
.post-audio .mejs-controls .mejs-time-rail .mejs-time-float,
.post-audio .mejs-controls .mejs-time-rail .mejs-time-float-current,
.post-audio .mejs-mediaelement,
.post-audio .mejs-layers {
  display: none;
}

.post-audio .mejs-controls .mejs-button button {
  cursor: pointer;
  display: block;
  text-indent: -9999px;
}

.post-audio .mejs-playpause-button,
.post-audio .mejs-time-rail,
.post-audio .mejs-volume-button,
.post-audio .mejs-horizontal-volume-slider {
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  padding: 4rem 0;
  margin-left: 3%;
  float: left;
}

.post-audio .mejs-horizontal-volume-slider {
  margin-right: 3%;
}

.post-audio .mejs-playpause-button,
.post-audio .mejs-volume-button {
  width: 6.25%;
}

.post-audio .mejs-playpause-button button,
.post-audio .mejs-volume-button button,
.post-audio .mejs-mute button,
.post-audio .mejs-unmute button {
  margin: 0 auto;
  width: 100%;
  height: 31px;
  background: none;
  background-size: 18px auto;
  background-repeat: no-repeat;
  background-position: center;
}

.post-audio .mejs-playpause-button.mejs-play button {
  background-image: url(../../images/icons/1x/audio/play.png);
}

.post-audio .mejs-playpause-button.mejs-pause button {
  background-image: url(../../images/icons/1x/audio/pause.png);
}

.post-audio .mejs-mute button,
.post-audio .mejs-unmute button {
  background-size: 20px auto;
}

.post-audio .mejs-mute button {
  background-image: url(../../images/icons/1x/audio/audio-mute.png);
}

.post-audio .mejs-unmute button {
  background-image: url(../../images/icons/1x/audio/audio-unmute.png);
}

.post-audio .mejs-horizontal-volume-slider {
  margin-top: 12px;
  width: 16.25%;
  cursor: pointer;
}

.post-audio .mejs-horizontal-volume-total,
.post-audio .mejs-horizontal-volume-current,
.post-audio .mejs-controls .mejs-time-rail span {
  height: 8px;
}

.post-audio .mejs-horizontal-volume-total {
  background: #222A34;
}

.post-audio .mejs-horizontal-volume-current {
  position: absolute;
  margin-top: -8px;
  background: #777;
}

.post-audio .mejs-controls .mejs-time-rail {
  margin-top: 12px;
  max-width: 56.25%;
  float: left;
}

.post-audio .mejs-controls .mejs-time-rail span {
  position: absolute;
  display: block;
  max-width: 100%;
  cursor: pointer;
}

.post-audio .mejs-controls .mejs-time-rail .mejs-time-total {
  background: #555D67;
}

.post-audio .mejs-controls .mejs-time-rail .mejs-time-loaded {
  width: 0;
  background: #222A34;
}

.mejs-controls .mejs-time-rail .mejs-time-current {
  width: 0;
  background: #777;
}

.post-audio .mejs-clear {
  clear: both;
}

.post-audio .mejs-android .mejs-controls .mejs-playpause-button,
.post-audio .mejs-ios .mejs-controls .mejs-playpause-button,
.post-audio .mejs-android .mejs-controls .mejs-time-rail,
.post-audio .mejs-ios .mejs-controls .mejs-time-rail {
  padding: 5% 0;
  margin-left: 5%;
}

.post-audio .mejs-android .mejs-controls .mejs-playpause-button,
.post-audio .mejs-ios .mejs-controls .mejs-playpause-button {
  width: 15%;
  margin-left: 0;
}

.post-audio .mejs-android .mejs-controls .mejs-time-rail,
.post-audio .mejs-ios .mejs-controls .mejs-time-rail {
  max-width: 80%;
  margin-right: 5%;
  margin-left: 0;
}

.post-audio .mejs-android .mejs-controls .mejs-volume-button,
.post-audio .mejs-ios .mejs-controls .mejs-volume-button,
.post-audio .mejs-android .mejs-controls .mejs-horizontal-volume-slider,
.post-audio .mejs-ios .mejs-controls .mejs-horizontal-volume-slider {
  display: none;
}

/* format quote, format link */
.post-quote {
  padding: 10%;
  background: #000;
  color: #fff;
}

.post-quote blockquote,
.post-link p {
  display: block;
  font-family: "Montserrat", sans-serif;
  font-size: 1.2em;
  font-weight: 400;
  line-height: 140%;
}

.post-quote cite,
.post-link a {
  display: block;
  margin-top: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.8em;
  font-weight: 700;
}

.post-quote cite {
  font-family: "Montserrat", sans-serif;
}

.post-quote cite:before {
  content: "— ";
}

/* format link */
.post-link {
  padding: 10%;
  background: #000;
  color: #fff;
}

.post-link a {
  color: #777;
  padding-left: 23px;
  background: url(../../images/icons/1x/link-c.png) no-repeat left center;
  background-size: 16px auto;
}

.post-link a:hover {
  color: #777;
  text-decoration: underline;
}

.single .post-link p,
.single .post-quote blockquote {
  font-size: 1.75em;
}

/* format gallery */
.format-gallery .flexslider {
  position: relative;
}

.format-gallery .flex-direction-nav a {
  display: block;
  height: 32px;
  width: 20px;
  background-size: auto 32px;
  background-repeat: no-repeat;
  position: absolute;
  top: 50%;
  margin-top: -16px;
  text-indent: -9999px;
  opacity: 0.5;
  -moz-opacity: 0.5;
  -webkit-opacity: 0.5;
}

.format-gallery .flex-direction-nav .flex-prev {
  left: 16px;
  background-image: url(../../images/icons/1x/chevron-left-w-shade.png);
}

.format-gallery .flex-direction-nav .flex-next {
  right: 16px;
  background-image: url(../../images/icons/1x/chevron-right-w-shade.png);
}

.format-gallery .flex-direction-nav a:hover {
  opacity: 1;
  -moz-opacity: 1;
  -webkit-opacity: 1;
}

.format-gallery .flex-direction-nav .flex-prev:hover {
  left: 12px;
}

.format-gallery .flex-direction-nav .flex-next:hover {
  right: 12px;
}

.format-gallery .slides li {
  position: relative;
}

/* format status */
.posts .format-status .post-excerpt {
  background: #000;
}

.posts .format-status .post-excerpt p,
.format-status .post-content {
  font-family: "Rock Salt", sans-serif;
  color: #fff;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.5);
  font-size: 1.2em;
}

.format-status .post-content {
  color: #333;
  text-shadow: none;
}

/* format chat */
.format-chat .post-content p {
  margin-bottom: 0.25em;
  padding: 8px 16px;
  border-radius: 3px;
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
}

.format-chat .post-content p:nth-child(odd) {
  background: #f5f5f5;
}

.format-chat .more-link {
  margin-top: 1em;
}

/* -------------------------------------------------------------------------------- */
/*	6. Single post
/* -------------------------------------------------------------------------------- */
body.single-post .content {
  width: 67.5%;
}

body.single-post .content.full-width {
  width: 100%;
}

body.single-post .content.center {
  margin: 0 auto;
  width: 944px;
  max-width: 100%;
}

.single-post {
  border-radius: 6px;
  -moz-border-radius: 6px;
  -webkit-border-radius: 6px;
}

.single-post a#shareBtn {
  background-color: #444;
  color: #fff;
  text-align: center;
  width: 100px;
  float: right;
  padding: 10px;
  margin-top: 10px;
  border-radius: 5px;
  text-decoration: none;
}

.single-post a#shareBtn:hover {
  background-color: #000;
  cursor: pointer;
}

/* post header */
.single-post .post-title {
  font-size: 2.25em;
  padding: 2rem 0 0;
}

.single-post .postp {
  line-height: 1.5em;
}

.single-post .post-content {
  padding: 0 2rem 4rem;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

/* format audio */
.single-post .featured-media .mejs-playpause-button.mejs-play button,
.single-post .featured-media .mejs-playpause-button.mejs-pause button {
  background-size: 24px auto;
}

.single-post .featured-media .mejs-playpause-button.mejs-play button {
  background-image: url(../../images/icons/1x/audio/play-big.png);
}

.single-post .featured-media .mejs-playpause-button.mejs-pause button {
  background-image: url(../../images/icons/1x/audio/pause-big.png);
}

.single-post .featured-media .post-audio .mejs-mute button,
.single-post .featured-media .post-audio .mejs-unmute button {
  background-size: 32px auto;
}

.single-post .featured-media .post-audio .mejs-mute button {
  background-image: url(../../images/icons/1x/audio/audio-mute-big.png);
}

.single-post .featured-media .post-audio .mejs-unmute button {
  background-image: url(../../images/icons/1x/audio/audio-unmute-big.png);
}

/* format gallery */
.single-post .format-gallery .flex-direction-nav a {
  height: 42px;
  width: 30px;
  background-size: auto 42px;
  margin-top: -21px;
}

.single-post .format-gallery .flex-direction-nav .flex-prev {
  background-image: url(../../images/icons/1x/chevron-left-w-shade-big.png);
}

.single-post .format-gallery .flex-direction-nav .flex-next {
  background-image: url(../../images/icons/1x/chevron-right-w-shade-big.png);
}

/* format quote */
.single-post .post-quote cite {
  font-size: 1em;
  margin-top: 30px;
}

/* single post meta */
.single-post .post-meta-container {
  position: relative;
  background: #000;
}

.single-post .post-meta-container:after {
  content: "";
  display: block;
  background: #3F4854;
  position: absolute;
  z-index: 1;
  top: 0;
  right: 0;
  bottom: 0;
  left: 60%;
}

.single-post .post-meta {
  float: right;
  width: 40%;
  padding: 30px;
  position: relative;
  z-index: 10;
}

.single-post .post-meta p,
.single-post .post-meta > a,
.post-nav a {
  display: block;
  margin-top: 12px;
  font-size: 0.85em;
  line-height: 120%;
  font-weight: 700;
  min-height: 20px;
  padding: 1px 0 1px 23px;
  background: no-repeat left center;
  background-size: 16px auto;
  color: #9499A0;
}

.single-post .post-meta p:first-child {
  margin-top: 0;
}

.single-post .post-meta p.post-date {
  background-image: url(../../images/icons/1x/clock-g.png);
}

.single-post .post-meta a.zilla-likes {
  background-image: url(../../images/icons/1x/heart-g.png);
}

.single-post .post-meta a.zilla-likes:hover {
  background-image: url(../../images/icons/1x/heart-c.png);
}

.single-post .post-meta p.post-categories {
  background-image: url(../../images/icons/1x/folder-g.png);
}

.single-post .post-meta p.post-tags {
  background-image: url(../../images/icons/1x/tag-g.png);
}

.single-post .post-meta a {
  color: #9499A0;
}

.single-post .post-meta a:hover {
  color: #777;
}

/* post navigation */
.post-nav {
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 20px;
}

.post-nav a {
  background-position: left 3px;
}

.post-nav a:first-child {
  margin-top: 0;
}

a.post-nav-prev {
  background-image: url(../../images/icons/1x/prev-g.png);
}

a.post-nav-prev:hover {
  background-image: url(../../images/icons/1x/prev-c.png);
}

a.post-nav-next {
  background-image: url(../../images/icons/1x/next-g.png);
}

a.post-nav-next:hover {
  background-image: url(../../images/icons/1x/next-c.png);
}

.single-post a.post-edit-link {
  background-image: url(../../images/icons/1x/edit-g.png);
  background-position: left 5px;
}

.single-post a.post-edit-link:hover {
  background-image: url(../../images/icons/1x/edit-c.png);
}

/* post-author */
.post-author {
  width: 60%;
  padding: 30px;
  float: left;
  position: relative;
  overflow: hidden;
}

.post-author:before,
.post-author:after {
  content: "";
  display: block;
  position: absolute;
  left: 30px;
}

.post-author:before {
  z-index: 100;
  top: 0;
  width: 40px;
  height: 70px;
  background: #777 url(../../images/icons/1x/author-w.png) no-repeat center 29px;
  background-size: 22px auto;
}

.post-author:after {
  top: 50px;
  border: 20px solid transparent;
  border-left-color: #777;
  border-right-color: #777;
}

.post-author-content {
  margin-left: 70px;
}

.post-author h4 {
  font-family: "Montserrat", sans-serif;
  font-size: 1.1em;
  font-weight: 700;
  color: #fff;
  margin-bottom: 15px;
}

.post-author p {
  font-size: 0.875em;
  line-height: 150%;
  color: #9499A0;
}

.author-links {
  margin-top: 18px;
}

.author-links a {
  display: inline-block;
  width: 36px;
  height: 36px;
  background-color: rgba(255, 255, 255, 0.1);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 16px auto;
  margin-left: 5px;
  border-radius: 999px;
  -moz-border-radius: 999px;
  -webkit-border-radius: 999px;
  text-indent: -9999px;
}

.author-links a:first-child {
  margin-left: 0;
}

.author-links a.author-link-posts {
  background-image: url(../../images/icons/1x/archive-w.png);
}

.author-links a.author-link-website {
  background-image: url(../../images/icons/1x/home-w.png);
}

.author-links a.author-link-mail {
  background-image: url(../../images/icons/1x/social/mail-w.png);
}

.author-links a.author-link-twitter {
  background-image: url(../../images/icons/1x/social/twitter-w.png);
}

.author-links a:hover {
  background-color: #777;
}

/* -------------------------------------------------------------------------------- */
/*	7. Post content
/* -------------------------------------------------------------------------------- */
.post-content a:hover {
  text-decoration: underline;
}

.post-content p,
.post-content blockquote,
.post-content ul,
.post-content ol,
.post-content address,
.post-content dl,
.post-content .wp-caption,
.post-content pre {
  line-height: 180%;
  margin-bottom: 1.1em;
  -ms-word-wrap: break-word;
  word-wrap: break-word;
  text-align: left;
}

.post-content > *:first-child {
  margin-top: 0;
}

.post-content *:last-child {
  margin-bottom: 0;
}

.post-content h1, .post-content h2, .post-content h3, .post-content h4, .post-content h5, .post-content h6 {
  margin: 50px 0 30px;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  color: #333;
}

.post-content h1 {
  font-size: 2em;
}

.post-content h2 {
  font-size: 1.75em;
  line-height: 1.5em;
}

.post-content h3 {
  font-size: 1.5em;
}

.post-content h4 {
  font-size: 1.25em;
  font-weight: 400;
}

.post-content h5 {
  font-size: 1em;
  font-weight: 400;
}

.post-content h6 {
  font-size: 0.9em;
  font-weight: 700;
  text-transform: uppercase;
}

.post-content h1 + h1, .post-content h1 + h2, .post-content h1 + h3, .post-content h1 + h4, .post-content h1 + h5, .post-content h1 + h6,
.post-content h2 + h1, .post-content h2 + h2, .post-content h2 + h3, .post-content h2 + h4, .post-content h2 + h5, .post-content h2 + h6,
.post-content h3 + h1, .post-content h3 + h2, .post-content h3 + h3, .post-content h3 + h4, .post-content h3 + h5, .post-content h3 + h6,
.post-content h4 + h1, .post-content h4 + h2, .post-content h4 + h3, .post-content h4 + h4, .post-content h4 + h5, .post-content h4 + h6,
.post-content h5 + h1, .post-content h5 + h2, .post-content h5 + h3, .post-content h5 + h4, .post-content h5 + h5, .post-content h5 + h6,
.post-content h6 + h1, .post-content h6 + h2, .post-content h6 + h3, .post-content h6 + h4, .post-content h6 + h5, .post-content h6 + h6 {
  margin-top: 30px;
}

.post-content blockquote {
  position: relative;
  font-size: 1em;
  font-weight: 300;
  font-weight: normal;
  margin: 40px 0;
}

.post-content blockquote:before,
.post-content blockquote:after {
  content: "";
  display: block;
  width: 128px;
  height: 3px;
  background: #eee;
  margin: 40px auto;
}

.post-content blockquote p {
  font-size: 1.2em;
  line-height: 160%;
  font-weight: 300;
  text-align: center;
}

.post-content cite {
  font-family: "Montserrat", sans-serif;
  font-size: 0.9rem;
  font-weight: bold;
  text-transform: uppercase;
  line-height: 140%;
  text-align: center;
}

.post-content cite:before {
  content: "— ";
}

.post-content blockquote cite {
  display: block;
  margin-top: 1em;
}

.post-content blockquote cite em {
  font-style: italic;
  font-weight: bold;
}

em, q {
  font-style: italic;
}

.post-content strong em,
.post-content em strong {
  font-weight: bold;
  font-style: italic;
}

.post-content big {
  font-size: 1.25em;
}

abbr, acronym {
  cursor: help;
}

.post-content .highlight {
  background: #fcf8a5;
  width: auto;
  display: inline;
  padding: 2px 3px;
}

.post-content kbd,
.post-content code {
  padding: 5px;
  border-radius: 3px;
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
}

.post-content dl {
  line-height: 160%;
}

.post-content dl dt {
  font-weight: bold;
}

.post-content hr {
  width: 50%;
  height: 5px;
  background: #EEE;
  margin: 2em auto;
  border: 0;
}

.post-content ul {
  list-style: disc;
  margin-left: 1.5em;
}

.post-content ul ul {
  list-style: circle;
}

.post-content ul ul ul {
  list-style: square;
}

.post-content ol {
  list-style: decimal;
  margin-left: 1.5em;
}

.post-content ol ol {
  list-style: lower-alpha;
}

.post-content ol ol ol {
  list-style: lower-roman;
}

.post-content ul ul,
.post-content ul ol,
.post-content ol ul,
.post-content ol ol {
  margin-bottom: 0;
}

.post-content li {
  margin-top: 0.5em;
  line-height: 170%;
}

.post-content ol > li:last-child,
.post-content ul > li:last-child {
  margin-bottom: 0;
}

.post-content address {
  padding: 3% 3.5%;
  background: #f1f1f1;
}

.page .post-content.faqs h3,
.page .post-content.testimonials h3,
.page-template-template-fullwidth h3 {
  font-size: 1.25em;
  font-weight: 600;
  margin: 1.5em 0 0.125em;
}

/* Post media --------------------------------------- */
img.alignleft,
.alignleft img,
img.aligncenter,
.aligncenter img,
img.alignright,
.alignright img {
  box-sizing: border-box;
  padding: 5px;
  border: 1px solid #EEE;
}

.post-content .alignleft,
.post-content .alignright {
  margin-bottom: 1.2em;
  max-width: 300px;
}

.post-content .wp-caption a,
.post-content .wp-caption img {
  display: block;
}

.post-content .wp-caption .alignleft,
.post-content .wp-caption .alignright {
  margin-bottom: 0;
}

.post-content .alignleft {
  float: left;
  margin-right: 1em;
}

.post-content .alignright {
  float: right;
  margin-left: 1em;
}

.post-content .aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.post-content .wp-caption-text,
.post-content .gallery-caption {
  font-size: 0.8em;
  font-weight: 700;
  color: #999;
  text-align: center;
  padding-top: 0.5em;
}

.post-content .gallery-caption {
  font-size: 16px;
  line-height: 24px;
}

/* Tables --------------------------------------- */
.post-content table {
  border-collapse: collapse;
  border-spacing: 0;
  empty-cells: show;
  font-size: 0.9em;
  width: 100%;
}

.post-content th,
.post-content td {
  padding: 2%;
  margin: 0;
  overflow: visible;
  line-height: 120%;
  border-bottom: 1px solid #DDD;
}

.post-content caption {
  text-align: center;
  padding: 2%;
}

.post-content thead {
  vertical-align: bottom;
  white-space: nowrap;
}

.post-content th {
  font-weight: bold;
}

.post-content table tbody > tr:nth-child(odd) > td {
  background: #f9f9f9;
}

/* Forms --------------------------------------- */
.post-content fieldset {
  padding: 25px;
  border: 2px solid #eee;
  margin-bottom: 1em;
}

.post-content fieldset legend {
  font-family: "Montserrat", sans-serif;
  font-size: 0.9rem;
  line-height: 1;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 10px 12px;
  background: #777;
  color: #fff;
}

.post-content label {
  font-family: "Roboto", sans-serif;
  font-size: 1rem;
  font-weight: 700;
}

.post-content input,
.post-content textarea {
  font-family: "Roboto", sans-serif;
  -webkit-font-smoothing: antialiased;
}

.post-content input[type=text],
.post-content input[type=tel],
.post-content input[type=url],
.post-content input[type=password],
.post-content input[type=email],
.post-content textarea {
  width: 100%;
  padding: 14px 16px;
  font-size: 0.85em;
  border: none;
  color: #333;
  background: #fdfdfd;
  border-radius: 3px;
  -webkit-transition: background 0.2s ease-in-out;
  -moz-transition: background 0.2s ease-in-out;
  -ms-transition: background 0.2s ease-in-out;
  -o-transition: background 0.2s ease-in-out;
  transition: background 0.2s ease-in-out;
  -webkit-appearance: none;
  resize: none;
  padding: 0.75rem;
  border-radius: 25px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
}

.post-content textarea {
  height: 180px;
  line-height: 140%;
}

.post-content input[type=text]:focus,
.post-content input[type=tel]:focus,
.post-content input[type=url]:focus,
.post-content input[type=password]:focus,
.post-content textarea:focus {
  background: #fdfdfd;
  outline: none;
}

.post-content input[type=submit],
.post-content input[type=reset],
.post-content input[type=button] {
  margin: 0;
  border: none;
  color: #fff;
  font-size: 0.9rem;
  font-weight: 500;
  line-height: 1;
  -webkit-appearance: none;
  width: 150px;
}

.post-content input[type=submit]:focus,
.post-content input[type=submit]:active {
  outline: none;
}

h2#sideneed {
  line-height: 1.5em;
  margin-bottom: 1.5em;
}

#sideBuy {
  width: 100%;
  background-color: #b3d3e0;
  padding: 5%;
  overflow: hidden;
  border-radius: 25px;
}
#sideBuy a {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  text-decoration: none;
  color: #000;
}

#sideBuyleft {
  width: 40%;
  float: left;
}

#sideBuyright {
  width: 60%;
  float: right;
  padding: 5% 0;
}

#sideBuyright h2 {
  font-family: "Rock Salt", sans-serif;
  font-size: 1.25em;
  line-height: 1.5em;
  text-align: center;
}

#sideBuy img {
  width: 100%;
  height: auto;
  padding: 0;
}

#sideBuy a {
  color: #000;
}

#sideBuy a:hover {
  color: #444;
}

.sidebar a#view-pricing {
  margin: 1.5em auto 0;
  width: 100%;
  max-width: none;
}

.sidebar a#view-pricing:hover {
  background-color: #000;
}

.sideoption h2 {
  margin: 0 !important;
  padding: 0.5em 0;
  font-family: "Rock Salt", sans-serif;
  font-size: 2em;
  line-height: 1em;
  text-align: center;
  font-size: 1em;
}

.sideoption p {
  padding: 0 0.75em;
}

.sideoption h3 {
  display: block;
  margin: 0;
  padding: 0.5em 0;
  font-family: "Rock Salt", sans-serif;
  font-size: 1.125em;
  line-height: 1.5em;
  text-align: center;
}

a.buynow {
  display: block;
  margin: 0 auto 2em !important;
  text-align: center;
  text-decoration: none !important;
  width: 60%;
}

.testimonialHolder {
  margin: 0;
}

.testimonialHolder p {
  margin: 0;
}

.testimonialHolder p.testText:before {
  content: open-quote;
}

.testimonialHolder p.testText:after {
  content: close-quote;
}

/* -------------------------------------------------------------------------------- */
/*	8. Comments
/* -------------------------------------------------------------------------------- */
.content .comments {
  padding: 10%;
  background: #fff;
}

.nocomments {
  padding: 10%;
  text-align: center;
  text-transform: uppercase;
  font-weight: 700;
  color: #999;
}

.comments + .nocomments {
  border-top: 1px solid #eee;
}

.comments-title-container {
  padding-bottom: 20px;
  border-bottom: 1px solid #eee;
  margin-bottom: 40px;
  font-family: "Montserrat", sans-serif;
}

.comments-title {
  font-size: 1.75em;
  font-weight: 700;
  color: #000;
}

.add-comment-title {
  font-size: 1rem;
  text-transform: uppercase;
  font-weight: 700;
  margin-top: 14px;
}

.add-comment-title a:hover {
  text-decoration: underline;
}

/* comment */
.comments div.comment {
  margin-top: 40px;
}

.comments .commentlist > li.comment:first-child > div.comment:first-child {
  margin-top: 0;
}

.comments div.comment {
  position: relative;
}

.comments .children {
  margin-left: 5%;
}

.comment-inner {
  margin-left: 110px;
  padding: 20px;
  background: #eee;
  position: relative;
  border-radius: 3px;
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
}

.comment-inner:after {
  content: "";
  display: block;
  border: 12px solid transparent;
  border-right-color: #eee;
  position: absolute;
  top: 28px;
  left: 0;
  margin-left: -24px;
}

.comment .avatar {
  float: left;
  width: 80px;
  border-radius: 3px;
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
}

.comment.bypostauthor {
  position: relative;
}

.comment.bypostauthor:after {
  content: "";
  display: block;
  width: 32px;
  height: 32px;
  background: #777 url(../../images/icons/1x/author-w.png) no-repeat center 8px;
  background-size: 14px auto;
  border-radius: 999px;
  -moz-border-radius: 999px;
  -webkit-border-radius: 999px;
  position: absolute;
  top: 0;
  left: 0;
  margin-top: -8px;
  margin-left: -8px;
}

.comment-header {
  margin-bottom: 25px;
}

.comment-header cite {
  display: block;
  font-family: "Montserrat", sans-serif;
  font-size: 1em;
  font-weight: 700;
  margin-bottom: 8px;
}

.comment-header cite,
.comment-header cite a {
  color: #000;
}

.comment-header cite a:hover {
  color: #777;
}

.comment-header p {
  font-size: 0.85em;
}

.comment-header p,
.comment-header p a {
  color: #999;
}

.comment-header p a:hover {
  color: #666;
}

/* comment-content */
.comment-content {
  font-size: 0.9em;
}

.comment-content a:hover {
  text-decoration: underline;
}

.comment-content p,
.comment-content li,
.comment-content blockquote {
  line-height: 150%;
  margin-top: 1em;
  -ms-word-wrap: break-word;
  word-wrap: break-word;
}

.comment-content *:first-child {
  margin-top: 0;
}

.comment-content *:last-child {
  margin-bottom: 0;
}

.comment-content h1, .comment-content h2, .comment-content h3, .comment-content h4, .comment-content h5, .comment-content h6 {
  margin: 50px 0 20px;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  font-size: 1.2em;
}

.comment-content blockquote {
  padding: 20px;
  background: #ddd;
}

.comment-content ul {
  list-style: disc;
  margin-left: 1.5em;
}

.comment-content ul ul {
  list-style: circle;
}

.comment-content ul ul ul {
  list-style: square;
}

.comment-content ol {
  list-style: decimal;
  margin-left: 1.5em;
}

.comment-content ol ol {
  list-style: lower-alpha;
}

.comment-content ol ol ol {
  list-style: lower-roman;
}

.comment-content ul ul,
.comment-content ul ol,
.comment-content ol ul,
.comment-content ol ol {
  margin-bottom: 0;
}

.comment-content li {
  margin-top: 0.5em;
  line-height: 170%;
}

.comment-content ol > li:last-child,
.comment-content ul > li:last-child {
  margin-bottom: 0;
}

.comment-content address {
  padding: 20px;
  background: #ddd;
  line-height: 140%;
}

.comment-content pre {
  padding: 20px;
  background: #ddd;
  line-height: 150%;
  overflow-x: scroll;
}

/* comment actions */
.comment-actions {
  position: absolute;
  top: 22px;
  right: 20px;
}

.comment-actions a {
  display: block;
  position: relative;
  float: left;
  width: 32px;
  height: 32px;
  background: #2B3542 no-repeat center;
  background-size: 16px auto;
  border-radius: 999px;
  -moz-border-radius: 999px;
  -webkit-border-radius: 999px;
  text-indent: -9999px;
}

.comment-actions a + a {
  margin-left: -8px;
}

.comment-actions .comment-reply-link {
  background-image: url(../../images/icons/1x/reply-w.png);
}

.comment-actions .comment-edit-link {
  background-image: url(../../images/icons/1x/edit-w.png);
}

.comment-actions a:hover {
  background-color: #777;
  color: #fff;
  z-index: 10;
}

/* comment navigation */
.comment-nav-below {
  margin-top: 40px;
  border-top: 1px solid #eee;
  padding-top: 20px;
  font-size: 0.9em;
  font-weight: 700;
}

.comment-nav-below a {
  color: #666;
}

/* pingbacks */
.comments .pingbacks {
  padding-top: 40px;
  border-top: 1px solid #eee;
  margin-top: 40px;
}

.pingbacks-title {
  font-family: "Montserrat", sans-serif;
  font-size: 1.25em;
  margin-bottom: 20px;
  color: #000;
}

.pingbacklist .pingback {
  padding: 15px;
  line-height: 130%;
}

.pingbacklist .pingback a {
  color: #767676;
}

.pingbacklist .pingback a:hover {
  color: #777;
}

.pingbacklist .pingback:nth-child(2n) {
  background-color: #eee;
}

/* -------------------------------------------------------------------------------- */
/*	9. Respond
/* -------------------------------------------------------------------------------- */
.comment-respond {
  padding: 10%;
  background: #fff;
  border-top: 1px solid #eee;
}

.comments .comment-respond {
  padding: 10% 0;
  border-top: none;
}

.comment-reply-title {
  font-family: "Montserrat", sans-serif;
  font-size: 1.75em;
  font-weight: 700;
  color: #000;
}

.comment-reply-title #cancel-comment-reply-link {
  font-size: 0.9rem;
  text-transform: uppercase;
  font-weight: 700;
  margin-left: 5px;
}

.comment-reply-title #cancel-comment-reply-link:hover {
  text-decoration: underline;
}

.comment-notes,
.logged-in-as {
  color: #666;
  line-height: 130%;
  margin-bottom: 40px;
  margin-top: 25px;
}

.logged-in-as a:hover {
  text-decoration: underline;
}

.comment-form {
  margin-top: 10px;
}

.comment-form p {
  margin-top: 14px;
  position: relative;
}

.comment-form p:first-child {
  margin-top: 0;
}

.comment-form label,
.comment-form .required {
  display: none;
}

.comment-form input[type=text],
.comment-form input[type=email],
.comment-form textarea {
  display: block;
  width: 100%;
  padding: 16px 18px;
  border-radius: 3px;
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
  background: #f1f1f1;
  color: #333;
  border: 1px solid #eee;
  font-family: "Montserrat", sans-serif;
  font-size: 1em;
  -webkit-font-smoothing: antialiased;
  margin: 0;
}

.comment-form-author,
.comment-form-email,
.comment-form-url {
  width: 75%;
}

.comment-form input[type=text],
.comment-form input[type=email] {
  position: relative;
  padding-right: 60px;
  background-repeat: no-repeat;
  background-position: 96% center;
  background-size: auto 24px;
}

input#author {
  background-image: url(../../images/icons/1x/author-g.png);
}

input#email {
  background-image: url(../../images/icons/1x/social/mail-g.png);
}

input#url {
  background-image: url(../../images/icons/1x/home-g.png);
  background-size: 24px auto;
}

.comment-form textarea {
  height: 250px;
}

.comment-form input[type=text]:focus,
.comment-form input[type=email]:focus,
.comment-form textarea:focus {
  outline: none;
  color: #fff;
  background-color: #000;
}

input#author:focus {
  background-image: url(../../images/icons/1x/author-w.png);
}

input#email:focus {
  background-image: url(../../images/icons/1x/social/mail-w.png);
}

input#url:focus {
  background-image: url(../../images/icons/1x/home-w.png);
}

.form-allowed-tags,
.form-allowed-tags code {
  line-height: 160%;
}

.comment-notes,
.form-allowed-tags,
.logged-in-as {
  font-size: 0.9em;
  color: #666;
}

p.form-submit {
  margin-top: 30px;
}

.form-submit #submit {
  padding: 16px 20px;
  background: none;
  border: none;
  margin: none;
  font-family: "Montserrat", sans-serif;
  font-size: 0.9em;
  font-weight: 400;
  color: #fff;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.1);
}

.form-submit #submit:hover {
  cursor: pointer;
  background: #777;
}

/* -------------------------------------------------------------------------------- */
/*	10. Page & Page Templates
/* -------------------------------------------------------------------------------- */
.posts .page {
  width: 100%;
  position: relative;
  background: #fff;
  border-radius: 3px;
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

/* Buy Now ---------------------------------------------------------- */
.intro-text {
  text-align: center;
  margin: 2em 0 0 0;
}

.options-close:hover {
  color: #fff;
  opacity: 1;
  cursor: pointer;
}

#optionsHolder {
  width: 100%;
  overflow: hidden;
  margin: 2em 0;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 2rem;
}

.buyoption {
  width: 30%;
  border-radius: 25px;
  overflow: hidden;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
  background-color: #fff;
}

.buyoption.hl {
  background-position: 0 -100px;
}

.buyoption.hlp {
  background-position: -100px 50px;
}

.buyoption h2 {
  display: block;
  background-color: #b3d3e0;
  margin: 0 !important;
  padding: 0.75em 0;
  font-family: "Rock Salt", sans-serif;
  font-size: 2em;
  line-height: 1em;
  text-align: center;
}

.buyoption p {
  padding: 0 0.75em;
}

.buyoption h3 {
  display: block;
  margin: 0;
  padding: 1.5rem 0;
  font-family: "Rock Salt", sans-serif;
  font-size: 1.25em;
  line-height: 1.5em;
  text-align: center;
}

a.buynow {
  display: block;
  margin: 2rem auto !important;
  padding: 10px;
  text-align: center;
  text-decoration: none !important;
  width: 60%;
}

/* Options */
.buy-now-form {
  width: 100%;
  margin: 0 0 2em 0;
  overflow: hidden;
}

.buy-now-form table {
  width: 100%;
  overflow: hidden;
}
.buy-now-form table input {
  width: 100%;
  margin: 1em 0 !important;
  border: 0;
  padding: 0.75rem;
  border-radius: 25px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
}

#formLeft {
  width: 30%;
  float: left;
}

#formLeft .youselected {
  display: block;
  text-align: center;
  margin: 0 0 1rem 0;
}

#formLeft .buyoption {
  width: 100%;
  float: none;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
}

#formLeft .buyoption p {
  margin-bottom: 2em;
}

#formRight {
  width: 65%;
  margin-left: 5%;
  float: right;
  padding-top: 2rem;
}
#formRight p {
  margin-bottom: 2rem;
}

a.changeselection {
  display: block;
  text-decoration: underline;
  text-align: center;
  margin-top: 1em;
}

.formHolder {
  width: 100%;
  margin: 0 0 2em 0;
  overflow: hidden;
}

input#submit {
  float: right;
  margin: 1em 0;
}

.post-content #formRight table tbody > tr:nth-child(2n+1) > td {
  background: none;
}

.post-content #formRight th, .post-content #formRight td {
  border: none;
  padding: 1em 0;
}

.post-content #formRight td {
  border: none;
  padding: 0.25em 0;
}

.aleft {
  text-align: left !important;
}

.acenter {
  text-align: center !important;
}

/* Contributors template ---------------------------------------------------------- */
.post-content + .contributors-container {
  border-top: 1px solid #eee;
}

.authors-row {
  position: relative;
  padding: 10%;
  border-top: 1px solid #eee;
}

.authors-row:first-child {
  border-top: none;
}

.authors-row:before {
  content: "";
  display: block;
  width: 1px;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  background: #eee;
}

.authors-row .author-info {
  width: 45%;
  margin-left: 10%;
  text-align: center;
}

.authors-row .author-info:first-child {
  margin-left: 0;
}

.author-avatar {
  display: inline-block;
  width: 134px;
  height: auto;
  margin: 0 auto 25px auto;
  border: 6px solid #eee;
  border-radius: 9999px;
  -moz-border-radius: 9999px;
  -webkit-border-radius: 9999px;
}

.author-avatar img {
  display: block;
  margin: 0 auto;
  border-radius: 9999px;
  -moz-border-radius: 9999px;
  -webkit-border-radius: 9999px;
}

.author-info h4 {
  font-family: "Montserrat", sans-serif;
  font-size: 1.5em;
  font-weight: 700;
  text-align: center;
  margin-bottom: 10px;
}

.author-info h4 a {
  color: #000;
}

.author-info h4 a:hover {
  color: #777;
}

.author-info h5 {
  font-family: "Montserrat", sans-serif;
  text-align: center;
  margin-bottom: 25px;
}

.author-info h5 a {
  color: #999;
}

.author-info h5 a:hover {
  color: #777;
}

.author-description {
  line-height: 140%;
  text-align: center;
}

.author-info .author-links a {
  background-color: #000;
}

.author-info .author-links a:hover {
  background-color: #777;
}

/* Image ---------------------------------------------------------- */
.single-post .post-meta p.image-resolution {
  background-image: url(../../images/icons/1x/image-g.png);
}

.single-attachment .post-author:before {
  background-image: url(../../images/icons/1x/image-w.png);
  background-position: center 32px;
}

/* -------------------------------------------------------------------------------- */
/*	10. Pagination
/* -------------------------------------------------------------------------------- */
.page-title {
  font-family: "Rock Salt", sans-serif;
  font-size: 2em;
  line-height: 1em;
  text-align: center;
  margin-bottom: 60px;
  text-align: center;
}

.page-title h5 {
  display: inline-block;
  padding-bottom: 4px;
  border-bottom: 2px solid #ccc;
  font-family: "Montserrat", sans-serif;
  font-size: 0.9em;
  font-weight: 700;
  text-transform: uppercase;
  text-align: center;
}

.page-title h3 {
  margin-top: 15px;
  font-family: "Montserrat", sans-serif;
  font-size: 1.75em;
  font-weight: 400;
  text-align: center;
  color: #000;
}

.tag-archive-meta p {
  text-align: center;
  margin-top: 15px;
  color: #767676;
  font-style: italic;
}

/* archive navigation */
.archive-nav a, .archive-nav2 a {
  font-size: 1em;
  padding: 16px 20px;
  background: #444;
  border-radius: 3px;
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
  color: #fff;
  text-decoration: none !important;
}

.archive-nav a:hover, .archive-nav2 a:hover {
  background: #000;
  color: #fff;
}

/* search */
.search-no-results .post-content p {
  text-align: center;
}

/* -------------------------------------------------------------------------------- */
/*	11. Sidebar
/* -------------------------------------------------------------------------------- */
.sidebar {
  width: 100%;
  max-width: 350px;
  position: sticky;
  top: 2rem;
  overflow: hidden;
  padding: 2%;
}

.sidebar .widget {
  padding: 30px;
  border-top: 1px solid #EEE;
}

.sidebar .widget:first-child {
  border-top: none;
}

.widget-title {
  font-family: "Montserrat", sans-serif;
  font-size: 0.9em;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.sidebar .widget-content {
  font-size: 0.85em;
  color: #767676;
}

.widget-content a:hover {
  text-decoration: underline;
}

.sidebar .widget-content p {
  line-height: 150%;
}

.widget-content ul li {
  position: relative;
  margin-top: 10px;
  padding: 1px 0 1px 14px;
  line-height: 130%;
}

.widget-content ul li:before {
  content: "»";
  position: absolute;
  left: 0;
  top: 0;
  color: #777;
  font-size: 18px;
}

.widget-content > ul > li:first-child {
  margin: 0;
}

.widget-content li ul > li:first-child {
  margin-top: 10px;
}

.widget-content .page_item_has_children {
  padding-bottom: 0;
}

.widget-content li ul li {
  padding-left: 15px;
}

.widget-content ul li .post-date {
  margin-left: 5px;
  color: #999;
}

.widget-content > ul > li:first-child {
  border-top: 0;
}

/* Widget tag cloud --------------------------------------- */
.tagcloud a {
  display: block;
  float: left;
  padding: 8px 11px;
  margin: 0 5px 5px 0;
  background: #BBB;
  font-size: 0.8em !important;
  line-height: 1;
  color: #FFF;
  border-radius: 3px;
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
}

.tagcloud a:hover {
  background-color: #777;
  color: #fff;
  text-decoration: none;
}

/* Widget search --------------------------------------- */
#uplink {
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  position: fixed;
  right: 2em;
  bottom: -100px;
  z-index: 2000;
  color: rgba(0, 0, 0, 0.6);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  overflow: hidden;
  text-align: center;
  background-color: rgba(255, 255, 255, 0.85);
  box-shadow: 1px 1px 1px 1px rgba(0, 0, 0, 0.25);
  transition: background-color 0.5s ease, bottom 0.5s ease;
}
#uplink.up {
  bottom: 3em !important;
}

#uplink:hover {
  background-color: rgb(255, 255, 255);
}

.footer {
  display: none;
}

.wrapper .searchform,
.footer .searchform {
  position: relative;
}

.wrapper .searchform .s,
.footer .searchform .s {
  display: block;
  width: 100%;
  padding: 16px 55px 16px 20px;
  border: none;
  margin: 0;
  background: #ddd;
  color: #000;
  border-radius: 3px;
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
  font-family: "Montserrat", sans-serif;
  font-size: 0.9em;
  -webkit-font-smoothing: antialiased;
}

.wrapper .searchform .s:focus,
.footer .searchform .s:focus {
  background-color: #000;
  outline: none;
}

.wrapper .searchform .searchsubmit,
.footer .searchform .searchsubmit {
  display: block;
  height: 36px;
  width: 36px;
  border: none;
  position: absolute;
  top: 50%;
  margin-top: -18px;
  right: 10px;
  text-indent: -9999px;
  background: url(../../images/icons/1x/spyglass-g.png) no-repeat center;
  background-size: 24px auto;
}

.wrapper .searchform .searchsubmit:hover,
.footer .searchform .searchsubmit:hover {
  cursor: pointer;
  background-image: url(../../images/icons/1x/spyglass-c.png);
}

.social-footer {
  float: right;
  margin: -5px 2em 0 0;
}

.social-footer a {
  font-size: 1.5em;
  margin: 0 0.5rem;
}

/* Widget calendar --------------------------------------- */
#wp-calendar {
  color: #888;
  width: 100%;
  max-width: 100%;
  text-align: center;
  font-size: 0.9em;
}

#wp-calendar a {
  color: #1abc9c;
}

#wp-calendar,
#wp-calendar caption,
#wp-calendar tr,
#wp-calendar td,
#wp-calendar th {
  text-align: center;
}

#wp-calendar th,
#wp-calendar td {
  padding: 4% 2%;
}

#wp-calendar caption,
#wp-calendar thead {
  color: #666;
}

#wp-calendar caption {
  font-family: "Montserrat", sans-serif;
  font-size: 1rem;
  color: #666;
  text-transform: capitalize;
  padding-bottom: 20px;
}

#wp-calendar thead th {
  font-size: 0.9em;
  font-weight: 700;
  text-transform: uppercase;
  border-bottom: 1px solid #eee;
  border-top: 1px solid #eee;
}

#wp-calendar tbody {
  border-bottom: 1px solid #eee;
}

#wp-calendar tfoot td {
  padding: 0;
}

#wp-calendar tfoot #prev {
  text-align: left;
}

#wp-calendar tfoot #next {
  text-align: right;
}

#wp-calendar tfoot a {
  display: block;
  color: #999;
  padding: 12px 0;
  font-size: 0.9em;
  font-weight: 700;
  text-transform: uppercase;
}

#wp-calendar tfoot a:hover {
  text-decoration: none;
  color: #1abc9c;
}

/* Dribbble widget --------------------------------------- */
.dribbble-shot,
.dribbble-shot img {
  display: block;
}

.dribbble-shot {
  width: 47.5%;
  float: left;
  margin-right: 5%;
  margin-bottom: 5%;
  padding: 6px;
  background: #f1f1f1;
}

.dribbble-shot:nth-child(2n) {
  margin-right: 0;
}

.dribbble-shot:hover {
  background-color: #777;
}

.widgetmore {
  display: block;
  clear: both;
}

/* Flickr widget --------------------------------------- */
.flickr_badge_image a,
.flickr_badge_image img {
  display: block;
}

.flickr_badge_image {
  width: 21.25%;
  float: left;
  margin-left: 5%;
  margin-bottom: 5%;
}

.flickr_badge_image a {
  padding: 4px;
  background: #f1f1f1;
}

.flickr_badge_image a:hover {
  background-color: #777;
}

.flickr_badge_image:nth-child(2),
.flickr_badge_image:nth-child(6),
.flickr_badge_image:nth-child(10),
.flickr_badge_image:nth-child(14) {
  margin-left: 0;
}

/* -------------------------------------------------------------------------------- */
/*	11. Footer
/* -------------------------------------------------------------------------------- */
.footer .widget {
  margin-top: 40px;
  border-top: 4px solid #333;
  padding-top: 40px;
}

.footer .widget:first-child {
  margin: 0;
  border: none;
  padding: 0;
}

.footer .widget-title {
  color: #FFF;
  letter-spacing: 1px;
  font-size: 0.79em;
}

.footer .widget-content {
  color: #767676;
  font-size: 0.95em;
}

.footer .widget-content p {
  line-height: 160%;
}

.widget-content p + p {
  margin-top: 1em;
}

/* Widgets --------------------------------------- */
/* Widget search */
.footer .widget_search .s {
  background: #333;
}

/* widget tagcloud */
.footer .tagcloud a {
  background-color: #333;
}

.footer .tagcloud a:hover {
  text-decoration: none;
  background-color: #777;
}

/* widget calendar */
.footer #wp-calendar caption {
  color: #fff;
}

.footer #wp-calendar thead th {
  border: none;
  border-top: 1px solid #3B3B3B;
  border-bottom: 1px solid #3B3B3B;
}

.footer #wp-calendar tbody {
  border-bottom: 1px solid #3B3B3B;
}

/* dribbble and flickr widget */
.footer .dribbble-shot,
.footer .flickr_badge_image {
  background: #333;
}

/* -------------------------------------------------------------------------------- */
/*	12. Credits
/* -------------------------------------------------------------------------------- */
.credits p {
  color: #767676;
  font-size: 0.75em;
  text-transform: uppercase;
  font-weight: 400;
  letter-spacing: 1px;
}

.credits a {
  color: #767676;
}

.credits a.tothetop {
  color: #ccc;
  float: right;
}

.credits a:hover {
  color: #ccc;
  text-decoration: underline;
}

img#wpstats {
  display: none;
} /* Silly WordPress stats */
/* -------------------------------------------------------------------------------- */
/*	13. Responsive
/* -------------------------------------------------------------------------------- */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  /* 2X images */
  .search-toggle {
    background-image: url(../../images/icons/2x/spyglass-w.png);
  }
  .post .sticky-post {
    background-image: url(../../images/icons/2x/tack-w.png);
  }
  .posts .post-meta a.post-date {
    background-image: url(../../images/icons/2x/clock-g.png);
  }
  .posts .post-meta a.post-date:hover {
    background-image: url(../../images/icons/2x/clock-c.png);
  }
  .posts .post-meta a.zilla-likes {
    background-image: url(../../images/icons/2x/heart-g.png);
  }
  .posts .post-meta a.zilla-likes:hover,
  .posts .post-meta a.zilla-likes.active {
    background-image: url(../../images/icons/2x/heart-c.png);
  }
  .posts .post-meta a.post-comments {
    background-image: url(../../images/icons/2x/comment-g.png);
  }
  .posts .post-meta a.post-comments:hover {
    background-image: url(../../images/icons/2x/comment-c.png);
  }
  .featured-media .mejs-playpause-button.mejs-play button,
  .single-post .featured-media .mejs-playpause-button.mejs-play button {
    background-image: url(../../images/icons/2x/audio/play.png);
  }
  .featured-media .mejs-playpause-button.mejs-pause button,
  .single-post .featured-media .mejs-playpause-button.mejs-pause button {
    background-image: url(../../images/icons/2x/audio/pause.png);
  }
  .featured-media .mejs-mute button,
  .single-post .featured-media .mejs-mute button {
    background-image: url(../../images/icons/2x/audio/audio-mute.png);
  }
  .featured-media .mejs-unmute button,
  .single-post .featured-media .mejs-unmute button {
    background-image: url(../../images/icons/2x/audio/audio-unmute.png);
  }
  .post-link a {
    background-image: url(../../images/icons/2x/link-c.png);
  }
  .format-gallery .flex-direction-nav .flex-prev,
  .single-post .format-gallery .flex-direction-nav .flex-prev {
    background-image: url(../../images/icons/2x/chevron-left-w-shade.png);
  }
  .format-gallery .flex-direction-nav .flex-next,
  .single-post .format-gallery .flex-direction-nav .flex-next {
    background-image: url(../../images/icons/2x/chevron-right-w-shade.png);
  }
  .single-post .post-meta p.post-date {
    background-image: url(../../images/icons/2x/clock-g.png);
  }
  .single-post .post-meta a.zilla-likes {
    background-image: url(../../images/icons/2x/heart-g.png);
  }
  .single-post .post-meta a.zilla-likes:hover {
    background-image: url(../../images/icons/2x/heart-c.png);
  }
  .single-post .post-meta p.post-categories {
    background-image: url(../../images/icons/2x/folder-g.png);
  }
  .single-post .post-meta p.post-tags {
    background-image: url(../../images/icons/2x/tag-g.png);
  }
  .author-links a.author-link-posts {
    background-image: url(../../images/icons/2x/archive-w.png);
  }
  .author-links a.author-link-website {
    background-image: url(../../images/icons/2x/home-w.png);
  }
  .author-links a.author-link-mail {
    background-image: url(../../images/icons/2x/social/mail-w.png);
  }
  .author-links a.author-link-twitter {
    background-image: url(../../images/icons/2x/social/twitter-w.png);
  }
  .comment.bypostauthor:after {
    background-image: url(../../images/icons/2x/author-w.png);
  }
  .comment-actions .comment-reply-link {
    background-image: url(../../images/icons/2x/reply-w.png);
  }
  .comment-actions .comment-edit-link {
    background-image: url(../../images/icons/2x/edit-w.png);
  }
  input#author {
    background-image: url(../../images/icons/2x/author-g.png);
  }
  x input#email {
    background-image: url(../../images/icons/2x/social/mail-g.png);
  }
  input#url {
    background-image: url(../../images/icons/2x/home-g.png);
  }
  input#author:focus {
    background-image: url(../../images/icons/2x/author-w.png);
  }
  input#email:focus {
    background-image: url(../../images/icons/2x/social/mail-w.png);
  }
  input#url:focus {
    background-image: url(../../images/icons/2x/home-w.png);
  }
  .single-post .post-meta p.image-resolution {
    background-image: url(../../images/icons/2x/image-g.png);
  }
  .single-attachment .post-author:before {
    background-image: url(../../images/icons/2x/image-w.png);
  }
  .searchform .searchsubmit {
    background-image: url(../../images/icons/2x/spyglass-g.png);
  }
  .searchform .searchsubmit:hover {
    background-image: url(../../images/icons/2x/spyglass-c.png);
  }
}
@media (max-width: 1440px) {
  .wrapper.section {
    padding: 4rem 0;
  }
  /* pagination */
  .page-title {
    margin-bottom: 5%;
  }
  .archive-nav, .archive-nav2 {
    margin-top: 2em;
  }
}
@media (max-width: 1215px) {
  #sideBuyright h2 {
    font-size: 1em;
  }
}
@media (max-width: 1170px) {
  .main-menu > li > a {
    font-size: 0.85em;
    padding: 27px 0;
  }
}
@media (max-width: 1060px) {
  .main-menu > li > a {
    font-size: 0.8em;
    padding: 27px 0;
  }
  .search-toggle {
    width: 48px;
  }
}
@media (max-width: 1040px) {
  /* main content */
  .section-inner.content {
    max-width: 94%;
  }
  .post-container {
    width: 50%;
    padding: 0 2% 5% 2%;
  }
}
@media (max-width: 850px) {
  /* structure */
  body.single-post .content {
    width: 100%;
    float: none;
  }
  .sidebar {
    margin: 2rem 0 0;
    width: 100%;
    max-width: none;
    text-align: center;
  }
  .sidebar #sideBuy {
    max-width: 350px;
    margin: 0 auto;
  }
  .sidebar a#view-pricing {
    max-width: 250px;
    margin: 1rem auto 0;
    float: none;
  }
  #main-content.default-page .content {
    width: 100%;
  }
  /* navigation */
  .main-menu {
    display: none;
  }
  .search-toggle {
    width: 24px;
  }
  .nav-toggle {
    display: block;
    padding: 25px 0;
  }
  .nav-toggle .bar {
    display: block;
    width: 26px;
    height: 3px;
    margin-top: 5px;
    background: #8E8E8E;
    border-radius: 1px;
    -moz-border-radius: 1px;
    -webkit-border-radius: 1px;
  }
  .nav-toggle .bar:first-child {
    margin-top: 0;
  }
  .nav-toggle:hover {
    cursor: pointer;
  }
  .nav-toggle.active .bar {
    background: #fff;
  }
  .mobile-menu li {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }
  .mobile-menu > li:first-child {
    border-top: none;
  }
  .mobile-menu a {
    display: block;
    padding: 25px 5%;
    font-size: 0.9em;
    text-transform: uppercase;
    color: #999;
    letter-spacing: 1px;
  }
  .mobile-menu a:hover {
    color: #fff;
  }
  .mobile-menu li.active a {
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
  }
  .mobile-menu ul a {
    padding-left: 10%;
  }
  .mobile-menu ul ul a {
    padding-left: 15%;
  }
  .mobile-menu ul ul ul a {
    padding-left: 20%;
  }
  .mobile-menu ul ul ul ul a {
    padding-left: 25%;
  }
  .mobile-menu ul ul ul ul ul a {
    padding-left: 30%;
  }
}
@media (max-width: 845px) {
  .credits-left, .credits-right {
    width: 100%;
  }
  .social-footer {
    float: left;
    margin: 15px 2em 0 0;
  }
}
@media (max-width: 800px) {
  /* structure */
  .wrapper.section {
    padding: 4rem 0;
  }
  .section-inner {
    max-width: 92%;
    flex-direction: column;
  }
  .section-inner.content {
    max-width: 97%;
  }
  /* header */
  /*.section.header { padding: 50px 0; }

  .header .logo img { max-height: 60px; }*/
  /* footer */
  .footer .one-third {
    width: 47.5%;
  }
  .footer .column-3 {
    display: none;
  }
  /* credits */
  .credits span {
    display: none;
  }
}
@media (max-width: 750px) {
  .header .logo img {
    max-height: 152px;
  }
  #since {
    font-size: 1em;
  }
  .buyoption.pushright {
    margin-right: 0;
  }
  .buyoption {
    width: 100%;
    margin-bottom: 2em;
  }
  #formLeft, #formRight {
    width: 100%;
    margin-left: 0;
    float: none;
  }
  a.changeselection {
    font-size: 0.875em;
    margin-bottom: 2em !important;
  }
  .formHolder .buyoption {
    margin-bottom: 0.5em;
  }
}
@media (max-width: 700px) {
  /* single post */
  .post-author,
  .single-post .post-meta {
    width: 100%;
    float: none;
    border-radius: 0;
    -moz-border-radius: 0;
    -webkit-border-radius: 0;
  }
  .single-post .post-meta-container:after {
    content: none;
  }
  .single-post .post-meta {
    background-color: #3F4854;
  }
  /* post content */
  .post-content .alignleft,
  .post-content .alignright {
    max-width: 100%;
    float: none;
    margin: 1.25em 0;
  }
  .post-content .alignleft a,
  .post-content .alignleft img,
  .post-content .alignright a,
  .post-content .alignright img {
    margin-left: auto;
    margin-right: auto;
  }
  /* comments */
  .comment-form-author,
  .comment-form-email,
  .comment-form-url {
    width: 100%;
  }
  #under-header h2 {
    padding: 2em 0 1em 1em;
    width: calc(100% - 100px);
  }
  a#view-pricing {
    margin: 0.5em 0;
    padding: 10px;
    text-align: center;
  }
  #optionsHolder {
    flex-direction: column;
    padding-bottom: 5px;
  }
  .buy-now #optionsHolder {
    margin-bottom: 0;
  }
  .buyoption {
    margin-bottom: 0;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
    -moz-box-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
    -webkit-box-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
  }
  .header-tagline {
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
  }
}
@media (max-width: 640px) {
  body {
    font-size: 16px;
  }
  #main-content {
    background-attachment: scroll;
  }
  /* structure */
  .wrapper.section {
    padding: 3rem 0;
  }
  .post {
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
    -moz-box-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
    -webkit-box-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
  }
  .post-header,
  .single-post .post-content,
  .post-excerpt,
  .content .comments,
  .comment-respond,
  .post-quote,
  .post-link {
    padding: 1rem 6%;
  }
  /* header */
  .section.header {
    padding: 15px 0;
  }
  .header .logo {
    display: block;
    text-align: center;
    padding-bottom: 0;
  }
  .header .logo img {
    width: 100%;
    max-width: 250px;
    height: auto;
    max-height: none;
  }
  .header-search-block .s {
    font-size: 1em;
    margin-top: -17px;
  }
  .page-content h1, .page-content h2, .page-content h3, .page-content h4, .page-content h5, .page-content h6 {
    text-align: center !important;
  }
  .page-template-default .post-content form.wpcf7-form {
    margin-top: 2rem;
  }
  .page-template-default .post-content form.wpcf7-form p {
    text-align: left !important;
  }
  .page-template-default .post-content form.wpcf7-form input[type=text], .page-template-default .post-content form.wpcf7-form input[type=tel], .page-template-default .post-content form.wpcf7-form input[type=url], .page-template-default .post-content form.wpcf7-form input[type=password], .page-template-default .post-content form.wpcf7-form input[type=email], .page-template-default .post-content form.wpcf7-form textarea {
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
    -moz-box-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
    -webkit-box-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
  }
  #since {
    float: none;
    font-size: 12px;
    padding: 0;
    margin-bottom: 1rem;
  }
  #since img.bolt-s {
    width: 7px;
    transform: translateY(5px);
    margin: 0;
  }
  #since img.bolt-s-2 {
    width: 9px;
    transform: translateY(6px);
  }
  #since span.since {
    transform: translateY(-1px);
  }
  #since .hide {
    display: none;
  }
  .header-tagline {
    padding-left: 4vw;
  }
  #under-header h2 {
    text-align: center;
    padding-left: 0;
  }
  .nav-toggle {
    padding: 20px 0;
  }
  .search-toggle {
    height: 59px;
  }
  /* navigation */
  .navigation-inner {
    max-width: 90%;
  }
  .mobile-menu a {
    padding-top: 20px;
    padding-bottom: 20px;
  }
  /* main content */
  .section-inner.content {
    max-width: 92%;
  }
  .post-container {
    width: 100%;
    padding: 0;
    margin-top: 25px;
  }
  .post-container:first-child {
    margin-top: 0;
  }
  .post-header .post-title {
    font-size: 1.5em;
  }
  .post-excerpt {
    font-size: 1em;
  }
  .posts .post-meta {
    padding: 0 6%;
  }
  #load-more {
    margin: 2rem auto 0;
  }
  /* format audio */
  .single-post .featured-media .mejs-mute button,
  .single-post .featured-media .mejs-unmute button {
    background-size: 20px auto;
  }
  .single-post .featured-media .mejs-playpause-button.mejs-play button,
  .single-post .featured-media .mejs-playpause-button.mejs-pause button {
    background-size: 16px auto;
  }
  /* single post */
  .media-caption {
    margin: 0 6%;
    padding-bottom: 10px;
  }
  .single-post .post-quote blockquote,
  .single-post .post-link p {
    font-size: 1.2em;
  }
  .single-post .post-quote cite {
    font-size: 0.8em;
  }
  /* post content */
  .post-content p,
  .post-content blockquote,
  .post-content ul,
  .post-content ol,
  .post-content address,
  .post-content dl,
  .post-content .wp-caption,
  .post-content pre {
    line-height: 160%;
    margin-bottom: 1em;
  }
  .post-content h1, .post-content h2, .post-content h3, .post-content h4, .post-content h5, .post-content h6 {
    margin: 40px 0 20px;
  }
  .post-content h1 {
    font-size: 1.4em;
  }
  .post-content h2 {
    font-size: 1.3em;
  }
  .post-content h3 {
    font-size: 1.25em;
  }
  .post-content h4 {
    font-size: 1.1em;
  }
  .post-content h5 {
    font-size: 1em;
  }
  .post-content h6 {
    font-size: 0.9em;
    font-weight: 700;
    text-transform: uppercase;
  }
  .post-content h1 + h1, .post-content h1 + h2, .post-content h1 + h3, .post-content h1 + h4, .post-content h1 + h5, .post-content h1 + h6,
  .post-content h2 + h1, .post-content h2 + h2, .post-content h2 + h3, .post-content h2 + h4, .post-content h2 + h5, .post-content h2 + h6,
  .post-content h3 + h1, .post-content h3 + h2, .post-content h3 + h3, .post-content h3 + h4, .post-content h3 + h5, .post-content h3 + h6,
  .post-content h4 + h1, .post-content h4 + h2, .post-content h4 + h3, .post-content h4 + h4, .post-content h4 + h5, .post-content h4 + h6,
  .post-content h5 + h1, .post-content h5 + h2, .post-content h5 + h3, .post-content h5 + h4, .post-content h5 + h5, .post-content h5 + h6,
  .post-content h6 + h1, .post-content h6 + h2, .post-content h6 + h3, .post-content h6 + h4, .post-content h6 + h5, .post-content h6 + h6 {
    margin-top: 20px;
  }
  .post-content blockquote {
    margin-top: 25px;
  }
  .post-content blockquote:before,
  .post-content blockquote:after {
    margin: 25px auto;
    width: 96px;
  }
  .post-content blockquote p {
    font-size: 1.1em;
    line-height: 150%;
  }
  .post-content blockquote cite {
    font-size: 0.8em;
  }
  /* comments */
  .comments-title,
  .add-comment-title {
    float: none;
    width: 100%;
  }
  .add-comment-title {
    display: none;
  }
  .comments-title,
  .comment-reply-title {
    font-size: 1.5em;
  }
  .comment .avatar {
    width: 50px;
  }
  .comment-inner {
    margin-left: 70px;
  }
  .comment-inner:after {
    top: 13px;
  }
  .comment-content {
    font-size: 0.9em;
  }
  .reply-title {
    margin-bottom: 15px;
  }
  .comment-form {
    margin-top: 15px;
  }
  /* respond */
  .comment-form {
    margin-top: 10px;
  }
  .comment-notes,
  .logged-in-as {
    margin-bottom: 25px;
  }
  .comment-form input[type=text],
  .comment-form input[type=email] {
    background-position: 96% center;
  }
  /* page & page templates */
  .authors-row {
    padding: 0;
    border: none;
  }
  .authors-row:before {
    content: none;
  }
  .authors-row .author-info {
    width: 100%;
    margin: 0;
    padding: 7.5% 6%;
    float: none;
    border-top: 1px solid #eee;
  }
  .authors-row:first-child .author-info:first-child {
    border-top: none;
  }
  .author-avatar,
  .author-info h5 {
    margin-bottom: 20px;
  }
  /* pagination */
  .page-title {
    margin-bottom: 25px;
  }
  .page-title h3 {
    font-size: 1.4em;
  }
  .archive-nav, .archive-nav2 {
    margin-top: 25px;
  }
  /* footer */
  .footer {
    padding: 30px 0;
  }
  .footer .one-third {
    width: 100%;
    float: none;
    padding: 40px 0 0 0;
    border-top: 4px solid #333;
    margin: 40px 0 0 0;
  }
  .footer .one-third:first-child {
    margin-top: 0;
    border-top: none;
    padding-top: 0;
  }
  .footer .column-3 {
    display: block;
  }
  /* credits */
  .credits {
    padding: 30px 0;
  }
}
@media (max-width: 500px) {
  /* header */
  .header .blog-title {
    font-size: 1.75em;
  }
  .header .blog-description {
    font-size: 1em;
    margin-top: 15px;
  }
  /* post meta */
  .post-author:before,
  .post-author:after {
    left: 15px;
  }
  .post-author-content {
    margin-left: 40px;
  }
  /* comments */
  .comments div.comment {
    margin-top: 20px;
  }
  .comment .avatar {
    display: none;
  }
  .comment-inner {
    margin-left: 0;
  }
  .comment-inner:after {
    content: none;
  }
  .comment-actions {
    display: none;
  }
  .comment-actions-below {
    display: block;
    margin-top: 20px;
  }
  .comment-actions-below a {
    display: inline-block;
    margin-left: 8px;
    font-size: 0.85em;
    font-weight: 700;
    text-transform: uppercase;
  }
  .comment-actions-below a:first-child {
    margin-left: 0;
  }
  .comment-actions-below a:hover {
    text-decoration: underline;
  }
  .comment-nav-below span {
    display: none;
  }
  #logocount {
    font-size: 1.25em;
  }
  #logocountnum {
    display: block;
    width: 40%;
    margin: 20px auto 0;
  }
  .post-header .post-title {
    font-size: 1.25em;
  }
}
@media (max-width: 400px) {
  /* respond */
  .comment-form input[type=text],
  .comment-form input[type=email] {
    background-position: 94% center;
    background-size: 20px auto;
  }
  .comment-form input[type=text],
  .comment-form input[type=email],
  .comment-form textarea {
    padding: 12px;
    font-size: 0.9em;
  }
  .comment-form textarea {
    height: 150px;
  }
}
/* CSS Styles for Infinite Scroll - Add to your theme's style.css */
/* Loading indicator styling */
.infinite-loader {
  text-align: center;
  padding: 20px 0;
  width: 100%;
  clear: both;
}

.infinite-loader span {
  display: inline-block;
  background-color: #f0f0f0;
  border-radius: 4px;
  padding: 10px 20px;
  color: #666;
  font-size: 14px;
}

/* Trigger element (invisible, just for intersection detection) */
#infinite-scroll-trigger {
  height: 1px;
  width: 100%;
  margin: 0;
  padding: 0;
}

/* Prevent flash of unstyled/stacked content on initial load */
#posts-container {
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}

#posts-container.masonry-loaded {
  opacity: 1;
}

/* Disable Masonry's position transitions, keep only opacity fade */
.post-container {
  transition: none !important;
}

/* Optional fade for new posts as they load */
.post-container.loading {
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}

#load-more {
  display: block;
  text-align: center;
  width: 100%;
}

/*# sourceMappingURL=screen.css.map */
