/*
This is main CSS file for the theme.
*/
/**
 * Table of Contents:
 *
 * 1.0 - Normalize 
 * 2.0 - General Elements
 * 3.0 - Typography
 * 4.0 - Header & Menu
 * 5.0 - Front Page
 * 6.0 - Blog & Posts
 * 7.0 - Single Post & Pages
 * 8.0 - Widgets
 * 9.0 - Forms
 * 10.0 - Media
 * 11.0 - Blocks & Shortcodes
 */
:root {
  --heading-font: Playfair Display, serif;
  --body-font: Nunito Sans, sans-serif;
  --primary-color: #4fd675;
  --primary-color-semi: rgba(79, 214, 117, 0.3);
  --gradient-start: #4fd675;
  --gradient-end: #4fd6c8;
  --content-color: #232323;
  /* Colors for Light Scheme */
  --light-bg-color: #fff;
  --light-text-color: #000;
  --light-content-color: #232323;
  /* Colors for Dark Scheme */
  --dark-bg-color: #111;
  --dark-text-color: #fff;
  --dark-content-color: #eee; }
  :root .light-color,
  :root .home-widget.light-color {
    --bg-color: var(--light-bg-color);
    --text-color: var(--light-text-color);
    --content-color: var(--light-content-color);
    --post-content-bg-color: var(--light-post-content-bg); }
  :root .dark-color,
  :root .home-widget.dark-color {
    --bg-color: var(--dark-bg-color);
    --text-color: var(--dark-text-color);
    --content-color: var(--dark-content-color);
    --post-content-bg-color: var(--dark-post-content-bg); }

@-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 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 prevArrowMove {
  0%, 100% {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0); }
  51% {
    -webkit-transform: translateX(-30px);
    -ms-transform: translateX(-30px);
    transform: translateX(-30px);
    opacity: 1; }
  52% {
    -webkit-transform: translateX(30px);
    -ms-transform: translateX(30px);
    transform: translateX(30px);
    opacity: 0; }
  53% {
    opacity: 0; }
  54% {
    opacity: 1; } }
@keyframes prevArrowMove {
  0%, 100% {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0); }
  51% {
    -webkit-transform: translateX(-30px);
    -ms-transform: translateX(-30px);
    transform: translateX(-30px);
    opacity: 1; }
  52% {
    -webkit-transform: translateX(30px);
    -ms-transform: translateX(30px);
    transform: translateX(30px);
    opacity: 0; }
  53% {
    opacity: 0; }
  54% {
    opacity: 1; } }
@-webkit-keyframes nextArrowMove {
  0%, 100% {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0); }
  51% {
    -webkit-transform: translateX(30px);
    -ms-transform: translateX(30px);
    transform: translateX(30px);
    opacity: 1; }
  52% {
    -webkit-transform: translateX(-30px);
    -ms-transform: translateX(-30px);
    transform: translateX(-30px);
    opacity: 0; }
  53% {
    opacity: 0; }
  54% {
    opacity: 1; } }
@keyframes nextArrowMove {
  0%, 100% {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0); }
  51% {
    -webkit-transform: translateX(30px);
    -ms-transform: translateX(30px);
    transform: translateX(30px);
    opacity: 1; }
  52% {
    -webkit-transform: translateX(-30px);
    -ms-transform: translateX(-30px);
    transform: translateX(-30px);
    opacity: 0; }
  53% {
    opacity: 0; }
  54% {
    opacity: 1; } }
@-webkit-keyframes beat {
  0% {
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    transform: scale(0);
    opacity: 0; }
  80% {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    opacity: 0.7; }
  100% {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    opacity: 0; } }
@keyframes beat {
  0% {
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    transform: scale(0);
    opacity: 0; }
  80% {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    opacity: 0.7; }
  100% {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    opacity: 0; } }
@-webkit-keyframes heartBeat {
  0%,
	100% {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1); }
  50% {
    -webkit-transform: scale(0.85);
    -ms-transform: scale(0.85);
    transform: scale(0.85); } }
@keyframes heartBeat {
  0%,
	100% {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1); }
  50% {
    -webkit-transform: scale(0.85);
    -ms-transform: scale(0.85);
    transform: scale(0.85); } }
/* ==========================================================================
   1.0 Normalize
   
   - normalize.css v8.0.0 | MIT License | github.com/necolas/normalize.css
   ========================================================================== */
html {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%; }

body {
  margin: 0; }

h1 {
  font-size: 2em;
  margin: 0.67em 0; }

hr {
  box-sizing: content-box;
  height: 0;
  overflow: visible; }

pre {
  font-family: monospace, monospace;
  font-size: 1em; }

a {
  background-color: transparent; }

abbr[title] {
  border-bottom: none;
  text-decoration: underline;
  text-decoration: underline dotted; }

b,
strong {
  font-weight: bolder; }

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

small {
  font-size: 80%; }

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

sub {
  bottom: -0.25em; }

sup {
  top: -0.5em; }

img {
  border-style: none; }

button,
input,
optgroup,
select,
textarea {
  font-family: inherit;
  font-size: 100%;
  line-height: 1.15;
  margin: 0; }

button,
input {
  overflow: visible; }

button,
select {
  text-transform: none; }

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

button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
  border-style: none;
  padding: 0; }

button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
  outline: 1px dotted ButtonText; }

fieldset {
  padding: 0.35em 0.75em 0.625em; }

legend {
  box-sizing: border-box;
  color: inherit;
  display: table;
  max-width: 100%;
  padding: 0;
  white-space: normal; }

progress {
  vertical-align: baseline; }

textarea {
  overflow: auto; }

[type="checkbox"],
[type="radio"] {
  box-sizing: border-box;
  padding: 0; }

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

[type="search"] {
  -webkit-appearance: textfield;
  outline-offset: -2px; }

[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none; }

::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit; }

details {
  display: block; }

summary {
  display: list-item; }

template {
  display: none; }

[hidden] {
  display: none; }

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

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

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

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

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

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

dl {
  margin: 0 0 34px; }

dt {
  font-weight: 700; }

dd {
  margin: 0 0 34px 34px; }

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

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

hr {
  display: block;
  height: 1px;
  padding: 0;
  margin: 50px auto;
  border: 0;
  border-top: 1px solid #ccc; }
  .dark-color hr {
    background-color: rgba(255, 255, 255, 0.1); }
  hr.lo-divider {
    background: none !important; }

.hide {
  display: none !important; }

/**
 * Clearing
 */
.container:after,
#page ul:after,
.main:after,
.home-widget .section-content:after,
.posts-wrapper:after,
.entry-content:after,
.single #primary > .post:after,
.post-navigation .nav-links:after,
.image-gallery:after,
.widget_mc4wp_form_widget .fields-container:after,
.widget-area-row:after,
.entry-content .gallery:after,
.comments-area .navigation .nav-links:after,
.widget.widget_archive ul li:after,
.widget.widget_categories ul li:after,
.lo-row:after,
.gallery[class*="gallery-columns-"]:after,
.fields-container:after {
  position: relative;
  display: block;
  content: "";
  clear: both; }

/**
 * Accessibility
 */
.says,
.screen-reader-text {
  position: absolute !important;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  border: 0;
  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 {
    z-index: 100000;
    top: 7px;
    left: 6px;
    clip: auto;
    width: auto;
    height: auto; }

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

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

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

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

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

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

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

/* 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.2em;
  text-transform: uppercase;
  line-height: 42px;
  text-align: center;
  transition: 0.4s;
  cursor: pointer; }
  .no-touch .site-content .button:hover, .no-touch .widget-area .button:hover {
    background: #000;
    color: #fff; }
.button.lo-button.small {
  padding: 0 14px;
  font-size: 10px;
  font-size: 0.625rem;
  line-height: 28px; }
.button.lo-button.large {
  padding: 0 25px;
  font-size: 16px;
  font-size: 1rem;
  line-height: 45px; }
.button.lo-button.extra-large {
  padding: 0 35px;
  font-size: 24px;
  font-size: 1.5rem;
  line-height: 60px; }
.no-touch .button.lo-button:hover {
  background: #000; }
  .no-touch .button.lo-button:hover span {
    color: #fff !important; }

/* Post Meta
   ========================================================================== */
.meta {
  font-size: 13px;
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 1px; }
  .meta .meta-item {
    display: inline-block; }
    .meta .meta-item:not(:last-child) {
      margin-right: 15px; }
  .featured-slider .meta {
    width: 100%; }

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

/* Tagcloud
   ========================================================================== */
.tagcloud a {
  position: relative;
  display: inline-block;
  overflow: hidden;
  padding: 0 12px;
  margin: 0 3px 3px 0;
  background: none;
  border: 2px solid var(--primary-color);
  border-radius: 99px;
  color: inherit;
  font-size: 13px !important;
  font-size: 0.8125rem !important;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 30px;
  text-transform: none; }
  .tagcloud a:before {
    content: "#"; }
  .tagcloud a:after {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: var(--primary-color);
    border-radius: 99px;
    content: "";
    opacity: 0;
    transition: opacity 0.4s;
    pointer-events: none; }
  .no-touch .tagcloud a:hover, .tagcloud a:focus {
    color: var(--primary-color); }
    .no-touch .tagcloud a:hover:after, .tagcloud a:focus:after {
      opacity: 0.1; }

.author-social ul.social-nav {
  font-size: 0; }
  .author-social ul.social-nav li:not(:last-child) {
    margin-right: 10px; }
  .author-social ul.social-nav li a:before {
    font-size: 15px;
    font-size: 0.9375rem; }

/* Slick Slider Dots & Arrow Buttons
   ========================================================================== */
.close-button {
  z-index: 9;
  display: block;
  width: 40px;
  height: 40px;
  font-size: 0;
  cursor: pointer;
  transition: 0.4s; }
  .close-button:before, .close-button:after {
    position: absolute;
    top: 19px;
    left: 8px;
    display: block;
    width: 25px;
    height: 2px;
    background: currentColor;
    content: "";
    transition: transform 0.25s; }
  .close-button:before {
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg); }
  .close-button:after {
    -webkit-transform: rotate(135deg);
    -ms-transform: rotate(135deg);
    transform: rotate(135deg); }

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

.slick-arrow {
  width: 40px;
  height: 40px;
  line-height: 40px;
  border-radius: 50%;
  cursor: pointer; }
  .slick-arrow:after {
    position: relative;
    z-index: 3;
    line-height: inherit !important;
    font-family: 'ElegantIcons';
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    font-size: 40px;
    font-size: 2.5rem; }
  .slick-arrow.slick-prev:after {
    content: "\34"; }
  .slick-arrow.slick-next:after {
    content: "\35"; }

/* Site Content - General Page Structures
   ========================================================================== */
.container {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1200px;
  padding: 0 20px; }

.site-content {
  position: relative;
  z-index: 9; }
  .site-content > .container {
    margin-top: 50px; }

.primary {
  padding-bottom: 80px; }
  .primary > *:last-child {
    margin-bottom: 0; }

.sidebar {
  max-width: 600px;
  padding-bottom: 80px; }

.light-color,
.dark-color {
  background-color: var(--bg-color);
  color: var(--text-color); }

.tinysalt-loader {
  position: relative;
  text-align: center;
  pointer-events: none; }
  .tinysalt-loader #loader-message {
    display: block;
    margin-top: 10px;
    color: var(--primary-color);
    font-size: 12px;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-align: center; }
  .tinysalt-loader #loader {
    position: relative;
    width: 60px;
    height: 60px;
    color: var(--primary-color); }
    .tinysalt-loader #loader span, .tinysalt-loader #loader:before {
      position: absolute;
      top: 0;
      left: 0;
      display: block;
      width: 60px;
      height: 60px;
      border-radius: 50%;
      background: currentColor;
      box-shadow: 0 0 50px;
      opacity: 0; }
    .tinysalt-loader #loader span {
      -webkit-animation: beat 1.5s linear infinite;
      animation: beat 1.5s linear infinite; }
    .tinysalt-loader #loader:before {
      content: "";
      -webkit-animation: beat 1.5s linear infinite 1s;
      animation: beat 1.5s linear infinite 1s; }

.tinysalt-bannr.site-top {
  position: relative;
  z-index: 99;
  background-color: #000; }

@media screen and (min-width: 480px) {
  .author-social ul.social-nav li a {
    text-align: left; } }
@media screen and (min-width: 600px) {
  .container {
    padding: 0 30px; }

  .tagcloud a {
    padding: 0 18px;
    margin: 0 5px 5px 0; } }
@media screen and (min-width: 1120px) {
  .site-content[class*="with-sidebar-"] .primary {
    float: left;
    width: calc(100% - 360px); }
  .site-content[class*="with-sidebar-"] .sidebar {
    float: left;
    width: 300px; }
  .site-content[class*="with-sidebar-"] .sidebar-container {
    width: 300px; }
  .site-content[class*="with-sidebar-"].with-sidebar-left .primary {
    float: right; }
  .site-content[class*="with-sidebar-"].with-sidebar-right .sidebar {
    float: right; } }
@media screen and (min-width: 1440px) and (max-width: 1500px) {
  .container {
    padding: 0 60px; } }
@media screen and (min-width: 1440px) {
  .container {
    max-width: 1440px; } }
/* ==========================================================================
   3.0 Typography
   ========================================================================== */
body,
input,
select,
textarea,
.ui-widget,
.wp-caption-text,
blockquote cite,
.primary-menu a,
.widget-area .widget-title,
.comment-reply-title a,
.sidemenu .secondary-menu .sub-menu a {
  font-family: var(--body-font); }

h1,
h2,
h3,
h4,
h5,
h6,
.site-branding .site-title,
.entry-title,
.post-title,
blockquote,
.widget.widget_rss ul li a.rsswidget,
.widget.widget_recent_entries a,
.widget_recent_comments ul li > a,
.post-intro .intro-content,
.sidemenu .primary-menu > li > a,
.sidemenu .secondary-menu a {
  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; }

.entry-content a:not([class*="button"]), .comment-content a:not([class*="button"]) {
  color: #000;
  box-shadow: 0 1px 0 var(--primary-color); }
  .dark-color .entry-content a:not([class*="button"]),
  .dark-color .comment-content a:not([class*="button"]) {
    color: #fff; }
  .no-touch .entry-content a:not([class*="button"]):hover, .no-touch .comment-content a:not([class*="button"]):hover {
    color: var(--primary-color); }
.entry-content figure > a, .no-touch .entry-content figure > a:hover,
.comment-content figure > a,
.no-touch .comment-content figure > a:hover {
  box-shadow: none !important; }
.entry-content figure > a,
.comment-content figure > a {
  box-shadow: none !important; }

.textwidget a,
.widget.widget_calendar a {
  color: var(--primary-color); }

.entry-content,
.home-widget .section-content {
  font-size: 16px;
  font-size: 1rem; }

.entry-content {
  color: var(--content-color);
  line-height: 1.8; }
  .entry-content h1,
  .entry-content h2,
  .entry-content h3,
  .entry-content h4,
  .entry-content h5,
  .entry-content h6,
  .entry-content form {
    color: var(--text-color); }
  .entry-content > ul li:not(:last-child),
  .entry-content > ol li:not(:last-child) {
    margin-bottom: 8px; }
  .entry-content > ul ul,
  .entry-content > ul ol,
  .entry-content > ol ul,
  .entry-content > ol ol {
    margin-top: 8px; }

h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  line-height: 1.35; }
  .entry-content h1, .home-widget .section-content h1,
  .entry-content h2, .home-widget .section-content h2,
  .entry-content h3, .home-widget .section-content h3,
  .entry-content h4, .home-widget .section-content h4,
  .entry-content h5, .home-widget .section-content h5,
  .entry-content h6, .home-widget .section-content h6 {
    margin-bottom: 34px; }
  .entry-content * + h1, .home-widget .section-content * + h1, .entry-content * + h2, .home-widget .section-content * + h2, .entry-content * + h3, .home-widget .section-content * + h3, .entry-content * + h4, .home-widget .section-content * + h4, .entry-content * + h5, .home-widget .section-content * + h5, .entry-content * + h6, .home-widget .section-content * + h6 {
    margin-top: 50px; }
  .comment-content * + h1, .comment-content * + h2, .comment-content * + h3, .comment-content * + h4, .comment-content * + h5, .comment-content * + h6 {
    margin-top: 34px; }
  .comment-content h1, .widget-area .widget h1, .comment-content h2, .widget-area .widget h2, .comment-content h3, .widget-area .widget h3, .comment-content h4, .widget-area .widget h4, .comment-content h5, .widget-area .widget h5, .comment-content h6, .widget-area .widget h6 {
    margin-bottom: 17px; }

.entry-content h1,
.featured-section.custom-section h1,
.home-widget .section-content h1 {
  font-size: 36px;
  font-size: 2.25rem; }
.entry-content h2,
.featured-section.custom-section h2,
.home-widget .section-content h2 {
  font-size: 32px;
  font-size: 2rem; }
.entry-content h3,
.featured-section.custom-section h3,
.home-widget .section-content h3 {
  font-size: 28px;
  font-size: 1.75rem; }
.entry-content h4,
.featured-section.custom-section h4,
.home-widget .section-content h4 {
  font-size: 24px;
  font-size: 1.5rem; }
.entry-content h5,
.featured-section.custom-section h5,
.home-widget .section-content h5 {
  font-size: 21px;
  font-size: 1.3125rem; }
.entry-content h6,
.featured-section.custom-section h6,
.home-widget .section-content h6 {
  font-size: 18px;
  font-size: 1.125rem; }

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

.entry-title,
.post-title {
  margin: 0;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.2; }

.entry-title a {
  color: inherit; }

.entry-header h1.entry-title {
  margin-bottom: 15px;
  font-size: 36px;
  font-size: 2.25rem; }
  .entry-header h1.entry-title:last-child {
    margin-bottom: 0; }

h5.section-title {
  position: relative;
  display: block;
  margin-bottom: 34px;
  font-size: 21px;
  font-size: 1.3125rem;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
  text-align: center; }

h5.widget-title {
  font-weight: 600;
  letter-spacing: 0;
  text-transform: none; }
  .widget-area .widget h5.widget-title {
    position: relative;
    display: block;
    width: 100%;
    padding: 13px;
    margin-bottom: 20px;
    border: 1px solid var(--primary-color);
    font-size: 12px;
    font-size: 0.75rem;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-align: center; }
    .widget-area .widget h5.widget-title:after {
      position: absolute;
      left: 50%;
      bottom: -6px;
      -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
      transform: translateX(-50%);
      display: block;
      width: 0;
      height: 0;
      border-left: 6px solid transparent;
      border-right: 6px solid transparent;
      border-top: 6px solid var(--primary-color);
      content: ""; }

.related-posts .related-posts-title,
.comments-area h2.comments-title,
.comment-respond h3.comment-reply-title {
  margin-bottom: 34px;
  font-size: 21px;
  font-size: 1.3125rem;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none; }

.comments-area h2.comments-title {
  margin-bottom: 0; }

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

blockquote {
  position: relative;
  margin: 0; }
  blockquote p:last-of-type {
    margin-bottom: 0; }
  .entry-content blockquote {
    padding: 0 50px;
    margin: 50px auto; }
    .entry-content blockquote:before {
      position: absolute;
      top: 15px;
      left: 0;
      z-index: 1;
      display: block;
      width: 30px;
      height: 30px;
      color: var(--primary-color);
      font-size: 70px;
      font-size: 4.375rem;
      line-height: 30px;
      content: "\201C"; }
    .entry-content blockquote:first-child {
      margin-top: 0; }
    .entry-content blockquote p {
      color: var(--text-color); }
    .entry-content blockquote cite {
      color: inherit;
      font-style: normal;
      text-transform: uppercase;
      letter-spacing: 0.5px; }
  blockquote p {
    position: relative;
    z-index: 9;
    font-size: 21px;
    font-size: 1.3125rem;
    font-weight: 500;
    font-style: normal;
    line-height: 1.5; }
  blockquote cite,
  blockquote small {
    display: block;
    margin-top: 20px;
    font-size: 12px;
    font-size: 0.75rem;
    font-weight: 400;
    font-style: normal;
    line-height: 1.5; }

table {
  width: 100%;
  max-width: 100%;
  margin: 0 0 34px;
  border-collapse: separate;
  border-spacing: 0;
  border-width: 1px;
  border-style: solid;
  border-color: currentColor;
  background: none;
  color: inherit; }
  table th,
  table td {
    padding: 16px;
    vertical-align: top;
    line-height: 1.5; }
  table th {
    font-weight: 700;
    text-align: left; }
  table thead tr th,
  table thead tr td {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1); }
  table tbody tr:not(:last-child) th,
  table tbody tr:not(:last-child) td {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1); }
  table tfoot tr td {
    border-top: 1px solid rgba(0, 0, 0, 0.1); }
  table td {
    font-size: 14px;
    font-size: 0.875rem; }
  table caption {
    margin: 17px auto;
    font-size: 12px;
    font-size: 0.75rem; }

