<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/**
 * Table of Contents
 * ----------------------------------------------------------------------------
 * 0. Icons
 * 1. Reset
 * 2. General
 * 3. Structure
 * 4. Site Navigation
 * 5. Site Header
 * 6. Content
 *   6.1 Posts and Pages
 *   6.2 Comments
 *   6.3 Paging Navigation
 *   6.4 Post Navigation
 * 7. Widgets
 * 8. Site Footer
 * 9. Site Search
 * 10. Media Queries
*/

/* FONTS */

@font-face {
  font-family: "Open Sans";
  font-weight: 400;
  src: url("../fonts/OpenSans-Regular.ttf");
}
@font-face {
  font-family: "Open Sans";
  font-weight: 600;
  src: url("../fonts/OpenSans-SemiBold.ttf");
}
@font-face {
  font-family: "Open Sans";
  font-weight: 300;
  src: url("../fonts/OpenSans-Light.ttf");
}

/* CSS Color Variables */
:root {
  --font--body: "Open Sans", sans-serif;
  --font--headings: "Open Sans", sans-serif;
  --font-weight-regular: 400;
  --font-weight-bold: 700;
  --primary--color: #1d009c;
  --text-color: #404040;
  --color--white: #fff;
  --color--blue: #1d009c;
  --color--blue1: #7fb8e6;
  --color--blue2: #bcd8fb;
  --color--blue3: #ddebfd;
  --color--orange: #ff6600;
  --color--orange1: #ffa366;
  --color--orange2: #ffd1b2;
  --color--orange3: #ffe8d8;
  --color--green-dark: #418622;
  --color--green: #50b848;
  --color--green1: #8ccc69;
  --color--green2: #c5e5b4;
  --color--green3: #eef7e9;
  --color--gray: #404040;
  --color--gray1: #8c8c8c;
  --color--gray2: #cccccc;
  --color--gray3: #f5f5f5;
  --color--gray4: #e6e6e6;
}

.search-svg,
.envelope-svg,
.location-svg,
.website-svg,
.facebook-svg,
.twitter-svg,
.instagram-svg,
.whatsapp-svg {
  width: 18px;
  height: 18px;
  vertical-align: text-top;
}

.burger-svg {
  width: 26px;
  height: 26px;
}

.search-svg {
  width: 26px;
  height: 26px;
  vertical-align: middle;
}

/**
 * 1. Reset
 * ----------------------------------------------------------------------------
 */

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

audio,
canvas,
video {
  display: inline-block;
}

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

[hidden],
template {
  display: none;
}

html {
  font-size: 100%;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  min-height: 100%;
}

body {
  margin: 0;
}

a {
  background-color: transparent;
}

a:focus {
  outline: thin dotted;
}

a:active,
a:hover {
  outline: 0;
}

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

b,
strong {
  font-weight: bold;
}

dfn {
  font-style: italic;
}

small {
  font-size: 80%;
}

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

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

img {
  -ms-interpolation-mode: bicubic;
  border: 0;
  vertical-align: middle;
}

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

figure {
  margin: 0;
}

pre {
  overflow: auto;
}

code,
kbd,
pre,
samp {
  font-family: Inconsolata, monospace, sans-serif;
  font-size: 1em;
}

blockquote,
q {
  quotes: none;
}

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

form {
  margin: 0;
}

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

button {
  overflow: visible;
}

button,
select {
  text-transform: none;
}

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

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

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

input {
  line-height: normal;
}

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

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

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

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

input:invalid {
  box-shadow: none;
}

textarea {
  overflow: auto;
}

optgroup {
  font-weight: bold;
}

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

/**
 * 2. General
 * ----------------------------------------------------------------------------
 */

body {
  font-family: var(--font--body);
  color: var(--text-color);
  line-height: 28px;
  background-color: var(--color--white);
}

a {
  color: var(--color--green);
  text-decoration: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

a:hover {
  color: var(--color--green1);
}

h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5,
h6,
.h6 {
  color: var(--color--gray);
  font-family: var(--font--headings);
  font-weight: bold;
  line-height: 1.2;
  margin: 0 0 24px;
  text-rendering: optimizeLegibility;
}

h1,
.h1 {
  font-size: 30px;
}

h2,
.h2 {
  font-size: 24px;
}

h3,
.h3 {
  font-size: 21px;
}

h4,
.h4 {
  font-size: 18px;
}

h5,
.h5,
h6,
.h6 {
  font-size: 16px;
}

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

.post-content &gt; h1:first-child,
.post-content &gt; h2:first-child,
.post-content &gt; h3:first-child,
.post-content &gt; h4:first-child,
.post-content &gt; h5:first-child,
.post-content &gt; h6:first-child {
  margin-top: 0;
}

p {
  margin: 0 0 24px;
}

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

mark,
ins {
  background-color: #fce3db;
  color: var(--text-color);
  padding: 0 3px;
  text-decoration: none;
}

code {
  font-size: 14px;
  padding: 1px 3px;
}

pre {
  background-color: #f6f6f6;
  color: var(--text-color);
  font-size: 14px;
  margin: 0 0 24px;
  padding: 15px;
  white-space: pre;
}

pre code {
  border: 0;
  font-size: inherit;
  padding: 0;
}

blockquote {
  color: #1d1e1f;
  font: italic 24px/1.5 "Open Sans", sans-serif;
  margin: 0 0 24px;
}

blockquote p {
  margin-bottom: 12px;
}

blockquote p:last-child {
  margin-bottom: 0;
}

blockquote small,
blockquote cite {
  color: #b6b6b6;
  display: block;
  font-size: 14px;
  line-height: 1.5;
  letter-spacing: 2px;
  margin-top: 12px;
  text-transform: uppercase;
}

dl,
dd {
  margin: 0 0 24px;
}

dt {
  font-weight: bold;
}

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

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

hr {
  background-color: var(--color--gray4);
  border: 0;
  height: 1px;
  margin: 24px 0;
}

table {
  font-size: 14px;
  line-height: 1.5;
  margin: 0 0 24px;
  text-align: left;
  width: 100%;
}

caption {
  color: #b6b6b6;
  font-style: italic;
  margin-bottom: 6px;
  text-align: left;
}

th,
td {
  border-bottom: 1px solid var(--color--gray4);
  padding: 8px 5px;
}

th {
  color: #3a3b3d;
  font-weight: bold;
}

/* Form fields */
button,
input,
select,
textarea {
  background-color: var(--color--white);
  box-sizing: border-box;
  border: 1px solid var(--color--gray4);
  border-radius: 0;
  color: var(--text-color);
  font-size: 14px;
  max-width: 100%;
  padding: 6px 10px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  vertical-align: baseline;
}

input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="search"],
select {
  height: 38px;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="password"]:focus,
input[type="search"]:focus,
textarea:focus {
  border-color: #b6b6b6;
  outline: 0;
}

button,
input[type="submit"],
input[type="button"],
input[type="reset"] {
  background-color: var(--color--green);
  border: 0;
  color: var(--color--white);
  font-size: 12px;
  font-weight: bold;
  height: 38px;
  letter-spacing: 1px;
  padding: 6px 20px;
  text-transform: uppercase;
}

button:hover,
button:focus,
input[type="submit"]:hover,
input[type="submit"]:focus,
input[type="button"]:hover,
input[type="button"]:focus,
input[type="reset"]:hover,
input[type="reset"]:focus,
button:active,
input[type="button"]:active,
input[type="reset"]:active,
input[type="submit"]:active {
  background-color: var(--color--green1);
  outline: 0;
}

/* Placeholder text color */
::-webkit-input-placeholder {
  color: #b6b6b6;
}

:-moz-placeholder {
  color: #b6b6b6;
}

::-moz-placeholder {
  color: #b6b6b6;
  opacity: 1;
}

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

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

@media only screen and (max-width: 800px) {
  .howto__instructionStep {
    display: flex;
    flex-direction: column;
  }

  .howto__instructionsStepNumber {
    display: flex;
    justify-content: center;
    overflow: hidden;
    margin-bottom: 22px;
  }
  .howto__instructionsStepNumber span::before,
  .howto__instructionsStepNumber span::after {
    display: block;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    height: 3px;
    width: 50vw;
    content: "";
    background: #efefef;
  }
  .howto__instructionsStepNumber span::before {
    left: calc(-50vw - 16px);
    margin-right: 16px;
  }
  .howto__instructionsStepNumber span::after {
    right: calc(-50vw - 16px);
    margin-left: 16px;
  }

  .howto__instructionStep + .howto__instructionStep {
    margin-top: 40px;
  }

  .howto__instructionsStepNumber {
    order: 1;
  }

  .howto__instructionsStepImage {
    order: 2;
    margin-bottom: 1rem;
    text-align: center;
  }

  .howto__instructionsStepContent {
    order: 3;
  }

  .howto__info {
    order: 1;
  }

  .howto__metaMaterials {
    padding: 0;
    border: 0;
    order: 2;
  }

  .site-logo a {
    margin-left: -20px;
  }
}

