/*
Theme Name: Fallsky Lite
Theme URI: http://www.loftocean.com/fallsky-lite/
Author: Loft.Ocean
Author URI: http://www.loftocean.com
Description: Fallsky Lite is a lifestyle WordPress magazine theme.
Version: 1.0.3
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Tags: two-columns, left-sidebar, right-sidebar, grid-layout, flexible-header, custom-background, custom-colors, custom-header, custom-menu, custom-logo, editor-style, featured-images, footer-widgets, full-width-template, sticky-post, threaded-comments, rtl-language-support, translation-ready, theme-options, blog
Text Domain: fallsky-lite

Elegant Icon font License: GPL v2.0 and MIT license
FontAwesome License: SIL Open Font License - http://scripts.sil.org/OFL
Images License: GNU General Public License v2 or later
*/
/**
 * Table of Contents:
 *
 * 1.0 - Normalize 
 * 2.0 - Elements
 * 3.0 - Typography
 * 4.0 - Header & Menu
 * 5.0 - Main Content
 * 6.0 - Single Page & Post
 * 7.0 - Widgets
 * 8.0 - Forms
 * 9.0 - Media
 */
:root {
  --heading-font: Source Sans Pro, sans-serif;
  --body-font: Roboto, sans-serif;
  --primary-color: #c09f68;
  /* Colors for Light Scheme */
  --light-bg-color: #fff;
  --light-text-color: #212121;
  --light-content-color: #515151;
  /* Colors for Dark Scheme */
  --dark-bg-color: #282828;
  --dark-text-color: #fff;
  --dark-content-color: #e2e2e2; }
  :root .light-color {
    --bg-color: var(--light-bg-color);
    --text-color: var(--light-text-color);
    --content-color: var(--light-content-color);
    --btn-bg-color: #000;
    --btn-text-color: #fff; }
  :root .dark-color {
    --bg-color: var(--dark-bg-color);
    --text-color: var(--dark-text-color);
    --content-color: var(--dark-content-color);
    --btn-bg-color: #fff;
    --btn-text-color: #000; }

.container:after,
.site-header ul:after,
.site-header .site-header-menu .main-navigation li.mega-menu ul:after,
ul.social-nav:after,
.main:after,
.featured-section .post:after,
.posts-wrapper:after,
.posts[class*="cols-"]:after,
.posts.layout-list .post:after,
.post-navigation .nav-links:after,
.post-entry:after,
.post-entry .gallery:after,
.single #primary > .post:after,
.single #primary > .author-info-box:after,
.related-posts .related-posts-container:after,
.comments .navigation .nav-links:after,
.site-footer .widget-area .widget-area-row:after,
.footer-bottom.column-2:after,
.widget.widget_categories ul li:after,
.widget.widget_archive ul li:after,
.widget.widget_tag_cloud .tagcloud:after,
.widget.widget_media_gallery .gallery:after {
  position: relative;
  display: block;
  content: "";
  clear: both; }

@-webkit-keyframes loadingSpin {
  0% {
    -webkit-transform: rotate(0); }
  100% {
    -webkit-transform: rotate(360deg); } }
@keyframes loadingSpin {
  0% {
    transform: rotate(0); }
  100% {
    transform: rotate(360deg); } }
/* ==========================================================================
   1.0 Normalize
   
   - Normalizing styles have been helped along thanks to the fine work of
   Nicolas Gallagher and Jonathan Neal http://necolas.github.com/normalize.css/
   ========================================================================== */
html {
  font-family: sans-serif;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%; }

body {
  margin: 0; }

article,
aside,
details,
figcaption,
figure,
footer,
header,
main,
menu,
nav,
section,
summary {
  display: block; }

audio,
canvas,
progress,
video {
  display: inline-block;
  vertical-align: baseline; }

audio:not([controls]) {
  display: none;
  height: 0; }

[hidden],
template {
  display: none; }

a {
  background-color: transparent; }

abbr[title] {
  border-bottom: 1px dotted; }

b,
strong {
  font-weight: 700; }

small {
  font-size: 80%; }

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline; }

sup {
  top: -0.5em; }

sub {
  bottom: -0.25em; }

img {
  border: 0; }

svg:not(:root) {
  overflow: hidden; }

figure {
  margin: 0; }

hr {
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  box-sizing: content-box; }

code,
kbd,
pre,
samp {
  font-size: 1em; }

button,
input,
optgroup,
select,
textarea {
  color: inherit;
  font: inherit;
  margin: 0; }

select {
  text-transform: none; }

button {
  overflow: visible; }

button,
input,
select,
textarea {
  max-width: 100%; }

button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
  -webkit-appearance: button;
  cursor: pointer; }

button[disabled],
html input[disabled] {
  cursor: default;
  opacity: .5; }

button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0; }

input[type="checkbox"],
input[type="radio"] {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  margin-right: 0.4375em;
  padding: 0; }

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  height: auto; }

input[type="search"] {
  -webkit-appearance: textfield; }

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

fieldset {
  border: 1px solid #d1d1d1;
  margin: 0 0 1.75em;
  padding: 0.875em; }

fieldset > :last-child {
  margin-bottom: 0; }

legend {
  border: 0;
  padding: 0; }

textarea {
  overflow: auto;
  vertical-align: top; }

optgroup {
  font-weight: bold; }

/* ==========================================================================
   2.0 Elements
   ========================================================================== */
* {
  margin: 0 auto;
  padding: 0;
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  -ms-word-wrap: break-word;
  word-wrap: break-word; }
  *:focus {
    outline: 0; }

html {
  width: 100%;
  min-height: 100%; }
  html:not(.no-touch) div {
    background-attachment: scroll !important; }

body {
  width: 100%;
  height: auto;
  min-height: 100%;
  margin: 0 auto;
  background: #fff;
  color: #212121; }

#page {
  position: relative;
  z-index: 1;
  width: 100%;
  height: auto;
  overflow-x: hidden; }

ul,
ol {
  margin: 0 0 30px 30px;
  padding: 0; }

li > ul,
li > ol {
  margin-bottom: 0; }

dl {
  margin: 0 0 30px; }

dt {
  font-weight: 700; }

dd {
  margin: 0 0 30px; }

figure {
  position: relative;
  max-width: 100%;
  margin: 0;
  overflow: hidden; }
  figure img {
    display: block; }

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

hr {
  height: 1px;
  margin: 0 auto 30px;
  background-color: rgba(0, 0, 0, 0.1);
  border: none; }
  .dark-color hr {
    background-color: rgba(255, 255, 255, 0.2); }

.hide {
  display: none !important; }

/**
 * Clearing
 */
/**
 * Accessibility
 */
.says,
.screen-reader-text {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  overflow: hidden;
  word-wrap: normal !important; }

.site .skip-link {
  top: -9999em;
  left: -9999em;
  display: block;
  padding: 15px 23px 14px;
  background-color: #f1f1f1;
  box-shadow: 0 0 1px 1px rgba(0, 0, 0, 0.2);
  color: #21759b;
  font-family: Montserrat, "Helvetica Neue", sans-serif;
  font-size: 14px;
  font-weight: 700;
  outline: none;
  text-decoration: none;
  text-transform: none; }
  .logged-in .site .skip-link {
    box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.2);
    font-family: "Open Sans", sans-serif; }
  .site .skip-link:focus {
    top: 7px;
    left: 6px;
    z-index: 100000;
    width: auto;
    height: auto;
    clip: auto; }

/* Alignments
   ========================================================================== */
.alignleft {
  float: left;
  display: inline; }

.alignright {
  float: right;
  display: inline; }

.aligncenter {
  display: block;
  margin-right: auto !important;
  margin-left: auto !important; }

figure.alignleft,
img.alignleft {
  margin: 0 30px 30px 0; }

figure.alignright,
img.alignright {
  margin: 0 0 30px 30px; }

/* Button
   ========================================================================== */
#page .button {
  position: relative;
  z-index: 1;
  display: inline-block;
  padding: 0 20px;
  background: var(--btn-bg-color);
  border: none;
  border-radius: 2px;
  color: var(--btn-text-color);
  font-weight: 400;
  line-height: 34px;
  text-align: center;
  text-decoration: none;
  white-space: nowrap;
  transition: 0.4s;
  will-change: opacity;
  font-size: 12px;
  font-size: 0.75rem;
  letter-spacing: 0.05em; }
  .no-touch #page .button:hover {
    opacity: 0.9; }
  .primary-color-enabled #page .button {
    background: var(--primary-color);
    color: #fff; }

/* Author Photo
   ========================================================================== */
.author-photo {
  width: 105px; }
  .author-photo img {
    display: block;
    border-radius: 50%; }

/* Tagcloud
   ========================================================================== */
.tagcloud a {
  display: inline-block;
  padding: 0;
  margin: 0;
  border-radius: 0;
  background: none;
  color: inherit;
  border: none;
  font-size: 12px !important;
  font-size: 0.75rem !important;
  letter-spacing: 0.05em;
  line-height: 20px;
  text-transform: capitalize; }
  .no-touch .tagcloud a:hover, .tagcloud a:focus {
    text-decoration: underline; }

body#tinymce {
  padding: 20px !important;
  background: #fff; }

#page a[class*="btn"] {
  text-decoration: none; }

#page .wpb_gallery ul li {
  position: static; }
  #page .wpb_gallery ul li:before {
    display: none; }

#page ul.products li:before,
#page .woocommerce-pagination ul li:before {
  display: none; }

/* ==========================================================================
   3.0 Typography
   ========================================================================== */
body,
button,
input,
select,
textarea,
.ui-widget,
.widget-title,
.comments h2.comments-title,
.comment-respond h3.comment-reply-title,
.search-screen .shortcuts-cat span.counts,
.error404 .page-404-page-header h1.page-title,
blockquote cite,
blockquote small {
  font-family: var(--body-font); }

.site-branding .site-title,
.post-title,
.cat-links,
blockquote,
.wp-caption-text,
.fallsky-lite-fullmenu .main-navigation,
.fallsky-lite-fullmenu .search input,
.search-screen .search input,
.search-screen .shortcuts-cat,
.comments ol.comment-list li .comment-author b.fn,
h1,
h2,
h3,
h4,
h5,
h6,
.post-entry .dropcap:first-letter,
.widget.widget_rss ul li a.rsswidget,
.widget.widget_recent_entries a,
.widget_recent_comments ul li > a {
  font-family: var(--heading-font); }

body {
  font-size: 16px;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.7; }

a {
  color: inherit;
  text-decoration: none;
  transition: all 0.4s; }
  .primary-color-enabled a {
    color: var(--primary-color); }

.post-entry a:not(.button),
.comment-content a:not(.button) {
  text-decoration: underline; }
  .no-touch .post-entry a:not(.button):hover, .no-touch
  .comment-content a:not(.button):hover {
    text-decoration: none; }
.post-entry li,
.comment-content li {
  margin-bottom: 10px; }
  .post-entry li ul,
  .post-entry li ol,
  .comment-content li ul,
  .comment-content li ol {
    margin-top: 10px; }
.post-entry ul,
.comment-content ul {
  margin-left: 0; }
  .post-entry ul li,
  .comment-content ul li {
    position: relative; }
  .post-entry ul > li,
  .post-entry ul ul > li,
  .comment-content ul > li,
  .comment-content ul ul > li {
    padding-left: 30px;
    list-style: none; }
    .post-entry ul > li:before,
    .post-entry ul ul > li:before,
    .comment-content ul > li:before,
    .comment-content ul ul > li:before {
      position: absolute;
      top: 10px;
      left: 15px;
      width: 5px;
      height: 5px;
      border-radius: 50%;
      background: currentColor;
      content: "";
      line-height: 24px; }
      .primary-color-enabled .post-entry ul > li:before, .primary-color-enabled
      .post-entry ul ul > li:before, .primary-color-enabled
      .comment-content ul > li:before, .primary-color-enabled
      .comment-content ul ul > li:before {
        background: var(--primary-color); }

.post-entry,
.post-excerpt {
  font-size: 14px;
  font-size: 0.875rem; }

.post-entry {
  color: var(--content-color);
  line-height: 1.8; }
  .post-entry h1,
  .post-entry h2,
  .post-entry h3,
  .post-entry h4,
  .post-entry h5,
  .post-entry h6,
  .post-entry form {
    color: var(--text-color); }

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 600;
  line-height: 1.5; }
  .post-entry h1, .comment-content h1, .post-entry
  h2, .comment-content
  h2, .post-entry
  h3, .comment-content
  h3, .post-entry
  h4, .comment-content
  h4, .post-entry
  h5, .comment-content
  h5, .post-entry
  h6, .comment-content
  h6 {
    margin-bottom: 30px;
    line-height: 1.2; }
  .comment-content h1, .comment-content
  h2, .comment-content
  h3, .comment-content
  h4, .comment-content
  h5, .comment-content
  h6 {
    margin-bottom: 15px; }
  .widget-area .widget h1, .widget-area .widget
  h2, .widget-area .widget
  h3, .widget-area .widget
  h4, .widget-area .widget
  h5, .widget-area .widget
  h6 {
    margin-bottom: 15px; }

.post-entry h1 {
  font-size: 36px;
  font-size: 2.25rem; }
.post-entry h2 {
  font-size: 32px;
  font-size: 2rem; }
.post-entry h3 {
  font-size: 28px;
  font-size: 1.75rem; }
.post-entry h4 {
  font-size: 24px;
  font-size: 1.5rem; }
.post-entry h5 {
  font-size: 21px;
  font-size: 1.3125rem; }
.post-entry h6 {
  font-size: 18px;
  font-size: 1.125rem; }

.comment-content h1,
.widget-area .widget h1 {
  font-size: 28px;
  font-size: 1.75rem; }
.comment-content h2,
.widget-area .widget h2 {
  font-size: 24px;
  font-size: 1.5rem; }
.comment-content h3,
.widget-area .widget h3 {
  font-size: 21px;
  font-size: 1.3125rem; }
.comment-content h4,
.widget-area .widget h4 {
  font-size: 18px;
  font-size: 1.125rem; }
.comment-content h5,
.widget-area .widget h5 {
  font-size: 16px;
  font-size: 1rem; }
.comment-content h6,
.widget-area .widget h6 {
  font-size: 14px;
  font-size: 0.875rem; }

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

.post-title,
.page-title {
  -ms-word-break: break-word;
  word-break: break-word; }

.post-title {
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.2; }
  .post-title a {
    color: inherit; }
    .primary-color-enabled .post-title a {
      color: inherit; }

.page-title,
.no-post-found .no-article .post-title {
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.2; }

