/*
Theme Name: Eaven
Theme URI: https://demo.loftocean.com/eaven-travel
Author: Loft.Ocean
Author URI: https://www.loftocean.com
Description: Eaven is a lifestyle & traveller magazine and blog theme with clean and modern look.
Version: 1.14.2
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Tags: full-width-template, left-sidebar, right-sidebar, custom-background, custom-colors, custom-header, custom-menu, editor-style, featured-images, rtl-language-support, sticky-post, threaded-comments, translation-ready
Text Domain: eaven
Tested up to: 6.6
Requires PHP: 5.4

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
 * 10.0 - Shortcode & Blocks
 */
:root {
  --heading-font: Poppins, sans-serif;
  --body-font: Heebo, sans-serif;
  --primary-color: #886ac3;
  --primary-color-semi: rgba(136, 106, 195, 0.5);
  --gradient-start: #591998;
  --gradient-end: #981e8d;
  /* Colors for Light Scheme */
  --light-bg-color: #f3f5f6;
  --light-text-color: #000;
  --light-post-content-bg: #fff;
  /* Colors for Dark Scheme */
  --dark-bg-color: #191919;
  --dark-text-color: #fff;
  --dark-post-content-bg: #232323; }
  :root .light-color {
    --bg-color: var(--light-bg-color);
    --text-color: var(--light-text-color);
    --post-content-bg-color: var(--light-post-content-bg); }
  :root .dark-color {
    --bg-color: var(--dark-bg-color);
    --text-color: var(--dark-text-color);
    --post-content-bg-color: var(--dark-post-content-bg); }

.container:after,
.site-header ul:after,
.site-header .site-header-menu .main-navigation li.mega-menu ul:after,
ul.social-nav:after,
.eaven-fullmenu-main:after,
.main:after,
.home-widget .section-content:after,
.posts-wrapper:after,
.posts .post .post-content:after,
.single #primary > .post:after,
.post-entry:after,
.post-navigation .nav-links:after,
.comments .navigation:after,
.image-gallery:after,
.gallery:after,
.widget ul:after,
.widget_mc4wp_form_widget .fields-container:after,
.site-footer .widget-area .widget-area-row:after,
.lo-row:after,
.wp-block-columns:after,
.authors-list:after,
.home-widget .section-header:after,
.wp-block-latest-posts li:after {
  position: relative;
  display: block;
  content: "";
  clear: both; }

@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); } }
@keyframes stickyHeaderShowBox {
  0% {
    -webkit-transform: translate(-50%, -100%);
    -ms-transform: translate(-50%, -100%);
    transform: translate(-50%, -100%); }
  100% {
    -webkit-transform: translate(-50%, 0);
    -ms-transform: translate(-50%, 0);
    transform: translate(-50%, 0); } }
@-webkit-keyframes stickyHeaderShowBox {
  0% {
    -webkit-transform: translate(-50%, -100%);
    -ms-transform: translate(-50%, -100%);
    transform: translate(-50%, -100%); }
  100% {
    -webkit-transform: translate(-50%, 0);
    -ms-transform: translate(-50%, 0);
    transform: translate(-50%, 0); } }
@keyframes loadingSpin {
  0% {
    transform: rotate(0); }
  100% {
    transform: rotate(360deg); } }
@keyframes postLiked {
  0% {
    transform: scale(0);
    opacity: 1; }
  40% {
    transform: scale(1);
    opacity: 1; }
  75% {
    transform: scale(1.5);
    opacity: 0; }
  76% {
    transform: scale(0);
    opacity: 1; }
  100% {
    transform: scale(1);
    opacity: 1; } }
@keyframes postLikedSparks {
  0% {
    opacity: 0; }
  40% {
    transform: scale(1);
    opacity: 1; }
  75% {
    transform: scale(1.5);
    opacity: 0; }
  76% {
    transform: scale(0);
    opacity: 0; }
  100% {
    transform: scale(1);
    opacity: 0; } }
/* ==========================================================================
   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;
  word-wrap: break-word; }

html {
  width: 100%;
  min-height: 100%; }

body {
  width: 100%;
  height: auto;
  min-height: 100%;
  margin: 0 auto;
  background: #fff;
  color: #000; }
  body#tinymce {
    padding: 20px !important;
    background: #fff; }

#page {
  position: relative;
  z-index: 2;
  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.15); }

button {
  outline: 0; }

.hide {
  display: none !important; }

.invisible {
  visibility: hidden !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 15px 0; }

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

/* Button
   ========================================================================== */
.site-content .button, .widget-area .button {
  position: relative;
  z-index: 9;
  display: inline-block;
  padding: 0 30px;
  background: var(--primary-color);
  border: none;
  border-radius: 999px;
  color: #fff;
  font-size: 11px;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 42px;
  text-transform: uppercase;
  text-align: center;
  transition: 0.4s; }
  .gradient-enabled .site-content .button, .gradient-enabled .widget-area .button {
    background-image: linear-gradient(to right, var(--gradient-start), var(--gradient-end)); }
  .no-touch .site-content .button:hover, .no-touch .widget-area .button:hover {
    -webkit-transform: translateY(2px);
    -ms-transform: translateY(2px);
    transform: translateY(2px); }
  .button-rectangle .site-content .button, .button-rectangle .widget-area .button {
    border-radius: 0; }
  .button-rounded .site-content .button, .button-rounded .widget-area .button {
    border-radius: 4px; }

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

/* Tagcloud
   ========================================================================== */
.tagcloud a,
.wp-block-tag-cloud a {
  display: inline-block;
  padding: 2px 10px;
  margin: 0;
  background: none;
  border: 1px solid rgba(0, 0, 0, 0.15);
  color: inherit;
  font-size: 13px !important;
  font-size: 0.8125rem !important;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.5;
  transition: all 0.3s; }
  .no-touch .tagcloud a:hover, .tagcloud a:focus,
  .no-touch .wp-block-tag-cloud a:hover,
  .wp-block-tag-cloud a:focus {
    background: var(--primary-color);
    color: #fff; }

.dark-color .content-area .tagcloud a,
.dark-color .sidebar .tagcloud a,
.widget-area.dark-color .tagcloud a,
.dark-color .wp-block-tag-cloud a {
  border-color: rgba(255, 255, 255, 0.2); }

/* Slick Slider Dots & Arrow Buttons
   ========================================================================== */
.slick-dots button,
.slick-arrow {
  background: none;
  border: none;
  box-shadow: none;
  font-size: 0;
  pointer-events: auto;
  transition: 0.4s;
  outline: 0; }

.slick-arrow {
  display: block;
  width: 40px;
  height: 40px;
  background: #fff;
  border-radius: 50%;
  color: #000; }
  .slick-arrow:focus, .no-touch .slick-arrow:hover {
    opacity: 0.75; }
  .slick-arrow:after {
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    display: inline-block;
    font: normal normal normal 14px/1 "Font Awesome 5 Free";
    font-size: inherit;
    text-rendering: auto;
    line-height: inherit;
    font-weight: 900;
    line-height: 40px;
    font-size: 14px;
    font-size: 0.875rem; }
  .slick-arrow.slick-prev:after {
    content: "\f053"; }
  .slick-arrow.slick-next:after {
    content: "\f054"; }

.slick-slide:focus {
  outline: 0; }

/* General for Google Map
   ========================================================================== */
.error-message.google-map {
  padding: 20px;
  max-width: 800px;
  background-color: #d9edf7;
  border-color: #bce8f1;
  color: #3a87ad;
  font-size: 14px;
  font-size: 0.875rem;
  text-align: center; }
  .error-message.google-map a {
    color: inherit !important;
    text-decoration: underline; }
  .error-message.google-map + img {
    display: block;
    margin: 0 auto; }

.loftocean-google-map {
  margin-bottom: 30px; }

.gm-style .gm-style-iw-c {
  padding: 0;
  border-radius: 0;
  box-shadow: 0 0 5px 0.15px rgba(0, 0, 0, 0.08); }
.gm-style .gm-style-iw-t:after {
  box-shadow: -2px 2px 2px 0 rgba(0, 0, 0, 0.08); }
.gm-style .gm-style-iw-d {
  padding: 12px 0 0 12px; }
.gm-style .gm-style-iw-c .gm-style-iw-d.post-pin {
  padding: 0;
  height: 100px !important;
  overflow: hidden !important; }
.gm-style .gm-style-iw-ch {
  padding: 0 !important; }
.gm-style button.gm-ui-hover-effect {
  position: absolute !important;
  top: 5px !important;
  right: 5px !important;
  z-index: 9;
  width: 20px !important;
  height: 20px !important;
  background: #e6e6e6 !important;
  border-radius: 50%;
  border: none !important; }
  .gm-style button.gm-ui-hover-effect > span {
    margin: auto !important;
    width: 14px !important;
    height: 14px !important; }
.gm-style button.gm-ui-hover-effect img {
  position: absolute;
  top: -5px;
  left: -5px; }

.map-post-content {
  position: relative;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  height: 100px;
  overflow: hidden; }
  .map-post-content .featured-image {
    width: 100px;
    margin: 0; }
    .map-post-content .featured-image img {
      display: block;
      width: 100px; }
  .map-post-content .post-content {
    padding: 18px;
    max-width: 220px;
    background: #fff;
    color: #111;
    text-align: left; }
    .map-post-content .post-content .post-title {
      margin-bottom: 4px;
      font-size: 14px;
      font-size: 0.875rem; }
    .map-post-content .post-content time {
      color: #9f9f9f;
      font-size: 11px;
      font-size: 0.6875rem;
      font-weight: 500;
      text-transform: capitalize; }
  .map-post-content .post-link {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: block; }

.n2-section-smartslider * {
  margin: 0; }

/* ==========================================================================
   3.0 Typography
   ========================================================================== */
body,
input,
select,
textarea,
.ui-widget,
.wp-caption-text,
blockquote cite,
.widget-area .widget h5.widget-title {
  font-family: var(--body-font); }

h1,
h2,
h3,
h4,
h5,
h6,
blockquote,
.post-title,
.site-branding .site-title,
.slider-title,
.post-dropcap,
.post-entry .dropcap:first-letter,
.post-entry .dropcap-colorful .dropcap-letter,
.promo-blocks .promo-block .promo-block-text,
.widget.widget_rss ul li a.rsswidget,
.widget.widget_recent_entries a,
.widget_recent_comments ul li > a,
.comments ol.comment-list li .comment-author b.fn,
.comments ol.comment-list li.comment .comment-body .reply,
.wp-block-cover,
.wp-block-cover-image {
  font-family: var(--heading-font); }

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

a {
  color: inherit;
  text-decoration: none;
  transition: all 0.4s; }

.post-entry a,
.comment-content a,
.textwidget a,
.gallery-slider.fullscreen .wp-caption-text a {
  color: var(--primary-color); }
  .no-touch .post-entry a:hover,
  .no-touch .comment-content a:hover,
  .no-touch .textwidget a:hover,
  .no-touch .gallery-slider.fullscreen .wp-caption-text a:hover {
    text-decoration: underline; }

.no-touch .post-entry a[class*="button"]:hover, .no-touch
.textwidget a[class*="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,
.home-widget .section-content {
  font-size: 16px;
  font-size: 1rem; }

.post-excerpt {
  font-size: 15px;
  font-size: 0.9375rem; }

.post-entry {
  line-height: 1.8; }

h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  line-height: 1.5; }
  .post-entry h1,
  .post-entry h2,
  .post-entry h3,
  .post-entry h4,
  .post-entry h5,
  .post-entry h6 {
    margin-bottom: 30px; }
  .post-entry * + h1, .post-entry * + h2, .post-entry * + h3, .post-entry * + h4, .post-entry * + h5, .post-entry * + h6 {
    margin-top: 50px; }
  .comment-content h1, .comment-content h2, .comment-content h3, .comment-content h4, .comment-content h5, .comment-content h6 {
    margin-bottom: 30px; }
  .comment-content * + h1, .comment-content * + h2, .comment-content * + h3, .comment-content * + h4, .comment-content * + h5, .comment-content * + h6 {
    margin-top: 30px; }
  .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,
.featured-section.custom-section h1 {
  font-size: 36px;
  font-size: 2.25rem; }
.post-entry h2,
.featured-section.custom-section h2 {
  font-size: 32px;
  font-size: 2rem; }
.post-entry h3,
.featured-section.custom-section h3 {
  font-size: 28px;
  font-size: 1.75rem; }
.post-entry h4,
.featured-section.custom-section h4 {
  font-size: 24px;
  font-size: 1.5rem; }
.post-entry h5,
.featured-section.custom-section h5 {
  font-size: 21px;
  font-size: 1.3125rem; }
.post-entry h6,
.featured-section.custom-section 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: 13px;
  font-size: 0.8125rem; }

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

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

.single .post-header .post-title {
  font-size: 36px;
  font-size: 2.25rem; }

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

h5.section-title,
.footer-top-signup h5.widget-title,
.site-bottom-signup h5.widget-title {
  position: relative;
  display: block;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: none;
  font-style: normal; }

.front-page .content-area > .section-header {
  margin-bottom: 40px;
  border-bottom: 3px solid;
  text-align: left; }

.front-page .content-area > .section-header.section-title-left {
  border-bottom: none; }

.front-page .content-area > .section-header.section-title-center {
  border-bottom: none;
  text-align: center; }

.section-sub-title {
  margin-top: 5px;
  margin-bottom: 5px;
  font-size: 14px;
  font-size: 0.875rem; }

h5.widget-title {
  font-weight: 700;
  letter-spacing: 0;
  text-transform: none; }
  .footer-top-signup h5.widget-title, .site-bottom-signup h5.widget-title {
    margin-bottom: 40px;
    text-align: center; }
  .widget-area .widget h5.widget-title {
    position: relative;
    display: block;
    width: 100%;
    margin-bottom: 30px;
    font-size: 16px;
    font-size: 1rem;
    line-height: 1; }
  .sidebar h5.widget-title, .offcanvas-sidebar h5.widget-title {
    padding-left: 10px;
    border-left: 5px solid var(--primary-color); }
  .site-footer .widget-area h5.widget-title {
    margin-bottom: 20px;
    font-size: 14px;
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 1.2px;
    text-transform: uppercase; }

.related-posts .related-posts-title,
.comments .comments-title,
.comment-respond .comment-reply-title {
  margin-bottom: 30px;
  font-family: inherit;
  font-size: 21px;
  font-size: 1.3125rem;
  font-weight: 500;
  font-style: normal; }

.comments h2.comments-title {
  margin-bottom: 50px; }

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

blockquote {
  position: relative;
  margin: 0; }
  blockquote:before {
    position: absolute;
    z-index: 9;
    top: 60px;
    left: 10px;
    content: "\201C";
    font-family: sans-serif;
    font-size: 130px;
    font-weight: 800;
    line-height: 30px;
    opacity: 0.1; }
  .post-entry blockquote {
    margin: 0 0 30px;
    padding: 30px; }
    .post-entry blockquote:after {
      position: absolute;
      top: 20px;
      left: 0;
      width: 5px;
      height: calc(100% - 40px);
      background: var(--primary-color);
      content: ""; }
  blockquote p {
    position: relative;
    z-index: 9;
    font-size: 18px;
    font-size: 1.125rem;
    font-weight: 600;
    font-style: normal;
    line-height: 30px; }
    blockquote p:last-child {
      margin-bottom: 0; }
  #page blockquote cite, #page blockquote small {
    display: block;
    margin-top: 24px;
    color: inherit;
    font-size: 13px;
    font-size: 0.8125rem;
    font-weight: 400;
    font-style: normal;
    line-height: 1.5; }
  #page blockquote p + cite {
    margin-top: -15px; }
  .comment-content blockquote {
    margin: 30px 0;
    padding-left: 30px; }
    .comment-content blockquote:before {
      top: 10px;
      left: -15px;
      font-size: 80px;
      opacity: 0.1; }

table {
  width: 100%;
  max-width: 100%;
  margin: 0 0 30px;
  border-collapse: collapse;
  border-spacing: 0;
  border-width: 2px;
  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 {
    border-bottom: 2px solid;
    font-weight: 700;
    text-align: left; }
  table thead th {
    border-bottom: 2px solid; }
  table tbody tr th, table tbody tr td {
    border-bottom: 1px dashed rgba(0, 0, 0, 0.15); }
    .dark-color table tbody tr th,
    .dark-color table tbody tr td {
      border-bottom-color: rgba(255, 255, 255, 0.2); }
  table td {
    font-size: 14px;
    font-size: 0.875rem; }
  table caption {
    margin: 15px auto;
    font-size: 12px;
    font-size: 0.75rem; }

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

code {
  padding: 5px;
  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: Menlo, Consolas, monaco, monospace; }

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

mark {
  padding: 1.75px 3.5px;
  background: var(--primary-color);
  color: inherit;
  text-decoration: none; }

ins {
  font-style: italic; }

big {
  font-size: 125%; }

dd {
  margin-left: 30px; }

::selection {
  background: var(--primary-color);
  color: #fff; }

.post-tag-cloud {
  font-size: 16px;
  font-size: 1rem;
  font-weight: 600; }

@media screen and (min-width: 600px) {
  table th,
  table td {
    padding: 16px; } }
@media screen and (min-width: 768px) {
  .page-title {
    font-size: 48px;
    font-size: 3rem; }

  .posts.search-results .post-title {
    font-size: 24px;
    font-size: 1.5rem; }

  blockquote p {
    font-size: 21px;
    font-size: 1.3125rem; }

  .post-entry blockquote {
    padding: 40px 40px 40px 60px; }
    .post-entry blockquote:before {
      left: 30px; } }
@media screen and (min-width: 1024px) {
  .page-title {
    font-size: 56px;
    font-size: 3.5rem; }

  .single .site-content > .post-header .post-title {
    font-size: 48px;
    font-size: 3rem; }

  h5.section-title {
    font-size: 21px;
    font-size: 1.3125rem; } }
@media screen and (min-width: 1500px) {
  .single .site-content > .post-header .post-title {
    font-size: 56px;
    font-size: 3.5rem; } }
@media screen and (max-width: 479px) {
  .single .post-header .post-title {
    font-size: 24px;
    font-size: 1.5rem; } }
/* ==========================================================================
   4.0 Site Header & Menu
   ========================================================================== */
nav ul {
  margin: 0;
  list-style: none; }

/* Site Branding
   ========================================================================== */
.site-branding {
  padding: 10px 0;
  font-size: 0; }
  .site-header .site-branding {
    max-width: 75%; }
  .site-branding p {
    margin-bottom: 0; }
  .site-branding .site-title {
    font-size: 21px;
    font-size: 1.3125rem;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: 0.1em;
    text-transform: uppercase; }
    .site-branding .site-title.gradient-enabled a {
      color: var(--primary-color);
      background-image: -webkit-linear-gradient(left, var(--gradient-start), var(--gradient-end));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent; }
    .site-header.site-header-layout-1 .header-section.branding .site-branding .site-title {
      font-size: 28px;
      font-size: 1.75rem; }
  .site-branding .site-description {
    display: block;
    font-size: 13px;
    font-size: 0.8125rem;
    line-height: 1; }
  .site-branding.hide-title-tagline .site-title,
  .site-branding.hide-title-tagline .site-description {
    position: absolute !important;
    clip: rect(1px, 1px, 1px, 1px); }
  .site-branding a {
    display: inline-block;
    color: inherit; }
  .site-branding img {
    display: block; }
  .site-header.sticky .site-branding .custom-logo-link + .site-title,
  .site-header.sticky .site-branding .site-description, .site-header.is-sticky .site-branding .custom-logo-link + .site-title,
  .site-header.is-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-color: #000;
  color: #fff;
  line-height: 1.5; }
  .site-header > * {
    width: 100%; }
  .site-header .section-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat; }
  .site-header .site-header-main {
    position: relative;
    z-index: 3;
    padding: 15px 0;
    background: inherit; }
    .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: 50px; }
      .transparent-site-header .site-header .site-header-main .container {
        min-height: 70px; }
  .site-header .menu-toggle {
    position: relative;
    z-index: 999;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    border-radius: 0;
    box-shadow: none;
    color: inherit;
    font-size: 0;
    line-height: 40px;
    transition: 0.4s; }
    .site-header .menu-toggle:before {
      -moz-osx-font-smoothing: grayscale;
      -webkit-font-smoothing: antialiased;
      display: inline-block;
      font: normal normal normal 14px/1 "Font Awesome 5 Free";
      font-size: inherit;
      text-rendering: auto;
      line-height: inherit;
      font-weight: 900;
      content: "\f0c9";
      font-size: 16px;
      -webkit-transform: scaleX(1.3);
      -ms-transform: scaleX(1.3);
      transform: scaleX(1.3); }
    .no-touch .site-header .menu-toggle:hover, .site-header .menu-toggle:focus {
      opacity: 0.6;
      outline: 0; }
  .site-header .site-header-menu {
    display: none;
    /* Hide menu on small screens */ }
  .no-touch .site-header .primary-menu li:not(.button):not(.current-menu-item) > a:hover,
  .no-touch .site-header .primary-menu .sub-menu li:not(.current-menu-item) > a:hover,
  .no-touch .site-header .social-nav a:hover {
    opacity: 0.75; }
  .site-header .header-icon {
    position: relative;
    margin: 0; }
    .site-header .header-icon .toggle-button {
      position: relative;
      display: inline-block;
      width: 40px;
      height: 40px;
      padding: 0;
      text-align: center;
      cursor: pointer;
      transition: 0.4s; }
      .site-header .header-icon .toggle-button:after {
        position: relative;
        z-index: 3;
        -moz-osx-font-smoothing: grayscale;
        -webkit-font-smoothing: antialiased;
        display: inline-block;
        font: normal normal normal 14px/1 "Font Awesome 5 Free";
        font-size: inherit;
        text-rendering: auto;
        line-height: inherit;
        font-weight: 900;
        font-size: 15px;
        font-size: 0.9375rem;
        line-height: 40px; }
    .no-touch .site-header .header-icon:hover .toggle-button {
      opacity: 0.75; }
    .site-header .header-icon#site-header-search .toggle-button:after {
      content: "\f002"; }
    .site-header .header-icon#offcanvas-sidebar-toggle .toggle-button:after {
      content: "\f142"; }
  .site-header .primary-menu li a {
    position: relative;
    display: block;
    font-size: 14px;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    line-height: 36px; }
  .site-header .primary-menu > li > a {
    font-size: 13px;
    font-size: 0.8125rem;
    font-weight: 800;
    letter-spacing: 1px; }
  .site-header .primary-menu ul li.current-menu-item > a,
  .site-header .primary-menu ul li.current-menu-ancestor > a {
    color: var(--primary-color); }
  .site-header .site-header-menu .main-navigation .primary-menu > li.button {
    margin: 0 20px; }
    .site-header .site-header-menu .main-navigation .primary-menu > li.button:first-child {
      margin-left: 0; }
    .site-header .site-header-menu .main-navigation .primary-menu > li.button:last-child {
      margin-right: 10px; }
    .site-header .site-header-menu .main-navigation .primary-menu > li.button a {
      position: relative;
      z-index: 9;
      display: inline-block;
      padding: 0 30px;
      background: var(--primary-color);
      border: none;
      border-radius: 999px;
      color: #fff;
      font-size: 11px;
      font-size: 0.6875rem;
      font-weight: 700;
      letter-spacing: 0.1em;
      line-height: 42px;
      text-transform: uppercase;
      text-align: center;
      transition: 0.4s;
      padding: 0 20px;
      line-height: 36px; }
      .gradient-enabled .site-header .site-header-menu .main-navigation .primary-menu > li.button a {
        background-image: linear-gradient(to right, var(--gradient-start), var(--gradient-end)); }
      .no-touch .site-header .site-header-menu .main-navigation .primary-menu > li.button a:hover {
        -webkit-transform: translateY(2px);
        -ms-transform: translateY(2px);
        transform: translateY(2px); }
      .button-rectangle .site-header .site-header-menu .main-navigation .primary-menu > li.button a {
        border-radius: 0; }
      .button-rounded .site-header .site-header-menu .main-navigation .primary-menu > li.button a {
        border-radius: 4px; }
  .site-header .site-header-menu:last-child .primary-menu > li.button:last-child {
    margin-right: 0; }
  .site-header.site-header-layout-1 .site-header-main {
    padding: 0; }
    .site-header.site-header-layout-1 .site-header-main > .container {
      padding: 0;
      max-width: none;
      background: inherit; }
  .site-header.site-header-layout-1 .site-header-main.with-bg .header-section.branding {
    -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;
    overflow: hidden; }
  .site-header.site-header-layout-1 .header-section {
    position: relative;
    width: 100%; }
    .site-header.site-header-layout-1 .header-section.branding {
      padding: 50px 0;
      background: #232323;
      color: #fff;
      text-align: center; }
      .site-header.site-header-layout-1 .header-section.branding > *:not(.section-bg) {
        position: relative;
        z-index: 9;
        padding-right: 20px;
        padding-left: 20px; }
      .site-header.site-header-layout-1 .header-section.branding .site-branding {
        max-width: none;
        padding: 0; }
        .site-header.site-header-layout-1 .header-section.branding .site-branding .custom-logo-link + .site-title {
          margin-top: 15px; }
    .site-header.site-header-layout-1 .header-section.menu-and-misc {
      -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;
      background: inherit; }
      .site-header.site-header-layout-1 .header-section.menu-and-misc .menu-toggle {
        margin: 0 auto; }
    .site-header.site-header-layout-1 .header-section .misc {
      -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;
      flex: 1;
      justify-content: flex-end; }
  .site-header.site-header-layout-1 .header-section.misc {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    width: auto; }
    .site-header.site-header-layout-1 .header-section.misc.left {
      left: 30px; }
      .site-header.site-header-layout-1 .header-section.misc.left .header-icon {
        margin-left: 0; }
    .site-header.site-header-layout-1 .header-section.misc.right {
      right: 30px; }
  .site-header.site-header-layout-2 .site-branding, .site-header.site-header-layout-3 .site-branding {
    margin-left: 0; }
  .site-header.site-header-layout-2 .site-header-menu, .site-header.site-header-layout-3 .site-header-menu {
    margin: 0; }
  .site-header.site-header-layout-2 .menu-toggle, .site-header.site-header-layout-3 .menu-toggle {
    order: 9;
    margin-left: 0; }
  .site-header.site-header-layout-2 .header-section.misc, .site-header.site-header-layout-3 .header-section.misc {
    -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;
    order: 8;
    margin: 0; }
  .site-header.site-header-layout-2 .social-navigation, .site-header.site-header-layout-3 .social-navigation {
    margin-right: 5px;
    margin-left: 0; }
  .site-header.site-header-layout-2 .social-navigation {
    display: none;
    /* Hide on small screens */ }
  .site-header.site-header-layout-4 .site-header-left,
  .site-header.site-header-layout-4 .site-header-right {
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1; }
  .site-header.site-header-layout-4 .site-branding {
    -webkit-box-flex: 0;
    -webkit-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    text-align: center; }
  .site-header.site-header-layout-4 .header-navigation-left,
  .site-header.site-header-layout-4 .header-navigation-right {
    display: none; }
  .site-header.site-header-layout-4 .menu-toggle {
    float: right; }
  .site-header.site-header-layout-4 .header-section.misc {
    -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;
    flex: 1;
    justify-content: flex-end;
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    width: auto; }
    .site-header.site-header-layout-4 .header-section.misc.left {
      left: 30px; }
    .site-header.site-header-layout-4 .header-section.misc.right {
      right: 60px; }
  .transparent-site-header .site-header:not(.sticky):not(.is-sticky) {
    position: absolute;
    background: none !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff; }
  .site-header.sticky.site-header-layout-1 .header-section.menu-and-misc, .site-header.sticky.site-header-layout-2 .site-header-main, .site-header.sticky.site-header-layout-3 .site-header-main, .site-header.sticky.site-header-layout-4 .site-header-main, .site-header.is-sticky.site-header-layout-1 .header-section.menu-and-misc, .site-header.is-sticky.site-header-layout-2 .site-header-main, .site-header.is-sticky.site-header-layout-3 .site-header-main, .site-header.is-sticky.site-header-layout-4 .site-header-main {
    position: fixed !important;
    z-index: 999;
    top: 0;
    left: 0; }
    .site-layout-boxed .site-header.sticky.site-header-layout-1 .header-section.menu-and-misc, .site-layout-boxed .site-header.sticky.site-header-layout-2 .site-header-main, .site-layout-boxed .site-header.sticky.site-header-layout-3 .site-header-main, .site-layout-boxed .site-header.sticky.site-header-layout-4 .site-header-main, .site-layout-boxed .site-header.is-sticky.site-header-layout-1 .header-section.menu-and-misc, .site-layout-boxed .site-header.is-sticky.site-header-layout-2 .site-header-main, .site-layout-boxed .site-header.is-sticky.site-header-layout-3 .site-header-main, .site-layout-boxed .site-header.is-sticky.site-header-layout-4 .site-header-main {
      left: 50%;
      -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
      transform: translateX(-50%); }
    @media screen and (min-width: 601px) and (max-width: 782px) {
      .logged-in.admin-bar .site-header.sticky.site-header-layout-1 .header-section.menu-and-misc, .logged-in.admin-bar .site-header.sticky.site-header-layout-2 .site-header-main, .logged-in.admin-bar .site-header.sticky.site-header-layout-3 .site-header-main, .logged-in.admin-bar .site-header.sticky.site-header-layout-4 .site-header-main, .logged-in.admin-bar .site-header.is-sticky.site-header-layout-1 .header-section.menu-and-misc, .logged-in.admin-bar .site-header.is-sticky.site-header-layout-2 .site-header-main, .logged-in.admin-bar .site-header.is-sticky.site-header-layout-3 .site-header-main, .logged-in.admin-bar .site-header.is-sticky.site-header-layout-4 .site-header-main {
        top: 46px; } }
    @media screen and (min-width: 783px) {
      .logged-in.admin-bar .site-header.sticky.site-header-layout-1 .header-section.menu-and-misc, .logged-in.admin-bar .site-header.sticky.site-header-layout-2 .site-header-main, .logged-in.admin-bar .site-header.sticky.site-header-layout-3 .site-header-main, .logged-in.admin-bar .site-header.sticky.site-header-layout-4 .site-header-main, .logged-in.admin-bar .site-header.is-sticky.site-header-layout-1 .header-section.menu-and-misc, .logged-in.admin-bar .site-header.is-sticky.site-header-layout-2 .site-header-main, .logged-in.admin-bar .site-header.is-sticky.site-header-layout-3 .site-header-main, .logged-in.admin-bar .site-header.is-sticky.site-header-layout-4 .site-header-main {
        top: 32px; } }
  .site-header.sticky.site-header-layout-1 .header-section.menu-and-misc, .site-header.sticky.site-header-layout-2 .site-header-main, .site-header.sticky.site-header-layout-3 .site-header-main, .site-header.sticky.site-header-layout-4 .site-header-main {
    -webkit-animation: stickyHeaderShow 0.4s ease-out;
    animation: stickyHeaderShow 0.4s ease-out;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.03); }
    .site-layout-boxed .site-header.sticky.site-header-layout-1 .header-section.menu-and-misc, .site-layout-boxed .site-header.sticky.site-header-layout-2 .site-header-main, .site-layout-boxed .site-header.sticky.site-header-layout-3 .site-header-main, .site-layout-boxed .site-header.sticky.site-header-layout-4 .site-header-main {
      -webkit-animation: stickyHeaderShowBox 0.4s ease-out;
      animation: stickyHeaderShowBox 0.4s ease-out; }
  .site-header.is-sticky.site-header-layout-1 .header-section.menu-and-misc, .site-header.is-sticky.site-header-layout-2 .site-header-main, .site-header.is-sticky.site-header-layout-3 .site-header-main, .site-header.is-sticky.site-header-layout-4 .site-header-main {
    -webkit-transform: translateY(-100%);
    -ms-transform: translateY(-100%);
    transform: translateY(-100%); }
    .site-layout-boxed .site-header.is-sticky.site-header-layout-1 .header-section.menu-and-misc, .site-layout-boxed .site-header.is-sticky.site-header-layout-2 .site-header-main, .site-layout-boxed .site-header.is-sticky.site-header-layout-3 .site-header-main, .site-layout-boxed .site-header.is-sticky.site-header-layout-4 .site-header-main {
      -webkit-transform: translate(-50%, -100%);
      -ms-transform: translate(-50%, -100%);
      transform: translate(-50%, -100%); }
  .site-header.is-sticky.show-header.site-header-layout-1 .header-section.menu-and-misc, .site-header.is-sticky.show-header.site-header-layout-2 .site-header-main, .site-header.is-sticky.show-header.site-header-layout-3 .site-header-main, .site-header.is-sticky.show-header.site-header-layout-4 .site-header-main {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
    transition: transform 0.4s ease-out;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.03); }
    .site-layout-boxed .site-header.is-sticky.show-header.site-header-layout-1 .header-section.menu-and-misc, .site-layout-boxed .site-header.is-sticky.show-header.site-header-layout-2 .site-header-main, .site-layout-boxed .site-header.is-sticky.show-header.site-header-layout-3 .site-header-main, .site-layout-boxed .site-header.is-sticky.show-header.site-header-layout-4 .site-header-main {
      -webkit-transform: translate(-50%, 0);
      -ms-transform: translate(-50%, 0);
      transform: translate(-50%, 0); }
  .site-header.is-sticky.hide-header.site-header-layout-1 .header-section.menu-and-misc, .site-header.is-sticky.hide-header.site-header-layout-2 .site-header-main, .site-header.is-sticky.hide-header.site-header-layout-3 .site-header-main, .site-header.is-sticky.hide-header.site-header-layout-4 .site-header-main {
    -webkit-transform: translateY(-100%);
    -ms-transform: translateY(-100%);
    transform: translateY(-100%);
    transition: transform 0.4s ease-out; }
    .site-layout-boxed .site-header.is-sticky.hide-header.site-header-layout-1 .header-section.menu-and-misc, .site-layout-boxed .site-header.is-sticky.hide-header.site-header-layout-2 .site-header-main, .site-layout-boxed .site-header.is-sticky.hide-header.site-header-layout-3 .site-header-main, .site-layout-boxed .site-header.is-sticky.hide-header.site-header-layout-4 .site-header-main {
      -webkit-transform: translate(-50%, -100%);
      -ms-transform: translate(-50%, -100%);
      transform: translate(-50%, -100%); }
  .site-header.is-sticky.hide-header.site-header-layout-1 .site-header-menu ul.sub-menu {
    opacity: 0;
    pointer-events: none;
    visibility: hidden; }