.kg-image-card {
  margin: 0 0 24px;
}

.kg-width-full,
.kg-width-wide {
}

/* Image alignment */
.alignleft {
  float: left;
  margin: 6px 35px 12px 0;
  max-width: 48%;
}

.alignright {
  float: right;
  margin: 6px 0 12px 35px;
  max-width: 48%;
}

/* Image captions */
.caption {
  margin-bottom: 24px;
}

.caption-text,
.kg-card figcaption {
  color: #b6b6b6;
  display: block;
  font-size: 14px;
  font-style: italic;
  margin: 6px 0 0;
  text-align: left;
}

.alignleft p,
.alignright p,
.caption p {
  margin-bottom: 0;
}

/* Galleries */
.kg-gallery-card {
  margin: 0 0 24px;
}

.kg-gallery-container {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  max-width: 725px;
}

.kg-gallery-row {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-pack: center;
  justify-content: center;
}

.kg-gallery-row:not(:first-of-type) {
  margin: 2px 0 0;
}

.kg-gallery-image:not(:first-of-type) {
  margin: 0 0 0 2px;
}

.kg-gallery-image img {
  display: block;
  height: 100%;
  margin: 0;
  width: 100%;
}

/* Bookmarks */
.kg-bookmark-card {
  background: var(--color--white);
  margin: 0 0 24px;
  width: 100%;
}

.kg-bookmark-container {
  border: 1px solid var(--color--gray4);
  display: flex;
  color: var(--text-color);
  min-height: 140px;
}

.kg-bookmark-container:hover {
  border-color: var(--color--green1);
}

.kg-bookmark-content {
  align-items: flex-start;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  justify-content: start;
  padding: 20px;
}

.kg-bookmark-title {
  color: #1d1e1f;
  font-size: 18px;
  font-weight: var(--font-weight-bold);
  line-height: 1.2;
}

.kg-bookmark-description {
  color: var(--text-color);
  display: -webkit-box;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  margin-top: 12px;
  max-height: 48px;
  overflow-y: hidden;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.kg-bookmark-thumbnail {
  position: relative;
  min-width: 33%;
  max-height: 100%;
}

.kg-bookmark-thumbnail img {
  height: 100%;
  left: 0;
  object-fit: cover;
  position: absolute;
  top: 0;
  width: 100%;
}

.kg-bookmark-metadata {
  align-items: center;
  color: #1d1e1d;
  display: flex;

  font-size: 14px;
  font-weight: 400;
  margin-top: 18px;
  flex-wrap: wrap;
}

.kg-bookmark-icon {
  height: 24px;
  margin-right: 5px;
  width: 24px;
}

.kg-bookmark-author {
  line-height: 1.5;
}

.kg-bookmark-author:after {
  content: "\00b7";
  margin: 0 5px;
}

.kg-bookmark-publisher {
  overflow: hidden;
  line-height: 1.5;
  text-overflow: ellipsis;
  white-space: nowrap;
  max-width: 240px;
}

/* Footnotes */
.footnotes-list {
  color: var(--text-color);
  font-size: 14px;
  line-height: 1.5;
}

.footnote-item p {
  margin-bottom: 5px;
}

/* Videos, audios and embeds */
embed,
iframe,
object,
video {
  max-width: 100%;
}

.fluid-width-video-wrapper,
.kg-embed-card {
  margin: 0 0 24px;
}

.kg-embed-card &gt; .fluid-width-video-wrapper {
  margin: 0;
}

/* Clearing floats */
.clear:after,
.inner:after,
.post-content:after,
.instagram-feed:after {
  clear: both;
}

.clear:before,
.clear:after,
.inner:before,
.inner:after,
.post-content:before,
.post-content:after,
.instagram-feed:before,
.instagram-feed:after {
  content: "";
  display: table;
}

/* Text meant only for screen readers */
.screen-reader-text,
.site-logo + .site-title {
  border: 0 none;
  clip: rect(1px, 1px, 1px, 1px);
  height: 1px;
  overflow: hidden;
  padding: 0;
  position: absolute !important;
  width: 1px;
}

/* Text selection */
::-moz-selection {
  background: #fce3db;
  color: #1d1e1f;
  text-shadow: none;
}

::selection {
  background: #fce3db;
  color: #1d1e1f;
  text-shadow: none;
}

/* Syntax Highlighter */
pre .comment {
  color: #b6b6b6;
}

pre .constant {
  color: #3387cc;
}

pre .storage {
  color: #cc7833;
}

pre .string {
  color: #66cc33;
}

pre .keyword,
pre .selector {
  color: #cc7833;
}

pre .inherited-class {
  font-style: italic;
}

pre .support {
  color: #c83730;
}

.hero {
  position: relative;
}

.hero .cover-img {
  opacity: 0.5;
  -webkit-transition: opacity 1s ease;
  -moz-transition: opacity 1s ease;
  transition: opacity 1s ease;
}


.hero .slide-content {
  background-color: rgba(255, 255, 255, 0.8);
  padding: 30px;
}

.hero .post-tags {
  margin-bottom: 18px;
}

.hero .post-title {
  font-size: 24px;
}

.hero .post-meta {
  margin-bottom: 0;
}

.hero .read-more {
  margin-top: 24px;
}

/* Simple Lightbox */
body.hidden-scroll {
  overflow: hidden;
}

.sl-overlay {
  background: var(--color--white);
  bottom: 0;
  display: none;
  left: 0;
  position: fixed;
  right: 0;
  top: 0;
  z-index: 1035;
}

.sl-wrapper {
  z-index: 1040;
}

.sl-wrapper button {
  background: var(--color--green);
  color: var(--color--white);
  cursor: pointer;
  font-size: 14px;
  height: 38px;
  line-height: 2.71428;
  padding: 0;
  width: 38px;
}

.sl-wrapper .sl-close {
  display: none;
  position: fixed;
  right: 30px;
  top: 30px;
  z-index: 1060;
}

.sl-wrapper .sl-navigation {
  display: none;
  width: 100%;
}

.sl-wrapper .sl-next,
.sl-wrapper .sl-prev {
  display: block;
  position: fixed;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 1060;
}

.sl-wrapper .sl-next {
  right: 30px;
}

.sl-wrapper .sl-prev {
  left: 30px;
}

.sl-wrapper .sl-counter {
  color: var(--text-color);
  bottom: 30px;
  display: none;
  font-size: 12px;
  line-height: 1.5;
  letter-spacing: 1px;
  position: fixed;
  right: 30px;
  text-transform: uppercase;
  z-index: 1060;
}

.sl-wrapper .sl-current {
  padding-right: 3px;
}

.sl-wrapper .sl-total {
  padding-left: 3px;
}

.sl-wrapper .sl-image {
  position: fixed;
  -ms-touch-action: none;
  touch-action: none;
  z-index: 10000;
}

.sl-wrapper .sl-image img {
  border: 0;
  display: block;
  margin: 0;
  padding: 0;
}

.sl-scrollbar-measure {
  height: 50px;
  overflow: scroll;
  position: absolute;
  top: -9999px;
  width: 50px;
}

.sl-spinner {
  display: none;
  border: 4px solid var(--text-color);
  border-radius: 40px;
  height: 36px;
  left: 50%;
  margin: -18px 0 0 -18px;
  opacity: 0;
  position: fixed;
  top: 50%;
  width: 36px;
  z-index: 1007;
  -webkit-animation: pulsate 1s ease-out infinite;
  animation: pulsate 1s ease-out infinite;
}

@-webkit-keyframes pulsate {
  0% {
    transform: scale(0.1);
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    transform: scale(1.2);
    opacity: 0;
  }
}
@keyframes pulsate {
  0% {
    transform: scale(0.1);
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    transform: scale(1.2);
    opacity: 0;
  }
}

/**
 * 3. Structure
 * ----------------------------------------------------------------------------
 */

.site-navigation,
.site-header,
.footer-widgets .widget,
.site-footer,
.search-box {
  padding-left: 30px;
  padding-right: 30px;
}

.site-main {
  padding-left: 15px;
  padding-right: 15px;
  min-height: calc(100vh - 140px - 46px); /* viewport - fixed header - footer */
}

.inner {
  margin: 0 auto;
  max-width: 1050px;
}

.site-main .inner {
  padding: 18px 15px;
}

.site-content {
  float: right;
  margin-left: -1px;
  padding: 0 0 24px 35px;
  width: 68%;
}

.sidebar {
  border-left: 1px solid var(--color--gray4);
  clear: none;
  float: none;
  font-size: 13px;
  line-height: 24px;
  overflow: hidden;
  padding: 10px 35px 0 0;
  width: auto;
}

.right-sidebar .site-content {
  border-left: 0;
  float: left;
  margin-left: 0;
  margin-right: -1px;
  padding-left: 0;
  padding-right: 48px;
}

.right-sidebar .sidebar {
  padding-left: 35px;
  padding-right: 0;
}

.hide-on-desktop-content {
  display: none;
}
.right-sidebar .hide-on-desktop-content {
  display: inline-block;
}
@media only screen and (max-width: 800px) {
  .hide-on-desktop-content {
    display: inline-block;
  }
}

/**
 * 4. Site Navigation
 * ----------------------------------------------------------------------------
 */

.site-navigation {
  background-color: var(--color--white);
}

.site-navigation {
  background-color: rgba(255, 255, 255, 0.95);
  box-sizing: border-box;
  top: 0;
  width: 100%;
  z-index: 999;
}

#nav-toggle {
  display: none;
}