.page-header-text *:not(.page-title) {
  font-size: 16px;
  font-size: 1rem; }

h5.widget-title,
.comments h2.comments-title,
.comment-respond h3.comment-reply-title,
.comments .click-to-reply {
  position: relative;
  display: block;
  text-align: left;
  text-transform: capitalize;
  font-weight: 600;
  letter-spacing: 0; }

h5.widget-title {
  font-size: 16px;
  font-size: 1rem;
  margin-bottom: 15px;
  padding-bottom: 10px; }
  .widget-area .widget h5.widget-title {
    margin-bottom: 20px;
    border-bottom: 2px solid;
    font-size: 16px;
    font-size: 1rem;
    font-weight: 600;
    line-height: 32px; }
  .sidebar .widget:first-child h5.widget-title {
    padding-top: 5px; }

.comments h2.comments-title,
.comment-respond h3.comment-reply-title,
.comments .click-to-reply {
  margin-bottom: 30px;
  font-size: 18px;
  font-size: 1.125rem; }

p {
  margin: 0 auto 30px;
  font-size: inherit; }

blockquote {
  position: relative;
  margin: 0;
  padding-left: 40px;
  color: inherit; }
  .post-entry blockquote {
    margin: 50px 0;
    color: var(--text-color); }
    .post-entry blockquote:first-child {
      margin-top: 0; }
  .widget-area .widget blockquote:not(:last-child) {
    margin-bottom: 30px; }
  blockquote:before {
    position: absolute;
    top: 15px;
    left: -5px;
    z-index: 1;
    display: block;
    width: 30px;
    height: 30px;
    font-family: sans-serif;
    font-size: 70px;
    font-size: 4.375rem;
    line-height: 30px;
    text-align: center;
    content: "\201C"; }
    .primary-color-enabled blockquote:before {
      color: var(--primary-color); }
  blockquote p {
    position: relative;
    z-index: 1;
    font-size: 18px;
    font-size: 1.125rem;
    font-style: normal;
    line-height: 30px; }
  blockquote cite,
  blockquote small {
    display: block;
    margin-top: 15px;
    font-size: 14px;
    font-size: 0.875rem;
    font-weight: 400;
    font-style: normal;
    line-height: 1.5;
    opacity: 0.7; }
  blockquote cite:before {
    position: relative;
    bottom: 3px;
    display: inline-block;
    width: 20px;
    height: 1px;
    margin-right: 10px;
    background: currentColor;
    content: ""; }
  .comment-content blockquote {
    margin: 30px 0;
    padding-left: 30px; }
    .comment-content blockquote p {
      line-height: 1.7; }
    .comment-content blockquote:before {
      top: 10px;
      left: -6px;
      font-size: 48px;
      font-size: 3rem; }

table {
  width: 100%;
  max-width: 100%;
  margin: 0 0 30px;
  border-collapse: collapse;
  border-spacing: 0;
  border-width: 1px;
  border-style: solid;
  border-color: currentColor;
  background: none;
  color: inherit; }
  table th,
  table td {
    padding: 10px 6px;
    vertical-align: top;
    line-height: 1.5; }
  table th {
    background: none;
    font-size: 12px;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-align: left; }
  table td {
    font-size: 14px;
    font-size: 0.875rem; }
  table thead th {
    border-bottom: 1px solid; }
  table caption {
    margin: 15px auto;
    font-size: 12px;
    font-size: 0.75rem; }
  .post-entry table, .comment-content table {
    border-color: rgba(0, 0, 0, 0.1);
    border-collapse: separate;
    border-spacing: 1px; }
    .post-entry table th,
    .post-entry table td, .comment-content table th,
    .comment-content table td {
      border-bottom: 1px dotted;
      border-color: inherit; }
    .post-entry table tbody:last-child tr:last-child th,
    .post-entry table tbody:last-child tr:last-child td, .comment-content table tbody:last-child tr:last-child th,
    .comment-content table tbody:last-child tr:last-child td {
      border-bottom: none; }

pre {
  display: block;
  padding: 30px;
  margin: 30px 0;
  background-color: #f7f7f7;
  border: 1px solid #eee;
  color: #212121;
  font-size: 14px;
  tab-size: 4;
  overflow: auto; }

code,
kbd,
tt {
  font-size: 14px; }

fieldset {
  padding: 0;
  margin: 0;
  border: none; }

dfn,
cite,
em,
i {
  font-style: italic; }

address {
  margin: 0 0 30px;
  font-style: italic; }

code,
kbd,
tt,
var,
samp,
pre {
  font-family: Monaco, Consolas, "Andale Mono", "DejaVu Sans Mono", monospace; }

var {
  font-size: 14px; }

abbr,
acronym {
  border-bottom: 1px dotted;
  text-decoration: none;
  cursor: help; }

mark {
  padding: 1.75px 3.5px;
  background: #eee;
  text-decoration: none; }
  .primary-color-enabled mark {
    background: var(--primary-color); }

ins {
  background: #eee;
  text-decoration: none; }

big {
  font-size: 125%; }

dd {
  margin-left: 30px; }

/* Dropcaps Shortcode
   ========================================================================== */
.post-entry .dropcap {
  text-align: left; }
  .post-entry .dropcap:first-letter {
    float: left;
    padding: 0;
    margin: 0.02em 0.15em 0 0;
    box-sizing: border-box;
    font-size: 500%;
    font-weight: 600;
    letter-spacing: 0;
    line-height: 0.8; }

.post-entry h1.dropcap,
.post-entry h2.dropcap,
.post-entry h3.dropcap,
.post-entry h4.dropcap,
.post-entry h5.dropcap,
.post-entry h6.dropcap {
  line-height: 1.5; }

@media screen and (min-width: 600px) {
  .page-title,
  .no-post-found .no-article .post-title {
    font-size: 36px;
    font-size: 2.25rem; }

  table th,
  table td {
    padding: 16px; } }
@media screen and (min-width: 768px) {
  blockquote {
    padding-left: 100px; }
    .post-entry blockquote:before {
      left: 0;
      width: 90px;
      height: 40px;
      font-size: 90px;
      font-size: 5.625rem;
      line-height: 40px; }
    .post-entry blockquote p code,
    .post-entry blockquote p kbd,
    .post-entry blockquote p tt {
      font-size: 16px; }
    blockquote p {
      font-size: 24px;
      font-size: 1.5rem;
      line-height: 40px; } }
@media screen and (min-width: 1025px) {
  .page-title,
  .no-post-found .no-article .post-title {
    font-size: 48px;
    font-size: 3rem; } }
/* ==========================================================================
   4.0 Site Header & Menu
   ========================================================================== */
nav ul {
  margin: 0;
  list-style: none; }

/* Site Branding
   ========================================================================== */
.site-branding {
  padding: 15px 0;
  font-size: 0; }
  .site-header .site-branding {
    max-width: 50%; }
  .site-branding.invisible .site-title,
  .site-branding.invisible .site-description {
    position: absolute;
    clip: rect(1px, 1px, 1px, 1px); }
  .site-branding p {
    margin-bottom: 0; }
  .site-branding .site-title {
    font-size: 30px;
    font-size: 1.875rem;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: 0.2em;
    text-transform: uppercase; }
  .site-branding .site-description {
    display: block;
    margin-top: 0;
    font-size: 13px;
    font-size: 0.8125rem;
    line-height: 1.2;
    transition: color 0.4s; }
  .site-branding a {
    display: inline-block;
    color: currentColor; }
    .primary-color-enabled .site-branding a {
      color: currentColor; }
  .site-branding img {
    display: block; }
  .site-header.sticky .site-branding .custom-logo-link + .site-title,
  .site-header.sticky .site-branding .site-description {
    display: none; }

@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .site-branding img {
    width: 100% !important; } }
/* Site Header
   ========================================================================== */
