/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */
html {
  -webkit-text-size-adjust: 100%;
  line-height: 1.15;
}
body {
  margin: 0;
}
main {
  display: block;
}
.in-post-image {
  margin: auto;
  width: auto;
  height: auto;
}
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}
hr {
  box-sizing: content-box;
  height: 0;
  overflow: visible;
}
pre {
  font-family: monospace;
  font-size: 1em;
}
a {
  background-color: transparent;
}
abbr[title] {
  border-bottom: none;
  text-decoration: underline;
  -webkit-text-decoration: underline dotted;
  text-decoration: underline dotted;
}
b,
strong {
  font-weight: bolder;
}
code,
kbd,
samp {
  font-family: 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;
}
[type="button"],
[type="reset"],
[type="submit"],
button {
  -webkit-appearance: button;
}
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner,
button::-moz-focus-inner {
  border-style: none;
  padding: 0;
}
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring,
button:-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;
}
[hidden],
template {
  display: none;
}
:root {
  --primary-color: var(--ghost-accent-color, #49a8e4);
  --primary-text-color: #333;
  --secondary-text-color: #aaa;
  --red-color: #ff7473;
  --white-color: #fff;
  --light-gray-color: #f1f1f1;
  --mid-gray-color: #d9d9d9;
  --dark-gray-color: #1a1a1a;
  --black-color: #000;
  --dark-mode-bg-color: #282c35;
  --dark-mode-darker-bg-color: #21252c;
  --dark-mode-primary-text-color: #ccc;
  --dark-mode-secondary-text-color: #999;
  --dark-mode-border-color: #495061;
  --animation-base: ease-in-out;
  --shadow-base: 0 0 5px rgba(0, 0, 0, 0.2);
  --font-mono: Menlo, Consolas, Monaco, Liberation Mono, Lucida Console,
    monospace;
}
html {
  box-sizing: border-box;
}
*,
:after,
:before {
  box-sizing: border-box;
}
body {
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background-color: var(--white-color);
  color: var(--primary-text-color);
  font-family: Alto, sans-serif;
  font-size: 20px;
  line-height: 1.65;
  transition: background-color 0.3s var(--animation-base);
  word-break: break-word;
}
a {
  text-decoration: none;
}
a,
h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--dark-gray-color);
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  line-height: 1.3;
  margin: 0 0 15px;
}
p {
  margin: 0 0 20px;
}
img {
  display: block;
  height: auto;
  max-width: 100%;
}
blockquote {
  color: var(--dark-gray-color);
  font-size: 22px;
  font-weight: 700;
  line-height: 1.3;
  margin-left: 60px;
  margin-right: 60px;
}
blockquote strong {
  font-weight: 800;
}
ol,
ul {
  padding-left: 35px;
}
li {
  margin: 5px 0;
}
embed,
iframe {
  border: 0;
  display: block;
  overflow: hidden;
  width: 100%;
}
figure {
  margin-left: 0;
  margin-right: 0;
}
figcaption {
  color: var(--dark-gray-color);
  font-size: 14px;
  margin-top: 15px;
  text-align: center;
}
pre {
  -webkit-overflow-scrolling: touch;
  background-color: var(--light-gray-color);
  border-radius: 5px;
  -webkit-hyphens: none;
  -ms-hyphens: none;
  hyphens: none;
  line-height: 1.5;
  overflow-x: scroll;
  padding: 16px 22px;
  white-space: pre;
}
code {
  font-family: var(--font-mono);
  font-size: 14px;
}
:not(pre) > code {
  background-color: var(--light-gray-color);
  border-radius: 3px;
  padding: 3px 4px;
}
hr {
  border: 0;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}