.nav-menu {
  list-style: none;
  margin: 0;
  padding: 0;
  text-align: center;
}

.nav-menu li {
  display: inline-block;
  font-size: 12px;
  line-height: 1;
  letter-spacing: 1px;
  padding: 6px 0;
  text-transform: uppercase;
}

.nav-menu a {
  border-left: 1px solid var(--color--gray4);
  color: #707070;
  display: inline-block;
  padding: 0 12px;
}

.nav-menu li:first-child a {
  border-left: 0;
  padding-left: 0;
}

.nav-links {
  text-align: center;
  margin-bottom: 20px;
}

.nav-links a,
.search-open {
  color: var(--color--green-dark);
  font-size: 25px;
  line-height: 1.5;
  padding: 6px;
}

.nav-links a + a {
  margin-left: 6px;
}

.search-open {
  flex: 1;
  background-color: transparent;
  color: var(--color--gray1);
  border: 0;
  height: 33px;
  text-align: right;
}

.nav-menu a:hover,
.nav-current a,
.nav-links a:hover,
.search-open:hover {
  color: var(--color--green);
}

/**
 * 5. Site Header
 * ----------------------------------------------------------------------------
 */

body {
  padding-top: 60px;
}

.headerWrapper {
  position: fixed;
  top: 0;
  z-index: 1010;
  width: 100%;
  background-color: var(--color--white);
  box-shadow: 0 0 3px rgba(0, 0, 0, 0);
  transition: box-shadow 0.5s;
}

body.is-sticky-header .headerWrapper {
  box-shadow: 0 2px 3px rgba(0, 0, 0, 0.3);
}

.site-header {
  transition: margin 0.3s;
}
.site-header .inner {
  padding: 0;
}
.site-logo a {
  display: inline-block;
  width: 210px;
}

.homeCategoryPosts {
}

.homeCategoryPosts__article {
}

.homeCategoryPosts__thumb {
}

.homeCategoryPosts__title {
}

.homeCategoryPosts + .homeCategoryPosts__categoryHeading {
  margin-top: 3rem;
}

.home__bottom {
  padding-top: 6rem;
  margin-top: 3rem;
  border-top: 1px solid var(--color--gray4);
}

.home__bottom .widget-title {
  margin-right: auto;
  left: auto;
}

.home__bottom .widget-text p {
  text-align: left;
}

.home__bottom svg,
.sidebar svg {
  fill: var(--color--green);
}

.site-title {
  color: #1d1e1f;
  font-family: var(--font--headings);
  font-size: 36px;
  font-weight: bold;
  line-height: 1.2;
  margin: 0 0 24px;
  text-rendering: optimizeLegibility;
}

.site-title a {
  border: 1px solid var(--color--white);
  color: #1d1e1f;
  display: inline-block;
  padding: 18px 25px;
}

.site-title a:hover {
  border-color: var(--color--green1);
}

.site-description {
  color: #3a3b3d;
  font: italic 18px/1.66667 "Open Sans", sans-serif;
  margin-top: 24px;
}

/**
 * 6. Content
 * ----------------------------------------------------------------------------
 */

/**
 * 6.1 Posts and Pages
 * ----------------------------------------------------------------------------
 */

.post {
  display: flex;
  flex-direction: column;
  position: relative;
  margin-bottom: 10px;
  padding-bottom: 60px;
}

.post__loop {
  padding-bottom: 20px;
}

.post-template .post,
.page-template .post {
  border-bottom: 0;
  padding-bottom: 0;
}

.post-tags {
  font-size: 12px;
  font-weight: bold;
  letter-spacing: 1px;
  line-height: 1.5;
  margin-bottom: 12px;
  text-transform: uppercase;
  color: var(--color--green);
}

.post-title {
  font-size: 30px;
  margin-bottom: 14px;
}

.post-title a {
  color: var(--color--gray);
  hyphens: auto;
  -webkit-hyphens: auto;
  -ms-hyphens: auto;
}

.post__loop .post-content p {
  margin-bottom: 18px;
}

.post__loop p.read-more {
  margin-bottom: 0;
}

.post__loop + .post__loop {
  padding-top: 2rem;
  padding-bottom: 1rem;
  border-top: 1px solid var(--color--gray4);
}

.post__loop .post-meta {
  margin-bottom: 4px;
}

.post-title a:hover {
  color: #3a3b3d;
}

.post-meta,
.post-reading {
  color: var(--color--gray1);
  font-size: 14px;
  line-height: 1.5;
  margin-bottom: 24px;
}

@media only screen and (max-width: 800px) {
  .post-reading {
    display: block;
  }
}
@media only screen and (min-width: 801px) {
  .post-reading:before {
    content: " – ";
  }
}
.post-meta .sep {
  color: var(--color--gray1);
  font-family: var(--font--headings);
  font-style: italic;
}

.post-meta a {
  color: var(--color--gray1);
}

.post-meta a:hover {
  color: var(--color--green);
}

.post-thumbnail {
  display: block;
  margin-top: 24px;
  margin-bottom: 8px;
}

.read-more {
  margin-bottom: 0;
}

.home-template .more-link,
.post__loop .more-link {
  background-color: transparent;
  color: var(--color--green);
  border: 1px solid var(--color--green);
}

.more-link,
.button {
  background-color: var(--color--green);
  color: var(--color--white);
  display: inline-block;
  font-size: 12px;
  font-weight: bold;
  letter-spacing: 1px;
  line-height: 1.5;
  padding: 7px 15px;
  position: relative;
  text-transform: uppercase;
}

.more-link:hover {
  background-color: var(--color--green1);
  color: var(--color--white);
}

.button--white,
.button--blue,
.button--orange,
.button--gray,
.button--green,
.button--hollow {
  border-width: 1px;
  border-style: solid;
  color: white;
}

.button--hollow {
  background-color: transparent !important;
}

.button--green.button--hollow {
  color: var(--color--green);
}
.button--green.button--hollow:hover {
  color: var(--color--green1);
}

.button--white {
  border-color: var(--color--gray3);
  background-color: white;
  color: var(--text-color);
}
.button--white:hover {
  border-color: var(--color--gray1);
  background-color: var(--color--gray1);
  color: var(--color--white);
}

.button--blue {
  border-color: var(--color--blue);
  background-color: var(--color--blue);
}
.button--blue:hover {
  border-color: var(--color--orange);
  background-color: var(--color--orange);
  color: var(--color--white);
}

.button--orange {
  border-color: var(--color--orange);
  background-color: var(--color--orange);
}
.button--orange:hover {
  border-color: var(--color--blue);
  background-color: var(--color--blue);
  color: var(--color--white);
}

.button--gray {
  border-color: var(--color--gray);
  background-color: var(--color--gray);
}
.button--gray:hover {
  border-color: var(--color--gray1);
  background-color: var(--color--gray1);
  color: var(--color--white);
}

.button--green {
  border-color: var(--color--green);
  background-color: var(--color--green);
}
.button--green:hover {
  border-color: var(--color--green1);
  background-color: var(--color--green1);
  color: var(--color--white);
}

.author-list {
}

.author-info {
  position: relative;
  padding: 45px 30px 24px;
  background-color: var(--color--gray4);
  margin-bottom: 40px;
  text-align: center;
}

.author-info.no-avatar {
  padding-top: 18px;
}

.author-info + .author-info {
  margin-top: 5rem;
}

.author-info + .author-info.no-avatar {
  margin-top: 2rem;
}