.site-header {
  position: relative;
  z-index: 999;
  width: 100%;
  height: auto;
  background-size: cover;
  background-position: center;
  line-height: 1.5; }
  .site-header.transparent {
    position: absolute;
    transition: background-color 0.4s; }
    .site-header.transparent:not(.sticky) {
      background: none !important;
      color: #fff; }
      .site-header.transparent:not(.sticky) .secondary-navigation {
        border-color: rgba(255, 255, 255, 0.15); }
  .site-header > * {
    width: 100%; }
  .site-header .site-header-main {
    padding: 0; }
    .site-header .site-header-main .container {
      -webkit-align-items: center;
      -ms-flex-align: center;
      align-items: center;
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
      -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
      flex-wrap: wrap;
      min-height: 80px; }
  .site-header .menu-toggle {
    position: relative;
    z-index: 999;
    min-width: 34px;
    height: 34px;
    padding: 0 10px 0 30px;
    background: none;
    border: none;
    border-radius: 0;
    box-shadow: none;
    color: inherit;
    font-size: 11px;
    font-size: 0.6875rem;
    line-height: 34px;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    transition: 0.4s; }
    .site-header .menu-toggle i {
      position: absolute;
      top: 4px;
      left: 3px;
      font-size: 28px;
      font-size: 1.75rem;
      line-height: 1; }
    .no-touch .site-header .menu-toggle:hover, .site-header .menu-toggle:focus {
      outline: 0; }
    .site-header .menu-toggle.icon-only {
      padding-right: 3px;
      font-size: 0; }
  .site-header .site-header-menu {
    display: none;
    /* Hide menu on small screens */ }
  #page .site-header li.button {
    padding: 0;
    background: none;
    box-shadow: none !important;
    -webkit-transform: none !important;
    transform: none !important;
    color: inherit; }
  .no-touch .site-header .primary-menu:hover > li > a, .no-touch
  .site-header .secondary-menu:hover > li > a {
    opacity: 0.6; }
  .no-touch .site-header .primary-menu:hover > li:hover > a, .no-touch
  .site-header .secondary-menu:hover > li:hover > a {
    opacity: 1; }
  .site-header .secondary-navigation {
    display: none;
    /* Hide Secondary Navigation on small screens */
    padding: 5px 0;
    text-align: center;
    overflow: hidden; }
    .site-header .secondary-navigation ul {
      display: inline-block;
      width: auto;
      font-size: 0;
      text-align: center; }
      .site-header .secondary-navigation ul li {
        display: inline-block; }
        .site-header .secondary-navigation ul li a {
          padding: 0 15px;
          line-height: 40px;
          font-size: 10px;
          font-size: 0.625rem;
          font-weight: 600;
          opacity: 0.6; }
        .site-header .secondary-navigation ul li.current-menu-item > a {
          color: inherit;
          opacity: 1; }
  .site-header #site-header-search {
    display: none; }
  .site-header nav ul li {
    font-size: 0;
    line-height: 1;
    transition: opacity 0.4s ease-in-out; }
    .site-header nav ul li a {
      position: relative;
      display: block;
      font-size: 11px;
      font-size: 0.6875rem;
      font-weight: 400;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      line-height: 34px;
      color: inherit; }
    .site-header nav ul li ul.sub-menu li a {
      line-height: 34px; }
  .site-header nav ul.primary-menu > li.button > a {
    position: relative;
    z-index: 1;
    display: inline-block;
    padding: 0 20px;
    background: var(--btn-bg-color);
    border: none;
    border-radius: 2px;
    color: var(--btn-text-color);
    font-weight: 400;
    line-height: 34px;
    text-align: center;
    text-decoration: none;
    white-space: nowrap;
    transition: 0.4s;
    will-change: opacity;
    will-change: opacity, transform; }
    .no-touch .site-header nav ul.primary-menu > li.button > a:hover {
      opacity: 0.9; }
    .primary-color-enabled .site-header nav ul.primary-menu > li.button > a {
      background: var(--primary-color);
      color: #fff; }
  .site-header nav ul.primary-menu > li.current-menu-item:not(.button) > a:after,
  .site-header nav ul.primary-menu > li.current-menu-ancestor:not(.button) > a:after {
    position: absolute;
    bottom: 5px;
    left: 15px;
    display: block;
    width: calc(100% - 32px);
    height: 2px;
    background: currentColor;
    content: "";
    will-change: opacity; }
  .site-header.site-header-color-dark {
    background-color: #131313;
    color: #fff; }
    .site-header.site-header-color-dark .secondary-navigation {
      border-color: rgba(255, 255, 255, 0.1); }
    .no-touch .site-header.site-header-color-dark .menu-toggle:hover, .site-header.site-header-color-dark .menu-toggle:focus {
      background: #fff;
      color: #000; }
    body:not(.primary-color-enabled) .site-header.site-header-color-dark nav ul.primary-menu > li.button > a {
      background: #fff;
      color: #000; }
  .site-header.site-header-layout-1 .site-header-main .container {
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap; }
  .site-header.site-header-layout-1 .site-branding {
    margin-left: 0; }
  .site-header.site-header-layout-1 .site-header-menu {
    margin: 0; }
  .site-header.site-header-layout-1 #menu-toggle {
    order: 4;
    margin-left: 5px; }
  .site-header.sticky {
    position: fixed !important;
    top: 0;
    -webkit-animation: stickyHeaderShow 0.4s ease-out;
    animation: stickyHeaderShow 0.4s ease-out; }
    @media screen and (min-width: 601px) and (max-width: 782px) {
      .logged-in.admin-bar .site-header.sticky {
        top: 46px; } }
    @media screen and (min-width: 783px) {
      .logged-in.admin-bar .site-header.sticky {
        top: 32px; } }

@keyframes stickyHeaderShow {
  0% {
    -webkit-transform: translateY(-100%);
    -ms-transform: translateY(-100%);
    transform: translateY(-100%); }
  100% {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0); } }
@-webkit-keyframes stickyHeaderShow {
  0% {
    -webkit-transform: translateY(-100%);
    -ms-transform: translateY(-100%);
    transform: translateY(-100%); }
  100% {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0); } }
/* Fullscreen Menu & Search
   ========================================================================== */
.fallsky-lite-fullmenu,
.search-screen {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 99999;
  display: block;
  width: 100vw;
  height: 100vh;
  padding: 0;
  background: #fff;
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  transition: opacity 0.4s, visibility 0.4s; }
  .fallsky-lite-fullmenu.show,
  .search-screen.show {
    opacity: 1;
    pointer-events: auto;
    visibility: visible; }
  @media screen and (min-width: 601px) and (max-width: 782px) {
    .logged-in.admin-bar .fallsky-lite-fullmenu, .logged-in.admin-bar
    .search-screen {
      top: 46px;
      height: calc(100vh - 46px); } }
  @media screen and (min-width: 783px) {
    .logged-in.admin-bar .fallsky-lite-fullmenu, .logged-in.admin-bar
    .search-screen {
      top: 32px;
      height: calc(100vh - 32px); } }
  .fallsky-lite-fullmenu .close-button,
  .search-screen .close-button {
    position: absolute;
    top: 30px;
    z-index: 9;
    display: inline-block;
    height: 30px;
    padding-left: 22px;
    font-size: 12px;
    font-size: 0.75rem;
    line-height: 30px;
    letter-spacing: 0.2em;
    font-weight: 600;
    text-transform: uppercase;
    cursor: pointer;
    transition: 0.4s; }
    .no-touch .fallsky-lite-fullmenu .close-button:hover, .no-touch
    .search-screen .close-button:hover {
      opacity: 0.75; }
    .fallsky-lite-fullmenu .close-button:before,
    .search-screen .close-button:before {
      position: absolute;
      left: 0;
      height: 30px;
      font-family: 'ElegantIcons';
      speak: none;
      font-style: normal;
      font-weight: normal;
      font-variant: normal;
      text-transform: none;
      line-height: 1;
      -webkit-font-smoothing: antialiased;
      font-size: 19px;
      line-height: 30px;
      content: "\4d"; }
  .fallsky-lite-fullmenu .fullscreen-bg,
  .search-screen .fullscreen-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background-color: #f7f7f7; }
  .fallsky-lite-fullmenu .container,
  .search-screen .container {
    z-index: 9;
    width: 100%;
    height: 100%;
    max-width: none;
    padding: 100px 30px;
    margin: 0;
    background: none;
    color: #212121;
    overflow: auto;
    text-align: left; }
    .fallsky-lite-fullmenu .container > *,
    .search-screen .container > * {
      margin-bottom: 50px; }
      .fallsky-lite-fullmenu .container > *:first-child, .fallsky-lite-fullmenu .container > *:last-child,
      .search-screen .container > *:first-child,
      .search-screen .container > *:last-child {
        margin-bottom: 0; }
  .fallsky-lite-fullmenu .search form.search-form,
  .search-screen .search form.search-form {
    margin: 0; }
    .fallsky-lite-fullmenu .search form.search-form input[type="search"],
    .search-screen .search form.search-form input[type="search"] {
      font-size: 24px;
      font-size: 1.5rem; }

/* Fullscreen Menu
   ========================================================================== */
.fallsky-lite-fullmenu .close-button {
  left: 25px; }
.fallsky-lite-fullmenu nav ul li a {
  position: relative;
  display: inline-block;
  color: inherit;
  text-transform: capitalize;
  opacity: 0.75; }
.fallsky-lite-fullmenu nav ul li.current-menu-item > a, .fallsky-lite-fullmenu nav ul li.current-menu-ancestor > a, .no-touch .fallsky-lite-fullmenu nav ul li a:hover {
  opacity: 1; }
.fallsky-lite-fullmenu .main-navigation > ul > li > a {
  padding: 8px 0;
  font-size: 21px;
  font-size: 1.3125rem;
  font-weight: 400;
  line-height: 30px; }
.fallsky-lite-fullmenu .main-navigation > ul > li.current-menu-item > a:before, .fallsky-lite-fullmenu .main-navigation > ul > li.current-menu-ancestor > a:before {
  position: absolute;
  top: 0;
  left: -10px;
  -webkit-transform: translate(-200px, 23px);
  -ms-transform: translate(-200px, 23px);
  transform: translate(-200px, 23px);
  display: block;
  width: 200px;
  height: 2px;
  background: currentColor;
  content: ""; }
.fallsky-lite-fullmenu .main-navigation li {
  position: relative;
  margin-bottom: 2px; }
  .fallsky-lite-fullmenu .main-navigation li.current-menu-item > .dropdown-toggle {
    opacity: 1; }
    .no-touch .fallsky-lite-fullmenu .main-navigation li.current-menu-item > .dropdown-toggle:hover {
      opacity: 0.75; }
.fallsky-lite-fullmenu .main-navigation ul.sub-menu {
  display: none;
  margin-top: 2px;
  margin-left: 30px; }
  .fallsky-lite-fullmenu .main-navigation ul.sub-menu li a {
    padding: 4px 0;
    font-size: 18px;
    font-size: 1.125rem; }
  .fallsky-lite-fullmenu .main-navigation ul.sub-menu ul.sub-menu li a {
    font-size: 15px;
    font-size: 0.9375rem; }
.fallsky-lite-fullmenu .dropdown-toggle {
  position: relative;
  width: 30px;
  height: 20px;
  background: none;
  border: none;
  opacity: 0.75;
  transition: 0.4s; }
  .no-touch .fallsky-lite-fullmenu .dropdown-toggle:hover {
    opacity: 1; }
  .fallsky-lite-fullmenu .dropdown-toggle:before {
    font-family: 'ElegantIcons';
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -webkit-transform: translateY(2px);
    -ms-transform: translateY(2px);
    transform: translateY(2px);
    display: block;
    width: 30px;
    height: 30px;
    font-size: 18px;
    content: "\35"; }
  .fallsky-lite-fullmenu .dropdown-toggle.toggled-on:before {
    content: "\33"; }
  .fallsky-lite-fullmenu .dropdown-toggle.toggled-on + ul.sub-menu {
    display: block; }
.fallsky-lite-fullmenu .secondary-navigation ul li a {
  padding: 2px 0;
  font-size: 16px;
  font-size: 1rem; }
.fallsky-lite-fullmenu .text {
  font-size: 13px;
  font-size: 0.8125rem; }

/* Search Screen
   ========================================================================== */
.search-screen .search .hint {
  display: block;
  margin-top: 10px;
  font-size: 13px;
  font-size: 0.8125rem;
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  transition: 0.4s; }
  .search-screen .search .hint.show {
    opacity: 0.6;
    pointer-events: auto;
    visibility: visible; }
.search-screen .search .search-form .search-submit {
  width: 50px;
  text-align: right; }
  .search-screen .search .search-form .search-submit.searching:before {
    display: block;
    width: 50px;
    height: 34px;
    margin-left: 10px;
    text-align: center;
    content: "\e02d";
    -webkit-animation: loadingSpin 1s infinite linear;
    animation: loadingSpin 1s infinite linear;
    transform-origin: 50% 50%; }
.search-screen .close-button {
  right: 30px; }
.search-screen .shortcuts-cat {
  margin-top: 90px; }
  .search-screen .shortcuts-cat ul {
    margin: 0;
    font-size: 0;
    list-style: none; }
    .search-screen .shortcuts-cat ul li {
      display: inline-block;
      font-size: 16px;
      font-size: 1rem;
      text-transform: capitalize; }
      .search-screen .shortcuts-cat ul li a {
        color: inherit;
        line-height: 2;
        opacity: 0.5; }
        .no-touch .search-screen .shortcuts-cat ul li a:hover {
          opacity: 1; }
          .no-touch .search-screen .shortcuts-cat ul li a:hover .category-name {
            border-bottom: 1px solid; }
        .search-screen .shortcuts-cat ul li a .counts {
          display: inline-block;
          -webkit-transform: translateY(-10px);
          -ms-transform: translateY(-10px);
          transform: translateY(-10px);
          margin-right: -2px;
          font-size: 10px;
          font-size: 0.625rem; }
      .search-screen .shortcuts-cat ul li:after {
        margin: 0 10px;
        content: "/";
        opacity: 0.5; }
      .search-screen .shortcuts-cat ul li:last-child:after {
        display: none; }
.search-screen .search-results {
  margin-top: 80px; }
  .search-screen .search-results h4.title {
    position: relative;
    margin-bottom: 30px;
    font-size: 18px;
    font-size: 1.125rem;
    font-weight: 400; }
  .search-screen .search-results .results-list {
    margin: 0;
    list-style: none; }
    .search-screen .search-results .results-list li {
      margin: 10px 0;
      text-align: center; }
      .search-screen .search-results .results-list li .post {
        margin-bottom: 30px; }
      .search-screen .search-results .results-list li .featured-img {
        margin-bottom: 15px; }
        .search-screen .search-results .results-list li .featured-img .featured-img-container {
          display: block;
          width: 100%;
          height: 0;
          padding-top: 66%;
          background-size: cover;
          background-position: center;
          background-repeat: no-repeat; }
      .search-screen .search-results .results-list li .post-title {
        margin-bottom: 5px;
        font-size: 18px;
        font-size: 1.125rem;
        font-weight: 600; }
      .search-screen .search-results .results-list li .meta-item {
        font-size: 12px;
        font-size: 0.75rem;
        line-height: 22px; }
        .search-screen .search-results .results-list li .meta-item a {
          color: inherit;
          opacity: 0.6; }
      .no-touch .search-screen .search-results .results-list li:hover .featured-img a {
        display: block;
        filter: brightness(90%); }

@media screen and (min-width: 600px) {
  .site-header #site-header-search {
    position: relative;
    display: block;
    margin: 0 0 0 5px; }
    .site-header #site-header-search .search-button {
      display: inline-block;
      height: 34px;
      padding: 0 10px;
      color: inherit;
      cursor: pointer;
      transition: 0.4s; }
      .no-touch .site-header #site-header-search .search-button:hover {
        opacity: 0.75; }
    .site-header #site-header-search.icon-only .search-button {
      font-family: 'ElegantIcons';
      speak: none;
      font-style: normal;
      font-weight: normal;
      font-variant: normal;
      text-transform: none;
      line-height: 1;
      -webkit-font-smoothing: antialiased;
      font-size: 14px;
      font-size: 0.875rem;
      font-weight: 600;
      line-height: 35px; }
      .site-header #site-header-search.icon-only .search-button:before {
        content: "\55"; }

  .fallsky-lite-fullmenu,
  .search-screen {
    padding: 20px; }
    .fallsky-lite-fullmenu .fullscreen-bg,
    .search-screen .fullscreen-bg {
      top: 20px;
      left: 20px;
      width: calc(100% - 40px);
      height: calc(100% - 40px); }

  .fallsky-lite-fullmenu .container {
    padding: 100px; }
  .fallsky-lite-fullmenu .main-navigation > ul > li > a {
    font-size: 30px;
    font-size: 1.875rem;
    line-height: 40px; }
  .fallsky-lite-fullmenu .main-navigation > ul > li.current-menu-item > a:before, .fallsky-lite-fullmenu .main-navigation > ul > li.current-menu-ancestor > a:before {
    left: -20px;
    -webkit-transform: translate(-200px, 29px);
    -ms-transform: translate(-200px, 29px);
    transform: translate(-200px, 29px); }
  .fallsky-lite-fullmenu .main-navigation > ul > li > .dropdown-toggle {
    width: 40px;
    height: 40px; }
    .fallsky-lite-fullmenu .main-navigation > ul > li > .dropdown-toggle:before {
      -webkit-transform: translateY(3px);
      -ms-transform: translateY(3px);
      transform: translateY(3px);
      width: 40px;
      height: 40px;
      font-size: 30px; }
  .fallsky-lite-fullmenu .main-navigation ul.sub-menu li a {
    font-size: 21px;
    font-size: 1.3125rem; }
  .fallsky-lite-fullmenu .main-navigation ul.sub-menu ul.sub-menu li a {
    font-size: 18px;
    font-size: 1.125rem; }

  .search-screen .container {
    padding: 100px 100px 20px; }
  .search-screen .search-results .results-list {
    margin: 0 -10px; }
    .search-screen .search-results .results-list li {
      float: left;
      width: calc(33% - 20px);
      margin: 10px; } }