hr,
hr:after,
hr:before {
  background-color: var(--dark-gray-color);
  border-radius: 50%;
  height: 5px;
  width: 5px;
}
hr:after,
hr:before {
  content: "";
  position: absolute;
}
hr:before {
  right: 20px;
}
hr:after {
  left: 20px;
}
.row.related {
  align-items: center;
  justify-content: center;
}
.container {
  margin-left: auto;
  margin-right: auto;
  padding-left: 4vw;
  padding-right: 4vw;
  width: 100%;
}
.container.large {
  max-width: calc(960px + 8vw);
}
.container.medium {
  max-width: calc(750px + 8vw);
  border: 1px solid rgba(48, 146, 85, 0.2);
  border-radius: 15px;
  padding: 20px;
  margin-top: 20px;
}
.container.mediumad {
  max-width: calc(750px + 8vw);
  padding: 20px;
  margin-top: 20px;
}
.container.small {
  max-width: calc(640px + 8vw);
}
.row {
  display: flex;
  flex-wrap: wrap;
}
div[class^="col-"] {
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
  position: relative;
  width: 100%;
}
.col-1 {
  flex: 0 0 8.333333%;
  max-width: 8.333333%;
}
.col-2 {
  flex: 0 0 16.666667%;
  max-width: 16.666667%;
}
.col-3 {
  flex: 0 0 25%;
  max-width: 25%;
}
.col-4 {
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.col-5 {
  flex: 0 0 41.666667%;
  max-width: 41.666667%;
}
.col-6 {
  flex: 0 0 50%;
  max-width: 50%;
}
.col-7 {
  flex: 0 0 58.333333%;
  max-width: 58.333333%;
}
.col-8 {
  flex: 0 0 66.666667%;
  max-width: 66.666667%;
}
.col-9 {
  flex: 0 0 75%;
  max-width: 75%;
}
.col-10 {
  flex: 0 0 83.333333%;
  max-width: 83.333333%;
}
.col-11 {
  flex: 0 0 91.666667%;
  max-width: 91.666667%;
}
.col-12 {
  flex: 0 0 100%;
  max-width: 100%;
}
@media (min-width: 576px) {
  .col-sm-1 {
    flex: 0 0 8.333333%;
    max-width: 8.333333%;
  }
  .col-sm-2 {
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }
  .col-sm-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-sm-4 {
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
  .col-sm-5 {
    flex: 0 0 41.666667%;
    max-width: 41.666667%;
  }
  .col-sm-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-sm-7 {
    flex: 0 0 58.333333%;
    max-width: 58.333333%;
  }
  .col-sm-8 {
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
  }
  .col-sm-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }
  .col-sm-10 {
    flex: 0 0 83.333333%;
    max-width: 83.333333%;
  }
  .col-sm-11 {
    flex: 0 0 91.666667%;
    max-width: 91.666667%;
  }
  .col-sm-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }
}
@media (min-width: 768px) {
  .col-md-1 {
    flex: 0 0 8.333333%;
    max-width: 8.333333%;
  }
  .col-md-2 {
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }
  .col-md-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-md-4 {
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
  .col-md-5 {
    flex: 0 0 41.666667%;
    max-width: 41.666667%;
  }
  .col-md-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-md-7 {
    flex: 0 0 58.333333%;
    max-width: 58.333333%;
  }
  .col-md-8 {
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
  }
  .col-md-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }
  .col-md-10 {
    flex: 0 0 83.333333%;
    max-width: 83.333333%;
  }
  .col-md-11 {
    flex: 0 0 91.666667%;
    max-width: 91.666667%;
  }
  .col-md-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }
}
@media (min-width: 992px) {
  .col-lg-1 {
    flex: 0 0 8.333333%;
    max-width: 8.333333%;
  }
  .col-lg-2 {
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }
  .col-lg-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-lg-4 {
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
  .col-lg-5 {
    flex: 0 0 41.666667%;
    max-width: 41.666667%;
  }
  .col-lg-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-lg-7 {
    flex: 0 0 58.333333%;
    max-width: 58.333333%;
  }
  .col-lg-8 {
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
  }
  .col-lg-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }
  .col-lg-10 {
    flex: 0 0 83.333333%;
    max-width: 83.333333%;
  }
  .col-lg-11 {
    flex: 0 0 91.666667%;
    max-width: 91.666667%;
  }
  .col-lg-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }
}
@media (min-width: 1200px) {
  .col-xl-1 {
    flex: 0 0 8.333333%;
    max-width: 8.333333%;
  }
  .col-xl-2 {
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }
  .col-xl-3 {
    flex: 0 0 30%;
    max-width: 30%;
  }
  .col-xl-4 {
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
  .col-xl-5 {
    flex: 0 0 41.666667%;
    max-width: 41.666667%;
  }
  .col-xl-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-xl-7 {
    flex: 0 0 58.333333%;
    max-width: 58.333333%;
  }
  .col-xl-8 {
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
  }
  .col-xl-9 {
    flex: 0 0 70%;
    max-width: 70%;
  }
  .col-xl-10 {
    flex: 0 0 83.333333%;
    max-width: 83.333333%;
  }
  .col-xl-11 {
    flex: 0 0 91.666667%;
    max-width: 91.666667%;
  }
  .col-xl-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }
}
@media (max-width: 575px) {
  .hidden-xs {
    display: none !important;
  }
}
@media (min-width: 576px) and (max-width: 767px) {
  .hidden-sm {
    display: none !important;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .hidden-md {
    display: none !important;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .hidden-lg {
    display: none !important;
  }
}
@media (min-width: 1200px) {
  .hidden-xl {
    display: none !important;
  }
}
.button-arrow-icon {
  color: var(--secondary-text-color);
  display: inline-block;
  transition: transform 0.2s var(--animation-base);
  vertical-align: middle;
}
.button-arrow-left .button-arrow-icon {
  margin-left: -2px;
  margin-right: 3px;
}
.button-arrow-right .button-arrow-icon {
  margin-left: 3px;
  margin-right: -2px;
}
.button-arrow-left:hover .button-arrow-icon {
  transform: translateX(-5px);
}
.button-arrow-right:hover .button-arrow-icon {
  transform: translateX(5px);
}
input[type="email"],
input[type="password"],
input[type="text"] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: 1px solid var(--mid-gray-color);
  border-radius: 5px;
  font-size: 20px;
  height: 30px;
  outline: none;
  padding: 0 15px;
}
input[type="email"]:focus,
input[type="password"]:focus,
input[type="text"]:focus {
  border-color: var(--primary-color);
}
.site-header {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  z-index: 80;
}
.navbar {
  height: 100px;
  justify-content: space-between;
}
.navbar,
.navbar-left,
.navbar-right {
  align-items: center;
  display: flex;
}
.navbar-left {
  height: 100%;
}
.logo {
  display: inline-block;
  margin-right: 15px;
  position: relative;
  vertical-align: middle;
}
.logo-image {
  max-height: 45px;
}
.logo-image.white {
  left: 0;
  opacity: 0;
  position: absolute;
  top: 0;
  transition: opacity 0.3s var(--animation-base);
}
.logo-text {
  font-size: 24px;
  font-weight: 800;
}
.sep {
  display: flex;
  height: 100%;
  margin: 0 15px;
  width: 1px;
}
.sep:after {
  background-color: var(--mid-gray-color);
  content: "";
  height: 40%;
  margin: auto;
  transition: background-color 0.5s var(--animation-base);
  width: 100%;
}
.nav-list {
  display: flex;
}
.menu-item {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.5px;
  line-height: 1;
  margin: 0 20px;
  transition: opacity 0.3s var(--animation-base);
}
.menu-item-link {
  color: var(--secondary-text-color);
}
.menu-item-link:hover {
  color: var(--dark-gray-color);
}
@media (max-width: 767px) {
  .logo {
    margin-right: 0;
  }
}
.burger {
  cursor: pointer;
  height: 30px;
  margin-left: -9px;
  margin-right: 10px;
  position: relative;
  width: 30px;
}
.burger:after,
.burger:before {
  background-color: var(--dark-gray-color);
  content: "";
  height: 2px;
  left: 9px;
  position: absolute;
  width: 12px;
}
.burger:before {
  top: 11px;
}
.burger:after {
  bottom: 11px;
}
.toggle-track {
  background-color: var(--dark-gray-color);
  border-radius: 30px;
  cursor: pointer;
  display: flex;
  height: 24px;
  margin-left: 20px;
  position: relative;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  width: 45px;
}
.toggle-moon,
.toggle-sun {
  align-items: center;
  color: var(--white-color);
  display: flex;
  font-size: 16px;
  justify-content: center;
  margin-top: 1px;
  width: 50%;
}
.toggle-moon {
  transform: translateX(1px);
}
.toggle-thumb {
  background-color: var(--white-color);
  border-radius: 50%;
  height: 20px;
  left: 2px;
  position: absolute;
  top: 2px;
  transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  width: 20px;
}
.dark-mode .toggle-thumb {
  transform: translateX(21px);
}
.site {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}
.site-content {
  flex-grow: 1;
  padding-top: 60px;
}
.widget {
  background-color: var(--white-color);
  padding: 20px;
}
.widget-no-title {
  padding: 5px;
}
.widget-title {
  border-bottom: 1px solid var(--light-gray-color);
  color: var(--secondary-text-color);
  font-family: var(--font-base);
  font-size: 11px;
  letter-spacing: 0.5px;
  margin: -20px -20px 20px;
  padding: 15px 20px;
  text-transform: uppercase;
}
.widget-tags .tag + .tag {
  margin-top: 5px;
}
.widget-tags .tag-link {
  align-items: center;
  display: flex;
  justify-content: space-between;
}
.widget-tags .tag-name {
  font-family: var(--font-alt);
  font-size: 16px;
  font-weight: 600;
  text-transform: capitalize;
}
.widget-tags .tag-count {
  background-color: var(--primary-color);
  border-radius: 50%;
  color: var(--white-color);
  font-size: 12px;
  font-weight: 700;
  height: 24px;
  justify-content: center;
  min-width: 24px;
}
.widget-recent .recent,
.widget-tags .tag-count {
  align-items: center;
  display: flex;
}
.widget-recent .recent + .recent {
  margin-top: 20px;
}
.widget-recent .post-header {
  margin-bottom: 0;
  overflow: hidden;
}
.widget-recent .post-title {
  font-size: 16px;
  font-weight: 600;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.widget-recent .post-date {
  margin-top: 3px;
}
.widget-search form {
  border: 1px solid var(--mid-gray-color);
  border-radius: 5px;
  display: flex;
  flex-direction: row;
  padding: 2px;
  position: relative;
  width: 100%;
}
.widget-search input {
  border: none;
  flex-grow: 2;
}
.widget-search input::-moz-placeholder {
  color: var(--mid-gray-color);
}
.widget-search input:-ms-input-placeholder {
  color: var(--mid-gray-color);
}
.widget-search input::placeholder {
  color: var(--mid-gray-color);
}
.widget-search input:focus {
  outline: none;
}
.widget-search svg {
  color: var(--mid-gray-color);
  padding: 2px;
}
#results {
  border: 1px solid var(--mid-gray-color);
  border-radius: 5px;
  box-shadow: 0 4px 16px 0 var(--mid-gray-color);
  margin-top: 10px;
  max-height: 300px;
  overflow: scroll;
  padding: 10px;
}
#result .post-title {
  border-bottom: 1px solid var(--light-gray-color);
}
.results-hide {
  display: none;
}
@media (max-width: 767px) {
  .widget-title {
    margin-bottom: 0;
    margin-top: 0;
  }
}
#mc_embed_signup_scroll {
  border: 1px solid var(--mid-gray-color);
  border-radius: 5px;
  display: flex;
  flex-direction: row;
  padding: 2px;
}
#mc_embed_signup_scroll input {
  border: none;
  flex-grow: 2;
}
#mc_embed_signup_scroll input::-moz-placeholder {
  color: var(--mid-gray-color);
}
#mc_embed_signup_scroll input:-ms-input-placeholder {
  color: var(--mid-gray-color);
}
#mc_embed_signup_scroll input::placeholder {
  color: var(--mid-gray-color);
}
#mc_embed_signup_scroll input:focus {
  outline: none;
}
#mc_embed_signup_scroll button {
  background: var(--primary-color);
  border: 1px solid var(--primary-color);
  border-radius: 5px;
  color: var(--white-color);
}
.term {
  align-items: center;
  display: flex;
  flex-direction: column;
  margin-bottom: 60px;
  text-align: center;
}
.term-image-container {
  border-radius: 50%;
  flex-shrink: 0;
  height: 70px;
  margin-bottom: 20px;
  overflow: hidden;
  width: 70px;
}
.term-name {
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 0;
}
.term-description {
  line-height: 1.5;
  margin-top: 8px;
  max-width: 550px;
}
@media (max-width: 767px) {
  .term {
    margin-top: -30px;
  }
}
.dimmer {
  background: rgba(0, 0, 0, 0.7);
  bottom: 0;
  display: none;
  right: 0;
}
.dimmer,
.off-canvas {
  left: 0;
  position: fixed;
  top: 0;
  z-index: 90;
}
.off-canvas {
  -webkit-overflow-scrolling: touch;
  background-color: var(--white-color);
  height: 100vh;
  overflow-y: scroll;
  padding: 60px 0 30px;
  transform: translateX(-250px);
  transition: transform 0.4s var(--animation-base);
  width: 250px;
}
.canvas-close {
  color: var(--dark-gray-color);
  cursor: pointer;
  font-size: 16px;
  height: 30px;
  line-height: 30px;
  position: absolute;
  right: 10px;
  text-align: center;
  top: 10px;
  width: 30px;
}
html:not(.canvas-visible) .off-canvas {
  visibility: hidden;
}
.canvas-opened {
  overflow-y: hidden;
}
.canvas-opened .off-canvas {
  transform: translateX(0) !important;
  visibility: visible;
}
.site-footer {
  align-items: center;
  display: flex;
  justify-content: space-between;
  line-height: 1;
  padding-bottom: 45px;
  padding-top: 45px;
}
.copyright,
.footer-social {
  flex: 2;
}
.copyright {
  font-size: 14px;
}
.copyright a {
  position: relative;
}
.footer-social {
  margin-right: -7px;
  text-align: right;
}
.footer-social-item {
  color: var(--secondary-text-color);
  font-size: 18px;
  padding: 0 5px;
}
@media (max-width: 767px) {
  .site-footer {
    flex-direction: column;
  }
  .copyright {
    margin-top: 15px;
    order: 1;
  }
  .footer-social {
    margin-right: 0;
    margin-top: 30px;
  }
}
.error {
  text-align: center;
}
.error-code {
  color: var(--dark-gray-color);
  font-size: 40px;
  font-weight: 700;
  letter-spacing: 2px;
  margin-bottom: -5px;
}
.error-posts {
  margin-top: 60px;
}
.error-link {
  color: var(--primary-color) !important;
  font-weight: 700;
}
.container.medium.post {
  text-align: center;
}
.container.medium.post:hover {
  border-color: #3bc4c4;
}
.post-media {
  margin-bottom: 20px;
}
.thumb {
  margin-bottom: 10px;
}
.post-media .post-image,
.post-media .u-placeholder {
  border-radius: 16px;
}
.post-media.large {
  margin-bottom: 45px;
}
.post-media-tag {
  background: var(--primary-color);
  border-radius: 15px;
  color: var(--white-color);
  font-size: 13px;
  font-weight: 700;
  padding: 2px 10px;
  position: absolute;
  right: 15px;
  top: 15px;
  z-index: 10;
}
.post-header {
  margin-bottom: 20px;
}
.post-title {
  font-size: 16px;
  margin-bottom: 10px;
}
.post-header.big-title .post-title {
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -0.5px;
}
.post-title-link:hover {
  color: var(--primary-color);
}
.post-meta {
  color: var(--secondary-text-color);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.post-meta-item + .post-meta-item:before {
  content: "\02022";
  font-family: serif;
  padding: 0 4px;
}
.post-tag {
  color: var(--primary-color);
}
.post-tag + .post-tag:before {
  content: ", ";
}
.post-footer {
  align-items: center;
  border-top: 1px solid var(--mid-gray-color);
  display: flex;
  justify-content: space-between;
  margin-top: 30px;
  padding-top: 10px;
}
.post-action {
  display: flex;
  line-height: 1;
}
.post-link {
  align-items: center;
  display: flex;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.3px;
  padding-left: 14px;
  position: relative;
  text-transform: uppercase;
}
.post-excerpt .post-link {
  display: inline-block;
}
.post-link:before {
  font-family: Alto, sans-serif;
  left: 0;
  position: absolute;
}
.post-link.primary {
  color: var(--primary-color);
  font-weight: 800;
  line-height: 39px;
  border: 1px solid rgba(48, 146, 85, 0.2);
  border-radius: 15px;
  padding: 0 20px;
}
.post-link.primary:hover {
  border-color: #16b39c;
}

.post-link.secondary {
  margin-left: 15px;
  padding-left: 17px;
}
.post-link.secondary:before {
  content: "\e933";
}
.post-author {
  align-items: center;
  display: flex;
}
.post-author-image-link {
  display: block;
  height: 30px;
  margin: 0 -4px;
  position: relative;
  width: 30px;
}
.post-author-image-link:first-child {
  z-index: 10;
}
.post-author-image-link:nth-child(2) {
  z-index: 9;
}
.post-author-image-link:nth-child(3) {
  z-index: 8;
}
.post-author-image-link:nth-child(4) {
  z-index: 7;
}
.post-author-image-link:nth-child(5) {
  z-index: 6;
}
.post-author-image {
  border: 2px solid var(--white-color);
  border-radius: 50%;
}
.post-author-name {
  color: var(--secondary-text-color);
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
  margin-left: 10px;
}
.post-author-name-link + .post-author-name-link:before {
  color: var(--secondary-text-color);
  content: ", ";
}
@media (max-width: 767px) {
  .post-media.large {
    margin-bottom: 30px;
  }
  .post:not(.single-post) .post-title {
    font-size: 20px !important;
  }
}
.pagination {
  align-items: center;
  display: flex;
  margin-bottom: 45px;
  margin-top: 30px;
}
.pagination-left,
.pagination-right {
  flex: 2;
  font-weight: 700;
}
.pagination-right {
  text-align: right;
}
.page-number {
  border: 1px solid var(--mid-gray-color);
  border-radius: 30px;
  color: var(--secondary-text-color);
  font-size: 13px;
  font-weight: 700;
  line-height: 0;
  padding: 16px;
}
.single-post {
  margin-bottom: 60px;
}
.single-post .post-header {
  text-align: center;
}
.single-post .post-media {
  margin-top: 45px;
}
.single-post .post-image-link {
  pointer-events: none;
}
.single-post .post-content {
  line-height: 1.75;
}
@media (max-width: 767px) {
  .single-post .post-header {
    margin-top: -30px;
  }
}
.kg-gallery-container {
  display: flex;
  flex-direction: column;
}
.kg-gallery-row {
  display: flex;
  flex-direction: row;
  justify-content: center;
}
.kg-gallery-image img {
  height: 100%;
  width: 100%;
}
.kg-gallery-row:not(:first-of-type) {
  margin: 10px 0 0;
}
.kg-gallery-image:not(:first-of-type) {
  margin: 0 0 0 10px;
}
.kg-bookmark-card {
  border: 1px solid var(--mid-gray-color);
  border-radius: 4px;
}
.kg-bookmark-container {
  display: flex;
  overflow: hidden;
  text-decoration: none !important;
}
.kg-bookmark-container:after {
  display: none;
}
.kg-bookmark-content {
  flex-grow: 1;
  overflow: hidden;
  padding: 25px;
}
.kg-bookmark-title {
  color: var(--dark-gray-color);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.3;
}
.kg-bookmark-description {
  color: var(--secondary-text-color);
  margin-top: 5px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.kg-bookmark-metadata {
  align-items: center;
  display: flex;
  font-size: 14px;
  margin-top: 5px;
}
.kg-bookmark-icon {
  height: 20px;
  margin-right: 5px;
  width: 20px;
}
.kg-bookmark-author,
.kg-bookmark-publisher {
  display: inline;
}
.kg-bookmark-metadata > span {
  color: var(--dark-gray-color);
}
.kg-bookmark-metadata > span:nth-of-type(2):before {
  content: "•";
  padding: 0 5px;
}
.kg-bookmark-thumbnail {
  flex-shrink: 0;
  margin-left: 20px;
  position: relative;
  width: 300px;
}
.kg-bookmark-thumbnail img {
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  position: absolute;
  width: 100%;
}
@media (max-width: 767px) {
  .kg-bookmark-container {
    flex-direction: column;
  }
  .kg-bookmark-thumbnail {
    height: 200px;
    margin-left: 0;
    width: 100%;
  }
}
.share {
  align-items: center;
  display: flex;
  line-height: 1;
  margin-top: 30px;
}
.share-item {
  border-radius: 3px;
  color: var(--white-color);
  font-size: 16px;
  height: 28px;
  line-height: 28px;
  text-align: center;
  width: 28px;
}
.share-item + .share-item {
  margin-left: 8px;
}
.share-facebook {
  background-color: #3b5998;
}
.share-twitter {
  background-color: #1da1f2;
}
.share-pinterest {
  background-color: #bd081c;
}
.share-linkedin {
  background-color: #0077b5;
}
.share-reddit {
  background-color: #ff4500;
}
.share-tumblr {
  background-color: #35465c;
}
.share-vk {
  background-color: #45668e;
}
.share-pocket {
  background-color: #ef4056;
}
.share-telegram {
  background-color: #08c;
}
.author {
  display: flex;
}
.author + .author {
  margin-top: 30px;
}
.author-image-placeholder {
  border-radius: 50%;
  flex-shrink: 0;
  height: 70px;
  overflow: hidden;
  width: 70px;
}
.author-wrapper {
  margin-left: 25px;
  max-width: 550px;
}
.author-header {
  align-items: center;
  display: flex;
}
.author-header-wrapper,
.author-name {
  position: relative;
}
.author-name {
  align-items: center;
  cursor: pointer;
  display: flex;
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 0;
}
.author-name:after {
  content: "\e92e";
  font-family: Alto, sans-serif;
  font-size: 19px;
  margin-left: 1px;
}
.author-social {
  background-color: var(--dark-gray-color);
  border-radius: 3px;
  display: flex;
  flex-direction: column;
  font-size: 12px;
  left: 100%;
  line-height: 1;
  margin-left: -26px;
  margin-top: 5px;
  opacity: 0;
  padding: 8px 0;
  pointer-events: none;
  position: absolute;
  top: 100%;
  transform: translateY(5px);
  transition: opacity 0.2s var(--animation-base),
    transform 0.2s var(--animation-base);
}
.author-social:before {
  color: var(--dark-gray-color);
  content: "\e900";
  font-family: Alto, sans-serif;
  font-size: 19px;
  left: 7px;
  position: absolute;
  top: -12px;
}
.author-social.enabled {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.author-social-item {
  color: var(--white-color);
  font-weight: 700;
  padding: 5px 11px;
  white-space: nowrap;
}
.author-location-icon {
  position: relative;
  top: 1px;
}
.author-bio {
  font-size: 15px;
  margin-top: 8px;
}
.author-location {
  color: var(--secondary-text-color);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.5px;
  margin-left: -2px;
  margin-top: 12px;
  text-transform: uppercase;
}
.navigation {
  display: flex;
  margin-top: -15px;
}
.navigation-item {
  flex: 1;
}
.navigation-item-link {
  font-size: 17px;
  font-weight: 700;
}
.navigation-next {
  margin-left: 30px;
  text-align: right;
}
.featured-posts {
  margin: 45px 0;
}
.featured-posts .post,
.featured-posts .post-header,
.featured-posts .post-title {
  margin-bottom: 0;
}
.featured-posts .post-header {
  text-align: center;
}
@media (max-width: 767px) {
  .featured-posts {
    margin: 0;
  }
}
.related-posts {
  margin-top: 60px;
}
.related-posts .post {
  margin-bottom: 0;
}
.related-posts .post-meta-length,
.related-posts .post-meta-tags {
  display: none;
}
.related-title {
  font-size: 13px;
  letter-spacing: 1px;
  margin-bottom: 30px;
  text-transform: uppercase;
}
@media (max-width: 767px) {
  .related-column + .related-column .post {
    margin-top: 30px;
  }
}

.comment-container {
  background-color: var(--light-gray-color);
  margin-top: 45px;
  padding: 30px 0;
}
.comment-container a {
  color: var(--primary-color) !important;
}
@font-face {
  font-family: Alto;
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(../assets/Alto.ttf) format("truetype"),
    url(../assets/Alto.woff) format("woff"),
    url(../fonts/Alto.svg) format("svg");
}
.icon:before {
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  display: inline-block;
  font: normal normal normal 24px/1 Alto;
  font-size: inherit;
  line-height: inherit;
}
.icon-chevron-left:before {
  content: "\e929";
}
.icon-chevron-right:before {
  content: "\e92a";
}
.icon-arrow-left:before {
  content: "\e92b";
}
.icon-arrow-right:before {
  content: "\e92c";
}
.icon-map-marker:before {
  content: "\e92d";
}
.icon-menu-down:before {
  content: "\e92e";
}
.icon-menu-up:before {
  content: "\e900";
}
.icon-window-close:before {
  content: "\e92f";
}
.icon-white-balance-sunny:before {
  content: "\e930";
}
.icon-brightness-2:before {
  content: "\e931";
}
.icon-play:before {
  content: "\e932";
}
.icon-bookmark:before {
  content: "\e933";
}
.icon-behance:before {
  content: "\e934";
}
.icon-dribbble:before {
  content: "\e935";
}
.icon-facebook:before {
  content: "\e936";
}
.icon-github-circle:before {
  content: "\e937";
}
.icon-instagram:before {
  content: "\e938";
}
.icon-linkedin:before {
  content: "\e939";
}
.icon-pinterest:before {
  content: "\e93a";
}
.icon-pocket:before {
  content: "\e93b";
}
.icon-reddit:before {
  content: "\e93c";
}
.icon-rss:before {
  content: "\e93d";
}
.icon-telegram:before {
  content: "\e93e";
}
.icon-tumblr:before {
  content: "\e93f";
}
.icon-twitter:before {
  content: "\e940";
}
.icon-vk:before {
  content: "\e941";
}
.slicknav_menu .slicknav_nav {
  display: block !important;
  list-style-type: none;
  margin: 0 0 30px;
  padding: 0 20px;
  width: 100%;
}
.slicknav_menu .menu-item-link {
  display: block;
  outline: none;
  padding: 12px 0;
}
.owl {
  -webkit-tap-highlight-color: transparent;
  display: none;
  position: relative;
  width: 100%;
  z-index: 1;
}
.owl .owl-stage {
  position: relative;
  touch-action: pan-Y;
}
.owl .owl-stage:after {
  clear: both;
  content: ".";
  display: block;
  height: 0;
  line-height: 0;
  visibility: hidden;
}
.owl .owl-stage-outer {
  overflow: hidden;
}
.owl .owl-item,
.owl .owl-stage-outer {
  position: relative;
  transform: translateZ(0);
}
.owl .owl-item {
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  float: left;
  min-height: 1px;
}
.owl .owl-item > img {
  display: block;
  transform-style: preserve-3d;
  width: 100%;
}
.owl .owl-dots.disabled,
.owl .owl-nav.disabled {
  display: none;
}
.owl .owl-dot,
.owl .owl-next,
.owl .owl-prev {
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.owl .owl-next,
.owl .owl-prev {
  background-color: var(--white-color);
  border: 0;
  border-radius: 50%;
  box-shadow: var(--shadow-base);
  color: var(--dark-gray-color);
  font-size: 21px;
  height: 40px;
  line-height: 40px;
  margin-top: -20px;
  opacity: 0;
  outline: none;
  padding: 0;
  position: absolute;
  text-align: center;
  top: 130px;
  transition: color 0.5s var(--animation-base),
    opacity 0.5s var(--animation-base);
  width: 40px;
}
.owl .owl-next.disabled,
.owl .owl-prev.disabled {
  color: var(--secondary-text-color);
  cursor: default;
}
.owl .owl-prev {
  left: -20px;
}
.owl .owl-next {
  right: -20px;
}
.owl .owl-dots {
  margin-top: 20px;
}
.owl .owl-dot,
.owl .owl-dots {
  display: flex;
  justify-content: center;
}
.owl .owl-dot {
  align-items: center;
  border: 0;
  height: 20px;
  outline: none;
  padding: 0;
  width: 20px;
}
.owl .owl-dot span {
  background-color: var(--mid-gray-color);
  border-radius: 50%;
  height: 8px;
  width: 8px;
}
.owl .owl-dot.active span {
  background-color: var(--black-color);
}
.owl.owl-loaded {
  display: block;
}
.owl.owl-loading {
  display: block;
  opacity: 0;
}
.owl.owl-hidden {
  opacity: 0;
}
.owl.owl-refresh .owl-item {
  visibility: hidden;
}
.owl.owl-drag .owl-item {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.owl.owl-grab {
  cursor: move;
}
.no-js .owl {
  display: block;
}
.owl .animated {
  -webkit-animation-duration: 0.5s;
  animation-duration: 0.5s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
}
.owl .owl-animated-in {
  z-index: 0;
}
.owl .owl-animated-out {
  z-index: 1;
}
.owl .fadeOut {
  -webkit-animation-name: fadeOut;
  animation-name: fadeOut;
}
.owl-height {
  transition: height 0.5s ease-in-out;
}
@media (max-width: 767px) {
  .owl .owl-prev {
    left: 10px;
  }
  .owl .owl-next {
    right: 10px;
  }
}
.lazyload,
.lazyloading {
  opacity: 0;
}
.lazyloaded {
  opacity: 1;
  transition: opacity 0.5s var(--animation-base);
}
.kg-image {
  margin-left: auto;
  margin-right: auto;
}
.kg-canvas {
  display: grid;
  grid-template-columns:
    [full-start] minmax(4vw, auto) [wide-start] minmax(auto, 105px)
    [main-start] min(750px, calc(100% - 8vw)) [main-end] minmax(auto, 105px) [wide-end] minmax(
      4vw,
      auto
    )
    [full-end];
}
.kg-canvas > * {
  grid-column: main-start/main-end;
}
.kg-width-wide {
  grid-column: wide-start/wide-end;
}
.kg-width-full {
  grid-column: full-start/full-end;
}
.u-clearfix:after,
.u-clearfix:before {
  content: " ";
  display: table;
}
.u-clearfix:after {
  clear: both;
}
.u-plain-list {
  list-style-type: none;
  margin: 0;
  padding: 0;
}
.u-permalink {
  bottom: 0;
  outline: none;
  right: 0;
  z-index: 50;
}
.u-object-fit,
.u-permalink {
  left: 0;
  position: absolute;
  top: 0;
}
.u-object-fit {
  -o-object-fit: cover;
  object-fit: cover;
}
.u-placeholder {
  background-color: var(--light-gray-color);
  position: relative;
  z-index: 10;
}
.u-placeholder:before {
  content: "";
  display: block;
}
.u-placeholder.horizontal:before {
  padding-bottom: 50%;
}
.u-placeholder.rectangle:before {
  padding-bottom: 62.5%;
}
.u-placeholder.square:before {
  padding-bottom: 100%;
}
.u-hover-item {
  transition: opacity 0.3s var(--animation-base);
}
.u-hover-wrapper:hover .u-hover-item {
  opacity: 0.7;
}
.u-hover-wrapper:hover .u-hover-item:hover {
  opacity: 1;
}
.u-text-format > * {
  margin-bottom: 0;
}
.u-text-format > * + * {
  margin-top: 30px;
}
.u-text-format > :first-child {
  margin-top: 0 !important;
}
.u-text-format > * + ol,
.u-text-format > * + p,
.u-text-format > * + ul {
  margin-top: 20px;
}
.u-text-format h1,
.u-text-format h2,
.u-text-format h3,
.u-text-format h4,
.u-text-format h5,
.u-text-format h6 {
  font-weight: 800;
  margin-top: 40px;
}
.u-text-format h1 + p,
.u-text-format h2 + p,
.u-text-format h3 + p,
.u-text-format h4 + p,
.u-text-format h5 + p,
.u-text-format h6 + p {
  margin-top: 15px;
}
.u-text-format h1 {
  font-size: 26px;
}
.u-text-format h2 {
  font-size: 23px;
}
.u-text-format h3 {
  font-size: 20px;
}
.u-text-format h4 {
  font-size: 17px;
  font-weight: 700;
}
.u-text-format h5 {
  font-size: 15px;
  font-weight: 700;
}
.u-text-format h6 {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}
.u-text-format strong {
  color: var(--dark-gray-color);
}
.u-text-format a {
  color: var(--primary-color);
  position: relative;
  text-decoration: underline;
}
.u-text-format ol,
.u-text-format ul {
  list-style-type: none;
}
.u-text-format ol li,
.u-text-format ul li {
  line-height: 1.65;
  margin: 15px 0;
  position: relative;
}
.u-text-format ol li:before,
.u-text-format ul li:before {
  background-color: var(--primary-color);
  position: absolute;
}
.u-text-format ul li:before {
  border-radius: 50%;
  content: "";
  height: 6px;
  left: -18px;
  top: 11px;
  width: 6px;
}
.u-text-format ol {
  counter-reset: numbered-list;
}
.u-text-format ol > li:before {
  border-radius: 50%;
  color: var(--white-color);
  content: counter(numbered-list);
  counter-increment: numbered-list;
  font-size: 13px;
  font-weight: 800;
  height: 24px;
  left: -34px;
  line-height: 24px;
  text-align: center;
  top: 2px;
  width: 24px;
}
.u-text-format > .kg-card,
.u-text-format > .kg-card + * {
  margin-top: 45px;
}
.u-text-format hr,
.u-text-format hr + * {
  margin-top: 40px;
}
.u-text-format blockquote,
.u-text-format blockquote + * {
  margin-top: 30px;
}
@media (max-width: 767px) {
  .u-placeholder.horizontal:before {
    padding-bottom: 62.5%;
  }
}
.dark-mode body {
  background-color: var(--dark-mode-bg-color);
  color: var(--dark-mode-primary-text-color);
}
.dark-mode .author-social-item:hover,
.dark-mode .canvas-close,
.dark-mode .error-code,
.dark-mode .kg-bookmark-author,
.dark-mode .kg-bookmark-publisher,
.dark-mode .kg-bookmark-title,
.dark-mode .logo-text,
.dark-mode .menu-item-link:hover,
.dark-mode .u-text-format strong,
.dark-mode a:not(.menu-item-link):not(.post-tag):not(.post-link),
.dark-mode blockquote,
.dark-mode figcaption,
.dark-mode h1,
.dark-mode h2,
.dark-mode h3,
.dark-mode h4,
.dark-mode h5,
.dark-mode h6 {
  color: var(--white-color);
}
.dark-mode .logo-image:not(.white) {
  opacity: 0;
}
.dark-mode .burger:after,
.dark-mode .burger:before,
.dark-mode hr,
.dark-mode hr:after,
.dark-mode hr:before {
  background-color: var(--white-color);
}
.dark-mode .logo-image.white {
  opacity: 1;
}
.dark-mode .author-location,
.dark-mode .author-social-item,
.dark-mode .button-arrow-icon,
.dark-mode .kg-bookmark-description,
.dark-mode .menu-item-link,
.dark-mode .page-number,
.dark-mode .post-link.secondary,
.dark-mode .post-meta {
  color: var(--dark-mode-secondary-text-color);
}
.dark-mode .kg-bookmark-card,
.dark-mode .page-number,
.dark-mode .post-footer {
  border-color: var(--dark-mode-border-color);
}
.dark-mode .comment-container,
.dark-mode .u-placeholder,
.dark-mode :not(pre) > code,
.dark-mode pre {
  background-color: var(--dark-mode-darker-bg-color);
}
.dark-mode .off-canvas {
  background-color: var(--dark-mode-bg-color);
}
.dark-mode .sep:after {
  background-color: var(--dark-mode-border-color);
}
.dark-mode .u-text-format ol li:before {
  font-weight: 700;
}
.dark-mode blockquote {
  border-color: var(--white-color);
}
.dark-mode .widget,
.dark-mode .widget input {
  background-color: var(--dark-mode-bg-color);
  color: var(--dark-mode-primary-text-color);
}