.author-title {
  margin-top: 1rem;
  margin-bottom: 1rem;
  text-transform: uppercase;
}

.author-title a {
  color: var(--color--gray);
  font-size: 14px;
}

.author-description {
  margin-bottom: 0;
  color: var(--color--gray1);
  font-style: italic;
  line-height: 28px;
}

.author-list-title {
  background: var(--color--white);
  color: #3a3b3d;
  font-family: var(--font--headings);
  font-size: 12px;
  font-weight: bold;
  left: 50%;
  letter-spacing: 1px;
  line-height: 1.2;
  margin-top: 15px;
  padding: 2px 7px;
  position: absolute;
  text-align: center;
  text-transform: uppercase;
  top: 0;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.author-box + .author-box {
  margin-top: 36px;
}

.author-avatar-wrapper {
  position: absolute;
  top: -50px;
  left: 0;
  right: 0;
  width: 100px;
  height: 100px;
  margin: auto;
}

.author-avatar {
  border-radius: 50%;
}

.share-post {
  bottom: 60px;
  position: absolute;
  right: 0;
  text-align: right;
}

.page-template .share-post,
.post-template .share-post {
  margin-bottom: 70px;
  margin-top: 24px;
  position: static;
  text-align: left;
}

.share-post a {
  color: #3a3b3d;
  display: inline-block;
  vertical-align: middle;
  margin-left: 12px;
}

.share-post a:hover {
  color: var(--color--green);
}

.subscribe-box {
  background-color: var(--color--green3);
  margin-bottom: 48px;
  margin-top: -24px;
  padding: 35px;
}

.subscribe-box-title {
  font-size: 21px;
  margin-bottom: 12px;
}

.subscribe-box form {
  padding-right: 145px;
  position: relative;
}

.subscribe-box input[type="email"] {
  display: block;
  width: 100%;
}

.subscribe-box button[type="submit"] {
  position: absolute;
  right: 0;
  top: 0;
  width: 135px;
}

.tag-template .inner-box,
.author-template .inner-box {
  margin-bottom: 2rem;
}

.inner-box {
  display: table;
  height: 100%;
  position: relative;
  width: 100%;
}

.vertical {
  display: table-cell;
  height: 100%;
  text-align: center;
  vertical-align: middle;
  width: 100%;
}

.cover-img {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
}

/* Archives */

.page-header-tag .page-title,
.page-header-author .page-title {
  margin-bottom: 10px;
  font-weight: var(--font-weight-regular);
}

.page-header-author .page-description {
  max-width: 600px;
  margin-right: auto;
  margin-left: auto;
}

.post__thumbWrapper .post-thumbnail {
  margin-top: 0;
}

.post__inner {
}

.post-count {
  color: var(--color--gray2);
}

.page-title {
  font-size: 28px;
}

.page-description {
  color: #3a3b3d;
  font-size: 18px;
  font-style: italic;
  line-height: 1.66667;
}

.page-header .author-avatar {
  border-radius: 50%;
  display: block;
  height: 125px;
  margin: 0 auto 24px;
  width: 125px;
}

.page-header .author-links {
  color: #3a3b3d;
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.page-header .author-links span {
  margin-left: 5px;
  margin-right: 5px;
}

.page-header .author-links a {
  color: #1d1e1f;
}

.page-header .author-links a:hover {
  color: var(--color--green);
}

/**
 * 6.2 Comments
 * ----------------------------------------------------------------------------
 */

.comments-area {
  border-top: 1px solid var(--color--gray4);
  margin-bottom: 48px;
  padding-top: 24px;
}

.comments-title {
  font-size: 21px;
  margin-bottom: 36px;
}

/**
 * 6.3 Paging Navigation
 * ----------------------------------------------------------------------------
 */

.pagination {
  display: flex;
  position: relative;
  padding-top: 50px;
  margin-top: 40px;
  margin-bottom: 48px;
  border-top: 1px solid var(--color--gray2);
  color: var(--text-color);
  font-size: 14px;
  line-height: 1.5;
  text-align: center;
}

.newer-posts,
.older-posts {
  flex: 1;
  color: var(--color--green);
  font-size: 12px;
}

.newer-posts {
  padding-left: 15px;
  text-align: left;
}

.older-posts {
  flex: 1;
  padding-right: 15px;
  text-align: right;
}

.newer-posts .icon-angle-double-left,
.older-posts .icon-angle-double-right {
  font-size: 14px;
  line-height: 1.25;
  position: absolute;
  top: 0;
}

.newer-posts .icon-angle-double-left {
  left: 0;
}

.older-posts .icon-angle-double-right {
  right: 0;
}

.newer-posts:hover,
.older-posts:hover {
  color: var(--color--green);
}

/**
 * 6.4 Post Navigation
 * ----------------------------------------------------------------------------
 */

.post-navigation {
  display: flex;
  padding-top: 2rem;
  margin-bottom: 24px;
  border-top: 1px solid var(--color--gray4);
}

.nav-next,
.nav-previous {
  width: 50%;
  color: var(--text-color);
  margin-bottom: 24px;
  flex: 1;
}

.nav-inside svg {
  width: 30px;
  height: 30px;
}

.nav-next .nav-inside-inner {
  text-align: right;
}

.nav-next .nav-inside-inner .nav-title {
  margin-left: auto;
}

.nav-inside-inner {
  display: flex;
  align-items: center;
}

.nav-inside-left {
  padding-top: 10px;
}

.nav-previous .nav-inside-left {
  margin-right: 14px;
}

.nav-next .nav-inside-left {
  margin-left: 14px;
}

.nav-next .nav-inside-inner {
  justify-content: flex-end;
}

.nav-before {
  display: block;
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--color--green);
}

.nav-title {
  display: block;
  max-width: 200px;
  margin-bottom: 0;
  font-size: 18px;
  line-height: 1.4;
}

.nav-title a {
  color: #1d1e1f;
}

.nav-title a:hover {
  color: var(--text-color);
}

.nav-date {
  display: block;
  font-size: 14px;
}

.nav-date .sep {
  color: #b6b6b6;
  font-family: var(--font--headings);
}

/**
 * 7. Widgets
 * ----------------------------------------------------------------------------
 */

/* .widget:not(:last-child) { */
.widget {
  margin-bottom: 40px !important;
}

.sidebar .widget-title,
.home__bottom .widget-title,
.howto__sectionHeading,
.homeCategoryPosts__categoryHeading,
.home {
  color: var(--color--gray);
  font-size: 16px;
  line-height: 28px;
  letter-spacing: 1px;
  overflow: hidden;
  text-align: center;
  text-transform: uppercase;
}

.sidebar .widget-title:before,
.sidebar .widget-title:after,
.home__bottom .widget-title:before,
.home__bottom .widget-title:after,
.homeCategoryPosts__categoryHeading:before,
.homeCategoryPosts__categoryHeading:after,
.howto__sectionHeading:before,
.howto__sectionHeading:after {
  background-color: var(--color--gray4);
  content: "";
  display: inline-block;
  height: 1px;
  position: relative;
  vertical-align: middle;
  width: 50%;
}

.sidebar .widget-title:before,
.home__bottom .widget-title:before,
.homeCategoryPosts__categoryHeading:before,
.howto__sectionHeading:before {
  right: 15px;
  margin-left: -50%;
}

.sidebar .widget-title:after,
.home__bottom .widget-title:after,
.homeCategoryPosts__categoryHeading:after,
.howto__sectionHeading:after {
  left: 15px;
  margin-right: -50%;
}

.sidebar .widget-title span {
  white-space: nowrap;
}

.footer-widgets .widget {
  border-top: 1px solid var(--color--gray4);
  margin-bottom: 24px;
  padding-top: 12px;
  text-align: center;
}

.footer-widgets .widget-title {
  color: var(--text-color);
  font-size: 12px;
  line-height: 1.5;
  letter-spacing: 1px;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.widget input[type="text"],
.widget input[type="email"],
.widget input[type="url"],
.widget input[type="password"],
.widget input[type="search"],
.widget select,
.widget textarea {
  font-size: 13px;
  width: 100%;
}

.widget-newsletter label,
.widget-newsletter p {
  display: block;
  font-style: italic;
  margin-bottom: 18px;
  text-align: center;
}

.widget-newsletter input[type="submit"],
.widget-newsletter button {
  width: 100%;
}

.widget-newsletter .mc-field-group,
.widget-newsletter input[type="email"] {
  display: block;
  margin-bottom: 18px;
}

.widget-recent-posts ul {
  list-style: none;
  padding-left: 0;
}

.widget-recent-posts li {
  color: var(--text-color);
  margin-bottom: 18px;
}

.widget-recent-posts .recent-title {
  font-size: 14px;
  font-weight: bold;
  line-height: 1.5;
}

.widget-recent-posts a {
  color: #1d1e1f;
}

.widget-recent-posts a:hover {
  color: var(--text-color);
}

.widget-recent-posts .recent-date {
  font-size: 12px;
}

.widget-tags .tagcloud {
  text-align: center;
}

.widget-tags a {
  border: 1px solid var(--color--gray4);
  color: var(--color--green);
  display: inline-block;
  font-size: 10px;
  letter-spacing: 1px;
  line-height: 1.5;
  margin: 0 6px 8px 0;
  padding: 7px 10px;
  text-transform: uppercase;
}

.widget-tags a:hover {
  border-color: var(--color--green1);
  color: var(--color--green1);
}

.widget-instagram .instagram-feed {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}

.widget-instagram .instagram-item {
  height: auto;
  position: relative;
  width: 16.666%;
}

.widget-instagram .instagram-item:before {
  content: "";
  display: block;
  padding-top: 100%;
  float: left;
}

.instagram-item a {
  height: 100%;
  left: 0;
  overflow: hidden;
  position: absolute;
  top: 0;
  width: 100%;
}

.instagram-item img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.sidebar .instagram-feed {
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.sidebar .instagram-item {
  width: 33.333%;
}

.footer-widgets .widget-instagram {
  margin-bottom: 0;
  padding-left: 0;
  padding-right: 0;
}

/**
 * 8. Site Footer
 * ----------------------------------------------------------------------------
 */

.site-footer {
  box-shadow: 0px 6px 8px #000;
  color: var(--text-color);
  font-size: 12px;
  line-height: 1.5;
  padding-top: 16px;
  padding-bottom: 12px;
}

.site-footer .inner {
  position: relative;
}

.site-footer .top-link {
  color: var(--text-color);
  padding-right: 15px;
  position: absolute;
  right: 0;
  text-transform: uppercase;
  top: 0;
}

.site-footer .top-link:hover {
  color: var(--color--green);
}

.top-link .icon-angle-double-up {
  font-size: 14px;
  line-height: 1.25;
  position: absolute;
  right: 0;
  top: 0;
}

.site-footer nav ul {
  padding-left: 0;
  list-style: none;
  margin-bottom: 0;
  text-align: center;
}

.site-footer nav ul li {
  display: inline-block;
}

.site-footer nav ul li a {
  padding: 4px 6px;
}

/**
 * 9. Site Search
 * ----------------------------------------------------------------------------
 */

.site-search {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  background: var(--color--white);
  height: 100%;
  left: 0;
  -webkit-overflow-scrolling: touch;
  position: fixed;
  top: 0;
  -webkit-transform: translateY(-100%);
  transform: translateY(-100%);
  -webkit-transition: -webkit-transform 0.3s ease-in-out, visibility 0s 0.3s;
  transition: -webkit-transform 0.3s ease-in-out, visibility 0s 0.3s;
  transition: transform 0.3s ease-in-out, visibility 0s 0.3s;
  visibility: hidden;
  width: 100%;
  z-index: 9999;
}

.search--opened {
  height: 100%;
  overflow: hidden;
  position: fixed;
  width: 100%;
}

.search--opened .site {
  position: relative;
}

.search--opened .site-search {
  -webkit-transform: translateY(0);
  transform: translateY(0);
  -webkit-transition: -webkit-transform 0.3s ease-in-out;
  transition: -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out;
  visibility: visible;
}

.search-scrollable {
  height: 100%;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  position: relative;
}

.search-box {
  position: relative;
}

#search-close {
  background: var(--color--green);
  height: 38px;
  padding: 0;
  position: absolute;
  right: 30px;
  top: 30px;
  width: 38px;
}

.close-icon {
  background: 0;
  color: var(--color--white);
  display: block;
  height: 1px;
  left: 50%;
  margin-left: -10px;
  margin-top: -1px;
  position: absolute;
  top: 50%;
  width: 20px;
}

.close-icon:before,
.close-icon:after {
  background: currentColor;
  content: "";
  height: 100%;
  left: 0;
  position: absolute;
  -webkit-transition: -webkit-transform 0.2s;
  transition: -webkit-transform 0.2s;
  transition: transform 0.2s;
  width: 100%;
}

.close-icon:before {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.close-icon:after {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.search-box-inside {
  padding-bottom: 60px;
  padding-top: 120px;
}

.site-search .search-form {
  margin-bottom: 12px;
}

.site-search .search-field {
  border-width: 0 0 1px 0;
  color: #1d1e1f;
  display: block;
  font-family: var(--font--headings);
  font-size: 30px;
  font-weight: bold;
  height: 72px;
  padding-left: 0;
  padding-right: 0;
  width: 100%;
}

.result-item {
  margin-bottom: 18px;
}

.result-item a {
  color: var(--text-color);
  display: block;
}

.result-item a:hover,
.result-item a:hover .result-title {
  color: var(--text-color);
}

.result-item .result-title {
  color: #1d1e1f;
  font-size: 18px;
  font-weight: bold;
  line-height: 1.5;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.result-item .result-date {
  font-size: 12px;
}

.search-info {
  font-size: 14px;
  margin-bottom: 36px;
}

/**
 * 10. Media Queries
 * ----------------------------------------------------------------------------
 */

@media only screen and (max-width: 960px) {
  .site-content,
  .right-sidebar .site-content {
    border: 0;
    margin-left: 0;
    margin-right: 0;
  }

  .sidebar,
  .right-sidebar .sidebar {
    border: 0;
    padding-left: 0;
    padding-right: 0;
  }

  #search-close,
  .sl-wrapper .sl-close {
    right: 15px;
    top: 15px;
  }

  .sl-wrapper .sl-next {
    right: 15px;
  }

  .sl-wrapper .sl-prev {
    left: 15px;
  }

  .sl-wrapper .sl-counter {
    bottom: 15px;
    right: 15px;
  }
}

@media only screen and (max-width: 800px) {
  .headerWrapper {
    box-shadow: 0 2px 3px rgba(0, 0, 0, 0.3);
  }

  .tag-template,
  .author-template {
    padding-top: 92px;
  }

  .tag-template .inner-box,
  .author-template .inner-box {
    margin-bottom: 0;
  }

  .home-template .post-content {
    text-align: center;
  }

  .post__loop p.read-more {
    text-align: center;
  }

  .post__loop.post {
    text-align: center;
  }

  .post-thumbnail {
    margin-top: 0;
  }

  .site-main .inner {
    padding-bottom: 0;
    padding-top: 0;
  }

  .site-content,
  .right-sidebar .site-content {
    float: none;
    padding: 48px 0 24px;
    width: auto;
  }

  .sidebar,
  .right-sidebar .sidebar {
    padding: 0;
  }

  .nav-search-open-list-item {
    display: none;
  }

  .site-navigation .search-open {
    position: absolute;
    top: 7px;
    right: 60px;
    color: var(--color--green-dark);
  }

  .site-navigation .search-open:hover {
    background-color: transparent;
  }

  #nav-toggle {
    position: absolute;
    top: 10px;
    right: 20px;
    background-color: transparent;
    border: 0;
    color: var(--color--green-dark);
    display: block;
    font-weight: normal;
    font-size: 12px;
    height: 48px;
    padding: 0 0 0 24px;
  }

  #nav-toggle:hover,
  #nav-toggle:focus {
    background-color: transparent;
    color: var(--color--green-dark);
  }

  #nav-toggle .nav-icon {
    background-color: var(--color--green-dark);
    display: block;
    height: 3px;
    left: 0;
    position: absolute;
    top: 24px;
    width: 24px;
  }

  .nav-menu {
    background-color: var(--color--white);
    border-top: 1px solid var(--color--gray4);
    clear: left;
    float: none;
    margin-left: -30px;
    margin-right: -30px;
    max-height: 0px;
    transition: max-height .3s;
    overflow: hidden;
  }

  @media only screen and (min-width: 800px) {
    .nav-menu {
    max-height: unset !important;
    }
  }

  .nav-menu.is-expanded {
    max-height: 350px;
  }

  .nav-menu li {
    border-top: 1px solid var(--color--gray4);
    display: block;
    float: none;
    padding: 0;
  }

  .nav-menu li:first-child {
    border-top: 0;
  }

  .nav-menu a,
  .nav-menu li:first-child a {
    border-left: 0;
    display: block;
    padding: 18px 30px;
  }

  .site-header .inner {
    /* max-width: 450px; */
  }

  .site-title {
    font-size: 30px;
  }

  .site-description {
    font-size: 16px;
  }

  .sidebar .widget {
    text-align: center;
  }

  .widget form {
    margin-left: auto;
    margin-right: auto;
    max-width: 480px;
  }

  .widget-instagram .instagram-feed {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  .footer-widgets .instagram-item {
    width: 33.333%;
  }
}

@media only screen and (max-width: 640px) {
  h1,
  .site-title,
  .post-title,
  .page-title,
  .site-search .search-field {
    font-size: 24px;
  }

  h2,
  blockquote,
  .hero .post-title {
    font-size: 21px;
  }

  h3,
  .subscribe-box .subscribe-box-title {
    font-size: 18px;
  }

  h4,
  .page-description,
  .author-info .author-title,
  .post-navigation .nav-title {
    font-size: 16px;
  }

  h5,
  h6 {
    font-size: 14px;
  }

  .alignleft,
  .alignright {
    float: none;
    margin: 6px 0 24px;
    max-width: none;
  }

  .site-content,
  .right-sidebar .site-content {
    padding-top: 36px;
  }

  .site-navigation,
  .site-header,
  .footer-widgets .widget,
  .site-footer,
  .nav-menu a,
  .nav-menu li:first-child a,
  .search-box {
    padding-left: 20px;
    padding-right: 20px;
  }

  .site-main,
  .site-main .inner {
    padding-left: 10px;
    padding-right: 10px;
  }

  .nav-menu {
    margin-left: -20px;
    margin-right: -20px;
  } 

  .hero .slide-content {
    padding: 24px;
  }

  .hero .post-tags {
    margin-bottom: 12px;
  }

  .hero .read-more {
    display: none;
  }

  .footer-widgets .widget-instagram {
    padding-left: 0;
    padding-right: 0;
  }

  .sl-wrapper button {
    height: 30px;
    line-height: 2.14285;
    width: 30px;
  }

  #search-close,
  .sl-wrapper .sl-close {
    right: 5px;
    top: 5px;
  }

  .sl-wrapper .sl-next {
    right: 5px;
  }

  .sl-wrapper .sl-prev {
    left: 5px;
  }

  .sl-wrapper .sl-counter {
    bottom: 5px;
    right: 5px;
  }
}

@media only screen and (max-width: 480px) {
  .share-post {
    margin-top: 24px;
    position: static;
    text-align: left;
  }

  .subscribe-box,
  .author-list {
    padding: 30px 15px;
    text-align: center;
  }

  .author-list:before {
    border-width: 1px 0 0 0;
  }

  .author-box {
    margin-top: 24px;
  }

  .subscribe-box form {
    padding-right: 0;
  }

  .subscribe-box button[type="submit"] {
    margin-top: 18px;
    position: static;
  }

  .newer-posts,
  .older-posts {
    position: relative;
    top: auto;
  }

  .newer-posts {
    left: auto;
    margin-bottom: 12px;
  }

  .older-posts {
    margin-top: 12px;
    right: auto;
  }

  .page-number {
    display: block;
  }

  .site-footer {
    text-align: center;
  }

  .site-footer .top-link {
    display: inline-block;
    position: relative;
    margin-top: 14px;
    font-size: 10px;
  }

  #search-close,
  .sl-wrapper .sl-close {
    right: 0;
    top: 0;
  }

  .sl-wrapper .sl-next {
    right: 0;
  }

  .sl-wrapper .sl-prev {
    left: 0;
  }

  .kg-bookmark-container {
    flex-direction: column;
  }

  .kg-bookmark-thumbnail {
    order: 1;
    width: 100%;
    min-height: 160px;
  }

  .kg-bookmark-content {
    order: 2;
  }
}

/**
 * Customization
 */
.slider-loading {
  visibility: hidden;
  max-height: 360px;
}

@media only screen and (min-width: 540px) {
  .slider-loading {
    max-height: 375px;
  }
}

@media only screen and (min-width: 801px) {
  .slider-loading {
    max-height: 410px;
  }
}


 /* tiny-slider */
.slide {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 360px;
}

@media only screen and (min-width: 540px) {
  .slide {
    height: 375px;
  }
}

@media only screen and (min-width: 801px) {
  .slide {
    height: 410px;
  }
}

.slide img { 
  position: absolute;
  height: 100%;
  width: 100%;
  object-fit: cover;
  z-index: 1;
  opacity: .4;
  transition: opacity .6s;
}

.slide-content-wrapper {
  max-width: 75%;
}

.slide-content {
  position: relative;
  z-index: 2;
  background-color: rgba(255, 255, 255, 0.8);
  padding: 30px;
  transition: opacity .6s;
  text-align: center;
}

.slide-content-wrapper::before,
.slide-content-wrapper::after {
  content: '';
  display: block;
  width: 100%;
  height: 5px;
  background-color: rgba(255, 255, 255, 0.8);
  margin: 5px 0;
  position: relative;
  z-index: 2;
  transition: opacity .6s;
}

@media only screen and (min-width: 801px) {
  .slide-content {
    opacity: 0;
  }

  .slide-content-wrapper::before,
  .slide-content-wrapper::after {
    opacity: 0;
  }

  .tns-item:not(.tns-slide-active) + .tns-slide-active + .tns-slide-active .slide-content-wrapper::after,
  .tns-item:not(.tns-slide-active) + .tns-slide-active + .tns-slide-active .slide-content-wrapper::before,
  .tns-item:not(.tns-slide-active) + .tns-slide-active + .tns-slide-active .slide-content,
  .tns-item:not(.tns-slide-active) + .tns-slide-active + .tns-slide-active img { 
    opacity: 1; 
  }
}

.prev, 
.next {
  background-color: var(--color--green);
  border: 0;
  color: var(--color--white);
  cursor: pointer;
  display: block;
  font-size: 18px;
  height: 40px;
  outline: none;
  padding: 0;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 40px;
  z-index: 99;
}

.prev {
  left: 0;
}

.next {
  right: 0;
}

.prev svg,
.next svg {
  position: relative;
  top: 4px;
  width: 25px;
  height: 25px;
  fill: var(--color--white);
}
.prev svg {
  right: 1px;
}
.next svg {
  left: 1px;
}

.slider-navigation {
  display: flex;
  justify-content: center;
  margin-top: 8px;
}

.slider-dot {
  border: 0;
  cursor: pointer;
  font-size: 0;
  line-height: 0;
  height: auto;
  position: relative;
  background-color: transparent;
  padding: 4px;
  margin: 4px;
}
.slider-dot:hover,
.slider-dot:focus {
  background-color: transparent
}

.slider-dot:hover::before {
  background-color: var(--color--green);
}
.slider-dot::before {
  display: block;
  content: "";
  width: 10px;
  height: 10px;
  left: 8px;
  top: 8px;
  background-color: var(--color--green2);
}

.slider-dot.tns-nav-active::before {
  background-color: var(--color--green);
}

/* How to Element */

.howto {
}

.howto__metaBottomWrapper {
  display: flex;
  flex-direction: column;
  margin-bottom: 1rem;
  text-align: center;
}

.howto__metaBottomWrapper h2 {
  order: 2;
}

.howto__meta {
  display: flex;
  flex-direction: column;
  margin-bottom: 1rem;
}

.howto__main {
  padding-bottom: 30px;
}

.howto__mainimage {
  max-width: 33.33333%;
  margin-right: 30px;
}

.howto__mainimage img,
.howto__instructionsStepContent img {
  box-shadow: 0 0 2px var(--color--gray);
}

.post-content .howto__title {
  margin-top: 0;
  margin-bottom: 8px;
}

.howto__infoPrepStep {
  text-align: center;
}

.howto__infoPrepStep + .howto__infoPrepStep {
  margin-top: 20px;
}

.howto__infoPrepStep {
  padding: 26px 20px;
  border: 1px solid var(--color--gray4);
}

.howto__infoPrepStep {
  padding: 14px;
}

.howto__info {
}

.howto__metaMaterials {
  padding-top: 30px;
  padding-bottom: 30px;
  margin-top: 40px;
  margin-bottom: 20px;
  border-top: 1px solid var(--color--gray2);
  border-bottom: 1px solid var(--color--gray2);
  text-align: center;
}

.howto__metaMaterials h3 {
  margin-top: 0;
  margin-bottom: 16px;
}

.howto__metaMaterials .howto__ul {
  padding-left: 0;
  list-style: none;
}

.howto__ratings {
  position: relative;
  height: 25px;
  padding: 0;
  margin-bottom: 36px;
  color: #c5c5c5;
  font-size: 25px;
  text-shadow: 0px 1px 0 #a2a2a2;
  unicode-bidi: bidi-override;
}

.howto__ratings--top {
  color: var(--color--green);
  padding: 0;
  position: absolute;
  z-index: 1;
  display: block;
  top: 0;
  left: 0;
  overflow: hidden;
}

.howto__ratings--bottom {
  padding: 0;
  display: block;
  z-index: 0;
}

.howto__prepTitle {
  font-family: var(--font--headings);
  font-weight: var(--font-weight-bold);
  font-size: 18px;
  color: var(--color--gray);
}

.howto__prepTime {
}

.howto__sectionHeading {
  margin-bottom: 2.5rem;
  color: var(--color--gray);
  font-weight: var(--font-weight-regular);
  font-size: 20px;
}

.howto__sectionHeading:not(:first-child) {
  margin-top: 50px;
}

.howto__printButton {
  order: 1;
}

.howto__instructions {
}

.howto__ul {
  margin-bottom: 0;
}

.howto__instructionStep {
}

.howto__instructionStep + .howto__instructionStep {
  margin-top: 26px;
}

.howto__instructionsStepNumber span {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 42px;
  height: 37px;
  background-color: var(--color--gray2);
  color: var(--color--white);
  font-size: 19px;
}

.howto__instructionsStepContent p {
  margin-bottom: 12px;
}

.home__newPostsHeading {
  margin-top: 40px;
  margin-bottom: 2.5rem;
  text-align: center;
  text-transform: uppercase;
  font-weight: 400;
}

.homeCategoryPosts__categoryHeading {
  margin-bottom: 2rem;
  color: var(--color--green);
  font-size: 20px;
}

/* Text utilities */
.text-center {
  text-align: center !important;
}
.text-left {
  text-align: left !important;
}
.text-right {
  text-align: right !important;
}

/* Font utilities */
.font-bold {
  font-weight: var(--font-weight-bold);
}
.font-italic {
  font-style: italic;
}
.text-uppercase {
  text-transform: uppercase;
}

/* Color utilities */
.color-white {
  color: var(--color--white) !important;
}
.color-green {
  color: var(--color--green) !important;
}
.color-blue {
  color: var(--color--blue) !important;
}
.color-orange {
  color: var(--color--orange) !important;
}
.color-gray {
  color: var(--color--gray) !important;
}

/* Custom templates */

/* Page Template custom-ohne-sidebar.hbs */
.site-main.site--no-sidebar .inner,
.site-main.site--no-sidebar + .site-footer .inner {
  max-width: 800px;
}

.site-main.site--no-sidebar .site-content {
  width: 100%;
  float: none;
  border-left: 0;
  margin-left: 0;
  padding-left: 0;
}

/* Page Template custom-hintergrund-grau.hbs */
.site-main.background-gray {
  padding-right: 0;
  padding-left: 0;
}
.site-main.site--no-sidebar.background-gray,
.site-main.background-gray .site-content,
.site-main.background-gray .inner {
  background-color: var(--color--gray1);
  color: white;
}

.site-main.background-gray .widget-title,
.site-main.background-gray .widget-recent-posts a,
.site-main.background-gray .site-content * {
  color: white;
}

@media only screen and (max-width: 800px) {
  .post-header {
    display: flex;
    flex-direction: column;
    text-align: center;
  }

  .home__bottom {
    padding-top: 4rem;
  }

  .homeCategoryPosts__article {
    padding-bottom: 1rem;
  }

  .homeCategoryPosts__categoryHeading {
    margin-bottom: 0;
  }

  .homeCategoryPosts__article + .homeCategoryPosts__article {
    border-top: 1px solid var(--color--gray4);
  }

  .homeCategoryPosts__article .post-title,
  .post__loop .post-title {
    order: 1;
    margin-top: 24px;
    margin-bottom: 24px;
    text-align: center;
    hyphens: auto;
    -webkit-hyphens: auto;
    -ms-hyphens: auto;
  }

  .homeCategoryPosts__article .post-thumbnail {
    order: 2;
    margin-top: 0;
  }

  .homeCategoryPosts__article .post-meta {
    order: 3;
    margin-bottom: 13px;
  }

  .post {
    flex-direction: column;
  }

  .author-list {
    margin-bottom: 20px;
  }

  .post-navigation {
    flex-direction: column-reverse;
    padding-top: 0;
    border-top: 0;
    border-bottom: 1px solid var(--color--gray4);
  }

  .nav-previous {
    padding-top: 22px;
    border-top: 1px solid var(--color--gray4);
  }

  .nav-previous .nav-inside-inner,
  .nav-next .nav-inside-inner {
    justify-content: center;
  }

  .nav-previous .nav-inside-left,
  .nav-next .nav-inside-left {
    position: absolute;
  }

  .nav-previous .nav-inside-left {
    left: 20px;
  }

  .nav-next .nav-inside-left {
    right: 20px;
  }

  .nav-next,
  .nav-previous {
    width: 100%;
  }

  .nav-title {
    margin: auto;
  }

  .nav-next .nav-inside-inner {
    margin-right: 0;
    text-align: center;
  }

  .nav-previous .nav-inside-inner {
    margin-left: 0;
  }

  .nav-inside {
    text-align: center;
  }

  .nav-previous + .nav-next {
    padding-top: 1rem;
    border-top: 1px solid var(--color--gray4);
  }
}

@media only screen and (min-width: 801px) {
  body {
    padding-top: 140px;
  }

  .tag-template .post,
  .author-template .post {
    flex-direction: row;
  }

  .tag-template .post-title,
  .author-template .post-title {
    font-size: 24px;
  }

  .home-template {
    padding-top: 240px;
  }

  .home-template .home__bottom {
    display: flex;
  }

  .home__bottomLeft {
    width: 66.6666666%;
    padding-right: 50px;
    border-right: 1px solid var(--color--gray4);
  }

  .home__bottomRight {
    flex: 1;
    padding-left: 50px;
  }

  .home-template .site-content {
    width: 100%;
  }

  .home__bottom {
  }

  .headerWrapper {
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .post__thumbWrapper {
    max-width: 33.3333333%;
    margin-right: 40px;
  }

  .site-header {
    text-align: center;
  }

  .nav-links {
    margin-bottom: 0;
  }

  .nav-menu li:nth-last-child(2) a {
    border-right: 1px solid var(--color--gray4);
  }

  body.home-template .site-logo a {
    position: relative;
    width: 280px;
    padding: 112px 0 10px;
    margin-top: -10px;
    margin-bottom: -10px;
  }
  body.home-template .site-logo .deco {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
    background: url(../images/logo_deco.svg) no-repeat center;
    -webkit-background-size: contain;
    background-size: contain;
    opacity: 1;
    transition: opacity 0.3s;
  }

  body.home-template.is-sticky-header .site-header {
    margin-top: -112px;
  }
  body.home-template.is-sticky-header .site-logo .deco {
    opacity: 0;
  }

  .sidebar {
    position: sticky;
    top: 140px;
  }

  .site-navigation {
    position: relative;
  }

  .site-navigation .search-open {
    display: none;
  }

  .nav-menu {
    position: relative;
  }

  .nav-search-open-list-item .search-open {
    position: absolute;
    top: -12px;
    display: block;
    margin-left: 8px;
  }

  .nav-search-open-list-item .search-open:hover {
    background-color: transparent;
  }

  .nav-search-open-list-item .search-open .search-svg {
    width: 14px;
    height: 14px;
  }

  .howto__metaBottomWrapper {
    display: block;
    position: relative;
    margin-bottom: 3rem;
    text-align: left;
  }

  .howto__printButton {
    position: absolute;
    top: 0;
    right: 0;
  }

  .howto__meta {
    flex-direction: row;
    margin-bottom: 3rem;
  }

  .howto__info,
  .howto__metaMaterials {
    width: 50%;
  }

  .howto__metaMaterials {
    padding: 26px 20px;
    border: 1px solid var(--color--gray4);
    margin-top: 0;
  }

  .howto__infoPrepStep {
    display: flex;
    justify-content: center;
    align-items: center;
    flex: 1;
  }

  .howto__metaMaterials {
    margin-right: 14px;
    margin-bottom: 0;
  }

  .howto__info {
    display: flex;
    flex-direction: column;
    margin-left: 14px;
  }

  .howto__instructionStep {
    display: flex;
  }

  .howto__instructionsStepContent {
    flex: 1;
  }

  .howto__instructionsStepImage {
    max-width: 240px;
    margin-left: 20px;
  }

  .howto__instructionsStepContent {
  }

  .howto__instructionsStepNumber {
    position: relative;
    top: 5px;
    margin-right: 20px;
  }

  .howto__main {
    padding-bottom: 0;
  }

  .howto__instructionStep {
    padding-bottom: 26px;
    border-bottom: 1px solid var(--color--gray2);
  }

  .site-main.background-gray:not(.site--no-sidebar) .site-content {
    padding-right: 20px;
  }

  .nav-links .search-open:hover {
    background-color: transparent;
  }

  .homeCategoryPosts {
    display: flex;
  }

  .homeCategoryPosts__article {
    position: relative;
    width: 33.33333%;
    padding-bottom: 46px;
    margin-right: 10px;
    margin-left: 10px;
    border: 1px solid var(--color--gray4);
    text-align: center;
  }

  .homeCategoryPosts__article .post-header {
    display: flex;
    flex-direction: column;
    margin-bottom: 10px;
  }

  .homeCategoryPosts__article .post-thumbnail {
    order: 1;
    margin-top: 0;
  }

  .homeCategoryPosts__article .post-title {
    order: 2;
    margin-top: 14px;
    font-size: 22px;
    text-align: center;
    hyphens: auto;
    -webkit-hyphens: auto;
    -ms-hyphens: auto;
  }

  .homeCategoryPosts__article .post-meta {
    order: 3;
    margin-bottom: 0;
  }

  .homeCategoryPosts__article .read-more {
    position: absolute;
    bottom: 20px;
    right: 0;
    left: 0;
    margin: auto;
  }

  .homeCategoryPosts__article .post-title,
  .homeCategoryPosts__article .post-content {
    padding-right: 20px;
    padding-left: 20px;
  }

  .homeCategoryPosts__article:first-child {
    margin-left: 0;
  }

  .homeCategoryPosts__article:last-child {
    margin-right: 0;
  }
}

/* Page Template custom-hintergrund-gruen.hbs */
.site-main.background-green {
  padding-right: 0;
  padding-left: 0;
}

.site-main.site--no-sidebar.background-green,
.site-main.background-green .site-content,
.site-main.background-green .inner {
  background-color: var(--color--green3);
}

@media only screen and (min-width: 801px) {
  .site-main.background-green:not(.site--no-sidebar) .site-content {
    padding-right: 20px;
  }
}

/* Content elements customization */
@media only screen and (min-width: 961px) {
  .site-main.site--no-sidebar .post-content .kg-image-card.kg-width-full {
    /*width: 100vw;*/
    width: 99.25vw; /* 100vw creates horizontal scroll bar?!  */
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
  }

  .site-main.site--no-sidebar .post-content .kg-gallery-container {
    max-width: none;
  }
}

.post-content figure.kg-card figcaption {
  text-align: center;
}

/* Custom HTML Elements */

/* .infobox */
.infobox {
  position: relative;
  padding: 32px 40px;
  background-color: var(--color--green3);
  color: var(--color--gray1);
  text-align: center;
}

.infobox p {
  margin-bottom: 0;
}

.infobox__label {
  font-style: italic;
  font-weight: var(--font-weight-bold);
}

.infobox__label + p {
  margin-top: -8px;
}

.infobox p {
}

.initial::first-letter {
  float: left;
  font-size: 3.4rem;
  line-height: 0.65;
  color: inherit;
  text-transform: uppercase;
  padding: 0.17em 0.25em 0 0;
  margin: 0;
}

#commento {
  margin-top: -3rem;
}
#commento .commento-logged-container {
  margin-top: 3rem;
}
.commento-root .commento-button {
  border-radius: 0 !important;
}
#commento-submit-button-root {
  color: var(--color--white);
  background-color: var(--color--gray1);
  box-shadow: none;
  padding: 6px 20px;
  border: 0;
  margin-left: 0;
  margin-right: 0;
}
#commento pre {
  background-color: none;
  padding: 0;
}
#commento-footer {
  display: none;
}
#commento-legal {
  font-size: 12px;
  line-height: 1.5;
  text-align: right;
  border-top: 1px solid rgba(50, 50, 93, 0.1);
  padding-top: 1rem;
  margin-top: 1rem;
  margin-bottom: 2rem;
}