@media screen and (min-width: 1120px) {
  .site-header .site-header-menu {
    position: relative;
    z-index: 1;
    width: auto;
    height: auto;
    opacity: 1;
    pointer-events: auto;
    visibility: visible; }
    .site-header .site-header-menu .main-navigation {
      position: relative;
      width: auto;
      height: auto;
      padding: 0;
      -webkit-transform: translateX(0);
      -ms-transform: translateX(0);
      transform: translateX(0);
      overflow: visible; }
      .site-header .site-header-menu .main-navigation li {
        position: relative;
        white-space: nowrap; }
        .no-touch .site-header .site-header-menu .main-navigation li:hover ul.sub-menu {
          will-change: opacity, transform; }
      .site-header .site-header-menu .main-navigation ul.sub-menu {
        position: absolute;
        z-index: -1;
        display: block;
        min-width: 200px;
        padding: 20px 0;
        margin: 0;
        background: #f9f9f9;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
        color: #000;
        text-align: left;
        transition: 0.3s;
        opacity: 0;
        pointer-events: none;
        visibility: hidden; }
        .primary-color-enabled .site-header .site-header-menu .main-navigation ul.sub-menu li.current-menu-item > a, .primary-color-enabled .site-header .site-header-menu .main-navigation ul.sub-menu li.current-menu-ancestor > a {
          color: var(--primary-color); }
        .no-touch .site-header .site-header-menu .main-navigation ul.sub-menu:hover > li > a {
          opacity: 0.6; }
        .no-touch .site-header .site-header-menu .main-navigation ul.sub-menu:hover > li:hover > a {
          opacity: 1; }
        .site-header .site-header-menu .main-navigation ul.sub-menu ul.sub-menu {
          padding-top: 20px;
          box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05); }
        .site-header .site-header-menu .main-navigation ul.sub-menu li {
          padding: 0 25px; }
        .site-header .site-header-menu .main-navigation ul.sub-menu a {
          font-size: 13px;
          font-size: 0.8125rem;
          letter-spacing: 0;
          font-weight: 400;
          text-transform: capitalize; }
      .site-header .site-header-menu .main-navigation > ul > li {
        float: left;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        flex-direction: column;
        -webkit-justify-content: center;
        justify-content: center;
        height: 80px; }
        #page .site-header .site-header-menu .main-navigation > ul > li.button {
          line-height: 80px; }
        .site-header .site-header-menu .main-navigation > ul > li > a {
          padding: 0 15px;
          font-size: 12px;
          font-size: 0.75rem;
          font-weight: 600; }
        .site-header .site-header-menu .main-navigation > ul > li > ul.sub-menu {
          bottom: 0;
          left: -15px;
          -webkit-transform: translateY(105%);
          -ms-transform: translateY(105%);
          transform: translateY(105%); }
          .no-touch .site-header .site-header-menu .main-navigation > ul > li > ul.sub-menu a:hover {
            -webkit-transform: translateX(5px);
            -ms-transform: translateX(5px);
            transform: translateX(5px); }
          .site-header .site-header-menu .main-navigation > ul > li > ul.sub-menu ul.sub-menu {
            top: -20px;
            left: 100%; }
        .site-header .site-header-menu .main-navigation > ul > li:hover > ul.sub-menu,
        .site-header .site-header-menu .main-navigation > ul > li ul.sub-menu li:hover > ul.sub-menu, .site-header .site-header-menu .main-navigation > ul > li.focus > ul.sub-menu,
        .site-header .site-header-menu .main-navigation > ul > li ul.sub-menu li.focus > ul.sub-menu {
          z-index: 99;
          opacity: 1;
          pointer-events: auto;
          visibility: visible; }
        .site-header .site-header-menu .main-navigation > ul > li:hover > ul.sub-menu, .site-header .site-header-menu .main-navigation > ul > li.focus > ul.sub-menu {
          -webkit-transform: translateY(100%);
          -ms-transform: translateY(100%);
          transform: translateY(100%); }
      .site-header .site-header-menu .main-navigation li.mega-menu li {
        white-space: normal; }
      .site-header .site-header-menu .main-navigation li.mega-menu > ul.sub-menu {
        width: 100vw;
        padding: 20px 40px;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-flex-wrap: nowrap;
        -ms-flex-wrap: nowrap;
        flex-wrap: nowrap; }
        .site-header .site-header-menu .main-navigation li.mega-menu > ul.sub-menu > li {
          display: block;
          width: 20%;
          margin: 0;
          padding: 0 30px;
          vertical-align: top; }
          .site-header .site-header-menu .main-navigation li.mega-menu > ul.sub-menu > li > a {
            padding: 8px 0;
            margin-bottom: 8px;
            font-weight: 800;
            font-size: 11px;
            font-size: 0.6875rem;
            line-height: 18px;
            text-transform: uppercase;
            letter-spacing: 0.1em; }
          .site-header .site-header-menu .main-navigation li.mega-menu > ul.sub-menu > li > ul {
            position: relative;
            top: auto;
            left: auto;
            display: block;
            padding: 0;
            margin-bottom: 10px;
            box-shadow: none; }
            .site-header .site-header-menu .main-navigation li.mega-menu > ul.sub-menu > li > ul li {
              padding: 0; }
              .site-header .site-header-menu .main-navigation li.mega-menu > ul.sub-menu > li > ul li a {
                padding: 6px 0;
                line-height: 18px; }
        .site-header .site-header-menu .main-navigation li.mega-menu > ul.sub-menu .mega-menu-post {
          text-align: center; }
          .no-touch .site-header .site-header-menu .main-navigation li.mega-menu > ul.sub-menu .mega-menu-post a:hover {
            -webkit-transform: none;
            -ms-transform: none;
            transform: none; }
          .site-header .site-header-menu .main-navigation li.mega-menu > ul.sub-menu .mega-menu-post .featured-img {
            margin-bottom: 15px; }
          .site-header .site-header-menu .main-navigation li.mega-menu > ul.sub-menu .mega-menu-post .featured-img-container {
            display: block;
            width: 100%;
            height: 0;
            padding-top: 66%;
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat; }
          .site-header .site-header-menu .main-navigation li.mega-menu > ul.sub-menu .mega-menu-post .post-title {
            margin-bottom: 10px;
            font-size: 16px;
            font-size: 1rem;
            line-height: 1.3;
            white-space: normal; }
            .site-header .site-header-menu .main-navigation li.mega-menu > ul.sub-menu .mega-menu-post .post-title a {
              font: inherit;
              letter-spacing: inherit;
              text-transform: inherit;
              will-change: opacity; }
              .no-touch .site-header .site-header-menu .main-navigation li.mega-menu > ul.sub-menu .mega-menu-post .post-title a:hover {
                opacity: 0.5; }
      .no-touch .site-header .site-header-menu .main-navigation li.mega-menu:hover > ul.sub-menu > li > ul {
        z-index: 99;
        opacity: 1;
        pointer-events: auto;
        visibility: visible; }
      .site-header .site-header-menu .main-navigation li.mega-menu.menu-item-object-category ul li {
        display: block;
        float: left;
        width: 25%;
        padding: 0 20px; }
        .no-touch .site-header .site-header-menu .main-navigation li.mega-menu.menu-item-object-category ul li:hover .post-meta .meta-item a {
          will-change: opacity, color; }
      .site-header .site-header-menu .main-navigation li.mega-menu.menu-item-object-category > ul {
        padding-top: 30px; }
      .site-header .site-header-menu .main-navigation li.mega-menu.menu-item-object-category.menu-item-has-children > ul.sub-menu li.sub-cat-list {
        width: 20%; }
        .site-header .site-header-menu .main-navigation li.mega-menu.menu-item-object-category.menu-item-has-children > ul.sub-menu li.sub-cat-list li {
          float: none;
          width: 100%;
          padding-left: 50px;
          white-space: nowrap; }
          .site-header .site-header-menu .main-navigation li.mega-menu.menu-item-object-category.menu-item-has-children > ul.sub-menu li.sub-cat-list li a {
            display: inline;
            line-height: 30px; }
        .site-header .site-header-menu .main-navigation li.mega-menu.menu-item-object-category.menu-item-has-children > ul.sub-menu li.sub-cat-list li.current a {
          text-decoration: underline; }
      .site-header .site-header-menu .main-navigation li.mega-menu.menu-item-object-category.menu-item-has-children > ul.sub-menu li.sub-cat-posts {
        width: 80%; }
        .site-header .site-header-menu .main-navigation li.mega-menu.menu-item-object-category.menu-item-has-children > ul.sub-menu li.sub-cat-posts .sub-cat {
          display: none; }
          .site-header .site-header-menu .main-navigation li.mega-menu.menu-item-object-category.menu-item-has-children > ul.sub-menu li.sub-cat-posts .sub-cat.current {
            display: block; }
          .site-header .site-header-menu .main-navigation li.mega-menu.menu-item-object-category.menu-item-has-children > ul.sub-menu li.sub-cat-posts .sub-cat > ul {
            position: relative; }
            .site-header .site-header-menu .main-navigation li.mega-menu.menu-item-object-category.menu-item-has-children > ul.sub-menu li.sub-cat-posts .sub-cat > ul:after {
              display: none; }
            .site-header .site-header-menu .main-navigation li.mega-menu.menu-item-object-category.menu-item-has-children > ul.sub-menu li.sub-cat-posts .sub-cat > ul > li {
              width: 33.33%; }
  .site-header .secondary-navigation {
    display: block; }
  .site-header.site-header-color-dark .site-header-menu .main-navigation ul.sub-menu {
    background: #1c1c1c;
    color: #fff; }
  .site-header.site-header-layout-1:not(.menu-btn-show) .menu-toggle {
    display: none; }
  .site-header.site-header-layout-1 .site-header-menu {
    display: block; }
    .site-header.site-header-layout-1 .site-header-menu .main-navigation > ul > li:last-child:not(.mega-menu) > ul.sub-menu ul.sub-menu {
      left: auto;
      right: 100%; } }
@media screen and (min-width: 1500px) {
  .site-header .site-header-menu .main-navigation li.mega-menu > ul.sub-menu {
    padding-right: calc(50vw - 750px);
    padding-left: calc(50vw - 750px); } }
@media screen and (max-width: 600px) {
  .logged-in.admin-bar .fallsky-lite-fullmenu .container,
  .logged-in.admin-bar .search-screen .container {
    padding-top: 150px; }
  .logged-in.admin-bar .fallsky-lite-fullmenu .close-button,
  .logged-in.admin-bar .search-screen .close-button {
    top: 70px; } }
@media screen and (max-width: 599px) {
  .site-header .menu-toggle {
    padding-right: 3px;
    font-size: 0; } }
@media screen and (max-width: 400px) {
  .site-header .site-branding {
    max-width: calc(100% - 100px); } }
/* ==========================================================================
   5.0 Main Content Area, Homepage Widgets & Posts Layouts
   ========================================================================== */
.container {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  padding: 0 30px; }

/**
 * General Colors
 */
.light-color,
.dark-color {
  background: var(--bg-color);
  color: var(--text-color); }
  .light-color #page,
  .dark-color #page {
    background-color: var(--bg-color); }

/**
 * Slider Arrows
 */
.slider-arrows {
  z-index: 99;
  width: 100%;
  height: 50px;
  overflow: hidden;
  pointer-events: none; }
  .slider-arrows .slick-arrow {
    display: block;
    font-family: 'ElegantIcons';
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    font-size: 0;
    cursor: pointer;
    transition: 0.4s;
    will-change: opacity;
    pointer-events: auto; }
    .slider-arrows .slick-arrow:before {
      font-size: 18px;
      font-size: 1.125rem; }
  .slider-arrows .slick-arrow {
    background: none;
    border: none;
    box-shadow: none; }
  .slider-arrows .slick-prev:before {
    content: "\34"; }
  .slider-arrows .slick-next:before {
    content: "\35"; }

/**
 * Slick Dots
 */
.slick-dots {
  z-index: 99;
  margin: 0 auto;
  font-size: 0;
  list-style: none;
  text-align: center; }
  .slick-dots li {
    position: relative;
    display: inline-block;
    width: 30px;
    height: 30px;
    font-size: 14px;
    font-size: 0.875rem;
    letter-spacing: 0.1em;
    line-height: 30px;
    counter-increment: step-counter;
    cursor: pointer;
    opacity: 0.3; }
    .slick-dots li button {
      display: none; }
    .slick-dots li:before {
      position: relative;
      top: auto;
      left: auto;
      -webkit-transform: none;
      -ms-transform: none;
      transform: none;
      width: auto;
      height: auto;
      background: none;
      border-radius: 0;
      content: counter(step-counter,decimal-leading-zero); }
    .slick-dots li.slick-active {
      opacity: 1; }

/* Site Content
   ========================================================================== */
.site-content {
  position: relative;
  z-index: 9; }
  .site-content > .container {
    margin-top: 50px; }

.main {
  margin-top: 50px; }

#primary {
  padding-bottom: 60px; }
  #primary > *:last-child {
    margin-bottom: 0; }

.sidebar {
  max-width: 600px; }

/* Fullwidth Featured Section
   ========================================================================== */
.featured-section .post {
  position: relative;
  height: auto; }
  .no-touch .featured-section .post:hover .post-bg {
    filter: brightness(90%); }
  .featured-section .post .post-bg {
    z-index: 1;
    overflow: hidden;
    transition: 0.4s; }
  .featured-section .post .post-link {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1; }
  .featured-section .post .post-content {
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    z-index: 9;
    padding: 30px;
    overflow: hidden;
    pointer-events: none; }
    .featured-section .post .post-content > * {
      width: 100%;
      max-width: 1000px; }
    .featured-section .post .post-content a {
      color: inherit; }
    .featured-section .post .post-content .post-title a,
    .featured-section .post .post-content .cat-links a {
      pointer-events: auto;
      opacity: 1; }
  .featured-section .post .post-title {
    font-size: 24px;
    font-size: 1.5rem; }