pre,
code,
kbd {
  background-color: #f7f7f7;
  color: #000; }

pre {
  display: block;
  padding: 34px;
  margin: 34px 0;
  border: 1px solid #eee;
  tab-size: 4;
  overflow: auto;
  font-size: 16px; }

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

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

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

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

code,
kbd,
tt,
var,
samp,
pre {
  font-family: Menlo,Consolas,monaco,monospace; }

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

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

ins {
  font-style: italic; }

big {
  font-size: 125%; }

@media screen and (min-width: 1024px) {
  .entry-content blockquote p {
    font-size: 28px;
    font-size: 1.75rem; } }
@media screen and (min-width: 1120px) {
  .featured-section.custom-section h1 {
    font-size: 60px;
    font-size: 3.75rem; }
  .featured-section.custom-section h2 {
    font-size: 48px;
    font-size: 3rem; }

  .section-header h5.section-title {
    font-size: 24px;
    font-size: 1.5rem; }

  .site-content[class*="with-sidebar-"] .primary .section-header h5.section-title {
    text-align: left; } }
@media screen and (max-width: 599px) {
  .entry-content blockquote {
    padding-right: 0; } }
@media screen and (max-width: 480px) {
  table th,
  table td {
    padding-right: 8px;
    padding-left: 8px; } }
/* ==========================================================================
   4.0 Site Header & Menu
   ========================================================================== */
nav ul {
  margin: 0;
  list-style: none;
  font-size: 0; }

.header-top-bar {
  display: none;
  background: #111;
  color: #fff; }

/* Site Branding
   ========================================================================== */
.site-branding {
  padding: 0;
  font-size: 0; }
  .site-branding p {
    margin-bottom: 0; }
  .site-branding .site-title {
    margin-top: 20px;
    font-size: 28px;
    font-size: 1.75rem;
    font-weight: 700;
    line-height: 1.2; }
    .site-branding .site-title:last-child {
      margin-bottom: 20px; }
  .site-branding .site-description {
    display: block;
    margin-top: 5px;
    margin-bottom: 20px;
    font-size: 14px;
    font-size: 0.875rem;
    line-height: 1; }
  .site-branding.hide-title-tagline .site-title,
  .site-branding.hide-title-tagline .site-description {
    position: absolute !important;
    overflow: hidden;
    clip: rect(1px, 1px, 1px, 1px);
    clip-path: inset(50%);
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    border: 0;
    word-wrap: normal !important; }
  .site-branding a {
    display: inline-block;
    color: inherit; }
  .site-branding img {
    display: block;
    padding: 15px 0; }
  .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; }
  .site-header.sticky .site-branding .site-title, .site-header.is-sticky .site-branding .site-title {
    margin-top: 0; }
  .site-header-layout-3 .site-branding {
    text-align: center; }

@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;
  box-shadow: 0 8px 30px -6px rgba(0, 0, 0, 0.05);
  line-height: 1.5; }
  .site-header > * {
    width: 100%; }
  .site-header .search {
    position: relative;
    height: 38px;
    line-height: 38px; }
    .site-header .search form {
      height: inherit;
      line-height: inherit; }
    .site-header .search i.fa {
      position: absolute;
      left: 15px;
      line-height: inherit;
      -webkit-transform: translateY(2px);
      -ms-transform: translateY(2px);
      transform: translateY(2px);
      font-size: 13px;
      font-size: 0.8125rem;
      color: var(--primary-color); }
    .site-header .search input[type="search"] {
      height: inherit;
      width: 170px;
      padding-right: 3px;
      padding-left: 38px;
      background: #fff;
      box-shadow: 0 0 1px rgba(0, 0, 0, 0.3);
      border: 0;
      border-radius: 999px;
      color: #000;
      font-size: 13px;
      font-size: 0.8125rem; }
      .site-header .search input[type="search"]:focus {
        box-shadow: 0 5px 22px -6px rgba(0, 0, 0, 0.1), 0 0 1px rgba(0, 0, 0, 0.05); }
  .site-header.dark-color .search input[type="search"] {
    background: #262626;
    color: #fff; }
  .site-header .header-top-bar .search input[type="search"] {
    background: none;
    box-shadow: none;
    color: inherit; }
    .site-header .header-top-bar .search input[type="search"]:focus {
      box-shadow: none; }
  .site-header .header-top-bar .search i.fa {
    color: inherit; }
  .site-header .site-header-search {
    display: none; }
  .site-header .site-header-main {
    position: relative;
    z-index: 3;
    background: inherit; }
    .site-header .site-header-main.with-bg {
      background-size: cover;
      background-position: center;
      background-repeat: no-repeat; }
    .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; }
  .site-header .header-section {
    position: relative;
    z-index: 2; }
    .site-header .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;
      max-width: calc(100% - 80px); }
    .site-header .header-section.header-left {
      margin-left: 0; }
    .site-header .header-section.header-right {
      margin-right: 0; }
  .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;
    cursor: pointer; }
    .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: 12px;
      -webkit-transform: scaleX(1.3);
      -ms-transform: scaleX(1.3);
      transform: scaleX(1.3); }
    @media screen and (min-width: 1025px) {
      .site-header .menu-toggle:hover, .site-header .menu-toggle:focus {
        color: var(--primary-color);
        outline: 0; } }
  .site-header .header-section.menu {
    display: none;
    /* Hide menu on small screens */ }
  .site-header.site-header-layout-1 .menu-toggle, .site-header.site-header-layout-3 .menu-toggle {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    right: 15px; }
  .site-header.site-header-layout-1 .header-section.branding, .site-header.site-header-layout-3 .header-section.branding {
    max-width: calc(100% - 120px); }
  .site-header.site-header-layout-1 .header-section {
    width: 100%; }
    .site-header.site-header-layout-1 .header-section.branding {
      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-2 .search {
    display: none; }
  .site-header.sticky .site-header-main, .site-header.is-sticky .site-header-main {
    position: fixed !important;
    top: 0;
    left: 0;
    z-index: 999; }
    @media screen and (min-width: 601px) and (max-width: 782px) {
      .logged-in.admin-bar .site-header.sticky .site-header-main, .logged-in.admin-bar .site-header.is-sticky .site-header-main {
        top: 46px; } }
    @media screen and (min-width: 783px) {
      .logged-in.admin-bar .site-header.sticky .site-header-main, .logged-in.admin-bar .site-header.is-sticky .site-header-main {
        top: 32px; } }
  .site-header.sticky .site-header-main {
    -webkit-animation: stickyHeaderShow 0.4s ease-out;
    animation: stickyHeaderShow 0.4s ease-out;
    box-shadow: 0 8px 30px -6px rgba(0, 0, 0, 0.05); }
  .site-header.sticky.dark-color .site-header-main {
    border-bottom-color: #333; }
  .site-header.is-sticky .site-header-main {
    -webkit-transform: translateY(-100%);
    -ms-transform: translateY(-100%);
    transform: translateY(-100%); }
  .site-header.is-sticky.show-header .site-header-main {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
    transition: transform 0.4s ease-out;
    box-shadow: 0 8px 30px -6px rgba(0, 0, 0, 0.05); }
  .site-header.is-sticky.show-header.dark-color .site-header-main {
    border-bottom-color: #333; }
  .site-header.is-sticky.hide-header .site-header-main {
    -webkit-transform: translateY(-100%);
    -ms-transform: translateY(-100%);
    transform: translateY(-100%);
    transition: transform 0.4s ease-out; }
  .site-header.is-sticky.hide-header ul.sub-menu {
    opacity: 0;
    pointer-events: none;
    visibility: hidden; }

/* Social Nav Icons
   ========================================================================== */
ul.social-nav {
  margin: 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 */ }
      ul.social-nav li a[title="website"]:before, 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 {
        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"; }

/* Side Menu
   ========================================================================== */
.sidemenu {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 1001;
  display: block;
  width: 100%;
  max-width: 500px;
  height: 100vh;
  transition: 0.4s;
  opacity: 0;
  pointer-events: none;
  visibility: hidden; }
  .sidemenu:before {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1;
    display: block;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.75);
    content: ""; }
  .sidemenu .close-button {
    position: absolute;
    top: 20px;
    right: 20px; }
  .sidemenu .container {
    position: relative;
    z-index: 9;
    -webkit-transform: translateX(100%);
    -ms-transform: translateX(100%);
    transform: translateX(100%);
    width: 100%;
    height: 100vh;
    padding: 60px 30px;
    margin: 0;
    background-color: #fff;
    color: #000;
    overflow: auto;
    text-align: center;
    transition: transform 0.4s;
    -ms-overflow-style: none;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat; }
    .sidemenu .container::-webkit-scrollbar {
      display: none; }
    @media screen and (min-width: 601px) and (max-width: 782px) {
      .logged-in.admin-bar .sidemenu .container {
        top: 46px;
        height: calc(100vh - 46px); } }
    @media screen and (min-width: 783px) {
      .logged-in.admin-bar .sidemenu .container {
        top: 32px;
        height: calc(100vh - 32px); } }
    .sidemenu .container > * {
      margin-bottom: 50px; }
      .sidemenu .container > *:first-child, .sidemenu .container > *:last-child {
        margin-bottom: 0; }
  .sidemenu.show {
    opacity: 1;
    pointer-events: auto;
    visibility: visible; }
    .sidemenu.show .container {
      -webkit-transform: translateX(0);
      -ms-transform: translateX(0);
      transform: translateX(0); }
  .sidemenu .primary-menu {
    display: block;
    text-align: left; }
    .sidemenu .primary-menu li {
      position: relative;
      display: block; }
    .sidemenu .primary-menu a {
      position: relative;
      text-transform: capitalize; }
    .sidemenu .primary-menu > li {
      padding: 0;
      border-bottom: 1px solid rgba(0, 0, 0, 0.035); }
      .sidemenu .primary-menu > li > a {
        display: block;
        padding: 10px 0;
        font-size: 21px;
        font-size: 1.3125rem;
        font-weight: 500;
        letter-spacing: 0;
        line-height: 1.5; }
    .sidemenu .primary-menu li.current-menu-item > a,
    .sidemenu .primary-menu li.current-menu-ancestor > a {
      color: var(--primary-color); }
    .sidemenu .primary-menu > li.current-menu-item > a:before,
    .sidemenu .primary-menu > li.current-menu-ancestor > a:before {
      position: absolute;
      top: 50%;
      -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
      transform: translateY(-50%);
      left: -35px;
      display: block;
      width: 20px;
      height: 2px;
      background: var(--primary-color);
      content: ""; }
    .sidemenu .primary-menu ul.sub-menu {
      display: none;
      margin: 0 0 0 30px; }
      .sidemenu .primary-menu ul.sub-menu li {
        border-top: 1px solid rgba(0, 0, 0, 0.035); }
      .sidemenu .primary-menu ul.sub-menu li a {
        padding: 4px 0;
        font-size: 15px;
        font-size: 0.9375rem;
        font-weight: 400;
        line-height: 40px; }
      .sidemenu .primary-menu ul.sub-menu .dropdown-toggle {
        top: 0; }
  .sidemenu .secondary-menu {
    text-align: left; }
    .sidemenu .secondary-menu li {
      position: relative; }
    .sidemenu .secondary-menu a {
      display: inline-block;
      padding: 6px 0;
      font-size: 16px;
      font-size: 1rem;
      font-weight: 500;
      line-height: 1.5; }
    .sidemenu .secondary-menu ul.sub-menu {
      display: none;
      margin: 0 0 0 30px; }
      .sidemenu .secondary-menu ul.sub-menu a {
        font-size: 14px;
        font-size: 0.875rem;
        font-weight: 400; }
    .sidemenu .secondary-menu .dropdown-toggle {
      position: relative;
      height: 24px;
      top: auto;
      right: auto;
      -webkit-transform: translateY(3px);
      -ms-transform: translateY(3px);
      transform: translateY(3px); }
  .sidemenu .dropdown-toggle {
    position: absolute;
    top: 7px;
    right: 0;
    width: 40px;
    height: 36px;
    background: none;
    border: none;
    color: inherit;
    cursor: pointer;
    transition: 0.4s; }
    .sidemenu .dropdown-toggle:before {
      font-family: 'ElegantIcons';
      speak: none;
      font-style: normal;
      font-weight: normal;
      font-variant: normal;
      text-transform: none;
      line-height: 1;
      -webkit-font-smoothing: antialiased;
      display: block;
      font-size: 21px;
      font-size: 1.3125rem;
      content: "\35"; }
    .sidemenu .dropdown-toggle.toggled-on:before {
      content: "\33"; }
    .sidemenu .dropdown-toggle.toggled-on + ul.sub-menu {
      display: block; }
  .sidemenu .social-navigation:not(:last-child) {
    margin-bottom: 34px; }
  .sidemenu .secondary-navigation + .social-navigation {
    border-top: 1px solid rgba(0, 0, 0, 0.035);
    padding-top: 50px; }
  .sidemenu ul.social-nav li a {
    width: 40px;
    height: 40px;
    line-height: 40px; }
  .sidemenu .text {
    font-size: 14px;
    font-size: 0.875rem; }
  .sidemenu.light-color .container {
    background-color: #fff;
    color: #000; }
  .sidemenu.light-color .primary-menu > li {
    border-bottom-color: rgba(0, 0, 0, 0.035); }
  .sidemenu.light-color .primary-menu ul.sub-menu li,
  .sidemenu.light-color .secondary-navigation + .social-navigation {
    border-top-color: rgba(0, 0, 0, 0.035); }
  .sidemenu.dark-color .container {
    background-color: #000;
    color: #fff; }
  .sidemenu.dark-color .primary-menu > li {
    border-bottom-color: rgba(255, 255, 255, 0.15); }
  .sidemenu.dark-color .primary-menu ul.sub-menu li,
  .sidemenu.dark-color .secondary-navigation + .social-navigation {
    border-top-color: rgba(255, 255, 255, 0.15); }

/* Polylang Flags Position
   ========================================================================== */
.site-header .pll-parent-menu-item a img {
  display: inline-block;
  -webkit-transform: translateY(1.5px);
  -ms-transform: translateY(1.5px);
  transform: translateY(1.5px); }

@media screen and (min-width: 600px) {
  .site-header.site-header-layout-1 .menu-toggle, .site-header.site-header-layout-3 .menu-toggle {
    right: 30px; }
  .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; }

  .sidemenu .container {
    padding-right: 50px;
    padding-left: 50px; } }
@media screen and (min-width: 1024px) {
  .header-top-bar {
    position: relative;
    z-index: 5;
    display: block;
    width: 100%; }
    .header-top-bar a {
      line-height: 40px;
      opacity: 0.8; }
      .no-touch .header-top-bar a:hover {
        opacity: 1; }
    .header-top-bar .secondary-navigation {
      float: left;
      width: 50%; }
      .header-top-bar .secondary-navigation ul li {
        position: relative;
        display: inline-block;
        margin-right: 25px; }
      .header-top-bar .secondary-navigation a {
        display: block;
        font-size: 11px;
        font-size: 0.6875rem;
        text-transform: uppercase;
        font-weight: 500;
        letter-spacing: 0.15em;
        white-space: nowrap; }
      .header-top-bar .secondary-navigation .sub-menu {
        position: absolute;
        left: -20px;
        z-index: -1;
        display: block;
        padding: 10px 0;
        margin: 0;
        background: #111;
        color: #fff;
        text-align: left;
        white-space: nowrap;
        transition: 0.3s;
        opacity: 0;
        pointer-events: none;
        visibility: hidden; }
        .header-top-bar .secondary-navigation .sub-menu li {
          display: block;
          margin-right: 0; }
          .header-top-bar .secondary-navigation .sub-menu li a {
            padding: 0 36px 0 20px; }
      .no-touch .header-top-bar .secondary-navigation li:hover .sub-menu, .header-top-bar .secondary-navigation li:focus .sub-menu {
        z-index: 99;
        opacity: 1;
        pointer-events: auto;
        visibility: visible; }
      .header-top-bar .secondary-navigation .secondary-menu > li.menu-item-has-children > a:after {
        font-family: 'ElegantIcons';
        speak: none;
        font-style: normal;
        font-weight: normal;
        font-variant: normal;
        text-transform: none;
        line-height: 1;
        -webkit-font-smoothing: antialiased;
        display: inline-block;
        margin-left: 5px;
        -webkit-transform: translateY(1px);
        -ms-transform: translateY(1px);
        transform: translateY(1px);
        content: "\33";
        font-size: 14px;
        font-size: 0.875rem; }
    .header-top-bar .social-navigation {
      float: right;
      width: auto;
      margin-left: 0;
      text-align: right; }
      .header-top-bar .social-navigation a:before {
        font-size: 13px;
        font-size: 0.8125rem; }
    .header-top-bar ul.social-nav li:last-child {
      margin-right: -12px; }
    .header-top-bar ul.social-nav li a {
      width: 40px;
      height: 40px;
      line-height: 40px; }
    .header-top-bar .search {
      float: right;
      height: 40px; }
      .header-top-bar .search i.fa {
        font-size: 13px;
        font-size: 0.8125rem; }
      .header-top-bar .search input[type="text"] {
        background: none;
        color: inherit; }

  .site-header.site-header-layout-2 .search {
    display: block;
    float: left; }
  .site-header.site-header-layout-2 .menu-toggle {
    margin-left: 15px; } }
@media screen and (min-width: 1025px) {
  .no-touch .sidemenu a:hover {
    color: var(--primary-color); }
  .no-touch .sidemenu .primary-menu a:hover {
    color: inherit; }
  .no-touch .sidemenu .primary-menu a:hover,
  .no-touch .sidemenu .dropdown-toggle:hover {
    opacity: 0.5; } }
@media screen and (min-width: 1120px) {
  .site-header .menu-toggle {
    display: none; }
  .site-header .header-section.menu {
    display: block; }
  .site-header .primary-menu {
    /* Category Mega Menu */
    /* When user want to align right one nav item and its sub items, add class "right" */ }
    .site-header .primary-menu li {
      position: relative;
      white-space: nowrap; }
    .site-header .primary-menu a {
      position: relative;
      display: block; }
    .site-header .primary-menu > li {
      float: left; }
      .site-header .primary-menu > li > a {
        padding: 0 15px;
        font-size: 12px;
        font-size: 0.75rem;
        font-weight: 700;
        letter-spacing: 1px;
        text-transform: uppercase;
        line-height: 60px; }
        .no-touch .site-header .primary-menu > li > a:hover {
          opacity: 0.5; }
      .site-header .primary-menu > li > ul.sub-menu {
        bottom: 0;
        -webkit-transform: translateY(105%);
        -ms-transform: translateY(105%);
        transform: translateY(105%); }
        .site-header .primary-menu > li > ul.sub-menu ul.sub-menu {
          top: -20px;
          left: 100%;
          margin-left: 5px; }
      .site-header .primary-menu > li:not(.mega-menu) > ul.sub-menu {
        left: -15px; }
      .site-header .primary-menu > li.current-menu-item > a, .site-header .primary-menu > li.current-menu-ancestor > a {
        color: var(--primary-color); }
      .site-header .primary-menu > li.menu-item-has-children > a:after {
        font-family: 'ElegantIcons';
        speak: none;
        font-style: normal;
        font-weight: normal;
        font-variant: normal;
        text-transform: none;
        line-height: 1;
        -webkit-font-smoothing: antialiased;
        display: inline-block;
        margin-left: 5px;
        -webkit-transform: translateY(1px);
        -ms-transform: translateY(1px);
        transform: translateY(1px);
        content: "\33";
        font-size: 14px;
        font-size: 0.875rem; }
      .site-header .primary-menu > li.menu-item-has-children.mega-menu:not(.has-arrow) > a:after {
        display: none; }
    .site-header .primary-menu > li.button {
      margin: 0 20px; }
      .site-header .primary-menu > li.button:first-child {
        margin-left: 0; }
      .site-header .primary-menu > li.button:last-child {
        margin-right: 0; }
      .site-header .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.2em;
        text-transform: uppercase;
        line-height: 42px;
        text-align: center;
        transition: 0.4s;
        cursor: pointer;
        padding: 0 20px;
        margin-top: 12px;
        line-height: 36px; }
    .site-header .primary-menu .sub-menu {
      position: absolute;
      z-index: -1;
      display: block;
      min-width: 200px;
      padding: 20px 5px;
      margin: 0;
      background: #fff;
      box-shadow: 0 15px 30px -6px rgba(0, 0, 0, 0.1), 0 0 1px rgba(0, 0, 0, 0.05);
      border-radius: 0 0 4px 4px;
      color: #333;
      text-align: left;
      transition: 0.3s;
      opacity: 0;
      pointer-events: none;
      visibility: hidden; }
      .site-header .primary-menu .sub-menu ul.sub-menu {
        padding-top: 20px; }
      .site-header .primary-menu .sub-menu a {
        padding: 0 25px;
        font-size: 14px;
        font-size: 0.875rem;
        font-weight: 400;
        letter-spacing: 0;
        text-transform: capitalize;
        line-height: 36px; }
        .site-header .primary-menu .sub-menu a:before {
          position: absolute;
          top: 17px;
          left: 10px;
          display: block;
          width: 6px;
          height: 2px;
          background: var(--primary-color);
          content: "";
          -webkit-transform: scaleX(0);
          -ms-transform: scaleX(0);
          transform: scaleX(0);
          transition: 0.3s; }
        .no-touch .site-header .primary-menu .sub-menu a:hover {
          -webkit-transform: translateX(8px);
          -ms-transform: translateX(8px);
          transform: translateX(8px); }
          .no-touch .site-header .primary-menu .sub-menu a:hover:before {
            -webkit-transform: scaleX(1);
            -ms-transform: scaleX(1);
            transform: scaleX(1); }
      .site-header .primary-menu .sub-menu li.current-menu-item > a:before {
        -webkit-transform: scaleX(1);
        -ms-transform: scaleX(1);
        transform: scaleX(1); }
    .no-touch .site-header .primary-menu li:hover > ul.sub-menu,
    .site-header .primary-menu li.focus > ul.sub-menu {
      z-index: 99;
      opacity: 1;
      pointer-events: auto;
      visibility: visible; }
    .site-header .primary-menu > li:hover > ul.sub-menu,
    .site-header .primary-menu > li.focus > ul.sub-menu {
      -webkit-transform: translateY(100%);
      -ms-transform: translateY(100%);
      transform: translateY(100%); }
    .site-header .primary-menu li:not(.mega-menu) ul.sub-menu li.menu-item-has-children > a {
      padding-right: 35px; }
    .site-header .primary-menu li:not(.mega-menu) ul.sub-menu li.menu-item-has-children > a:after {
      position: absolute;
      top: 10px;
      right: 15px;
      font-family: 'ElegantIcons';
      speak: none;
      font-style: normal;
      font-weight: normal;
      font-variant: normal;
      text-transform: none;
      line-height: 1;
      -webkit-font-smoothing: antialiased;
      display: block;
      width: auto;
      height: 30px;
      color: inherit;
      font-size: 14px;
      content: "\35"; }
    .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: 100vw;
      padding: 30px 60px 20px; }
      .site-header .primary-menu li.mega-menu > ul.sub-menu > li {
        display: block;
        width: 25%;
        padding: 0 20px;
        margin: 0;
        vertical-align: top; }
        .site-header .primary-menu li.mega-menu > ul.sub-menu > li > a {
          padding: 0 25px;
          color: #000;
          font-size: 12px;
          font-size: 0.75rem;
          font-weight: 700;
          letter-spacing: 0.5px;
          text-transform: uppercase;
          opacity: 1; }
        .site-header .primary-menu li.mega-menu > ul.sub-menu > li > ul {
          position: relative;
          top: auto;
          left: auto;
          display: block;
          padding: 10px 0 20px;
          margin-left: 0;
          box-shadow: none; }
    .site-header .primary-menu li.mega-menu.column-5 > ul.sub-menu > li {
      width: 20%; }
    .site-header .primary-menu li.mega-menu.menu-item-object-category {
      /* Category Mega Menu - With Sub Categories */ }
      .site-header .primary-menu li.mega-menu.menu-item-object-category ul li {
        float: left;
        padding-bottom: 10px; }
      .site-header .primary-menu li.mega-menu.menu-item-object-category .mega-menu-post {
        width: 100%;
        clear: both; }
        .site-header .primary-menu li.mega-menu.menu-item-object-category .mega-menu-post .featured-img {
          position: relative;
          width: 100%;
          height: 0;
          padding-top: 66.66%;
          margin-bottom: 15px; }
        .site-header .primary-menu li.mega-menu.menu-item-object-category .mega-menu-post .post-content {
          width: 100%;
          text-align: center; }
        .no-touch .site-header .primary-menu li.mega-menu.menu-item-object-category .mega-menu-post:hover .featured-img-container {
          -webkit-transform: scale(1.06);
          -ms-transform: scale(1.06);
          transform: scale(1.06); }
        .site-header .primary-menu li.mega-menu.menu-item-object-category .mega-menu-post a {
          padding: 0;
          opacity: 1; }
          .site-header .primary-menu li.mega-menu.menu-item-object-category .mega-menu-post a:before {
            display: none; }
          .no-touch .site-header .primary-menu li.mega-menu.menu-item-object-category .mega-menu-post a:hover {
            -webkit-transform: none;
            -ms-transform: none;
            transform: none; }
        .site-header .primary-menu li.mega-menu.menu-item-object-category .mega-menu-post .featured-img-container {
          position: absolute;
          top: 0;
          left: 0;
          width: 100%;
          height: 100%;
          background-size: cover;
          background-position: center;
          background-repeat: no-repeat;
          transition: 1s ease; }
        .site-header .primary-menu li.mega-menu.menu-item-object-category .mega-menu-post .post-title {
          margin-bottom: 0;
          font-size: 16px;
          font-size: 1rem;
          font-weight: 600;
          line-height: 1.2;
          white-space: normal; }
          .site-header .primary-menu li.mega-menu.menu-item-object-category .mega-menu-post .post-title a {
            font: inherit; }
      .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%; }
          .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-bottom: 0; }
          .site-header .primary-menu li.mega-menu.menu-item-object-category.menu-item-has-children > ul.sub-menu li.sub-cat-list li.current a {
            font-weight: 800; }
        .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 > li {
                width: 33.33%;
                padding: 0 20px; }
    .no-touch .site-header .primary-menu li.mega-menu:hover .sub-menu {
      z-index: 99;
      opacity: 1;
      pointer-events: auto;
      visibility: visible; }
    .site-header .primary-menu li.mega-menu.cat-list > ul.sub-menu {
      padding-top: 20px; }
      .site-header .primary-menu li.mega-menu.cat-list > ul.sub-menu > li {
        flex-grow: 1;
        padding: 10px;
        width: auto; }
        .site-header .primary-menu li.mega-menu.cat-list > ul.sub-menu > li a {
          padding: 0; }
        .no-touch .site-header .primary-menu li.mega-menu.cat-list > ul.sub-menu > li a:hover {
          -webkit-transform: none;
          -ms-transform: none;
          transform: none; }
          .no-touch .site-header .primary-menu li.mega-menu.cat-list > ul.sub-menu > li a:hover .cat-bg:after {
            opacity: 0.6; }
    .site-header .primary-menu li.mega-menu.cat-list .cat-bg {
      position: relative;
      z-index: 1;
      width: 100%;
      height: 0;
      padding-top: 66.6666%;
      background-size: cover;
      background-position: center;
      background-repeat: no-repeat; }
      .site-header .primary-menu li.mega-menu.cat-list .cat-bg:after {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 2;
        background: #000;
        content: "";
        opacity: 0.35;
        pointer-events: none;
        transition: opacity 0.4s;
        will-change: opacity; }
      .site-header .primary-menu li.mega-menu.cat-list .cat-bg + .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;
        color: #fff;
        font-size: 18px;
        font-size: 1.125rem;
        font-weight: 700;
        line-height: 1.3;
        text-align: center; }
    .site-header .primary-menu li.mega-menu.cat-list.column-10 > ul.sub-menu {
      -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
      flex-wrap: wrap;
      padding-right: 20px;
      padding-left: 20px; }
      .site-header .primary-menu li.mega-menu.cat-list.column-10 > ul.sub-menu > li {
        flex-grow: 0;
        min-width: 10%; }
    .site-header .primary-menu li.mega-menu.cat-list.column-10 .cat-bg + .cat-meta {
      width: 100%;
      padding: 0 5px;
      font-size: 12px;
      font-size: 0.75rem;
      white-space: pre-wrap; }
    .site-header .primary-menu > li.right > ul.sub-menu {
      right: -10px;
      left: auto; }
      .site-header .primary-menu > li.right > ul.sub-menu li.menu-item-has-children > a {
        padding-right: 25px;
        padding-left: 35px; }
    .site-header .primary-menu > li.right ul.sub-menu {
      text-align: right; }
      .site-header .primary-menu > li.right ul.sub-menu li.menu-item-has-children > a:after {
        right: auto;
        left: 15px;
        content: "\34"; }
      .site-header .primary-menu > li.right ul.sub-menu a:before {
        right: 10px;
        left: auto; }
      .site-header .primary-menu > li.right ul.sub-menu a:hover {
        -webkit-transform: translateX(-6px);
        -ms-transform: translateX(-6px);
        transform: translateX(-6px); }
      .site-header .primary-menu > li.right ul.sub-menu ul.sub-menu {
        left: auto;
        right: 100%;
        margin-right: 5px;
        margin-left: 0; }
  .site-header.dark-color .primary-menu li.mega-menu > ul.sub-menu > li > a {
    color: #fff; }
  .site-header.site-header-layout-1 .header-section.menu {
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap; }
  .site-header.site-header-layout-1.sticky .header-section.branding, .site-header.site-header-layout-1.is-sticky .header-section.branding {
    display: none; }
  .site-header.site-header-layout-1 .site-branding img {
    padding: 40px 0 20px; }
  .site-header.site-header-layout-2 .site-header-main > .container, .site-header.site-header-layout-3 .site-header-main > .container {
    min-height: 100px; }
  .site-header.site-header-layout-2 .primary-menu > li, .site-header.site-header-layout-3 .primary-menu > li {
    height: 100px; }
  .site-header.site-header-layout-2 .primary-menu > li > a, .site-header.site-header-layout-3 .primary-menu > li > a {
    line-height: 100px; }
  .site-header.site-header-layout-2 .primary-menu > li.button > a, .site-header.site-header-layout-3 .primary-menu > li.button > a {
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    margin: 0;
    line-height: 36px; }
  .site-header.site-header-layout-2 .header-section.menu {
    z-index: 3;
    width: calc(100% - 400px);
    text-align: center;
    font-size: 0;
    pointer-events: none; }
    .site-header.site-header-layout-2 .header-section.menu .main-navigation {
      display: inline-block;
      width: auto;
      margin: 0 auto;
      pointer-events: auto; }
  .site-header.site-header-layout-2.force-center .header-section.menu {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%); }
  .site-header.site-header-layout-3 .header-section.menu {
    position: absolute; }
    .site-header.site-header-layout-3 .header-section.menu.header-left {
      left: 10px; }
    .site-header.site-header-layout-3 .header-section.menu.header-right {
      right: 10px; }
  .site-header.dark-color .primary-menu .sub-menu {
    background: #333;
    color: #f2f2f2; } }
@media screen and (max-width: 1439px) {
  .site-header.site-header-layout-2 .primary-menu > li > a {
    padding: 0 10px;
    letter-spacing: 0.5px; }
  .site-header.site-header-layout-2 .primary-menu > li:not(.mega-menu) > ul.sub-menu {
    left: -20px; }
  .site-header.site-header-layout-2 .primary-menu > li.right:not(.mega-menu) > ul.sub-menu {
    right: 0;
    left: auto; }

  .site-header .primary-menu li.mega-menu.column-5 > ul.sub-menu {
    padding-right: 25px;
    padding-left: 25px; } }
@media screen and (max-width: 1119px) {
  .site-header .site-header-main .container {
    min-height: 70px; } }
@media screen and (max-width: 1023px) {
  .site-header.show-top-bar .header-top-bar {
    position: relative;
    z-index: 9;
    display: block; }
    .site-header.show-top-bar .header-top-bar .container > * {
      display: none; }
    .site-header.show-top-bar .header-top-bar a {
      line-height: 50px; }
    .site-header.show-top-bar .header-top-bar ul.social-nav li a {
      width: 40px;
      height: 50px; }
    .site-header.show-top-bar .header-top-bar ul.social-nav li:first-child {
      margin-left: -10px; }
    .touch .site-header.show-top-bar .header-top-bar .site-header-cart a.cart-contents:hover {
      pointer-events: none; }
  .site-header.show-top-bar.show-social .header-top-bar .container > .social-navigation, .site-header.show-top-bar.show-cart .header-top-bar .container > .site-header-cart {
    display: block; }

  .site-header.mobile-search .site-header-search {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    display: block; }
    .site-header.mobile-search .site-header-search .toggle-button {
      z-index: 999;
      display: block;
      width: 40px;
      height: 40px;
      background: none;
      border: none;
      border-radius: 0;
      box-shadow: none;
      color: inherit;
      font-size: 0;
      line-height: 40px;
      text-align: center;
      transition: 0.4s;
      cursor: pointer; }
      .site-header.mobile-search .site-header-search .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-weight: 900;
        font-size: 15px;
        font-size: 0.9375rem;
        line-height: 40px;
        content: "\f002"; }
  .site-header.mobile-search.site-header-layout-1 .site-header-search, .site-header.mobile-search.site-header-layout-3 .site-header-search {
    left: 30px; }
  .site-header.mobile-search.site-header-layout-2 .site-header-search {
    right: 50px; } }
@media screen and (max-width: 600px) {
  .site-header .site-header-main {
    padding: 10px 0; }

  .logged-in.admin-bar .sidemenu .close-button {
    top: 70px; }
  .logged-in.admin-bar .sidemenu .close-button + .main-navigation {
    margin-top: 50px; }
  .logged-in.admin-bar .sidemenu .container {
    padding-top: 70px; }

  .logged-in.admin-bar .popup-signup .close-button {
    top: 70px; }

  .site-header.mobile-search.site-header-layout-1 .site-header-search, .site-header.mobile-search.site-header-layout-3 .site-header-search {
    left: 15px; } }
@media screen and (max-width: 400px) {
  .site-header.mobile-search .header-section.branding {
    max-width: calc(100% - 120px); } }
/* ==========================================================================
   5.0 Front Page
   ========================================================================== */
.home.front-page .main > .container {
  padding-top: 50px; }

/* Featured Slider
   ========================================================================== */
.featured-slider .slider-bg-img,
.featured-slider .slider-link,
.featured-slider .slider-bg:after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%; }
.featured-slider ul {
  margin: 0;
  list-style: none; }
.featured-slider .slider-wrapper:not(.slick-initialized) {
  opacity: 0; }
.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-link {
    z-index: 1; }
  .featured-slider .slider .slider-content {
    z-index: 9;
    width: 100%;
    color: #fff;
    text-align: center;
    pointer-events: none; }
    .featured-slider .slider .slider-content > * {
      margin-bottom: 34px; }
      .featured-slider .slider .slider-content > *:last-child {
        margin-bottom: 0; }
    .featured-slider .slider .slider-content a {
      pointer-events: auto; }
  .featured-slider .slider .slider-excerpt p {
    margin-bottom: 0; }