.site-header-image img {
  display: block; }

.header-top-social {
  padding: 0;
  background: #131313;
  color: #fff;
  text-align: center; }
  .header-top-social ul.social-nav li a {
    position: relative;
    display: inline-block;
    width: 40px;
    height: 44px;
    margin: 0 2px;
    line-height: 44px;
    transition: opacity 0.4s; }
    .header-top-social ul.social-nav li a:before {
      font-size: 13px;
      font-size: 0.8125rem; }

/* Social Nav Icons
   ========================================================================== */
ul.social-nav {
  margin: 0;
  list-style: none;
  font-size: 0; }
  ul.social-nav li {
    display: inline-block; }
    ul.social-nav li a {
      display: block;
      width: 30px;
      height: 30px;
      padding: 0;
      text-align: center;
      line-height: 30px;
      font-size: 0 !important; }
      .no-touch .main ul.social-nav li a:hover {
        color: var(--primary-color); }
      ul.social-nav li a:before {
        -moz-osx-font-smoothing: grayscale;
        -webkit-font-smoothing: antialiased;
        display: inline-block;
        font: normal normal normal 14px/1 "Font Awesome 5 Free";
        font-size: inherit;
        text-rendering: auto;
        line-height: inherit;
        font-weight: 900;
        font-size: 18px;
        font-size: 1.125rem;
        content: "\f1e0";
        /* Default share icon */ }
        .site-header ul.social-nav li a:before {
          font-size: 15px;
          font-size: 0.9375rem; }
      ul.social-nav li a[title="website"]:before {
        content: "\f0c1"; }
      ul.social-nav li a[href*="mailto"]:before {
        content: "\f0e0"; }
      ul.social-nav li a[href*="bloglovin"]:before {
        content: "\f004"; }
      ul.social-nav li a[href*="twitter"]:before, ul.social-nav li a[href*="facebook"]:before, ul.social-nav li a[href*="google"]:before, ul.social-nav li a[href*="pinterest"]:before, ul.social-nav li a[href*="instagram"]:before, ul.social-nav li a[href*="behance"]:before, ul.social-nav li a[href*="vimeo"]:before, ul.social-nav li a[href*="youtube"]:before, ul.social-nav li a[href*="snapchat"]:before, ul.social-nav li a[href*="medium"]:before, ul.social-nav li a[href*="linkedin"]:before, ul.social-nav li a[href*="flickr"]:before, ul.social-nav li a[href*="etsy"]:before, ul.social-nav li a[href*="dribbble"]:before, ul.social-nav li a[href*="tumblr"]:before, ul.social-nav li a[href*="vine"]:before, ul.social-nav li a[href*="vk"]:before, ul.social-nav li a[href*="del.icio"]:before, ul.social-nav li a[href*="reddit"]:before, ul.social-nav li a[href*="yelp"]:before, ul.social-nav li a[href*="soundcloud"]:before, ul.social-nav li a[href*="500px"]:before, ul.social-nav li a[href*="digg"]:before, ul.social-nav li a[href*="foursquare"]:before, ul.social-nav li a[href*="houzz"]:before, ul.social-nav li a[href*="tripadvisor"]:before, ul.social-nav li a[href*="play.google"]:before, ul.social-nav li a[href*="apple"]:before, ul.social-nav li a[href*="slack"]:before, ul.social-nav li a[href*="amazon"]:before, ul.social-nav li a[href*="codepen"]:before, ul.social-nav li a[href*="deviantart"]:before, ul.social-nav li a[href*="github"]:before, ul.social-nav li a[href*="wordpress"]:before, ul.social-nav li a[href*="patreon"]:before, ul.social-nav li a[href*="ello"]:before, ul.social-nav li a[href*="tiktok"]:before, ul.social-nav li a[href*="unsplash"]:before, ul.social-nav li a[href*="spotify"]:before, ul.social-nav li a[href*="wa.me"]:before, ul.social-nav li a[href*="wa.link"]:before, ul.social-nav li a[href*="x.com"]:before {
        font-family: "Font Awesome 5 Brands";
        font-weight: 400; }
      ul.social-nav li a[href*="twitter"]:before {
        content: "\f099"; }
      ul.social-nav li a[href*="facebook"]:before {
        content: "\f39e"; }
      ul.social-nav li a[href*="google"]:before {
        content: "\f0d5"; }
      ul.social-nav li a[href*="pinterest"]:before {
        content: "\f0d2"; }
      ul.social-nav li a[href*="instagram"]:before {
        content: "\f16d"; }
      ul.social-nav li a[href*="behance"]:before {
        content: "\f1b4"; }
      ul.social-nav li a[href*="vimeo"]:before {
        content: "\f27d"; }
      ul.social-nav li a[href*="youtube"]:before {
        content: "\f167"; }
      ul.social-nav li a[href*="snapchat"]:before {
        content: "\f2ac"; }
      ul.social-nav li a[href*="medium"]:before {
        content: "\f3c7"; }
      ul.social-nav li a[href*="linkedin"]:before {
        content: "\f0e1"; }
      ul.social-nav li a[href*="flickr"]:before {
        content: "\f16e"; }
      ul.social-nav li a[href*="etsy"]:before {
        content: "\f2d7"; }
      ul.social-nav li a[href*="dribbble"]:before {
        content: "\f17d"; }
      ul.social-nav li a[href*="tumblr"]:before {
        content: "\f173"; }
      ul.social-nav li a[href*="vine"]:before {
        content: "\f1ca"; }
      ul.social-nav li a[href*="/feed/"]:before, ul.social-nav li a[href*="?feed="]:before {
        content: "\f09e"; }
      ul.social-nav li a[href*="vk"]:before {
        content: "\f189"; }
      ul.social-nav li a[href*="del.icio"]:before {
        content: "\f1a5"; }
      ul.social-nav li a[href*="reddit"]:before {
        content: "\f281"; }
      ul.social-nav li a[href*="yelp"]:before {
        content: "\f1e9"; }
      ul.social-nav li a[href*="soundcloud"]:before {
        content: "\f1be"; }
      ul.social-nav li a[href*="500px"]:before {
        content: "\f26e"; }
      ul.social-nav li a[href*="digg"]:before {
        content: "\f1a6"; }
      ul.social-nav li a[href*="foursquare"]:before {
        content: "\f180"; }
      ul.social-nav li a[href*="houzz"]:before {
        content: "\f27c"; }
      ul.social-nav li a[href*="tripadvisor"]:before {
        content: "\f262"; }
      ul.social-nav li a[href*="play.google"]:before {
        content: "\f3ab"; }
      ul.social-nav li a[href*="apple"]:before {
        content: "\f179"; }
      ul.social-nav li a[href*="slack"]:before {
        content: "\f198"; }
      ul.social-nav li a[href*="amazon"]:before {
        content: "\f270"; }
      ul.social-nav li a[href*="codepen"]:before {
        content: "\f1cb"; }
      ul.social-nav li a[href*="deviantart"]:before {
        content: "\f1bd"; }
      ul.social-nav li a[href*="github"]:before {
        content: "\f09b"; }
      ul.social-nav li a[href*="wordpress"]:before {
        content: "\f411"; }
      ul.social-nav li a[href*="patreon"]:before {
        content: "\f3d9"; }
      ul.social-nav li a[href*="ello"]:before {
        content: "\f5f1"; }
      ul.social-nav li a[href*="tiktok"]:before {
        content: "\e07b"; }
      ul.social-nav li a[href*="unsplash"]:before {
        content: "\e07c"; }
      ul.social-nav li a[href*="spotify"]:before {
        content: "\f1bc"; }
      ul.social-nav li a[href*="wa.me"]:before, ul.social-nav li a[href*="wa.link"]:before {
        content: "\f232"; }
      ul.social-nav li a[href*="x.com"]:before {
        font-family: "Font Awesome 6 Brands";
        content: "\e61b"; }

/* Fullscreen Menu & Search
   ========================================================================== */
.eaven-fullmenu, .search-screen {
  position: fixed;
  z-index: 1001;
  top: 0;
  right: 0;
  display: block;
  width: 100vw;
  height: 100vh;
  padding: 0;
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  transition: opacity 0.4s, visibility 0.4s; }
  .eaven-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 .eaven-fullmenu,
    .logged-in.admin-bar .search-screen {
      top: 46px;
      height: calc(100vh - 46px); } }
  @media screen and (min-width: 783px) {
    .logged-in.admin-bar .eaven-fullmenu,
    .logged-in.admin-bar .search-screen {
      top: 32px;
      height: calc(100vh - 32px); } }
  .eaven-fullmenu .close-button, .search-screen .close-button {
    z-index: 9;
    display: block;
    width: 40px;
    height: 40px;
    font-size: 0;
    cursor: pointer;
    transition: 0.4s; }
    .eaven-fullmenu .close-button:before, .eaven-fullmenu .close-button:after, .search-screen .close-button:before, .search-screen .close-button:after {
      position: absolute;
      top: 19px;
      left: 8px;
      display: block;
      width: 25px;
      height: 2px;
      background: currentColor;
      content: ""; }
    .eaven-fullmenu .close-button:before, .search-screen .close-button:before {
      -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
      transform: rotate(45deg); }
    .eaven-fullmenu .close-button:after, .search-screen .close-button:after {
      -webkit-transform: rotate(135deg);
      -ms-transform: rotate(135deg);
      transform: rotate(135deg); }
  .eaven-fullmenu .container, .search-screen .container {
    z-index: 9;
    width: 100%;
    height: 100%;
    max-width: none;
    margin: 0 auto;
    overflow: auto;
    text-align: left; }
    .eaven-fullmenu .container > *, .search-screen .container > * {
      margin-bottom: 50px; }
      .eaven-fullmenu .container > *:first-child, .eaven-fullmenu .container > *:last-child, .search-screen .container > *:first-child, .search-screen .container > *:last-child {
        margin-bottom: 0; }

/* Fullscreen Menu
   ========================================================================== */