.featured-section .post-bg-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat; }
.featured-section .top-slider {
  position: relative;
  max-width: 100%;
  color: #fff; }
  .featured-section .top-slider .slider-wrapper {
    position: relative;
    width: 100%; }
  .featured-section .top-slider .post {
    width: 100%; }
    .featured-section .top-slider .post .post-bg {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      z-index: 1; }
    .featured-section .top-slider .post .post-content {
      z-index: 3;
      width: 100%;
      height: 100%; }
      .featured-section .top-slider .post .post-content > * {
        position: relative;
        z-index: 9; }
        .featured-section .top-slider .post .post-content > *:not(:first-child) {
          margin-top: 15px; }
      .featured-section .top-slider .post .post-content .post-excerpt {
        font-size: 18px;
        font-size: 1.125rem; }
      .featured-section .top-slider .post .post-content:before {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 1;
        background: #000;
        content: "";
        pointer-events: none;
        opacity: 0.3;
        transition: opacity 0.4s; }
  .featured-section .top-slider.style-slider-1 .slider-arrows {
    position: absolute;
    right: 0;
    bottom: 0;
    display: block;
    width: 120px;
    height: 60px;
    font-size: 0;
    transition: background 0.3s; }
    .no-touch .featured-section .top-slider.style-slider-1 .slider-arrows:hover {
      background: #fff;
      color: #000; }
    .featured-section .top-slider.style-slider-1 .slider-arrows:after {
      position: absolute;
      top: 20px;
      left: 60px;
      display: block;
      width: 1px;
      height: 20px;
      background: currentColor;
      content: "";
      opacity: 0.1;
      pointer-events: none; }
    .featured-section .top-slider.style-slider-1 .slider-arrows .slick-arrow {
      display: inline-block;
      width: 60px;
      height: 60px;
      text-align: center;
      line-height: 60px; }
  .featured-section .top-slider.style-slider-1 .post {
    height: calc(100vh - 80px);
    min-height: 400px; }
    @media screen and (max-width: 1024px) {
      .touch .featured-section .top-slider.style-slider-1 .post {
        height: 480px; } }
    .site-header.transparent ~ .site-content .featured-section .top-slider.style-slider-1 .post {
      height: 100vh; }
      @media screen and (max-width: 1024px) {
        .touch .site-header.transparent ~ .site-content .featured-section .top-slider.style-slider-1 .post {
          height: 560px; } }
    .featured-section .top-slider.style-slider-1 .post .post-bg a.post-link {
      width: calc(100% + 40px);
      transition: transform 4s ease-out 0.5s; }
    .featured-section .top-slider.style-slider-1 .post .post-content {
      position: relative;
      text-align: center; }
      .featured-section .top-slider.style-slider-1 .post .post-content > * {
        transition: opacity 1s ease-out 0.5s;
        opacity: 0; }
  .featured-section .top-slider.style-slider-1 .current-post .post-bg a.post-link {
    -webkit-transform: translateX(-20px);
    -ms-transform: translateX(-20px);
    transform: translateX(-20px);
    transition-delay: 0s; }
  .featured-section .top-slider.style-slider-1 .current-post .post-content > * {
    opacity: 1; }
    .featured-section .top-slider.style-slider-1 .current-post .post-content > *:nth-child(2) {
      transition-delay: 1s; }
    .featured-section .top-slider.style-slider-1 .current-post .post-content > *:nth-child(3) {
      transition-delay: 1.5s; }
  .featured-section .top-slider.style-slider-1 .slick-dots {
    position: absolute;
    right: 0;
    bottom: 60px;
    z-index: 9;
    width: 60px;
    height: auto;
    padding-bottom: 20px;
    margin: 0;
    text-align: center; }
    .featured-section .top-slider.style-slider-1 .slick-dots li {
      display: block;
      width: 60px; }

/* Posts
   ========================================================================== */
.cat-links {
  font-size: 12px;
  font-size: 0.75rem;
  line-height: 1; }
  .cat-links a {
    position: relative;
    display: inline-block;
    margin-bottom: 3px;
    color: currentColor;
    letter-spacing: 1px;
    font-weight: 600;
    line-height: 22px;
    text-transform: uppercase;
    opacity: 0.6; }
    .primary-color-enabled .cat-links a {
      color: currentColor; }
    .cat-links a:before {
      position: absolute;
      bottom: 0;
      left: 0;
      -webkit-transform: scaleX(0);
      -ms-transform: scaleX(0);
      transform: scaleX(0);
      transform-origin: 100% 50%;
      width: calc(100% - 1px);
      height: 2px;
      background: currentColor;
      content: "";
      transition: transform 0.4s; }
      .primary-color-enabled .cat-links a:before {
        background: var(--primary-color); }
    .no-touch .cat-links a:hover {
      opacity: 1; }
      .no-touch .cat-links a:hover:before {
        -webkit-transform: scaleX(1);
        -ms-transform: scaleX(1);
        transform: scaleX(1);
        transform-origin: 0% 50%; }

.post-meta {
  font-size: 0; }
  .posts .post .post-meta {
    opacity: 0.6; }
  .post-meta .meta-item {
    position: relative;
    display: inline-block;
    padding-right: 20px;
    font-size: 12px;
    font-size: 0.75rem;
    font-weight: 400;
    line-height: 20px;
    text-transform: capitalize; }
    .no-touch .post-meta .meta-item > a:hover {
      opacity: 0.7; }
    .post-meta .meta-item:after {
      position: absolute;
      top: 9px;
      right: 9px;
      display: inline-block;
      width: 3px;
      height: 3px;
      background: currentColor;
      border-radius: 50%;
      -webkit-transform: scale(0.85);
      -ms-transform: scale(0.85);
      transform: scale(0.85);
      box-sizing: border-box;
      line-height: inherit;
      content: ""; }
    .post-meta .meta-item:last-child {
      padding-right: 0; }
      .post-meta .meta-item:last-child:after {
        display: none; }
    .post-meta .meta-item a {
      color: inherit; }

/**
 * Posts Archive General Styles
 */
.posts .post {
  position: relative;
  margin-top: 50px;
  overflow: hidden; }
  .posts .post:first-child {
    margin-top: 0; }
  .posts .post a {
    color: inherit; }
  .posts .post .post-title {
    margin-bottom: 5px;
    font-size: 18px;
    font-size: 1.125rem; }
    .posts .post .post-title:last-child {
      margin-bottom: 0; }
  .posts .post .post-excerpt {
    font-size: 14px;
    font-size: 0.875rem; }
    .posts .post .post-excerpt p {
      margin-bottom: 15px;
      font: inherit; }
      .posts .post .post-excerpt p:last-child {
        margin-bottom: 0; }
    .posts .post .post-excerpt > *:last-child {
      margin-bottom: 0; }
  .posts .post .featured-img {
    position: relative;
    margin-bottom: 20px;
    overflow: hidden; }
    .posts .post .featured-img a,
    .posts .post .featured-img img {
      display: block; }
  .no-touch .posts .post:hover .featured-img a {
    filter: brightness(80%);
    will-change: transform; }
  .posts .post .featured-img-container {
    position: relative;
    display: block;
    width: 100%;
    height: 0;
    padding-top: 70%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat; }
  .posts .post .post-content .post-header,
  .posts .post .post-content .post-excerpt {
    margin-bottom: 15px; }
  .posts .post .post-content .more-btn {
    margin-top: 20px; }
  .posts .post .post-content > *:last-child {
    margin-bottom: 0; }
  .posts .post .more-btn .read-more-btn {
    position: relative;
    display: inline-block;
    width: auto;
    height: 34px;
    padding: 0 20px;
    border-radius: 2px;
    background: var(--btn-bg-color);
    color: var(--btn-text-color);
    font-size: 12px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    line-height: 34px;
    will-change: opacity; }
    .no-touch .posts .post .more-btn .read-more-btn:hover {
      opacity: 0.7; }
  .posts .post.sticky .sticky-icon {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 11;
    width: 50px;
    height: 50px;
    color: #fff;
    overflow: hidden;
    pointer-events: none; }
    .posts .post.sticky .sticky-icon:after {
      position: relative;
      display: block;
      width: 50px;
      height: 50px;
      font-family: 'ElegantIcons';
      speak: none;
      font-style: normal;
      font-weight: normal;
      font-variant: normal;
      text-transform: none;
      line-height: 1;
      -webkit-font-smoothing: antialiased;
      font-size: 18px;
      font-size: 1.125rem;
      line-height: 50px;
      text-align: center;
      content: "\e01e";
      text-shadow: 0 0 20px rgba(0, 0, 0, 0.15); }
.no-touch .primary-color-enabled .posts .post .post-title a:hover {
  color: var(--primary-color); }

.posts.layout-grid .post .post-header + .post-meta {
  margin-top: -10px; }

.post.sticky:not(.has-post-thumbnail) .sticky-icon {
  position: relative;
  margin-left: 0;
  color: inherit; }
  .post.sticky:not(.has-post-thumbnail) .sticky-icon:after {
    text-align: left; }

/* Post Navigation
   ========================================================================== */
.pagination {
  width: 100%;
  margin: 50px 0 10px;
  text-align: center;
  clear: both; }
  .pagination .pagination-container {
    display: inline-block;
    width: auto;
    padding: 0;
    border: none; }
  .pagination .page-numbers {
    display: inline-block;
    padding: 5px 7px;
    margin: 0;
    color: inherit;
    font-size: 12px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    line-height: 34px;
    text-transform: uppercase; }
    .pagination .page-numbers.prev {
      width: auto;
      margin-right: 10px; }
      .pagination .page-numbers.prev span {
        margin-right: 7px; }
    .pagination .page-numbers.next {
      width: auto;
      margin-left: 10px; }
      .pagination .page-numbers.next span {
        margin-left: 7px; }
    .pagination .page-numbers.current {
      position: relative; }
      .pagination .page-numbers.current:after {
        position: absolute;
        bottom: 10px;
        left: 20%;
        display: block;
        width: 50%;
        height: 2px;
        background: currentColor;
        content: ""; }
        .primary-color-enabled .pagination .page-numbers.current:after {
          background: var(--primary-color); }
  .pagination span.page-numbers {
    pointer-events: none; }
    .pagination span.page-numbers.prev, .pagination span.page-numbers.next {
      opacity: 0.5; }
  .no-touch .pagination a.page-numbers:hover {
    opacity: 0.5; }

/* Site Footer
   ========================================================================== */
.site-footer {
  position: relative;
  z-index: 99; }
  .site-footer .footer-bottom {
    padding: 50px 0; }
    .site-footer .footer-bottom a {
      opacity: 0.5; }
      .no-touch .site-footer .footer-bottom a:hover {
        color: inherit;
        opacity: 1; }
  .site-footer .container > *:nth-child(2) {
    margin-top: 20px; }
  .site-footer.dark-color {
    background: #131313;
    color: #fff; }
    .site-footer.dark-color .footer-bottom {
      background: #000; }

@media screen and (min-width: 600px) {
  .slick-dots li {
    font-size: 16px;
    font-size: 1rem; }

  .featured-section .top-slider.style-slider-1 .post .post-content {
    padding: 30px 100px; }

  .pagination .pagination-container {
    padding: 0 20px; }
  .pagination .page-numbers.prev {
    margin-right: 30px; }
  .pagination .page-numbers.next {
    margin-left: 30px; } }
@media screen and (min-width: 768px) {
  .featured-section .top-slider .post .post-title {
    font-size: 36px;
    font-size: 2.25rem; }
  .logged-in.admin-bar .featured-section .top-slider .post {
    height: calc(100vh - 112px); }

  .posts .post {
    width: 100%; }
    .posts .post .post-title {
      font-size: 21px;
      font-size: 1.3125rem; }
  .posts.layout-grid .posts-wrapper {
    margin-right: -20px;
    margin-left: -20px; }
  .posts.layout-grid .post {
    float: left;
    margin-right: 20px;
    margin-left: 20px; }
  .posts.layout-grid.column-2 .post {
    width: calc(50% - 40px); }
    .posts.layout-grid.column-2 .post:nth-child(-n+2) {
      margin-top: 0; }
  .posts.layout-grid.column-3 .post {
    width: calc(33.333333% - 40px); }
    .posts.layout-grid.column-3 .post:nth-child(-n+3) {
      margin-top: 0; }
  .posts.layout-grid.column-2 .post:nth-child(2n+1), .posts.layout-grid.column-3 .post:nth-child(3n+1) {
    clear: left; }
  .posts.layout-list .post {
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap; }
    .posts.layout-list .post .post-content {
      -webkit-align-items: center;
      -ms-flex-align: center;
      align-items: center;
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
      -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
      flex-wrap: wrap;
      -webkit-flex-direction: column;
      -ms-flex-direction: column;
      flex-direction: column;
      -webkit-justify-content: center;
      justify-content: center; }
      .posts.layout-list .post .post-content > * {
        width: 100%; }
    .posts.layout-list .post:not(.has-post-thumbnail) .post-content {
      width: 100%; }
  .posts.layout-list .featured-img {
    width: calc(50% - 30px);
    margin-right: 30px;
    margin-bottom: 0; }
  .posts.layout-list .featured-img + .post-content {
    width: 50%; }

  .site-footer .footer-bottom.column-2 .container > *:nth-child(2) {
    margin-top: 0; }
  .site-footer .footer-bottom.column-2 .container > *:first-child {
    float: right;
    width: 50%;
    text-align: right; }
  .site-footer .footer-bottom.column-2 .container > *:last-child {
    float: left;
    width: 50%;
    text-align: left; }
  .site-footer .footer-bottom.column-2 .container > *:only-child {
    float: none;
    width: 100%; }
  .site-footer .footer-bottom.column-2 .container .widget {
    margin-top: 0; } }
@media screen and (min-width: 1025px) {
  .featured-section .top-slider .post .post-title {
    font-size: 44px;
    font-size: 2.75rem; }
  .featured-section .top-slider .post .post-content > * {
    max-width: 800px; } }
@media screen and (min-width: 1120px) {
  .site-content[class*="with-sidebar-"] #primary {
    float: left;
    width: calc(100% - 360px); }
  .site-content[class*="with-sidebar-"] #secondary {
    float: left;
    width: 300px; }
  .site-content.with-sidebar-left #primary {
    float: right; }
  .site-content.with-sidebar-right #secondary {
    float: right; }
  .site-content:not([class*="with-sidebar-"]) .posts.layout-list .post .post-title {
    font-size: 32px;
    font-size: 2rem; }
  .site-content:not([class*="with-sidebar-"]) .posts.layout-list .post .post-excerpt {
    font-size: 16px;
    font-size: 1rem; }

  .main {
    margin-top: 70px; } }
@media screen and (min-width: 1440px) {
  .container {
    max-width: 1500px; } }
@media screen and (max-width: 400px) {
  .container {
    padding-right: 20px;
    padding-left: 20px; } }
/* ==========================================================================
   6.0 Single Page & Post, Archive Pages & 404 Page
   ========================================================================== */
/**
 * Remove Margin Bottom for Single Content Last Element
 */
article .post-entry > *:last-child {
  margin-bottom: 0; }

.page .featured-media-section,
.archive .featured-media-section,
.single .featured-media-section {
  position: relative;
  width: 100%;
  overflow: hidden; }
  .page .featured-media-section .header-img,
  .archive .featured-media-section .header-img,
  .single .featured-media-section .header-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat; }

.page .featured-media-section .image-caption,
.page .featured-media-section ~ .image-caption,
.single .featured-media-section .image-caption,
.single .featured-media-section ~ .image-caption {
  display: none; }
.page #primary .page-links,
.single #primary .page-links {
  width: 100%;
  margin-top: 60px;
  clear: both;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1; }
  .page #primary .page-links .page-links-title,
  .single #primary .page-links .page-links-title {
    margin-right: 5px; }
    .page #primary .page-links .page-links-title ~ span:not(.screen-reader-text),
    .page #primary .page-links .page-links-title ~ a,
    .single #primary .page-links .page-links-title ~ span:not(.screen-reader-text),
    .single #primary .page-links .page-links-title ~ a {
      display: inline-block;
      padding: 5px;
      margin-right: 5px; }
    .page #primary .page-links .page-links-title ~ span:not(.screen-reader-text),
    .single #primary .page-links .page-links-title ~ span:not(.screen-reader-text) {
      border-bottom: 1px solid; }
    .no-touch .page #primary .page-links .page-links-title ~ a:hover, .no-touch
    .single #primary .page-links .page-links-title ~ a:hover {
      opacity: 0.5; }

.page #primary > .page .meta-item.edit-link a:before,
.single #primary > .post .meta-item.edit-link a:before,
.attachment #primary .meta-item.edit-link a:before {
  font-family: 'ElegantIcons';
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  content: "\6c";
  margin-right: 6px; }

.page #primary .page-links {
  margin-top: 0;
  padding-top: 30px; }
.page #primary .post-meta {
  margin-top: 60px; }

/* Single Page & Archive Page
   ========================================================================== */
.page .featured-media-section,
.archive .featured-media-section {
  height: 0;
  padding-top: 66%; }

.author-bio .author-bio-top .author-photo {
  margin-bottom: 10px; }
.author-bio .author-bio-top .author-name {
  font-weight: 600; }

.page .page-header-text {
  z-index: 9;
  width: 100%;
  max-width: 860px;
  padding: 0 30px;
  text-align: center; }