.featured-slider .slick-arrow {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 9;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  overflow: hidden;
  line-height: 50px;
  text-shadow: 0 0 12px rgba(0, 0, 0, 0.3); }
  .featured-slider .slick-arrow:after {
    color: #fff; }
  .featured-slider .slick-arrow.slick-prev {
    left: 10px; }
  .featured-slider .slick-arrow.slick-next {
    right: 10px; }
.featured-slider .slider-title {
  font-size: 24px;
  font-size: 1.5rem;
  line-height: 1.2;
  font-weight: 500; }
.featured-slider .slider-bg:after {
  pointer-events: none; }
.featured-slider.slider-style-1 {
  background: #111; }
  .featured-slider.slider-style-1 .slick-arrow {
    top: 150px; }
  .featured-slider.slider-style-1 .slider-bg {
    position: relative;
    height: 350px; }
  .featured-slider.slider-style-1 .slider-content {
    position: relative;
    width: calc(100% - 40px);
    max-width: 400px;
    padding: 50px 30px;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    margin-top: -100px;
    margin-bottom: 40px;
    color: #000; }
.featured-slider.slider-style-2 .slider-title {
  font-size: 32px;
  font-size: 2rem; }
.featured-slider.slider-style-2 .slider-for .slider {
  -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;
  min-height: 500px;
  background: #111; }
.featured-slider.slider-style-2 .slider-for .slider-bg:after {
  z-index: 3;
  background: #000;
  opacity: 0.5;
  content: ""; }
.featured-slider.slider-style-2 .slider-for .slider-content {
  width: calc(100% - 120px); }
.featured-slider.slider-style-2 .slider-nav-wrapper {
  position: absolute;
  z-index: 10;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  padding: 0 30px;
  max-width: 1200px; }
.featured-slider.slider-style-2 .slider-nav {
  visibility: hidden;
  pointer-events: none;
  opacity: 0; }
  .featured-slider.slider-style-2 .slider-nav .slick-track {
    box-sizing: border-box; }
  .featured-slider.slider-style-2 .slider-nav .slider {
    cursor: pointer; }
    .featured-slider.slider-style-2 .slider-nav .slider .slider-bg {
      position: relative;
      width: 100%;
      height: 0;
      padding-top: 66.6666%;
      background: #f2f2f2;
      overflow: hidden; }
      .dark-color .featured-slider.slider-style-2 .slider-nav .slider .slider-bg {
        background: #232323; }
      .featured-slider.slider-style-2 .slider-nav .slider .slider-bg:before, .featured-slider.slider-style-2 .slider-nav .slider .slider-bg:after {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        display: block;
        content: "";
        pointer-events: none; }
      .featured-slider.slider-style-2 .slider-nav .slider .slider-bg:before {
        z-index: 1;
        background: #000;
        opacity: 0.4;
        transition: opacity 0.4s; }
      .featured-slider.slider-style-2 .slider-nav .slider .slider-bg:after {
        z-index: 3;
        border: 2px solid #fff;
        box-sizing: border-box; }
        .dark-color .featured-slider.slider-style-2 .slider-nav .slider .slider-bg:after {
          border-color: #111; }
    .featured-slider.slider-style-2 .slider-nav .slider .slider-bg-img {
      z-index: 2; }
    .featured-slider.slider-style-2 .slider-nav .slider .slider-bg-img:after {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: #000;
      content: "";
      opacity: 0.6;
      transition: opacity 0.4s; }
  .featured-slider.slider-style-2 .slider-nav .slick-arrow {
    display: none !important; }
.featured-slider.slider-style-3 .slider-bg, .featured-slider.slider-style-4 .slider-bg {
  width: 100%;
  height: 0;
  padding-top: 150%; }
.featured-slider.slider-style-3 .slider-title:not(:last-child), .featured-slider.slider-style-4 .slider-title:not(:last-child) {
  margin-bottom: 10px; }
.featured-slider.slider-style-3 .meta, .featured-slider.slider-style-4 .meta {
  position: absolute;
  z-index: 9;
  top: 10px;
  right: 0;
  overflow: hidden;
  width: auto;
  padding: 6px 16px;
  border-radius: 99px 0 0 99px;
  color: #fff;
  opacity: 0;
  transition: opacity 0.4s; }
  .featured-slider.slider-style-3 .meta > *, .featured-slider.slider-style-4 .meta > * {
    position: relative;
    z-index: 3;
    text-shadow: 0 5px 10px rgba(0, 0, 0, 0.05); }
  .featured-slider.slider-style-3 .meta:before, .featured-slider.slider-style-4 .meta:before {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background: var(--primary-color);
    content: "";
    opacity: 0.85; }
.featured-slider.slider-style-3 {
  background: #111; }
  .featured-slider.slider-style-3 .slider-content {
    position: absolute;
    z-index: 9;
    bottom: 0;
    left: 0;
    padding: 30px; }
    .featured-slider.slider-style-3 .slider-content > * {
      position: relative;
      z-index: 3; }
    .featured-slider.slider-style-3 .slider-content:before, .featured-slider.slider-style-3 .slider-content:after {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      z-index: 1;
      content: ""; }
    .featured-slider.slider-style-3 .slider-content:before {
      background: #000;
      opacity: 0.4; }
    .featured-slider.slider-style-3 .slider-content:after {
      background: linear-gradient(to right, var(--gradient-start), var(--gradient-end));
      opacity: 0;
      transition: opacity 0.4s; }
  .featured-slider.slider-style-3 .cat-links {
    color: inherit; }
.featured-slider.slider-style-4 {
  width: 100%;
  max-width: 1200px;
  padding: 0 10px;
  margin-top: 20px;
  margin-bottom: 20px; }
  .featured-slider.slider-style-4 .slider {
    margin: 0 10px; }
  .featured-slider.slider-style-4 .slider-bg {
    position: relative;
    background: #f7f7f7; }
  .featured-slider.slider-style-4 .slider-content {
    padding: 15px 0;
    color: #000; }
    .dark-color .featured-slider.slider-style-4 .slider-content {
      color: #fff; }
  .featured-slider.slider-style-4 .slick-arrow {
    margin-top: -50px; }
.featured-slider.slider-style-5 {
  -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; }
  .featured-slider.slider-style-5 .slider-for-wrapper {
    order: 2;
    width: 100%; }
    .featured-slider.slider-style-5 .slider-for-wrapper .slider-wrapper,
    .featured-slider.slider-style-5 .slider-for-wrapper .slick-list,
    .featured-slider.slider-style-5 .slider-for-wrapper .slick-track {
      height: 100%; }
    .featured-slider.slider-style-5 .slider-for-wrapper .slider {
      -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;
      background-color: var(--primary-color);
      background: linear-gradient(to right, var(--gradient-start), var(--gradient-end)); }
    .featured-slider.slider-style-5 .slider-for-wrapper .slider-content {
      position: relative;
      padding: 30px;
      width: 100%;
      text-align: left; }
    .featured-slider.slider-style-5 .slider-for-wrapper .cat-links {
      color: inherit; }
  .featured-slider.slider-style-5 .slider-nav-wrapper {
    order: 1;
    width: 100%;
    background: #111; }
    .featured-slider.slider-style-5 .slider-nav-wrapper .slider-bg {
      width: 100%;
      height: 0;
      padding-top: 100%; }
.featured-slider.slider-style-6 {
  position: relative;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  background: #111; }
  .featured-slider.slider-style-6 .slider-for-wrapper {
    width: 100%;
    height: calc(100vh - 160px);
    min-height: 500px; }
    .featured-slider.slider-style-6 .slider-for-wrapper .slider-wrapper,
    .featured-slider.slider-style-6 .slider-for-wrapper .slick-list,
    .featured-slider.slider-style-6 .slider-for-wrapper .slick-track {
      height: 100%; }
    .featured-slider.slider-style-6 .slider-for-wrapper .slider {
      background: #111; }
    .featured-slider.slider-style-6 .slider-for-wrapper .slider-content {
      position: absolute;
      bottom: 0;
      left: 0;
      width: 100%;
      padding: 150px 30px 50px;
      text-align: left; }
      .featured-slider.slider-style-6 .slider-for-wrapper .slider-content > * {
        position: relative;
        z-index: 3; }
      .featured-slider.slider-style-6 .slider-for-wrapper .slider-content:before {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 1;
        background: linear-gradient(to bottom, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.7));
        content: ""; }
    .featured-slider.slider-style-6 .slider-for-wrapper .slider-title {
      font-size: 32px;
      font-size: 2rem; }
    .featured-slider.slider-style-6 .slider-for-wrapper .cat-links {
      color: inherit; }
  .featured-slider.slider-style-6 .slider-nav-wrapper {
    position: absolute;
    padding: 0 30px;
    background: #fff;
    opacity: 0; }
    .featured-slider.slider-style-6 .slider-nav-wrapper .slider {
      width: 100% !important; }
      .featured-slider.slider-style-6 .slider-nav-wrapper .slider:not(:last-child) {
        border-bottom: 1px solid #e1e1e1; }
      .featured-slider.slider-style-6 .slider-nav-wrapper .slider:before {
        position: absolute;
        top: 50%;
        left: -50px;
        -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
        transform: translateY(-50%);
        display: block;
        width: 0;
        height: 0;
        border-top: 20px solid transparent;
        border-bottom: 20px solid transparent;
        border-right: 20px solid #fff;
        content: "";
        opacity: 0; }
      .featured-slider.slider-style-6 .slider-nav-wrapper .slider.slick-current:before {
        opacity: 1; }
    .featured-slider.slider-style-6 .slider-nav-wrapper .slider-content {
      padding: 30px 0;
      color: #000;
      text-align: left; }
    .featured-slider.slider-style-6 .slider-nav-wrapper .slider-title {
      font-size: 18px;
      font-size: 1.125rem; }
      .featured-slider.slider-style-6 .slider-nav-wrapper .slider-title:not(:last-child) {
        margin-bottom: 10px; }

.featured-section.custom-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-section .section-bg,
.featured-section.custom-section .section-bg-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%; }
.touch .featured-section.custom-section .section-bg .section-bg-img {
  background-attachment: scroll !important; }
.featured-section.custom-section .section-bg-img {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat; }
.featured-section.custom-section .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-section .section-bg:after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
  content: "";
  background: #000;
  opacity: 0.15; }
.featured-section.custom-section .container {
  width: 100%; }
  .featured-section.custom-section .container .content.align-left {
    margin-left: 0;
    text-align: left; }
  .featured-section.custom-section .container .content.align-right {
    margin-right: 0;
    text-align: right; }
  .featured-section.custom-section .container .content > * {
    margin-top: 34px;
    margin-bottom: 0; }
    .featured-section.custom-section .container .content > *:last-child {
      margin-bottom: 34px; }
  .featured-section.custom-section .container .content p + h2 {
    margin-top: 17px; }

/* Homepage Widgets
   ========================================================================== */
.home-widget {
  position: relative;
  z-index: 9;
  padding: 50px 0;
  background-color: var(--bg-color);
  color: var(--text-color); }
  .home-widget.fullwidth .container {
    max-width: 100%;
    padding: 0; }
    .home-widget.fullwidth .container .section-header {
      max-width: calc(100% - 40px); }
  .home-widget.default-color {
    background: none; }
  .home-widget .bg-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    will-change: transform; }
  .home-widget .bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2; }
  .home-widget .container {
    z-index: 3; }
  .home-widget .section-header,
  .home-widget .section-content {
    position: relative;
    z-index: 9; }
  .home-widget .section-header .filter {
    position: absolute;
    top: 10px;
    right: 0;
    font-size: 13px;
    font-size: 0.8125rem;
    font-weight: 500; }
    .home-widget .section-header .filter a: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: "\f061";
      margin-left: 5px;
      color: var(--primary-color);
      font-size: 10px;
      font-size: 0.625rem; }
    .no-touch .home-widget .section-header .filter a:hover {
      color: var(--primary-color); }
  .home-widget.custom-content .section-content > *:last-child {
    margin-bottom: 0; }
  .home-widget.custom-content .section-content .video-block + * {
    margin-top: 20px; }
  .home-widget.promo-blocks .section-content {
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-align-items: flex-start;
    -ms-flex-align: flex-start;
    align-items: flex-start;
    margin: 0 -10px -20px; }
    .home-widget.promo-blocks .section-content .promo-block {
      position: relative;
      width: calc(100% - 20px);
      height: auto;
      margin: 0 10px 20px; }
      .home-widget.promo-blocks .section-content .promo-block .promo-block-img {
        position: relative;
        z-index: 1;
        width: 100%;
        height: 0;
        padding-top: 66.6666%;
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        overflow: hidden; }
      .home-widget.promo-blocks .section-content .promo-block .promo-block-text {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 3;
        -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: 34px;
        color: #fff;
        font-size: 16px;
        font-size: 1rem;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 1px;
        text-shadow: 0 5px 10px rgba(0, 0, 0, 0.25);
        text-align: center; }
        .home-widget.promo-blocks .section-content .promo-block .promo-block-text span {
          position: relative;
          z-index: 3; }
        .home-widget.promo-blocks .section-content .promo-block .promo-block-text:before, .home-widget.promo-blocks .section-content .promo-block .promo-block-text:after {
          position: absolute;
          top: 0;
          left: 0;
          width: 100%;
          height: 100%;
          z-index: 1;
          content: ""; }
        .home-widget.promo-blocks .section-content .promo-block .promo-block-text:before {
          background: #000;
          opacity: 0.3;
          transition: opacity 0.4s; }
        .home-widget.promo-blocks .section-content .promo-block .promo-block-text:after {
          position: absolute;
          top: 50%;
          left: 50%;
          -webkit-transform: translate(-50%, -50%);
          -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
          width: calc(100% - 50px);
          height: calc(100% - 50px);
          border: 1px solid #fff;
          transition: all 0.4s; }
      .no-touch .home-widget.promo-blocks .section-content .promo-block:hover .promo-block-text:before {
        opacity: 0.6; }
      .home-widget.promo-blocks .section-content .promo-block .promo-block-link {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 4; }
  .home-widget.tinysalt-bannr .container {
    overflow: hidden; }
  .home-widget.tinysalt-bannr .section-content {
    text-align: center;
    font-size: 0; }
    .home-widget.tinysalt-bannr .section-content a {
      display: inline-block; }
    .home-widget.tinysalt-bannr .section-content img {
      display: block;
      width: 100%; }
  .home-widget.call-to-action.align-center .section-content {
    text-align: center; }
  .home-widget.call-to-action.align-left .section-content {
    text-align: left; }
  .home-widget.call-to-action.align-right .section-content {
    text-align: right; }
  .home-widget.call-to-action figure.cta-img {
    margin-bottom: 34px; }
  .home-widget.call-to-action .cta-text a:not(.button) {
    text-decoration: underline; }
    .no-touch .home-widget.call-to-action .cta-text a:not(.button):hover {
      text-decoration: none; }
  .home-widget.call-to-action.column-1 .section-content {
    -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; }
  .home-widget.call-to-action.column-1 figure.cta-img {
    width: 100%; }
  .home-widget.call-to-action.column-1.reverse figure.cta-img {
    order: 3;
    margin-top: 34px;
    margin-bottom: 0; }
  .home-widget.featured-categories .widget.tinysalt-widget_cat .cat {
    margin: 30px 15px 0; }
  .home-widget.featured-categories.column-6 .widget.tinysalt-widget_cat .cat, .home-widget.featured-categories.column-7 .widget.tinysalt-widget_cat .cat, .home-widget.featured-categories.column-8 .widget.tinysalt-widget_cat .cat, .home-widget.featured-categories.column-10 .widget.tinysalt-widget_cat .cat {
    width: calc(50% - 30px); }
    .home-widget.featured-categories.column-6 .widget.tinysalt-widget_cat .cat:nth-child(-n+2), .home-widget.featured-categories.column-7 .widget.tinysalt-widget_cat .cat:nth-child(-n+2), .home-widget.featured-categories.column-8 .widget.tinysalt-widget_cat .cat:nth-child(-n+2), .home-widget.featured-categories.column-10 .widget.tinysalt-widget_cat .cat:nth-child(-n+2) {
      margin-top: 0; }
  .home-widget.featured-categories.column-9 .widget.tinysalt-widget_cat .cat {
    width: calc(33.3333% - 20px);
    margin: 30px 10px 0; }
    .home-widget.featured-categories.column-9 .widget.tinysalt-widget_cat .cat:nth-child(-n+3) {
      margin-top: 0; }

@media screen and (min-width: 480px) {
  .featured-slider.slider-style-4 .slider-title {
    font-size: 18px;
    font-size: 1.125rem; } }
@media screen and (min-width: 600px) {
  .featured-slider .slick-arrow:after {
    font-size: 50px;
    font-size: 3.125rem; }
  .featured-slider.slider-style-1 .slick-arrow {
    top: 50%; }
  .featured-slider.slider-style-1 .slider {
    min-height: 500px;
    -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; }
  .featured-slider.slider-style-1 .slider-bg {
    position: static;
    height: initial; }
  .featured-slider.slider-style-1 .slider-content {
    width: 320px;
    padding: 70px 50px;
    background: rgba(255, 255, 255, 0.95);
    margin: auto;
    margin-left: 120px; }
  .featured-slider.slider-style-2 .slider-for .slider-content {
    width: calc(100% - 200px);
    max-width: 700px; }
  .featured-slider.slider-style-4 {
    padding: 0 20px;
    margin-top: 30px; }

  .home-widget.custom-content .lo-row:last-child .lo-column {
    margin-bottom: 0; }
  .home-widget.promo-blocks .section-content .promo-block {
    width: calc(33.333333% - 20px); }
  .home-widget.call-to-action.column-1 .cta-text {
    max-width: 60%; }

  .featured-section.custom-section .custom-content .lo-row .lo-column {
    margin-bottom: 0; } }
@media screen and (min-width: 768px) {
  .featured-slider.slider-style-1 .slider-content {
    width: 380px; }
  .featured-slider.slider-style-2 .slider-for .slider-content {
    padding-bottom: 30px; }
  .featured-slider.slider-style-2 .slider-nav-wrapper {
    position: relative;
    margin-bottom: -40px; }
  .featured-slider.slider-style-2 .slider-nav {
    visibility: visible;
    pointer-events: auto;
    opacity: 1; }
    .featured-slider.slider-style-2 .slider-nav .slider.slick-current .slider-bg:before,
    .featured-slider.slider-style-2 .slider-nav .slider.slick-current .slider-bg-img:after {
      opacity: 0; }
  .featured-slider.slider-style-3 .slider-title {
    font-size: 21px;
    font-size: 1.3125rem; }
  .featured-slider.slider-style-5 {
    align-items: stretch; }
    .featured-slider.slider-style-5 .slider-for-wrapper {
      order: 1;
      width: 50%; }
      .featured-slider.slider-style-5 .slider-for-wrapper .meta {
        margin-top: 50px; }
    .featured-slider.slider-style-5 .slider-nav-wrapper {
      order: 2;
      width: 50%; }
      .featured-slider.slider-style-5 .slider-nav-wrapper .slider-wrapper {
        height: 100%; }
      .featured-slider.slider-style-5 .slider-nav-wrapper .slick-list,
      .featured-slider.slider-style-5 .slider-nav-wrapper .slick-track {
        height: inherit; }
  .featured-slider.slider-style-6 {
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    align-items: stretch; }
    .featured-slider.slider-style-6 .slider-nav-wrapper {
      top: 50%;
      -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
      transform: translateY(-50%);
      right: 30px;
      width: 300px;
      opacity: 1; }
      .featured-slider.slider-style-6 .slider-nav-wrapper .slick-list {
        overflow: visible; }
    .featured-slider.slider-style-6 .slider-for-wrapper .slider-content {
      padding-right: 350px; }

  .home-widget.featured-categories.column-6 .widget.tinysalt-widget_cat .cat {
    width: calc(16.6666% - 30px); }
    .home-widget.featured-categories.column-6 .widget.tinysalt-widget_cat .cat:nth-child(-n+6) {
      margin-top: 0; }
  .home-widget.featured-categories.column-7 .widget.tinysalt-widget_cat .cat {
    width: calc(14.28% - 30px); }
    .home-widget.featured-categories.column-7 .widget.tinysalt-widget_cat .cat:nth-child(-n+7) {
      margin-top: 0; }
  .home-widget.featured-categories.column-8 .widget.tinysalt-widget_cat .cat {
    width: calc(25% - 30px); }
    .home-widget.featured-categories.column-8 .widget.tinysalt-widget_cat .cat:nth-child(-n+4) {
      margin-top: 0; }
  .home-widget.featured-categories.column-9 .widget.tinysalt-widget_cat .cat {
    width: calc(33.3333% - 30px);
    margin-right: 15px;
    margin-left: 15px; }
  .home-widget.featured-categories.column-10 .widget.tinysalt-widget_cat .cat {
    width: calc(20% - 30px); }
    .home-widget.featured-categories.column-10 .widget.tinysalt-widget_cat .cat:nth-child(-n+5) {
      margin-top: 0; }
  .home-widget.call-to-action .section-content {
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex; }
  .home-widget.call-to-action.column-2 figure.cta-img {
    width: 60%;
    margin-bottom: 0; }
  .home-widget.call-to-action.column-2 .cta-text {
    width: 40%; }
  .home-widget.call-to-action.column-2 .cta-img + .cta-text {
    padding-left: 30px; }
  .home-widget.call-to-action.column-2.reverse .section-content {
    flex-direction: row-reverse; }
  .home-widget.call-to-action.column-2.reverse .cta-img + .cta-text {
    padding-right: 30px;
    padding-left: 0; } }
@media screen and (min-width: 1024px) {
  .featured-slider.slider-style-5 .slider-title {
    font-size: 28px;
    font-size: 1.75rem; }
  .featured-slider.slider-style-5 .slider-for-wrapper .slider-content {
    padding: 50px; }

  .home-widget.tinysalt-bannr.large-banner-special .section-content {
    height: 400px;
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    will-change: transform; }
    .home-widget.tinysalt-bannr.large-banner-special .section-content a {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      display: block; }
    .home-widget.tinysalt-bannr.large-banner-special .section-content img {
      opacity: 0;
      visibility: hidden; } }
@media screen and (min-width: 1025px) {
  .featured-slider .slick-arrow {
    width: 70px;
    height: 70px;
    line-height: 70px; }
    .featured-slider .slick-arrow:before {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      z-index: 1;
      background: #000;
      border-radius: 50%;
      content: "";
      opacity: 0;
      transition: opacity 0.4s; }
    .no-touch .featured-slider .slick-arrow:hover:before {
      opacity: 0.7; }
    .no-touch .featured-slider .slick-arrow:hover {
      -webkit-transform: translateY(-50%) scale(0.7);
      -ms-transform: translateY(-50%) scale(0.7);
      transform: translateY(-50%) scale(0.7); }
  .featured-slider.slider-style-3 .slider:hover .meta, .featured-slider.slider-style-4 .slider:hover .meta {
    opacity: 1; }
  .featured-slider.slider-style-3 .slider:hover .slider-content:after {
    opacity: 0.8; }
  .featured-slider.slider-style-4 .slider-bg-img {
    transition: transform 0.3s; }
  .featured-slider.slider-style-4 .slider:hover .slider-bg-img {
    -webkit-transform: scale(1.05);
    -ms-transform: scale(1.05);
    transform: scale(1.05);
    will-change: transform; } }
@media screen and (min-width: 1120px) {
  .featured-slider.slider-style-1 .slider, .featured-slider.slider-style-2 .slider-for .slider {
    height: calc(100vh - 160px);
    min-height: 560px;
    max-height: 660px; }
  .featured-slider.slider-style-1 .slider-title {
    font-size: 30px;
    font-size: 1.875rem; }
  .featured-slider.slider-style-2 {
    margin-bottom: 10px; }
    .featured-slider.slider-style-2 .slider-for .slider-title {
      font-size: 48px;
      font-size: 3rem; }
    .featured-slider.slider-style-2 .slider-nav-wrapper {
      margin-bottom: -70px; }
  .featured-slider.slider-style-3 .slider-title {
    font-size: 24px;
    font-size: 1.5rem; }
  .featured-slider.slider-style-4 .slider-title {
    font-size: 21px;
    font-size: 1.3125rem; }
  .featured-slider.slider-style-5 .slider-for-wrapper .slider-content {
    padding: 50px 80px; }
  .featured-slider.slider-style-5 .slider-for-wrapper .meta {
    margin-top: 100px; }
  .featured-slider.slider-style-5 .slider-title {
    font-size: 40px;
    font-size: 2.5rem; }
  .featured-slider.slider-style-5 .slider-excerpt {
    font-size: 18px;
    font-size: 1.125rem; }
  .featured-slider.slider-style-5 .slider-nav-wrapper .slider-bg {
    padding: 0;
    height: 560px; }
  .featured-slider.slider-style-6 .slider-for-wrapper {
    max-height: 620px; }
    .featured-slider.slider-style-6 .slider-for-wrapper .slider-content {
      padding: 150px 350px 50px 50px; }
    .featured-slider.slider-style-6 .slider-for-wrapper .slider-title {
      font-size: 48px;
      font-size: 3rem; }

  .home.front-page .site-content .main:first-child > .container {
    padding-top: 70px; }

  .home-widget.featured-categories.column-8 .widget.tinysalt-widget_cat .cat {
    width: calc(12.5% - 30px); }
    .home-widget.featured-categories.column-8 .widget.tinysalt-widget_cat .cat:nth-child(-n+8) {
      margin-top: 0; }
  .home-widget.featured-categories.column-9 .widget.tinysalt-widget_cat .cat {
    width: calc(11.1111% - 30px); }
    .home-widget.featured-categories.column-9 .widget.tinysalt-widget_cat .cat:nth-child(-n+9) {
      margin-top: 0; }
  .home-widget.featured-categories.column-10 .widget.tinysalt-widget_cat .cat {
    width: calc(10% - 30px); }
    .home-widget.featured-categories.column-10 .widget.tinysalt-widget_cat .cat:nth-child(-n+10) {
      margin-top: 0; }
  .home-widget.call-to-action.column-2 .cta-img + .cta-text {
    padding-left: 50px; }
  .home-widget.call-to-action.column-2.reverse .cta-img + .cta-text {
    padding-right: 50px;
    padding-left: 0; }
  .home-widget.call-to-action.column-1 .cta-text h2 {
    font-size: 40px;
    font-size: 2.5rem;
    line-height: 1; } }
@media screen and (min-width: 1200px) {
  .featured-slider.slider-style-1 .slider-content {
    margin-left: calc(50vw - 570px); }

  .featured-slider.slider-style-6 .slider-for-wrapper .slider-content {
    padding-right: calc(50vw - 210px);
    padding-left: calc(50vw - 570px); }
  .featured-slider.slider-style-6 .slider-nav-wrapper {
    right: calc(50vw - 570px); } }
@media screen and (min-width: 1440px) {
  .featured-slider.slider-style-1 .slider-content {
    margin-left: calc(50vw - 690px); }

  .featured-slider.slider-style-2 .slider-for .slider-content {
    max-width: 1000px; }
  .featured-slider.slider-style-2 .slider-for .slider-title {
    font-size: 80px;
    font-size: 5rem; }
  .featured-slider.slider-style-2 .cat-links {
    font-size: 14px;
    font-size: 0.875rem; }

  .featured-slider.slider-style-4 {
    max-width: 1440px; }

  .featured-slider.slider-style-6 .slider-for-wrapper .slider-content {
    padding-right: calc(50vw - 330px);
    padding-left: calc(50vw - 690px); }
  .featured-slider.slider-style-6 .slider-nav-wrapper {
    right: calc(50vw - 690px); }

  .home-widget.call-to-action .cta-text h2 {
    font-size: 46px;
    font-size: 2.875rem; } }
@media screen and (min-width: 1440px) and (max-width: 1500px) {
  .featured-slider.slider-style-1 .slider-content {
    margin-left: calc(50vw - 660px); }

  .featured-slider.slider-style-6 .slider-for-wrapper .slider-content {
    padding-left: calc(50vw - 660px); }
  .featured-slider.slider-style-6 .slider-nav-wrapper {
    right: calc(50vw - 660px); } }
@media screen and (min-width: 600px) and (max-width: 1024px) {
  .home-widget.promo-blocks .section-content .promo-block .promo-block-text {
    padding: 20px;
    font-size: 13px;
    font-size: 0.8125rem; }
    .home-widget.promo-blocks .section-content .promo-block .promo-block-text:after {
      width: calc(100% - 30px);
      height: calc(100% - 30px); } }
@media screen and (max-width: 767px) {
  .featured-slider.slider-style-5 .slider-content > *:not(:last-child) {
    margin-bottom: 20px; }
  .featured-slider.slider-style-5 .slider-for-wrapper {
    background-color: var(--primary-color);
    background: linear-gradient(to right, var(--gradient-start), var(--gradient-end)); }
    .featured-slider.slider-style-5 .slider-for-wrapper .slider {
      background: none; } }
@media screen and (max-width: 599px) {
  .featured-slider.slider-style-2 .slick-arrow.slick-prev {
    left: 0; }
  .featured-slider.slider-style-2 .slick-arrow.slick-next {
    right: 0; }

  .home-widget .section-header .filter {
    position: relative;
    top: auto;
    right: auto;
    margin: -40px auto 30px;
    text-align: center; } }
/* ==========================================================================
   6.0 Blog & Posts
   ========================================================================== */
/**
 * Categories
 */
.cat-links {
  color: var(--primary-color);
  font-size: 11px;
  font-size: 0.6875rem;
  font-weight: 500; }
  .cat-links a {
    position: relative;
    display: inline-block;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase; }
    .cat-links a:before {
      position: absolute;
      bottom: 0;
      left: 0;
      -webkit-transform: scaleX(0);
      -ms-transform: scaleX(0);
      transform: scaleX(0);
      transform-origin: 0% 50%;
      width: calc(100% - 1px);
      height: 1px;
      background: currentColor;
      content: "";
      transition: transform 0.4s; }
    .no-touch .cat-links a:hover:before {
      -webkit-transform: scaleX(1);
      -ms-transform: scaleX(1);
      transform: scaleX(1); }
  .cat-links a + a {
    margin-left: 2px; }

/**
 * Read More Button
 */
.more-btn .read-more-btn {
  position: relative;
  display: inline-block;
  width: auto;
  font-size: 12px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  line-height: 28px;
  overflow: hidden; }
  .more-btn .read-more-btn:before, .more-btn .read-more-btn:after {
    position: absolute;
    bottom: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 1px;
    background: var(--primary-color);
    content: "";
    transition: transform 0.4s ease; }
  .more-btn .read-more-btn:before {
    transform-origin: 100% 0; }
  .more-btn .read-more-btn:after {
    -webkit-transform: scaleX(0);
    -ms-transform: scaleX(0);
    transform: scaleX(0);
    transform-origin: 0 100%; }
  .no-touch .more-btn .read-more-btn:hover:before {
    -webkit-transform: scaleX(0);
    -ms-transform: scaleX(0);
    transform: scaleX(0); }
  .no-touch .more-btn .read-more-btn:hover:after {
    -webkit-transform: scaleX(1);
    -ms-transform: scaleX(1);
    transform: scaleX(1);
    transition-delay: 0.4s; }

/* 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 .post,
.posts .featured-img img,
.posts .post-content {
  width: 100%; }
.posts .featured-img-container {
  position: relative;
  display: block;
  width: 100%;
  height: 0;
  padding-top: 66.6666%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat; }
.posts .post-bg {
  position: relative;
  width: 100%;
  height: 0;
  padding-top: 66.6666%;
  pointer-events: none; }
.posts.img-ratio-4-3 .featured-img-container,
.posts.img-ratio-4-3 .post-bg {
  padding-top: 75%; }
.posts.img-ratio-1-1 .featured-img-container,
.posts.img-ratio-1-1 .post-bg {
  padding-top: 100%; }
.posts.img-ratio-2-3 .featured-img-container,
.posts.img-ratio-2-3 .post-bg {
  padding-top: 150%; }
.posts .post-title {
  margin-bottom: 12px;
  font-size: 21px;
  font-size: 1.3125rem; }
.posts.large-title .post-title {
  font-size: 26px;
  font-size: 1.625rem; }
.posts .post-excerpt {
  margin-bottom: 20px;
  font-size: 15px;
  font-size: 0.9375rem; }
  .posts .post-excerpt:last-child,
  .posts .post-excerpt p {
    margin-bottom: 0; }
.posts .post-header {
  width: 100%;
  margin-bottom: 15px; }
  .posts .post-header:last-child,
  .posts .post-header > *:last-child {
    margin-bottom: 0; }
  .posts .post-header .cat-links,
  .posts .post-header .meta {
    display: inline-block; }
  .posts .post-header .cat-links + .meta {
    margin-left: 10px; }
.posts .post {
  position: relative;
  margin-top: 35px;
  overflow: hidden; }
  .posts .post:first-child {
    margin-top: 0; }
  .posts .post .featured-img {
    position: relative;
    width: 100%;
    margin: 0;
    overflow: hidden; }
    .posts .post .featured-img a,
    .posts .post .featured-img img {
      display: block; }
    .posts .post .featured-img img,
    .posts .post .featured-img .featured-img-container {
      transition: transform 1s ease; }
  .posts .post .post-content {
    position: relative;
    width: 100%;
    padding: 0 0 25px; }
  .posts .post .featured-img + .post-content {
    padding-top: 25px; }
.posts .overlay-label {
  position: absolute;
  z-index: 9;
  opacity: 0;
  transition: opacity 0.4s; }
  .posts .overlay-label.time {
    top: 16px;
    left: 0;
    overflow: hidden;
    width: auto;
    padding: 7px 16px;
    border-radius: 0 99px 99px 0;
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    font-size: 12px;
    font-size: 0.75rem;
    font-weight: 500; }
  .posts .overlay-label.like {
    top: 10px;
    right: 10px;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: #fff;
    color: #e92e2e;
    line-height: 47px;
    text-align: center;
    cursor: pointer; }
    .posts .overlay-label.like.liked {
      background: #e92e2e;
      color: #fff; }
    .no-touch .posts .overlay-label.like:not(.liked):hover i {
      -webkit-animation: heartBeat 1s infinite;
      animation: heartBeat 1s infinite; }
    .posts .overlay-label.like i {
      font-size: 15px;
      font-size: 0.9375rem;
      line-height: inherit; }
  .posts .overlay-label.format-label {
    top: 10px;
    right: 10px;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
    line-height: 45px;
    text-align: center;
    opacity: 1;
    pointer-events: none; }
    .posts .overlay-label.format-label i {
      font-size: 15px;
      font-size: 0.9375rem;
      line-height: inherit; }
    .posts .overlay-label.format-label.video-format i {
      font-size: 12px;
      font-size: 0.75rem;
      -webkit-transform: translateX(1px);
      -ms-transform: translateX(1px);
      transform: translateX(1px); }
  .posts .overlay-label.format-label + .overlay-label.like {
    right: 60px; }
.posts.layout-masonry .masonry-column {
  position: relative;
  width: 100%; }
.posts .post.sticky .post-title {
  position: relative; }
  .posts .post.sticky .post-title:before {
    position: relative;
    display: inline-block;
    margin-right: 5px;
    color: var(--primary-color);
    font-family: 'ElegantIcons';
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    content: "\e078";
    font-size: 14px;
    font-size: 0.875rem;
    line-height: 1; }
.posts.large-title .post.sticky .post-title:before {
  font-size: 18px;
  font-size: 1.125rem; }
.posts.style-overlay .post.sticky .post-title:before {
  display: block;
  margin: 0 0 5px; }
.no-touch .posts .post:hover img,
.no-touch .posts .post:hover .featured-img-container {
  -webkit-transform: scale(1.06);
  -ms-transform: scale(1.06);
  transform: scale(1.06);
  will-change: transform; }
.no-touch .posts .post:hover .overlay-label {
  opacity: 1; }
.no-touch .posts .post:hover .overlay-label.format-label {
  background: rgba(0, 0, 0, 0.85); }

.no-touch .posts.style-normal .post-title a:hover {
  color: var(--primary-color); }

.thumbnail-rounded .posts.style-normal .post .featured-img {
  border-radius: 16px; }
.thumbnail-rounded .posts.style-overlay:not(.no-gap) .post {
  border-radius: 16px;
  overflow: hidden;
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0); }

/* Posts Archive - Normal Style
   ========================================================================== */
.posts.style-normal .post-footer {
  position: relative;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex; }
  .posts.style-normal .post-footer .more-btn {
    margin-left: 0; }
  .posts.style-normal .post-footer .meta {
    margin-right: 0; }
.posts.style-normal .post > * {
  position: relative;
  z-index: 3; }

/* Posts Archive - Overlay Style
   ========================================================================== */
.posts.style-overlay .post {
  background: #333; }
.posts.style-overlay .post-content {
  position: absolute;
  z-index: 8;
  bottom: 0;
  left: 0;
  width: 100%;
  max-height: 100%;
  padding: 25px;
  color: #fff;
  pointer-events: none;
  transition: opacity 0.4s;
  overflow: hidden; }
  .posts.style-overlay .post-content .post-excerpt {
    color: inherit; }
  .posts.style-overlay .post-content > * {
    position: relative;
    z-index: 3; }
  .posts.style-overlay .post-content a {
    pointer-events: auto; }
.posts.style-overlay .post-title:not(:last-child) {
  margin-bottom: 5px; }
.posts.style-overlay .featured-img:before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background: #000;
  content: "";
  opacity: 0.3;
  transition: opacity 0.4s;
  pointer-events: none; }
.posts.style-overlay.overlay-normal .cat-links,
.posts.style-overlay.overlay-normal .post-title:before {
  color: #fff; }
.posts.style-overlay.overlay-normal .post-content {
  opacity: 1; }
.no-touch .posts.style-overlay.overlay-normal .post:hover .featured-img:before {
  opacity: 0.45; }
.touch .posts.style-overlay.overlay-normal .featured-img:before {
  opacity: 0.5; }
.posts.style-overlay.overlay-slide .featured-img:before {
  display: none; }
.posts.style-overlay.overlay-slide .post-content > * {
  opacity: 0;
  transition: opacity 0.3s ease; }
.posts.style-overlay.overlay-slide .post-content:before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background: rgba(0, 0, 0, 0.7);
  -webkit-transform: translate(0, 100%);
  -ms-transform: translate(0, 100%);
  transform: translate(0, 100%);
  transition: transform 0.3s;
  content: "";
  pointer-events: none; }
.posts.style-overlay.overlay-slide .post-title {
  margin-bottom: 0;
  font-size: 18px;
  font-size: 1.125rem; }
.posts.style-overlay.overlay-slide.large-title .post-title {
  font-size: 21px;
  font-size: 1.3125rem; }
.no-touch .posts.style-overlay.overlay-slide .post:hover .post-content:before {
  -webkit-transform: translate(0, 0);
  -ms-transform: translate(0, 0);
  transform: translate(0, 0); }
.no-touch .posts.style-overlay.overlay-slide .post:hover .post-content > * {
  opacity: 1;
  transition-delay: 0.3s; }
.posts.style-overlay.overlay-colorful .featured-img:after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background: linear-gradient(to right, var(--gradient-start), var(--gradient-end));
  content: "";
  opacity: 0;
  transition: opacity 0.4s;
  pointer-events: none; }
.posts.style-overlay.overlay-colorful .cat-links,
.posts.style-overlay.overlay-colorful .post-title:before {
  color: #fff; }
.posts.style-overlay.overlay-colorful .post-content:before {
  opacity: 0; }
.posts.style-overlay.overlay-colorful.large-title .post-title {
  font-size: 26px;
  font-size: 1.625rem; }
.no-touch .posts.style-overlay.overlay-colorful .post:hover .featured-img:before {
  opacity: 0.4; }
.no-touch .posts.style-overlay.overlay-colorful .post:hover .featured-img:after {
  opacity: 0.8; }
.touch .posts.style-overlay.overlay-colorful .featured-img:before {
  opacity: 0.5; }

/* Posts Archive - Large Layout + Overlay Style
   ========================================================================== */
.posts.layout-large.style-overlay .post-header {
  margin-bottom: 0; }
.posts.layout-large.style-overlay .featured-img {
  width: 100%;
  height: 0;
  padding-top: 40%;
  transition: transform 1s ease; }
  .posts.layout-large.style-overlay .featured-img img {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    object-fit: cover; }
.posts.layout-large.style-overlay .post-bg {
  padding-top: 40%; }
.no-touch .posts.layout-large.style-overlay .post:hover .featured-img {
  -webkit-transform: scale(1.06);
  -ms-transform: scale(1.06);
  transform: scale(1.06); }
.posts.layout-large.style-overlay.overlay-normal .post, .posts.layout-large.style-overlay.overlay-colorful .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: center;
  justify-content: center; }
.posts.layout-large.style-overlay.overlay-normal .post-content, .posts.layout-large.style-overlay.overlay-colorful .post-content {
  bottom: auto;
  left: auto;
  text-align: center; }

.posts.layout-large.style-normal .post-title, .posts.layout-large.overlay-normal .post-title, .posts.layout-large.overlay-colorful .post-title {
  font-size: 26px;
  font-size: 1.625rem; }

/* Posts Archive - List Layout + Normal Style
   ========================================================================== */
.posts.layout-list.style-normal .post:not(:first-child) {
  padding-top: 30px;
  margin-top: 30px;
  border-top: 1px solid #f2f2f2; }
  .dark-color .posts.layout-list.style-normal .post:not(:first-child) {
    border-top-color: #393939; }
.posts.layout-list.style-normal .post-content {
  padding-bottom: 0; }
.posts.layout-list.style-normal .featured-img {
  background: #111; }

/* Posts Archive - List Layout + Overlay Style
   ========================================================================== */
.posts.layout-list.style-overlay .featured-img-container,
.posts.layout-list.style-overlay .post-bg {
  padding-top: 40%; }
.posts.layout-list.style-overlay .post-content {
  right: 0;
  left: auto;
  -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: 100%; }
.posts.layout-list.style-overlay .post-header {
  margin-bottom: 0; }
.posts.layout-list.style-overlay .post-excerpt {
  display: none; }
.posts.layout-list.style-overlay.overlay-slide .post-content:before {
  -webkit-transform: translate(100%, 0);
  -ms-transform: translate(100%, 0);
  transform: translate(100%, 0); }

.posts.layout-grid.style-normal .post.sticky .post-title:before {
  -webkit-transform: translateY(-1px);
  -ms-transform: translateY(-1px);
  transform: translateY(-1px); }

.posts.layout-grid.style-overlay.no-gap .post {
  margin-top: 0; }

.posts.layout-grid.style-overlay.small-gap .post {
  margin-top: 4px; }
  .posts.layout-grid.style-overlay.small-gap .post:first-child {
    margin-top: 0; }

/* Post Navigation
   ========================================================================== */
.pagination {
  position: relative;
  width: 100%;
  margin: 50px 0 10px;
  text-align: center;
  clear: both; }
  .pagination .pagination-container {
    display: block;
    width: 100%; }
  .pagination a,
  .pagination span.page-numbers {
    color: currentColor;
    font-size: 14px;
    font-size: 0.875rem;
    font-weight: 500;
    line-height: 32px; }
  .pagination .page-numbers {
    display: inline-block;
    padding: 0;
    margin: 0 2px;
    height: 32px;
    border-radius: 999px;
    line-height: 32px;
    text-align: center; }
    .pagination .page-numbers.prev, .pagination .page-numbers.next {
      position: relative;
      padding: 0 18px; }
      .pagination .page-numbers.prev:after, .pagination .page-numbers.next:after {
        font-family: 'ElegantIcons';
        speak: none;
        font-style: normal;
        font-weight: normal;
        font-variant: normal;
        text-transform: none;
        line-height: 1;
        -webkit-font-smoothing: antialiased;
        font-size: 16px;
        font-size: 1rem;
        line-height: 32px;
        position: absolute;
        top: 0; }
    .pagination .page-numbers.prev {
      padding-left: 44px; }
    .pagination .page-numbers.prev:after {
      left: 18px;
      content: "\34"; }
    .pagination .page-numbers.next {
      padding-right: 44px; }
    .pagination .page-numbers.next:after {
      right: 18px;
      content: "\35"; }
    .pagination .page-numbers:not(.prev):not(.next) {
      width: 32px; }
      .pagination .page-numbers:not(.prev):not(.next).current {
        border: 2px solid;
        line-height: 28px; }
  .pagination span.page-numbers.prev, .pagination span.page-numbers.next {
    opacity: 0.35; }
  .no-touch .pagination a.page-numbers:hover {
    background: #eaeaea; }
  .no-touch .dark-color .pagination a.page-numbers:hover {
    background: #373737; }
  .pagination a.load-more-btn {
    position: relative;
    display: inline-block;
    width: auto;
    padding: 5px 30px;
    background: #000;
    border-radius: 999px;
    overflow: hidden;
    color: #fff;
    font-size: 12px;
    font-size: 0.75rem;
    letter-spacing: 2px;
    font-weight: 500;
    text-transform: uppercase;
    transition: all 0s; }
    .dark-color .pagination a.load-more-btn {
      background: #fff;
      color: #000; }
    .pagination a.load-more-btn span {
      position: relative;
      z-index: 3; }
    .pagination a.load-more-btn.disabled {
      pointer-events: none; }
  .pagination .load-more .tinysalt-loader {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    opacity: 0; }
  .pagination .load-more.loading .tinysalt-loader {
    opacity: 1; }
  .pagination .load-more.loading .load-more-btn {
    opacity: 0; }
  .pagination .no-more-posts-message {
    font-size: 14px;
    font-size: 0.875rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.4; }
    .pagination .no-more-posts-message:before, .pagination .no-more-posts-message:after {
      content: " - "; }

@media screen and (min-width: 768px) {
  .posts .post:not(:first-child) {
    margin-top: 40px; }
  .posts.layout-masonry .posts-wrapper {
    display: block;
    margin-left: -40px; }
  .posts.layout-masonry .masonry-column {
    float: left;
    width: 50%;
    padding-left: 40px; }
  .posts.layout-masonry.adaptive-column .masonry-column {
    width: 50%; }
  .posts.layout-masonry.column-3 .masonry-column {
    width: 33.333333%; }
  .posts.layout-large.style-overlay .post-title {
    font-size: 28px;
    font-size: 1.75rem; }
  .posts.layout-large.style-overlay.overlay-normal .post-content, .posts.layout-large.style-overlay.overlay-colorful .post-content {
    padding: 40px; }
  .posts.layout-list.style-normal .post {
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap; }
  .posts.layout-list.style-normal .featured-img {
    width: calc(50% - 30px);
    margin-right: 30px; }
  .posts.layout-list.style-normal .post-content {
    -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;
    padding: 0; }
    .posts.layout-list.style-normal .post-content > * {
      width: 100%; }
  .posts.layout-list.style-normal .featured-img + .post-content {
    width: 50%;
    padding: 0; }
  .posts.layout-list.style-overlay .featured-img:before,
  .posts.layout-list.style-overlay .featured-img:after {
    right: 0;
    left: auto;
    width: 40%; }
  .no-touch .posts.layout-list.style-overlay.overlay-normal .post:not(:hover) .featured-img:before, .no-touch .posts.layout-list.style-overlay.overlay-colorful .post:not(:hover) .featured-img:before {
    opacity: 0.4; }
  .no-touch .posts.layout-list.style-overlay.overlay-normal .post:hover .featured-img:before {
    opacity: 0.6; }
  .posts.layout-list.style-overlay .post-content {
    width: 40%; }
  .posts.layout-list.style-overlay .overlay-label.like {
    right: calc(40% + 10px); }
  .posts.layout-list.style-overlay .post-excerpt {
    display: block;
    margin-top: 15px; }
  .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 {
    margin-right: 0;
    margin-left: 40px;
    width: calc(50% - 40px); }
  .posts.layout-grid .post:nth-child(-n+2) {
    margin-top: 0 !important; }
  .posts.layout-grid.column-3 .post:nth-child(-n+3) {
    margin-top: 0 !important; }
  .posts.layout-grid.column-3 .post, .posts.layout-grid.column-2-3 .post:nth-child(5n+3), .posts.layout-grid.column-2-3 .post:nth-child(5n+4), .posts.layout-grid.column-2-3 .post:nth-child(5n+5) {
    width: calc(33.333333% - 40px); }
    .posts.layout-grid.column-3 .post .meta, .posts.layout-grid.column-2-3 .post:nth-child(5n+3) .meta, .posts.layout-grid.column-2-3 .post:nth-child(5n+4) .meta, .posts.layout-grid.column-2-3 .post:nth-child(5n+5) .meta {
      font-size: 11px;
      font-size: 0.6875rem; }
  .posts.layout-grid.no-gap .posts-wrapper {
    margin-left: 0; }
  .posts.layout-grid.no-gap .post {
    margin-left: 0;
    width: 50%; }
  .posts.layout-grid.no-gap.column-3 .post, .posts.layout-grid.no-gap.column-2-3 .post:nth-child(5n+3), .posts.layout-grid.no-gap.column-2-3 .post:nth-child(5n+4), .posts.layout-grid.no-gap.column-2-3 .post:nth-child(5n+5) {
    width: 33.333333%; }
  .posts.layout-grid.small-gap .posts-wrapper {
    margin-left: -4px; }
  .posts.layout-grid.small-gap .post {
    margin-left: 4px;
    width: calc(50% - 4px); }
  .posts.layout-grid.small-gap.column-3 .post, .posts.layout-grid.small-gap.column-2-3 .post:nth-child(5n+3), .posts.layout-grid.small-gap.column-2-3 .post:nth-child(5n+4), .posts.layout-grid.small-gap.column-2-3 .post:nth-child(5n+5) {
    width: calc(33.333333% - 4px); } }
@media screen and (min-width: 1024px) {
  .posts.layout-grid.overlay-normal.column-2 .post-title, .posts.layout-grid.overlay-normal.column-2-3 .post:nth-child(5n+1) .post-title, .posts.layout-grid.overlay-normal.column-2-3 .post:nth-child(5n+2) .post-title, .posts.layout-grid.overlay-colorful.column-2 .post-title, .posts.layout-grid.overlay-colorful.column-2-3 .post:nth-child(5n+1) .post-title, .posts.layout-grid.overlay-colorful.column-2-3 .post:nth-child(5n+2) .post-title {
    font-size: 26px;
    font-size: 1.625rem; }
  .posts.layout-grid.overlay-normal.large-title.column-2 .post-title, .posts.layout-grid.overlay-normal.large-title.column-2-3 .post:nth-child(5n+1) .post-title, .posts.layout-grid.overlay-normal.large-title.column-2-3 .post:nth-child(5n+2) .post-title, .posts.layout-grid.overlay-colorful.large-title.column-2 .post-title, .posts.layout-grid.overlay-colorful.large-title.column-2-3 .post:nth-child(5n+1) .post-title, .posts.layout-grid.overlay-colorful.large-title.column-2-3 .post:nth-child(5n+2) .post-title {
    font-size: 32px;
    font-size: 2rem; }
    .posts.layout-grid.overlay-normal.large-title.column-2 .post-title:not(:last-child), .posts.layout-grid.overlay-normal.large-title.column-2-3 .post:nth-child(5n+1) .post-title:not(:last-child), .posts.layout-grid.overlay-normal.large-title.column-2-3 .post:nth-child(5n+2) .post-title:not(:last-child), .posts.layout-grid.overlay-colorful.large-title.column-2 .post-title:not(:last-child), .posts.layout-grid.overlay-colorful.large-title.column-2-3 .post:nth-child(5n+1) .post-title:not(:last-child), .posts.layout-grid.overlay-colorful.large-title.column-2-3 .post:nth-child(5n+2) .post-title:not(:last-child) {
      margin-bottom: 10px; }
  .posts.layout-grid.overlay-slide.column-2 .post-title, .posts.layout-grid.overlay-slide.column-2-3 .post:nth-child(5n+1) .post-title, .posts.layout-grid.overlay-slide.column-2-3 .post:nth-child(5n+2) .post-title {
    font-size: 21px;
    font-size: 1.3125rem; }
  .posts.layout-grid.overlay-slide.large-title.column-2 .post-title, .posts.layout-grid.overlay-slide.large-title.column-2-3 .post:nth-child(5n+1) .post-title, .posts.layout-grid.overlay-slide.large-title.column-2-3 .post:nth-child(5n+2) .post-title {
    font-size: 24px;
    font-size: 1.5rem; }

  .posts.layout-masonry.adaptive-column .masonry-column {
    width: 33.333333%; } }
@media screen and (min-width: 1120px) {
  .posts.layout-large.style-normal .post-title {
    font-size: 32px;
    font-size: 2rem; }
  .posts.layout-large.style-normal .post-excerpt {
    font-size: 17px;
    font-size: 1.0625rem; }
  .posts.layout-large.style-normal .post.sticky .post-title:before {
    -webkit-transform: translateY(-3px);
    -ms-transform: translateY(-3px);
    transform: translateY(-3px);
    font-size: 18px;
    font-size: 1.125rem; }
  .posts.layout-large.style-overlay.overlay-normal .post-title, .posts.layout-large.style-overlay.overlay-colorful .post-title {
    font-size: 44px;
    font-size: 2.75rem; }
    .site-content[class*="with-sidebar-"] .primary .posts.layout-large.style-overlay.overlay-normal .post-title, .site-content[class*="with-sidebar-"] .primary .posts.layout-large.style-overlay.overlay-colorful .post-title {
      font-size: 28px;
      font-size: 1.75rem; }
  .posts.layout-large.style-overlay.overlay-normal .post-title:not(:last-child), .posts.layout-large.style-overlay.overlay-colorful .post-title:not(:last-child) {
    margin-bottom: 15px; }
  .posts.layout-large.style-overlay.overlay-normal .post-content, .posts.layout-large.style-overlay.overlay-colorful .post-content {
    max-width: 1000px; }
  .posts.layout-list .post-title, .posts.layout-list.style-overlay.overlay-slide .post-title {
    font-size: 24px;
    font-size: 1.5rem; }
  .posts.layout-list .post.sticky .post-title:before {
    -webkit-transform: translateY(-2px);
    -ms-transform: translateY(-2px);
    transform: translateY(-2px); }
  .site-content:not([class*="with-sidebar-"]) .posts.layout-list .post-title, .site-content:not([class*="with-sidebar-"]) .posts.layout-list.style-overlay.overlay-slide .post-title {
    font-size: 36px;
    font-size: 2.25rem;
    margin-bottom: 10px; } }
@media screen and (min-width: 1440px) {
  .posts.layout-large.style-overlay.overlay-normal .post-title, .posts.layout-large.style-overlay.overlay-colorful .post-title {
    font-size: 56px;
    font-size: 3.5rem; }

  .site-content:not([class*="with-sidebar-"]) .posts.layout-masonry.adaptive-column {
    position: relative;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    width: 100vw;
    max-width: 1920px;
    padding: 0 60px; } }
@media screen and (min-width: 1281px) {
  .posts.layout-masonry.adaptive-column .masonry-column {
    width: 25%; } }
@media screen and (min-width: 1441px) {
  .posts.layout-masonry.adaptive-column .masonry-column {
    width: 20%; } }
@media screen and (min-width: 767px) and (max-width: 1023px) {
  .posts.layout-grid.style-overlay.column-3 .post .post-title, .posts.layout-grid.style-overlay.column-2-3 .post:nth-child(5n+3) .post-title, .posts.layout-grid.style-overlay.column-2-3 .post:nth-child(5n+4) .post-title, .posts.layout-grid.style-overlay.column-2-3 .post:nth-child(5n+5) .post-title {
    margin-bottom: 0;
    font-size: 18px;
    font-size: 1.125rem; }

  .posts.style-overlay.layout-grid .post-content, .posts.style-overlay.layout-masonry .post-content {
    padding: 12px; }

  .posts.layout-masonry.column-3 .masonry-column {
    width: 50%; } }
@media screen and (max-width: 480px) {
  .posts.layout-list.style-overlay .featured-img-container,
  .posts.layout-list.style-overlay .post-bg,
  .posts.layout-large.style-overlay .featured-img {
    padding-top: 66.66%; } }
/* ==========================================================================
   7.0 Single Post & Pages
   ========================================================================== */
.single .site-header,
.page .site-header {
  margin-bottom: 50px; }

.single .primary > article .entry-header,
.page .primary > article .entry-header {
  margin-bottom: 34px;
  text-align: left; }

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

article .entry-content > .tinysalt-bannr:last-child {
  margin-top: 50px; }

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

.post-edit-link {
  padding: 3px 15px;
  background: #111;
  border-radius: 50px;
  box-shadow: none;
  color: #fff;
  font-size: 13px;
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0; }
  .dark-color .post-edit-link {
    background: #fff;
    color: #000; }

/**
 * Page Links of Paginated Post
 */
.entry-content .page-links {
  display: block;
  clear: both;
  font-weight: 500;
  font-size: 13px; }
  .entry-content .page-links .page-links-container > * {
    margin-right: 5px; }
  .entry-content .page-links .post-page-numbers {
    display: inline-block;
    width: 30px;
    height: 30px;
    margin-right: 5px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: none !important;
    /* Remove the default link style (only for normal text link) */
    text-align: center;
    color: inherit;
    font-weight: 600;
    line-height: 28px; }
    .dark-color .entry-content .page-links .post-page-numbers {
      border-color: rgba(255, 255, 255, 0.15); }
  .no-touch .entry-content .page-links a:hover,
  .entry-content .page-links span.post-page-numbers {
    background: var(--primary-color);
    color: #fff; }

/* Article Share Buttons
   ========================================================================== */
.primary .article-share {
  position: relative;
  width: 100%;
  margin: 34px 0 0;
  text-align: center;
  font-size: 0; }
  .primary .article-share:before {
    position: absolute;
    bottom: 20px;
    left: 0;
    z-index: 1;
    display: block;
    width: 100%;
    height: 1px;
    background: #000;
    content: "";
    opacity: 0.1; }
    .dark-color .primary .article-share:before {
      background: #fff;
      opacity: 0.2; }
  .primary .article-share .article-share-container {
    position: relative;
    z-index: 3;
    display: inline-block;
    padding: 0 30px;
    background: var(--bg-color); }
  .primary .article-share .article-share-container a {
    position: relative;
    float: left;
    display: block;
    width: 40px;
    height: 40px;
    padding: 0;
    margin: 2px;
    border-radius: 50%;
    color: #fff;
    font-size: 16px;
    font-size: 1rem;
    line-height: 40px;
    text-align: center; }
    .primary .article-share .article-share-container a i {
      font-size: 16px;
      font-size: 1rem; }
    .primary .article-share .article-share-container a span {
      display: none; }
    .primary .article-share .article-share-container a[title="Like"] {
      background: #e92e2e; }
      .primary .article-share .article-share-container a[title="Like"] span.like-count {
        position: absolute;
        top: -35px;
        -webkit-transform: translateY(5px);
        -ms-transform: translateY(5px);
        transform: translateY(5px);
        display: block;
        width: 40px;
        color: #000;
        text-align: center;
        font-size: 12px;
        font-size: 0.75rem;
        font-weight: 800;
        opacity: 0;
        transition: 0.3s; }
        .dark-color .primary .article-share .article-share-container a[title="Like"] span.like-count {
          color: #fff; }
      .primary .article-share .article-share-container a[title="Like"]:hover span.like-count {
        opacity: 1;
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0); }
      .no-touch .primary .article-share .article-share-container a[title="Like"]:not(.liked):hover i {
        -webkit-animation: heartBeat 1s infinite;
        animation: heartBeat 1s infinite; }
    .primary .article-share .article-share-container a[title="Facebook"] {
      background: #3b5998; }
    .primary .article-share .article-share-container a[title="Twitter"] {
      background: #1da1f2; }
    .primary .article-share .article-share-container a[title="Pinterest"] {
      background: #bd081c; }
    .primary .article-share .article-share-container a[title="Google plus"] {
      background: #dd4b39; }
    .primary .article-share .article-share-container a[title="WhatsApp"] {
      background: #25d366; }
    .primary .article-share .article-share-container a[title="Yummly"] {
      background: #e16120; }
      .primary .article-share .article-share-container a[title="Yummly"] img {
        position: absolute;
        top: 50%;
        left: 50%;
        -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);
        width: 38px;
        height: 38px; }

/* Archive Page
   ========================================================================== */
.archive .page-header {
  position: relative;
  margin-bottom: 50px;
  background: rgba(0, 0, 0, 0.025);
  text-align: center; }
  .archive .page-header .page-header-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat; }
    .archive .page-header .page-header-bg:after {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      z-index: 2;
      background: #000;
      opacity: 0.5;
      content: ""; }
    .archive .page-header .page-header-bg + .page-header-text {
      z-index: 3;
      color: #fff; }
      .archive .page-header .page-header-bg + .page-header-text span {
        color: inherit; }
  .archive .page-header .page-header-text {
    position: relative;
    z-index: 3;
    width: 100%;
    max-width: 800px;
    padding: 50px 20px; }
    .archive .page-header .page-header-text span {
      display: block;
      margin-bottom: 12px;
      font-size: 12px;
      font-size: 0.75rem;
      text-transform: uppercase;
      letter-spacing: 1px;
      font-weight: 500;
      color: #767676; }
  .archive .page-header .page-title {
    margin: 0;
    font-size: 36px;
    font-size: 2.25rem;
    line-height: 1.2; }
  .archive .page-header .description {
    margin-top: 17px;
    font-size: 18px;
    font-size: 1.125rem; }
    .archive .page-header .description p {
      margin-bottom: 0; }

.archive.dark-color .page-header {
  background: rgba(255, 255, 255, 0.05); }

.archive.author .page-header .author-photo {
  width: auto;
  margin-bottom: 15px; }
  .archive.author .page-header .author-photo img {
    width: 100px;
    padding: 2px;
    background: #fff; }
.archive.author .page-header .author-bio-text {
  margin-top: 15px;
  text-align: center;
  font-size: 16px;
  font-size: 1rem; }
  .archive.author .page-header .author-bio-text *:last-child {
    margin-bottom: 0; }
.archive.author .page-header .page-title {
  margin: 0; }
.archive.author .page-header .author-social {
  margin-top: 10px; }
  .archive.author .page-header .author-social ul.social-nav li a:before {
    font-size: 16px;
    font-size: 1rem; }

/* Recipe Index
   ========================================================================== */
.archive.recipe-index .primary {
  position: relative; }
.archive.recipe-index .content-area .posts {
  transition: opacity 0.4s; }
.archive.recipe-index .recipe-search-filters {
  max-width: none;
  padding-bottom: 34px; }
  .archive.recipe-index .recipe-search-filters h3 {
    margin-bottom: 30px;
    font-family: inherit;
    font-size: 18px;
    font-size: 1.125rem; }
  .archive.recipe-index .recipe-search-filters .search-form {
    position: relative;
    margin-bottom: 30px; }
    .archive.recipe-index .recipe-search-filters .search-form input[type="search"] {
      height: 50px;
      padding: 5px 52px 5px 15px;
      border: none;
      font-size: 14px;
      font-size: 0.875rem; }
      .archive.recipe-index .recipe-search-filters .search-form input[type="search"]:focus {
        background: rgba(0, 0, 0, 0.05); }
    .archive.recipe-index .recipe-search-filters .search-form .search-submit {
      position: absolute;
      top: 0;
      right: 0;
      width: 50px;
      height: 50px;
      background: none;
      border: none;
      box-shadow: none;
      -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;
      color: inherit; }
      .archive.recipe-index .recipe-search-filters .search-form .search-submit:before {
        content: "\f002"; }
  .archive.recipe-index .recipe-search-filters .recipe-filters .filter-wrapper {
    position: relative;
    display: inline-block;
    margin: 0 20px 20px 0; }
  .archive.recipe-index .recipe-search-filters .recipe-filter-button {
    padding: 0 25px;
    background: none;
    border: 1px solid #e1e1e1;
    border-radius: 99px;
    color: inherit;
    font-size: 13px;
    font-size: 0.8125rem;
    line-height: 35px;
    cursor: pointer; }
    .no-touch .archive.recipe-index .recipe-search-filters .recipe-filter-button:hover {
      border-color: #ccc; }
    .archive.recipe-index .recipe-search-filters .recipe-filter-button .filter-text {
      font-weight: 500; }
      .archive.recipe-index .recipe-search-filters .recipe-filter-button .filter-text:after {
        display: inline-block;
        margin-left: 5px;
        -webkit-transform: translateY(3px);
        -ms-transform: translateY(3px);
        transform: translateY(3px);
        font-family: 'ElegantIcons';
        speak: none;
        font-style: normal;
        font-weight: normal;
        font-variant: normal;
        text-transform: none;
        line-height: 1;
        -webkit-font-smoothing: antialiased;
        content: "\43";
        font-size: 16px;
        font-size: 1rem; }
  .archive.recipe-index .recipe-search-filters .filter-wrapper.filter-selected .recipe-filter-button {
    padding-right: 15px;
    background: #000;
    border-color: #000;
    color: var(--primary-color); }
    .archive.recipe-index .recipe-search-filters .filter-wrapper.filter-selected .recipe-filter-button .filter-text:after {
      display: none; }
    .archive.recipe-index .recipe-search-filters .filter-wrapper.filter-selected .recipe-filter-button .remove-button {
      display: inline-block;
      margin-left: 8px;
      -webkit-transform: translateY(3px);
      -ms-transform: translateY(3px);
      transform: translateY(3px);
      width: 20px;
      height: 20px;
      border-radius: 50%;
      color: #fff;
      text-align: center; }
      .archive.recipe-index .recipe-search-filters .filter-wrapper.filter-selected .recipe-filter-button .remove-button:hover {
        background: #555; }
      .archive.recipe-index .recipe-search-filters .filter-wrapper.filter-selected .recipe-filter-button .remove-button:before {
        display: block;
        font-family: 'ElegantIcons';
        speak: none;
        font-style: normal;
        font-weight: normal;
        font-variant: normal;
        text-transform: none;
        line-height: 1;
        -webkit-font-smoothing: antialiased;
        content: "\4d";
        font-size: 16px;
        font-size: 1rem;
        line-height: 20px;
        -webkit-transform: translateX(-1px);
        -ms-transform: translateX(-1px);
        transform: translateX(-1px); }
  .archive.recipe-index .recipe-search-filters .filter-content {
    position: absolute;
    z-index: 99;
    top: 45px;
    display: none;
    background: #fff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    max-height: 300px;
    overflow: auto; }
    .archive.recipe-index .recipe-search-filters .filter-content .filter-content-item {
      display: block;
      min-width: 160px;
      padding: 10px 25px;
      font-size: 13px;
      font-size: 0.8125rem;
      line-height: 1.5;
      cursor: default; }
      .archive.recipe-index .recipe-search-filters .filter-content .filter-content-item:hover {
        background: #f6f6f6; }
    .archive.recipe-index .recipe-search-filters .filter-content.expanded {
      display: block; }
.archive.recipe-index.recipe-ajax-loading .content-area .posts {
  opacity: 0.1; }
.archive.recipe-index .tinysalt-loader.filter-loader {
  position: absolute;
  top: 150px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  opacity: 0;
  transition: opacity 0.4s; }
.archive.recipe-index.recipe-ajax-loading .tinysalt-loader.filter-loader {
  opacity: 1; }
.archive.recipe-index.dark-color .recipe-search-filters .recipe-filter-button {
  border-color: #363636; }
  .no-touch .archive.recipe-index.dark-color .recipe-search-filters .recipe-filter-button:hover {
    border-color: #555; }
.archive.recipe-index.dark-color .recipe-search-filters .filter-wrapper.filter-selected .recipe-filter-button {
  background: #fff;
  border-color: #fff; }
  .archive.recipe-index.dark-color .recipe-search-filters .filter-wrapper.filter-selected .recipe-filter-button .remove-button {
    color: #000; }
    .archive.recipe-index.dark-color .recipe-search-filters .filter-wrapper.filter-selected .recipe-filter-button .remove-button:hover {
      background: #eee; }
.archive.recipe-index.dark-color .recipe-search-filters .filter-content {
  background: #232323; }
  .archive.recipe-index.dark-color .recipe-search-filters .filter-content .filter-content-item:hover {
    background: #333; }

/* Search Results
   ========================================================================== */
.search.search-results .page-header {
  position: relative;
  margin-bottom: 50px;
  background: rgba(0, 0, 0, 0.025);
  text-align: center; }
  .search.search-results .page-header .page-header-text {
    position: relative;
    z-index: 3;
    width: 100%;
    max-width: 800px;
    padding: 50px 20px; }
    .search.search-results .page-header .page-header-text span {
      display: block;
      margin-bottom: 12px;
      font-size: 12px;
      font-size: 0.75rem;
      text-transform: uppercase;
      letter-spacing: 1px;
      font-weight: 500;
      color: #767676; }
  .search.search-results .page-header .page-title {
    margin: 0;
    font-size: 36px;
    font-size: 2.25rem;
    text-transform: capitalize;
    line-height: 1.2; }
  .search.search-results .page-header .page-title .page-title-label {
    font-weight: 400; }

.search.search-results.dark-color .page-header {
  background: rgba(255, 255, 255, 0.05); }

/* General Styleing for No Search Results Page & Error 404 Page
   ========================================================================== */
.no-results .entry-title,
.page-404-content .entry-title {
  margin-bottom: 34px;
  font-size: 36px;
  font-size: 2.25rem; }
.no-results p,
.page-404-content p {
  font-size: 16px;
  font-size: 1rem; }

.no-results {
  max-width: 800px; }
  .search.search-no-results .no-results {
    max-width: 100%; }

.error404 .site-header,
.search.search-no-results .site-header {
  margin-bottom: 50px; }

.search.search-no-results .no-results,
.page-404-content {
  text-align: center; }
  .search.search-no-results .no-results > *,
  .page-404-content > * {
    max-width: 600px; }

.no-results .section-title {
  margin-bottom: 30px;
  font-size: 28px;
  font-size: 1.75rem;
  font-weight: 500;
  letter-spacing: 1px;
  text-align: center; }
.no-results .section-content {
  text-align: left; }
  .no-results .section-content .search form {
    margin-left: 0; }
  .no-results .section-content .search form,
  .no-results .section-content .search form input[type="search"] {
    max-width: 100%; }

/* No Search Results Page
   ========================================================================== */
.search.search-no-results .primary,
.error404 .primary {
  padding-bottom: 50px; }

.search.search-no-results .no-results,
.page.page-404 .page-404-content {
  -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;
  padding: 50px 20px;
  min-height: calc(100vh - 300px); }

.search.search-no-results .no-results {
  background: rgba(0, 0, 0, 0.035); }
  .search.search-no-results .no-results .entry-header {
    margin-bottom: 34px; }

.search.search-no-results.dark-color .no-results {
  background: rgba(255, 255, 255, 0.05); }

/* Error 404 Page
   ========================================================================== */
.page.page-404 {
  position: relative; }
  .page.page-404 .page-404-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat; }
  .page.page-404 .page-404-content {
    position: relative;
    z-index: 9; }
    .page.page-404 .page-404-content > * {
      width: 100%; }
  .page.page-404 .page-404-content .search form input[type="search"] {
    background: #fff;
    color: #111; }
  .page.page-404.light {
    background: #fff;
    color: #000; }
    .page.page-404.light .page-404-content {
      background: rgba(255, 255, 255, 0.5); }
  .page.page-404.dark {
    background: #000;
    color: #fff; }
    .page.page-404.dark .page-404-content {
      background: rgba(0, 0, 0, 0.5); }
    .page.page-404.dark .search form {
      border: 0; }

/* Single Post
   ========================================================================== */
.single .primary > .post .entry-header {
  position: relative; }
  .single .primary > .post .entry-header .meta,
  .single .primary > .post .entry-header .cat-links {
    display: inline-block; }
  .single .primary > .post .entry-header .cat-links:not(:last-child) {
    margin-right: 15px; }
  .single .primary > .post .entry-header .meta {
    letter-spacing: 0; }
    .no-touch .single .primary > .post .entry-header .meta a:hover {
      opacity: 0.6; }
    .single .primary > .post .entry-header .meta .meta-item.post-date:after {
      position: relative;
      display: inline-block;
      margin: 0 8px 0 10px;
      content: "//"; }
  .single .primary > .post .entry-header .cat-links + .meta i {
    margin-right: 5px; }
.single .post-intro {
  margin: 34px 0 0; }
  .single .post-intro .intro-label {
    float: left;
    -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: 75px;
    height: 75px;
    margin-right: 15px;
    background: #000;
    border-radius: 50%;
    color: #fff;
    font-size: 10px;
    font-size: 0.625rem;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    text-align: center; }
  .single .post-intro .intro-content {
    color: var(--content-color);
    font-size: 18px;
    font-size: 1.125rem;
    font-weight: 500;
    line-height: 1.35; }
    .single .post-intro .intro-content p {
      margin-bottom: 0; }
    .single .post-intro .intro-content a {
      font-weight: 700;
      color: var(--primary-color);
      box-shadow: 0 1px 0 currentColor; }
      .no-touch .single .post-intro .intro-content a:hover {
        color: inherit;
        box-shadow: 0 1px 0 currentColor; }
.single.dark-color .post-intro .intro-label {
  background: #fff;
  color: #000; }
.single .site-content .entry-header .container {
  z-index: 9;
  padding-top: 50px;
  padding-bottom: 50px; }
  .single .site-content .entry-header .container > * {
    max-width: 800px;
    margin-bottom: 34px; }
    .single .site-content .entry-header .container > *:last-child {
      margin-bottom: 0; }
.single .site-content .entry-header .fluid-width-video-wrapper {
  margin-bottom: 0; }
.single .primary > .post {
  position: relative; }
  .single .primary > .post .entry-content {
    position: relative; }
  .single .primary > .post > *:last-child {
    margin-bottom: 0; }
  .single .primary > .post .post-tag-cloud {
    text-align: center; }
.single .primary .author-info-box {
  position: relative;
  padding: 0;
  text-align: center; }
  .single .primary .author-info-box .author-photo {
    width: 160px;
    margin-bottom: 34px; }
  .single .primary .author-info-box .author-info .written-by {
    font-size: 11px;
    font-size: 0.6875rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.5; }
  .single .primary .author-info-box .author-info .author-name {
    font-size: 24px;
    font-size: 1.5rem; }
    .no-touch .single .primary .author-info-box .author-info .author-name a:hover {
      opacity: 0.5; }
  .single .primary .author-info-box .author-info p {
    margin-bottom: 20px;
    font-size: 16px;
    font-size: 1rem;
    color: var(--content-color); }
    .single .primary .author-info-box .author-info p:first-child {
      margin-top: 20px; }
.single .related-posts {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding-top: 50px;
  border-top: 1px solid rgba(0, 0, 0, 0.05); }
  .single .related-posts .related-posts-title {
    float: left;
    width: calc(100% - 80px); }
  .single .related-posts .slider-arrows {
    float: right;
    width: 80px; }
    .single .related-posts .slider-arrows .slick-arrow:after {
      font-size: 21px;
      font-size: 1.3125rem; }
    .single .related-posts .slider-arrows .slick-arrow {
      border-radius: 2px;
      border: 1px solid rgba(0, 0, 0, 0.05);
      color: inherit;
      line-height: 38px; }
      .single .related-posts .slider-arrows .slick-arrow.slick-prev {
        border-right: none; }
  .single .related-posts .related-wrapper {
    clear: both;
    margin: 0 -20px;
    width: calc(100% + 40px); }
  .single .related-posts .related-post {
    margin: 0 20px;
    text-align: center; }
    .single .related-posts .related-post .featured-img {
      position: relative;
      margin-bottom: 15px;
      overflow: hidden; }
      .single .related-posts .related-post .featured-img a {
        display: block;
        width: 100%;
        height: 0;
        padding-top: 125%;
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat; }
        .no-touch .single .related-posts .related-post .featured-img a:hover {
          -webkit-transform: scale(1.05);
          -ms-transform: scale(1.05);
          transform: scale(1.05);
          will-change: transform; }
    .single .related-posts .related-post .post-title {
      font-size: 18px;
      font-size: 1.125rem; }
    .no-touch .single .related-posts .related-post .post-title a:hover {
      color: var(--primary-color); }
    .single .related-posts .related-post .meta {
      margin-top: 5px;
      letter-spacing: 0;
      opacity: 0.7; }
.single.dark-color .related-posts {
  border-top-color: rgba(255, 255, 255, 0.1); }
.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;
  transition: 0s; }
  .single .post-navigation .nav-links a .post-title {
    transition: all 0.4s; }
  .single .post-navigation .nav-links a > * {
    margin-left: 0; }
  .no-touch .single .post-navigation .nav-links a:hover .post-title {
    color: var(--primary-color); }
  .no-touch .single .post-navigation .nav-links a:hover .post-thumb {
    background-color: rgba(0, 0, 0, 0.15); }
    .no-touch .single .post-navigation .nav-links a:hover .post-thumb:before {
      opacity: 0; }
.single .post-navigation .nav-links .post-thumb {
  position: relative;
  width: 80px;
  height: 80px;
  margin: 0 15px 0 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: rgba(0, 0, 0, 0.05);
  border-radius: 50%;
  overflow: hidden;
  box-sizing: border-box;
  transition: background-color 0.4s; }
  .single .post-navigation .nav-links .post-thumb:before {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    background: #000;
    content: "";
    opacity: 0.5;
    transition: opacity 0.4s;
    border-radius: 50%; }
  .single .post-navigation .nav-links .post-thumb:after {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 3;
    font-family: 'ElegantIcons';
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    color: #fff;
    text-align: center;
    font-size: 24px;
    line-height: 84px; }
  .single .post-navigation .nav-links .post-thumb ~ .post-info {
    width: calc(100% - 100px); }
.single .post-navigation .nav-links .nav-previous .post-thumb:after {
  content: "\23"; }
.single .post-navigation .nav-links .nav-next .post-thumb:after {
  content: "\24"; }
.single .post-navigation .nav-links .nav-next {
  margin-top: 34px; }
.no-touch .single .post-navigation .nav-links .nav-previous a:hover .post-thumb:after {
  -webkit-animation: prevArrowMove ease-out 0.4s;
  animation: prevArrowMove ease-out 0.4s; }
.no-touch .single .post-navigation .nav-links .nav-next a:hover .post-thumb:after {
  -webkit-animation: nextArrowMove ease-out 0.4s;
  animation: nextArrowMove ease-out 0.4s; }
.single .post-navigation .nav-links .post-info span {
  display: block;
  word-break: break-word; }
  .single .post-navigation .nav-links .post-info span.text {
    margin-bottom: 3px;
    font-size: 11px;
    font-size: 0.6875rem;
    font-weight: 600;
    text-transform: uppercase;
    opacity: 0.35; }
.single.dark-color .primary .related-posts .slider-arrows .slick-arrow {
  border-color: rgba(255, 255, 255, 0.2); }

/* Single Post/Page Template
   ========================================================================== */
.single .primary,
.page .primary {
  position: relative;
  max-width: 800px; }
  .single .primary > *,
  .single .primary .entry-content,
  .page .primary > *,
  .page .primary .entry-content {
    margin-bottom: 50px; }
    .single .primary > *:last-child,
    .single .primary .entry-content:last-child,
    .page .primary > *:last-child,
    .page .primary .entry-content:last-child {
      margin-bottom: 0; }
  .single .primary .signup-form,
  .page .primary .signup-form {
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    text-align: center; }
    .single .primary .signup-form p:not(:last-child),
    .page .primary .signup-form p:not(:last-child) {
      margin-bottom: 17px; }
    .single .primary .signup-form.has-overlay:before,
    .page .primary .signup-form.has-overlay:before {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      content: "";
      opacity: 0.5;
      pointer-events: none; }
    .single .primary .signup-form.full-section,
    .page .primary .signup-form.full-section {
      position: relative;
      left: 50%;
      -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
      transform: translateX(-50%);
      width: 100vw; }
      .single .primary .signup-form.full-section .widget_mc4wp_form_widget,
      .page .primary .signup-form.full-section .widget_mc4wp_form_widget {
        max-width: 900px; }
    .single .primary .signup-form .widget_mc4wp_form_widget,
    .page .primary .signup-form .widget_mc4wp_form_widget {
      position: relative;
      z-index: 3;
      padding: 50px; }
    .single .primary .signup-form.light-color,
    .page .primary .signup-form.light-color {
      background-color: rgba(0, 0, 0, 0.05);
      color: #000; }
      .single .primary .signup-form.light-color.has-overlay:before,
      .page .primary .signup-form.light-color.has-overlay:before {
        background: #fff; }
      .single .primary .signup-form.light-color input[type="email"],
      .page .primary .signup-form.light-color input[type="email"] {
        background: #fff; }
    .single .primary .signup-form.dark-color,
    .page .primary .signup-form.dark-color {
      background-color: #000;
      color: #fff; }
      .single .primary .signup-form.dark-color.has-overlay:before,
      .page .primary .signup-form.dark-color.has-overlay:before {
        background: #000; }

.single.single-format-gallery .featured-media-section .slick-list,
.single.single-format-gallery .featured-media-section .slick-track,
.single.single-format-gallery .featured-media-section .gallery-item,
.single.single-format-gallery .featured-media-section .gallery-img {
  height: inherit; }
.single.single-format-gallery .featured-media-section .image-gallery {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%; }

.single.post-template-3.single-format-gallery .featured-media-section.has-gallery {
  position: relative;
  height: 0;
  padding-top: 66.6666%; }

.featured-media-section.has-video iframe,
.featured-media-section.has-video video {
  margin: 0; }

.single.post-template-1 .site-header,
.page.page-template-1 .site-header {
  margin-bottom: 0; }
.single.post-template-1 .featured-media-section,
.page.page-template-1 .featured-media-section {
  position: relative;
  height: 0;
  padding-top: 66.6666%;
  margin-bottom: 50px; }
.single.post-template-1 .main > .container:first-child,
.page.page-template-1 .main > .container:first-child {
  margin-top: 50px; }

.single.post-template-1.single-format-video .featured-media-section.has-video {
  height: auto;
  padding-top: 0; }
  .single.post-template-1.single-format-video .featured-media-section.has-video iframe,
  .single.post-template-1.single-format-video .featured-media-section.has-video video {
    position: relative;
    z-index: 9;
    width: 100%; }

.single.post-template-2 .featured-media-section,
.page.page-template-2 .featured-media-section {
  position: relative;
  width: 100%;
  height: 0;
  padding-top: 100%;
  margin-bottom: 34px;
  border-radius: 10px;
  overflow: hidden; }
  .single.post-template-2 .featured-media-section img,
  .page.page-template-2 .featured-media-section img {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover; }

.single.post-template-2.single-format-video .featured-media-section.has-video iframe,
.single.post-template-2.single-format-video .featured-media-section.has-video video {
  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: 100%;
  height: 100%;
  object-fit: cover; }

.single.post-template-2 h1.entry-title {
  margin-top: 15px;
  margin-bottom: 20px; }

.single.post-template-3 .featured-media-section img,
.page.page-template-3 .featured-media-section img {
  display: block; }
.single.post-template-3 .primary > article .entry-header .header-text,
.page.page-template-3 .primary > article .entry-header .header-text {
  margin: 0 auto 34px;
  text-align: center; }
.single.post-template-3 .site-content:not([class*="with-sidebar"]) .primary > article .entry-header .featured-media-section,
.page.page-template-3 .site-content:not([class*="with-sidebar"]) .primary > article .entry-header .featured-media-section {
  position: relative;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 100vw;
  max-width: 1200px;
  text-align: center; }

.single.post-template-3 .entry-header h1.entry-title {
  margin: 20px auto; }
.single.post-template-3 .primary > .post .entry-header .cat-links:not(:last-child) {
  margin-right: 0; }

.single.post-template-4 .primary,
.page.page-template-4 .primary {
  max-width: none; }
  .single.post-template-4 .primary > article .entry-header,
  .page.page-template-4 .primary > article .entry-header {
    margin-bottom: 34px; }
    .single.post-template-4 .primary > article .entry-header .entry-header-inner,
    .page.page-template-4 .primary > article .entry-header .entry-header-inner {
      position: relative;
      background: rgba(0, 0, 0, 0.05);
      overflow: hidden; }
    .single.post-template-4 .primary > article .entry-header .header-text,
    .page.page-template-4 .primary > article .entry-header .header-text {
      position: relative;
      padding: 200px 25px 25px;
      width: 100%; }
      .single.post-template-4 .primary > article .entry-header .header-text > *,
      .page.page-template-4 .primary > article .entry-header .header-text > * {
        position: relative;
        z-index: 3; }
  .single.post-template-4 .primary > article .entry-content .post-intro,
  .page.page-template-4 .primary > article .entry-content .post-intro {
    margin: 0 0 34px; }
  .single.post-template-4 .primary > article.has-post-thumbnail .entry-header .featured-media-section,
  .page.page-template-4 .primary > article.has-post-thumbnail .entry-header .featured-media-section {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1; }
  .single.post-template-4 .primary > article.has-post-thumbnail .entry-header .header-text,
  .page.page-template-4 .primary > article.has-post-thumbnail .entry-header .header-text {
    color: #fff; }
    .single.post-template-4 .primary > article.has-post-thumbnail .entry-header .header-text:before,
    .page.page-template-4 .primary > article.has-post-thumbnail .entry-header .header-text:before {
      position: absolute;
      z-index: 1;
      bottom: 0;
      left: 0;
      width: 100%;
      height: 100%;
      height: calc(100% - 150px);
      background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.7));
      content: ""; }
  .single.post-template-4 .primary > article.has-post-thumbnail .entry-header .meta,
  .page.page-template-4 .primary > article.has-post-thumbnail .entry-header .meta {
    opacity: 1; }

/* Comments
   ========================================================================== */
.comments-area {
  padding-top: 50px;
  border-top: 1px solid rgba(0, 0, 0, 0.05); }
  .dark-color .comments-area {
    border-top-color: rgba(255, 255, 255, 0.1); }
  .comments-area .comments-title-wrap {
    margin-bottom: 50px; }
  .comments-area ol.comment-list {
    margin: 0 auto;
    list-style: none; }
    .comments-area ol.comment-list ol.children {
      margin: 50px 0 0 34px; }
      .comments-area ol.comment-list ol.children li .comment-body:before {
        position: absolute;
        left: -30px;
        top: 8px;
        -webkit-transform: rotate(180deg);
        -ms-transform: rotate(180deg);
        transform: rotate(180deg);
        font-family: 'ElegantIcons';
        speak: none;
        font-style: normal;
        font-weight: normal;
        font-variant: normal;
        text-transform: none;
        line-height: 1;
        -webkit-font-smoothing: antialiased;
        content: "\4a";
        font-size: 18px;
        font-size: 1.125rem;
        opacity: 0.3; }
    .comments-area ol.comment-list li.comment, .comments-area ol.comment-list li.pingback, .comments-area ol.comment-list li.trackback {
      position: relative;
      padding: 0 0 50px;
      list-style: none; }
    .comments-area ol.comment-list li:not(.depth-1):last-of-type {
      padding-bottom: 0; }
    .comments-area ol.comment-list li.pingback, .comments-area ol.comment-list li.trackback {
      font-weight: 700; }
      .comments-area ol.comment-list li.pingback a, .comments-area ol.comment-list li.trackback a {
        font-weight: 400; }
      .no-touch .comments-area ol.comment-list li.pingback a:hover, .no-touch .comments-area ol.comment-list li.trackback a:hover {
        box-shadow: 0 1px 0 #4fd675; }
    .comments-area ol.comment-list li:last-child {
      margin-bottom: 0 !important; }
    .comments-area ol.comment-list li.comment .comment-body {
      position: relative; }
    .comments-area ol.comment-list li .comment-meta {
      padding-left: 64px;
      margin-bottom: 17px; }
      .comments-area ol.comment-list li .comment-meta .comment-author.vcard {
        display: inline-block;
        font-size: 18px;
        font-size: 1.125rem;
        line-height: 30px; }
        .comments-area ol.comment-list li .comment-meta .comment-author.vcard img {
          position: absolute;
          top: 0;
          left: 0;
          width: 48px;
          height: 48px;
          border-radius: 50%; }
        .comments-area ol.comment-list li .comment-meta .comment-author.vcard b.fn {
          font-weight: 700; }
          .no-touch .comments-area ol.comment-list li .comment-meta .comment-author.vcard b.fn a:hover {
            color: var(--primary-color); }
        .comments-area ol.comment-list li .comment-meta .comment-author.vcard .author-label {
          display: none; }
      .comments-area ol.comment-list li .comment-meta .comment-metadata {
        font-size: 11px;
        font-size: 0.6875rem;
        opacity: 0.5; }
    .comments-area ol.comment-list li a.comment-edit-link {
      margin-left: 6px;
      font-size: 0;
      opacity: 0.5; }
      .no-touch .comments-area ol.comment-list li a.comment-edit-link:hover {
        opacity: 1; }
      .comments-area ol.comment-list li 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-area ol.comment-list li .comment-content > *:last-child {
      margin-bottom: 0; }
    .comments-area ol.comment-list li .comment-content p {
      color: var(--content-color);
      font-size: 16px;
      font-size: 1rem; }
    .comments-area ol.comment-list li .comment-content p,
    .comments-area ol.comment-list li .comment-content dd,
    .comments-area ol.comment-list li .comment-content address {
      margin-bottom: 17px; }
    .comments-area ol.comment-list li .comment-content hr {
      margin-top: 34px;
      margin-bottom: 34px; }
    .comments-area ol.comment-list li .comment-content li {
      margin-bottom: 8px; }
      .comments-area ol.comment-list li .comment-content li ul,
      .comments-area ol.comment-list li .comment-content li ol {
        margin-top: 8px; }
    .comments-area ol.comment-list li .comment-content blockquote {
      padding: 34px;
      margin: 34px 0;
      background: rgba(0, 0, 0, 0.025);
      border-left: 4px solid var(--primary-color); }
      .comments-area ol.comment-list li .comment-content blockquote p {
        font-size: 18px;
        font-size: 1.125rem;
        line-height: 1.8; }
        .comments-area ol.comment-list li .comment-content blockquote p:last-child {
          margin-bottom: 0; }
      .comments-area ol.comment-list li .comment-content blockquote:last-child {
        margin-bottom: 0; }
    .comments-area ol.comment-list li .reply {
      margin-top: 17px;
      font-size: 12px;
      font-size: 0.75rem;
      font-weight: 600; }
      .comments-area ol.comment-list li .reply a {
        display: inline-block;
        padding: 3px 8px;
        background: #f3f3f3;
        border-radius: 4px;
        line-height: 20px; }
        .dark-color .comments-area ol.comment-list li .reply a {
          background: #363636; }
        .no-touch .comments-area ol.comment-list li .reply a:hover {
          background: var(--primary-color);
          color: #fff; }
    .comments-area ol.comment-list li.bypostauthor > .comment-body b.fn:after {
      -webkit-transform: translateY(-3px);
      -ms-transform: translateY(-3px);
      transform: translateY(-3px);
      display: inline-block;
      width: 18px;
      height: 18px;
      margin-left: 6px;
      border-radius: 50%;
      background: var(--primary-color);
      color: #fff;
      -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: "\f005";
      font-size: 8px;
      font-size: 0.5rem;
      line-height: 17px;
      text-align: center; }
    .comments-area ol.comment-list li .comment-respond {
      margin-top: 50px;
      padding: 35px;
      background: #fff;
      box-shadow: 0 15px 30px -6px rgba(0, 0, 0, 0.1), 0 0 1px rgba(0, 0, 0, 0.05);
      border-radius: 8px; }
      .comments-area ol.comment-list li .comment-respond #cancel-comment-reply-link {
        float: right;
        display: inline-block;
        padding: 3px 8px;
        background: #f3f3f3;
        border-radius: 4px;
        font-size: 12px;
        font-size: 0.75rem;
        font-weight: 600;
        line-height: 20px; }
        .no-touch .comments-area ol.comment-list li .comment-respond #cancel-comment-reply-link:hover {
          background: var(--primary-color);
          color: #fff; }
    .comments-area ol.comment-list + .comment-respond {
      padding-top: 50px;
      border-top: 1px solid rgba(0, 0, 0, 0.05); }
      .dark-color .comments-area ol.comment-list + .comment-respond {
        border-top-color: rgba(255, 255, 255, 0.1); }
  .comments-area .navigation {
    margin-bottom: 50px; }
    .comments-area .navigation .nav-links {
      padding: 15px 0;
      border-top: 1px dashed rgba(0, 0, 0, 0.1);
      border-bottom: 1px dashed rgba(0, 0, 0, 0.1);
      font-size: 14px;
      font-size: 0.875rem;
      font-weight: 500; }
      .comments-area .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-area .navigation .nav-links .nav-previous {
        float: right; }
        .comments-area .navigation .nav-links .nav-previous a:before {
          float: right;
          margin-left: 6px;
          content: "\f0da"; }
      .comments-area .navigation .nav-links .nav-next a:before {
        float: left;
        margin-right: 6px;
        content: "\f0d9"; }
  .comments-area .comment-respond label {
    font-size: 14px;
    font-size: 0.875rem;
    opacity: 0.8; }
  .comments-area .comments-closed {
    padding: 15px 0;
    margin-bottom: 0;
    border-top: 1px dashed rgba(0, 0, 0, 0.1);
    border-bottom: 1px dashed rgba(0, 0, 0, 0.1);
    font-weight: 700;
    opacity: 0.5; }

@media screen and (min-width: 480px) {
  .single .primary .author-info-box {
    -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; }
    .single .primary .author-info-box .author-photo {
      width: 160px;
      margin: 0 30px 0 0; }
      .single .primary .author-info-box .author-photo + .author-info {
        width: calc(100% - 190px); }
    .single .primary .author-info-box .author-info {
      width: 100%; }

  .comments-area ol.comment-list li .reply {
    position: absolute;
    top: 0;
    right: 0;
    margin-top: 0; } }
/* Single Page Special Classes
   ========================================================================== */
.page.page-header-hidden .site-header {
  margin-bottom: 0; }
.page.page-header-hidden .page.hentry .entry-header {
  position: absolute !important;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  border: 0;
  word-wrap: normal !important; }
.page.page-header-hidden.page-template-1 .featured-media-section {
  margin-bottom: 0; }
.page.page-header-hidden.page-template-1 .main > .container:first-child {
  margin-top: 0; }

.page.hide-footer-logo .site-footer-top-logo,
.page.hide-footer-signup .site-footer-signup,
.page.hide-footer-ins .site-footer-instagram,
.page.hide-footer .site-footer {
  display: none; }

.page.no-padding-bottom .primary {
  padding-bottom: 0; }

/* WP Recipe Maker Snippet Restyle
   ========================================================================== */
.entry-content .wprm-recipe-template-snippet-basic, .entry-content .wprm-recipe-template-snippet-basic-buttons {
  margin-bottom: 40px; }
  .single.post-template-1 .entry-content .wprm-recipe-template-snippet-basic,
  .single.post-template-1 .entry-content .wprm-recipe-template-snippet-basic-buttons {
    text-align: left; }
  .entry-content .wprm-recipe-template-snippet-basic a.wprm-recipe-link, .entry-content .wprm-recipe-template-snippet-basic-buttons a.wprm-recipe-link {
    font-weight: 600;
    font-size: 10px;
    font-size: 0.625rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 18px; }

.entry-content .wprm-recipe-template-snippet-basic a.wprm-recipe-link {
  color: #000 !important; }
  .dark-color .entry-content .wprm-recipe-template-snippet-basic a.wprm-recipe-link {
    color: #fff !important; }

.entry-content .wprm-recipe-template-snippet-basic-buttons a.wprm-recipe-link .wprm-recipe-icon svg {
  width: 12px;
  height: 12px;
  margin-right: 4px; }

.entry-content .wprm-recipe-link[class*="-shortcode"] {
  display: inline-block;
  padding: 5px 20px;
  margin-bottom: 34px;
  background: #000;
  box-shadow: none !important;
  border-radius: 99px;
  color: #fff !important;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 24px; }
  .entry-content .wprm-recipe-link[class*="-shortcode"] + .wprm-recipe-link[class*="-shortcode"] {
    margin-left: 5px; }
  .dark-color .entry-content .wprm-recipe-link[class*="-shortcode"] {
    background: #fff;
    color: #000 !important; }

.wp-block-group.aligncenter .wp-block-group__inner-container {
  text-align: center; }
  .wp-block-group.aligncenter .wp-block-group__inner-container .wprm-recipe-link {
    margin-bottom: 0; }

.wprm-recipe-instructions img {
  display: block;
  width: 100%; }

@media screen and (min-width: 600px) {
  .search.search-no-results .no-results,
  .page.page-404 .page-404-content {
    padding: 100px 50px; }

  .no-results p,
  .page-404-content p {
    font-size: 18px;
    font-size: 1.125rem; }

  .archive .page-header .page-header-text,
  .search.search-results .page-header .page-header-text {
    padding: 70px 30px; }

  .single .post-intro {
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex; }
    .single .post-intro .intro-label {
      float: none; }
      .single .post-intro .intro-label + .intro-content {
        width: calc(100% - 90px); }

  .comments-area ol.comment-list ol.children li .comment-body:before {
    top: 22px; }
  .comments-area ol.comment-list li.comment .comment-body {
    padding-left: 84px; }
  .comments-area ol.comment-list li .comment-meta {
    padding: 0; }
  .comments-area ol.comment-list li .comment-meta .comment-author.vcard img {
    width: 64px;
    height: 64px; } }
@media screen and (min-width: 768px) {
  .archive .page-header .page-title,
  .search.search-no-results .no-results .entry-title,
  .page-404-content .entry-title,
  .search.search-results .page-header .page-title {
    font-size: 48px;
    font-size: 3rem; }

  .comments-area ol.comment-list ol.children {
    margin-left: 84px; }
    .comments-area ol.comment-list ol.children li .comment-body:before {
      left: -38px; }
  .comments-area .comment-respond form.comment-form {
    margin: 0 -5px; }
    .comments-area .comment-respond form.comment-form > * {
      padding: 0 5px; }
    .comments-area .comment-respond form.comment-form .comment-form-author,
    .comments-area .comment-respond form.comment-form .comment-form-email,
    .comments-area .comment-respond form.comment-form .comment-form-url {
      float: left;
      width: 33.333333%; }

  .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: 50%; }
    .single .post-navigation .nav-links a {
      height: 100%; }
    .single .post-navigation .nav-links .nav-previous {
      float: left;
      padding-right: 20px;
      margin-left: 0; }
    .single .post-navigation .nav-links .nav-next {
      float: right;
      padding-left: 20px;
      margin-top: 0;
      margin-right: 0;
      text-align: right; }
      .single .post-navigation .nav-links .nav-next a > * {
        margin-right: 0;
        margin-left: auto; }
      .single .post-navigation .nav-links .nav-next .post-thumb {
        order: 2;
        margin-left: 15px; }

  .single.post-template-2 .primary > article .entry-header,
  .page.page-template-2 .primary > article .entry-header {
    position: relative;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 50px; }
  .single.post-template-2 .featured-media-section,
  .page.page-template-2 .featured-media-section {
    margin-bottom: 0;
    width: 48%;
    padding-top: 48%; }
    .single.post-template-2 .featured-media-section img,
    .page.page-template-2 .featured-media-section img {
      width: 100%; }
    .single.post-template-2 .featured-media-section + .header-text,
    .page.page-template-2 .featured-media-section + .header-text {
      width: 52%;
      padding-left: 50px; }
  .single.post-template-2 .header-text:only-child,
  .page.page-template-2 .header-text:only-child {
    width: 100%; }
  .single.post-template-2 .site-content:not([class*="with-sidebar-"]) .primary > article.has-post-thumbnail .entry-header,
  .page.page-template-2 .site-content:not([class*="with-sidebar-"]) .primary > article.has-post-thumbnail .entry-header {
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    width: 100vw;
    max-width: 1200px;
    padding: 0 30px; }

  .single.post-template-4 .primary > article .entry-header,
  .page.page-template-4 .primary > article .entry-header {
    float: left;
    width: 50%;
    height: calc(100vh - 60px);
    margin-bottom: 0; }
    .single.post-template-4 .primary > article .entry-header .entry-header-inner,
    .page.page-template-4 .primary > article .entry-header .entry-header-inner {
      position: fixed;
      top: 30px;
      width: calc(50vw - 30px);
      max-width: 570px;
      height: calc(100vh - 60px);
      background: rgba(0, 0, 0, 0.05); }
    .single.post-template-4 .primary > article .entry-header .header-text,
    .page.page-template-4 .primary > article .entry-header .header-text {
      position: absolute;
      z-index: 3;
      bottom: 0;
      left: 0;
      padding: 100px 25px 25px; }
  .single.post-template-4 .primary > article .entry-wrapper,
  .page.page-template-4 .primary > article .entry-wrapper {
    float: right;
    width: 50%;
    padding-left: 40px; }
  .single.post-template-4 .primary > article.has-post-thumbnail .entry-header .header-text:before,
  .page.page-template-4 .primary > article.has-post-thumbnail .entry-header .header-text:before {
    height: 100%; }
  .single.post-template-4 .primary > article ~ *:not(.full-section),
  .page.page-template-4 .primary > article ~ *:not(.full-section) {
    max-width: 800px;
    margin-left: auto;
    margin-right: auto; }

  .page.page-template-4 .site-footer {
    margin-top: 60px; } }
@media screen and (min-width: 1024px) {
  .single.post-template-4 .primary > article .entry-header .header-text,
  .page.page-template-4 .primary > article .entry-header .header-text {
    padding: 100px 50px 50px; } }
@media screen and (min-width: 1120px) {
  .single .site-header,
  .page .site-header {
    margin-bottom: 70px; }

  .archive.recipe-index .recipe-search-filters .recipe-filters .filter-wrapper {
    display: block;
    margin: 0 0 20px; }

  .archive.recipe-index .tinysalt-loader.filter-loader {
    position: fixed;
    top: 50%;
    left: calc(390px + 50vw - 570px);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%); }

  .archive .page-header .page-title,
  .search.search-no-results .no-results .entry-title,
  .page-404-content .entry-title,
  .search.search-results .page-header .page-title {
    font-size: 56px;
    font-size: 3.5rem; }

  .site-content[class*="with-sidebar-"] .no-results {
    max-width: 100%; }
    .site-content[class*="with-sidebar-"] .no-results .section-title {
      text-align: left; }

  .single.post-template-1.single-format-video .featured-media-section.has-video iframe,
  .single.post-template-1.single-format-video .featured-media-section.has-video video {
    height: 450px;
    background: #000; }

  .single.post-template-1 .featured-media-section,
  .page.page-template-1 .featured-media-section {
    height: 70vh;
    padding-top: 0; }
  .single.post-template-1 .main > .container:first-child,
  .page.page-template-1 .main > .container:first-child {
    margin-top: 70px; }

  .single.post-template-3 .site-content:not([class*="with-sidebar-"]) .entry-header h1.entry-title,
  .page.page-template-3 .site-content:not([class*="with-sidebar-"]) .entry-header h1.entry-title {
    font-size: 42px;
    font-size: 2.625rem; }

  .single.post-template-4 .primary > article .entry-header .header-text h1.entry-title {
    font-size: 48px;
    font-size: 3rem; }

  .page.page-template-4 .primary > article .entry-header .header-text h1.entry-title {
    font-size: 60px;
    font-size: 3.75rem; }

  .site-content[class*="with-sidebar-"] .primary {
    max-width: none; } }
@media screen and (min-width: 1440px) {
  .single.post-template-1 .entry-header h1.entry-title,
  .single.post-template-3 .entry-header h1.entry-title,
  .page.page-template-1 .entry-header h1.entry-title,
  .page.page-template-3 .entry-header h1.entry-title {
    font-size: 46px;
    font-size: 2.875rem; }

  .single.post-template-4 .primary > article .entry-header .entry-header-inner,
  .page.page-template-4 .primary > article .entry-header .entry-header-inner {
    max-width: 690px; }

  .search.search-no-results .no-results > *,
  .page-404-content > * {
    max-width: 760px; } }
@media screen and (min-width: 1440px) and (max-width: 1500px) {
  .single.post-template-4 .primary > article .entry-header .entry-header-inner,
  .page.page-template-4 .primary > article .entry-header .entry-header-inner {
    max-width: 660px; } }
@media screen and (max-width: 470px) {
  .primary .signup-form {
    position: relative;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    width: 100vw; }

  .single .primary .signup-form .widget_mc4wp_form_widget,
  .page .primary .signup-form .widget_mc4wp_form_widget {
    padding-right: 20px;
    padding-left: 20px; }

  .primary .article-share .article-share-container {
    padding: 0 5px; } }
/* ==========================================================================
   8.0 Widgets, Sidebar & Footer
   ========================================================================== */
.widget {
  position: relative;
  margin: 0 auto; }
  .widget select {
    display: block;
    width: 100%; }
  .widget.widget_tag_cloud {
    font-size: 0; }
    .widget.widget_tag_cloud .tagcloud a {
      margin: 0 5px 8px 0;
      line-height: 26px; }
  .widget.widget_calendar table#wp-calendar {
    margin-bottom: 0;
    border: none;
    border-spacing: 2px; }
    .widget.widget_calendar table#wp-calendar caption {
      margin-top: 0;
      font-size: 16px;
      font-size: 1rem;
      font-weight: 600; }
    .widget.widget_calendar table#wp-calendar th,
    .widget.widget_calendar table#wp-calendar td {
      padding: 0 5px;
      text-align: center;
      border: none !important; }
    .widget.widget_calendar table#wp-calendar th {
      font-size: 10px;
      font-size: 0.625rem;
      font-weight: 400; }
    .widget.widget_calendar table#wp-calendar td {
      font-size: 13px;
      font-size: 0.8125rem; }
    .widget.widget_calendar table#wp-calendar tbody td {
      position: relative;
      background: #f7f7f7;
      line-height: 40px; }
      .dark-color .widget.widget_calendar table#wp-calendar tbody td {
        background: #363636; }
      .widget.widget_calendar table#wp-calendar tbody td[colspan="2"], .widget.widget_calendar table#wp-calendar tbody td[colspan="3"], .widget.widget_calendar table#wp-calendar tbody td[colspan="4"], .widget.widget_calendar table#wp-calendar tbody td[colspan="5"], .widget.widget_calendar table#wp-calendar tbody td[colspan="6"] {
        background: none; }
      .widget.widget_calendar table#wp-calendar tbody td a {
        font-weight: 800; }
      .widget.widget_calendar table#wp-calendar tbody td a:before {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: var(--primary-color);
        opacity: 0.1;
        content: ""; }
    .widget.widget_calendar table#wp-calendar tfoot td {
      line-height: 36px;
      font-size: 11px;
      font-size: 0.6875rem;
      text-transform: uppercase; }
      .widget.widget_calendar table#wp-calendar tfoot td a {
        padding: 2px 10px;
        border: 1px solid #e6e6e6;
        border-radius: 4px;
        color: inherit; }
        .dark-color .widget.widget_calendar table#wp-calendar tfoot td a {
          border-color: #393939; }
        .no-touch .widget.widget_calendar table#wp-calendar tfoot td a:hover {
          background: var(--primary-color);
          border-color: var(--primary-color);
          color: #fff; }
  .widget.widget_calendar .wp-calendar-nav {
    font-size: 0; }
    .widget.widget_calendar .wp-calendar-nav .wp-calendar-nav-prev,
    .widget.widget_calendar .wp-calendar-nav .wp-calendar-nav-next {
      display: inline-block;
      width: 45%;
      text-align: center;
      line-height: 36px;
      font-size: 11px;
      font-size: 0.6875rem;
      text-transform: uppercase; }
      .widget.widget_calendar .wp-calendar-nav .wp-calendar-nav-prev a, .widget.widget_calendar .wp-calendar-nav .wp-calendar-nav-next a {
        padding: 2px 10px;
        border: 1px solid #e6e6e6;
        border-radius: 4px;
        color: inherit; }
        .dark-color .widget.widget_calendar .wp-calendar-nav .wp-calendar-nav-prev a,
        .dark-color .widget.widget_calendar .wp-calendar-nav .wp-calendar-nav-next a {
          border-color: #393939; }
        .no-touch .widget.widget_calendar .wp-calendar-nav .wp-calendar-nav-prev a:hover, .no-touch .widget.widget_calendar .wp-calendar-nav .wp-calendar-nav-next a:hover {
          background: var(--primary-color);
          border-color: var(--primary-color);
          color: #fff; }
    .widget.widget_calendar .wp-calendar-nav .pad {
      display: inline-block;
      width: 10%; }
  .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 {
    margin: 0;
    list-style: none; }
    .widget.widget_categories ul li, .widget.widget_archive ul li, .widget.widget_nav_menu ul li, .widget.widget_meta ul li, .widget.widget_pages ul li, .widget.widget_rss ul li, .widget.widget_recent_entries ul li {
      position: relative; }
      .widget.widget_categories ul li:not(:last-child), .widget.widget_archive ul li:not(:last-child), .widget.widget_nav_menu ul li:not(:last-child), .widget.widget_meta ul li:not(:last-child), .widget.widget_pages ul li:not(:last-child), .widget.widget_rss ul li:not(:last-child), .widget.widget_recent_entries ul li:not(:last-child) {
        margin-bottom: 8px;
        padding-bottom: 8px;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05); }
        .dark-color .widget.widget_categories ul li:not(:last-child), .dark-color .widget.widget_archive ul li:not(:last-child), .dark-color .widget.widget_nav_menu ul li:not(:last-child), .dark-color .widget.widget_meta ul li:not(:last-child), .dark-color .widget.widget_pages ul li:not(:last-child), .dark-color .widget.widget_rss ul li:not(:last-child), .dark-color .widget.widget_recent_entries ul li:not(:last-child) {
          border-bottom-color: rgba(255, 255, 255, 0.1); }
      .widget.widget_categories ul li a, .widget.widget_archive ul li a, .widget.widget_nav_menu ul li a, .widget.widget_meta ul li a, .widget.widget_pages ul li a, .widget.widget_rss ul li a, .widget.widget_recent_entries ul li a {
        font-size: 14px;
        font-size: 0.875rem; }
        .no-touch .widget.widget_categories ul li a:hover, .no-touch .widget.widget_archive ul li a:hover, .no-touch .widget.widget_nav_menu ul li a:hover, .no-touch .widget.widget_meta ul li a:hover, .no-touch .widget.widget_pages ul li a:hover, .no-touch .widget.widget_rss ul li a:hover, .no-touch .widget.widget_recent_entries ul li a:hover {
          color: var(--primary-color); }
      .widget.widget_categories ul li ul, .widget.widget_archive ul li ul, .widget.widget_nav_menu ul li ul, .widget.widget_meta ul li ul, .widget.widget_pages ul li ul, .widget.widget_rss ul li ul, .widget.widget_recent_entries ul li ul {
        margin-top: 8.5px;
        margin-left: 20px;
        clear: both; }
        .widget.widget_categories ul li ul li, .widget.widget_archive ul li ul li, .widget.widget_nav_menu ul li ul li, .widget.widget_meta ul li ul li, .widget.widget_pages ul li ul li, .widget.widget_rss ul li ul li, .widget.widget_recent_entries ul li ul li {
          border-bottom: none !important;
          padding-bottom: 0 !important; }
  .widget.widget_archive ul li, .widget.widget_categories ul li {
    font-size: 13px;
    font-size: 0.8125rem;
    text-align: right;
    line-height: 26px; }
    .widget.widget_archive ul li a, .widget.widget_categories ul li a {
      float: left;
      width: 80%;
      font-size: 14px;
      font-size: 0.875rem;
      text-align: left; }
  .widget.widget_categories ul ul li:before, .widget.widget_nav_menu ul ul li:before, .widget.widget_pages ul ul li:before {
    position: absolute;
    top: 1px;
    left: -20px;
    width: 20px;
    color: inherit;
    font-family: 'ElegantIcons';
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    content: "\35";
    line-height: inherit;
    text-align: left;
    color: var(--primary-color); }
  .widget.widget_categories ul li a:not(:last-child) {
    margin-bottom: 6px; }
  .widget.widget_recent_entries ul li a {
    display: block;
    font-size: 16px;
    font-size: 1rem;
    font-weight: 500; }
  .widget.widget_recent_entries .post-date {
    display: block;
    margin-top: 2px;
    font-size: 12px;
    font-size: 0.75rem;
    opacity: 0.5; }
  .widget.widget_recent_comments ul {
    margin: 0;
    list-style: none; }
    .widget.widget_recent_comments ul li {
      font-size: 14px;
      font-size: 0.875rem; }
      .widget.widget_recent_comments ul li:not(:last-child) {
        margin-bottom: 15px;
        padding-bottom: 15px;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05); }
      .widget.widget_recent_comments ul li > a {
        display: block;
        margin-top: 5px;
        font-size: 16px;
        font-size: 1rem;
        font-weight: 500; }
        .no-touch .widget.widget_recent_comments ul li > a:hover {
          color: var(--primary-color); }
  .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:not(:last-child) {
    margin-bottom: 15px;
    padding-bottom: 15px; }
  .widget.widget_rss ul li a.rsswidget {
    font-size: 16px;
    font-size: 1rem;
    font-weight: 500; }
  .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: 8.5px;
    font-size: 14px;
    font-size: 0.875rem; }
    .widget.widget_rss ul li .rssSummary + cite {
      display: block;
      margin-top: 8.5px; }
  .widget.widget_rss ul li cite {
    font-size: 12px;
    font-size: 0.75rem; }
  .widget.tinysalt-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; }
  .widget.tinysalt-widget_cat .cat {
    width: calc(33.3333% - 20px);
    margin: 0 20px 15px 0;
    overflow: hidden; }
    .widget-area .widget.tinysalt-widget_cat .cat:nth-child(3n+3) {
      margin-right: 0; }
    .widget.tinysalt-widget_cat .cat a {
      position: relative;
      display: block;
      width: 100%;
      max-width: 160px;
      font-size: 12px;
      font-size: 0.75rem;
      font-weight: 500;
      line-height: 1;
      letter-spacing: 0.05em;
      text-transform: uppercase;
      text-align: center;
      transition: 0s; }
      .widget.tinysalt-widget_cat .cat a .cat-bg {
        position: relative;
        z-index: 1;
        height: 0;
        padding-top: 100%;
        border-radius: 50%;
        margin-bottom: 8px;
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        overflow: hidden; }
      .widget.tinysalt-widget_cat .cat a .category-name {
        position: relative;
        z-index: 3;
        line-height: 1.5; }
        .widget.tinysalt-widget_cat .cat a .category-name:before {
          position: absolute;
          z-index: -1;
          bottom: 0;
          left: 0;
          width: 100%;
          height: 100%;
          box-shadow: inset 0 -6px 0 var(--primary-color), 0 2px 0 var(--primary-color);
          content: "";
          opacity: 0.7;
          -webkit-transform: scaleX(0);
          -ms-transform: scaleX(0);
          transform: scaleX(0);
          transition: transform 0.3s ease;
          transform-origin: 0 0; }
      .no-touch .widget.tinysalt-widget_cat .cat a:hover .category-name:before {
        -webkit-transform: scaleX(1);
        -ms-transform: scaleX(1);
        transform: scaleX(1); }
  .widget.tinysalt-widget_about {
    text-align: center; }
    .widget.tinysalt-widget_about p:last-child {
      margin-bottom: 0; }
    .widget.tinysalt-widget_about .profile-img {
      position: relative;
      z-index: 3;
      display: block;
      padding: 5px;
      margin: 0 auto 18px;
      border: 1px dashed var(--primary-color);
      border-radius: 50%;
      overflow: hidden; }
    .widget.tinysalt-widget_about .subheading {
      display: block;
      margin: 0 0 15px;
      font-size: 21px;
      font-size: 1.3125rem;
      font-weight: 500;
      line-height: 1;
      text-align: center; }
    .widget.tinysalt-widget_about .socialwidget {
      margin-top: 15px; }
    .widget.tinysalt-widget_about a.button {
      margin-top: 20px; }
  .widget.tinysalt-widget_ad a,
  .widget.tinysalt-widget_ad img {
    display: block; }
  .widget.tinysalt-widget_instagram ul {
    margin: -5px;
    list-style: none; }
    .widget.tinysalt-widget_instagram ul li {
      float: left;
      width: 33.333333%;
      padding: 5px;
      margin: 0;
      border: none; }
      .widget.tinysalt-widget_instagram ul li a {
        position: relative;
        display: block;
        overflow: hidden; }
        .no-touch .widget.tinysalt-widget_instagram ul li a:hover .feed-bg {
          -webkit-transform: scale(1.06);
          -ms-transform: scale(1.06);
          transform: scale(1.06); }
      .widget.tinysalt-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;
        transition: all 0.4s ease-out;
        -webkit-transform: scale(1.02);
        -ms-transform: scale(1.02);
        transform: scale(1.02); }
      .widget.tinysalt-widget_instagram ul li .feed-video {
        margin-bottom: 0; }
  .widget.tinysalt-widget_instagram .ins-follow-btn {
    margin: 15px auto 0;
    text-align: center; }
    .widget.tinysalt-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.tinysalt-widget_posts ul {
    margin: 0;
    list-style: none; }
    .widget.tinysalt-widget_posts ul li {
      position: relative;
      padding: 0; }
      .widget.tinysalt-widget_posts ul li:not(:first-child) {
        margin-top: 20px; }
  .widget.tinysalt-widget_posts .thumbnail,
  .widget.tinysalt-widget_posts .post-content {
    position: relative;
    z-index: 2;
    pointer-events: none; }
  .widget.tinysalt-widget_posts .post-link {
    position: relative;
    z-index: 1;
    display: block; }
  .widget.tinysalt-widget_posts .thumbnail img {
    display: block;
    margin: 0; }
  .widget.tinysalt-widget_posts .post-title {
    margin-bottom: 0;
    font-size: 16px;
    font-size: 1rem; }
  .widget.tinysalt-widget_posts .meta {
    margin-top: 5px;
    font-size: 12px;
    font-size: 0.75rem;
    letter-spacing: 0;
    opacity: 0.5; }
  .widget.tinysalt-widget_posts .meta-item {
    display: inline-block;
    margin-right: 5px; }
  .widget.tinysalt-widget_posts.small-thumbnail .post-link {
    display: table;
    width: 100%;
    clear: both; }
  .widget.tinysalt-widget_posts.small-thumbnail .thumbnail {
    position: relative;
    width: 80px;
    height: 80px;
    margin-right: 15px;
    border-radius: 50%;
    overflow: hidden; }
    .widget.tinysalt-widget_posts.small-thumbnail .thumbnail img {
      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: 100%;
      height: 100%;
      object-fit: cover;
      border-radius: 50%; }
  .widget.tinysalt-widget_posts.small-thumbnail .post-content {
    display: table-cell;
    width: 100%;
    vertical-align: middle; }
  .widget.tinysalt-widget_posts.small-thumbnail .post-title {
    transition: color 0.4s; }
  .widget.tinysalt-widget_posts.small-thumbnail .post-link:hover .post-title {
    color: var(--primary-color); }
  .widget.tinysalt-widget_posts.small-thumbnail.with-post-number ul li .post-content:before {
    display: none; }
  .widget.tinysalt-widget_posts.small-thumbnail.with-post-number ul li .post-content {
    padding-left: 0; }
  .widget.tinysalt-widget_posts.small-thumbnail.with-post-number .thumbnail:before, .widget.tinysalt-widget_posts.small-thumbnail.with-post-number .thumbnail:after {
    transition: opacity 0.4s; }
  .widget.tinysalt-widget_posts.small-thumbnail.with-post-number .thumbnail:before {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 8;
    background: #000;
    content: "";
    opacity: 0.2; }
  .widget.tinysalt-widget_posts.small-thumbnail.with-post-number .thumbnail: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: 28px;
    height: 22px;
    color: #fff;
    text-align: center;
    font-size: 28px;
    font-size: 1.75rem;
    font-weight: 600;
    line-height: 22px;
    content: counter(step-counter);
    pointer-events: none; }
  .widget.tinysalt-widget_posts.small-thumbnail.with-post-number .post-link:hover .thumbnail:before, .widget.tinysalt-widget_posts.small-thumbnail.with-post-number .post-link:hover .thumbnail:after {
    opacity: 0; }
  .widget.tinysalt-widget_posts.bg-thumbnail li:not(:first-child) {
    margin-top: 5px; }
  .widget.tinysalt-widget_posts.bg-thumbnail .post-link {
    padding: 40px 20px;
    background: rgba(0, 0, 0, 0.02); }
    .dark-color .widget.tinysalt-widget_posts.bg-thumbnail .post-link {
      background: #262626; }
  .widget.tinysalt-widget_posts.bg-thumbnail .thumbnail {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 0.4s; }
    .widget.tinysalt-widget_posts.bg-thumbnail .thumbnail:after {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      z-index: 2;
      background: #000;
      opacity: 0.4;
      content: ""; }
    .widget.tinysalt-widget_posts.bg-thumbnail .thumbnail + .post-content, .widget.tinysalt-widget_posts.bg-thumbnail .thumbnail + .post-content:before {
      transition: color 0.4s; }
  .widget.tinysalt-widget_posts.bg-thumbnail li a:hover .thumbnail {
    opacity: 1; }
    .widget.tinysalt-widget_posts.bg-thumbnail li a:hover .thumbnail + .post-content, .widget.tinysalt-widget_posts.bg-thumbnail li a:hover .thumbnail + .post-content:before {
      color: #fff; }
  .widget.tinysalt-widget_posts.bg-thumbnail .post-title {
    font-weight: 600; }
  .widget.tinysalt-widget_posts.bg-thumbnail .meta {
    opacity: 1; }
  .widget.tinysalt-widget_posts.with-post-number ul li {
    counter-increment: step-counter; }
    .widget.tinysalt-widget_posts.with-post-number ul li .post-content {
      padding-left: 42px; }
      .widget.tinysalt-widget_posts.with-post-number ul li .post-content:before {
        position: absolute;
        top: 0;
        left: 0;
        z-index: 9;
        display: block;
        width: 28px;
        height: 22px;
        color: var(--primary-color);
        text-align: center;
        font-size: 22px;
        font-size: 1.375rem;
        font-weight: 600;
        line-height: 22px;
        content: counter(step-counter) ".";
        pointer-events: none; }

/* Widgets Area
   ========================================================================== */
.widget-area .widget p,
.widget-area .widget .textwidget ul,
.widget-area .widget .textwidget ol {
  margin-bottom: 17px;
  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.tinysalt-widget_social ul {
  text-align: center; }
.widget-area .widget.tinysalt-widget_social ul.social-nav li a {
  margin: 0 4px 8px;
  background: #000;
  border-radius: 50%;
  color: #fff; }
  .no-touch .widget-area .widget.tinysalt-widget_social ul.social-nav li a:hover {
    background: var(--primary-color); }
  .widget-area .widget.tinysalt-widget_social ul.social-nav li a:before {
    font-size: 12px;
    font-size: 0.75rem; }

/* MailChimp for WordPress form
   ========================================================================== */
.mc4wp-form .fields-container {
  position: relative;
  width: 100%;
  max-width: 450px;
  height: 42px;
  margin-top: 34px;
  overflow: hidden; }
  .widget-area .mc4wp-form .fields-container {
    height: auto;
    margin-top: 17px; }
  .home-widget.signup-form .mc4wp-form .fields-container, .primary .signup-form .mc4wp-form .fields-container {
    margin-top: 17px; }
  .mc4wp-form .fields-container input[type="email"] {
    position: relative;
    z-index: 1;
    height: 42px;
    padding-right: 140px;
    border-radius: 999px;
    text-align: left; }
    .widget-area .mc4wp-form .fields-container input[type="email"] {
      padding-right: 0;
      border-radius: 0; }
  .mc4wp-form .fields-container input[type="submit"] {
    position: absolute;
    z-index: 3;
    top: 0;
    right: 0;
    width: 140px;
    padding: 0; }
    .widget-area .mc4wp-form .fields-container input[type="submit"] {
      position: relative;
      width: 100%; }
  .mc4wp-form .fields-container + p {
    margin-top: 34px; }
    .widget-area .mc4wp-form .fields-container + p, .primary .signup-form .mc4wp-form .fields-container + p, .home-widget.signup-form .mc4wp-form .fields-container + p {
      margin-top: 17px; }
.mc4wp-form input[type="email"] {
  max-width: 450px; }
.mc4wp-form input[type="text"], .mc4wp-form input[type="email"] {
  font-size: 14px;
  font-size: 0.875rem; }
  .dark-color .mc4wp-form input[type="text"],
  .dark-color .mc4wp-form input[type="email"] {
    background: #fff;
    color: #000; }
.mc4wp-form a {
  text-decoration: underline; }
  .no-touch .mc4wp-form a:hover {
    text-decoration: none; }
.entry-content .mc4wp-form .fields-container {
  margin-left: 0; }
.entry-content .mc4wp-form a {
  box-shadow: none; }
.entry-content .mc4wp-form .mc4wp-form-fields > p:last-child,
.entry-content .mc4wp-form .mc4wp-alert > p:last-child {
  margin-bottom: 0; }
.entry-content .wp-block-cover .has-text-align-center ~ .mc4wp-form {
  text-align: center; }
  .entry-content .wp-block-cover .has-text-align-center ~ .mc4wp-form .fields-container {
    margin-left: auto; }
.submitting-form .mc4wp-form {
  opacity: 0.5;
  pointer-events: none; }

.widget.widget_mc4wp_form_widget .widget-title {
  position: relative;
  display: inline-block;
  width: auto;
  margin-bottom: 30px;
  font-family: inherit;
  font-size: 28px;
  font-size: 1.75rem;
  font-weight: 700; }
  .primary .signup-form .widget.widget_mc4wp_form_widget .widget-title {
    font-size: 21px;
    font-size: 1.3125rem;
    margin-bottom: 17px; }
  .home-widget.signup-form .widget.widget_mc4wp_form_widget .widget-title {
    font-size: 24px;
    font-size: 1.5rem;
    line-height: 1;
    margin-bottom: 17px; }
.widget.widget_mc4wp_form_widget p:last-of-type {
  margin-bottom: 0; }
.home-widget.signup-form .widget.widget_mc4wp_form_widget > *,
.home-widget.signup-form .widget.widget_mc4wp_form_widget .mc4wp-form-fields > * {
  margin-left: 0; }
.home-widget.signup-form .widget.widget_mc4wp_form_widget p:not(:last-child) {
  margin-bottom: 17px; }
.home-widget.signup-form.center-column .widget.widget_mc4wp_form_widget {
  text-align: center; }
  .home-widget.signup-form.center-column .widget.widget_mc4wp_form_widget > *,
  .home-widget.signup-form.center-column .widget.widget_mc4wp_form_widget .mc4wp-form-fields > * {
    margin-right: auto;
    margin-left: auto; }
  .home-widget.signup-form.center-column .widget.widget_mc4wp_form_widget .widget-title {
    text-align: center; }
.site-footer-signup .widget.widget_mc4wp_form_widget .widget-title:before, .widget-area .widget.widget_mc4wp_form_widget .widget-title:before {
  position: absolute;
  top: 50%;
  margin-top: -10px;
  font-family: 'ElegantIcons';
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  content: "\e010";
  display: block;
  color: inherit;
  font-size: 80px;
  opacity: 0.05; }
.site-footer-signup .widget.widget_mc4wp_form_widget .widget-title:before {
  -webkit-transform: translate(0, -50%) rotate(15deg);
  -ms-transform: translate(0, -50%) rotate(15deg);
  transform: translate(0, -50%) rotate(15deg);
  right: -40px; }
.widget-area .widget.widget_mc4wp_form_widget {
  padding: 40px 30px 30px;
  background: #fff;
  border-radius: 0 0 10px 10px;
  border-top: 5px solid var(--primary-color);
  box-shadow: 0 5px 20px -6px rgba(0, 0, 0, 0.05), 0 0 1px rgba(0, 0, 0, 0.05);
  text-align: center;
  transition: box-shadow 0.4s; }
  .dark-color .widget-area .widget.widget_mc4wp_form_widget {
    background: #363636; }
  .no-touch .widget-area .widget.widget_mc4wp_form_widget:hover {
    box-shadow: 0 15px 30px -6px rgba(0, 0, 0, 0.1), 0 0 1px rgba(0, 0, 0, 0.05); }
  .widget-area .widget.widget_mc4wp_form_widget .widget-title {
    padding: 0;
    border: none;
    font-size: 21px;
    font-size: 1.3125rem;
    letter-spacing: 0;
    text-transform: none;
    font-style: normal; }
    .widget-area .widget.widget_mc4wp_form_widget .widget-title:before {
      left: 50%;
      -webkit-transform: translate(-50%, -50%) rotate(15deg);
      -ms-transform: translate(-50%, -50%) rotate(15deg);
      transform: translate(-50%, -50%) rotate(15deg);
      margin-left: 80px; }
    .widget-area .widget.widget_mc4wp_form_widget .widget-title:after {
      display: none; }
  .widget-area .widget.widget_mc4wp_form_widget input[type="submit"] {
    width: 100%;
    border-radius: 0; }
  .widget-area .widget.widget_mc4wp_form_widget .fields-container input[type="submit"] {
    margin-top: 10px; }
.widget.widget_mc4wp_form_widget .mc4wp-alert {
  margin-top: 34px; }
  .widget-area .widget.widget_mc4wp_form_widget .mc4wp-alert, .primary .signup-form .widget.widget_mc4wp_form_widget .mc4wp-alert, .home-widget.signup-form .widget.widget_mc4wp_form_widget .mc4wp-alert {
    margin-top: 17px; }
  .popup-signup .widget.widget_mc4wp_form_widget .mc4wp-alert {
    margin-top: 0; }

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

/* Site Footer
   ========================================================================== */
.site-footer {
  clear: both; }
  .site-footer .widget-area {
    padding: 0 0 50px; }
    .site-footer .widget-area .widget-area-row {
      width: 100%;
      overflow: hidden; }
    .site-footer .widget-area .widget {
      margin-top: 50px; }
  .site-footer .site-footer-bottom {
    padding: 30px 0;
    background: #111;
    color: #fff;
    font-size: 13px;
    font-size: 0.8125rem;
    text-align: center; }
    .site-footer .site-footer-bottom a {
      color: inherit; }
    .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;
      margin: 10px auto; }
      .site-footer .site-footer-bottom .widget.widget_nav_menu ul li {
        display: inline-block;
        padding: 0;
        margin: 0;
        border: none; }
        .site-footer .site-footer-bottom .widget.widget_nav_menu ul li a {
          display: block;
          padding: 5px 15px;
          font-size: 12px;
          font-size: 0.75rem;
          text-transform: uppercase;
          letter-spacing: 0.5px; }

/* Footer Logo, Signup Section & Instagram Feed
   ========================================================================== */
.site-footer-top-logo {
  position: relative;
  width: 100%;
  text-align: center;
  font-size: 0; }
  .site-footer-top-logo .footer-logo {
    position: relative;
    z-index: 9;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    width: 100%; }
    .site-footer-top-logo .footer-logo hr {
      width: 100%;
      height: 1px;
      background-color: #ededed;
      border: none;
      margin: 0; }
    .site-footer-top-logo .footer-logo img {
      margin: 0 20px;
      height: auto;
      -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
      flex-shrink: 0; }
      .site-footer-top-logo .footer-logo img:only-child {
        margin: 0 auto; }
  .site-footer-top-logo.logo-only .footer-logo {
    padding: 80px 0; }

.site-footer-signup {
  padding: 80px 0;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  text-align: center; }
  .site-footer-top-logo + .site-footer-signup {
    border-top: none; }

.site-footer-instagram .widget.tinysalt-widget_instagram {
  position: relative;
  margin: 0;
  text-align: center;
  overflow: hidden; }
  .site-footer-instagram .widget.tinysalt-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;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    width: 130px;
    height: 130px;
    padding: 0 4px;
    margin-bottom: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    color: #000;
    font-family: inherit;
    font-size: 14px;
    font-size: 0.875rem;
    line-height: 1.3;
    font-weight: 600;
    letter-spacing: 0;
    text-align: center;
    overflow: hidden; }
  .site-footer-instagram .widget.tinysalt-widget_instagram ul li {
    padding: 0; }
  .site-footer-instagram .widget.tinysalt-widget_instagram.column-4 ul li {
    width: 25%; }
  .site-footer-instagram .widget.tinysalt-widget_instagram.column-5 ul li {
    width: 20%; }
  .site-footer-instagram .widget.tinysalt-widget_instagram.column-6 ul li {
    width: 16.666%; }
  .site-footer-instagram .widget.tinysalt-widget_instagram.column-7 ul li {
    width: 14.28%; }
  .site-footer-instagram .widget.tinysalt-widget_instagram.column-8 ul li {
    width: 12.5%; }

.to-top {
  position: fixed;
  right: 20px;
  bottom: 37px;
  z-index: 1000;
  display: block;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #000;
  color: #fff;
  text-align: center;
  line-height: 44px;
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  overflow: hidden;
  transition: opacity 0.4s; }
  .dark-color .to-top {
    background: #fff;
    color: #000; }
  .to-top:before {
    font-family: 'ElegantIcons';
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    content: "\36";
    font-size: 18px;
    font-size: 1.125rem; }
  .to-top.show {
    opacity: 1;
    pointer-events: auto;
    visibility: visible; }

/* Popup Newsletter Signup Form
   ========================================================================== */
.popup-signup {
  position: fixed;
  z-index: 1003;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  width: 100%;
  height: 100vh;
  padding: 0;
  overflow: hidden;
  transition: 0.4s;
  visibility: hidden;
  transition: visibility 0s 0.35s, opacity 0.3s 0s;
  opacity: 0; }
  .popup-signup.show {
    visibility: visible;
    opacity: 1;
    transition-delay: 0s; }
  .popup-signup .screen-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1; }
  .popup-signup.has-overlay .screen-bg:after {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    content: "";
    opacity: 0.5; }
  .popup-signup.light-color.has-overlay .screen-bg:after {
    background: #fff; }
  .popup-signup.dark-color.has-overlay .screen-bg:after {
    background: #000; }
  .popup-signup .close-button {
    position: absolute;
    top: 20px;
    right: 20px; }
    @media screen and (min-width: 601px) and (max-width: 782px) {
      .logged-in.admin-bar .popup-signup .close-button {
        top: 66px; } }
    @media screen and (min-width: 783px) {
      .logged-in.admin-bar .popup-signup .close-button {
        top: 52px; } }
  .popup-signup .container {
    position: relative;
    z-index: 3;
    padding: 50px 20px;
    text-align: center; }
  .popup-signup p {
    font-size: 18px;
    font-size: 1.125rem; }
  .popup-signup p.lead {
    font-size: 24px;
    font-size: 1.5rem; }
  .popup-signup .signup-screen-nav {
    margin-top: 50px;
    list-style: none;
    font-weight: 500; }
    .popup-signup .signup-screen-nav ul {
      margin: 0 auto; }
    .popup-signup .signup-screen-nav li {
      display: inline-block;
      margin: 10px; }
      .popup-signup .signup-screen-nav li a {
        font-size: 12px;
        font-size: 0.75rem;
        text-transform: uppercase;
        letter-spacing: 0.5px; }
    .no-touch .popup-signup .signup-screen-nav a:hover {
      opacity: 0.6; }
  .popup-signup .popup-exit {
    position: absolute;
    z-index: 9;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 10px;
    text-align: center; }
  .popup-signup .tinysalt-disable-popup-signup-form,
  .popup-signup .tinysalt-exit-popup-signup-form {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 4px;
    background: #000;
    color: #fff;
    font-size: 14px;
    font-size: 0.875rem;
    font-weight: 500; }
    .no-touch .popup-signup .tinysalt-disable-popup-signup-form:hover,
    .no-touch .popup-signup .tinysalt-exit-popup-signup-form:hover {
      background: #fff;
      color: #000; }
  .popup-signup .tinysalt-exit-popup-signup-form {
    display: none; }
  .popup-signup.subscribed form,
  .popup-signup.subscribed .tinysalt-disable-popup-signup-form {
    display: none; }
  .popup-signup.subscribed .tinysalt-exit-popup-signup-form {
    display: inline-block; }
  .popup-signup.submitting-form form {
    opacity: 0.5;
    pointer-events: none; }

/* Search Form in Site Header on Mobile Devices
   ========================================================================== */
.search-screen {
  position: fixed;
  z-index: 999;
  top: 0;
  right: 0;
  display: block;
  width: 100vw;
  height: 100vh;
  padding: 0;
  background: inherit;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s; }
  @media screen and (min-width: 783px) {
    .logged-in.admin-bar .search-screen {
      top: 32px;
      height: calc(100vh - 32px); } }
  .search-screen.show {
    opacity: 1;
    pointer-events: auto;
    visibility: visible; }
  .search-screen .container {
    width: 100vw;
    height: 100vh;
    padding: 0; }
    @media screen and (min-width: 783px) {
      .logged-in.admin-bar .search-screen .container {
        height: calc(100vh - 32px); } }
  .search-screen .close-button {
    position: absolute;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    top: 20px; }
    @media screen and (max-width: 783px) {
      .logged-in.admin-bar .search-screen .close-button {
        top: 70px; } }
  .search-screen .search {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: calc(100% - 40px);
    max-width: 600px; }
  .search-screen input[type="search"] {
    padding: 5px 20px;
    border: 0;
    border-radius: 999px;
    font-size: 13px;
    font-size: 0.8125rem; }
  .search-screen button.search-submit {
    position: absolute;
    right: 0;
    width: auto;
    border: none;
    background: var(--primary-color);
    border-radius: 99px;
    padding: 0 20px;
    color: #fff;
    font-size: 11px;
    font-size: 0.6875rem;
    line-height: 46px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase; }
    @media screen and (min-width: 600px) {
      .search-screen button.search-submit {
        padding: 0 40px; } }

.heart-beat {
  -webkit-animation: heartBeat 1s infinite;
  animation: heartBeat 1s infinite;
  display: inline-block; }

@media screen and (min-width: 600px) {
  .popup-signup .container {
    padding-right: 30px;
    padding-left: 30px; } }
@media screen and (min-width: 1024px) {
  .site-footer .site-footer-bottom:not(.column-single) .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;
    padding: 0 60px; }
    .site-footer .site-footer-bottom:not(.column-single) .container > .widget {
      flex: 1;
      flex-grow: 1; }
      .site-footer .site-footer-bottom:not(.column-single) .container > .widget:first-child:not(:only-child) {
        text-align: left; }
        .site-footer .site-footer-bottom:not(.column-single) .container > .widget:first-child:not(:only-child) ul.menu {
          margin-left: -15px; }
      .site-footer .site-footer-bottom:not(.column-single) .container > .widget:last-child:not(:only-child) {
        text-align: right; }
        .site-footer .site-footer-bottom:not(.column-single) .container > .widget:last-child:not(:only-child) ul.menu {
          margin-right: -15px; }

  .home-widget.signup-form.right-column .widget.widget_mc4wp_form_widget {
    width: 50%;
    margin-right: 0; }

  .popup-signup .widget.widget_mc4wp_form_widget .widget-title {
    font-size: 36px;
    font-size: 2.25rem; } }
@media screen and (min-width: 1120px) {
  .sidebar {
    padding-bottom: 100px; } }
@media screen and (min-width: 1440px) {
  .popup-signup .widget.widget_mc4wp_form_widget .widget-title {
    font-size: 46px;
    font-size: 2.875rem; }
  .popup-signup p {
    font-size: 21px;
    font-size: 1.3125rem; } }
@media screen and (max-width: 600px) {
  .site-footer-instagram .widget.tinysalt-widget_instagram.column-4 ul li {
    width: 50%; }
  .site-footer-instagram .widget.tinysalt-widget_instagram.column-5 ul li {
    width: 50%; }
    .site-footer-instagram .widget.tinysalt-widget_instagram.column-5 ul li:last-child {
      display: none; }
  .site-footer-instagram .widget.tinysalt-widget_instagram.column-6 ul li {
    width: 33.3333%; }
  .site-footer-instagram .widget.tinysalt-widget_instagram.column-7 ul li {
    width: 33.3333%; }
    .site-footer-instagram .widget.tinysalt-widget_instagram.column-7 ul li:last-child {
      display: none; }
  .site-footer-instagram .widget.tinysalt-widget_instagram.column-8 ul li {
    width: 25%; }

  .mc4wp-form .fields-container input[type="submit"] {
    width: 120px; }
  .mc4wp-form .fields-container input[type="email"] {
    padding-right: 120px; }

  .popup-signup .signup-screen-nav li:first-child {
    margin-left: 0; }
  .popup-signup .signup-screen-nav li:last-child {
    margin-right: 0; } }
@media screen and (max-width: 480px) {
  .site-footer .site-footer-bottom .widget.widget_nav_menu ul li a {
    padding-right: 8px;
    padding-left: 8px; } }
/* ==========================================================================
   9.0 Forms
   ========================================================================== */
::-webkit-input-placeholder {
  color: currentColor;
  opacity: 0.5; }

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

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

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

input[type="text"], input[type="email"], input[type="url"], input[type="file"], input[type="password"], input[type="number"], input[type="date"], input[type="search"], input[type="tel"], textarea {
  width: 100%;
  height: 46px;
  padding: 5px 15px;
  background: rgba(0, 0, 0, 0.03);
  border: none;
  border-radius: 4px;
  color: #000;
  -webkit-appearance: none !important;
  font-size: 15px;
  font-size: 0.9375rem;
  line-height: 2;
  font-weight: 400; }
  input[type="text"]:focus,
  input[type="email"]:focus,
  input[type="url"]:focus,
  input[type="file"]:focus,
  input[type="password"]:focus,
  input[type="number"]:focus,
  input[type="date"]:focus,
  input[type="search"]:focus,
  input[type="tel"]:focus,
  textarea:focus {
    outline: 0; }
  .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: #262626;
    color: #fff; }

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.2em;
  text-transform: uppercase;
  line-height: 42px;
  text-align: center;
  transition: 0.4s;
  cursor: pointer; }
  .no-touch .form-submit input[type="submit"]:hover, .form-submit input[type="submit"]:focus {
    background: #000;
    color: #fff; }
  .dark-color .form-submit input[type="submit"] {
    border-color: #fff;
    color: #fff; }
    .no-touch .dark-color .form-submit input[type="submit"]:hover, .dark-color .form-submit input[type="submit"]:focus {
      background: #fff;
      color: #000; }

select {
  height: 40px;
  padding: 2px;
  background: rgba(0, 0, 0, 0.03);
  border: none;
  box-shadow: none;
  color: #000;
  outline: 0;
  line-height: 40px;
  vertical-align: middle;
  font-size: 13px !important;
  font-size: 0.8125rem !important;
  letter-spacing: .05em;
  text-transform: none;
  -webkit-font-smoothing: subpixel-antialiased; }
  .dark-color select {
    background: #262626;
    color: #fff; }

form.post-password-form label {
  position: relative;
  z-index: 9;
  display: inline-block;
  width: 280px;
  height: 40px;
  padding-left: 10px;
  color: #000;
  font-size: 13px;
  font-size: 0.8125rem;
  line-height: 40px;
  text-align: left;
  vertical-align: bottom; }
  form.post-password-form label input[type="password"] {
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    height: 40px;
    padding: 0 0 0 80px;
    line-height: 40px; }
form.post-password-form input[type="submit"] {
  width: 130px;
  margin: 8px 0 0 0; }

.site-content .search form,
.widget_search form {
  position: relative;
  max-width: 500px; }
  .site-content .search form i.fa,
  .widget_search form i.fa {
    position: absolute;
    left: 0;
    display: block;
    width: 46px;
    height: 46px;
    color: var(--primary-color);
    font-size: 14px;
    font-size: 0.875rem;
    line-height: 46px;
    text-align: center; }
  .site-content .search form input[type="search"], .widget_search form input[type="search"] {
    max-width: 500px;
    padding-left: 46px;
    background: #fff;
    border: 0;
    border-radius: 999px;
    box-shadow: 0 0 1px rgba(0, 0, 0, 0.3);
    font-size: 14px;
    font-size: 0.875rem; }
    .dark-color .site-content .search form input[type="search"],
    .dark-color .widget_search form input[type="search"] {
      background: #262626; }
    .site-content .search form input[type="search"]:focus, .widget_search form input[type="search"]:focus {
      box-shadow: 0 5px 22px -6px rgba(0, 0, 0, 0.1), 0 0 1px rgba(0, 0, 0, 0.05); }

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

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

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

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

.tinysalt-bannr > a > img,
.tinysalt-bannr > img {
  display: block; }
.entry-content > .tinysalt-bannr:first-child {
  margin-bottom: 34px; }

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

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

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

#page .wp-playlist {
  margin: 0 0 34px;
  padding-bottom: 0; }
  #page .wp-playlist .wp-playlist-tracks {
    margin-top: 0; }
  #page .wp-playlist a {
    border-bottom: none;
    box-shadow: none !important; }

.wp-playlist-item .wp-playlist-caption {
  padding: 17px 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;
  box-shadow: none !important; }

/**
 * Captions
 */
.wp-caption {
  margin: 34px 0;
  max-width: 100%;
  clear: both; }
  .wp-caption.aligncenter {
    text-align: center; }

.wp-caption-text,
figcaption {
  display: block;
  padding: 14px 0;
  font-size: 14px;
  font-size: 0.875rem;
  text-align: center;
  line-height: 1.5;
  font-weight: 500;
  opacity: 0.8; }
  .wp-caption-text a,
  figcaption a {
    font-weight: 600; }

.entry-content p > img.alignnone {
  margin-top: 34px;
  margin-bottom: 34px; }
  .entry-content p > img.alignnone:first-child {
    margin-top: 0; }
  .entry-content p > img.alignnone:last-child {
    margin-bottom: 0; }

.blocks-gallery-grid + .blocks-gallery-caption {
  padding-top: 0; }

.blocks-gallery-grid .blocks-gallery-item figcaption {
  opacity: 1; }

img[class*="wp-image-"] {
  display: block;
  margin-left: 0; }
  img[class*="wp-image-"].aligncenter {
    margin-right: auto;
    margin-left: auto; }
  img[class*="wp-image-"].alignright {
    margin-right: 0;
    margin-left: 34px; }

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

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

/**
 * Embeded Twitter Tweet
 */
.entry-content .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;
    background: #fff;
    border-radius: 50%;
    color: #000;
    font-size: 0;
    text-align: center;
    cursor: pointer; }
  .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%);
  width: 100vw;
  text-align: center; }
  .site-content:not([class*="with-sidebar"]) .wide-image > img {
    margin: 0 auto 34px; }
  .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 {
  opacity: 0; }
  .post-content-gallery.gallery-justified.justified-gallery-initialized {
    margin-bottom: 34px;
    opacity: 1;
    transition: opacity 0.4s; }
  .post-content-gallery.gallery-justified img {
    cursor: pointer; }
  .post-content-gallery.gallery-justified .gallery-item img {
    z-index: 1; }
  .post-content-gallery.gallery-justified .gallery-item:before, .post-content-gallery.gallery-justified .gallery-item:after {
    opacity: 0;
    transition: opacity 0.4s;
    pointer-events: none; }
  .post-content-gallery.gallery-justified .gallery-item:before {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 3;
    background: #000;
    content: ""; }
  .post-content-gallery.gallery-justified .gallery-item:after {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    z-index: 9;
    font-family: 'ElegantIcons';
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    content: "\54";
    font-size: 24px;
    font-size: 1.5rem;
    line-height: 40px;
    color: #fff; }
  .no-touch .post-content-gallery.gallery-justified .gallery-item:hover:before {
    opacity: 0.5; }
  .no-touch .post-content-gallery.gallery-justified .gallery-item:hover:after {
    opacity: 1; }

/**
 * Gallery Slider - Slick Slider
 */
.image-gallery .gallery-item .gallery-img {
  position: relative;
  width: 100%;
  height: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat; }

.image-gallery .slick-arrow {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 9;
  background: #fff;
  border-radius: 50%; }
  .image-gallery .slick-arrow.slick-prev {
    left: 20px; }
  .image-gallery .slick-arrow.slick-next {
    right: 20px; }
  .image-gallery .slick-arrow:after {
    font-size: 20px;
    font-size: 1.25rem; }

.gallery-slider {
  position: relative;
  width: 100%;
  height: 0;
  clear: both;
  overflow: hidden; }
  .gallery-slider .image-gallery .gallery-item div {
    position: relative;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat; }
  .gallery-slider .image-gallery,
  .gallery-slider .slick-list,
  .gallery-slider .slick-track {
    height: 100%; }
  .gallery-slider .slider-arrows {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 100%;
    height: 40px; }
    .gallery-slider .slider-arrows .slick-arrow {
      position: absolute;
      top: 0;
      padding: 0;
      background: #fff;
      border: 0;
      outline: 0;
      color: #111;
      font-size: 0 !important;
      text-align: center; }
      .gallery-slider .slider-arrows .slick-arrow:after {
        font-size: 20px;
        font-size: 1.25rem; }
      .gallery-slider .slider-arrows .slick-arrow.slick-prev {
        left: 10px; }
      .gallery-slider .slider-arrows .slick-arrow.slick-next {
        right: 10px; }
  .gallery-slider.ratio-3-2 {
    padding-top: 66.666666%; }
    .gallery-slider.ratio-3-2.alignfull {
      padding-top: 66.66vw; }
  .gallery-slider.ratio-1-1 {
    padding-top: 100%; }
    .gallery-slider.ratio-1-1.alignfull {
      padding-top: 100vw; }
  .gallery-slider.ratio-4-5 {
    padding-top: 125%; }
    .gallery-slider.ratio-4-5.alignfull {
      padding-top: 125vw; }
  .entry-content .gallery-slider {
    margin-bottom: 34px; }
  .gallery-slider .image-gallery {
    position: absolute;
    top: 0;
    width: 100%; }
  .gallery-slider .gallery-item .wp-caption-text {
    display: none; }
  .gallery-slider .gallery-item img {
    display: none; }
  .gallery-slider .loftocean-gallery-zoom {
    position: absolute;
    right: 10px;
    bottom: 10px;
    z-index: 9;
    display: none;
    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: ease 0.4s; }
    .no-touch .gallery-slider .loftocean-gallery-zoom:hover {
      background: rgba(0, 0, 0, 0.9); }
    .gallery-slider .loftocean-gallery-zoom:after {
      font-family: 'ElegantIcons';
      speak: none;
      font-style: normal;
      font-weight: normal;
      font-variant: normal;
      text-transform: none;
      line-height: 1;
      -webkit-font-smoothing: antialiased;
      font-size: 16px;
      font-size: 1rem;
      line-height: 40px;
      content: "\30"; }
  .gallery-slider .slick-initialized ~ .zoom {
    opacity: 1; }
  .gallery-slider.fullscreen {
    position: fixed !important;
    z-index: 1000;
    top: 0;
    left: 0;
    width: 100vw !important;
    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 .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,
    .gallery-slider.fullscreen .loftocean-popup-gallery-close {
      z-index: 9;
      display: block;
      width: 40px;
      height: 40px;
      font-size: 0;
      cursor: pointer;
      transition: 0.4s;
      position: absolute;
      z-index: 9;
      top: 60px;
      right: 30px;
      background: rgba(0, 0, 0, 0.5);
      border-radius: 50%;
      color: #fff; }
      .gallery-slider.fullscreen .zoom:before, .gallery-slider.fullscreen .zoom:after,
      .gallery-slider.fullscreen .loftocean-popup-gallery-close:before,
      .gallery-slider.fullscreen .loftocean-popup-gallery-close:after {
        position: absolute;
        top: 19px;
        left: 8px;
        display: block;
        width: 25px;
        height: 2px;
        background: currentColor;
        content: "";
        transition: transform 0.25s; }
      .gallery-slider.fullscreen .zoom:before,
      .gallery-slider.fullscreen .loftocean-popup-gallery-close:before {
        -webkit-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
        transform: rotate(45deg); }
      .gallery-slider.fullscreen .zoom:after,
      .gallery-slider.fullscreen .loftocean-popup-gallery-close:after {
        -webkit-transform: rotate(135deg);
        -ms-transform: rotate(135deg);
        transform: rotate(135deg); }

.gallery-zoom {
  overflow: hidden;
  height: 100vh; }
  .gallery-zoom .site-content {
    z-index: 99999; }

.video-block {
  position: relative;
  width: 100%;
  height: 400px; }
  .entry-content > .video-block:not(:last-child) {
    margin-bottom: 34px; }
  .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; }
    .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: 600px) {
  .logged-in.admin-bar .tinysalt-media-wrapper.tinysalt-media-fullscreen-playing .close-button {
    top: 70px; } }
@media screen and (max-width: 599px) {
  .gallery:not(.gallery-columns-1):not(.gallery-columns-2) .gallery-item .gallery-caption {
    display: none; } }
@media screen and (min-width: 768px) {
  .gallery-slider .loftocean-gallery-zoom {
    display: block; } }
@media screen and (min-width: 1120px) {
  .single.post-template-4 .entry-content .wide-image,
  .page.page-template-4 .entry-content .wide-image {
    left: 0;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
    width: auto; } }
/* ==========================================================================
   10.0 - Shortcode & Blocks
   ========================================================================== */
/* Gutenberg Elements
   ========================================================================== */
.entry-content *[class*="wp-block-"] {
  margin-bottom: 34px; }
  .entry-content *[class*="wp-block-"] *[class*="wp-block-"] {
    margin-bottom: 0; }

.entry-content .wp-block-group__inner-container > *[class*="wp-block-"],
.entry-content .wp-block-column > *[class*="wp-block-"] {
  margin-bottom: 34px; }

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

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

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

.entry-content .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: 34px; }

.wp-embed-responsive .wp-block-embed[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: 34px; }

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

.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;
  padding-bottom: 0; }

/**
 * 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-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: none;
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.3); }
  .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 {
    color: #fff;
    text-decoration: none;
    box-shadow: 0 1px 0 #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 {
  width: 100%;
  max-width: 860px;
  padding: 34px; }
.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-cover h1,
.wp-block-cover-image h1 {
  margin-top: 0; }
.wp-block-cover * + h1,
.wp-block-cover * + h2,
.wp-block-cover * + h3,
.wp-block-cover * + h4,
.wp-block-cover * + h5,
.wp-block-cover * + h6,
.wp-block-cover-image * + h1,
.wp-block-cover-image * + h2,
.wp-block-cover-image * + h3,
.wp-block-cover-image * + h4,
.wp-block-cover-image * + h5,
.wp-block-cover-image * + h6 {
  margin-top: 0; }

.wp-block-cover p:not(.has-text-color) {
  color: #fff; }

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

.wp-block-cover input[type="text"],
.wp-block-cover input[type="email"],
.wp-block-cover input[type="url"],
.wp-block-cover input[type="file"],
.wp-block-cover input[type="password"],
.wp-block-cover input[type="number"],
.wp-block-cover input[type="date"],
.wp-block-cover input[type="search"],
.wp-block-cover input[type="tel"],
.wp-block-cover textarea {
  background: #fff;
  color: #111; }

/**
 * Gutenberg Group
 */
.wp-block-group.has-background {
  padding: 50px 20px; }
.entry-content .wp-block-group.light-color a {
  color: #000; }
.entry-content .wp-block-group.dark-color a {
  color: #fff; }

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

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

/**
 * Gutenberg Quote & Pullquote
 */
.wp-block-quote:not(:first-child) {
  margin-top: 50px; }
.wp-block-quote:not(:last-child) {
  margin-bottom: 50px; }
.wp-block-quote.is-large, .wp-block-quote.is-style-large {
  padding: 0 50px;
  margin-right: auto;
  margin-left: auto; }
  .wp-block-quote.is-large p, .wp-block-quote.is-style-large p {
    font-size: 24px;
    font-size: 1.5rem;
    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;
    font-size: 16px;
    font-size: 1rem; }
  .wp-block-quote.is-large.has-text-align-center cite,
  .wp-block-quote.is-large.has-text-align-center footer, .wp-block-quote.is-style-large.has-text-align-center cite,
  .wp-block-quote.is-style-large.has-text-align-center footer {
    text-align: center; }
.wp-block-quote.has-text-align-center {
  padding: 0; }
  .entry-content .wp-block-quote.has-text-align-center:before {
    position: relative;
    top: 0;
    width: 100%; }

.wp-block-pullquote {
  padding: 35px;
  border-top: 4px solid;
  border-bottom: 4px solid; }
  .wp-block-pullquote blockquote {
    margin-bottom: 0;
    padding: 0;
    max-width: 100%;
    color: inherit; }
    .wp-block-pullquote blockquote:before {
      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 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: 50px auto !important;
  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:not(.is-style-wide):not(.is-style-dots) {
    height: 2px; }
  .wp-block-separator.has-background:not(.is-style-dots) {
    border-bottom: none; }

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

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

.wp-block-video figcaption,
.wp-block-embed figcaption {
  margin: 0;
  padding-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 #eee; }
  .wp-block-table.is-style-stripes table {
    border: none; }

/**
 * 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;
    box-shadow: none;
    text-decoration: none;
    font-weight: 600; }
  #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; }
#page .wp-block-latest-posts a,
#page .wp-block-latest-comments .wp-block-latest-comments__comment-link,
#page .wp-block-rss__item-title {
  font-family: var(--heading-font);
  font-weight: 600; }

.wp-block-archives a {
  font-weight: 600; }

.wp-block-latest-posts {
  line-height: 1.3; }
  .wp-block-latest-posts a {
    font-size: 18px;
    font-size: 1.125rem; }
  .wp-block-latest-posts time {
    margin-top: 8px; }
  .entry-content .wp-block-latest-posts li:not(:last-child) {
    margin-bottom: 20px; }
  .entry-content .wp-block-latest-posts.is-grid {
    margin-bottom: 0; }
    .entry-content .wp-block-latest-posts.is-grid li {
      margin-bottom: 34px; }

.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; }

.entry-content .wp-block-latest-comments li:not(:last-child) {
  margin-bottom: 17px; }

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

.wp-block-latest-comments__comment-author {
  font-weight: 600; }

.wp-block-tag-cloud a {
  position: relative;
  display: inline-block;
  overflow: hidden;
  padding: 0 12px;
  margin: 0 3px 3px 0;
  background: none;
  border: 2px solid var(--primary-color);
  border-radius: 99px;
  box-shadow: none !important;
  color: inherit;
  font-size: 13px !important;
  font-size: 0.8125rem !important;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 30px;
  text-transform: none; }
  .wp-block-tag-cloud a:not(:hover) {
    color: inherit; }
  .wp-block-tag-cloud a:before {
    content: "#"; }
  .wp-block-tag-cloud a:after {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: var(--primary-color);
    border-radius: 99px;
    content: "";
    opacity: 0;
    transition: opacity 0.4s;
    pointer-events: none; }
  .no-touch #page .wp-block-tag-cloud a:hover, .wp-block-tag-cloud a:focus {
    color: var(--primary-color); }
    .no-touch #page .wp-block-tag-cloud a:hover:after, .wp-block-tag-cloud a:focus:after {
      opacity: 0.1; }

.wp-block-calendar table {
  margin-bottom: 0;
  border: none;
  border-collapse: separate;
  border-spacing: 2px; }
  .wp-block-calendar table a {
    box-shadow: none !important;
    text-decoration: none; }
  .wp-block-calendar table caption {
    font-size: 16px;
    font-size: 1rem;
    font-weight: 600; }
  .wp-block-calendar table th,
  .wp-block-calendar table td {
    padding: 0 5px;
    text-align: center;
    border: none !important; }
  .wp-block-calendar table th {
    background: none;
    font-size: 10px;
    font-size: 0.625rem;
    font-weight: 400;
    text-align: center; }
  .wp-block-calendar table td {
    font-size: 13px;
    font-size: 0.8125rem; }
  .wp-block-calendar table tbody td {
    position: relative;
    background: #f7f7f7;
    line-height: 40px; }
    .wp-block-calendar table tbody td[colspan="2"], .wp-block-calendar table tbody td[colspan="3"], .wp-block-calendar table tbody td[colspan="4"], .wp-block-calendar table tbody td[colspan="5"], .wp-block-calendar table tbody td[colspan="6"] {
      background: none; }
    .wp-block-calendar table tbody td a {
      font-weight: 800; }
    .wp-block-calendar table tbody td a:before {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: var(--primary-color);
      opacity: 0.1;
      content: ""; }
  .wp-block-calendar table tfoot td {
    line-height: 36px;
    font-size: 11px;
    font-size: 0.6875rem;
    text-transform: uppercase; }
    .wp-block-calendar table tfoot td a {
      padding: 2px 10px;
      border: 1px solid #e6e6e6;
      border-radius: 4px;
      color: inherit !important; }
      .dark-color .wp-block-calendar table tfoot td a {
        border-color: #393939; }
      .no-touch .wp-block-calendar table tfoot td a:hover {
        background: var(--primary-color);
        border-color: var(--primary-color);
        color: #fff !important; }

.wp-block-calendar .wp-calendar-nav {
  font-size: 0; }
  .wp-block-calendar .wp-calendar-nav .wp-calendar-nav-prev,
  .wp-block-calendar .wp-calendar-nav .wp-calendar-nav-next {
    line-height: 36px;
    font-size: 11px;
    font-size: 0.6875rem;
    text-transform: uppercase; }
    .wp-block-calendar .wp-calendar-nav .wp-calendar-nav-prev a, .wp-block-calendar .wp-calendar-nav .wp-calendar-nav-next a {
      display: inline-block;
      padding: 2px 10px;
      border: 1px solid #e6e6e6;
      border-radius: 4px;
      color: inherit !important;
      box-shadow: none !important;
      text-decoration: none !important;
      line-height: 1.5; }
      .dark-color .wp-block-calendar .wp-calendar-nav .wp-calendar-nav-prev a,
      .dark-color .wp-block-calendar .wp-calendar-nav .wp-calendar-nav-next a {
        border-color: #393939; }
      .no-touch .wp-block-calendar .wp-calendar-nav .wp-calendar-nav-prev a:hover, .no-touch .wp-block-calendar .wp-calendar-nav .wp-calendar-nav-next a:hover {
        background: var(--primary-color);
        border-color: var(--primary-color);
        color: #fff !important; }
  .wp-block-calendar .wp-calendar-nav .pad {
    display: inline-block;
    width: 10%; }

.wp-block-search {
  position: relative;
  margin-bottom: 34px; }
  .wp-block-search .wp-block-search__label {
    font-weight: 700; }
  .wp-block-search input[type="search"] {
    width: auto; }
  .wp-block-search .wp-block-search__button {
    padding: 0 30px;
    background: #000;
    border: none;
    border-radius: 99px;
    color: #fff;
    font-size: 12px;
    font-size: 0.75rem;
    line-height: 46px;
    text-transform: uppercase;
    cursor: pointer; }

.wp-block-rss {
  margin: 0 0 34px;
  list-style: none; }
  #page .wp-block-rss a {
    box-shadow: none; }
  .wp-block-rss .wp-block-rss__item {
    padding-bottom: 20px;
    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: 20px; }
  .wp-block-rss .wp-block-rss__item-title {
    font-size: 18px;
    font-size: 1.125rem;
    line-height: 1.5; }
  .wp-block-rss .wp-block-rss__item-publish-date,
  .wp-block-rss .wp-block-rss__item-author {
    display: inline-block;
    margin-top: 8px;
    font-size: 12px;
    font-size: 0.75rem; }
  .wp-block-rss .wp-block-rss__item-publish-date + .wp-block-rss__item-author:before {
    margin-right: 5px;
    content: "."; }
  .wp-block-rss .wp-block-rss__item-excerpt {
    margin-top: 8px;
    font-size: 14px;
    font-size: 0.875rem; }

.wp-block-social-links .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: currentColor !important;
  box-shadow: none !important; }

/**
 * Gutenberg Gallery
 */
.wp-block-gallery:not(.alignleft):not(.alignright) {
  clear: both; }
.entry-content .wp-block-gallery {
  margin: 0 0 34px; }
  .entry-content .wp-block-gallery.alignright {
    margin-left: 34px; }
  .entry-content .wp-block-gallery.alignleft {
    margin-right: 34px; }
  .entry-content .wp-block-gallery > li,
  .entry-content .wp-block-gallery ul > li {
    padding: 0; }
    .entry-content .wp-block-gallery > li:before,
    .entry-content .wp-block-gallery ul > li:before {
      display: none; }
.entry-content > .wp-block-gallery {
  margin-bottom: 20px; }
.entry-content > .wp-block-gallery li:not(:last-child) {
  margin-bottom: 16px; }

.blocks-gallery-grid .blocks-gallery-image a + figcaption,
.blocks-gallery-grid .blocks-gallery-item a + figcaption,
.wp-block-gallery .blocks-gallery-image a + figcaption,
.wp-block-gallery .blocks-gallery-item a + figcaption {
  pointer-events: none; }

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

.entry-content *[class*="wp-block-"] *.alignfull {
  left: 0;
  -webkit-transform: none;
  -ms-transform: none;
  transform: none;
  width: 100%;
  max-width: 100%; }

/* 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; }

.entry-content .dropcap {
  text-align: left; }
  .entry-content .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; }
  .entry-content .dropcap.dropcap-colorful:first-letter {
    margin: 11px 10px 0 0;
    color: var(--primary-color);
    font-size: 3.6em;
    font-weight: 400;
    line-height: 0.68; }
  .entry-content .dropcap.light:first-letter {
    float: none;
    margin: 0;
    color: rgba(0, 0, 0, 0.1);
    line-height: 0.8; }
    .dark-color .entry-content .dropcap.light:first-letter {
      color: rgba(255, 255, 255, 0.1); }
  .entry-content .dropcap.square:first-letter {
    display: block;
    padding: 0.15em 0.25em;
    margin-top: 0.2em;
    margin-right: 0.3em;
    border: 3px solid #eee;
    border-radius: 0;
    font-size: 275%;
    text-align: center; }
  .entry-content .dropcap.dark-bg:first-letter {
    background: #000;
    border-color: #000;
    color: #fff; }
  .entry-content .dropcap.light-bg:first-letter {
    background: #eee;
    border-color: #eee;
    color: #000; }

.entry-content p.dropcap:first-letter {
  margin: 0 0.15em 0 0;
  font-size: 530%; }
.entry-content p.dropcap.square:first-letter {
  font-size: 300%; }

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

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

/* Tweet it Shortcode
   ========================================================================== */
.entry-content a.tweet-it {
  position: relative;
  border-bottom: none;
  font-weight: 600;
  opacity: 0.8;
  box-shadow: none; }
  .entry-content a.tweet-it:before, .entry-content a.tweet-it:after {
    position: absolute;
    display: block;
    opacity: 0;
    transition: 0.4s; }
  .entry-content 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; }
  .entry-content 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 .entry-content a.tweet-it:hover {
    opacity: 1;
    box-shadow: none; }
    .no-touch .entry-content a.tweet-it:hover:before, .no-touch .entry-content a.tweet-it:hover:after {
      opacity: 1; }

.entry-content .tweet-it-paragraph {
  max-width: 600px;
  padding: 40px 30px 26px;
  text-align: center; }
  .entry-content .tweet-it-paragraph a.tweet-it {
    display: block;
    font-weight: inherit;
    color: inherit;
    opacity: 1; }
    .entry-content .tweet-it-paragraph a.tweet-it:before, .entry-content .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; }
    .entry-content .tweet-it-paragraph a.tweet-it:after {
      top: -6px; }
    .no-touch .entry-content .tweet-it-paragraph a.tweet-it:hover {
      text-decoration: underline; }
  .entry-content .tweet-it-paragraph h1,
  .entry-content .tweet-it-paragraph h2,
  .entry-content .tweet-it-paragraph h3,
  .entry-content .tweet-it-paragraph h4,
  .entry-content .tweet-it-paragraph h5,
  .entry-content .tweet-it-paragraph h6 {
    line-height: 1.8; }

/* Button Shortcode
   ========================================================================== */
.button.lo-button {
  margin-bottom: 34px;
  vertical-align: text-bottom; }
  p .button.lo-button {
    margin-bottom: 0; }
  .featured-section.custom-section .button.lo-button {
    margin: 2px 5px; }
  .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; }
  .button.lo-button span {
    color: #fff; }

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

/* Tabs Shortcode
   ========================================================================== */
.lo-tabs {
  margin-bottom: 34px; }
  .lo-tabs .lo-tabs-titles {
    background: var(--primary-color);
    border-radius: 4px 4px 0 0;
    color: #fff;
    overflow: hidden; }
    .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: 800;
      letter-spacing: 0.05em;
      text-decoration: none;
      text-transform: uppercase;
      box-shadow: none; }
      .no-touch .lo-tabs .lo-tabs-titles a:hover {
        background: rgba(0, 0, 0, 0.05);
        text-decoration: none;
        box-shadow: none; }
      .lo-tabs .lo-tabs-titles a.active {
        background: rgba(0, 0, 0, 0.1); }
  .lo-tabs .lo-tabs-content {
    padding: 34px;
    background: rgba(0, 0, 0, 0.025);
    border-radius: 0 0 4px 4px;
    color: #000; }
    .dark-color .lo-tabs .lo-tabs-content {
      background: #363636;
      color: #fff; }
    .lo-tabs .lo-tabs-content .lo-tab-content > *:last-child {
      margin-bottom: 0; }

/* Accordions Shortcode
   ========================================================================== */
.lo-accordions {
  border-top: 1px solid rgba(0, 0, 0, 0.05); }
  .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;
      cursor: pointer; }
      .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; }
  .light-color .lo-accordions, .wp-block-group.light-color .lo-accordions {
    border-top-color: rgba(0, 0, 0, 0.05); }
    .light-color .lo-accordions .accordion-item, .wp-block-group.light-color .lo-accordions .accordion-item {
      border-bottom-color: rgba(0, 0, 0, 0.05); }
  .dark-color .lo-accordions, .wp-block-group.dark-color .lo-accordions {
    border-top-color: rgba(255, 255, 255, 0.1); }
    .dark-color .lo-accordions .accordion-item, .wp-block-group.dark-color .lo-accordions .accordion-item {
      border-bottom-color: rgba(255, 255, 255, 0.1); }
  .lo-accordions.title-currentcolor .accordion-title {
    color: inherit; }

/* 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: 15px;
      font-size: 16px;
      font-size: 1rem;
      line-height: 1.5; }
    .authors-list .authors-list-item h5 {
      margin: 17px auto 0;
      font-size: 24px;
      font-size: 1.5rem;
      font-weight: 600;
      font-style: normal;
      text-transform: none;
      letter-spacing: 0; }
  .authors-list a.author-link {
    box-shadow: none;
    border-bottom: none;
    color: inherit;
    text-decoration: none; }
    .no-touch .authors-list a.author-link:hover {
      box-shadow: none;
      color: inherit;
      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;
      text-align: center;
      box-shadow: none !important; }
      .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: 34px; }
  .lo-column > *:first-child {
    margin-top: 0 !important; }
  .lo-column > *:last-child {
    margin-bottom: 0 !important; }

.entry-content .wp-block-column, .entry-content .wp-block-column:last-child > *:last-child {
  margin-bottom: 0; }

@media screen and (min-width: 600px) {
  .wp-block-group.has-background {
    padding-right: 30px;
    padding-left: 30px; }

  .wp-block-tag-cloud a {
    padding: 0 18px;
    margin: 0 5px 5px 0; }

  .wp-block-columns.alignfull {
    padding-right: 30px;
    padding-left: 30px; }

  .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-column:nth-last-child(2) > *:last-child {
    margin-bottom: 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; }
  .wp-block-cover:not(.alignleft):not(.alignright) h1,
  .wp-block-cover-image:not(.alignleft):not(.alignright) h1 {
    font-size: 56px;
    font-size: 3.5rem;
    line-height: 1; }
  .wp-block-cover:not(.alignleft):not(.alignright) h3,
  .wp-block-cover-image:not(.alignleft):not(.alignright) h3 {
    font-size: 32px;
    font-size: 2rem; }

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

  .entry-content *[class*="wp-block-"] *.alignwide {
    left: 0;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
    width: 100%;
    max-width: 100%; }

  .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%;
      border-radius: 4px 0 0 4px; }
      .lo-tabs.vertical-tab .lo-tabs-titles a {
        width: 100%; }
    .lo-tabs.vertical-tab .lo-tabs-content {
      border-radius: 0 4px 4px 0; } }
@media screen and (min-width: 782px) {
  .wp-block-column > *:last-child {
    margin-bottom: 0; } }
@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; } }
@media screen and (min-width: 1024px) {
  .wp-block-quote.is-large p,
  .wp-block-quote.is-style-large p {
    font-size: 32px;
    font-size: 2rem; } }
@media screen and (min-width: 1120px) {
  .site-content[class*="with-sidebar"] .entry-content *.alignfull,
  .site-content[class*="with-sidebar"] .entry-content *.alignwide {
    left: 0;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
    width: auto;
    max-width: none; }
    .site-content[class*="with-sidebar"] .entry-content *.alignfull.wp-block-cover.has-parallax,
    .site-content[class*="with-sidebar"] .entry-content *.alignwide.wp-block-cover.has-parallax {
      margin-left: 0; }

  .single.post-template-4 .entry-content *.alignfull,
  .single.post-template-4 .entry-content *.alignwide,
  .page.page-template-4 .entry-content *.alignfull,
  .page.page-template-4 .entry-content *.alignwide {
    left: 0;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
    width: auto; }

  .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 {
    padding: 50px;
    max-width: 900px; }

  .wp-block-group.has-background {
    padding: 50px; }
  .wp-block-group.alignfull {
    padding: 50px 0; }
    .wp-block-group.alignfull .wp-block-group__inner-container {
      max-width: 1200px;
      padding: 0 30px; } }
@media screen and (max-width: 599px) {
  .wp-block-pullquote.alignleft, .wp-block-pullquote.alignright {
    width: calc(50% - 30px); }

  .wp-block-quote.is-large,
  .wp-block-quote.is-style-large {
    padding-right: 0; } }
@media screen and (max-width: 400px) {
  .wp-block-pullquote.alignleft, .wp-block-pullquote.alignright {
    width: 100%;
    max-width: 100%;
    margin: 0 0 34px; } }