.eaven-fullmenu {
  background: #444682;
  color: #fff; }
  .eaven-fullmenu .container {
    padding: 30px; }
    .eaven-fullmenu .container > * {
      -webkit-transform: translateX(30px);
      -ms-transform: translateX(30px);
      transform: translateX(30px);
      opacity: 0;
      transition: transform 0.4s ease-out, opacity 0.4s ease-out;
      will-change: transform, opacity; }
  .eaven-fullmenu.show .container > * {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
    opacity: 1; }
    .eaven-fullmenu.show .container > *:nth-child(3) {
      transition-delay: 0.3s; }
    .eaven-fullmenu.show .container > *:nth-child(4) {
      transition-delay: 0.6s; }
    .eaven-fullmenu.show .container > *:nth-child(5) {
      transition-delay: 0.9s; }
  .eaven-fullmenu .close-button {
    position: relative;
    float: right; }
    .no-touch .eaven-fullmenu .close-button:hover {
      -webkit-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
      transform: rotate(180deg); }
  .no-touch .eaven-fullmenu a:hover {
    opacity: 0.6; }
  .eaven-fullmenu .site-branding {
    float: left;
    max-width: calc(100% - 60px);
    padding: 0; }
  .eaven-fullmenu .eaven-fullmenu-main {
    width: 100%;
    clear: both; }
  .eaven-fullmenu .hero-img {
    display: none; }
  .eaven-fullmenu .primary-menu {
    text-align: left; }
    .eaven-fullmenu .primary-menu a {
      position: relative;
      text-transform: capitalize;
      opacity: 0.75; }
      .no-touch .eaven-fullmenu .primary-menu a:hover {
        opacity: 1; }
    .eaven-fullmenu .primary-menu > li {
      padding: 10px 0; }
      .eaven-fullmenu .primary-menu > li > a {
        display: inline-block;
        font-size: 21px;
        font-size: 1.3125rem;
        line-height: 40px; }
    .eaven-fullmenu .primary-menu > li > ul > li {
      padding: 3px 0; }
    .eaven-fullmenu .primary-menu li.current-menu-ancestor > a,
    .eaven-fullmenu .primary-menu li.current-menu-item > a {
      font-weight: 500;
      opacity: 1; }
    .eaven-fullmenu .primary-menu ul.sub-menu {
      display: none;
      margin: 5px 0 0 20px; }
      .eaven-fullmenu .primary-menu ul.sub-menu li a {
        padding: 4px 0;
        font-size: 19px;
        font-size: 1.1875rem;
        line-height: 40px; }
      .eaven-fullmenu .primary-menu ul.sub-menu ul.sub-menu {
        margin-bottom: 5px; }
        .eaven-fullmenu .primary-menu ul.sub-menu ul.sub-menu li a {
          font-size: 16px;
          font-size: 1rem;
          line-height: 30px; }
  .eaven-fullmenu .dropdown-toggle {
    position: relative;
    width: 30px;
    height: 30px;
    background: none;
    border: none;
    transition: 0.4s;
    opacity: 0.75; }
    .eaven-fullmenu .dropdown-toggle:focus {
      outline: 0; }
    .no-touch .eaven-fullmenu .dropdown-toggle:hover, .eaven-fullmenu .dropdown-toggle:focus {
      opacity: 1; }
    .eaven-fullmenu .dropdown-toggle:before {
      -moz-osx-font-smoothing: grayscale;
      -webkit-font-smoothing: antialiased;
      display: inline-block;
      font: normal normal normal 14px/1 "Font Awesome 5 Free";
      font-size: inherit;
      text-rendering: auto;
      line-height: inherit;
      font-weight: 900;
      display: block;
      font-size: 18px;
      line-height: 30px;
      content: "\f078"; }
    .eaven-fullmenu .dropdown-toggle.toggled-on:before {
      content: "\f077"; }
    .eaven-fullmenu .dropdown-toggle.toggled-on + ul.sub-menu {
      display: block; }
  .eaven-fullmenu ul.sub-menu .dropdown-toggle:before {
    font-size: 14px; }
  .eaven-fullmenu ul.social-nav {
    -webkit-transform: translateX(-5px);
    -ms-transform: translateX(-5px);
    transform: translateX(-5px); }
    .eaven-fullmenu ul.social-nav li {
      margin-right: 10px; }
  .eaven-fullmenu .text {
    clear: both; }

/* Search Screen
   ========================================================================== */
.search-screen {
  height: 100px !important;
  background: #fafafa;
  color: #111;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1); }
  .search-screen .container {
    padding: 0;
    max-width: 1140px; }
  .search-screen .close-button {
    position: absolute;
    top: 50%;
    right: 20px;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%); }
    .no-touch .search-screen .close-button:hover {
      -webkit-transform: translateY(-50%) rotate(180deg);
      -ms-transform: translateY(-50%) rotate(180deg);
      transform: translateY(-50%) rotate(180deg); }
  .search-screen .search {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    left: 20px;
    width: calc(100% - 60px); }
    .search-screen .search form.search-form {
      max-width: 100%; }
      .search-screen .search form.search-form input[type="search"] {
        background: none;
        border: none;
        padding: 0;
        padding-left: 50px;
        color: inherit; }
      .search-screen .search form.search-form button.search-submit {
        position: absolute;
        left: 0; }

@media screen and (min-width: 600px) {
  .site-header .site-branding {
    max-width: 50%; }
  .site-header.site-header-layout-1 .header-section.branding .site-branding .site-title {
    font-size: 48px;
    font-size: 3rem; }
  .site-header.site-header-layout-1 .header-section.branding .site-branding .site-description {
    font-size: 16px;
    font-size: 1rem; }
  .site-header.site-header-layout-4 .header-section.misc.right {
    right: 70px; }

  .eaven-fullmenu {
    width: 60vw; }
    .eaven-fullmenu:before {
      position: fixed;
      z-index: -1;
      top: 0;
      left: 0;
      display: block;
      width: 100vw;
      height: 100vh;
      background: #000;
      opacity: 0.9;
      content: ""; }
    .eaven-fullmenu .container {
      padding: 50px 80px;
      background: inherit; }
    .eaven-fullmenu .hero-img {
      position: fixed;
      top: 0;
      left: 0;
      display: block;
      width: 40vw;
      height: 100vh; }
      .eaven-fullmenu .hero-img .hero-img-container {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat; }
    .eaven-fullmenu .primary-menu > li {
      padding: 8px 0; }
      .eaven-fullmenu .primary-menu > li > a {
        font-size: 26px;
        font-size: 1.625rem; }
    .eaven-fullmenu .primary-menu ul.sub-menu {
      margin-top: 10px; }
    .eaven-fullmenu .social-navigation ul.social-nav li a {
      width: 40px; }
    .eaven-fullmenu ul.social-nav {
      -webkit-transform: translateX(-10px);
      -ms-transform: translateX(-10px);
      transform: translateX(-10px); }
    .eaven-fullmenu .primary-menu > li > .dropdown-toggle {
      width: 40px;
      height: 40px; }
      .eaven-fullmenu .primary-menu > li > .dropdown-toggle:before {
        line-height: 40px; }

  .search-screen .search form.search-form input[type="search"],
  .search-screen .search form.search-form button.search-submit {
    font-size: 21px;
    font-size: 1.3125rem; } }
@media screen and (min-width: 768px) {
  .site-branding .site-title {
    font-size: 28px;
    font-size: 1.75rem; }

  .site-header ul.social-nav li a {
    width: 40px;
    height: 40px;
    line-height: 40px; }
  .site-header.site-header-layout-2 .social-navigation {
    display: block; } }
@media screen and (min-width: 1024px) {
  .site-header.site-header-layout-1 .site-header-main.with-bg .header-section.branding {
    min-height: 250px; }

  .header-top-social {
    padding: 5px 12px; }
    .header-top-social ul.social-nav li a {
      width: auto;
      height: auto;
      padding-right: 14px;
      margin: 10px 20px;
      font-size: 10px !important;
      font-size: 0.625rem !important;
      font-weight: 400;
      text-transform: uppercase;
      letter-spacing: 0.2em;
      line-height: 14px; }
      .header-top-social ul.social-nav li a:before {
        display: none; }
      .header-top-social ul.social-nav li a:after {
        position: absolute;
        right: 0;
        bottom: 4px;
        display: block;
        width: 6px;
        height: 6px;
        background: var(--primary-color);
        border-radius: 50%;
        content: ""; }
        .gradient-enabled .header-top-social ul.social-nav li a:after {
          background-image: linear-gradient(to right, var(--gradient-start), var(--gradient-end)); }
    .header-top-social.style-alt ul.social-nav li a:before {
      display: inline-block;
      margin-right: 10px;
      line-height: 14px;
      -webkit-transform: translateY(1px);
      -ms-transform: translateY(1px);
      transform: translateY(1px); }
    .header-top-social.style-alt ul.social-nav li a:after {
      display: none; } }
@media screen and (min-width: 1120px) {
  .site-header .site-header-main {
    padding: 0; }
    .site-header .site-header-main .container, .transparent-site-header .site-header .site-header-main .container {
      min-height: 100px; }
  .site-header .site-header-menu {
    position: relative;
    z-index: 9;
    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 .primary-menu li {
    position: relative;
    white-space: nowrap; }
    .no-touch .site-header .primary-menu li:hover ul.sub-menu {
      will-change: opacity; }
  .site-header .primary-menu > li:not(.mega-menu) ul.sub-menu li.menu-item-has-children > a:after {
    position: absolute;
    top: 0;
    right: 18px;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    display: inline-block;
    font: normal normal normal 14px/1 "Font Awesome 5 Free";
    font-size: inherit;
    text-rendering: auto;
    line-height: inherit;
    font-weight: 900;
    display: block;
    width: auto;
    height: 30px;
    color: inherit;
    font-size: 10px;
    content: "\f054"; }
  .site-header .primary-menu > li:not(.mega-menu) ul.sub-menu li a {
    padding: 0 30px; }
  .site-header .primary-menu ul.sub-menu {
    position: absolute;
    z-index: -1;
    display: block;
    min-width: 200px;
    padding: 20px 0;
    margin: 0;
    background: #212121;
    color: #fff;
    text-align: left;
    transition: 0.3s;
    opacity: 0;
    pointer-events: none;
    visibility: hidden; }
    .site-header .primary-menu ul.sub-menu ul.sub-menu {
      padding-top: 20px;
      background: #292929; }
    .site-header .primary-menu ul.sub-menu a {
      font-weight: 400;
      text-transform: capitalize; }
  .site-header .primary-menu > li {
    float: left; }
    .site-header .primary-menu > li > a {
      padding: 0 15px;
      line-height: 100px; }
    .site-header .primary-menu > li.button a {
      margin-top: 22px; }
    .site-header .primary-menu > li > ul.sub-menu {
      bottom: 0;
      -webkit-transform: translateY(100%);
      -ms-transform: translateY(100%);
      transform: translateY(100%); }
      .site-header .primary-menu > li > ul.sub-menu ul.sub-menu {
        top: -20px;
        left: 100%; }
    .site-header .primary-menu > li.sub-reverse > ul.sub-menu ul.sub-menu {
      right: 100%;
      left: auto; }
    .site-header .primary-menu > li.mega-menu ul.sub-menu ul.sub-menu {
      background: none; }
    .site-header .primary-menu > li:not(.mega-menu) > ul.sub-menu {
      left: -15px;
      -webkit-transform: translate(0, 100%);
      -ms-transform: translate(0, 100%);
      transform: translate(0, 100%); }
    .site-header .primary-menu > li:hover > ul.sub-menu,
    .site-header .primary-menu > li ul.sub-menu li:hover > ul.sub-menu, .site-header .primary-menu > li.focused > ul.sub-menu,
    .site-header .primary-menu > li ul.sub-menu li.focused > ul.sub-menu {
      z-index: 99;
      opacity: 1;
      pointer-events: auto;
      visibility: visible; }
  .site-header .primary-menu > li.current-menu-item > a:before,
  .site-header .primary-menu > li.current-menu-ancestor > a:before {
    position: absolute;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    bottom: 38px;
    display: block;
    margin-left: -1px;
    width: calc(100% - 30px);
    height: 1px;
    background: currentColor;
    content: ""; }
  .site-header .primary-menu li.mega-menu ul.sub-menu {
    text-align: left; }
  .site-header .primary-menu li.mega-menu > ul.sub-menu {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    width: 1240px;
    padding: 30px; }
    .site-header .primary-menu li.mega-menu > ul.sub-menu > li {
      display: block;
      width: 25%;
      margin: 0;
      vertical-align: top; }
      .site-header .primary-menu li.mega-menu > ul.sub-menu > li > a {
        padding: 0 20px;
        font-weight: 700;
        text-transform: uppercase; }
      .site-header .primary-menu li.mega-menu > ul.sub-menu > li > ul {
        position: relative;
        top: auto;
        left: auto;
        display: block;
        padding: 10px 20px 20px; }
        .site-header .primary-menu li.mega-menu > ul.sub-menu > li > ul li {
          padding: 0; }
    .site-header .primary-menu li.mega-menu > ul.sub-menu .mega-menu-post {
      padding: 10px 25px;
      text-align: center; }
      .site-header .primary-menu li.mega-menu > ul.sub-menu .mega-menu-post .featured-img {
        margin-bottom: 15px; }
      .site-header .primary-menu 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 .primary-menu li.mega-menu > ul.sub-menu .mega-menu-post .post-title {
        margin-bottom: 0;
        font-size: 15px;
        font-size: 0.9375rem;
        font-weight: 500;
        white-space: normal; }
        .site-header .primary-menu li.mega-menu > ul.sub-menu .mega-menu-post .post-title a {
          font: inherit; }
      .no-touch .site-header .primary-menu li.mega-menu > ul.sub-menu .mega-menu-post a:hover {
        opacity: 0.7; }
  .no-touch .site-header .primary-menu li.mega-menu:hover > ul.sub-menu > li > ul {
    z-index: 99;
    opacity: 1;
    pointer-events: auto;
    visibility: visible; }
  .site-header .primary-menu li.mega-menu.menu-item-object-category ul li {
    display: block;
    float: left;
    width: 25%; }
    .no-touch .site-header .primary-menu li.mega-menu.menu-item-object-category ul li:hover .post-meta .meta-item a {
      will-change: opacity; }
  .site-header .primary-menu li.mega-menu.menu-item-object-category.menu-item-has-children {
    display: block; }
    .site-header .primary-menu li.mega-menu.menu-item-object-category.menu-item-has-children > ul.sub-menu li.sub-cat-list {
      width: 20%;
      border-right: 1px solid #393939; }
      .site-header .primary-menu li.mega-menu.menu-item-object-category.menu-item-has-children > ul.sub-menu li.sub-cat-list li {
        float: none;
        padding: 0 10px;
        width: 100%; }
        .site-header .primary-menu 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; }
          .no-touch .site-header .primary-menu li.mega-menu.menu-item-object-category.menu-item-has-children > ul.sub-menu li.sub-cat-list li a:hover {
            opacity: 1; }
      .site-header .primary-menu li.mega-menu.menu-item-object-category.menu-item-has-children > ul.sub-menu li.sub-cat-list li.current {
        background: #393939; }
    .site-header .primary-menu li.mega-menu.menu-item-object-category.menu-item-has-children > ul.sub-menu li.sub-cat-posts {
      width: 80%; }
      .site-header .primary-menu li.mega-menu.menu-item-object-category.menu-item-has-children > ul.sub-menu li.sub-cat-posts .sub-cat {
        display: none; }
        .site-header .primary-menu 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 .primary-menu 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 .primary-menu 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 .primary-menu 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.site-header-layout-1 .menu-toggle {
    display: none; }
  .site-header.site-header-layout-1 .site-header-menu {
    display: block; }
  .site-header.site-header-layout-1 .header-section.misc.left {
    left: 12px; }
  .site-header.site-header-layout-1 .header-section.misc.right {
    right: 20px; }
  .site-header.site-header-layout-1 .header-section.branding .site-branding .site-title {
    font-size: 60px;
    font-size: 3.75rem; }
  .site-header.site-header-layout-1 .site-header-main .container {
    min-height: 60px; }
  .site-header.site-header-layout-1 .primary-menu > li > a {
    line-height: 60px; }
  .site-header.site-header-layout-1 .primary-menu > li.current-menu-item > a:before,
  .site-header.site-header-layout-1 .primary-menu > li.current-menu-ancestor > a:before {
    bottom: 18px; }
  .site-header.site-header-layout-3 .site-header-menu {
    display: block; }
  .site-header.site-header-layout-4 .header-navigation-left,
  .site-header.site-header-layout-4 .header-navigation-right {
    display: block; }
  .site-header.site-header-layout-4 .menu-toggle {
    display: none; }
  .site-header.site-header-layout-4 .header-section.misc.left {
    left: 0; }
  .site-header.site-header-layout-4 .header-section.misc.right {
    right: 0; }
  .site-header.site-header-layout-4 .site-header-left .header-menu-left {
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-justify-content: flex-end;
    justify-content: flex-end; }
    .site-header.site-header-layout-4 .site-header-left .header-menu-left > li {
      margin: 0; }
  .site-header.site-header-layout-4 .site-branding {
    margin: 0 40px; }

  .eaven-fullmenu {
    width: 45vw; }
    .eaven-fullmenu .hero-img {
      width: 55vw; } }
@media screen and (min-width: 1500px) {
  .site-header .primary-menu > li > a {
    padding: 0 20px; }
  .site-header .primary-menu > li.current-menu-item > a:before,
  .site-header .primary-menu > li.current-menu-ancestor > a:before {
    width: calc(100% - 40px); }

  .search-screen .close-button {
    right: 0; }
  .search-screen .search {
    left: 0; }

  .site-header .primary-menu li.mega-menu > ul.sub-menu {
    width: 1480px; } }
@media screen and (max-width: 600px) {
  .logged-in.admin-bar .eaven-fullmenu .container {
    padding-top: 60px; }
  .logged-in.admin-bar .search-screen .close-button,
  .logged-in.admin-bar .search-screen .search {
    top: 70px; }
  .logged-in.admin-bar .offcanvas-sidebar .close-button {
    top: 55px; } }
@media screen and (max-width: 480px) {
  .site-header.site-header-layout-2 .header-icon,
  .site-header.site-header-layout-3 .header-icon,
  .site-header.site-header-layout-4 .header-icon,
  .site-header.site-header-layout-4 .site-header-left {
    display: none;
    /* Hide on small screens */ }

  .site-header.site-header-layout-1 .header-section.misc.left {
    left: 10px; }
  .site-header.site-header-layout-1 .header-section.misc.right {
    right: 10px; } }
@media screen and (min-width: 600px) and (max-width: 782px) {
  .logged-in.admin-bar .eaven-fullmenu .hero-img {
    top: 46px;
    height: calc(100vh - 46px); } }
@media screen and (min-width: 600px) and (max-width: 1024px) {
  .eaven-fullmenu .close-button {
    margin: -30px -40px 0 0; }
  .eaven-fullmenu .site-branding {
    max-width: 100%; } }
/* ==========================================================================
   5.0 Main Content Area, Homepage & Posts Layouts
   ========================================================================== */
.container {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1200px;
  padding: 0 20px; }

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

/* Site Content
   ========================================================================== */
.site-content {
  position: relative;
  z-index: 9; }
  .site-content[class*="with-sidebar-"] .content-area {
    padding-bottom: 50px; }

.front-page .main {
  padding-top: 60px;
  padding-bottom: 60px; }

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

.sidebar {
  max-width: 600px; }

/* Featured Sections
   ========================================================================== */
.featured-section .container {
  padding: 0;
  max-width: none; }
.featured-section .custom-content {
  position: relative;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  min-height: 600px;
  background: rgba(0, 0, 0, 0.4);
  color: #fff;
  overflow: hidden; }
  .featured-section .custom-content .section-bg,
  .featured-section .custom-content .section-bg-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden; }
  .touch .featured-section .custom-content .section-bg .section-bg-img {
    background-attachment: scroll !important; }
  .featured-section .custom-content .section-bg-img {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat; }
  .featured-section .custom-content .section-bg iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%); }
  .featured-section .custom-content .section-bg:after {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: block;
    content: "";
    background: #000;
    opacity: 0.15;
    pointer-events: none; }
  .featured-section .custom-content .container {
    width: 100%; }
    .featured-section .custom-content .container .content.align-left {
      margin-left: 0;
      text-align: left; }
    .featured-section .custom-content .container .content.align-right {
      margin-right: 0;
      text-align: right; }
    .featured-section .custom-content .container .content > * {
      margin-bottom: 30px; }
      .featured-section .custom-content .container .content > *:first-child {
        margin-top: 30px; }

/* Featured Slider
   ========================================================================== */
.featured-slider {
  background: #232323; }
  .featured-slider .slider-link,
  .featured-slider .slider-bg-img,
  .featured-slider .slider-bg-img:before,
  .featured-slider .slider-link:before {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%; }
  .featured-slider .slider-bg-img:before,
  .featured-slider .slider-link:before {
    content: "";
    pointer-events: none; }
  .featured-slider a:focus {
    outline: 0; }
  .featured-slider ul {
    margin: 0;
    list-style: none; }
  .featured-slider .slider {
    position: relative; }
    .featured-slider .slider .slider-bg {
      z-index: 1;
      overflow: hidden; }
      .featured-slider .slider .slider-bg .background-video-wrapper {
        pointer-events: none; }
        .featured-slider .slider .slider-bg .background-video-wrapper iframe,
        .featured-slider .slider .slider-bg .background-video-wrapper video {
          position: absolute;
          top: 50%;
          left: 50%;
          -webkit-transform: translate(-50%, -50%);
          -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
          margin-bottom: 0; }
    .featured-slider .slider .slider-bg-img {
      background-size: cover;
      background-position: center;
      background-repeat: no-repeat; }
      .featured-slider .slider .slider-bg-img:before {
        z-index: 3;
        background: #000;
        opacity: 0.4;
        transition: opacity 0.3s; }
    .featured-slider .slider .slider-link {
      z-index: 1; }
      .featured-slider .slider .slider-link:before {
        z-index: 1;
        background: var(--primary-color);
        opacity: 0;
        transition: opacity 0.3s; }
        .gradient-enabled .featured-slider .slider .slider-link:before {
          background-image: linear-gradient(to right, var(--gradient-start), var(--gradient-end)); }
    .featured-slider .slider .slider-content {
      z-index: 9;
      pointer-events: none;
      color: #fff; }
      .featured-slider .slider .slider-content > * {
        position: relative;
        z-index: 3;
        max-width: 1000px; }
      .featured-slider .slider .slider-content a {
        pointer-events: auto; }
      .featured-slider .slider .slider-content .slider-title {
        font-size: 24px;
        font-size: 1.5rem;
        line-height: 1.2; }
      .featured-slider .slider .slider-content .meta {
        width: 100%;
        font-size: 12px;
        font-size: 0.75rem;
        font-weight: 700;
        letter-spacing: 0.1em;
        text-transform: uppercase; }
        .no-touch .featured-slider .slider .slider-content .meta a:hover {
          opacity: 0.6; }
      .featured-slider .slider .slider-content .post-excerpt {
        max-width: 900px;
        font-size: 16px;
        font-size: 1rem; }
        .featured-slider .slider .slider-content .post-excerpt p {
          margin-bottom: 10px; }
    .featured-slider .slider .more-btn .button {
      background: #000;
      color: #fff;
      font-size: 10px;
      font-size: 0.625rem;
      line-height: 36px; }
    .no-touch .featured-slider .slider:hover .slider-bg-img:before {
      opacity: 0.65; }
    .no-touch .featured-slider .slider:hover .slider-link:before {
      opacity: 0.3; }
    .no-touch .featured-slider .slider:hover .more-btn .button {
      background: #fff;
      color: #111; }
  .featured-slider.slider-style-1 .slider, .featured-slider.slider-style-2 .slider {
    height: 100vh;
    min-height: 500px; }
    @media screen and (min-width: 782px) {
      .logged-in.admin-bar .featured-slider.slider-style-1 .slider, .logged-in.admin-bar .featured-slider.slider-style-2 .slider {
        height: calc(100vh - 32px); } }
  .featured-slider.slider-style-1 .slider-content .slider-title, .featured-slider.slider-style-2 .slider-content .slider-title {
    text-shadow: 0 10px 20px rgba(0, 0, 0, 0.25); }
  .featured-slider.slider-style-1 .slider-content .meta, .featured-slider.slider-style-2 .slider-content .meta {
    text-shadow: 0 8px 14px rgba(0, 0, 0, 0.2); }
  .featured-slider.slider-style-1 .slider-bg-img {
    -webkit-transform: scale(1.2);
    -ms-transform: scale(1.2);
    transform: scale(1.2); }
  .featured-slider.slider-style-1 .slider-content {
    position: absolute;
    bottom: 30px;
    left: 20px;
    width: calc(100% - 60px); }
    .featured-slider.slider-style-1 .slider-content > *:not(:first-child) {
      margin-top: 20px; }
    .featured-slider.slider-style-1 .slider-content > * {
      -webkit-transform: translateX(15px);
      -ms-transform: translateX(15px);
      transform: translateX(15px);
      opacity: 0;
      transition: opacity 1s ease-out 0s, transform 0.5s ease-out 0s; }
  .featured-slider.slider-style-1 .current-post .slider-bg-img {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    transition: transform 12s linear 0s; }
  .featured-slider.slider-style-1 .current-post .slider-content > * {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
    opacity: 1; }
    .featured-slider.slider-style-1 .current-post .slider-content > *:nth-child(2) {
      transition-delay: 0.4s; }
    .featured-slider.slider-style-1 .current-post .slider-content > *:nth-child(3) {
      transition-delay: 0.8s; }
    .featured-slider.slider-style-1 .current-post .slider-content > *:nth-child(4) {
      transition-delay: 1.2s; }
  .featured-slider.slider-style-1 .slick-dots {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    right: 0;
    z-index: 9;
    width: 70px; }
    .featured-slider.slider-style-1 .slick-dots li {
      position: relative;
      display: block;
      overflow: hidden; }
      .featured-slider.slider-style-1 .slick-dots li:not(:first-child) {
        margin-top: 4px; }
      .featured-slider.slider-style-1 .slick-dots li button {
        position: relative;
        display: block;
        width: 70px;
        height: 19px;
        padding: 8px 0;
        border-radius: 0;
        will-change: transform; }
        .featured-slider.slider-style-1 .slick-dots li button:after {
          position: absolute;
          top: 50%;
          -webkit-transform: translateY(-50%);
          -ms-transform: translateY(-50%);
          transform: translateY(-50%);
          right: 0;
          width: 100%;
          height: 3px;
          background: #fff;
          content: ""; }
      .featured-slider.slider-style-1 .slick-dots li:not(.slick-active) button {
        -webkit-transform: translateX(40px);
        -ms-transform: translateX(40px);
        transform: translateX(40px); }
      .no-touch .featured-slider.slider-style-1 .slick-dots li:not(.slick-active):hover button {
        -webkit-transform: translateX(20px);
        -ms-transform: translateX(20px);
        transform: translateX(20px); }
  .featured-slider.slider-style-2 .slider-bg-img {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    transition: 0s; }
  .featured-slider.slider-style-2 .slider-content {
    position: relative;
    -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;
    padding: 50px 20px;
    width: 100%;
    height: 100%;
    text-align: center; }
    .transparent-site-header .featured-slider.slider-style-2 .slider-content {
      margin-top: 30px; }
    .featured-slider.slider-style-2 .slider-content > * {
      margin-top: 20px;
      opacity: 0;
      transition: opacity 1s ease-out 0.5s; }
  .featured-slider.slider-style-2 .current-post .slider-bg-img {
    -webkit-transform: scale(1.15);
    -ms-transform: scale(1.15);
    transform: scale(1.15);
    transition: transform 12s linear 0s; }
  .featured-slider.slider-style-2 .current-post .slider-content > * {
    opacity: 1; }
    .featured-slider.slider-style-2 .current-post .slider-content > *:nth-child(2) {
      transition-delay: 0.8s; }
    .featured-slider.slider-style-2 .current-post .slider-content > *:nth-child(3) {
      transition-delay: 1.1s; }
    .featured-slider.slider-style-2 .current-post .slider-content > *:nth-child(4) {
      transition-delay: 1.4s; }
  .featured-slider.slider-style-2 .slider-arrows {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    z-index: 99;
    display: none;
    width: 100%;
    pointer-events: none; }
    .featured-slider.slider-style-2 .slider-arrows .slick-arrow {
      position: absolute; }
    .featured-slider.slider-style-2 .slider-arrows .slick-prev {
      left: 20px; }
    .featured-slider.slider-style-2 .slider-arrows .slick-next {
      right: 20px; }
  .featured-slider.slider-style-3 {
    background: none; }
    .featured-slider.slider-style-3 .slick-list {
      background: #232323; }
    .featured-slider.slider-style-3 .slider-wrapper:not(.slick-initialized) {
      opacity: 0; }
    .featured-slider.slider-style-3 .slider {
      height: 580px;
      overflow: hidden; }
    .featured-slider.slider-style-3 .slider-bg-img {
      transition: transform 0.5s ease-out; }
    .featured-slider.slider-style-3 .slider-content {
      position: absolute;
      bottom: 0;
      left: 0;
      padding: 80px 20px 30px;
      width: 100%;
      background: linear-gradient(to bottom, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.5)); }
      .featured-slider.slider-style-3 .slider-content > *:not(:first-child) {
        margin-top: 15px; }
      .featured-slider.slider-style-3 .slider-content .slider-title {
        text-shadow: 0 4px 10px rgba(0, 0, 0, 0.15); }
      .featured-slider.slider-style-3 .slider-content .meta {
        text-shadow: 0 2px 6px rgba(0, 0, 0, 0.15); }
    .featured-slider.slider-style-3 .slider .slider-content .slider-title {
      font-size: 21px;
      font-size: 1.3125rem;
      line-height: 1.35; }
    .featured-slider.slider-style-3 .slider .slider-content .meta {
      font-size: 11px;
      font-size: 0.6875rem; }
    .no-touch .featured-slider.slider-style-3 .slider:hover .slider-bg-img {
      -webkit-transform: scale(1.05);
      -ms-transform: scale(1.05);
      transform: scale(1.05); }
    .no-touch .featured-slider.slider-style-3 .slider:hover .slider-bg-img:before,
    .no-touch .featured-slider.slider-style-3 .slider:hover .slider-link:before {
      opacity: 0.4; }
    .featured-slider.slider-style-3 .slick-dots {
      text-align: center;
      font-size: 0; }
      .featured-slider.slider-style-3 .slick-dots li {
        position: relative;
        display: inline-block;
        width: 30px;
        height: 20px;
        margin: 30px 2px;
        transition: opacity 0.4s; }
        .no-touch .featured-slider.slider-style-3 .slick-dots li:not(.slick-active):hover {
          opacity: 0.5; }
        .featured-slider.slider-style-3 .slick-dots li.slick-active:before {
          background: var(--primary-color); }
          .gradient-enabled .featured-slider.slider-style-3 .slick-dots li.slick-active:before {
            background-image: linear-gradient(to right, var(--gradient-start), var(--gradient-end)); }
        .featured-slider.slider-style-3 .slick-dots li:before {
          position: absolute;
          top: 8px;
          display: block;
          width: 100%;
          height: 3px;
          background: currentColor;
          content: ""; }
      .featured-slider.slider-style-3 .slick-dots button {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%; }

/* Posts
   ========================================================================== */
.no-touch .cat-links a:hover, .no-touch
.post-meta a:hover {
  opacity: 0.6; }

.cat-links {
  margin-bottom: 5px;
  font-size: 13px;
  font-size: 0.8125rem;
  font-weight: 600; }
  .cat-links a {
    position: relative;
    display: inline-block;
    color: var(--primary-color);
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase; }

.post-meta {
  z-index: 9;
  display: block;
  margin-bottom: 15px;
  font-size: 0; }
  .post-meta .meta-item {
    position: relative;
    display: inline-block;
    padding-right: 20px;
    font-size: 12px;
    font-size: 0.75rem;
    text-transform: capitalize;
    font-weight: 500;
    line-height: 30px; }
    .post-meta .meta-item:after {
      position: absolute;
      top: 14px;
      right: 8px;
      display: block;
      width: 3px;
      height: 3px;
      border-radius: 50%;
      background: currentColor;
      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.post-meta-label .post-meta .meta-item {
      font-weight: 700;
      line-height: 22px; }
      .posts.post-meta-label .post-meta .meta-item:after {
        top: 10px; }
  .posts.post-meta-label .post-meta {
    position: absolute;
    top: 0;
    left: 20px;
    padding: 0 10px;
    margin-bottom: 0;
    background: #262626;
    border-radius: 999px;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    transform-origin: 0 50%;
    color: #fff;
    white-space: nowrap; }
    .dark-color .posts.post-meta-label .post-meta {
      background: #f7f7f7;
      color: #111; }

.more-btn + .post-footer {
  margin-top: 20px; }
.post-footer > * {
  position: relative;
  display: inline-block;
  padding: 0 6px;
  line-height: 36px;
  cursor: pointer; }
  .post-footer > *.post-view {
    cursor: default; }
  .post-footer > *:first-child {
    padding-left: 0 !important; }
  .post-footer > *:hover .count,
  .post-footer > *:hover .share-container {
    opacity: 1;
    visibility: visible; }
  .post-footer > *:hover .share-container {
    pointer-events: auto; }
  .post-footer > *:hover .count {
    transition-delay: 0.4s; }
.post-footer .post-share:hover .share-container {
  opacity: 1;
  visibility: visible;
  pointer-events: auto; }
.post-footer i.fa,
.post-footer i.fab {
  position: relative;
  z-index: 2;
  display: inline-block;
  padding: 1px;
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 36px; }
.post-footer .share-container {
  position: absolute;
  bottom: 0;
  -webkit-transform: translateY(100%);
  -ms-transform: translateY(100%);
  transform: translateY(100%);
  border-radius: 999px;
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  transition: 0.25s; }
.post-footer .count {
  display: inline-block;
  margin-left: 2px;
  -webkit-transform: translateY(-3px);
  -ms-transform: translateY(-3px);
  transform: translateY(-3px);
  font-size: 9px;
  font-size: 0.5625rem;
  font-weight: 700;
  line-height: 36px; }
.post-footer .post-like i.fa {
  position: relative; }
  .post-footer .post-like i.fa:before {
    position: relative;
    z-index: 3; }
  .post-footer .post-like i.fa:after {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    z-index: 1;
    display: block;
    width: 2px;
    height: 2px;
    background: #ed145b;
    border-radius: 50%;
    content: "";
    pointer-events: none;
    opacity: 0;
    box-shadow: 0 -25px 0 currentColor, 17.5px -17.5px 0 currentColor, 25px 0 0 currentColor, 17.5px 17.5px 0 currentColor, 0 25px 0 currentColor, -17.5px 17.5px 0 currentColor, -25px 0 0 currentColor, -17.5px -17.5px 0 currentColor; }
.post-footer .post-like.liked {
  opacity: 1; }
  .post-footer .post-like.liked i.fa {
    transform-origin: 50% 50%;
    -webkit-animation: postLiked 0.4s linear 1;
    animation: postLiked 0.4s linear 1;
    color: #ed145b; }
    .post-footer .post-like.liked i.fa:after {
      -webkit-animation: postLikedSparks 0.4s linear 1;
      animation: postLikedSparks 0.4s linear 1; }
.post-footer .post-share .share-container {
  left: -15px;
  padding: 10px 15px 5px; }
  .post-footer .post-share .share-container:before, .post-footer .post-share .share-container:after {
    position: absolute;
    top: 10px;
    display: block;
    background: #111;
    content: ""; }
    .dark-color .post-footer .post-share .share-container:before, .dark-color .post-footer .post-share .share-container:after {
      background: #f3f5f6; }
  .post-footer .post-share .share-container:before {
    z-index: 9;
    top: 11px;
    left: 28px;
    width: 10px;
    height: 10px;
    -webkit-transform: translate(-50%, -55%) rotate(45deg);
    -ms-transform: translate(-50%, -55%) rotate(45deg);
    transform: translate(-50%, -55%) rotate(45deg); }
  .post-footer .post-share .share-container:after {
    z-index: 8;
    left: 0;
    width: 100%;
    height: 46px;
    border-radius: 999px; }
  .post-footer .post-share .share-container .share-icons {
    position: relative;
    z-index: 10;
    padding-top: 5px;
    white-space: nowrap; }
    .post-footer .post-share .share-container .share-icons a {
      display: inline-block;
      padding: 0 10px;
      color: #fff; }
      .dark-color .post-footer .post-share .share-container .share-icons a {
        color: #222; }

/**
 * Posts Archive General Styles
 */
.posts .posts-wrapper {
  -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 .posts-wrapper .post {
    width: 100%; }
.posts .cat-links {
  font-size: 11px;
  font-size: 0.6875rem;
  line-height: 25px; }
.posts .post-title {
  margin-bottom: 5px;
  font-size: 18px;
  font-size: 1.125rem; }
  .posts .post-title a {
    display: inline-block; }
  .no-touch .posts .post-title a:hover {
    color: var(--primary-color); }
.posts .post-header .post-title:first-child {
  margin-top: 4px; }
.posts .post-excerpt {
  margin-bottom: 20px; }
  .posts .post-excerpt p {
    margin-bottom: 0; }
  .posts .post-excerpt:last-child {
    margin-bottom: 0; }
  .posts .post-excerpt:before {
    position: relative;
    display: block;
    margin: 15px 0;
    width: 25px;
    height: 2px;
    background: var(--primary-color);
    content: ""; }
.posts .post-header {
  margin-bottom: 15px; }
  .posts .post-header:last-child,
  .posts .post-header > *:last-child {
    margin-bottom: 0; }
.posts .post {
  position: relative;
  margin-top: 50px;
  background: var(--post-content-bg-color);
  border-radius: 6px; }
  .posts .post:first-child {
    margin-top: 0; }
  .posts .post .featured-img {
    position: relative;
    width: 100%;
    margin: 0;
    border-top-left-radius: 6px;
    border-top-right-radius: 6px;
    overflow: hidden;
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0); }
    .posts .post .featured-img a,
    .posts .post .featured-img img {
      display: block; }
    .posts .post .featured-img img {
      width: 100%; }
  .posts .post .featured-img-container, .posts .post.format-gallery .featured-img .image-gallery .gallery-item .gallery-item-content {
    position: relative;
    display: block;
    width: 100%;
    height: 0;
    padding-top: 66.6666%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat; }
  .posts .post .featured-img img,
  .posts .post .featured-img-container,
  .posts .post .image-gallery {
    transition: 0.6s; }
  .no-touch .posts .post:hover .featured-img img,
  .no-touch .posts .post:hover .featured-img-container,
  .no-touch .posts .post:hover .image-gallery {
    -webkit-transform: scale(1.035);
    -ms-transform: scale(1.035);
    transform: scale(1.035);
    will-change: transform; }
  .posts .post.format-video .featured-img:before, .posts .post.format-video .featured-img:after, .posts .post.format-audio .featured-img:before, .posts .post.format-audio .featured-img:after, .posts .post.format-gallery .featured-img:before, .posts .post.format-gallery .featured-img:after {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    z-index: 9;
    display: block;
    width: 70px;
    height: 70px;
    content: "";
    pointer-events: none; }
  .posts .post.format-video .featured-img:before, .posts .post.format-audio .featured-img:before, .posts .post.format-gallery .featured-img:before {
    background: #fff;
    box-shadow: 0 0 0 8px rgba(255, 255, 255, 0.45);
    border-radius: 50%; }
  .posts .post.format-video .featured-img:after, .posts .post.format-audio .featured-img:after, .posts .post.format-gallery .featured-img:after {
    margin-top: 1px;
    color: var(--primary-color);
    text-align: center;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    display: inline-block;
    font: normal normal normal 14px/1 "Font Awesome 5 Free";
    font-size: inherit;
    text-rendering: auto;
    line-height: inherit;
    font-weight: 900;
    font-size: 20px;
    font-size: 1.25rem;
    line-height: 70px; }
  .posts .post.format-video .featured-img:before, .posts .post.format-video .featured-img:after, .posts .post.format-audio .featured-img:before, .posts .post.format-audio .featured-img:after, .posts .post.format-gallery .featured-img:before, .posts .post.format-gallery .featured-img:after {
    -webkit-transform: translate(-50%, -50%) scale(0.8);
    -ms-transform: translate(-50%, -50%) scale(0.8);
    transform: translate(-50%, -50%) scale(0.8); }
  .posts .post.format-video .featured-img:after {
    margin-left: 2px;
    font-size: 18px;
    font-size: 1.125rem;
    content: "\f04b"; }
  .posts .post.format-audio .featured-img:after {
    content: "\f001"; }
  .posts .post.format-gallery .featured-img:after {
    content: "\f03e"; }
  .posts .post.format-gallery.has-gallery .featured-img:before, .posts .post.format-gallery.has-gallery .featured-img:after {
    transition: opacity 0.3s; }
  .no-touch .posts .post.format-gallery.has-gallery .featured-img:hover:before, .no-touch .posts .post.format-gallery.has-gallery .featured-img:hover:after {
    opacity: 0; }
  .no-touch .posts .post.format-gallery.has-gallery .featured-img:hover .slider-arrows .slick-arrow.slick-prev, .no-touch .posts .post.format-gallery.has-gallery .featured-img:hover .slider-arrows .slick-arrow.slick-next {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0); }
  .posts .post.format-gallery .slider-arrows {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    z-index: 9;
    width: 100%;
    height: 40px; }
    .posts .post.format-gallery .slider-arrows .slick-arrow {
      position: absolute;
      transition: transform 0.3s; }
      .posts .post.format-gallery .slider-arrows .slick-arrow:focus, .no-touch .posts .post.format-gallery .slider-arrows .slick-arrow:hover {
        opacity: 1; }
      .posts .post.format-gallery .slider-arrows .slick-arrow.slick-prev {
        left: 10px;
        -webkit-transform: translateX(-55px);
        -ms-transform: translateX(-55px);
        transform: translateX(-55px); }
        .posts .post.format-gallery .slider-arrows .slick-arrow.slick-prev:after {
          -webkit-transform: translateX(-1px);
          -ms-transform: translateX(-1px);
          transform: translateX(-1px); }
      .posts .post.format-gallery .slider-arrows .slick-arrow.slick-next {
        right: 10px;
        -webkit-transform: translateX(55px);
        -ms-transform: translateX(55px);
        transform: translateX(55px); }
        .posts .post.format-gallery .slider-arrows .slick-arrow.slick-next:after {
          -webkit-transform: translateX(1px);
          -ms-transform: translateX(1px);
          transform: translateX(1px); }
  .posts .post .post-content {
    position: relative;
    width: 100%;
    padding: 22px 20px 30px; }
  .posts .post .more-btn .button {
    padding: 0 20px;
    line-height: 32px;
    font-size: 10px;
    font-size: 0.625rem; }
  .posts .post.sticky .sticky-icon {
    position: absolute;
    z-index: 9;
    top: 0;
    right: 20px;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 3em;
    height: 3em;
    background: var(--primary-color);
    border-radius: 50%;
    color: #fff;
    font-size: 12px;
    font-size: 0.75rem;
    line-height: 3;
    overflow: hidden;
    pointer-events: none; }
    .gradient-enabled .posts .post.sticky .sticky-icon {
      background-image: linear-gradient(to right, var(--gradient-start), var(--gradient-end)); }
    .posts .post.sticky .sticky-icon:after {
      position: relative;
      -webkit-transform: rotate(30deg);
      -ms-transform: rotate(30deg);
      transform: rotate(30deg);
      display: block;
      width: inherit;
      height: inherit;
      -moz-osx-font-smoothing: grayscale;
      -webkit-font-smoothing: antialiased;
      display: inline-block;
      font: normal normal normal 14px/1 "Font Awesome 5 Free";
      font-size: inherit;
      text-rendering: auto;
      line-height: inherit;
      font-weight: 900;
      font-size: inherit;
      text-align: center;
      content: "\f08d"; }
.posts:not(.text-center) .post .more-btn {
  float: left; }
  .posts:not(.text-center) .post .more-btn + .post-footer {
    float: right;
    margin-top: 0;
    margin-right: -6px; }
    .posts:not(.text-center) .post .more-btn + .post-footer .post-share .share-container {
      right: -15px;
      left: auto; }
      .posts:not(.text-center) .post .more-btn + .post-footer .post-share .share-container:before {
        right: 20px;
        left: auto; }
.posts.has-shadow .post {
  box-shadow: 0 5px 32px -5px rgba(35, 55, 100, 0.1); }
.posts.post-flat .post {
  background: none; }
.posts.post-flat .post-content {
  padding: 25px 0 0; }
.posts.post-flat.post-meta-label .post-meta {
  left: 0;
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%); }
.posts.post-flat .post .more-btn + .post-footer {
  margin-right: 0; }
.posts.text-center .post .post-content {
  text-align: center; }
.posts.text-center .post .post-excerpt:before {
  margin: 15px auto; }
.posts.text-center.post-meta-label .post-meta {
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%); }
.posts.layout-drop .post {
  background: none; }
  .posts.layout-drop .post .post-content {
    background: var(--post-content-bg-color); }
.posts.layout-drop.has-shadow .post {
  box-shadow: none; }
  .posts.layout-drop.has-shadow .post .post-content {
    box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.03); }
.posts.layout-grid.img-square .post:not(:first-child) .featured-img-container, .posts.layout-grid.img-square .post:not(:first-child).format-gallery .featured-img .image-gallery .gallery-item .gallery-item-content, .posts.layout-grid.img-square:not(.first-standard) .post:first-child .featured-img-container, .posts.layout-grid.img-square:not(.first-standard) .post:first-child.format-gallery .featured-img .image-gallery .gallery-item .gallery-item-content {
  padding-top: 100%; }
.posts.layout-grid.img-portrait .post:not(:first-child) .featured-img-container, .posts.layout-grid.img-portrait .post:not(:first-child).format-gallery .featured-img .image-gallery .gallery-item .gallery-item-content, .posts.layout-grid.img-portrait:not(.first-standard) .post:first-child .featured-img-container, .posts.layout-grid.img-portrait:not(.first-standard) .post:first-child.format-gallery .featured-img .image-gallery .gallery-item .gallery-item-content {
  padding-top: 125%; }
.posts.layout-grid.img-ratio-16-9 .post:not(:first-child) .featured-img-container, .posts.layout-grid.img-ratio-16-9 .post:not(:first-child).format-gallery .featured-img .image-gallery .gallery-item .gallery-item-content, .posts.layout-grid.img-ratio-16-9:not(.first-standard) .post:first-child .featured-img-container, .posts.layout-grid.img-ratio-16-9:not(.first-standard) .post:first-child.format-gallery .featured-img .image-gallery .gallery-item .gallery-item-content {
  padding-top: 56.25%; }
.posts.layout-grid.img-ratio-4-3 .post:not(:first-child) .featured-img-container, .posts.layout-grid.img-ratio-4-3 .post:not(:first-child).format-gallery .featured-img .image-gallery .gallery-item .gallery-item-content, .posts.layout-grid.img-ratio-4-3:not(.first-standard) .post:first-child .featured-img-container, .posts.layout-grid.img-ratio-4-3:not(.first-standard) .post:first-child.format-gallery .featured-img .image-gallery .gallery-item .gallery-item-content {
  padding-top: 75%; }
.posts.layout-grid.img-ratio-3-4 .post:not(:first-child) .featured-img-container, .posts.layout-grid.img-ratio-3-4 .post:not(:first-child).format-gallery .featured-img .image-gallery .gallery-item .gallery-item-content, .posts.layout-grid.img-ratio-3-4:not(.first-standard) .post:first-child .featured-img-container, .posts.layout-grid.img-ratio-3-4:not(.first-standard) .post:first-child.format-gallery .featured-img .image-gallery .gallery-item .gallery-item-content {
  padding-top: 133%; }
.posts.layout-masonry .masonry-column {
  position: relative;
  width: 100%; }
.posts.layout-block + .posts {
  margin-top: 50px; }
.posts.layout-block .post {
  padding-top: 100px;
  min-height: 280px;
  background: rgba(0, 0, 0, 0.7);
  border-radius: 10px;
  color: #fff; }
  .posts.layout-block .post .featured-img,
  .posts.layout-block .post .featured-img-container,
  .posts.layout-block .post .post-link {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%; }
  .posts.layout-block .post .featured-img,
  .posts.layout-block .post .post-link {
    border-radius: 10px;
    overflow: hidden; }
  .posts.layout-block .post .post-link {
    z-index: 2; }
  .posts.layout-block .post .featured-img {
    z-index: 1; }
  .posts.layout-block .post .featured-img-container {
    height: 100%;
    padding: 0; }
  .posts.layout-block .post .featured-img .image-gallery {
    position: absolute;
    width: 100%; }
  .posts.layout-block .post .featured-img .slick-slider,
  .posts.layout-block .post .featured-img .slick-list,
  .posts.layout-block .post .featured-img .slick-track {
    height: 100%; }
  .posts.layout-block .post .featured-img .gallery-item-content {
    height: 100% !important;
    padding: 0 !important; }
  .posts.layout-block .post.format-gallery .slider-arrows {
    display: none; }
  .posts.layout-block .post .post-content {
    z-index: 3;
    padding-top: 100px;
    pointer-events: none;
    background: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.65));
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px; }
    .posts.layout-block .post .post-content a,
    .posts.layout-block .post .post-content .post-footer {
      pointer-events: auto; }
  .posts.layout-block .post .cat-links a {
    color: #fff; }
  .posts.layout-block .post .post-excerpt {
    display: none; }
  .posts.layout-block .post .post-excerpt:before {
    width: 50px;
    background: #fff; }
  .no-touch .posts.layout-block .post .post-title a:hover {
    color: #fff; }
  .posts.layout-block .post.sticky .sticky-icon {
    top: 20px;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none; }
  .posts.layout-block .post.format-video .featured-img:before,
  .posts.layout-block .post.format-video .featured-img:after, .posts.layout-block .post.format-audio .featured-img:before,
  .posts.layout-block .post.format-audio .featured-img:after, .posts.layout-block .post.format-gallery .featured-img:before,
  .posts.layout-block .post.format-gallery .featured-img:after {
    top: 20px;
    left: 20px;
    -webkit-transform: scale(0.6);
    -ms-transform: scale(0.6);
    transform: scale(0.6); }
.posts.layout-block.post-meta-label .post-meta {
  position: relative;
  top: auto;
  left: auto;
  -webkit-transform: none;
  -ms-transform: none;
  transform: none;
  display: inline-block;
  margin-bottom: 15px;
  width: auto;
  background: #fff;
  color: #222; }
.site-content .post-entry .posts .post-header {
  position: static;
  text-align: left; }
  .site-content .post-entry .posts .post-header .post-title {
    margin-top: 0; }
  .site-content .post-entry .posts .post-header .post-meta {
    margin-top: 0; }
.site-content .post-entry .posts.text-center .post-header {
  text-align: center; }
.site-content .post-entry .posts .post-footer .comments-link a {
  color: inherit; }
.no-touch .site-content .post-entry .posts a:hover {
  text-decoration: none; }

/* Post Navigation
   ========================================================================== */
.pagination {
  width: 100%;
  padding: 50px 0 0;
  text-align: center;
  clear: both; }
  .pagination .pagination-container {
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    width: 100%;
    font-size: 0; }
  .pagination a,
  .pagination span.page-numbers {
    color: currentColor;
    font-size: 10px;
    font-size: 0.625rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    line-height: 48px;
    text-transform: uppercase; }
    .pagination a i.fa,
    .pagination span.page-numbers i.fa {
      font-size: 16px;
      font-size: 1rem;
      line-height: 40px; }
  .pagination a.load-more-btn {
    position: relative;
    display: inline-block;
    width: auto;
    height: 40px;
    padding: 0 30px;
    background: #111;
    border-radius: 999px;
    color: #fff;
    font-size: 10px;
    font-size: 0.625rem;
    line-height: 40px;
    overflow: hidden;
    transition: transform 0.3s;
    overflow-anchor: none; }
    .button-rectangle .pagination a.load-more-btn {
      border-radius: 0; }
    .button-rounded .pagination a.load-more-btn {
      border-radius: 4px; }
    .dark-color .pagination a.load-more-btn {
      background: #fff;
      color: #000; }
    .no-touch .pagination a.load-more-btn:hover {
      -webkit-transform: translateY(2px);
      -ms-transform: translateY(2px);
      transform: translateY(2px); }
    .pagination a.load-more-btn span {
      position: relative;
      z-index: 3; }
    .pagination a.load-more-btn.disabled {
      pointer-events: none; }
    .pagination a.load-more-btn.loading {
      background: none !important;
      color: inherit !important;
      font-size: 0;
      transition: 0s; }
      .pagination a.load-more-btn.loading:after {
        margin-top: 0;
        display: inline-block;
        width: 30px;
        height: 30px;
        border: 3px solid currentColor;
        border-top-color: transparent;
        border-radius: 50%;
        content: "";
        -webkit-animation: loadingSpin 1s infinite linear;
        animation: loadingSpin 1s infinite linear; }
  .pagination .page-numbers {
    display: inline-block;
    padding: 0;
    margin: 0; }
    .pagination .page-numbers.prev, .pagination .page-numbers.next {
      padding: 0 25px;
      background: #000;
      color: #fff;
      border-radius: 999px;
      line-height: 40px; }
      .dark-color .pagination .page-numbers.prev, .dark-color .pagination .page-numbers.next {
        background: #fff;
        color: #000; }
    .pagination .page-numbers.prev {
      margin-right: 25px; }
      .pagination .page-numbers.prev i.fa {
        float: left;
        margin-right: 8px; }
    .pagination .page-numbers.next {
      margin-left: 25px; }
      .pagination .page-numbers.next i.fa {
        float: right;
        margin-left: 8px; }
    .pagination .page-numbers:not(.prev):not(.next) {
      width: auto;
      min-width: 24px;
      height: 24px;
      padding: 0 5px;
      border-radius: 999px;
      line-height: 24px;
      text-align: center;
      letter-spacing: 0; }
    .pagination .page-numbers.current {
      background: var(--primary-color);
      color: #fff; }
  .pagination span.page-numbers:not(.prev):not(.next):not(.current) {
    letter-spacing: 0.2em; }
  .pagination span.page-numbers.prev, .pagination span.page-numbers.next {
    opacity: 0.35; }
  .no-touch .pagination a.page-numbers:hover {
    opacity: 0.75; }
  .no-touch .site-content .post-entry .pagination a:hover {
    text-decoration: none; }

.eaven-bannr {
  text-align: center; }

@media screen and (min-width: 480px) {
  .posts .post .post-content {
    padding-right: 30px;
    padding-left: 30px; }
  .posts .post .post-title {
    font-size: 22px;
    font-size: 1.375rem; }
  .posts.post-flat .post .post-content {
    padding-right: 0;
    padding-left: 0; }
  .posts.post-meta-label .post-meta {
    left: 30px;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%); }

  .pagination a,
  .pagination span.page-numbers {
    font-size: 12px;
    font-size: 0.75rem; } }
@media screen and (min-width: 600px) {
  .container {
    padding: 0 30px; }

  .featured-slider .slider .slider-content .slider-title {
    font-size: 36px;
    font-size: 2.25rem; }
  .featured-slider .slider .slider-content .post-excerpt {
    font-size: 18px;
    font-size: 1.125rem; }
  .featured-slider .slider .more-btn .button {
    font-size: 12px;
    font-size: 0.75rem;
    line-height: 42px; }
  .featured-slider.slider-style-1 .slider-content {
    width: calc(100% - 110px);
    left: 30px; }
  .featured-slider.slider-style-2 .slider-content {
    padding: 50px 90px; }
  .featured-slider.slider-style-2 .slider-content > * {
    margin-top: 30px; }
  .featured-slider.slider-style-2 .slider-arrows {
    display: block;
    opacity: 0;
    transition: opacity 0.3s; }
  .no-touch .featured-slider.slider-style-2:hover .slider-arrows {
    opacity: 1; }

  .posts .post.sticky .sticky-icon {
    font-size: 14px;
    font-size: 0.875rem; }

  .posts.layout-block .post .post-excerpt {
    display: block; } }
@media screen and (min-width: 768px) {
  .featured-slider.slider-style-1 .slider-content {
    bottom: 50px;
    left: 50px;
    width: 55%; }
  .featured-slider.slider-style-2 .slider-content .slider-title {
    font-size: 42px;
    font-size: 2.625rem; }

  .posts.layout-standard .post .post-content {
    padding-top: 28px;
    max-width: 760px; }
  .posts.layout-standard .post .post-header {
    margin-bottom: 18px; }
  .posts.layout-standard .post .cat-links {
    margin-bottom: 10px;
    font-size: 13px;
    font-size: 0.8125rem; }
  .posts.layout-standard .post .post-title {
    font-size: 28px;
    font-size: 1.75rem; }
  .posts.layout-standard .post .post-excerpt {
    font-size: 16px;
    font-size: 1rem; }
    .posts.layout-standard .post .post-excerpt:before {
      margin-top: 18px;
      margin-bottom: 22px;
      width: 50px; }
  .posts.layout-standard .post.format-video .featured-img:before, .posts.layout-standard .post.format-video .featured-img:after, .posts.layout-standard .post.format-audio .featured-img:before, .posts.layout-standard .post.format-audio .featured-img:after, .posts.layout-standard .post.format-gallery .featured-img:before, .posts.layout-standard .post.format-gallery .featured-img:after {
    -webkit-transform: translate(-50%, -50%) scale(1);
    -ms-transform: translate(-50%, -50%) scale(1);
    transform: translate(-50%, -50%) scale(1); }
  .posts.layout-standard .post.format-gallery .featured-img:after {
    font-size: 18px;
    font-size: 1.125rem; }
  .posts.layout-standard .post .post-footer > * {
    padding: 0 10px; }
  .posts.layout-drop .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-drop .post.has-post-thumbnail:not(:first-child) {
      margin-top: 120px; }
    .posts.layout-drop .post.has-post-thumbnail:last-child {
      margin-bottom: 70px; }
    .posts.layout-drop .post:not(.has-post-thumbnail) + .post.has-post-thumbnail {
      margin-top: 50px; }
    .posts.layout-drop .post.has-post-thumbnail + .post:not(.has-post-thumbnail) {
      margin-top: 120px; }
    .posts.layout-drop .post.format-gallery .featured-img .slider-arrows {
      top: auto;
      bottom: 10px;
      left: 0;
      -webkit-transform: none;
      -ms-transform: none;
      transform: none;
      width: 110px;
      opacity: 0;
      transition: opacity 0.3s; }
      .posts.layout-drop .post.format-gallery .featured-img .slider-arrows .slick-arrow {
        -webkit-transform: none;
        -ms-transform: none;
        transform: none; }
    .no-touch .posts.layout-drop .post.format-gallery .featured-img:hover .slider-arrows {
      opacity: 1; }
  .posts.layout-drop .featured-img {
    position: relative;
    z-index: 1;
    margin-right: -400px;
    width: calc(100% - 190px); }
    .posts.layout-drop .featured-img a {
      position: relative;
      display: block;
      width: 100%;
      height: 0;
      padding-top: 66.6666%; }
      .posts.layout-drop .featured-img a img,
      .posts.layout-drop .featured-img a .image-gallery {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%; }
      .posts.layout-drop .featured-img a img {
        object-fit: cover; }
  .posts.layout-drop .featured-img + .post-content {
    position: relative;
    z-index: 3;
    margin-right: 0;
    margin-bottom: -70px;
    width: 380px;
    align-self: flex-end; }
  .posts.layout-masonry .posts-wrapper {
    display: block;
    margin-left: -40px; }
  .posts.layout-masonry .masonry-column {
    float: left;
    width: 50%;
    padding-left: 40px; }
  .posts.layout-grid .posts-wrapper {
    -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;
    align-items: stretch;
    justify-content: flex-start;
    margin-left: -40px; }
  .posts.layout-grid .post {
    width: calc(50% - 40px);
    margin-top: 40px;
    margin-right: 0;
    margin-left: 40px; }
  .posts.layout-grid .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-block.column-1 .post {
    padding-top: 50px; }
    .posts.layout-block.column-1 .post .post-title {
      font-size: 36px;
      font-size: 2.25rem; }
    .posts.layout-block.column-1 .post .post-excerpt {
      font-size: 16px;
      font-size: 1rem; }
      .posts.layout-block.column-1 .post .post-excerpt:before {
        width: 100px; }
    .posts.layout-block.column-1 .post .cat-links {
      font-size: 13px;
      font-size: 0.8125rem; }
  .posts.layout-block.column-2 .posts-wrapper, .posts.layout-block.column-3 .posts-wrapper, .posts.layout-block.column-4 .posts-wrapper {
    -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;
    align-items: stretch;
    justify-content: flex-start;
    margin-left: -40px; }
  .posts.layout-block.column-2 .post, .posts.layout-block.column-3 .post, .posts.layout-block.column-4 .post {
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-justify-content: flex-end;
    justify-content: flex-end;
    margin-top: 40px;
    margin-right: 0;
    margin-left: 40px;
    width: calc(50% - 40px); }
    .posts.layout-block.column-2 .post:nth-child(-n+2), .posts.layout-block.column-3 .post:nth-child(-n+2), .posts.layout-block.column-4 .post:nth-child(-n+2) {
      margin-top: 0; }
    .posts.layout-block.column-2 .post .post-title, .posts.layout-block.column-3 .post .post-title, .posts.layout-block.column-4 .post .post-title {
      font-size: 24px;
      font-size: 1.5rem; } }
@media screen and (min-width: 1024px) {
  .featured-slider.slider-style-1 .slider-content {
    bottom: 100px;
    left: 100px;
    width: 45%; }

  .posts.layout-masonry.column-3 .masonry-column {
    width: 33.333333%; }

  .posts.layout-block.column-3 .post {
    width: calc(33.333333% - 40px); }
  .posts.layout-block.column-3 .post:nth-child(-n+3) {
    margin-top: 0; }
  .posts.layout-block.column-4 .post {
    width: calc(25% - 40px); }
  .posts.layout-block.column-4 .post:nth-child(-n+4) {
    margin-top: 0; }
  .posts.layout-block.column-3 .post .post-title, .posts.layout-block.column-4 .post .post-title {
    font-size: 18px;
    font-size: 1.125rem; } }
@media screen and (min-width: 1120px) {
  .site-content[class*="with-sidebar-"] .content-area {
    padding-bottom: 0; }

  .site-content[class*="with-sidebar-"] #primary {
    float: left;
    width: calc(100% - 360px); }
  .site-content[class*="with-sidebar-"] #secondary {
    float: left;
    width: 280px; }
  .site-content[class*="with-sidebar-"] .posts.layout-standard .post-content {
    max-width: none; }
  .site-content.with-sidebar-left #primary {
    float: right; }
  .site-content.with-sidebar-right #secondary {
    float: right; }

  .sidebar-sticky .sidebar-container {
    position: absolute;
    width: 280px; }

  .site-content:not([class*="with-sidebar-"]) .posts.layout-drop .featured-img + .post-content {
    width: 480px; } }
@media screen and (min-width: 1200px) {
  .featured-slider.slider-style-1 .slider-content {
    left: calc(50vw - 570px); } }
@media screen and (min-width: 1500px) {
  .featured-slider.slider-style-1 .slider .slider-content .slider-title, .featured-slider.slider-style-2 .slider .slider-content .slider-title {
    font-size: 60px;
    font-size: 3.75rem; }
  .featured-slider.slider-style-1 .slider-content {
    left: calc(50vw - 690px); }
  .featured-slider.slider-style-3 .slider .slider-content .slider-title {
    font-size: 24px;
    font-size: 1.5rem; }
  .featured-slider .slider .slider-content > * {
    max-width: 1200px; }

  .container,
  .home.front-page .site-content:not([class*="with-sidebar-"]) .content-area > .posts {
    max-width: 1440px; }

  .widget.eaven-widget_cat .cat a {
    font-size: 13px;
    font-size: 0.8125rem; } }
@media screen and (min-width: 768px) and (max-width: 1499px) {
  .posts.column-3 .post .post-title {
    font-size: 18px;
    font-size: 1.125rem; } }
@media screen and (max-width: 599px) {
  .pagination .pagination-container {
    display: inline-block;
    width: auto; }
  .pagination .page-numbers.prev,
  .pagination .page-numbers.next {
    padding: 0;
    width: 34px;
    height: 34px;
    font-size: 0;
    line-height: 34px;
    text-align: center; }
    .pagination .page-numbers.prev i.fa,
    .pagination .page-numbers.next i.fa {
      float: none;
      margin: 0;
      line-height: 34px; }
  .pagination .page-numbers.prev {
    float: left;
    margin-right: 10px; }
  .pagination .page-numbers.next {
    float: right;
    margin-left: 10px; }
  .pagination .page-numbers:not(.prev):not(.next) {
    width: 34px;
    height: 34px;
    line-height: 34px; } }
@media screen and (max-width: 360px) {
  .post-footer .post-share .share-container {
    left: -30px; }
    .post-footer .post-share .share-container:before {
      left: 43px; } }
/* ==========================================================================
   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; }

/**
 * General style for Featured/Header Image
 */
.page .featured-media-section,
.page .featured-media-section .header-img,
.archive .featured-media-section,
.archive .featured-media-section .header-img,
.single .featured-media-section,
.single .featured-media-section .header-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  overflow: hidden; }
.page .featured-media-section .header-img,
.archive .featured-media-section .header-img,
.single .featured-media-section .header-img {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat; }

/**
 * General style for Page Links & Edit Link
 */
.content-area .page-links {
  width: 100%;
  margin: 50px 0;
  clear: both;
  font-size: 16px;
  font-size: 1rem;
  line-height: 26px; }
  .content-area .page-links:last-child {
    margin-bottom: 0; }
  .content-area .page-links .page-links-title {
    margin-right: 5px; }
  .content-area .page-links > span:not(.page-links-title),
  .content-area .page-links a {
    display: inline-block;
    width: 26px;
    height: 26px;
    margin-right: 2px;
    border-radius: 50%;
    font-size: 12px;
    font-size: 0.75rem;
    font-weight: 700;
    line-height: 26px;
    text-align: center; }
  .content-area .page-links > span:not(.page-links-title), .no-touch .content-area .page-links a:hover {
    background: var(--primary-color);
    color: #fff; }

.post-edit-link {
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 700; }
  .no-touch .post-edit-link:hover {
    color: var(--primary-color); }

/**
 * General styles for Page Header & Post Header
 */
.page-header, .site-content > .post-header {
  position: relative;
  padding-bottom: 110px;
  background-color: var(--primary-color);
  color: #fff;
  text-align: center; }
  .page-header .container,
  .site-content > .post-header .container {
    z-index: 9;
    padding-top: 50px;
    padding-bottom: 50px; }
  .gradient-enabled .page-header,
  .gradient-enabled .site-content > .post-header {
    background-image: linear-gradient(45deg, var(--gradient-start), var(--gradient-end)); }
  .transparent-site-header .page-header, .transparent-site-header .site-content > .post-header {
    padding-top: 100px; }
  .page-header .featured-media-section .header-img, .site-content > .post-header .featured-media-section .header-img {
    background-attachment: fixed; }
    .touch .page-header .featured-media-section .header-img, .touch .site-content > .post-header .featured-media-section .header-img {
      background-attachment: scroll; }
  .page-header .featured-media-section:after, .site-content > .post-header .featured-media-section:after {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    background: #000;
    opacity: 0.4;
    content: "";
    pointer-events: none; }
  .page-header.has-header-image .page-header .page-title, .site-content > .post-header.has-header-image .page-header .page-title {
    text-shadow: 0 10px 20px rgba(0, 0, 0, 0.25); }
  .page-header + .main > .container, .site-content > .post-header + .main > .container {
    margin-top: -110px; }

.page-header + .main > .container,
.single .main > .container {
  z-index: 10;
  padding: 50px 20px;
  margin-bottom: 20px;
  max-width: 1140px;
  background: #fff;
  border-radius: 10px; }

.dark-color .page-header + .main > .container,
.single.dark-color .main > .container {
  background: #282828; }

.page-header .breadcrumbs {
  margin-bottom: 30px; }

.no-touch .breadcrumbs a:hover {
  opacity: 0.6; }

.product .summary .breadcrumbs {
  font-size: 13px;
  margin-bottom: 4px; }

/* Archive Page
   ========================================================================== */
.archive.author .page-header,
.archive.category .page-header,
.archive.tag .page-header,
.archive.blog .page-header,
.archive.date .page-header,
.archive.tax-post_format .page-header {
  padding-bottom: 0; }
  .archive.author .page-header + .main > .container,
  .archive.category .page-header + .main > .container,
  .archive.tag .page-header + .main > .container,
  .archive.blog .page-header + .main > .container,
  .archive.date .page-header + .main > .container,
  .archive.tax-post_format .page-header + .main > .container {
    padding: 50px 20px;
    margin-top: 0;
    max-width: 1200px;
    background: none; }
  .archive.author .page-header .container > *,
  .archive.category .page-header .container > *,
  .archive.tag .page-header .container > *,
  .archive.blog .page-header .container > *,
  .archive.date .page-header .container > *,
  .archive.tax-post_format .page-header .container > * {
    margin-bottom: 30px; }
    .archive.author .page-header .container > *:last-child,
    .archive.category .page-header .container > *:last-child,
    .archive.tag .page-header .container > *:last-child,
    .archive.blog .page-header .container > *:last-child,
    .archive.date .page-header .container > *:last-child,
    .archive.tax-post_format .page-header .container > *:last-child {
      margin-bottom: 0; }
  .archive.author .page-header .description,
  .archive.category .page-header .description,
  .archive.tag .page-header .description,
  .archive.blog .page-header .description,
  .archive.date .page-header .description,
  .archive.tax-post_format .page-header .description {
    font-size: 18px;
    font-size: 1.125rem; }
    .archive.author .page-header .description p,
    .archive.category .page-header .description p,
    .archive.tag .page-header .description p,
    .archive.blog .page-header .description p,
    .archive.date .page-header .description p,
    .archive.tax-post_format .page-header .description p {
      margin-bottom: 0; }
  .archive.author .page-header:not(.column-2),
  .archive.category .page-header:not(.column-2),
  .archive.tag .page-header:not(.column-2),
  .archive.blog .page-header:not(.column-2),
  .archive.date .page-header:not(.column-2),
  .archive.tax-post_format .page-header:not(.column-2) {
    text-align: center; }
    .archive.author .page-header:not(.column-2) .container > *,
    .archive.category .page-header:not(.column-2) .container > *,
    .archive.tag .page-header:not(.column-2) .container > *,
    .archive.blog .page-header:not(.column-2) .container > *,
    .archive.date .page-header:not(.column-2) .container > *,
    .archive.tax-post_format .page-header:not(.column-2) .container > * {
      max-width: 700px; }

.archive.author .page-header {
  margin-bottom: 48px; }
  .archive.author .page-header .container {
    padding-top: 50px;
    padding-bottom: 50px; }
  .archive.author .page-header .featured-media-section:before, .archive.author .page-header .featured-media-section:after {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    content: ""; }
  .archive.author .page-header .featured-media-section:before {
    z-index: 3;
    background: #000;
    opacity: 0.4; }
  .archive.author .page-header .featured-media-section:after {
    z-index: 4;
    background: var(--primary-color);
    opacity: 0.4; }
  .archive.author .page-header .author-info p {
    margin: 10px auto; }
  .archive.author .page-header .author-info .page-title.author-name:only-child {
    margin-bottom: 10px; }
  .archive.author .page-header .author-info .breadcrumbs {
    margin-bottom: 10px; }
  .archive.author .page-header .author-social li {
    margin: 8px; }
  .archive.author .page-header .author-photo {
    display: inline-block;
    padding: 5px;
    margin: 0 auto -108px;
    background: #fff;
    border-radius: 50%;
    overflow: hidden; }
.archive.author.gradient-enabled .page-header .featured-media-section:after {
  background-image: linear-gradient(45deg, var(--gradient-start), var(--gradient-end)); }

/* Single Page
   ========================================================================== */
.page .content-area > .page .post-entry,
.page .content-area > .page .eaven-bannr {
  margin-bottom: 50px; }
  .page .content-area > .page .post-entry:last-child,
  .page .content-area > .page .eaven-bannr:last-child {
    margin-bottom: 0; }
.page .content-area > .page:not(:last-child) {
  padding-bottom: 50px;
  border-bottom: 4px solid currentColor; }
.page .content-area > * {
  margin-bottom: 50px; }
  .page .content-area > *:last-child {
    margin-bottom: 0; }
.page .comments {
  padding-bottom: 0;
  border-bottom: none; }
.page .content-area .page .post-meta {
  margin-top: 50px; }

/* Search Results
   ========================================================================== */
.search .page-header h3.page-title {
  font-size: 36px;
  font-size: 2.25rem; }

.posts.search-results article {
  position: relative;
  width: 100%;
  margin-top: 50px;
  padding-bottom: 50px; }
  .posts.search-results article:first-child {
    margin-top: 0; }
  .posts.search-results article:after {
    position: absolute;
    bottom: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 1px;
    background: currentColor;
    opacity: 0.1;
    content: ""; }
  .posts.search-results article .featured-img {
    margin-bottom: 20px;
    border-radius: 6px;
    overflow: hidden;
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0); }
    .posts.search-results article .featured-img img {
      display: block;
      width: 100%; }
  .posts.search-results article .post-content {
    width: 100%;
    text-align: left; }
  .posts.search-results article.post {
    background: none !important; }
    .posts.search-results article.post .post-content {
      padding: 0; }

/**
 * When no search results
 */
.no-post-found .no-article {
  padding: 50px 0;
  text-align: center; }
  .no-post-found .no-article .post-entry {
    max-width: 560px; }

/* Page 404
   ========================================================================== */
.error404 .site-content {
  padding-top: 100px; }
  .error404 .site-content:before {
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 150px;
    background: var(--primary-color);
    content: ""; }
.error404 .main > .container {
  padding: 30px 0;
  margin-top: -50px;
  max-width: 1140px;
  background: #fff;
  border-radius: 10px; }
.error404.transparent-site-header .site-content:before {
  height: 250px; }
.error404.transparent-site-header .main > .container {
  margin-top: 50px; }
.error404 .content-area {
  padding-bottom: 20px;
  text-align: center; }
.error404 .page-404-page-header {
  position: relative; }
  .error404 .page-404-page-header h1.page-title {
    display: inline-block;
    color: var(--primary-color);
    font-size: 100px;
    font-size: 6.25rem;
    font-weight: 700; }
  .error404 .page-404-page-header h2 {
    margin-top: -15px;
    margin-bottom: 50px;
    font-size: 22px;
    font-size: 1.375rem;
    line-height: 1; }
.error404 .page-404-container {
  max-width: 600px; }
  .error404 .page-404-container p {
    margin-bottom: 50px; }
.error404.gradient-enabled .site-content:before {
  background-image: linear-gradient(45deg, var(--gradient-start), var(--gradient-end)); }
.error404.gradient-enabled .page-404-page-header h1.page-title {
  color: var(--primary-color);
  background-image: -webkit-linear-gradient(left, var(--gradient-start), var(--gradient-end));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent; }

/* Single Post
   ========================================================================== */
.single .site-content .post-header {
  position: relative;
  text-align: center; }
  .single .site-content .post-header .container {
    z-index: 9; }
    .single .site-content .post-header .container > * {
      margin-bottom: 30px;
      max-width: 1000px; }
      .single .site-content .post-header .container > *:last-child {
        margin-bottom: 0; }
    .single .site-content .post-header .container > .featured-media-section {
      max-width: none; }
  .single .site-content .post-header .container .post-meta {
    display: block; }
    .single .site-content .post-header .container .post-meta .meta-item {
      display: inline-block;
      margin: 0;
      font-size: 14px;
      font-size: 0.875rem; }
      .single .site-content .post-header .container .post-meta .meta-item:after {
        top: 50%;
        -webkit-transform: translateY(-1.5px);
        -ms-transform: translateY(-1.5px);
        transform: translateY(-1.5px); }
    .single .site-content .post-header .container .post-meta .author-photo {
      display: inline-block;
      padding: 2px;
      width: 40px;
      background: #fff;
      border-radius: 50%; }
      .single .site-content .post-header .container .post-meta .author-photo:not(:only-child) {
        position: absolute;
        top: -5px;
        left: 0; }
      .single .site-content .post-header .container .post-meta .author-photo:only-child {
        margin-top: -40px;
        -webkit-transform: translateY(15px);
        -ms-transform: translateY(15px);
        transform: translateY(15px); }
      .single .site-content .post-header .container .post-meta .author-photo + a {
        padding-left: 50px; }
  .single .site-content .post-header .fluid-width-video-wrapper {
    margin-bottom: 0; }
.single .site-content > .post-header .cat-links,
.single .content-area > .post > .post-header .cat-links {
  font-size: 0; }
  .single .site-content > .post-header .cat-links a,
  .single .content-area > .post > .post-header .cat-links a {
    padding: 2px 15px;
    margin: 3px;
    border-radius: 99px;
    font-size: 14px;
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0;
    text-transform: capitalize; }
.single .site-content > .post-header .cat-links a {
  background: #fff;
  color: #111; }
.single.post-template-header-fullwidth .site-content > .post-header:not(.post-header-overlay) .cat-links a,
.single .content-area > .post > .post-header .cat-links a {
  background: var(--primary-color);
  color: #fff; }
.single.post-template-regular .main {
  padding-top: 50px; }
.single.post-template-regular .content-area > .post .post-header {
  margin-bottom: 50px; }
  .single.post-template-regular .content-area > .post .post-header .container {
    padding: 0; }
  .single.post-template-regular .content-area > .post .post-header:not(.post-header-overlay) .featured-media-section {
    position: relative; }
.single.post-template-header-fullwidth .site-content > .post-header:not(.post-header-overlay) {
  background: none;
  color: inherit; }
  .single.post-template-header-fullwidth .site-content > .post-header:not(.post-header-overlay) .featured-media-section {
    position: relative;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    margin-bottom: -160px;
    width: 100vw;
    max-width: 100vw;
    height: 460px; }
    .single.post-template-header-fullwidth .site-content > .post-header:not(.post-header-overlay) .featured-media-section img {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover; }
    .single.post-template-header-fullwidth .site-content > .post-header:not(.post-header-overlay) .featured-media-section:after {
      display: none; }
.single.post-template-img-bg .site-content {
  padding-bottom: 50px;
  overflow: hidden; }
  .single.post-template-img-bg .site-content .post-bg-img {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    display: block;
    width: 100vw;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    pointer-events: none; }
    .single.post-template-img-bg .site-content .post-bg-img:before {
      position: fixed;
      top: 0;
      left: 0;
      display: none;
      width: 100vw;
      height: 100vh;
      content: "";
      background-image: inherit;
      background-size: cover;
      background-position: center;
      background-repeat: no-repeat;
      pointer-events: none; }
    .touch .single.post-template-img-bg .site-content .post-bg-img {
      height: 100vh;
      min-height: 500px;
      background-attachment: scroll;
      background-size: cover !important; }
      .touch .single.post-template-img-bg .site-content .post-bg-img:before {
        display: none !important; }
  .single.post-template-img-bg .site-content > .post-header .bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1; }
    .single.post-template-img-bg .site-content > .post-header .bg-overlay:before {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      z-index: 1;
      background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
      content: ""; }
  .single.post-template-img-bg .site-content > .post-header.has-post-thumbnail {
    background: none; }
.single .post-header.post-header-overlay.has-post-thumbnail .post-title {
  text-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); }
.single.post-template-regular .post-header.post-header-overlay {
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  padding: 50px 20px;
  margin-top: -50px;
  width: 100vw;
  max-width: 100vw;
  background: rgba(0, 0, 0, 0.3);
  border-top-right-radius: 10px;
  border-top-left-radius: 10px;
  color: #fff;
  overflow: hidden; }
  .single.post-template-regular .post-header.post-header-overlay .featured-media-section:after {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    background: #000;
    opacity: 0.4;
    content: ""; }
.single #primary {
  position: relative; }
  .single #primary > *:not(:first-child) {
    margin-top: 50px; }
  .single #primary > .post {
    position: relative;
    padding-bottom: 50px;
    border-bottom: 4px solid currentColor; }
    .single #primary > .post .post-entry {
      position: relative; }
      .single #primary > .post .post-entry .featured-media-section.in-content {
        position: relative;
        margin-bottom: 30px; }
    .single #primary > .post .post-entry,
    .single #primary > .post .eaven-bannr {
      margin-bottom: 50px; }
    .single #primary > .post > *:last-child {
      margin-bottom: 0; }
    .single #primary > .post .post-tag-cloud {
      margin-top: 8px; }
      .single #primary > .post .post-tag-cloud span {
        margin-right: 5px; }
      .single #primary > .post .post-tag-cloud .tagcloud {
        display: inline;
        font-size: 0;
        font-weight: 500; }
        .single #primary > .post .post-tag-cloud .tagcloud a {
          padding: 0 6px;
          margin: 0 6px 4px 0;
          font-size: 12px !important;
          font-size: 0.75rem !important; }
      .single #primary > .post .post-tag-cloud + .post-footer {
        margin-top: 15px; }
    .single #primary > .post .post-footer .post-share .share-container {
      padding-top: 5px; }
      .single #primary > .post .post-footer .post-share .share-container:before {
        top: 6px; }
      .single #primary > .post .post-footer .post-share .share-container:after {
        top: 5px; }
  .single #primary .author-info-box {
    padding: 50px 20px;
    margin-top: 50px;
    background: #f3f5f6;
    text-align: center; }
    .single #primary .author-info-box .author-photo {
      margin-bottom: 30px;
      width: 130px; }
    .single #primary .author-info-box .author-info {
      display: table-cell;
      vertical-align: middle; }
      .single #primary .author-info-box .author-info p {
        margin-bottom: 20px; }
    .single #primary .author-info-box .author-name {
      font-size: 24px;
      font-size: 1.5rem; }
      .single #primary .author-info-box .author-name + p {
        margin-top: 10px; }
      .no-touch .single #primary .author-info-box .author-name a:hover {
        color: var(--primary-color); }
    .single #primary .author-info-box .author-social li:not(:last-child) {
      margin-right: 10px; }
    .single #primary .author-info-box .author-social ul.social-nav li a:before {
      font-size: 16px;
      font-size: 1rem; }