.page.page-header-with-bg .page-header {
  position: relative;
  height: 60vh;
  min-height: 420px;
  overflow: hidden; }
  @media screen and (max-width: 1024px) {
    .touch .page.page-header-with-bg .page-header {
      height: 420px; } }
  .page.page-header-with-bg .page-header .page-header-text {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    color: #fff; }
  .page.page-header-with-bg .page-header .page-title {
    font-size: 48px;
    font-size: 3rem; }
  .page.page-header-with-bg .page-header .featured-media-section {
    height: 100%;
    padding-top: 0; }
    .page.page-header-with-bg .page-header .featured-media-section:after {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      z-index: 3;
      background: #000;
      content: "";
      opacity: 0.4; }
@media screen and (min-width: 768px) {
  .page.page-header-with-bg .page-header .page-title {
    font-size: 60px;
    font-size: 3.75rem; } }
@media screen and (min-width: 1120px) {
  .page.page-header-with-bg.has-secondary-menu .page-header {
    min-height: 480px; }
  .page.page-header-with-bg.has-secondary-menu .site-header.transparent + .site-content .page-header .page-header-text {
    padding-top: 80px; }
  .page.page-header-with-bg .page-header .page-title {
    font-size: 80px;
    font-size: 5rem; } }
.page:not(.page-header-with-bg) .page-header {
  margin-top: 50px; }

.archive .page-header-text {
  z-index: 9;
  width: 100%;
  max-width: 860px;
  padding: 0 30px;
  text-align: center; }
.archive .page-header {
  margin-top: 50px; }
  .archive .page-header .category-description,
  .archive .page-header .tag-description,
  .archive .page-header .author-bio-text {
    max-width: 640px;
    margin-top: 15px; }
    .archive .page-header .category-description p,
    .archive .page-header .tag-description p,
    .archive .page-header .author-bio-text p {
      margin-bottom: 15px; }
      .archive .page-header .category-description p:last-child,
      .archive .page-header .tag-description p:last-child,
      .archive .page-header .author-bio-text p:last-child {
        margin-bottom: 0; }
  .archive .page-header .category-description p,
  .archive .page-header .tag-description p {
    line-height: 1.5; }
.archive.author .page-header .author-bio {
  max-width: 1000px; }
  .archive.author .page-header .author-bio .author-bio-top .author-photo {
    margin-bottom: 20px; }
  .archive.author .page-header .author-bio .author-bio-top .page-title {
    font-family: inherit;
    font-size: 32px;
    font-size: 2rem; }
.archive.author .page-header:after {
  position: relative;
  display: block;
  width: 100%;
  height: 1px;
  margin-top: 40px;
  content: "";
  background: currentColor;
  opacity: 0.1; }

.page .site-content #primary > *:not(:last-child) {
  margin-bottom: 60px; }
.page .site-content:not([class*="with-sidebar-"]) #primary > * {
  max-width: 1000px; }

/* Search Results
   ========================================================================== */
.search.search-results .page-header {
  padding: 50px 0;
  text-align: center; }
.search.search-results .main {
  margin-top: 0; }

/* When no search results
   ========================================================================== */
.no-post-found .no-article {
  padding-top: 100px; }
  .no-post-found .no-article .post-title {
    margin-bottom: 30px; }
  .no-post-found .no-article .search form {
    margin-left: 0; }
    .no-post-found .no-article .search form input[type="search"] {
      font-size: 18px;
      font-size: 1.125rem; }
    .no-post-found .no-article .search form input {
      opacity: 1; }

/* Page 404
   ========================================================================== */
.error404 #primary .container {
  text-align: center; }
.error404 .page-404-page-header {
  position: relative;
  margin-top: 100px; }
  .error404 .page-404-page-header h1.page-title {
    font-size: 110px;
    font-size: 6.875rem;
    font-weight: 100;
    line-height: 1;
    letter-spacing: 0; }
  .error404 .page-404-page-header h2 {
    margin-bottom: 40px;
    font-size: 30px;
    font-size: 1.875rem;
    line-height: 1; }
.error404 .page-404-container {
  max-width: 600px;
  padding-bottom: 50px; }
  .error404 .page-404-container p {
    margin-bottom: 40px;
    color: var(--content-color); }
  .error404 .page-404-container .search form.search-form input[type="search"] {
    font-size: 18px;
    font-size: 1.125rem; }

/* Single Post
   ========================================================================== */
.single #primary {
  position: relative; }
  .single #primary > *:not(:last-child) {
    margin-bottom: 60px; }
  .single #primary > .post {
    position: relative; }
  .single #primary > .author-info-box .author-bio .author-bio-text > *:last-child {
    margin-bottom: 0; }
.single .post-header .post-header-text .post-title {
  margin-bottom: 15px;
  font-size: 24px;
  font-size: 1.5rem; }
.single .main #primary > article .post-header {
  margin-bottom: 40px; }
.single.post-template-1 .post-header-text {
  z-index: 9;
  width: 100%;
  padding: 0 30px;
  text-align: center; }
.single.post-template-1.post-header-with-bg .site-content > .post-header {
  position: relative;
  height: 100vh;
  min-height: 420px; }
  @media screen and (max-width: 1024px) {
    .touch .single.post-template-1.post-header-with-bg .site-content > .post-header {
      height: 580px; } }
  .single.post-template-1.post-header-with-bg .site-content > .post-header .post-header-text {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    color: #fff; }
  .single.post-template-1.post-header-with-bg .site-content > .post-header .post-title {
    margin-top: 25px;
    font-size: 36px;
    font-size: 2.25rem; }
  .single.post-template-1.post-header-with-bg .site-content > .post-header .cat-links a {
    opacity: 1; }
  .single.post-template-1.post-header-with-bg .site-content > .post-header .featured-media-section .header-img:after {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 3;
    background: #000;
    content: "";
    opacity: 0.35; }
.single.post-template-1:not(.post-header-with-bg) .site-content > .post-header {
  padding: 50px 0 0 0; }
.single.post-template-1 .featured-media-section {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%; }
.single.primary-color-enabled.post-header-with-bg.post-template-1 .site-content .post-header-text .cat-links {
  color: #fff; }
.single #primary > * {
  max-width: 1000px; }
.single #primary > article {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  padding-bottom: 30px; }
  .single #primary > article .post-tag-cloud,
  .single #primary > article .post-meta {
    margin: 60px auto 0;
    clear: both; }
  .single #primary > article .post-tag-cloud + .post-meta {
    margin-top: 30px; }
  .single #primary > article footer.post-meta .meta-item {
    font-size: 12px;
    font-size: 0.75rem;
    line-height: 27px; }
    .single #primary > article footer.post-meta .meta-item:after {
      top: 12px; }
  .single #primary > article .post-tag-cloud {
    font-size: 0; }
    .single #primary > article .post-tag-cloud .tagcloud {
      position: relative;
      padding-left: 35px; }
      .single #primary > article .post-tag-cloud .tagcloud:before {
        position: absolute;
        top: 0;
        left: 0;
        font-family: 'ElegantIcons';
        speak: none;
        font-style: normal;
        font-weight: normal;
        font-variant: normal;
        text-transform: none;
        line-height: 1;
        -webkit-font-smoothing: antialiased;
        font-size: 18px;
        font-size: 1.125rem;
        line-height: 20px;
        content: "\e017"; }
      .single #primary > article .post-tag-cloud .tagcloud a {
        margin: 0 4px 4px 0;
        border-bottom: 2px solid transparent;
        color: inherit;
        font-weight: 500; }
        .single #primary > article .post-tag-cloud .tagcloud a:not(:last-child):after {
          content: ","; }
        .no-touch .single #primary > article .post-tag-cloud .tagcloud a:hover, .single #primary > article .post-tag-cloud .tagcloud a:focus {
          border-bottom-color: currentColor;
          text-decoration: none; }
  .single #primary > article .article-like-comment {
    display: inline-block;
    margin-top: 30px; }
.single #primary .author-bio {
  text-align: center; }
  .single #primary .author-bio .author-name {
    font-size: 18px;
    font-size: 1.125rem;
    font-family: inherit; }
    .single #primary .author-bio .author-name a {
      color: inherit; }
      .no-touch .single #primary .author-bio .author-name a:hover {
        opacity: 0.5; }
  .single #primary .author-bio .author-bio-text {
    margin-top: 20px;
    font-size: 14px;
    font-size: 0.875rem;
    color: var(--content-color); }
    .single #primary .author-bio .author-bio-text p:not(:last-child) {
      margin-bottom: 15px; }
.no-touch .single.primary-color-enabled #primary > article .post-tag-cloud .tagcloud a:hover, .single.primary-color-enabled #primary > article .post-tag-cloud .tagcloud a:focus {
  border-bottom-color: var(--primary-color); }

.content-after-post .post-navigation .nav-links > * {
  position: relative;
  width: 100%;
  height: 200px;
  vertical-align: middle;
  overflow: hidden; }
.content-after-post .post-navigation a {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  padding: 30px;
  background: #ddd;
  color: #fff;
  text-align: center; }
  .content-after-post .post-navigation a .post-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
    transition: transform 5s ease-out; }
  .no-touch .content-after-post .post-navigation a:hover .post-img {
    -webkit-transform: scale(1.2);
    -ms-transform: scale(1.2);
    transform: scale(1.2); }
  .content-after-post .post-navigation a:after {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    background: #000;
    content: "";
    opacity: 0.35;
    transition: opacity 0.4s; }
  .content-after-post .post-navigation a span.meta-nav,
  .content-after-post .post-navigation a .post-title {
    position: relative;
    z-index: 9;
    color: #fff; }
  .content-after-post .post-navigation a:hover:after {
    opacity: 0.65; }
.content-after-post .post-navigation span.meta-nav {
  display: block;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 400; }
.content-after-post .post-navigation .post-title {
  width: 100%;
  max-width: 100%;
  margin-top: 8px;
  font-size: 24px;
  font-size: 1.5rem;
  text-align: center; }
.content-after-post .post-navigation .nav-previous span.meta-nav:before {
  float: left;
  font-family: 'ElegantIcons';
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  font-size: 16px;
  font-size: 1rem;
  line-height: 23px;
  content: "\34";
  margin-right: 6px; }
.content-after-post .post-navigation .nav-next span.meta-nav:after {
  float: right;
  font-family: 'ElegantIcons';
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  font-size: 16px;
  font-size: 1rem;
  line-height: 23px;
  content: "\35";
  margin-left: 6px; }
.content-after-post .post-navigation .nav-previous + .nav-next a {
  background: #eee; }

.comments #respond {
  text-align: left; }
  .comments #respond + .comments-title {
    margin-top: 60px; }
  .comments #respond .comment-notes {
    color: var(--content-color); }
  .comments #respond .comment-reply-title small {
    margin-left: 10px; }
.comments ol.comment-list {
  margin: 0 auto;
  list-style: none;
  text-align: left; }
  .comments ol.comment-list + #respond {
    margin-top: 60px; }
  .comments ol.comment-list ol.children {
    margin: 50px 0 0 30px; }
  .comments ol.comment-list li:not(.depth-1):last-of-type {
    padding-bottom: 0; }
  .comments ol.comment-list li.comment, .comments ol.comment-list li.pingback {
    position: relative;
    padding: 0 0 30px;
    overflow: hidden; }
  .comments ol.comment-list li.pingback .comment-body {
    font-size: 14px;
    font-size: 0.875rem; }
    .comments ol.comment-list li.pingback .comment-body .edit-link {
      margin-left: 15px; }
  .comments ol.comment-list li:last-child {
    margin-bottom: 0 !important;
    padding-bottom: 0; }
  .comments ol.comment-list li.comment .comment-body {
    position: relative; }
    .comments ol.comment-list li.comment .comment-body .comment-meta {
      position: relative;
      padding-top: 15px;
      padding-left: 95px;
      height: 80px; }
    .comments ol.comment-list li.comment .comment-body + #respond {
      margin-top: 30px;
      padding: 30px;
      background: rgba(0, 0, 0, 0.02); }
  .comments ol.comment-list li .comment-author {
    font-size: 16px;
    font-size: 1rem; }
    .comments ol.comment-list li .comment-author.vcard img {
      position: absolute;
      top: 0;
      left: 0;
      width: 80px;
      height: 80px;
      border-radius: 50%; }
    .comments ol.comment-list li .comment-author a {
      color: inherit; }
      .no-touch .comments ol.comment-list li .comment-author a:hover {
        opacity: 0.5; }
  .comments ol.comment-list li .comment-metadata {
    font-size: 12px;
    font-size: 0.75rem; }
    .comments ol.comment-list li .comment-metadata > *:not(:last-child) {
      margin-right: 15px; }
    .primary-color-enabled .comments ol.comment-list li .comment-metadata {
      color: var(--primary-color); }
  .comments ol.comment-list li a.comment-edit-link {
    font-size: 12px;
    font-size: 0.75rem; }
    .comments ol.comment-list li a.comment-edit-link:before {
      font-family: 'ElegantIcons';
      speak: none;
      font-style: normal;
      font-weight: normal;
      font-variant: normal;
      text-transform: none;
      line-height: 1;
      -webkit-font-smoothing: antialiased;
      font-size: 12px;
      font-size: 0.75rem;
      content: "\6c";
      margin-right: 6px; }
  .comments ol.comment-list li .comment-content {
    margin: 15px 0;
    font-size: 14px;
    font-size: 0.875rem; }
    .comments ol.comment-list li .comment-content p {
      margin: 0 0 15px;
      font-size: 14px;
      font-size: 0.875rem;
      color: var(--content-color); }
      .comments ol.comment-list li .comment-content p:last-child {
        margin-bottom: 0; }
    .comments ol.comment-list li .comment-content li {
      padding-bottom: 0; }
    .comments ol.comment-list li .comment-content blockquote p {
      font-size: 16px;
      font-size: 1rem; }
  .comments ol.comment-list li.bypostauthor {
    display: block; }
  .comments ol.comment-list li a.comment-reply-link {
    color: inherit;
    font-size: 12px;
    font-size: 0.75rem;
    letter-spacing: 0.05em;
    font-weight: 600;
    opacity: 0.5; }
    .no-touch .comments ol.comment-list li a.comment-reply-link:hover {
      opacity: 1; }
    .no-touch .primary-color-enabled .comments ol.comment-list li a.comment-reply-link:hover {
      color: var(--primary-color); }
.comments .navigation {
  padding-top: 30px;
  margin-top: 30px;
  margin-bottom: 60px;
  border-top: 1px solid rgba(0, 0, 0, 0.1); }
  .comments .navigation .nav-links {
    font-size: 13px;
    font-size: 0.8125rem;
    font-weight: 600;
    line-height: 30px;
    text-transform: uppercase;
    letter-spacing: 0.1em; }
    .comments .navigation .nav-links a {
      display: block;
      color: inherit; }
      .no-touch .comments .navigation .nav-links a:hover {
        opacity: 0.5; }
    .comments .navigation .nav-links > * a:before {
      font-family: 'ElegantIcons';
      speak: none;
      font-style: normal;
      font-weight: normal;
      font-variant: normal;
      text-transform: none;
      line-height: 1;
      -webkit-font-smoothing: antialiased;
      line-height: 30px; }
    .comments .navigation .nav-links .nav-previous {
      float: left; }
      .comments .navigation .nav-links .nav-previous a:before {
        float: left;
        margin-right: 6px;
        content: "\34"; }
    .comments .navigation .nav-links .nav-next {
      float: right; }
      .comments .navigation .nav-links .nav-next a:before {
        float: right;
        margin-left: 6px;
        content: "\35"; }