/**
 * custom component:
 * table of contents
 * 
 * author: alxbenz
 * 15.04.2021 
 **/

.toc {
  margin: 1rem 0;
  box-shadow: 0 0.25rem 1rem rgba(0, 0, 0, 0.1);
  background: var(--color--white);
}

.toc__header {
  padding: 1.875rem;
  background: var(--color--green);
  color: var(--color--white);
  font-size: 1.25rem;
  font-weight: var(--font-weight-bold);
}

.toc__list {
  list-style: none;
  counter-reset: table-of-contents;
  padding: 0.5rem 0;
}

.toc__list-item {
  padding: 0 1.875rem;
  counter-increment: table-of-contents;
  display: flex;
  align-items: center;
}

.toc__list-item::before {
  margin-right: 1.125rem;
  content: counter(table-of-contents);
  color: var(--text-color);
  font-size: 1.25rem;
  font-weight: 300;
  transition: all 0.3s;
}

.toc__list-item a {
  display: flex;
  align-items: center;
  font-weight: 600;
  color: var(--text-color);
  border-bottom: 1px solid var(--color--gray4);
  padding: 0.5rem 0;
  min-height: 3rem;
  line-height: 1.5rem;
  width: 100%;
}

.toc__list-item:last-child a {
  border-bottom: none;
}