.single .related-posts .related-posts-title {
  text-align: center; }
  .single .related-posts .related-posts-title:before {
    position: relative;
    display: block;
    margin: 30px auto;
    width: 25px;
    height: 2px;
    background: var(--primary-color);
    content: ""; }
.single .related-posts .post {
  background: none !important; }
  .single .related-posts .post .post-content {
    padding: 10px 0; }
  .single .related-posts .post .post-header {
    text-align: left; }
  .single .related-posts .post .post-title {
    font-size: 16px;
    font-size: 1rem; }
  .single .related-posts .post:not(:first-child) {
    margin-top: 20px; }
  .single .related-posts .post .featured-img-container {
    padding-top: 50%; }
.single .related-posts.img-landscape .featured-img-container {
  padding-top: 66.6666%; }
.single .post-navigation .nav-links > * {
  position: relative;
  background: rgba(0, 0, 0, 0.03);
  border-radius: 10px;
  overflow: hidden;
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0); }
.single .post-navigation .nav-links a {
  position: relative;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  flex-direction: row; }
  .single .post-navigation .nav-links a > * {
    margin-left: 0; }
  .no-touch .single .post-navigation .nav-links a:hover {
    background-color: var(--primary-color);
    color: #fff; }
    .no-touch .single .post-navigation .nav-links a:hover .post-thumb {
      opacity: 0.5; }
.single .post-navigation .nav-links .post-thumb {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 1;
  opacity: 0;
  transition: opacity 0.3s; }
  .single .post-navigation .nav-links .post-thumb:after {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background: rgba(0, 0, 0, 0.4);
    content: ""; }
.single .post-navigation .nav-links .post-text {
  position: relative;
  z-index: 3;
  padding: 30px;
  width: 100%; }
  .single .post-navigation .nav-links .post-text .nav-links-label {
    display: block;
    margin-bottom: 5px;
    font-size: 11px;
    font-size: 0.6875rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    opacity: 0.5; }
.single .post-navigation .nav-links .post-title {
  font-size: 16px;
  font-size: 1rem;
  transition: opacity 0.3s; }
.single .post-navigation .nav-links .nav-previous:not(:last-child) {
  margin-bottom: 10px; }
.single.dark-color .post-navigation .nav-links > * {
  background: rgba(255, 255, 255, 0.05); }
.single.dark-color #primary .author-info-box {
  background: #191919; }

/* Comments
   ========================================================================== */
.comments {
  position: relative;
  overflow: hidden;
  padding-bottom: 20px;
  border-bottom: 4px solid; }
  .no-touch .comments a:hover {
    color: var(--primary-color); }
  .comments ol.comment-list {
    margin: 0 auto 50px;
    border-bottom: 1px dotted rgba(0, 0, 0, 0.1);
    list-style: none; }
    .comments ol.comment-list ol.children {
      padding-top: 50px;
      margin: 50px 0 0 30px;
      border-top: 1px dotted rgba(0, 0, 0, 0.1);
      list-style: none; }
    .comments ol.comment-list > li:not(:last-child),
    .comments ol.comment-list ol.children > li:not(:last-child) {
      margin-bottom: 50px;
      border-bottom: 1px dotted rgba(0, 0, 0, 0.1); }
    .comments ol.comment-list > li:not(.depth-1):last-of-type,
    .comments ol.comment-list ol.children > li:not(.depth-1):last-of-type {
      padding-bottom: 0; }
    .comments ol.comment-list > li.comment, .comments ol.comment-list > li.pingback, .comments ol.comment-list > li.trackback,
    .comments ol.comment-list ol.children > li.comment,
    .comments ol.comment-list ol.children > li.pingback,
    .comments ol.comment-list ol.children > li.trackback {
      position: relative;
      padding: 0 0 50px;
      list-style: none; }
    .comments ol.comment-list > li:last-child,
    .comments ol.comment-list ol.children > li:last-child {
      margin-bottom: 0 !important; }
    .comments ol.comment-list > li.comment .comment-body,
    .comments ol.comment-list ol.children > li.comment .comment-body {
      position: relative; }
    .comments ol.comment-list > li.bypostauthor > .comment-body .author-label, .comments ol.comment-list ol.children > li.bypostauthor > .comment-body .author-label {
      display: inline-block;
      padding: 0 10px;
      margin-top: -3px;
      margin-left: 5px;
      background: var(--primary-color);
      border-radius: 4px;
      color: #fff;
      font-size: 11px;
      font-size: 0.6875rem;
      font-weight: 700;
      line-height: 20px;
      vertical-align: middle; }
      .gradient-enabled .comments ol.comment-list > li.bypostauthor > .comment-body .author-label,
      .gradient-enabled .comments ol.comment-list ol.children > li.bypostauthor > .comment-body .author-label {
        background-image: linear-gradient(to right, var(--gradient-start), var(--gradient-end)); }
    .comments ol.comment-list .comment-meta {
      margin-bottom: 15px; }
      .comments ol.comment-list .comment-meta .comment-author.vcard {
        display: inline-block;
        font-size: 18px;
        font-size: 1.125rem; }
        .comments ol.comment-list .comment-meta .comment-author.vcard img {
          position: absolute;
          z-index: 9;
          top: 0;
          left: 0;
          width: 64px;
          height: 64px;
          border-radius: 50%; }
        .comments ol.comment-list .comment-meta .comment-author.vcard b.fn {
          font-weight: 600; }
      .comments ol.comment-list .comment-meta .comment-metadata {
        font-size: 11px;
        font-size: 0.6875rem; }
        .comments ol.comment-list .comment-meta .comment-metadata a {
          opacity: 0.5; }
          .no-touch .comments ol.comment-list .comment-meta .comment-metadata a:hover {
            opacity: 1; }
    .comments ol.comment-list a.comment-edit-link {
      margin-left: 5px;
      font-size: 0; }
      .comments ol.comment-list a.comment-edit-link:before {
        -moz-osx-font-smoothing: grayscale;
        -webkit-font-smoothing: antialiased;
        display: inline-block;
        font: normal normal normal 14px/1 "Font Awesome 5 Free";
        font-size: inherit;
        text-rendering: auto;
        line-height: inherit;
        font-weight: 900;
        font-size: 12px;
        font-size: 0.75rem;
        content: "\f044"; }
    .comments ol.comment-list .comment-content > *:last-child {
      margin-bottom: 0; }
    .comments ol.comment-list .comment-content p {
      margin: 0 0 20px; }
    .comments ol.comment-list .comment-content hr {
      margin-bottom: 20px; }
    .comments ol.comment-list .comment-content blockquote p {
      font-size: 16px;
      font-size: 1rem; }
    .comments ol.comment-list .comment-content pre {
      font-size: 14px; }
    .comments ol.comment-list .reply {
      margin-top: 20px;
      font-size: 12px;
      font-size: 0.75rem;
      font-weight: 500; }
      .comments ol.comment-list .reply a {
        position: relative;
        display: inline-block;
        padding-left: 20px;
        line-height: 20px;
        opacity: 0.5; }
        .comments ol.comment-list .reply a:before {
          position: absolute;
          top: -1px;
          left: 1px;
          -webkit-transform: rotate(175deg);
          -ms-transform: rotate(175deg);
          transform: rotate(175deg);
          -moz-osx-font-smoothing: grayscale;
          -webkit-font-smoothing: antialiased;
          display: inline-block;
          font: normal normal normal 14px/1 "Font Awesome 5 Free";
          font-size: inherit;
          text-rendering: auto;
          line-height: inherit;
          font-weight: 900;
          content: "\f3e5";
          opacity: 0.3; }
        .no-touch .comments ol.comment-list .reply a:hover {
          opacity: 1; }
  .comments p.comments-closed {
    margin-bottom: 0;
    font-style: italic;
    opacity: 0.6; }
  .comments .navigation {
    margin-bottom: 50px; }
    .comments .navigation .nav-links {
      color: var(--primary-color);
      font-size: 12px;
      font-size: 0.75rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.05em; }
      .comments .navigation .nav-links > * a:before {
        -moz-osx-font-smoothing: grayscale;
        -webkit-font-smoothing: antialiased;
        display: inline-block;
        font: normal normal normal 14px/1 "Font Awesome 5 Free";
        font-size: inherit;
        text-rendering: auto;
        line-height: inherit;
        font-weight: 900; }
      .comments .navigation .nav-links .nav-previous {
        float: right; }
        .comments .navigation .nav-links .nav-previous a:before {
          float: right;
          margin-left: 6px;
          content: "\f0da"; }
      .comments .navigation .nav-links .nav-next a:before {
        float: left;
        margin-right: 6px;
        content: "\f0d9"; }
  .comments .comment-respond label {
    font-size: 14px;
    font-size: 0.875rem;
    font-weight: 400;
    opacity: 0.5; }
  .comments .comment-respond .logged-in-as {
    font-size: 14px;
    font-size: 0.875rem; }
  .comments .comment-reply-title small {
    margin-left: 15px;
    font-size: 65%; }
    .comments .comment-reply-title small a {
      letter-spacing: 0;
      opacity: 0.5; }
      .no-touch .comments .comment-reply-title small a:hover {
        opacity: 1; }
  .comments .comment-body + .comment-respond {
    padding: 40px 40px 10px;
    margin-top: 30px;
    background: #f7f8f9; }
    .dark-color .comments .comment-body + .comment-respond {
      background: #111; }

.dark-color .comments ol.comment-list {
  border-bottom-color: rgba(255, 255, 255, 0.2); }
  .dark-color .comments ol.comment-list ol.children {
    border-top-color: rgba(255, 255, 255, 0.2); }
  .dark-color .comments ol.comment-list > li:not(:last-child),
  .dark-color .comments ol.comment-list ol.children > li:not(:last-child) {
    border-bottom-color: rgba(255, 255, 255, 0.2); }

/* Single Attachment Page
   ========================================================================== */
.single.single-attachment .main {
  padding-top: 50px; }
.single.single-attachment .content-area {
  text-align: center; }
  .single.single-attachment .content-area .attachment .post-title {
    margin-bottom: 50px;
    font-size: 28px;
    font-size: 1.75rem; }
  .single.single-attachment .content-area p {
    margin-bottom: 30px; }
  .single.single-attachment .content-area p + .wp-caption-text {
    padding-top: 0;
    margin-top: -15px; }

/* Content Navigation
   ========================================================================== */
.loftocean-content-navigation {
  position: relative;
  z-index: 99;
  margin-bottom: 30px;
  width: 100%;
  text-align: center; }
  .loftocean-content-navigation .lcn-nav-link {
    display: inline-block; }
  .loftocean-content-navigation .ion {
    position: relative;
    z-index: 3;
    display: block;
    width: 45px;
    height: 45px;
    font-size: 22px;
    font-size: 1.375rem;
    line-height: 45px;
    text-align: center; }
  .loftocean-content-navigation .lcn-nav-text {
    display: none;
    font-size: 14px;
    font-size: 0.875rem;
    font-weight: 500;
    transition: 0.3s;
    white-space: nowrap; }
  .loftocean-content-navigation.position-top {
    background: #f3f5f6;
    color: #111;
    overflow-x: auto; }
    .dark-color .loftocean-content-navigation.position-top {
      background: #111;
      color: #fff; }
    .loftocean-content-navigation.position-top .lcn-nav-text {
      font-size: 12px;
      font-size: 0.75rem; }
    .loftocean-content-navigation.position-top.sticky {
      position: fixed;
      z-index: 9999;
      top: 0;
      left: 50%;
      -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
      transform: translateX(-50%);
      transition: top 0.4s ease-out;
      width: calc(100% + 2px);
      margin-left: -1px; }
      .site-header.show-header + .site-content .loftocean-content-navigation.position-top.sticky, .site-header.sticky + .site-content .loftocean-content-navigation.position-top.sticky {
        top: 100px; }
      .site-header.site-header-layout-1.show-header + .site-content .loftocean-content-navigation.position-top.sticky, .site-header.site-header-layout-1.sticky + .site-content .loftocean-content-navigation.position-top.sticky {
        top: 50px; }
  .loftocean-content-navigation.position-side {
    color: #fff; }
    .dark-color .loftocean-content-navigation.position-side {
      color: #111; }
    .loftocean-content-navigation.position-side, .loftocean-content-navigation.position-side .ion, .loftocean-content-navigation.position-side .lcn-nav-text {
      background: #111; }
      .dark-color .loftocean-content-navigation.position-side,
      .dark-color .loftocean-content-navigation.position-side .ion,
      .dark-color .loftocean-content-navigation.position-side .lcn-nav-text {
        background: #fff; }
    .loftocean-content-navigation.position-side .lcn-container {
      display: inline-block;
      width: auto; }
    .loftocean-content-navigation.position-side .lcn-nav-link,
    .loftocean-content-navigation.position-side .lcn-nav-text,
    .loftocean-content-navigation.position-side .lcn-nav-text span {
      height: 45px;
      line-height: 45px; }
    .loftocean-content-navigation.position-side .lcn-nav-link {
      position: relative;
      display: inline-block;
      margin: 0;
      width: 45px;
      height: 45px;
      line-height: 45px; }
    .loftocean-content-navigation.position-side .ion {
      margin-left: 0; }
    .loftocean-content-navigation.position-side .lcn-nav-text span {
      display: block;
      padding-left: 60px;
      padding-right: 15px;
      max-width: 0;
      opacity: 0;
      transition: 0.3s;
      transform-origin: 0 0; }

.vce-row-content {
  max-width: 100%; }

/* Special Classes for Single Pages
   ========================================================================== */
.page.hide-site-header .site-header, .page.hide-site-footer .site-footer, .page.hide-footer-ins #eaven-site-footer-instagram, .page.hide-footer-widgets .site-footer .widget-area, .page.hide-footer-signup .site-footer-signup-form-wrapper {
  display: none; }

@media screen and (min-width: 480px) {
  .page-header + .main > .container,
  .single .main > .container {
    padding: 50px;
    margin-bottom: 50px; }

  .error404 .main > .container {
    padding: 50px; }

  .single.post-template-regular .post-header.post-header-overlay {
    padding: 50px; }

  .single #primary .author-info-box {
    padding: 50px;
    text-align: left; }
    .single #primary .author-info-box .author-photo {
      float: left;
      margin: 0 30px 0 0; }
    .single #primary .author-info-box .author-social li:first-child {
      margin-left: -5px; }

  .comments ol.comment-list > li.comment .comment-body,
  .comments ol.comment-list ol.children > li.comment .comment-body {
    padding-left: 84px; } }
@media screen and (min-width: 600px) {
  .page .main,
  .search .main,
  .single .main,
  .error404 .main {
    padding: 0 20px; }

  .error404 .main {
    padding-bottom: 50px; }

  .archive.author .page-header + .main > .container,
  .archive.category .page-header + .main > .container,
  .archive.tag .page-header + .main > .container,
  .archive.blog .page-header + .main > .container,
  .archive.date .page-header + .main > .container,
  .archive.tax-post_format .page-header + .main > .container {
    padding: 60px 30px;
    margin-bottom: 0; }

  .post-dropcap {
    margin-right: 15px;
    font-size: 90px;
    font-size: 5.625rem; }

  .posts.search-results article {
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex; }
    .posts.search-results article .featured-img {
      width: 300px;
      margin-right: 30px;
      margin-bottom: 0; }
      .posts.search-results article .featured-img + .post-content {
        width: calc(100% - 330px); }

  .single.post-template-regular .post-header.post-header-overlay {
    width: calc(100vw - 40px); }

  .comments ol.comment-list .comment-meta .comment-metadata {
    display: inline-block;
    margin-left: 15px; }

  .loftocean-content-navigation.position-side {
    margin-bottom: 0; }
    .loftocean-content-navigation.position-side .lcn-container {
      position: absolute;
      top: 0;
      left: auto;
      display: block;
      width: 45px;
      -webkit-transform: translate(-70px, 0);
      -ms-transform: translate(-70px, 0);
      transform: translate(-70px, 0); }
    .loftocean-content-navigation.position-side .lcn-nav-link,
    .loftocean-content-navigation.position-side .lcn-nav-text {
      display: block; }
    .loftocean-content-navigation.position-side .lcn-nav-text {
      position: absolute;
      z-index: 1;
      top: 0;
      left: 0;
      display: block;
      width: 45px;
      pointer-events: none;
      overflow: hidden; }
    .loftocean-content-navigation.position-side .lcn-nav-link:hover .lcn-nav-text {
      width: auto;
      -webkit-transform: translateX(0);
      -ms-transform: translateX(0);
      transform: translateX(0);
      opacity: 1; }
      .loftocean-content-navigation.position-side .lcn-nav-link:hover .lcn-nav-text span {
        max-width: 300px;
        opacity: 1; }
    .loftocean-content-navigation.position-side.sticky .lcn-container {
      position: fixed;
      top: 50%;
      -webkit-transform: translate(-70px, -50%);
      -ms-transform: translate(-70px, -50%);
      transform: translate(-70px, -50%); }
    .loftocean-content-navigation.position-side.reach-bottom {
      position: absolute;
      bottom: 0; }
      .loftocean-content-navigation.position-side.reach-bottom .lcn-container {
        top: auto;
        bottom: 0; } }
@media screen and (min-width: 768px) {
  .archive .page-header.column-2 {
    text-align: left; }
    .archive .page-header.column-2 .page-title {
      float: left;
      width: 42%; }
    .archive .page-header.column-2 .description {
      float: right;
      width: 55%; }

  .error404 .page-404-container p {
    font-size: 18px;
    font-size: 1.125rem; }

  .comments .comment-respond form.comment-form {
    margin: 0 -5px; }
    .comments .comment-respond form.comment-form > * {
      padding: 0 5px; }
    .comments .comment-respond form.comment-form .comment-form-author,
    .comments .comment-respond form.comment-form .comment-form-email,
    .comments .comment-respond form.comment-form .comment-form-url {
      float: left;
      width: 33.333333%; }

  .single #primary > .post .post-tag-cloud {
    float: left;
    max-width: calc(100% - 140px); }
    .single #primary > .post .post-tag-cloud + .post-footer {
      float: right;
      margin-top: 0; }
      .single #primary > .post .post-tag-cloud + .post-footer .post-share .share-container {
        right: -15px;
        left: auto; }
        .single #primary > .post .post-tag-cloud + .post-footer .post-share .share-container:before {
          right: 20px;
          left: auto; }
  .single .post-navigation .nav-links {
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    align-items: stretch; }
    .single .post-navigation .nav-links .nav-previous,
    .single .post-navigation .nav-links .nav-next {
      width: calc(50% - 10px); }
    .single .post-navigation .nav-links a {
      height: 100%; }
    .single .post-navigation .nav-links .nav-previous {
      margin-left: 0; }
      .single .post-navigation .nav-links .nav-previous:not(:last-child) {
        margin-bottom: 0; }
    .single .post-navigation .nav-links .nav-next {
      margin-right: 0;
      text-align: right; }
      .single .post-navigation .nav-links .nav-next a > * {
        margin-right: 0;
        margin-left: auto; }

  .related-posts.posts.layout-grid .post:not(:first-child) {
    margin-top: 40px; }
  .related-posts.posts.layout-grid .post:nth-child(-n+2) {
    margin-top: 0; }

  .posts.search-results .post-excerpt:before {
    width: 50px; }

  .loftocean-content-navigation.position-top .lcn-container {
    display: table;
    table-layout: fixed; }
  .loftocean-content-navigation.position-top .lcn-nav-link {
    display: table-cell;
    padding: 20px 30px 10px; }
  .loftocean-content-navigation.position-top .ion {
    height: auto;
    line-height: 1; }
  .loftocean-content-navigation.position-top .lcn-nav-text {
    display: block; } }