.comments .comment-respond form.comment-form {
  margin: 0 -15px;
  font-size: 13px;
  font-size: 0.8125rem; }
  .comments .comment-respond form.comment-form > * {
    padding: 0 15px; }
  .comments .comment-respond form.comment-form > p.comment-subscription-form {
    margin-top: 30px;
    margin-bottom: 0; }
    .comments .comment-respond form.comment-form > p.comment-subscription-form + p.comment-subscription-form {
      margin-top: 10px; }
  .comments .comment-respond form.comment-form label {
    display: block;
    margin-bottom: 0;
    line-height: 2; }
  .comments .comment-respond form.comment-form .comment-form-cookies-consent {
    clear: both; }
    .comments .comment-respond form.comment-form .comment-form-cookies-consent label {
      display: inline; }
  .comments .comment-respond form.comment-form textarea {
    height: 125px; }
  .comments .comment-respond form.comment-form p.form-submit {
    margin-bottom: 0; }
  .comments .comment-respond form.comment-form input[type="submit"] {
    margin: 0 0 10px; }
.comments .comments-closed {
  margin-top: 30px;
  font-weight: 600;
  text-align: left;
  opacity: 0.5; }

.article-like-comment > div {
  float: right;
  transition: opacity 0.4s; }
  .article-like-comment > div:first-child:not(:last-child) {
    margin-left: 20px; }
  .no-touch .article-like-comment > div:hover {
    opacity: 0.75; }
.article-like-comment a {
  color: currentColor; }
  .primary-color-enabled .article-like-comment a {
    color: currentColor; }
.article-like-comment span[class*="icon_"] {
  padding: 2px;
  font-size: 16px;
  font-size: 1rem; }
.article-like-comment .article-comment span.icon_comment_alt {
  display: inline-block;
  padding-top: 5px; }
.article-like-comment span.counts {
  display: inline-block;
  -webkit-transform: translateY(-10px);
  -ms-transform: translateY(-10px);
  transform: translateY(-10px);
  font-size: 9px;
  font-size: 0.5625rem;
  letter-spacing: 0.05em; }

/* Single Attachment Page
   ========================================================================== */
.single.single-attachment #primary {
  text-align: center; }
  .single.single-attachment #primary p {
    margin-bottom: 30px; }
  .single.single-attachment #primary p + .wp-caption-text {
    padding-top: 0;
    margin-top: -15px; }

@media screen and (min-width: 600px) {
  .page .featured-media-section {
    padding-top: 50%; }

  .single #primary > article footer.post-meta {
    float: left; }
  .single #primary > article .article-like-comment {
    float: right;
    margin-top: 60px; }
  .single #primary > article .post-tag-cloud ~ .article-like-comment {
    margin-top: 30px; }
  .single #primary > article .post-tag-cloud + .article-like-comment {
    float: none; }
  .single #primary > .author-info-box .author-bio {
    position: relative;
    width: 100%;
    min-height: 120px;
    padding-left: 130px;
    text-align: left; }
    .single #primary > .author-info-box .author-bio .author-photo {
      position: absolute;
      top: 0;
      left: 0; }
  .single .content-after-post .post-navigation .nav-links {
    display: table;
    table-layout: fixed;
    width: 100%; }
    .single .content-after-post .post-navigation .nav-links > * {
      display: table-cell;
      height: 300px; }

  .comments ol.comment-list li.comment .comment-body {
    padding-top: 15px;
    padding-left: 95px; }
    .comments ol.comment-list li.comment .comment-body .comment-meta {
      position: static;
      padding: 0;
      height: auto; }
    .comments ol.comment-list li.comment .comment-body + #respond {
      padding: 50px; }
  .comments ol.comment-list li.comment a.comment-reply-link {
    position: absolute;
    top: 15px;
    right: 0; }

  .single .post-header .post-header-text .post-title {
    font-size: 36px;
    font-size: 2.25rem; } }
@media screen and (min-width: 768px) {
  .comments .comment-respond form.comment-form p.comment-form-author,
  .comments .comment-respond form.comment-form p.comment-form-email,
  .comments .comment-respond form.comment-form p.comment-form-url {
    float: left;
    width: 33.333333%; } }
@media screen and (min-width: 1025px) {
  .single .post-header-text {
    max-width: 860px; }

  .single #page .site-content > .post-header .post-header-text .post-title,
  .archive.author .page-header .author-bio .author-bio-top .page-title {
    font-size: 48px;
    font-size: 3rem; } }
@media screen and (min-width: 1120px) {
  .page:not(.page-header-with-bg) .page-header {
    margin-top: 70px; }

  .archive .page-header {
    margin-top: 70px; }
  .archive.author .page-header:after {
    margin-top: 70px; }

  .single.post-template-1:not(.post-header-with-bg) .site-content > .post-header {
    padding-top: 70px; } }
@media screen and (max-width: 1119px) {
  .single .site-content[class*="with-sidebar-"] #primary .content-after-post {
    position: relative;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    width: 100vw;
    max-width: 100vw;
    text-align: center; }
    .single .site-content[class*="with-sidebar-"] #primary .content-after-post .comments:last-child {
      padding-bottom: 0; } }
@media screen and (min-width: 600px) and (max-width: 1119px) {
  .single #primary,
  .page #primary,
  .archive #primary {
    padding-right: 30px;
    padding-left: 30px; } }
@media screen and (max-width: 400px) {
  .content-after-post .post-navigation .post-title {
    font-size: 18px;
    font-size: 1.125rem; } }
/* ==========================================================================
   7.0 Widgets & Widgets Areas
   ========================================================================== */
.widget {
  position: relative;
  margin: 0;
  font-size: 13px;
  font-size: 0.8125rem; }
  .widget a:not(.button) {
    color: inherit; }
    .no-touch .primary-color-enabled .widget a:not(.button):hover {
      color: var(--primary-color); }
  .widget:not(:first-child) {
    margin-top: 50px; }
  .widget p {
    margin-bottom: 15px;
    font-size: inherit;
    text-align: left; }
  .widget p:last-child {
    margin-bottom: 0; }
  .widget select {
    display: block;
    width: 100%;
    margin: 0 auto; }
  .widget ul {
    margin: 0;
    list-style: none; }
    .widget ul li {
      margin-bottom: 12px;
      text-align: left;
      font-size: 13px;
      font-size: 0.8125rem; }
      .widget ul li:last-child {
        margin-bottom: 0; }
    .widget ul ul {
      margin-left: 20px;
      padding-top: 7.5px;
      clear: both; }
      .widget ul ul li {
        margin-bottom: 7.5px;
        border: none; }
  .widget .wp-caption {
    margin: 0 0 15px; }
    .widget .wp-caption:last-child {
      margin-bottom: 0; }
      .widget .wp-caption:last-child .wp-caption-text {
        padding-bottom: 0; }
  .widget-area .widget .textwidget p {
    line-height: 1.85; }
  .widget-area .widget .textwidget ul {
    margin: 0 0 10px 20px;
    list-style: disc; }
    .widget-area .widget .textwidget ul li {
      padding-bottom: 0;
      margin-bottom: 0;
      border: none; }
  .widget-area .widget .textwidget ol {
    margin: 0 0 10px 20px; }
    .widget-area .widget .textwidget ol ol {
      padding-top: 7.5px; }
  .widget-area .widget .textwidget code,
  .widget-area .widget .textwidget kbd,
  .widget-area .widget .textwidget tt {
    padding: 3px; }
  .widget-area .widget .textwidget pre {
    padding: 15px;
    font-size: 14px; }
  .primary-color-enabled .widget-area .widget .textwidget a:not(.button) {
    color: var(--primary-color); }
  .widget-area .widget .textwidget a:not(.button) {
    text-decoration: underline; }
    .no-touch .widget-area .widget .textwidget a:not(.button):hover {
      text-decoration: none; }
  .widget-area .widget .textwidget > *:last-child {
    margin-bottom: 0; }
  .widget-area .widget .textwidget blockquote {
    padding-left: 0;
    margin-top: 0; }
    .widget-area .widget .textwidget blockquote p {
      font-size: 16px;
      font-size: 1rem;
      font-weight: 600;
      line-height: 1.7;
      text-align: center; }
    .widget-area .widget .textwidget blockquote:before {
      position: relative;
      top: 15px;
      width: 100%;
      height: 40px;
      font-size: 70px;
      font-size: 4.375rem; }
  .widget.widget_calendar table#wp-calendar {
    margin-bottom: 0;
    background: none;
    border: none;
    color: inherit; }
    .widget.widget_calendar table#wp-calendar caption {
      margin-top: 0; }
    .widget.widget_calendar table#wp-calendar th,
    .widget.widget_calendar table#wp-calendar td {
      padding: 5px 0;
      border: none;
      text-align: center; }
    .widget.widget_calendar table#wp-calendar th {
      background: none; }
    .widget.widget_calendar table#wp-calendar td {
      font-size: 11px;
      font-size: 0.6875rem;
      line-height: 20px; }
    .widget.widget_calendar table#wp-calendar tbody a {
      display: block;
      width: 20px;
      background: #000;
      border-radius: 50%;
      color: #fff; }
      .no-touch .primary-color-enabled .widget.widget_calendar table#wp-calendar tbody a:hover {
        background: var(--primary-color); }
  .widget.widget_categories ul li a, .widget.widget_archive ul li a, .widget.widget_nav_menu ul li a, .widget.widget_meta ul li a, .widget.widget_pages ul li a, .widget.widget_rss ul li a, .widget.widget_recent_entries ul li a {
    display: block; }
    .no-touch body:not(.primary-color-enabled) .widget.widget_categories ul li a:hover, .no-touch body:not(.primary-color-enabled) .widget.widget_archive ul li a:hover, .no-touch body:not(.primary-color-enabled) .widget.widget_nav_menu ul li a:hover, .no-touch body:not(.primary-color-enabled) .widget.widget_meta ul li a:hover, .no-touch body:not(.primary-color-enabled) .widget.widget_pages ul li a:hover, .no-touch body:not(.primary-color-enabled) .widget.widget_rss ul li a:hover, .no-touch body:not(.primary-color-enabled) .widget.widget_recent_entries ul li a:hover {
      opacity: 0.5; }
  .widget.widget_categories ul li, .widget.widget_archive ul li {
    text-align: right;
    line-height: 22px; }
    .widget.widget_categories ul li a, .widget.widget_archive ul li a {
      float: left;
      width: 80%;
      font-size: 13px;
      font-size: 0.8125rem;
      text-align: left; }
  .widget.widget_categories a, .widget.widget_archive a, .widget.widget_nav_menu a, .widget.widget_pages a, .widget.widget_meta a {
    position: relative;
    padding-left: 20px; }
    .widget.widget_categories a:before, .widget.widget_archive a:before, .widget.widget_nav_menu a:before, .widget.widget_pages a:before, .widget.widget_meta a:before {
      position: absolute;
      top: 0;
      left: -5px;
      width: 20px;
      color: inherit;
      font-family: 'ElegantIcons';
      speak: none;
      font-style: normal;
      font-weight: normal;
      font-variant: normal;
      text-transform: none;
      line-height: 1;
      -webkit-font-smoothing: antialiased;
      content: "\35";
      line-height: inherit;
      text-align: left; }
  .widget.widget_search form.search-form {
    position: relative; }
    .widget.widget_search form.search-form input[type="search"] {
      height: 42px;
      padding: 5px 42px 5px 15px;
      border: 1px solid rgba(0, 0, 0, 0.1);
      font-size: 13px;
      font-size: 0.8125rem; }
      .dark-color .sidebar .widget.widget_search form.search-form input[type="search"], .site-footer.dark-color .widget.widget_search form.search-form input[type="search"] {
        border-color: rgba(255, 255, 255, 0.2); }
    .widget.widget_search form.search-form button.search-submit {
      width: 42px;
      height: 42px;
      font-size: 13px;
      font-size: 0.8125rem; }
  .widget.widget_rss ul li, .widget.widget_recent_entries ul li, .widget.widget_recent_comments ul li {
    position: relative; }
    .widget.widget_rss ul li:not(:last-child), .widget.widget_recent_entries ul li:not(:last-child), .widget.widget_recent_comments ul li:not(:last-child) {
      margin-bottom: 15px; }
      .widget.widget_rss ul li:not(:last-child):after, .widget.widget_recent_entries ul li:not(:last-child):after, .widget.widget_recent_comments ul li:not(:last-child):after {
        position: relative;
        display: block;
        width: 100%;
        height: 1px;
        margin-top: 15px;
        background: currentColor;
        opacity: 0.1;
        content: ""; }
  .widget.widget_rss .widget-title .rsswidget:first-child .rss-widget-icon {
    display: none; }
  .widget.widget_rss .widget-title .rsswidget:first-child:after {
    display: inline-block;
    font: normal normal normal 14px/1 FontAwesome;
    font-size: inherit;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    line-height: inherit;
    content: "\f09e"; }
  .widget.widget_rss ul li a.rsswidget {
    font-size: 16px;
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.3; }
    .widget.widget_rss ul li a.rsswidget + .rss-date {
      margin-top: 5px; }
  .widget.widget_rss ul li .rss-date {
    display: block;
    font-size: 12px;
    font-size: 0.75rem;
    opacity: 0.5; }
  .widget.widget_rss ul li .rssSummary {
    margin-top: 10px; }
    .widget.widget_rss ul li .rssSummary + cite {
      display: block;
      margin-top: 10px;
      font-style: normal;
      font-weight: 600;
      opacity: 0.5; }
  .widget.widget_recent_entries .post-date {
    display: block;
    margin-top: 5px;
    font-size: 12px;
    font-size: 0.75rem;
    opacity: 0.5; }
  .widget.widget_recent_entries a {
    font-size: 16px;
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.3; }
  .widget.widget_recent_comments ul li > a {
    display: block !important;
    margin-top: 2px !important;
    font-size: 16px;
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.3; }
  .widget.widget_tag_cloud {
    font-size: 0; }
    .widget.widget_tag_cloud .tagcloud a {
      display: block;
      float: left;
      width: 50%;
      text-align: left;
      line-height: 25px; }
  .widget.widget_mc4wp_form_widget form input[type="email"] + input[type="submit"] {
    margin-top: 15px; }
  .widget.widget_mc4wp_form_widget form input:not([type="submit"]) {
    padding: 5px 10px;
    background: none;
    border: 1px solid;
    font-size: 13px;
    font-size: 0.8125rem;
    letter-spacing: 0; }
  #page .widget.widget_mc4wp_form_widget form input[type="submit"] {
    display: block; }
  #page .widget-area .widget.widget_mc4wp_form_widget form input[type="submit"] {
    width: 100%; }
  body.light-color #page .widget-area.sidebar .widget.widget_mc4wp_form_widget form input:not([type="submit"]) {
    border: 1px solid rgba(0, 0, 0, 0.1); }
  body.light-color #page .widget-area.sidebar .widget.widget_mc4wp_form_widget form input[type="submit"]:not(:hover) {
    background: #131313;
    color: #fff; }
  #page .site-footer.dark-color .widget-area .widget.widget_mc4wp_form_widget form input:not([type="submit"]) {
    border: 1px solid rgba(255, 255, 255, 0.2); }
  #page .site-footer.dark-color .widget-area .widget.widget_mc4wp_form_widget form input[type="submit"]:not(:hover) {
    background: #fff;
    color: #212121; }
  .widget.widget_mc4wp_form_widget form .fields-container {
    position: relative;
    margin: 15px 0 0; }
    .widget.widget_mc4wp_form_widget form .fields-container input[type="email"] + .button {
      margin-top: 0; }
    .widget.widget_mc4wp_form_widget form .fields-container input[type="email"] {
      text-align: left; }
      .widget-area .widget.widget_mc4wp_form_widget form .fields-container input[type="email"] {
        padding-right: 42px; }
    .widget.widget_mc4wp_form_widget form .fields-container + p {
      margin-top: 15px; }
    #page .widget.widget_mc4wp_form_widget form .fields-container .button {
      position: absolute;
      top: 0;
      right: 0;
      -webkit-transform: none;
      -ms-transform: none;
      transform: none;
      width: 120px;
      height: 42px;
      padding: 0;
      margin-bottom: 0;
      background: none;
      box-shadow: none;
      color: inherit;
      font-size: 0; }
      #page .widget.widget_mc4wp_form_widget form .fields-container .button input[type="submit"] {
        width: 120px;
        height: 42px;
        padding: 0;
        text-align: center; }
    #page .widget-area .widget.widget_mc4wp_form_widget form .fields-container .button {
      width: 42px;
      overflow: visible; }
      #page .widget-area .widget.widget_mc4wp_form_widget form .fields-container .button input[type="submit"] {
        position: relative;
        width: 42px;
        background: none !important;
        color: inherit !important;
        font-size: 0; }
      #page .widget-area .widget.widget_mc4wp_form_widget form .fields-container .button:after {
        position: absolute;
        top: 50%;
        left: 50%;
        -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);
        margin-top: -2px;
        font-family: 'ElegantIcons';
        speak: none;
        font-style: normal;
        font-weight: normal;
        font-variant: normal;
        text-transform: none;
        line-height: 1;
        -webkit-font-smoothing: antialiased;
        font-size: 14px;
        font-size: 0.875rem;
        content: "\e010";
        pointer-events: none; }
  .widget.widget_mc4wp_form_widget p:last-of-type {
    margin-bottom: 0; }
  .widget.widget_mc4wp_form_widget p + input[type="email"],
  .widget.widget_mc4wp_form_widget .mc4wp-response > * {
    margin-top: 15px; }