@media (hover: hover) {
  .toc__list-item:hover::before,
  .toc__list-item:hover a {
    color: var(--color--green);
  }
}

/**
 * custom component:
 * image_banner
 * 
 * author: alxbenz
 * 15.04.2021 
 **/

.image-banner {
  position: relative;
  border: 1px solid var(--color--gray4);
}

.image-banner__figure {
  position: relative;
}

.image-banner__figure::after {
  display: block;
  position: absolute;
  bottom: 1.25rem;
  left: 1.25rem;
  content: url("../images/badenova.svg");
}

.image-banner__content {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  text-align: left;
}

.image-banner__content h3 {
  margin-top: 0;
  margin-bottom: 1.25rem;
}

.image-banner__content p {
  line-height: 1.5rem;
}

.image-banner__content a {
  padding: 0.625rem 1rem;
  font-size: 0.75rem;
  line-height: 0.75rem;
  font-weight: var(--font-weight-bold);
  text-transform: uppercase;
  border: 1px solid var(--color--green);
  justify-self: flex-end;
  text-align: center;
}

@media (hover: hover) {
  .image-banner__content a:hover {
    color: var(--color--green1);
    border-color: var(--color--green1);
  }
}

@media (min-width: 568px) {
  .image-banner__figure {
    position: absolute;
    height: 100%;
    width: 50%;
    overflow: hidden;
  }
  .image-banner__figure img {
    height: 100%;
    width: 100%;
    object-fit: cover;
  }
  .image-banner__content {
    width: calc(50% - 2.5rem);
    margin-left: 50%;
  }

  .image-banner__content a {
    align-self: flex-end;
  }
}