@media screen and (min-width: 1120px) {
  .page-header .container,
  .site-content > .post-header .container {
    padding-top: 100px;
    padding-bottom: 100px; }

  .single.post-template-header-fullwidth .site-content > .post-header:not(.post-header-overlay) > .container {
    padding-top: 50px;
    padding-bottom: 50px; }

  .single.post-template-regular .post-header.post-header-overlay {
    padding: 80px 50px; }

  .single.post-template-regular .site-content[class*="with-sidebar-"] .post-header.post-header-overlay {
    left: auto;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
    margin-top: 0;
    width: 100%; }

  .single .site-content:not([class*="with-sidebar-"]) .related-posts.post-4 .post {
    margin-top: 0;
    width: calc(25% - 40px); }
  .single .site-content:not([class*="with-sidebar-"]) .related-posts.post-6 .post {
    width: calc(33.3333% - 40px); }
    .single .site-content:not([class*="with-sidebar-"]) .related-posts.post-6 .post:nth-child(3) {
      margin-top: 0; }
  .single .site-content:not([class*="with-sidebar-"]) .related-posts .posts-wrapper {
    -webkit-justify-content: center;
    justify-content: center; }

  .site-content.with-sidebar-left .loftocean-content-navigation.position-side {
    right: 0;
    left: auto; }
    .site-content.with-sidebar-left .loftocean-content-navigation.position-side .lcn-container {
      right: 0;
      -webkit-transform: translate(70px, 0);
      -ms-transform: translate(70px, 0);
      transform: translate(70px, 0); }
    .site-content.with-sidebar-left .loftocean-content-navigation.position-side .lcn-nav-text {
      right: 0;
      left: auto;
      direction: rtl; }
      .site-content.with-sidebar-left .loftocean-content-navigation.position-side .lcn-nav-text span {
        padding-left: 15px;
        padding-right: 60px; }
    .site-content.with-sidebar-left .loftocean-content-navigation.position-side.sticky .lcn-container {
      -webkit-transform: translate(0, -50%);
      -ms-transform: translate(0, -50%);
      transform: translate(0, -50%); } }
@media screen and (min-width: 1200px) {
  .single.post-template-regular .post-header.post-header-overlay {
    width: 1140px; } }
@media screen and (min-width: 1260px) {
  .loftocean-content-navigation.position-side .lcn-container {
    -webkit-transform: translate(-95px, 0);
    -ms-transform: translate(-95px, 0);
    transform: translate(-95px, 0); }
    .site-content.with-sidebar-left .loftocean-content-navigation.position-side .lcn-container {
      -webkit-transform: translate(95px, 0);
      -ms-transform: translate(95px, 0);
      transform: translate(95px, 0); }
  .loftocean-content-navigation.position-side.sticky .lcn-container {
    -webkit-transform: translate(-95px, -50%);
    -ms-transform: translate(-95px, -50%);
    transform: translate(-95px, -50%); }
    .site-content.with-sidebar-left .loftocean-content-navigation.position-side.sticky .lcn-container {
      right: calc(50vw - 615px);
      -webkit-transform: translate(0, -50%);
      -ms-transform: translate(0, -50%);
      transform: translate(0, -50%); } }
@media screen and (min-width: 1500px) {
  .page-header + .main > .container,
  .single .main > .container,
  .error404 .main > .container {
    max-width: 1380px; }

  .archive.author .page-header + .main > .container,
  .archive.category .page-header + .main > .container,
  .archive.tag .page-header + .main > .container,
  .archive.blog .page-header + .main > .container,
  .archive.date .page-header + .main > .container,
  .archive.tax-post_format .page-header + .main > .container {
    max-width: 1440px; }

  .single .site-content .post-header .container > * {
    max-width: 1200px; }

  .single.post-template-regular .post-header.post-header-overlay {
    width: 1380px; }

  .site-content.with-sidebar-left .loftocean-content-navigation.position-side.sticky .lcn-container {
    right: calc(50vw - 735px);
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%); } }
@media screen and (min-width: 601px) and (max-width: 782px) {
  .logged-in.admin-bar .loftocean-content-navigation.position-top.sticky {
    top: 46px; }

  .logged-in.admin-bar .site-header.show-header + .site-content .loftocean-content-navigation.position-top.sticky,
  .logged-in.admin-bar .site-header.sticky + .site-content .loftocean-content-navigation.position-top.sticky {
    top: 146px; }
  .logged-in.admin-bar .site-header.site-header-layout-1.show-header + .site-content .loftocean-content-navigation.position-top.sticky,
  .logged-in.admin-bar .site-header.site-header-layout-1.sticky + .site-content .loftocean-content-navigation.position-top.sticky {
    top: 96px; } }
@media screen and (max-width: 767px) {
  .loftocean-content-navigation.position-top.mobile-show-label .lcn-container {
    white-space: nowrap;
    overflow-x: auto; }
  .loftocean-content-navigation.position-top.mobile-show-label .lcn-nav-text {
    display: block; }
  .loftocean-content-navigation.position-top.mobile-show-label .lcn-nav-link {
    padding: 20px 30px 15px; }
  .loftocean-content-navigation.position-top.mobile-show-label .lcn-nav-link span {
    line-height: 24px; }
  .loftocean-content-navigation.position-top.mobile-show-label .lcn-container .ion {
    height: auto;
    line-height: 1; }

  .page-header .breadcrumbs,
  .post-header .breadcrumbs {
    font-size: 14px;
    margin-bottom: 15px; }

  .archive.author .page-header .container > *:not(:last-child),
  .archive.category .page-header .container > *:not(:last-child),
  .archive.tag .page-header .container > *:not(:last-child),
  .archive.blog .page-header .container > *:not(:last-child),
  .archive.date .page-header .container > *:not(:last-child),
  .archive.tax-post_format .page-header .container > *:not(:last-child) {
    margin-bottom: 15px; }

  .single .site-content .post-header .container > *:not(:last-child) {
    margin-bottom: 15px; } }
@media screen and (min-width: 783px) {
  .logged-in.admin-bar .loftocean-content-navigation.position-top.sticky {
    top: 32px; }

  .logged-in.admin-bar .site-header.show-header + .site-content .loftocean-content-navigation.position-top.sticky,
  .logged-in.admin-bar .site-header.sticky + .site-content .loftocean-content-navigation.position-top.sticky {
    top: 132px; }
  .logged-in.admin-bar .site-header.site-header-layout-1.show-header + .site-content .loftocean-content-navigation.position-top.sticky,
  .logged-in.admin-bar .site-header.site-header-layout-1.sticky + .site-content .loftocean-content-navigation.position-top.sticky {
    top: 82px; } }
@media screen and (max-width: 599px) {
  .loftocean-content-navigation.position-side.sticky {
    position: fixed;
    z-index: 9999;
    top: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    width: calc(100% + 2px);
    margin-left: -1px; }
    .site-header.show-header + .site-content .loftocean-content-navigation.position-side.sticky, .site-header.sticky + .site-content .loftocean-content-navigation.position-side.sticky {
      top: 100px;
      transition: top 0.4s ease-out; }
    .site-header.site-header-layout-1.show-header + .site-content .loftocean-content-navigation.position-side.sticky, .site-header.site-header-layout-1.sticky + .site-content .loftocean-content-navigation.position-side.sticky {
      top: 50px; }

  .loftocean-content-navigation.position-side.mobile-show-label .lcn-container {
    display: block;
    white-space: nowrap;
    overflow-x: auto;
    max-width: 100%; }
  .loftocean-content-navigation.position-side.mobile-show-label .lcn-nav-text {
    display: block;
    font-size: 12px;
    font-size: 0.75rem; }
  .loftocean-content-navigation.position-side.mobile-show-label .lcn-nav-text span {
    padding: 0;
    max-width: none;
    height: auto;
    line-height: 24px;
    opacity: 1; }
  .loftocean-content-navigation.position-side.mobile-show-label .lcn-nav-link {
    padding: 20px 30px 15px;
    width: auto;
    max-width: none; }
  .loftocean-content-navigation.position-side.mobile-show-label .lcn-container .ion {
    margin: auto; }
  .loftocean-content-navigation.position-side.mobile-show-label .lcn-container .ion,
  .loftocean-content-navigation.position-side.mobile-show-label .lcn-nav-link,
  .loftocean-content-navigation.position-side.mobile-show-label .lcn-nav-text {
    height: auto;
    line-height: 1; }

  .single.post-template-img-bg .site-content .post-bg-img {
    background-size: cover !important; }
    .single.post-template-img-bg .site-content .post-bg-img:before {
      display: none !important; } }
@media screen and (max-width: 479px) {
  .comments ol.comment-list li.comment .comment-body {
    padding-left: 0; }
  .comments ol.comment-list li.comment .comment-meta {
    position: relative;
    padding: 10px 0 0 80px; }
  .comments ol.comment-list li.comment ol.children {
    margin-left: 15px; }

  .comment-content blockquote:before {
    left: 0; } }
/* ==========================================================================
   7.0 Widgets, Sidebar & Footer
   ========================================================================== */