/* Sidebar Widgets Area
   ========================================================================== */
.sidebar .widget:last-child {
  margin-bottom: 60px; }

/* Site Footer Widgets Area
   ========================================================================== */
.site-footer .widget-area {
  padding-bottom: 50px; }
  .site-footer .widget-area:first-child {
    padding-top: 50px; }
  .site-footer .widget-area .widget-area-column:not(:first-child) {
    margin-top: 50px; }
  .site-footer .widget-area .widget-area-column .widget {
    max-width: 600px;
    margin-right: auto;
    margin-left: auto; }

/* Footer Bottom
   ========================================================================== */
.footer-bottom .footer-bottom-menu .widget {
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-justify-content: center;
  justify-content: center;
  min-height: 40px; }
  .footer-bottom .footer-bottom-menu .widget > * {
    width: 100%; }
.footer-bottom .footer-bottom-menu ul.menu {
  text-align: center; }
  .footer-bottom .footer-bottom-menu ul.menu li {
    display: inline-block;
    padding: 0;
    margin: 0;
    text-align: center; }
    .footer-bottom .footer-bottom-menu ul.menu li a {
      display: inline;
      padding: 0 10px; }
      .footer-bottom .footer-bottom-menu ul.menu li a:before {
        display: none; }
.footer-bottom .footer-site-info {
  text-align: center; }
  .footer-bottom .footer-site-info .widget {
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-justify-content: center;
    justify-content: center;
    min-height: 40px; }
    .footer-bottom .footer-site-info .widget > * {
      width: 100%; }
  .footer-bottom .footer-site-info .widget {
    font-size: 13px;
    font-size: 0.8125rem; }

@media screen and (min-width: 768px) {
  .site-footer .widget-area .widget-area-row {
    margin: 0 -30px; }
  .site-footer .widget-area .widget-area-column {
    float: left;
    width: 33.333333%;
    padding: 0 30px; }
    .site-footer .widget-area .widget-area-column:not(:first-child) {
      margin-top: 0; }
    .site-footer .widget-area .widget-area-column .widget {
      max-width: none; }
      .site-footer .widget-area .widget-area-column .widget.fallsky-widget_instagram ul li {
        width: 25%; }

  .footer-bottom.column-2 .footer-bottom-menu ul {
    text-align: right; }
  .footer-bottom.column-2 .footer-site-info {
    text-align: left; } }
/* ==========================================================================
   8.0 Forms
   ========================================================================== */
::-webkit-input-placeholder {
  color: currentColor;
  opacity: 0.5; }

:-moz-placeholder {
  color: currentColor;
  opacity: 0.5; }

:-ms-input-placeholder {
  color: currentColor;
  opacity: 0.5; }

form * {
  outline: 0; }
form ul {
  position: relative;
  margin: 0 auto;
  list-style: none; }
  form ul > li > label {
    display: block;
    margin-bottom: 0;
    font-size: 13px;
    font-size: 0.8125rem;
    line-height: 2; }
form li fieldset {
  padding: 0;
  margin: 0;
  border: none; }

input[type="text"],
input[type="email"],
input[type="url"],
input[type="file"],
input[type="password"],
input[type="number"],
input[type="date"],
input[type="search"],
input[type="tel"],
textarea {
  width: 100%;
  height: 42px;
  padding: 5px 0;
  background: none;
  border: none;
  border-bottom: 1px solid;
  border-radius: 0;
  -webkit-appearance: none !important;
  font-size: 13px;
  font-size: 0.8125rem;
  line-height: 2;
  font-weight: 400; }
  input[type="text"]:focus,
  input[type="email"]:focus,
  input[type="url"]:focus,
  input[type="file"]:focus,
  input[type="password"]:focus,
  input[type="number"]:focus,
  input[type="date"]:focus,
  input[type="search"]:focus,
  input[type="tel"]:focus,
  textarea:focus {
    outline: 0; }
  .post-entry input[type="text"], .post-entry
  input[type="email"], .post-entry
  input[type="url"], .post-entry
  input[type="file"], .post-entry
  input[type="password"], .post-entry
  input[type="number"], .post-entry
  input[type="date"], .post-entry
  input[type="search"], .post-entry
  input[type="tel"], .post-entry
  textarea {
    opacity: 0.5; }
    .post-entry input[type="text"]:focus, .post-entry
    input[type="email"]:focus, .post-entry
    input[type="url"]:focus, .post-entry
    input[type="file"]:focus, .post-entry
    input[type="password"]:focus, .post-entry
    input[type="number"]:focus, .post-entry
    input[type="date"]:focus, .post-entry
    input[type="search"]:focus, .post-entry
    input[type="tel"]:focus, .post-entry
    textarea:focus {
      opacity: 1; }

textarea {
  min-height: 125px;
  resize: vertical; }

#page input[type="submit"] {
  position: relative;
  z-index: 1;
  display: inline-block;
  padding: 0 20px;
  background: var(--btn-bg-color);
  border: none;
  border-radius: 2px;
  color: var(--btn-text-color);
  font-weight: 400;
  line-height: 34px;
  text-align: center;
  text-decoration: none;
  white-space: nowrap;
  transition: 0.4s;
  will-change: opacity;
  display: inline-block;
  width: auto;
  margin: 0 auto;
  padding: 0 35px;
  font-size: 12px;
  font-size: 0.75rem;
  font-weight: 500;
  line-height: 40px;
  text-transform: uppercase;
  letter-spacing: 0.2em; }
  .no-touch #page input[type="submit"]:hover {
    opacity: 0.9; }
  .primary-color-enabled #page input[type="submit"] {
    background: var(--primary-color);
    color: #fff; }

select {
  height: 32px;
  padding: 2px;
  background-color: #fff;
  border: 1px solid #ddd;
  box-shadow: none;
  color: #212121;
  outline: 0;
  line-height: 32px;
  vertical-align: middle;
  font-size: 12px !important;
  font-size: 0.75rem !important;
  letter-spacing: 0.05em;
  text-transform: none;
  -webkit-font-smoothing: subpixel-antialiased; }

#page form.post-password-form input[type="password"] {
  padding: 5px 10px;
  border: 1px solid; }
#page form.post-password-form input[type="submit"] {
  margin-top: 15px; }

form.search-form {
  position: relative;
  max-width: 420px; }
  form.search-form input[type="search"] {
    height: 50px;
    padding: 0 30px 0 0;
    background: none;
    border: none;
    border-bottom: 2px solid;
    border-radius: 0;
    color: inherit;
    font-weight: 400; }
  form.search-form ::-webkit-input-placeholder {
    opacity: 1; }
  form.search-form :-moz-placeholder {
    opacity: 1; }
  form.search-form :-ms-input-placeholder {
    opacity: 1; }
  form.search-form button.search-submit {
    position: absolute;
    top: 0;
    right: 0;
    width: auto;
    height: 50px;
    background: none;
    border: none;
    box-shadow: none;
    font-family: 'ElegantIcons';
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    font-size: 18px;
    font-size: 1.125rem;
    line-height: 35px; }
    form.search-form button.search-submit:before {
      content: "\55"; }

.wpcf7 .wpcf7-acceptance .wpcf7-list-item {
  margin-left: 0; }

.no-touch #page button[disabled]:hover,
.no-touch #page input[disabled]:hover {
  opacity: 0.5; }

/* ==========================================================================
   9.0 Media
   ========================================================================== */
.site .avatar {
  border-radius: 50%; }

.post-entry .wp-smiley,
.comment-content .wp-smiley,
.textwidget .wp-smiley {
  margin-top: 0;
  margin-bottom: 0;
  padding: 0;
  border: none; }

.comment-content a img,
.textwidget a img {
  display: block; }

/* Make sure embeds and iframes fit their containers. */
embed,
iframe,
object,
video {
  margin-bottom: 30px;
  max-width: 100%;
  border: none;
  vertical-align: middle; }
  p > embed, p >
  iframe, p >
  object, p >
  video {
    margin-bottom: 0; }

.fluid-width-video-wrapper {
  margin-bottom: 30px; }
  .fluid-width-video-wrapper iframe {
    margin-bottom: 0; }

.wp-video-shortcode {
  margin-bottom: 30px; }

#page .wp-playlist {
  margin: 0 0 30px;
  padding: 30px 30px 10px; }
  #page .wp-playlist .wp-playlist-tracks {
    margin-top: 0; }
  #page .wp-playlist a {
    text-decoration: none; }

.wp-playlist-item .wp-playlist-caption {
  padding: 15px 0;
  margin-left: 0;
  color: inherit !important; }

.wp-playlist-item .wp-playlist-item-length {
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%); }

.mejs-container a {
  padding-bottom: 0;
  border-bottom: none;
  text-decoration: none; }

/**
 * Captions
 */
.wp-caption {
  margin: 30px 0;
  max-width: 100%;
  clear: both; }
  .wp-caption.aligncenter {
    text-align: center; }
  .post-entry > .wp-caption:first-child {
    margin-top: 0; }

.wp-caption-text {
  display: block;
  padding: 10px 0;
  font-size: 14px;
  font-size: 0.875rem;
  text-align: center;
  line-height: 1.5;
  opacity: 0.75; }

img[class*="wp-image-"] {
  display: inline-block; }
  p img[class*="wp-image-"].aligncenter {
    display: block; }

.post-entry figure > a {
  padding-bottom: 0;
  border: none;
  text-decoration: none; }

/**
 * Galleries
 */
.gallery {
  margin: 0 -2px 30px; }
  .gallery .gallery-item {
    float: left;
    display: inline-block;
    width: 100%;
    max-width: 33.33%;
    text-align: center;
    vertical-align: top; }
    .gallery .gallery-item .gallery-icon {
      font-size: 0;
      padding: 0 2px 4px; }
      .gallery .gallery-item .gallery-icon a {
        transition: 0s; }
      .gallery .gallery-item .gallery-icon img {
        margin: 0 auto; }
  .gallery.gallery-columns-1 .gallery-item {
    max-width: 100%; }
  .gallery.gallery-columns-2 .gallery-item {
    max-width: 50%; }
  .gallery.gallery-columns-4 .gallery-item {
    max-width: 25%; }
  .gallery.gallery-columns-5 .gallery-item {
    max-width: 20%; }
  .gallery.gallery-columns-6 .gallery-item {
    max-width: 16.66%; }
  .gallery.gallery-columns-7 .gallery-item {
    max-width: 14.28%; }
  .gallery.gallery-columns-8 .gallery-item {
    max-width: 12.5%; }
  .gallery.gallery-columns-9 .gallery-item {
    max-width: 11.11%; }
  .gallery.gallery-columns-1 .gallery-item, .gallery.gallery-columns-2 .gallery-item:nth-child(2n+1), .gallery.gallery-columns-3 .gallery-item:nth-child(3n+1), .gallery.gallery-columns-4 .gallery-item:nth-child(4n+1), .gallery.gallery-columns-5 .gallery-item:nth-child(5n+1), .gallery.gallery-columns-6 .gallery-item:nth-child(6n+1), .gallery.gallery-columns-7 .gallery-item:nth-child(7n+1), .gallery.gallery-columns-8 .gallery-item:nth-child(8n+1), .gallery.gallery-columns-9 .gallery-item:nth-child(9n+1) {
    clear: left; }

.gallery-columns-6 .gallery-caption,
.gallery-columns-7 .gallery-caption,
.gallery-columns-8 .gallery-caption,
.gallery-columns-9 .gallery-caption {
  display: none; }

/**
 * Embeded Twitter Tweet
 */
.post-entry .twitter-tweet.twitter-tweet-rendered {
  margin-left: 0; }

@media screen and (max-width: 599px) {
  .gallery:not(.gallery-columns-1) .gallery-item .gallery-caption {
    display: none; } }

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