@media (min-width: 800px) {
  .widget .image-banner__figure {
    position: relative;
    width: auto;
    height: auto;
  }
  .widget .image-banner__figure img {
    height: auto;
    width: auto;
  }

  .widget .image-banner__content {
    width: auto;
    margin-left: 0;
  }

  .widget .image-banner__content a {
    align-self: stretch;
  }
}

/* PRINT LAYOUT */
@media print {
  .headerWrapper, 
  .hero, 
  .sidebar, 
  .post-navigation, 
  .post-footer, 
  .site-search, 
  .site-footer, 
  .site-content &gt; h3, 
  .site-content &gt; #commento, 
  .site-content &gt; #commento-legal, 
  .site-content &gt; .screen-reader-text, 
  .site-content &gt; .post-navigation {
      display: none !important;
  }

  .inner {
      max-width: unset;
  }

  .site-content {
      width: 100%;
  }

  .printHideAll {
      padding: 0;
      margin: 0;
  }

  .printHideAll *:not(.printOnlyArea):not(.printOnlyArea *) {
      visibility: hidden !important;
      height: 0px !important;
      margin: 0;
      padding: 0;
  }

  .printOnlyArea, .printOnlyArea * {
      visibility: visible;
  }

  .kg-gallery-row {
      display: block;
  }

  .post-content figure.kg-card figcaption {
      display: block;
      text-align: left;
  }

  .alignleft {
      float: none;
  }

  img {
      max-width: 500px
  }

  .howto__instructionStep {
      display: flex;
      justify-content: space-between;
  }

  .howto__instructionsStepContent {
      width: 60%;
  }

  .howto__instructionsStepImage {
      width: 30%;
      position: relative;
  }

  .howto__instructionsStepImage img {
      width: 100%;
  }
}
</pre></body></html>