.widget {
  position: relative;
  margin: 0 auto;
  font-size: 14px;
  font-size: 0.875rem; }
  .widget select {
    display: block;
    width: 100%; }
  .widget ul {
    margin: 0;
    list-style: none; }
    .widget ul li {
      margin-bottom: 12px;
      text-align: left; }
      .widget ul li:last-child {
        margin-bottom: 0; }
    .widget ul ul {
      padding-top: 7.5px;
      margin-left: 20px;
      clear: both; }
      .widget ul ul li {
        margin-bottom: 7.5px;
        border: none; }
  .widget .button {
    text-transform: uppercase; }
  .widget.widget_tag_cloud {
    font-size: 0; }
  .widget .tagcloud a {
    margin: 0 8px 8px 0;
    opacity: 0.75; }
    .no-touch .widget .tagcloud a:hover {
      opacity: 1; }
  .widget.widget_calendar table#wp-calendar {
    margin-bottom: 0; }
    .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;
      text-align: center; }
    .widget.widget_calendar table#wp-calendar th {
      font-size: 14px;
      font-size: 0.875rem; }
    .widget.widget_calendar table#wp-calendar td {
      font-size: 12px;
      font-size: 0.75rem; }
    .widget.widget_calendar table#wp-calendar a {
      opacity: 1; }
    .widget.widget_calendar table#wp-calendar tbody th,
    .widget.widget_calendar table#wp-calendar tbody td {
      border: none; }
    .widget.widget_calendar table#wp-calendar tbody a {
      padding: 0 5px;
      background: var(--primary-color);
      border-radius: 3px;
      color: #fff; }
      .no-touch .widget.widget_calendar table#wp-calendar tbody a:hover {
        text-decoration: none; }
  .widget.widget_text .wp-caption {
    margin: 15px 0; }
  .widget.widget_text p + .wp-caption-text {
    padding-top: 0; }
  .widget.widget_categories ul, .widget.widget_archive ul, .widget.widget_nav_menu ul, .widget.widget_meta ul, .widget.widget_pages ul, .widget.widget_rss ul, .widget.widget_recent_entries ul, .widget.widget_recent_comments ul {
    margin: 0;
    list-style: none; }
  .widget.widget_categories li, .widget.widget_nav_menu li, .widget.widget_pages li, .widget.widget_archive li, .widget.widget_meta li {
    font-size: 12px;
    font-size: 0.75rem;
    letter-spacing: 1px;
    text-transform: uppercase; }
    .site-footer .widget-area .widget.widget_categories li, .site-footer .widget-area .widget.widget_nav_menu li, .site-footer .widget-area .widget.widget_pages li, .site-footer .widget-area .widget.widget_archive li, .site-footer .widget-area .widget.widget_meta li {
      font-size: 14px;
      font-size: 0.875rem;
      letter-spacing: 0;
      text-transform: none; }
    .widget.widget_categories li:not(:last-child), .widget.widget_nav_menu li:not(:last-child), .widget.widget_pages li:not(:last-child), .widget.widget_archive li:not(:last-child), .widget.widget_meta li:not(:last-child) {
      margin-bottom: 8px; }
    .widget.widget_categories li a, .widget.widget_nav_menu li a, .widget.widget_pages li a, .widget.widget_archive li a, .widget.widget_meta li a {
      display: block;
      width: 100%;
      line-height: 24px;
      opacity: 0.75; }
      .sidebar .widget.widget_categories li a, .offcanvas-sidebar .widget.widget_categories li a, .sidebar .widget.widget_nav_menu li a, .offcanvas-sidebar .widget.widget_nav_menu li a, .sidebar .widget.widget_pages li a, .offcanvas-sidebar .widget.widget_pages li a, .sidebar .widget.widget_archive li a, .offcanvas-sidebar .widget.widget_archive li a, .sidebar .widget.widget_meta li a, .offcanvas-sidebar .widget.widget_meta li a {
        padding-top: 9px;
        border-top: 1px dashed rgba(0, 0, 0, 0.1); }
      .dark-color .sidebar .widget.widget_categories li a, .offcanvas-sidebar.dark-color .widget.widget_categories li a, .dark-color .sidebar .widget.widget_nav_menu li a, .offcanvas-sidebar.dark-color .widget.widget_nav_menu li a, .dark-color .sidebar .widget.widget_pages li a, .offcanvas-sidebar.dark-color .widget.widget_pages li a, .dark-color .sidebar .widget.widget_archive li a, .offcanvas-sidebar.dark-color .widget.widget_archive li a, .dark-color .sidebar .widget.widget_meta li a, .offcanvas-sidebar.dark-color .widget.widget_meta li a {
        border-top-color: rgba(255, 255, 255, 0.2); }
      .no-touch .widget.widget_categories li a:hover, .no-touch .widget.widget_nav_menu li a:hover, .no-touch .widget.widget_pages li a:hover, .no-touch .widget.widget_archive li a:hover, .no-touch .widget.widget_meta li a:hover {
        opacity: 1;
        color: currentColor; }
        .no-touch .widget.widget_categories li a:hover .post-count, .no-touch .widget.widget_nav_menu li a:hover .post-count, .no-touch .widget.widget_pages li a:hover .post-count, .no-touch .widget.widget_archive li a:hover .post-count, .no-touch .widget.widget_meta li a:hover .post-count {
          background: #000; }
      .no-touch .dark-color .sidebar .widget.widget_categories li a:hover .post-count, .no-touch .widget-area.dark-color .widget.widget_categories li a:hover .post-count, .no-touch .dark-color .sidebar .widget.widget_nav_menu li a:hover .post-count, .no-touch .widget-area.dark-color .widget.widget_nav_menu li a:hover .post-count, .no-touch .dark-color .sidebar .widget.widget_pages li a:hover .post-count, .no-touch .widget-area.dark-color .widget.widget_pages li a:hover .post-count, .no-touch .dark-color .sidebar .widget.widget_archive li a:hover .post-count, .no-touch .widget-area.dark-color .widget.widget_archive li a:hover .post-count, .no-touch .dark-color .sidebar .widget.widget_meta li a:hover .post-count, .no-touch .widget-area.dark-color .widget.widget_meta li a:hover .post-count {
        background: #fff;
        color: #111; }
    .widget.widget_categories li .post-count, .widget.widget_nav_menu li .post-count, .widget.widget_pages li .post-count, .widget.widget_archive li .post-count, .widget.widget_meta li .post-count {
      float: right;
      display: block;
      line-height: 24px;
      letter-spacing: 0;
      min-width: 24px;
      padding: 0 4px;
      text-align: center;
      background: #777;
      color: #fff;
      border-radius: 50%;
      transition: background 0.3s; }
    .widget.widget_categories li ul, .widget.widget_nav_menu li ul, .widget.widget_pages li ul, .widget.widget_archive li ul, .widget.widget_meta li ul {
      margin-left: 15px; }
      .widget.widget_categories li ul li, .widget.widget_nav_menu li ul li, .widget.widget_pages li ul li, .widget.widget_archive li ul li, .widget.widget_meta li ul li {
        font-size: 10px;
        font-size: 0.625rem; }
        .widget.widget_categories li ul li a, .widget.widget_nav_menu li ul li a, .widget.widget_pages li ul li a, .widget.widget_archive li ul li a, .widget.widget_meta li ul li a {
          line-height: 20px; }
        .widget.widget_categories li ul li .post-count, .widget.widget_nav_menu li ul li .post-count, .widget.widget_pages li ul li .post-count, .widget.widget_archive li ul li .post-count, .widget.widget_meta li ul li .post-count {
          line-height: 20px; }
  .widget.widget_categories > ul > li:first-child > a, .widget.widget_nav_menu > ul > li:first-child > a, .widget.widget_pages > ul > li:first-child > a, .widget.widget_archive > ul > li:first-child > a, .widget.widget_meta > ul > li:first-child > a {
    padding-top: 0;
    border-top: none; }
  .widget.widget_nav_menu .menu > li:first-child > a {
    padding-top: 0;
    border-top: none; }
  .widget.widget_rss ul li a, .widget.widget_recent_entries ul li a, .widget.widget_recent_comments ul li a {
    display: block;
    color: inherit;
    font-weight: 500;
    line-height: 1.5; }
    .no-touch .widget.widget_rss ul li a:hover, .no-touch .widget.widget_recent_entries ul li a:hover, .no-touch .widget.widget_recent_comments ul li a:hover {
      color: var(--primary-color); }
  .widget.widget_rss li, .widget.widget_recent_entries li, .widget.widget_recent_comments li {
    padding-bottom: 15px;
    border-bottom: 1px dashed; }
    .light-color .widget.widget_rss li, .light-color .widget.widget_recent_entries li, .light-color .widget.widget_recent_comments li {
      border-bottom-color: rgba(0, 0, 0, 0.1); }
    .dark-color .sidebar .widget.widget_rss li, .widget-area.dark-color .widget.widget_rss li, .dark-color .sidebar .widget.widget_recent_entries li, .widget-area.dark-color .widget.widget_recent_entries li, .dark-color .sidebar .widget.widget_recent_comments li, .widget-area.dark-color .widget.widget_recent_comments li {
      border-bottom-color: rgba(255, 255, 255, 0.2); }
    .widget.widget_rss li:not(:last-child), .widget.widget_recent_entries li:not(:last-child), .widget.widget_recent_comments li:not(:last-child) {
      margin-bottom: 15px; }
  .widget.widget_recent_comments .recentcomments {
    font-size: 12px;
    font-size: 0.75rem;
    color: #777; }
    .widget.widget_recent_comments .recentcomments > a {
      display: block !important;
      margin-top: 5px;
      color: var(--text-color);
      font-size: 14px;
      font-size: 0.875rem;
      opacity: 1 !important; }
    .widget.widget_recent_comments .recentcomments .comment-author-link {
      font-weight: 500; }
      .widget.widget_recent_comments .recentcomments .comment-author-link a {
        display: inline; }
  .widget.widget_recent_entries .post-date {
    display: block;
    margin-top: 5px;
    font-size: 12px;
    font-size: 0.75rem;
    color: #777; }
  .widget.widget_rss .widget-title .rsswidget:first-child .rss-widget-icon {
    display: none; }
  .widget.widget_rss .widget-title .rsswidget:first-child:after {
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    display: inline-block;
    font: normal normal normal 14px/1 "Font Awesome 5 Free";
    font-size: inherit;
    text-rendering: auto;
    line-height: inherit;
    font-weight: 900;
    content: "\f09e";
    color: #f7943e; }
  .widget.widget_rss ul li a.rsswidget {
    display: block;
    opacity: 1; }
  .widget.widget_rss ul li .rss-date {
    display: block;
    margin-top: 5px;
    font-size: 12px;
    font-size: 0.75rem;
    opacity: 0.5; }
  .widget.widget_rss ul li .rssSummary {
    margin-top: 7.5px;
    font-size: 13px;
    font-size: 0.8125rem; }
    .widget.widget_rss ul li .rssSummary + cite {
      display: block;
      margin-top: 10px;
      font-size: 12px;
      font-size: 0.75rem;
      font-style: normal;
      font-weight: 600;
      opacity: 0.5; }
  .widget.widget_media_gallery .gallery-caption {
    display: none; }
  .widget.eaven-widget_cat .catwidget {
    -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;
    align-items: flex-start;
    margin: 0 -15px; }
  .widget.eaven-widget_cat.style-landscape .cat a {
    padding-top: 66.6666%; }
  .widget.eaven-widget_cat.style-portrait .cat a {
    padding-top: 120%; }
  .widget.eaven-widget_cat.style-stripe .cat a {
    padding-top: 120px; }
  .widget-area .widget.eaven-widget_cat.style-stripe .cat:first-child {
    margin-top: 0; }
  .widget.eaven-widget_cat .cat {
    width: 100%;
    margin: 30px 15px 0;
    border-radius: 4px;
    overflow: hidden; }
    .widget.eaven-widget_cat .cat:first-child {
      margin-top: 0; }
    .widget.eaven-widget_cat .cat a {
      position: relative;
      display: block;
      width: 100%;
      height: 0;
      background: var(--primary-color);
      border-radius: 4px;
      font-size: 12px;
      font-size: 0.75rem;
      font-weight: 500;
      letter-spacing: 1px;
      text-transform: uppercase;
      text-align: center;
      transition: 0s; }
    .widget.eaven-widget_cat .cat .cat-bg {
      z-index: 1;
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-size: cover;
      background-position: center;
      background-repeat: no-repeat;
      border-radius: 4px;
      transition: opacity 0.4s;
      overflow: hidden; }
    .widget.eaven-widget_cat .cat .cat-meta {
      position: absolute;
      top: 50%;
      left: 50%;
      -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
      transform: translate(-50%, -50%);
      z-index: 3;
      max-width: calc(100% - 20px);
      padding: 10px 40px;
      background: #fff;
      border-radius: 99px;
      color: #111;
      will-change: opacity; }
      .button-rectangle .widget.eaven-widget_cat .cat .cat-meta {
        border-radius: 0; }
      .button-rounded .widget.eaven-widget_cat .cat .cat-meta {
        border-radius: 4px; }
      .widget.eaven-widget_cat .cat .cat-meta .category-name {
        position: relative;
        z-index: 3;
        display: block;
        transition: color 0.4s;
        text-overflow: ellipsis;
        overflow: hidden;
        white-space: nowrap; }
    .no-touch .widget.eaven-widget_cat .cat a:hover .cat-meta .category-name {
      color: var(--primary-color); }
  .content-area .widget.eaven-widget_cat:not(:last-child) {
    margin-bottom: 50px; }
  .widget.eaven-widget_about .textwidget {
    text-align: center; }
  .widget.eaven-widget_about .profile-img {
    display: block;
    margin-bottom: 18px; }
  .widget.eaven-widget_about .subheading {
    display: block;
    margin: 0 0 8px;
    font-size: 18px;
    font-size: 1.125rem;
    line-height: 1;
    text-align: center; }
  .widget.eaven-widget_about .signature-img + .button {
    margin-top: 15px; }
  .widget.eaven-widget_ad a,
  .widget.eaven-widget_ad img {
    display: block; }
  .widget.eaven-widget_ad > a > img {
    width: 100%; }
  .widget.eaven-widget_instagram ul {
    margin: -5px;
    list-style: none; }
    .widget.eaven-widget_instagram ul li {
      float: left;
      padding: 5px;
      margin: 0;
      width: 33.333333%;
      border: none; }
      .widget.eaven-widget_instagram ul li a {
        position: relative;
        display: block;
        overflow: hidden; }
        .no-touch .widget.eaven-widget_instagram ul li a:hover .feed-bg {
          -webkit-transform: scale(1.06);
          -ms-transform: scale(1.06);
          transform: scale(1.06); }
        .no-touch .widget.eaven-widget_instagram ul li a:hover:before, .no-touch .widget.eaven-widget_instagram ul li a:hover:after {
          opacity: 1; }
      .widget.eaven-widget_instagram ul li a:before,
      .widget.eaven-widget_instagram ul li a:after {
        position: absolute;
        display: block;
        opacity: 0;
        transition: opacity 0.3s; }
      .widget.eaven-widget_instagram ul li a:before {
        top: 0;
        left: 0;
        z-index: 2;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        content: ""; }
      .widget.eaven-widget_instagram ul li a:after {
        top: 50%;
        left: 50%;
        -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);
        z-index: 3;
        width: 40px;
        height: 40px;
        font-family: "Font Awesome 5 Brands";
        font-weight: 400;
        content: "\f16d";
        font-size: 20px;
        font-size: 1.25rem;
        color: #fff;
        line-height: 40px;
        text-align: center; }
      .widget.eaven-widget_instagram ul li .feed-bg {
        position: relative;
        z-index: 1;
        width: 100%;
        height: 0;
        padding-top: 100%;
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        -webkit-transform: scale(1.02);
        -ms-transform: scale(1.02);
        transform: scale(1.02);
        transition: transform 0.4s ease-out; }
  .widget.eaven-widget_instagram .ins-follow-btn {
    margin: 15px auto 0;
    text-align: center; }
    .widget.eaven-widget_instagram .ins-follow-btn a.button {
      padding: 0 20px;
      line-height: 36px; }
  .widget.loftocean-widget_facebook {
    overflow: hidden; }
    .widget.loftocean-widget_facebook > div {
      text-align: center; }
  .widget.eaven-widget_posts ul li {
    position: relative;
    padding: 0; }
    .widget.eaven-widget_posts ul li:not(:first-child) {
      margin-top: 30px; }
    .no-touch .widget.eaven-widget_posts ul li:hover .thumbnail {
      filter: brightness(85%); }
    .no-touch .widget.eaven-widget_posts ul li:hover .post-title {
      opacity: 0.7; }
  .widget.eaven-widget_posts .thumbnail,
  .widget.eaven-widget_posts .post-content {
    position: relative;
    z-index: 2;
    pointer-events: none; }
  .widget.eaven-widget_posts .post-link {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1; }
  .widget.eaven-widget_posts .thumbnail {
    padding-top: 66.6666%;
    margin-bottom: 10px;
    width: 100%;
    height: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: 0.4s;
    will-change: opacity; }
  .widget.eaven-widget_posts .post-title {
    margin-bottom: 0;
    font-size: 16px;
    font-size: 1rem; }
  .widget.eaven-widget_posts .cat-links {
    margin-bottom: 5px; }
    .widget.eaven-widget_posts .cat-links,
    .widget.eaven-widget_posts .cat-links a {
      font-size: 10px;
      font-size: 0.625rem; }
    .widget.eaven-widget_posts .cat-links a {
      pointer-events: auto; }
  .widget.eaven-widget_posts .meta {
    margin-top: 5px;
    font-size: 12px;
    font-size: 0.75rem;
    opacity: 0.5; }
    .widget.eaven-widget_posts .meta .meta-item {
      position: relative;
      display: inline-block;
      padding-right: 12px; }
      .widget.eaven-widget_posts .meta .meta-item:after {
        position: absolute;
        top: 50%;
        right: 5px;
        -webkit-transform: translateY(-1px);
        -ms-transform: translateY(-1px);
        transform: translateY(-1px);
        display: block;
        width: 2px;
        height: 2px;
        background: currentColor;
        border-radius: 50%;
        content: ""; }
      .widget.eaven-widget_posts .meta .meta-item:last-child {
        padding-right: 0; }
        .widget.eaven-widget_posts .meta .meta-item:last-child:after {
          display: none; }
  .widget.eaven-widget_posts.column-2 ul li {
    float: left;
    margin-top: 20px;
    width: calc(50% - 8px); }
    .widget.eaven-widget_posts.column-2 ul li:nth-child(-n+2) {
      margin-top: 0; }
    .widget.eaven-widget_posts.column-2 ul li:nth-child(2n+1) {
      margin-right: 16px;
      clear: left; }
    .widget.eaven-widget_posts.column-2 ul li .post-title {
      font-size: 14px;
      font-size: 0.875rem; }
    .widget.eaven-widget_posts.column-2 ul li .thumbnail {
      padding-top: 100%;
      width: 100%;
      height: 0; }
  .widget.eaven-widget_posts.with-post-number ul li {
    counter-increment: step-counter; }
    .widget.eaven-widget_posts.with-post-number ul li .post-content {
      padding-left: 42px; }
      .widget.eaven-widget_posts.with-post-number ul li .post-content:before {
        position: absolute;
        z-index: 9;
        top: 6px;
        left: 0;
        display: block;
        width: 28px;
        height: 28px;
        background: #000;
        border-radius: 50%;
        color: #fff;
        text-align: center;
        font-size: 14px;
        font-size: 0.875rem;
        font-weight: 600;
        line-height: 28px;
        content: counter(step-counter);
        pointer-events: none; }
        .dark-color .sidebar .widget.eaven-widget_posts.with-post-number ul li .post-content:before, .widget-area.dark-color .widget.eaven-widget_posts.with-post-number ul li .post-content:before {
          background: #fff;
          color: #000; }
  .widget.eaven-widget_posts.with-post-number.column-2 ul li .post-content {
    padding-left: 30px; }
    .widget.eaven-widget_posts.with-post-number.column-2 ul li .post-content:before {
      top: 0;
      width: 20px;
      height: 20px;
      font-size: 12px;
      font-size: 0.75rem;
      line-height: 18px; }
  .widget.widget_mc4wp_form_widget form input[type="email"] + input[type="submit"] {
    margin-top: 15px; }
  .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"] {
      text-align: left; }
    .widget.widget_mc4wp_form_widget form .fields-container + p {
      margin-top: 15px; }
  .home-widget.signup-form .widget.widget_mc4wp_form_widget form input, .footer-top-signup .widget.widget_mc4wp_form_widget form input, .site-bottom-signup .widget.widget_mc4wp_form_widget form input {
    max-width: 320px; }
  .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; }
  .widget.widget_mc4wp_form_widget p a {
    opacity: 0.7; }
    .no-touch .widget.widget_mc4wp_form_widget p a:hover {
      opacity: 1;
      text-decoration: underline; }
  .home-widget.signup-form .widget.widget_mc4wp_form_widget .widget-title, .footer-top-signup .widget.widget_mc4wp_form_widget .widget-title, .site-bottom-signup .widget.widget_mc4wp_form_widget .widget-title {
    font-size: 30px;
    font-size: 1.875rem;
    text-align: left; }
  .home-widget.signup-form .widget.widget_mc4wp_form_widget > *, .footer-top-signup .widget.widget_mc4wp_form_widget > *, .site-bottom-signup .widget.widget_mc4wp_form_widget > * {
    max-width: 560px; }
  .home-widget.signup-form.left-column .widget.widget_mc4wp_form_widget > *, .footer-top-signup.left-column .widget.widget_mc4wp_form_widget > *, .site-bottom-signup.left-column .widget.widget_mc4wp_form_widget > * {
    margin-left: 0; }
  .home-widget.signup-form.center-column .widget.widget_mc4wp_form_widget, .footer-top-signup.center-column .widget.widget_mc4wp_form_widget, .site-bottom-signup.center-column .widget.widget_mc4wp_form_widget {
    text-align: center; }
    .home-widget.signup-form.center-column .widget.widget_mc4wp_form_widget > *, .footer-top-signup.center-column .widget.widget_mc4wp_form_widget > *, .site-bottom-signup.center-column .widget.widget_mc4wp_form_widget > * {
      margin-right: auto;
      margin-left: auto; }
    .home-widget.signup-form.center-column .widget.widget_mc4wp_form_widget .widget-title, .footer-top-signup.center-column .widget.widget_mc4wp_form_widget .widget-title, .site-bottom-signup.center-column .widget.widget_mc4wp_form_widget .widget-title {
      text-align: center; }
  .widget.widget_mc4wp_form_widget.eaven-widget_signup {
    padding: 50px 30px;
    background-color: #000 !important;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    color: #fff;
    text-align: center; }
    .widget.widget_mc4wp_form_widget.eaven-widget_signup h5.widget-title {
      padding: 0;
      border: none;
      color: inherit; }
    .widget.widget_mc4wp_form_widget.eaven-widget_signup .fields-container:after {
      color: #000; }
  .home-widget.signup-form .widget.widget_mc4wp_form_widget input:not([type="submit"]), .footer-top-signup .widget.widget_mc4wp_form_widget input:not([type="submit"]), .site-bottom-signup .widget.widget_mc4wp_form_widget input:not([type="submit"]), .widget.widget_mc4wp_form_widget.eaven-widget_signup input:not([type="submit"]) {
    height: 42px; }
  .home-widget.signup-form .widget.widget_mc4wp_form_widget input[type="checkbox"],
  .home-widget.signup-form .widget.widget_mc4wp_form_widget input[type="radio"], .footer-top-signup .widget.widget_mc4wp_form_widget input[type="checkbox"],
  .footer-top-signup .widget.widget_mc4wp_form_widget input[type="radio"], .site-bottom-signup .widget.widget_mc4wp_form_widget input[type="checkbox"],
  .site-bottom-signup .widget.widget_mc4wp_form_widget input[type="radio"], .widget.widget_mc4wp_form_widget.eaven-widget_signup input[type="checkbox"],
  .widget.widget_mc4wp_form_widget.eaven-widget_signup input[type="radio"] {
    height: auto; }
  .home-widget.signup-form .widget.widget_mc4wp_form_widget h1,
  .home-widget.signup-form .widget.widget_mc4wp_form_widget h2,
  .home-widget.signup-form .widget.widget_mc4wp_form_widget h3,
  .home-widget.signup-form .widget.widget_mc4wp_form_widget h4,
  .home-widget.signup-form .widget.widget_mc4wp_form_widget h5,
  .home-widget.signup-form .widget.widget_mc4wp_form_widget h6, .footer-top-signup .widget.widget_mc4wp_form_widget h1,
  .footer-top-signup .widget.widget_mc4wp_form_widget h2,
  .footer-top-signup .widget.widget_mc4wp_form_widget h3,
  .footer-top-signup .widget.widget_mc4wp_form_widget h4,
  .footer-top-signup .widget.widget_mc4wp_form_widget h5,
  .footer-top-signup .widget.widget_mc4wp_form_widget h6, .site-bottom-signup .widget.widget_mc4wp_form_widget h1,
  .site-bottom-signup .widget.widget_mc4wp_form_widget h2,
  .site-bottom-signup .widget.widget_mc4wp_form_widget h3,
  .site-bottom-signup .widget.widget_mc4wp_form_widget h4,
  .site-bottom-signup .widget.widget_mc4wp_form_widget h5,
  .site-bottom-signup .widget.widget_mc4wp_form_widget h6, .widget.widget_mc4wp_form_widget.eaven-widget_signup h1,
  .widget.widget_mc4wp_form_widget.eaven-widget_signup h2,
  .widget.widget_mc4wp_form_widget.eaven-widget_signup h3,
  .widget.widget_mc4wp_form_widget.eaven-widget_signup h4,
  .widget.widget_mc4wp_form_widget.eaven-widget_signup h5,
  .widget.widget_mc4wp_form_widget.eaven-widget_signup h6 {
    margin-bottom: 30px;
    line-height: 1.4;
    text-shadow: 0 8px 16px rgba(0, 0, 0, 0.1); }
  .home-widget.signup-form.dark-color .widget.widget_mc4wp_form_widget input:not([type="submit"]), .footer-top-signup.dark-color .widget.widget_mc4wp_form_widget input:not([type="submit"]), .site-bottom-signup.dark-color .widget.widget_mc4wp_form_widget input:not([type="submit"]), .widget.widget_mc4wp_form_widget.eaven-widget_signup input:not([type="submit"]) {
    background: #fff;
    border: none;
    color: #000; }

/* Widgets Area
   ========================================================================== */
.widget-area .widget p,
.widget-area .widget .textwidget ul,
.widget-area .widget .textwidget ol {
  margin-bottom: 15px;
  font-size: 14px;
  font-size: 0.875rem; }
.widget-area .widget.widget_search form.search-form {
  max-width: none; }
  .widget-area .widget.widget_search form.search-form input[type="search"] {
    font-size: 14px;
    font-size: 0.875rem; }
.widget-area .widget.eaven-widget_social ul.social-nav li a {
  margin-right: 10px;
  border-radius: 50%; }
  .no-touch .widget-area .widget.eaven-widget_social ul.social-nav li a:hover {
    opacity: 0.8; }
  .widget-area .widget.eaven-widget_social ul.social-nav li a:before {
    font-size: 12px;
    font-size: 0.75rem;
    -webkit-transform: translateY(0.5px);
    -ms-transform: translateY(0.5px);
    transform: translateY(0.5px); }
.widget-area .widget.widget_mc4wp_form_widget .fields-container {
  position: relative; }
  .widget-area .widget.widget_mc4wp_form_widget .fields-container:after {
    position: absolute;
    right: 0;
    bottom: 0;
    display: block;
    width: 40px;
    height: 46px;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    display: inline-block;
    font: normal normal normal 14px/1 "Font Awesome 5 Free";
    font-size: inherit;
    text-rendering: auto;
    line-height: inherit;
    font-weight: 900;
    font-size: 14px;
    font-size: 0.875rem;
    line-height: 46px;
    content: "\f0e0";
    text-align: center;
    pointer-events: none; }
  .widget-area .widget.widget_mc4wp_form_widget .fields-container input[type="submit"] {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 40px;
    height: 46px;
    padding: 0;
    margin: 0;
    opacity: 0; }
.widget-area .widget.widget_mc4wp_form_widget.eaven-widget_signup .fields-container:after,
.widget-area .widget.widget_mc4wp_form_widget.eaven-widget_signup .fields-container input[type="submit"] {
  height: 42px;
  line-height: 42px; }
.light-color .widget-area .widget.eaven-widget_social ul.social-nav li a, .widget-area.light-color .widget.eaven-widget_social ul.social-nav li a {
  background: #000;
  color: #fff; }
.dark-color .widget-area .widget.eaven-widget_social ul.social-nav li a, .widget-area.dark-color .widget.eaven-widget_social ul.social-nav li a {
  background: #fff;
  color: #000; }

/* Sidebar Widgets Area
   ========================================================================== */
.sidebar .widget:not(:first-child) {
  margin-top: 50px; }

/* Site Footer
   ========================================================================== */
.site-footer {
  position: relative;
  z-index: 9;
  clear: both; }
  .site-footer .widget-area {
    position: relative;
    overflow: hidden;
    padding: 0 0 50px; }
    .site-footer .widget-area.light-color {
      background: #fff; }
    .site-footer .widget-area.dark-color {
      background: #161616; }
    .site-footer .widget-area .widget-area-row {
      width: 100%; }
    .site-footer .widget-area .widget {
      margin-top: 50px; }
    .site-footer .widget-area .widget h5.widget-title {
      font-size: 14px;
      font-size: 0.875rem; }
    .site-footer .widget-area.column-1 .widget-area-column {
      width: 100%;
      text-align: center; }
      .site-footer .widget-area.column-1 .widget-area-column form {
        max-width: 480px; }
      .site-footer .widget-area.column-1 .widget-area-column .eaven-widget_signup {
        max-width: 600px; }
  .site-footer > .widget.eaven-widget_instagram {
    position: relative;
    margin: 0;
    text-align: center; }
    .site-footer > .widget.eaven-widget_instagram .widget-title {
      position: absolute;
      top: 50%;
      left: 50%;
      -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
      transform: translate(-50%, -50%);
      z-index: 99;
      max-width: 60%;
      min-height: 40px;
      padding: 0 20px;
      margin-bottom: 0;
      background: #fff;
      border-radius: 999px;
      color: #111;
      text-align: center;
      font-family: inherit;
      font-size: 11px;
      font-size: 0.6875rem;
      font-weight: 500;
      line-height: 40px;
      letter-spacing: 0.05em;
      text-transform: uppercase;
      white-space: nowrap;
      text-overflow: ellipsis;
      overflow: hidden; }
    .site-footer > .widget.eaven-widget_instagram ul {
      margin: 0; }
    .site-footer > .widget.eaven-widget_instagram ul li {
      padding: 0; }
    .site-footer > .widget.eaven-widget_instagram.column-4 ul li {
      width: 25%; }
    .site-footer > .widget.eaven-widget_instagram.column-5 ul li {
      width: 20%; }
    .site-footer > .widget.eaven-widget_instagram.column-6 ul li {
      width: 16.666%; }
    .site-footer > .widget.eaven-widget_instagram.column-7 ul li {
      width: 14.285%; }
    .site-footer > .widget.eaven-widget_instagram.column-8 ul li {
      width: 12.5%; }
  .site-footer .site-footer-bottom {
    padding: 40px 0;
    background: #1c1c1c;
    color: #fff;
    font-size: 14px;
    font-size: 0.875rem;
    text-align: center; }
    .site-footer .site-footer-bottom a {
      color: inherit; }
    .site-footer .site-footer-bottom ul.social-nav li {
      margin: 10px; }
    .site-footer .site-footer-bottom .widget.widget_text {
      padding: 10px 0; }
    .site-footer .site-footer-bottom .widget.widget_nav_menu > div {
      font-size: 0; }
    .site-footer .site-footer-bottom .widget.widget_nav_menu ul {
      display: inline-block; }
      .site-footer .site-footer-bottom .widget.widget_nav_menu ul li {
        float: left;
        margin: 0; }
        .site-footer .site-footer-bottom .widget.widget_nav_menu ul li a {
          display: block;
          padding: 15px; }

.featured-category-section {
  padding: 50px 0;
  background: #591998; }
  .featured-category-section .section-header {
    margin-bottom: 40px;
    text-align: center; }

.eaven-bannr.before-site-footer {
  padding: 30px 0;
  text-align: center; }

/* Scroll to top button
   ========================================================================== */
.to-top {
  position: fixed;
  z-index: 1000;
  right: 20px;
  bottom: 50px;
  display: none;
  width: 36px;
  height: 36px;
  background: var(--primary-color);
  border-radius: 50%;
  color: #fff;
  text-align: center;
  line-height: 36px;
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  overflow: hidden;
  transition: opacity 0.4s; }
  .gradient-enabled .to-top {
    background-image: linear-gradient(to right, var(--gradient-start), var(--gradient-end)); }
  .to-top .arrow_up:before {
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    display: inline-block;
    font: normal normal normal 14px/1 "Font Awesome 5 Free";
    font-size: inherit;
    text-rendering: auto;
    line-height: inherit;
    font-weight: 900;
    content: "\f0d8";
    font-size: 18px;
    font-size: 1.125rem;
    line-height: inherit; }
  .to-top.show {
    opacity: 1;
    pointer-events: auto;
    visibility: visible; }

/* Page/Site Bottom Signup Form
   ========================================================================== */
.has-site-bottom-signup #page {
  margin-bottom: 70vh; }

.footer-top-signup,
.site-bottom-signup {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat; }
  .footer-top-signup.light-color,
  .site-bottom-signup.light-color {
    background-color: #fff;
    color: #000; }
  .footer-top-signup.dark-color,
  .site-bottom-signup.dark-color {
    background-color: #000;
    color: #fff; }
    .footer-top-signup.dark-color input[type="text"],
    .footer-top-signup.dark-color input[type="email"],
    .site-bottom-signup.dark-color input[type="text"],
    .site-bottom-signup.dark-color input[type="email"] {
      background: #fff;
      color: #000; }

.footer-top-signup {
  padding: 80px 0; }

.site-bottom-signup {
  position: fixed;
  z-index: -1;
  bottom: 0;
  left: 0;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-justify-content: center;
  justify-content: center;
  width: 100vw;
  height: calc(70vh + 1px); }
  .site-layout-boxed .site-bottom-signup {
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    margin-left: 50vw; }

@media screen and (max-height: 400px), screen and (max-width: 600px) {
  .site-bottom-signup {
    position: relative;
    padding: 50px 0;
    height: auto; }

  .has-site-bottom-signup #page {
    margin-bottom: 0; } }
/* Off-canvas Sidebar
   ========================================================================== */
.offcanvas-sidebar {
  position: fixed;
  z-index: 1001;
  top: 0;
  right: 0;
  display: block;
  width: 380px;
  height: 100vh;
  background: none;
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  transition: opacity 0.4s, visibility 0.4s; }
  @media screen and (min-width: 601px) and (max-width: 782px) {
    .logged-in.admin-bar .offcanvas-sidebar {
      top: 46px;
      height: calc(100vh - 46px); } }
  @media screen and (min-width: 783px) {
    .logged-in.admin-bar .offcanvas-sidebar {
      top: 32px;
      height: calc(100vh - 32px); } }
  .offcanvas-sidebar:before {
    position: fixed;
    z-index: 1;
    top: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    content: ""; }
  .offcanvas-sidebar .container {
    z-index: 9;
    -webkit-transform: translateX(100%);
    -ms-transform: translateX(100%);
    transform: translateX(100%);
    padding: 70px 40px 50px;
    margin: 0;
    width: 380px;
    height: 100vh;
    overflow: auto;
    transition: transform 0.4s; }
    @media screen and (min-width: 601px) and (max-width: 782px) {
      .logged-in.admin-bar .offcanvas-sidebar .container {
        height: calc(100vh - 46px); } }
    @media screen and (min-width: 783px) {
      .logged-in.admin-bar .offcanvas-sidebar .container {
        height: calc(100vh - 32px); } }
  .offcanvas-sidebar.from-left {
    right: auto;
    left: 0; }
    .offcanvas-sidebar.from-left .container {
      -webkit-transform: translateX(-100%);
      -ms-transform: translateX(-100%);
      transform: translateX(-100%); }
  .offcanvas-sidebar.light-color .container {
    background-color: #fff;
    color: #000; }
  .offcanvas-sidebar.dark-color .container {
    background-color: #000;
    color: #fff; }
  .offcanvas-sidebar .widget {
    margin-top: 50px; }
  .offcanvas-sidebar .close-button {
    z-index: 9;
    display: block;
    width: 40px;
    height: 40px;
    font-size: 0;
    cursor: pointer;
    transition: 0.4s;
    position: absolute;
    top: 15px;
    right: 30px; }
    .offcanvas-sidebar .close-button:before, .offcanvas-sidebar .close-button:after {
      position: absolute;
      top: 19px;
      left: 8px;
      display: block;
      width: 25px;
      height: 2px;
      background: currentColor;
      content: ""; }
    .offcanvas-sidebar .close-button:before {
      -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
      transform: rotate(45deg); }
    .offcanvas-sidebar .close-button:after {
      -webkit-transform: rotate(135deg);
      -ms-transform: rotate(135deg);
      transform: rotate(135deg); }
    .no-touch .offcanvas-sidebar .close-button:hover {
      -webkit-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
      transform: rotate(180deg); }
    .offcanvas-sidebar .close-button + .widget {
      margin-top: 0; }
  .offcanvas-sidebar.show {
    opacity: 1;
    pointer-events: auto;
    visibility: visible; }
    .offcanvas-sidebar.show .container {
      -webkit-transform: translateX(0);
      -ms-transform: translateX(0);
      transform: translateX(0); }

@media screen and (min-width: 480px) {
  .home-widget.signup-form .widget.widget_mc4wp_form_widget form .fields-container input[type="email"],
  .footer-top-signup .widget.widget_mc4wp_form_widget form .fields-container input[type="email"],
  .site-bottom-signup .widget.widget_mc4wp_form_widget form .fields-container input[type="email"] {
    float: left;
    width: calc(70% - 10px);
    max-width: none; }
  .home-widget.signup-form .widget.widget_mc4wp_form_widget form .fields-container input[type="submit"],
  .footer-top-signup .widget.widget_mc4wp_form_widget form .fields-container input[type="submit"],
  .site-bottom-signup .widget.widget_mc4wp_form_widget form .fields-container input[type="submit"] {
    float: right;
    width: 30%;
    padding: 0;
    margin-top: 0 !important; }

  .widget.eaven-widget_cat.cols-3 .cat {
    width: calc(33.333333% - 30px); }
    .widget.eaven-widget_cat.cols-3 .cat:nth-child(-n+3) {
      margin-top: 0; }
  .widget.eaven-widget_cat.cols-4 .cat {
    width: calc(50% - 30px); }
    .widget.eaven-widget_cat.cols-4 .cat:nth-child(-n+2) {
      margin-top: 0; }
  .widget.eaven-widget_cat.cols-5 .cat:nth-child(-n+3) {
    margin-top: 0;
    width: calc(33.333333% - 30px); }
  .widget.eaven-widget_cat.cols-5 .cat:nth-child(4), .widget.eaven-widget_cat.cols-5 .cat:nth-child(5) {
    width: calc(50% - 30px); } }
@media screen and (min-width: 600px) {
  .site-footer .widget-area .widget-area-row {
    margin: 0 -20px;
    width: calc(100% + 40px); }
  .site-footer .widget-area:not(.column-1) .widget-area-column {
    float: left;
    padding: 0 20px;
    width: 50%; }
  .site-footer .widget-area .widget-area-column:nth-child(2n+1) {
    clear: left; } }
@media screen and (min-width: 768px) {
  #page .widget.eaven-widget_cat.cols-4 .cat {
    width: calc(25% - 30px); }
    #page .widget.eaven-widget_cat.cols-4 .cat:nth-child(-n+4) {
      margin-top: 0; }
  #page .widget.eaven-widget_cat.cols-5 .cat {
    width: calc(20% - 30px); }
    #page .widget.eaven-widget_cat.cols-5 .cat:nth-child(-n+5) {
      margin-top: 0; }

  .eaven-bannr.before-site-footer {
    padding: 50px 0; }

  .to-top {
    display: block; } }
@media screen and (min-width: 1024px) {
  .home-widget.signup-form.left-column .widget.widget_mc4wp_form_widget > *, .home-widget.signup-form.right-column .widget.widget_mc4wp_form_widget > *,
  .footer-top-signup.left-column .widget.widget_mc4wp_form_widget > *,
  .footer-top-signup.right-column .widget.widget_mc4wp_form_widget > *,
  .site-bottom-signup.left-column .widget.widget_mc4wp_form_widget > *,
  .site-bottom-signup.right-column .widget.widget_mc4wp_form_widget > * {
    width: 42%; }
  .home-widget.signup-form.right-column .widget.widget_mc4wp_form_widget > *,
  .footer-top-signup.right-column .widget.widget_mc4wp_form_widget > *,
  .site-bottom-signup.right-column .widget.widget_mc4wp_form_widget > * {
    margin-left: 50%; }

  .site-footer .widget-area .container {
    padding-top: 10px;
    padding-bottom: 10px; }
  .site-footer .widget-area .widget-area-column:nth-child(2n+1) {
    clear: none; }
  .site-footer .widget-area.column-2 .widget-area-column {
    width: 50%; }
  .site-footer .widget-area.column-3 .widget-area-column {
    width: 33.3333%; }
  .site-footer .widget-area.column-4 .widget-area-column {
    width: 25%; }
  .site-footer .site-footer-bottom .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-footer .site-footer-bottom .container > .widget {
      flex: 1;
      flex-grow: 1; }
      .site-footer .site-footer-bottom .container > .widget:first-child:not(:only-child) {
        text-align: left; }
        .site-footer .site-footer-bottom .container > .widget:first-child:not(:only-child) ul.menu {
          margin-left: -15px; }
      .site-footer .site-footer-bottom .container > .widget:last-child:not(:only-child) {
        text-align: right; }
        .site-footer .site-footer-bottom .container > .widget:last-child:not(:only-child) ul.menu {
          margin-right: -15px; }

  .featured-category-section {
    padding: 60px 0; } }
@media screen and (min-width: 1120px) {
  .sidebar .widget:not(:first-child),
  .offcanvas-sidebar .widget {
    margin-top: 60px; }

  .site-footer .widget-area .widget-area-row {
    margin: 0 -25px;
    width: calc(100% + 50px); }

  .site-footer .widget-area:not(.column-1) .widget-area-column {
    padding: 0 25px; }

  .featured-category-section {
    padding: 80px 0; } }
@media screen and (min-width: 1500px) {
  .widget.eaven-widget_cat .cat a {
    font-size: 13px;
    font-size: 0.8125rem; } }
@media screen and (min-width: 767px) and (max-width: 1024px) {
  .widget.eaven-widget_cat.cols-5 .cat a {
    font-size: 11px;
    font-size: 0.6875rem; }
    .widget.eaven-widget_cat.cols-5 .cat a .cat-meta {
      padding: 3px 10px; } }
@media screen and (max-width: 600px) {
  .site-footer > .widget.eaven-widget_instagram.column-4 ul li {
    width: 50%; }
  .site-footer > .widget.eaven-widget_instagram.column-5 ul li {
    width: 50%; }
    .site-footer > .widget.eaven-widget_instagram.column-5 ul li:last-child {
      display: none; }
  .site-footer > .widget.eaven-widget_instagram.column-6 ul li {
    width: 33.3333%; }
  .site-footer > .widget.eaven-widget_instagram.column-7 ul li {
    width: 33.3333%; }
    .site-footer > .widget.eaven-widget_instagram.column-7 ul li:last-child {
      display: none; }
  .site-footer > .widget.eaven-widget_instagram.column-8 ul li {
    width: 25%; } }
@media screen and (max-height: 400px), screen and (max-width: 600px) {
  .site-bottom-signup {
    z-index: 9; } }
@media screen and (max-width: 380px) {
  .offcanvas-sidebar,
  .offcanvas-sidebar .container {
    width: 100%; } }
/* ==========================================================================
   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 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: 46px;
  padding: 5px 15px;
  background: #fff;
  border: 2px solid #f1f2f4;
  border-radius: 0;
  color: #000;
  -webkit-appearance: none !important;
  font-size: 13px;
  font-size: 0.8125rem;
  font-weight: 400;
  line-height: 2;
  outline: 0; }
  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;
    border-color: #e7e8ea; }
  .dark-color input[type="text"],
  .dark-color input[type="email"],
  .dark-color input[type="url"],
  .dark-color input[type="file"],
  .dark-color input[type="password"],
  .dark-color input[type="number"],
  .dark-color input[type="date"],
  .dark-color input[type="search"],
  .dark-color input[type="tel"],
  .dark-color textarea {
    background: #222;
    border-color: #262727;
    color: #fff; }
    .dark-color input[type="text"]:focus,
    .dark-color input[type="email"]:focus,
    .dark-color input[type="url"]:focus,
    .dark-color input[type="file"]:focus,
    .dark-color input[type="password"]:focus,
    .dark-color input[type="number"]:focus,
    .dark-color input[type="date"]:focus,
    .dark-color input[type="search"]:focus,
    .dark-color input[type="tel"]:focus,
    .dark-color textarea:focus {
      border-color: #131416; }

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

input[type="submit"] {
  position: relative;
  z-index: 9;
  display: inline-block;
  padding: 0 30px;
  background: var(--primary-color);
  border: none;
  border-radius: 999px;
  color: #fff;
  font-size: 11px;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 42px;
  text-transform: uppercase;
  text-align: center;
  transition: 0.4s; }
  .gradient-enabled input[type="submit"] {
    background-image: linear-gradient(to right, var(--gradient-start), var(--gradient-end)); }
  .no-touch input[type="submit"]:hover {
    -webkit-transform: translateY(2px);
    -ms-transform: translateY(2px);
    transform: translateY(2px); }
  input[type="submit"]:focus {
    -webkit-transform: translateY(2px);
    -ms-transform: translateY(2px);
    transform: translateY(2px); }
  .button-rectangle input[type="submit"] {
    border-radius: 0; }
  .button-rounded input[type="submit"] {
    border-radius: 4px; }

select {
  height: 32px;
  padding: 2px;
  background-color: #fff;
  border: 1px solid #f3f5f6;
  box-shadow: none;
  color: #000;
  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; }
  select:hover, select:focus {
    border-color: #f0f2f3; }

form.post-password-form p {
  text-align: center; }
form.post-password-form label {
  position: relative;
  z-index: 9;
  display: inline-block;
  padding-left: 10px;
  margin-bottom: 5px;
  width: 100%;
  height: 42px;
  font-size: 13px;
  font-size: 0.8125rem;
  line-height: 42px;
  text-align: left;
  vertical-align: bottom; }
  form.post-password-form label input[type="password"] {
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    padding: 0 0 0 80px;
    height: 42px;
    line-height: 42px; }
form.post-password-form input[type="submit"] {
  width: 100%; }

form.search-form {
  position: relative;
  max-width: 420px; }
  form.search-form input[type="search"] {
    padding-right: 40px; }
  form.search-form button.search-submit {
    position: absolute;
    top: 0;
    right: 0;
    width: 40px;
    height: 46px;
    background: none;
    border: none;
    box-shadow: none;
    text-align: center;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    display: inline-block;
    font: normal normal normal 14px/1 "Font Awesome 5 Free";
    font-size: inherit;
    text-rendering: auto;
    line-height: inherit;
    font-weight: 900;
    font-size: 14px;
    font-size: 0.875rem;
    line-height: 35px; }
    form.search-form button.search-submit:before {
      line-height: 48px;
      content: "\f002"; }

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

@media screen and (min-width: 600px) {
  form.post-password-form label {
    margin-bottom: 0;
    width: 280px; }
  form.post-password-form input[type="submit"] {
    width: 130px; } }
/* ==========================================================================
   9.0 Media
   ========================================================================== */
.site .avatar {
  border-radius: 50%; }

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

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

embed, iframe, object, video {
  max-width: 100%;
  margin-bottom: 30px;
  border: none;
  vertical-align: middle; }
  p > embed, p >
  iframe, p >
  object, p >
  video {
    margin-bottom: 0; }
  .featured-media-section embed,
  .featured-media-section iframe,
  .featured-media-section object,
  .featured-media-section video {
    margin-bottom: 0; }

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

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

#page .wp-playlist {
  padding-bottom: 0;
  margin: 0 0 30px; }
  #page .wp-playlist .wp-playlist-tracks {
    margin-top: 0; }
  .no-touch #page .wp-playlist a:hover {
    box-shadow: 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; }

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

.wp-caption-text, .wp-block-image figcaption, .wp-block-gallery figcaption, .wp-block-video figcaption, .wp-block-audio figcaption, .wp-block-embed figcaption {
  display: block;
  padding: 10px 0;
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.5;
  text-align: center;
  color: #555d66; }
  .dark-color .wp-caption-text,
  .dark-color .wp-block-image figcaption,
  .dark-color .wp-block-gallery figcaption,
  .dark-color .wp-block-video figcaption,
  .dark-color .wp-block-audio figcaption,
  .dark-color .wp-block-embed figcaption {
    color: #aaa; }

.post-content-gallery.gallery-slider .wp-caption-text {
  display: none; }

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

/**
 * 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 {
      padding: 0 2px 4px;
      font-size: 0; }
      .gallery .gallery-item .gallery-icon a {
        transition: 0s; }
        .no-touch .gallery .gallery-item .gallery-icon a:hover img {
          opacity: 0.8; }
      .gallery .gallery-item .gallery-icon img {
        margin: 0 auto; }
        .no-touch .gallery .gallery-item .gallery-icon img {
          transition: opacity 0.25s;
          will-change: opacity; }
  .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.666%; }
  .gallery.gallery-columns-7 .gallery-item {
    max-width: 14.285%; }
  .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; }

/**
 * Fullscreen Video
 */
.loftocean-media-wrapper.loftocean-media-fullscreen-playing {
  position: fixed;
  z-index: 999;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000; }
  .loftocean-media-wrapper.loftocean-media-fullscreen-playing .close-button {
    position: absolute;
    z-index: 9;
    top: 20px;
    right: 10px;
    width: 36px;
    height: 36px;
    background: #fff;
    border-radius: 50%;
    color: #000;
    font-size: 0;
    line-height: 36px;
    text-align: center;
    cursor: pointer; }
    .loftocean-media-wrapper.loftocean-media-fullscreen-playing .close-button:before {
      display: block;
      -moz-osx-font-smoothing: grayscale;
      -webkit-font-smoothing: antialiased;
      display: inline-block;
      font: normal normal normal 14px/1 "Font Awesome 5 Free";
      font-size: inherit;
      text-rendering: auto;
      line-height: inherit;
      font-weight: 900;
      font-size: 14px;
      line-height: 36px;
      content: "\f00d"; }
  .loftocean-media-wrapper.loftocean-media-fullscreen-playing embed,
  .loftocean-media-wrapper.loftocean-media-fullscreen-playing iframe,
  .loftocean-media-wrapper.loftocean-media-fullscreen-playing object,
  .loftocean-media-wrapper.loftocean-media-fullscreen-playing video {
    max-height: 100%;
    margin-bottom: 0; }
  .loftocean-media-wrapper.loftocean-media-fullscreen-playing.show {
    display: block; }
  @media screen and (max-width: 782px) and (min-width: 601px) {
    .logged-in.admin-bar .loftocean-media-wrapper.loftocean-media-fullscreen-playing {
      top: 46px;
      height: calc(100% - 46px); } }
  @media screen and (min-width: 783px) {
    .logged-in.admin-bar .loftocean-media-wrapper.loftocean-media-fullscreen-playing {
      top: 32px;
      height: calc(100% - 32px); } }
  .loftocean-media-wrapper.loftocean-media-fullscreen-playing .loftocean-video-wrap {
    display: flex;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-justify-content: center;
    justify-content: center;
    height: 100%; }
    .loftocean-media-wrapper.loftocean-media-fullscreen-playing .loftocean-video-wrap video {
      margin: auto; }

/**
 * Wide Image - only works when there is no sidebar
 */
.site-content:not([class*="with-sidebar"]) .wide-image {
  position: relative;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  margin-bottom: 30px;
  width: 100vw;
  text-align: center; }
  .site-content:not([class*="with-sidebar"]) .wide-image > * {
    margin-bottom: 0; }
  .site-content:not([class*="with-sidebar"]) .wide-image > .wp-caption {
    margin-right: auto;
    margin-left: auto; }

/**
 * Show justified gallery after initialization
 */
.post-content-gallery.gallery-justified,
.portfolio-gallery.gallery-justified {
  opacity: 0; }
  .post-content-gallery.gallery-justified.justified-gallery-initialized,
  .portfolio-gallery.gallery-justified.justified-gallery-initialized {
    opacity: 1;
    transition: opacity 0.4s; }
  .post-content-gallery.gallery-justified img,
  .portfolio-gallery.gallery-justified img {
    cursor: zoom-in; }

.post-entry .gallery-justified {
  margin-bottom: 30px; }
  .post-entry .gallery-justified:last-child {
    margin-bottom: 0; }

/**
 * Gallery Slider - Slick Slider
 */
.gallery-slider {
  position: relative; }
  .post-entry .gallery-slider {
    margin-bottom: 30px; }
    .post-entry .gallery-slider:last-child {
      margin-bottom: 0; }
  .gallery-slider.featured-media-section {
    margin-bottom: 0; }
    .gallery-slider.featured-media-section .gallery-item div {
      padding-top: 66.666666%; }
    .gallery-slider.featured-media-section:not(.fullscreen) .wp-caption-text {
      display: none; }
  .gallery-slider .gallery-item {
    max-width: none; }
    .gallery-slider .gallery-item div {
      position: relative;
      width: 100%;
      height: 0;
      background-size: cover;
      background-position: center;
      background-repeat: no-repeat; }
      .gallery-slider .gallery-item div img {
        display: none; }
  .gallery-slider.ratio-16-9 .gallery-item div {
    padding-top: 56.25%; }
  .gallery-slider.ratio-4-3 .gallery-item div {
    padding-top: 75%; }
  .gallery-slider.ratio-3-2 .gallery-item div {
    padding-top: 66.666666%; }
  .gallery-slider.ratio-1-1 .gallery-item div {
    padding-top: 100%; }
  .gallery-slider.ratio-4-5 .gallery-item div {
    padding-top: 125%; }
  .gallery-slider .slick-arrow {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    z-index: 9;
    opacity: 1; }
    .gallery-slider .slick-arrow.slick-prev {
      left: 10px; }
    .gallery-slider .slick-arrow.slick-next {
      right: 10px; }
  .gallery-slider .loftocean-gallery-zoom {
    position: absolute;
    z-index: 9;
    right: 10px;
    bottom: 10px;
    width: 40px;
    height: 40px;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    color: #fff;
    line-height: 40px;
    text-align: center;
    cursor: pointer;
    opacity: 0;
    transition: background ease 0.4s; }
    .no-touch .gallery-slider .loftocean-gallery-zoom:hover {
      background: #000;
      opacity: 1; }
    .gallery-slider .loftocean-gallery-zoom:after {
      -moz-osx-font-smoothing: grayscale;
      -webkit-font-smoothing: antialiased;
      display: inline-block;
      font: normal normal normal 14px/1 "Font Awesome 5 Free";
      font-size: inherit;
      text-rendering: auto;
      line-height: inherit;
      font-weight: 900;
      font-size: 16px;
      font-size: 1rem;
      content: "\f00e"; }
  .touch .gallery-slider .loftocean-gallery-zoom, .gallery-slider:hover .loftocean-gallery-zoom {
    opacity: 1; }
  .gallery-slider.fullscreen {
    position: fixed !important;
    z-index: 1000;
    top: 0;
    left: 0;
    width: 100vw;
    max-width: 100vw !important;
    height: 100vh;
    padding: 0;
    margin: 0;
    background: rgba(0, 0, 0, 0.95); }
    .gallery-slider.fullscreen .image-gallery,
    .gallery-slider.fullscreen .image-gallery .slick-list,
    .gallery-slider.fullscreen .image-gallery .slick-track {
      height: 100%; }
      .gallery-slider.fullscreen .image-gallery .slick-slide,
      .gallery-slider.fullscreen .image-gallery .slick-list .slick-slide,
      .gallery-slider.fullscreen .image-gallery .slick-track .slick-slide {
        height: auto; }
    .gallery-slider.fullscreen .gallery-item div {
      -webkit-align-items: center;
      -ms-flex-align: center;
      align-items: center;
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
      -webkit-flex-direction: column;
      -ms-flex-direction: column;
      flex-direction: column;
      -webkit-justify-content: center;
      justify-content: center;
      height: 100vh;
      padding: 0 !important;
      background: none !important; }
      .gallery-slider.fullscreen .gallery-item div img {
        display: block;
        width: auto;
        max-height: calc(100vh - 100px); }
    .gallery-slider.fullscreen .wp-caption-text {
      position: relative;
      z-index: 9;
      display: block;
      width: 100%;
      max-height: 50px;
      overflow: auto;
      padding: 10px 30px;
      color: #fff;
      text-align: center;
      opacity: 1; }
    .gallery-slider.fullscreen .slider-arrows {
      position: absolute;
      top: 50%;
      -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
      transform: translateY(-50%);
      left: 0;
      width: 100%;
      height: 40px; }
      .gallery-slider.fullscreen .slider-arrows .slick-arrow.slick-prev {
        left: 30px; }
      .gallery-slider.fullscreen .slider-arrows .slick-arrow.slick-next {
        right: 30px; }
    .gallery-slider.fullscreen .loftocean-gallery-zoom {
      opacity: 1; }
    .gallery-slider.fullscreen .zoom {
      top: 60px;
      right: 30px;
      background: #333;
      transition: 0s; }
      .gallery-slider.fullscreen .zoom:after {
        content: "\f00d"; }
    .gallery-slider.fullscreen .loftocean-popup-gallery-close {
      position: absolute;
      z-index: 9;
      top: 60px;
      right: 30px;
      display: block;
      width: 40px;
      height: 40px;
      background: #333;
      border-radius: 50%;
      color: #fff;
      line-height: 40px;
      text-align: center;
      cursor: pointer; }
      .gallery-slider.fullscreen .loftocean-popup-gallery-close:after {
        -moz-osx-font-smoothing: grayscale;
        -webkit-font-smoothing: antialiased;
        display: inline-block;
        font: normal normal normal 14px/1 "Font Awesome 5 Free";
        font-size: inherit;
        text-rendering: auto;
        line-height: inherit;
        font-weight: 900;
        font-size: 16px;
        font-size: 1rem;
        content: "\f00d"; }

/**
 * When a fullscreen slider gallery is opened
 */
.gallery-zoom {
  height: 100vh;
  overflow: hidden; }
  .gallery-zoom .site-content {
    z-index: 99999; }

/**
 * Video Block
 */
.video-block {
  position: relative;
  width: 100%;
  height: 400px; }
  .video-block:not(:last-child) {
    margin-bottom: 30px; }
  .video-block .video-block-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    will-change: transform; }
  .video-block .video-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    z-index: 3;
    width: 100px;
    height: 100px;
    background: #fff;
    border-radius: 50%;
    color: var(--primary-color);
    text-align: center;
    cursor: pointer;
    transition: color 0.4s; }
    .video-block .video-play-btn:before {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      z-index: 1;
      background: var(--primary-color);
      border-radius: 50%;
      content: "";
      opacity: 0;
      transition: opacity 0.4s; }
      .gradient-enabled .video-block .video-play-btn:before {
        background-image: linear-gradient(to right, var(--gradient-start), var(--gradient-end)); }
    .video-block .video-play-btn:after {
      position: relative;
      z-index: 3;
      transform: translate(4px, 1px);
      padding: 0 1px;
      -moz-osx-font-smoothing: grayscale;
      -webkit-font-smoothing: antialiased;
      display: inline-block;
      font: normal normal normal 14px/1 "Font Awesome 5 Free";
      font-size: inherit;
      text-rendering: auto;
      line-height: inherit;
      font-weight: 900;
      font-size: 24px;
      font-size: 1.5rem;
      line-height: 100px;
      content: "\f04b";
      will-change: transform; }
    .no-touch .video-block .video-play-btn:hover {
      color: #fff; }
      .no-touch .video-block .video-play-btn:hover:before {
        opacity: 1; }

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

  .gallery-slider.fullscreen .slider-arrows {
    display: none; } }
/* ==========================================================================
   10.0 - Shortcode & Blocks
   ========================================================================== */
/* Gutenberg Elements
   ========================================================================== */
.post-entry > *[class*="wp-block-"] {
  margin-bottom: 30px; }

.post-entry > p + *[class*="wp-block-"]:not(.alignleft):not(.alignright) {
  margin-top: 30px; }

.alignleft[class*="wp-block-"] {
  margin-right: 30px; }

.alignright[class*="wp-block-"] {
  margin-left: 30px; }

.aligncenter[class*="wp-block-"] {
  clear: both; }

.post-entry > .wp-block-spacer {
  margin-bottom: 0; }

.wp-block-media-text .wp-block-media-text__content {
  width: 100%; }

.wp-block-media-text .wp-block-media-text__content > *:first-child {
  margin-top: 30px; }

.wp-embed-responsive .wp-block-embed.is-type-video[class*="wp-embed-aspect-"] .wp-block-embed__wrapper:before {
  display: none; }

.no-touch .wp-block-gallery a:hover, .no-touch
.wp-block-button a:hover {
  text-decoration: none; }

.wp-block-image .alignleft {
  margin-right: 30px; }

.wp-block-image .alignright {
  margin-left: 30px; }

.wp-block-image.alignnone {
  display: inline-block;
  margin-top: 0 !important;
  width: auto; }

.wp-block-image img {
  margin: 0; }

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

.wp-block-image figcaption {
  margin-top: 0;
  margin-bottom: 0; }

/**
 * Gutenberg Heading Font Size
 */
.post-entry .has-small-font-size {
  font-size: .8125em; }
.post-entry .has-normal-font-size,
.post-entry .has-regular-font-size {
  font-size: 1em; }
.post-entry .has-medium-font-size {
  font-size: 1.25em; }
.post-entry .has-large-font-size {
  font-size: 2.25em; }
.post-entry .has-huge-font-size,
.post-entry .has-larger-font-size {
  font-size: 2.625em; }

/**
 * Gutenberg Button
 */
.light-color .wp-block-button .wp-block-button__link:not(.has-background) {
  background: #111; }
.light-color .wp-block-button .wp-block-button__link:not(.has-text-color) {
  color: #fff; }
.dark-color .wp-block-button .wp-block-button__link:not(.has-background) {
  background: #fff; }
.dark-color .wp-block-button .wp-block-button__link:not(.has-text-color) {
  color: #111; }
.wp-block-button.is-style-outline {
  background: none;
  color: inherit; }
  .wp-block-button.is-style-outline .wp-block-button__link:not(.has-background) {
    background: none; }
  .wp-block-button.is-style-outline .wp-block-button__link:not(.has-text-color) {
    color: inherit; }
.no-touch .wp-block-button .wp-block-button__link:hover {
  opacity: 0.7; }

.wp-block-button__link {
  padding: 10px 30px;
  border-radius: 4px;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 500; }

.wp-block-file * + .wp-block-file__button {
  margin-right: 10px; }
.wp-block-file .wp-block-file__button {
  padding: 10px 30px;
  border-radius: 4px;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 500; }
  .no-touch .wp-block-file .wp-block-file__button:hover {
    box-shadow: none;
    opacity: 0.7; }

/**
 * Gutenberg Cover
 */
.wp-block-cover,
.wp-block-cover-image {
  padding: 0;
  color: #fff; }
  .wp-block-cover .wp-block-cover-image-text,
  .wp-block-cover .wp-block-cover-text,
  .wp-block-cover .wp-block-cover__inner-container,
  .wp-block-cover-image .wp-block-cover-image-text,
  .wp-block-cover-image .wp-block-cover-text,
  .wp-block-cover-image .wp-block-cover__inner-container {
    font-weight: 500;
    line-height: 1.25; }
    .wp-block-cover .wp-block-cover-image-text a,
    .wp-block-cover .wp-block-cover-text a,
    .wp-block-cover .wp-block-cover__inner-container a,
    .wp-block-cover-image .wp-block-cover-image-text a,
    .wp-block-cover-image .wp-block-cover-text a,
    .wp-block-cover-image .wp-block-cover__inner-container a {
      color: #fff;
      text-decoration: underline; }
      .wp-block-cover .wp-block-cover-image-text a.wp-block-button__link,
      .wp-block-cover .wp-block-cover-text a.wp-block-button__link,
      .wp-block-cover .wp-block-cover__inner-container a.wp-block-button__link,
      .wp-block-cover-image .wp-block-cover-image-text a.wp-block-button__link,
      .wp-block-cover-image .wp-block-cover-text a.wp-block-button__link,
      .wp-block-cover-image .wp-block-cover__inner-container a.wp-block-button__link {
        text-decoration: none; }
    .no-touch .wp-block-cover .wp-block-cover-image-text a:hover, .no-touch
    .wp-block-cover .wp-block-cover-text a:hover, .no-touch
    .wp-block-cover .wp-block-cover__inner-container a:hover, .no-touch
    .wp-block-cover-image .wp-block-cover-image-text a:hover, .no-touch
    .wp-block-cover-image .wp-block-cover-text a:hover, .no-touch
    .wp-block-cover-image .wp-block-cover__inner-container a:hover {
      text-decoration: none; }
  .wp-block-cover .wp-block-cover-image-text,
  .wp-block-cover .wp-block-cover-text,
  .wp-block-cover h2,
  .wp-block-cover .wp-block-cover__inner-container,
  .wp-block-cover-image .wp-block-cover-image-text,
  .wp-block-cover-image .wp-block-cover-text,
  .wp-block-cover-image h2,
  .wp-block-cover-image .wp-block-cover__inner-container {
    width: 100%;
    max-width: 860px;
    padding: 30px; }
  .wp-block-cover.alignleft, .wp-block-cover.alignright,
  .wp-block-cover-image.alignleft,
  .wp-block-cover-image.alignright {
    max-width: 100%; }
  .wp-block-cover .wp-block-cover__inner-container > *:last-child,
  .wp-block-cover-image .wp-block-cover__inner-container > *:last-child {
    margin-bottom: 0; }

.wp-block-column .wp-block-cover {
  height: auto; }

/**
 * Gutenberg Group
 */
.wp-block-group.has-background {
  padding: 30px; }
.wp-block-group.alignfull {
  padding: 30px 0; }
  .wp-block-group.alignfull .wp-block-group__inner-container {
    max-width: 1140px;
    padding: 0 50px; }

.wp-block-group__inner-container > * {
  margin-bottom: 30px; }

.wp-block-group__inner-container > *:last-child {
  margin-bottom: 0; }

/**
 * Gutenberg Verse
 */
.wp-block-verse {
  padding: 30px;
  background: #f2f3f6;
  border: 1px solid #eee;
  color: #000; }

pre.wp-block-verse {
  white-space: pre; }

/**
 * Gutenberg Quote & Pullquote
 */
.wp-block-quote.is-large, .wp-block-quote.is-style-large {
  padding: 30px !important; }
  .wp-block-quote.is-large p, .wp-block-quote.is-style-large p {
    font-size: 21px;
    font-size: 1.3125rem;
    font-style: normal; }
  .wp-block-quote.is-large cite,
  .wp-block-quote.is-large footer, .wp-block-quote.is-style-large cite,
  .wp-block-quote.is-style-large footer {
    text-align: left; }
  .wp-block-quote.is-large:not(.is-style-plain).has-text-align-left cite,
  .wp-block-quote.is-large:not(.is-style-plain).has-text-align-left footer, .wp-block-quote.is-style-large:not(.is-style-plain).has-text-align-left cite,
  .wp-block-quote.is-style-large:not(.is-style-plain).has-text-align-left footer {
    text-align: left; }
  .wp-block-quote.is-large:not(.is-style-plain).has-text-align-center cite,
  .wp-block-quote.is-large:not(.is-style-plain).has-text-align-center footer, .wp-block-quote.is-style-large:not(.is-style-plain).has-text-align-center cite,
  .wp-block-quote.is-style-large:not(.is-style-plain).has-text-align-center footer {
    text-align: center; }
  .wp-block-quote.is-large:not(.is-style-plain).has-text-align-right cite,
  .wp-block-quote.is-large:not(.is-style-plain).has-text-align-right footer, .wp-block-quote.is-style-large:not(.is-style-plain).has-text-align-right cite,
  .wp-block-quote.is-style-large:not(.is-style-plain).has-text-align-right footer {
    text-align: right; }
.wp-block-quote.has-text-align-center cite,
.wp-block-quote.has-text-align-center footer {
  text-align: center; }

.wp-block-pullquote {
  padding: 20px 0;
  border: none;
  border-top: 4px solid;
  border-bottom: 4px solid; }
  .wp-block-pullquote blockquote {
    margin-bottom: 0;
    color: inherit; }
    .wp-block-pullquote blockquote:before, .wp-block-pullquote blockquote:after {
      display: none; }
  .wp-block-pullquote.is-style-solid-color blockquote {
    max-width: 100%;
    margin-left: 0; }
    .wp-block-pullquote.is-style-solid-color blockquote p {
      font-size: 28px;
      font-size: 1.75rem; }
    .wp-block-pullquote.is-style-solid-color blockquote p:not(:last-child) {
      margin-bottom: 30px; }
  .wp-block-pullquote p {
    font-size: 24px;
    font-size: 1.5rem; }
  .wp-block-pullquote.alignleft, .wp-block-pullquote.alignright {
    margin-top: 10px; }
    .wp-block-pullquote.alignleft p, .wp-block-pullquote.alignright p {
      font-size: 18px;
      font-size: 1.125rem; }

/**
 * Gutenberg Separator
 */
.wp-block-separator {
  margin: 1.65em auto;
  background: transparent;
  border: none;
  border-bottom: 2px solid #8f98a1;
  clear: both; }
  .wp-block-separator:not(.is-style-wide):not(.is-style-dots) {
    max-width: 100px; }
  .wp-block-separator.has-background {
    border-bottom: none; }
  .wp-block-separator.is-style-wide, .wp-block-separator.has-background:not(.is-style-wide):not(.is-style-dots) {
    height: 2px; }

/**
 * Gutenberg Video & Embed
 */
.wp-block-video video {
  margin-bottom: 0; }

.wp-block-embed .fluid-width-video-wrapper {
  margin-bottom: 0; }

/**
 * Gutenberg Table
 */
.wp-block-table table {
  margin-bottom: 0; }
.wp-block-table tbody th,
.wp-block-table tbody td {
  vertical-align: middle; }
.wp-block-table.is-style-stripes {
  border: none;
  border-bottom: 1px solid #f2f3f6; }
  .wp-block-table.is-style-stripes table {
    border: none; }
  .wp-block-table.is-style-stripes tr:nth-child(odd) {
    background: #f2f3f6; }

/**
 * Gutenberg Widgets
 */
#page .wp-block-latest-posts,
#page .wp-block-categories,
#page .wp-block-archives,
#page .wp-block-latest-comments {
  margin-right: 0;
  margin-left: 0;
  list-style: none; }
  #page .wp-block-latest-posts a,
  #page .wp-block-categories a,
  #page .wp-block-archives a,
  #page .wp-block-latest-comments a {
    padding-bottom: 0;
    border-bottom: none;
    color: inherit;
    font-weight: 500; }
  #page .wp-block-latest-posts li,
  #page .wp-block-categories li,
  #page .wp-block-archives li,
  #page .wp-block-latest-comments li {
    padding-right: 0;
    padding-left: 0; }
    #page .wp-block-latest-posts li:before,
    #page .wp-block-categories li:before,
    #page .wp-block-archives li:before,
    #page .wp-block-latest-comments li:before {
      display: none; }

.wp-block-latest-posts {
  line-height: 1.3; }
  .wp-block-latest-posts .wp-block-latest-posts__featured-image {
    margin-bottom: 15px; }
  .wp-block-latest-posts .wp-block-latest-posts__featured-image.alignleft {
    margin-right: 1em; }
  .wp-block-latest-posts .wp-block-latest-posts__featured-image.alignright {
    margin-left: 1em; }
  .wp-block-latest-posts a {
    font-size: 18px;
    font-size: 1.125rem; }
  .wp-block-latest-posts .wp-block-latest-posts__post-author,
  .wp-block-latest-posts time {
    display: inline-block;
    margin-top: 8px; }
  .wp-block-latest-posts .wp-block-latest-posts__post-author + .wp-block-latest-posts__post-date {
    margin-left: 10px; }
  .wp-block-latest-posts li {
    margin-bottom: 20px; }
    .wp-block-latest-posts li > a {
      display: block; }
  .wp-block-latest-posts.is-grid {
    margin-bottom: 0; }
    .wp-block-latest-posts.is-grid li {
      margin-bottom: 30px; }

.wp-block-latest-posts__post-excerpt {
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.6; }
  .wp-block-latest-posts__post-excerpt a {
    font-size: 14px;
    font-size: 0.875rem; }

#page .wp-block-latest-posts a, #page
.wp-block-latest-comments a {
  color: #111; }
  .dark-color #page .wp-block-latest-posts a, .dark-color #page
  .wp-block-latest-comments a {
    color: #fff; }
  .no-touch #page .wp-block-latest-posts a:hover, .no-touch #page
  .wp-block-latest-comments a:hover {
    color: var(--primary-color);
    text-decoration: none; }

.wp-block-latest-comments__comment {
  line-height: 1.35; }

.wp-block-tag-cloud a {
  margin: 0 8px 8px 0;
  color: inherit !important;
  text-decoration: none;
  opacity: 0.75; }
  .no-touch .wp-block-tag-cloud a:hover, .wp-block-tag-cloud a:focus {
    color: #fff !important;
    text-decoration: none;
    opacity: 1; }

.wp-block-calendar table {
  font-size: 14px;
  font-size: 0.875rem; }
  .wp-block-calendar table th {
    text-align: center; }
  .wp-block-calendar table tfoot a {
    color: var(--primary-color); }

.wp-block-search {
  position: relative;
  margin-bottom: 30px;
  margin-right: 0;
  margin-left: 0;
  max-width: 360px; }
  .wp-block-search input[type="search"] {
    max-width: 360px; }
  .wp-block-search .wp-block-search__button {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 40px;
    height: 46px;
    background: none;
    border: none;
    box-shadow: none;
    text-align: center;
    font-size: 0;
    line-height: 35px; }
    .wp-block-search .wp-block-search__button:before {
      -moz-osx-font-smoothing: grayscale;
      -webkit-font-smoothing: antialiased;
      display: inline-block;
      font: normal normal normal 14px/1 "Font Awesome 5 Free";
      font-size: inherit;
      text-rendering: auto;
      line-height: inherit;
      font-weight: 900;
      font-size: 14px;
      font-size: 0.875rem;
      line-height: 48px;
      content: "\f002"; }

.wp-block-rss {
  margin: 0 0 30px;
  list-style: none; }
  .wp-block-rss .wp-block-rss__item {
    padding-bottom: 15px;
    border-bottom: 1px dashed rgba(0, 0, 0, 0.1); }
    .dark-color .wp-block-rss .wp-block-rss__item {
      border-bottom-color: rgba(255, 255, 255, 0.2); }
    .wp-block-rss .wp-block-rss__item:not(:last-child) {
      margin-bottom: 15px; }
  .wp-block-rss .wp-block-rss__item-title {
    font-weight: 500;
    line-height: 1.5; }
    .wp-block-rss .wp-block-rss__item-title a:not(:hover) {
      color: inherit; }
    .no-touch .wp-block-rss .wp-block-rss__item-title a:hover {
      text-decoration: none; }
  .wp-block-rss .wp-block-rss__item-publish-date,
  .wp-block-rss .wp-block-rss__item-author {
    display: inline-block;
    font-size: 12px;
    font-size: 0.75rem; }
  .wp-block-rss .wp-block-rss__item-publish-date + .wp-block-rss__item-author:before {
    margin-right: 8px;
    content: ","; }
  .wp-block-rss .wp-block-rss__item-excerpt {
    font-size: 13px;
    font-size: 0.8125rem; }

.wp-social-link {
  margin-left: 0; }
  .wp-social-link a, .wp-social-link a:active, .wp-social-link a:hover, .wp-social-link a:visited, .wp-social-link svg {
    color: #fff; }
    .wp-block-social-links.is-style-logos-only .wp-social-link a,
    .wp-block-social-links.is-style-logos-only .wp-social-link a:active,
    .wp-block-social-links.is-style-logos-only .wp-social-link a:hover,
    .wp-block-social-links.is-style-logos-only .wp-social-link a:visited,
    .wp-block-social-links.is-style-logos-only .wp-social-link svg {
      color: inherit; }

.wp-block-social-links.is-style-logos-only .wp-social-link a {
  padding: 0; }

/**
 * Gutenberg Gallery
 */
.wp-block-gallery .blocks-gallery-image figcaption,
.wp-block-gallery .blocks-gallery-item figcaption {
  line-height: 1.3; }
.wp-block-gallery:not(.alignleft):not(.alignright) {
  clear: both; }
.post-entry .wp-block-gallery {
  margin: 0 0 30px; }
  .post-entry .wp-block-gallery.alignright {
    margin-left: 30px; }
  .post-entry .wp-block-gallery.alignleft {
    margin-right: 30px; }
  .post-entry .wp-block-gallery > li,
  .post-entry .wp-block-gallery ul > li {
    padding: 0; }
    .post-entry .wp-block-gallery > li:before,
    .post-entry .wp-block-gallery ul > li:before {
      display: none; }
.post-entry > .wp-block-gallery {
  margin-bottom: 14px; }

/**
 * Gutenberg Alignment Full
 */
.post-entry > .alignfull {
  position: relative;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 100vw;
  max-width: 100vw;
  margin: 0 0 30px;
  clear: both; }
  .post-entry > .alignfull.gallery-slider, .post-entry > .alignfull.gallery-justified {
    width: 100vw;
    max-width: 100vw; }
  .post-entry > .alignfull.wp-block-cover.has-parallax {
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
    margin-left: -50vw; }

/* Dropcaps Shortcode
   ========================================================================== */
p.has-drop-cap:not(:focus):first-letter {
  margin: 11px 10px 0 0;
  font-size: 3.6em;
  font-weight: 400; }

.has-drop-cap:not(:focus):after {
  display: none; }

.post-entry .dropcap {
  text-align: left; }
  .post-entry .dropcap:first-letter {
    float: left;
    padding: 0;
    margin: 0.1em 0.15em 0 0;
    box-sizing: border-box;
    font-size: 475%;
    font-weight: 600;
    letter-spacing: 0;
    line-height: 1; }
  .post-entry .dropcap.light:first-letter {
    float: none;
    margin: 0;
    color: rgba(0, 0, 0, 0.1);
    line-height: 0.8; }
    .dark-color .post-entry .dropcap.light:first-letter {
      color: rgba(255, 255, 255, 0.1); }
  .post-entry .dropcap.square:first-letter {
    display: block;
    padding: 0.2em;
    margin-top: 0.2em;
    margin-right: 0.3em;
    border: 3px solid #edd;
    border-radius: 0;
    font-size: 275%;
    text-align: center; }
  .post-entry .dropcap.dark-bg:first-letter {
    background: #000;
    border-color: #000;
    color: #fff; }
  .post-entry .dropcap.light-bg:first-letter {
    background: #eee;
    border-color: #eee;
    color: #000; }

.post-entry .dropcap-colorful .dropcap-letter {
  float: left;
  display: block;
  margin: 0.05em 0.15em -10px 0;
  color: var(--primary-color);
  font-size: 500%;
  font-weight: 600;
  line-height: 1; }
  .gradient-enabled .post-entry .dropcap-colorful .dropcap-letter {
    color: var(--primary-color);
    background-image: -webkit-linear-gradient(left, var(--gradient-start), var(--gradient-end));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent; }

.post-entry .dropcap.dropcap-colorful:first-letter,
.post-entry .has-drop-cap.dropcap-colorful:first-letter {
  float: none;
  margin: 0;
  font: inherit;
  line-height: inherit;
  text-transform: none; }

.post-entry p.dropcap:first-letter {
  margin: 0.015em 0.15em 0 0;
  font-size: 550%; }
.post-entry p.dropcap.square:first-letter {
  font-size: 280%; }

/* Highlight Shortcode
   ========================================================================== */
.post-entry .highlight {
  transition: 0.4s; }
  .post-entry .highlight:not(.bottomline) {
    background: var(--primary-color-semi); }
    .no-touch .post-entry .highlight:not(.bottomline):hover {
      background: var(--primary-color);
      color: #fff; }

.post-entry .highlight.bottomline,
.post-entry .highlight-bottomline {
  border-bottom: 2px solid currentColor; }

/* Tweet it Shortcode
   ========================================================================== */
.post-entry a.tweet-it {
  position: relative;
  border-bottom: none;
  font-weight: 600;
  opacity: 0.8; }
  .post-entry a.tweet-it:before, .post-entry a.tweet-it:after {
    position: absolute;
    display: block;
    opacity: 0;
    transition: 0.4s; }
  .post-entry a.tweet-it:before {
    top: -32px;
    left: 0;
    width: 30px;
    height: 30px;
    background: var(--text-color);
    border-radius: 2px;
    color: var(--bg-color);
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    display: inline-block;
    font: normal normal normal 14px/1 "Font Awesome 5 Free";
    font-size: inherit;
    text-rendering: auto;
    line-height: inherit;
    font-weight: 900;
    font-family: "Font Awesome 5 Brands";
    font-weight: 400;
    content: "\f099";
    font-size: 16px;
    line-height: 30px;
    text-align: center; }
  .post-entry a.tweet-it:after {
    top: -2px;
    left: 11px;
    width: 0;
    height: 0;
    border-top: 4px solid var(--text-color);
    border-right: 4px solid transparent;
    border-left: 4px solid transparent;
    content: ""; }
  .no-touch .post-entry a.tweet-it:hover {
    opacity: 1; }
    .no-touch .post-entry a.tweet-it:hover:before, .no-touch .post-entry a.tweet-it:hover:after {
      opacity: 1; }

.post-entry .tweet-it-paragraph {
  max-width: 600px;
  padding: 50px 30px 30px;
  text-align: center; }
  .post-entry .tweet-it-paragraph a.tweet-it {
    display: block;
    font-weight: inherit;
    color: inherit;
    opacity: 1; }
    .post-entry .tweet-it-paragraph a.tweet-it:before, .post-entry .tweet-it-paragraph a.tweet-it:after {
      top: -36px;
      left: 50%;
      -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
      transform: translateX(-50%);
      letter-spacing: 0;
      opacity: 1; }
    .post-entry .tweet-it-paragraph a.tweet-it:after {
      top: -6px; }
    .no-touch .post-entry .tweet-it-paragraph a.tweet-it:hover {
      text-decoration: underline; }

/* Button Shortcode
   ========================================================================== */
.button.lo-button {
  margin-bottom: 30px;
  vertical-align: text-bottom; }
  .button.lo-button.small {
    padding: 0 14px;
    font-size: 10px;
    font-size: 0.625rem;
    line-height: 28px; }
  .button.lo-button.large {
    padding: 0 40px;
    font-size: 12px;
    font-size: 0.75rem;
    line-height: 50px; }
  .button.lo-button.extra-large {
    padding: 0 48px;
    font-size: 16px;
    font-size: 1rem;
    line-height: 56px; }
  .button.lo-button.custom-bg {
    background: currentColor !important; }
  .button.lo-button span {
    color: #fff; }

/* Divider Shortcode
   ========================================================================== */
hr.lo-divider {
  background: none !important; }

/* Tabs Shortcode
   ========================================================================== */
.lo-tabs {
  margin-bottom: 30px; }
  .lo-tabs .lo-tabs-titles {
    background: #232323;
    color: #fff; }
    .lo-tabs .lo-tabs-titles a {
      display: inline-block;
      width: auto;
      padding: 10px 20px;
      margin: 0;
      background: none;
      border: none;
      border-radius: 0;
      color: inherit;
      font-size: 12px;
      font-size: 0.75rem;
      font-weight: 600;
      letter-spacing: 0.05em;
      text-decoration: none;
      text-transform: uppercase; }
      .no-touch .lo-tabs .lo-tabs-titles a:hover {
        background: rgba(255, 255, 255, 0.075);
        text-decoration: none; }
      .lo-tabs .lo-tabs-titles a.active {
        background: rgba(255, 255, 255, 0.15); }
  .lo-tabs .lo-tabs-content {
    padding: 30px;
    background: #fff;
    box-shadow: 0 5px 32px -5px rgba(35, 55, 100, 0.1);
    border-radius: 0 0 5px 5px;
    color: #000; }
    .lo-tabs .lo-tabs-content .lo-tab-content > *:last-child {
      margin-bottom: 0; }

/* Accordions Shortcode
   ========================================================================== */
.lo-accordions {
  margin-top: 50px;
  margin-bottom: 50px;
  border-top: 1px solid rgba(0, 0, 0, 0.05); }
  .lo-accordions:first-child {
    margin-top: 0; }
  .lo-accordions .accordion-item {
    margin-bottom: 0;
    padding: 15px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05); }
    .lo-accordions .accordion-item .accordion-title {
      position: relative;
      padding: 0 40px 0 0;
      color: var(--primary-color);
      font-size: 18px;
      font-size: 1.125rem;
      line-height: 2;
      font-weight: 600;
      outline: 0; }
      .lo-accordions .accordion-item .accordion-title .accordion-icon {
        -moz-osx-font-smoothing: grayscale;
        -webkit-font-smoothing: antialiased;
        display: inline-block;
        font: normal normal normal 14px/1 "Font Awesome 5 Free";
        font-size: inherit;
        text-rendering: auto;
        line-height: inherit;
        font-weight: 900;
        position: absolute;
        top: 5px;
        right: 0;
        width: 40px;
        font-size: 11px;
        line-height: 28px;
        text-align: center; }
        .lo-accordions .accordion-item .accordion-title .accordion-icon:before {
          content: "\f067"; }
      .lo-accordions .accordion-item .accordion-title.ui-state-active .accordion-icon:before {
        content: "\f068"; }
    .lo-accordions .accordion-item .accordion-content {
      padding: 15px 0 0;
      border: none; }
      .lo-accordions .accordion-item .accordion-content > *:last-child {
        margin-bottom: 0; }
  .dark-color .lo-accordions {
    border-top-color: rgba(255, 255, 255, 0.1); }
    .dark-color .lo-accordions .accordion-item {
      border-bottom-color: rgba(255, 255, 255, 0.1); }

/* Authors List Shortcode
   ========================================================================== */
.authors-list {
  margin-bottom: 50px; }
  .authors-list:last-child {
    margin-bottom: 0; }
  .authors-list .authors-list-item {
    width: 100%;
    margin: 50px 0 0;
    text-align: center; }
    .authors-list .authors-list-item:first-child {
      margin-top: 0; }
    .authors-list .authors-list-item .author-info p {
      margin-top: 5px;
      margin-bottom: 10px;
      font-size: 14px;
      font-size: 0.875rem; }
    .authors-list .authors-list-item h5 {
      margin: 15px auto 0;
      font-size: 18px;
      font-size: 1.125rem;
      font-weight: 600;
      font-style: normal;
      text-transform: none;
      letter-spacing: 0; }
  .authors-list a.author-link {
    border-bottom: none;
    color: inherit;
    text-decoration: none; }
    .no-touch .authors-list a.author-link:hover {
      box-shadow: none;
      text-decoration: none;
      opacity: 0.5; }
  .authors-list span {
    font-size: 12px;
    font-size: 0.75rem;
    font-weight: 800;
    opacity: 0.5; }
  .authors-list .author-social ul.social-nav li {
    padding: 0; }
    .authors-list .author-social ul.social-nav li a {
      margin: 2px;
      border-radius: 50%;
      background: #222; }
      .no-touch .authors-list .author-social ul.social-nav li a:hover {
        background: currentColor; }
        .no-touch .authors-list .author-social ul.social-nav li a:hover:before {
          color: #fff; }
      .dark-color .authors-list .author-social ul.social-nav li a {
        background: #fff; }
        .dark-color .authors-list .author-social ul.social-nav li a:before {
          color: #222; }
      .authors-list .author-social ul.social-nav li a:before {
        color: #fff;
        font-size: 14px;
        font-size: 0.875rem; }

/* Row & Column
   ========================================================================== */
.lo-column {
  margin-bottom: 30px; }
  .lo-column > *:last-child {
    margin-bottom: 0; }

/* MailChimp for WordPress
   ========================================================================== */
.post-entry .mc4wp-form .mc4wp-form-fields {
  margin: 0 0 30px; }
.post-entry .mc4wp-form .fields-container input[type="email"] {
  float: left;
  width: calc(70% - 10px);
  height: 42px;
  max-width: none; }
.post-entry .mc4wp-form .fields-container input[type="submit"] {
  float: right;
  width: 30%;
  padding: 0;
  margin-top: 0 !important; }

@media screen and (min-width: 600px) {
  .wp-block-column:last-child > *:last-child,
  .wp-block-column:nth-last-child(-n+2) > *:last-child {
    margin-bottom: 0; }

  .lo-row {
    margin: 0 -20px; }

  .lo-column {
    float: left;
    padding: 0 20px; }
    .lo-column.one-half {
      width: 50%; }
    .lo-column.one-third {
      width: 33.333333%; }
    .lo-column.one-fourth {
      width: 25%; }
    .lo-column.one-fifth {
      width: 20%; }
    .lo-column.two-thirds {
      width: 66.666666%; }
    .lo-column.three-fourths {
      width: 75%; }
    .lo-column.two-fifths {
      width: 40%; }
    .lo-column.three-fifths {
      width: 60%; }
    .lo-column.four-fifths {
      width: 80%; }

  .wp-block-cover.has-left-content .wp-block-cover-image-text,
  .wp-block-cover.has-left-content .wp-block-cover-text,
  .wp-block-cover.has-left-content h2,
  .wp-block-cover-image.has-left-content .wp-block-cover-image-text,
  .wp-block-cover-image.has-left-content .wp-block-cover-text,
  .wp-block-cover-image.has-left-content h2 {
    margin: 0; }
  .wp-block-cover:not(.alignleft):not(.alignright) .wp-block-cover-image-text,
  .wp-block-cover:not(.alignleft):not(.alignright) .wp-block-cover-text,
  .wp-block-cover:not(.alignleft):not(.alignright) h2,
  .wp-block-cover-image:not(.alignleft):not(.alignright) .wp-block-cover-image-text,
  .wp-block-cover-image:not(.alignleft):not(.alignright) .wp-block-cover-text,
  .wp-block-cover-image:not(.alignleft):not(.alignright) h2 {
    font-size: 40px;
    font-size: 2.5rem; }

  .post-entry > *.alignwide {
    position: relative;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    width: calc(100% + 100px);
    max-width: 100vw; }
    .post-entry > *.alignwide.wp-block-cover.has-parallax {
      left: 0;
      -webkit-transform: none;
      -ms-transform: none;
      transform: none;
      margin-left: -50px; }

  .authors-list.layout-list .authors-list-item {
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-align-items: flex-start;
    -ms-flex-align: flex-start;
    align-items: flex-start;
    text-align: left; }
    .authors-list.layout-list .authors-list-item .author-photo {
      margin: 0; }
    .authors-list.layout-list .authors-list-item .author-info {
      width: calc(100% - 105px);
      padding-left: 30px;
      margin: 0; }
      .authors-list.layout-list .authors-list-item .author-info h5 {
        margin-top: 0; }
      .authors-list.layout-list .authors-list-item .author-info .author-social ul li:first-child a {
        margin-left: 0; }

  .lo-tabs.vertical-tab {
    position: relative;
    padding-left: 140px; }
    .lo-tabs.vertical-tab .lo-tabs-titles {
      position: absolute;
      left: 0;
      display: block;
      width: 140px;
      height: 100%;
      overflow-y: auto; }
      .lo-tabs.vertical-tab .lo-tabs-titles a {
        width: 100%; }
    .lo-tabs.vertical-tab .lo-tabs-content {
      border-radius: 0 5px 5px 0; }

  .wp-block-gallery.columns-8 .blocks-gallery-image figcaption,
  .wp-block-gallery.columns-8 .blocks-gallery-item figcaption {
    display: none; }

  .wp-block-cover.alignleft, .wp-block-cover.alignright,
  .wp-block-cover-image.alignleft,
  .wp-block-cover-image.alignright {
    max-width: calc(50% - 15px); } }
@media screen and (min-width: 600px) and (max-width: 1119px) {
  .wp-block-gallery.columns-6 .blocks-gallery-image figcaption,
  .wp-block-gallery.columns-6 .blocks-gallery-item figcaption,
  .wp-block-gallery.columns-7 .blocks-gallery-image figcaption,
  .wp-block-gallery.columns-7 .blocks-gallery-item figcaption {
    display: none; } }
@media screen and (min-width: 768px) {
  .authors-list.layout-grid:not(.cols-1) {
    margin-left: -35px; }
    .authors-list.layout-grid:not(.cols-1) .authors-list-item {
      float: left;
      margin-left: 35px; }
  .authors-list.layout-grid.cols-2 .authors-list-item {
    width: calc(50% - 35px); }
    .authors-list.layout-grid.cols-2 .authors-list-item:nth-child(2n+1) {
      clear: both; }
    .authors-list.layout-grid.cols-2 .authors-list-item:nth-child(-n+2) {
      margin-top: 0; }
  .authors-list.layout-grid.cols-3 .authors-list-item {
    width: calc(33.333333% - 35px); }
    .authors-list.layout-grid.cols-3 .authors-list-item:nth-child(3n+1) {
      clear: both; }
    .authors-list.layout-grid.cols-3 .authors-list-item:nth-child(-n+3) {
      margin-top: 0; }
  .authors-list.layout-grid.cols-4 .authors-list-item {
    width: calc(25% - 40px); }
    .authors-list.layout-grid.cols-4 .authors-list-item:nth-child(4n+1) {
      clear: both; }
    .authors-list.layout-grid.cols-4 .authors-list-item:nth-child(-n+4) {
      margin-top: 0; }
  .authors-list.layout-grid .author-info {
    padding: 0 20px; }

  .wp-block-quote.is-large,
  .wp-block-quote.is-style-large {
    padding: 40px !important; }
    .wp-block-quote.is-large p,
    .wp-block-quote.is-style-large p {
      font-size: 26px;
      font-size: 1.625rem; } }
@media (min-width: 782px) {
  .wp-block-column > *:last-child {
    margin-bottom: 0; } }
@media screen and (min-width: 1120px) {
  .site-content:not([class*="with-sidebar"]) .post-entry > *.alignwide {
    max-width: 1140px; }

  .site-content[class*="with-sidebar"] .post-entry > *.alignfull,
  .site-content[class*="with-sidebar"] .post-entry > *.alignwide {
    left: 0;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
    width: auto; }
    .site-content[class*="with-sidebar"] .post-entry > *.alignfull.wp-block-cover.has-parallax,
    .site-content[class*="with-sidebar"] .post-entry > *.alignwide.wp-block-cover.has-parallax {
      margin-left: 0; }

  .wp-block-cover .wp-block-cover-image-text,
  .wp-block-cover .wp-block-cover-text,
  .wp-block-cover h2,
  .wp-block-cover-image .wp-block-cover-image-text,
  .wp-block-cover-image .wp-block-cover-text,
  .wp-block-cover-image h2 {
    padding: 50px; }

  .wp-block-group.has-background {
    padding: 50px 30px; }
  .wp-block-group.alignfull {
    padding: 80px 0; }

  .site-content:not([class*="with-sidebar"]) .post-entry > .wp-block-columns.alignfull {
    padding: 30px;
    margin-bottom: 30px;
    background: #fff; }
    .dark-color .site-content:not([class*="with-sidebar"]) .post-entry > .wp-block-columns.alignfull {
      background: #282828; } }
@media screen and (min-width: 1500px) {
  .site-content:not([class*="with-sidebar"]) .post-entry > *.alignwide {
    max-width: 1380px; } }
@media screen and (max-width: 599px) {
  .wp-block-columns.alignfull {
    padding: 0 20px; }

  .wp-block-pullquote.alignleft, .wp-block-pullquote.alignright {
    width: calc(50% - 30px); } }
@media screen and (max-width: 400px) {
  .wp-block-pullquote.alignleft, .wp-block-pullquote.alignright {
    width: 100%;
    max-width: 100%;
    margin: 0 0 30px; } }

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