@charset "UTF-8";
/**
 *
 * import sass npm modules
 *
 */
body {
  font-family: "proxima-nova", -apple-system, sans-serif;
  font-size: 16px;
  line-height: 1.4;
  -webkit-font-smoothing: antialiased !important;
  -moz-osx-font-smoothing: grayscale !important;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "abril-display", serif;
  font-weight: 400;
}

.bold-underlined-link {
  color: #D1004D;
  font-family: "proxima-nova", -apple-system, sans-serif;
  font-weight: bold;
  position: relative;
}

.bold-underlined-link:after {
  content: '';
  display: block;
  width: 100%;
  height: 0.05em;
  position: absolute;
  bottom: -0.2em;
  left: 0;
  background-color: currentcolor;
  opacity: 0;
  -webkit-transform: translateY(-3px);
      -ms-transform: translateY(-3px);
          transform: translateY(-3px);
  -webkit-transition: opacity 0.2s;
  -o-transition: opacity 0.2s;
  transition: opacity 0.2s;
}

.bold-underlined-link:hover:after, .bold-underlined-link:focus:after {
  opacity: 0.75;
}

.bold-underlined-link:after {
  height: 0.175em;
  bottom: -0.25em;
  opacity: 0.3;
}

::-webkit-input-placeholder {
  /* Chrome, Firefox, Opera, Safari 10.1+ */
  color: #A2A2A2;
  opacity: 1;
  /* Firefox */
}

::-moz-placeholder {
  /* Chrome, Firefox, Opera, Safari 10.1+ */
  color: #A2A2A2;
  opacity: 1;
  /* Firefox */
}

:-ms-input-placeholder {
  /* Chrome, Firefox, Opera, Safari 10.1+ */
  color: #A2A2A2;
  opacity: 1;
  /* Firefox */
}

::-ms-input-placeholder {
  /* Chrome, Firefox, Opera, Safari 10.1+ */
  color: #A2A2A2;
  opacity: 1;
  /* Firefox */
}

::placeholder {
  /* Chrome, Firefox, Opera, Safari 10.1+ */
  color: #A2A2A2;
  opacity: 1;
  /* Firefox */
}

:-ms-input-placeholder {
  /* Internet Explorer 10-11 */
  color: #A2A2A2;
}

::-ms-input-placeholder {
  /* Microsoft Edge */
  color: #A2A2A2;
}

html {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

*, *:before, *:after {
  -webkit-box-sizing: inherit;
          box-sizing: inherit;
}

body {
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
  outline: none !important;
}

.wrapper {
  width: 100%;
  max-width: 1110px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  padding-left: 15px;
  padding-right: 15px;
}

@media (min-width: 71.25em) {
  .wrapper {
    padding-left: 0;
    padding-right: 0;
  }
}

.archive__title {
  margin-top: 36px;
  font-size: 30px;
  line-height: 1.5625;
  margin-bottom: 16px;
}

.comments-container {
  margin-top: 64px;
  background-color: #F4F4F4;
  padding-top: 64px;
  padding-bottom: 64px;
}

.comments-container .comment-respond .comment-reply-title {
  margin-top: 0;
  font-family: "proxima-nova-condensed", sans-serif;
  font-size: 30px;
  margin-bottom: 0;
}

.comments-container .comment-respond:not(:first-child) .comment-reply-title {
  margin-top: 64px;
  border-top: 2px solid rgba(162, 162, 162, 0.3);
  padding-top: 64px;
}

.comments-container .comment .comment-respond .comment-reply-title {
  margin-top: 24px;
  border-top-width: 3px;
  padding-top: 24px;
  font-size: 24px;
  position: relative;
}

.comments-container .comment .comment-respond .comment-reply-title small {
  display: block;
  font-size: 16px;
  color: #A2A2A2;
  margin-bottom: 1em;
}

.comments-container .comment .comment-respond .comment-reply-title small:before {
  content: '×';
  margin-right: 0.2em;
  font-size: 150%;
  position: relative;
  top: 0.1em;
}

@media (min-width: 28.75em) {
  .comments-container .comment .comment-respond .comment-reply-title small {
    position: absolute;
    top: 24px;
    right: 0;
    margin-left: 0.75em;
  }
}

.comments-container .children .comment:not(:last-child) .comment-respond {
  padding-bottom: 14px;
  border-bottom: 3px solid rgba(162, 162, 162, 0.3);
}

.comments-heading {
  margin-top: 0;
  font-family: "proxima-nova-condensed", sans-serif;
  font-size: 30px;
}

.comments {
  list-style: none;
  margin: 0;
  padding: 0;
}

.comments > .comment {
  background-color: #FFFFFF;
  padding: 32px;
  padding-bottom: 16px;
  margin-bottom: 32px;
}

.comments .comment__author {
  font-family: "abril-display", serif;
  font-size: 18px;
}

.comments .comment__meta {
  color: #A2A2A2;
  font-size: 14px;
}

.comments .comment__body {
  position: relative;
  word-wrap: break-word;
}

.comments .comment__body .comment-reply-link-wrapper {
  position: absolute;
  top: 0;
  right: 0;
}

.comments .comment__body .comment-reply-link-wrapper .comment-reply-link {
  color: #D1004D;
  font-weight: bold;
}

.comments .comment__body .comment-reply-link-wrapper .comment-reply-link:after {
  content: '';
  display: block;
  width: calc(100% - 1.525em);
  height: 3px;
  position: absolute;
  bottom: -5px;
  left: 1.525em;
  background-color: #D1004D;
  opacity: 0;
  -webkit-transform: translateY(-3px);
      -ms-transform: translateY(-3px);
          transform: translateY(-3px);
  -webkit-transition: opacity 0.2s;
  -o-transition: opacity 0.2s;
  transition: opacity 0.2s;
}

.comments .comment__body .comment-reply-link-wrapper .comment-reply-link:hover:after {
  opacity: 0.75;
}

.comments .comment__body .comment-reply-link-wrapper .comment-reply-link:before {
  content: '';
  display: inline-block;
  height: 1em;
  width: 1.125em;
  vertical-align: middle;
  margin-right: 0.4em;
  margin-top: -0.1em;
  background-image: url("../img/icons/reply_arrow@3x.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

html.svg .comments .comment__body .comment-reply-link-wrapper .comment-reply-link:before {
  background-image: url("../img/icons/reply_arrow.svg");
}

.comments .children {
  margin-top: 24px;
  border-top: 3px solid rgba(162, 162, 162, 0.3);
  list-style: none;
  padding-left: 24px;
}

.comments .children .comment {
  padding-top: 24px;
}

.footer {
  background-color: #303030;
  color: #A2A2A2;
  font-size: 14px;
  margin: 0;
  margin-top: 48px;
  padding-top: 15px;
  padding-bottom: 15px;
}

.footer__section {
  text-align: center;
  margin-top: 15px;
  margin-bottom: 15px;
}

.footer__section ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer__section ul li {
  display: inline-block;
  margin-left: 15px;
  margin-right: 15px;
}

.footer__section ul li a {
  -webkit-transition: color 0.2s;
  -o-transition: color 0.2s;
  transition: color 0.2s;
}

.footer__section ul li a:hover, .footer__section ul li a:focus {
  color: #FFFFFF;
}

.footer .social-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.footer .social-links__item {
  display: block;
  width: 21px;
  height: 21px;
  margin-left: 12px;
  margin-right: 12px;
}

.footer .social-links svg path {
  fill: #FFFFFF;
}

@media (min-width: 37.5em) {
  .footer .wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .footer .wrapper .footer__section {
    margin-top: 7.5px;
    margin-bottom: 7.5px;
  }
}

.pre-header {
  display: none;
  background-color: #F4F4F4;
}

@media (max-width: 47.99em) {
  .pre-header {
    position: absolute;
    top: 75px;
    left: 0;
    height: 48px;
    width: 100%;
  }
}

@media (min-width: 48em) {
  .pre-header {
    display: block !important;
    height: 32px;
  }
}

.pre-header .wrapper {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.pre-header .search {
  width: 100%;
}

@media (min-width: 48em) {
  .pre-header .search {
    width: 204px;
  }
}

@media (max-width: 47.99em) {
  .pre-header .meta-menu {
    display: none;
  }
}

.pre-header .meta-menu ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.pre-header .meta-menu li {
  display: inline-block;
}

.pre-header .meta-menu li a {
  font-size: 14px;
  color: #A2A2A2;
  margin-left: 2.5em;
}

header {
  position: fixed;
  z-index: 1000;
  width: 100%;
  height: 75px;
  top: 0;
  left: 0;
  right: 0;
  background-color: #FFFFFF;
  border-bottom: 3px solid #F4F4F4;
}

@media (min-width: 48em) {
  header {
    height: 139px;
  }
}

header .social-links {
  display: none;
}

header > .wrapper {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

@media (min-width: 48em) {
  header > .wrapper {
    height: calc(100% - 32px);
  }
}

header .logo {
  min-width: 75%;
  height: 32px;
}

header .logo .logo-img {
  max-height: 100%;
}

header .nav-toggle {
  display: block;
}

header nav {
  display: none;
}

@media (max-width: 47.99em) {
  header nav {
    position: absolute;
    top: 123px;
    left: 0;
    height: calc(100vh - 123px);
    overflow: auto;
    -webkit-overflow-scrolling: touch;
  }
}

@media (min-width: 48em) {
  header .logo {
    min-width: 27.5%;
    height: 36px;
  }
  header .nav-toggle {
    display: none;
  }
  header nav {
    display: block !important;
  }
}

@media (min-width: 61.25em) {
  header .logo {
    min-width: 25%;
    height: 40px;
  }
  header nav {
    max-width: 60%;
  }
  header .social-links {
    width: 20%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
  header .social-links__item {
    display: block;
    width: 21px;
    height: 21px;
    margin-left: 18px;
  }
  header .social-links__item svg path {
    fill: #303030;
    -webkit-transition: fill 0.2s;
    -o-transition: fill 0.2s;
    transition: fill 0.2s;
  }
  header .social-links__item:hover svg path, header .social-links__item:focus svg path {
    fill: #D1004D;
  }
}

@media (min-width: 71.25em) {
  header .logo {
    width: 25%;
    height: 42px;
  }
  header nav {
    max-width: 50%;
  }
  header .social-links {
    width: 25%;
  }
}

a[name]:not([href]):empty {
  display: block;
  height: calc(10px + 75px);
  /* same height as fixed header */
  margin-top: calc(-10px - 75px);
  /* same height as fixed header */
  visibility: hidden;
}

@media (min-width: 48em) {
  a[name]:not([href]):empty {
    height: calc(10px + 139px);
    margin-top: calc(-10px - 139px);
  }
}

body.admin-bar {
  padding-top: 32px;
}

body.admin-bar header {
  top: 32px;
}

@media screen and (max-width: 782px) {
  body.admin-bar {
    padding-top: 46px;
  }
  body.admin-bar header {
    top: 46px;
  }
}

@media screen and (max-width: 600px) {
  body.admin-bar #wpadminbar {
    position: fixed;
  }
}

main {
  margin-top: 75px;
  padding-top: 21px;
  min-height: calc(100vh - 75px - 149px - 48px);
}

@media (min-width: 37.5em) {
  main {
    min-height: calc(100vh - 75px - 66px - 48px);
  }
}

@media (min-width: 48em) {
  main {
    margin-top: 139px;
    padding-top: 29px;
    min-height: calc(100vh - 139px - 66px - 48px);
  }
  .single-post main {
    margin-top: 170px;
  }
}

.post__details,
.page__details {
  color: #A2A2A2;
  font-size: 14px;
}

.post__details__author,
.post__details__date {
  font-weight: bold;
}

.post-categories,
.page-categories {
  list-style: none;
  margin: 0;
  padding: 0;
  display: inline;
  color: #00CC9E;
  font-size: 0;
}

.post-categories li,
.page-categories li {
  display: inline;
  font-size: 14px;
}

.post-categories li:not(:last-child) a:before,
.page-categories li:not(:last-child) a:before {
  width: calc(100% - 0.475em);
}

.post-categories li:not(:last-child) a:after,
.page-categories li:not(:last-child) a:after {
  content: ', ';
}

.post-categories li a,
.page-categories li a {
  position: relative;
}

.post-categories li a:before,
.page-categories li a:before {
  content: '';
  display: block;
  width: 100%;
  height: 0.05em;
  position: absolute;
  bottom: -0.2em;
  left: 0;
  background-color: currentcolor;
  opacity: 0;
  -webkit-transform: translateY(-3px);
      -ms-transform: translateY(-3px);
          transform: translateY(-3px);
  -webkit-transition: opacity 0.2s;
  -o-transition: opacity 0.2s;
  transition: opacity 0.2s;
}

.post-categories li a:hover:before, .post-categories li a:focus:before,
.page-categories li a:hover:before,
.page-categories li a:focus:before {
  opacity: 0.75;
}

.post__content-container,
.page__content-container {
  padding-bottom: 48px;
  border-bottom: 3px solid rgba(162, 162, 162, 0.3);
}

.post__content-container .pni-content > *:first-child:empty,
.page__content-container .pni-content > *:first-child:empty {
  display: none;
}

.post__content-container .pni-content > *:last-child:empty,
.page__content-container .pni-content > *:last-child:empty {
  display: none;
}

.post__details, .post__title, .post__content,
.page__details,
.page__title,
.page__content {
  max-width: 825px;
}

.post__title,
.page__title {
  color: #303030;
  font-size: 40px;
  line-height: 1.25;
  margin-top: 0.75em;
  margin-bottom: 0.3em;
}

.post__content,
.page__content {
  line-height: 1.4375;
  -webkit-hyphens: auto;
      -ms-hyphens: auto;
          hyphens: auto;
}

.post__content::after,
.page__content::after {
  display: block;
  content: "";
  clear: both;
}

.post__content > *:first-child,
.page__content > *:first-child {
  margin-top: 0;
}

.post__content-container + .post__meta,
.post__content-container + .page__meta,
.page__content-container + .post__meta,
.page__content-container + .page__meta {
  margin-top: 12px;
}

.post__meta,
.page__meta {
  margin-top: 32px;
}

.post__meta--tags,
.page__meta--tags {
  list-style: none;
  margin: 0;
  padding: 0;
  margin-top: 12px;
}

.post__meta--tags__item,
.page__meta--tags__item {
  display: inline-block;
  font-size: 14px;
  color: #00CC9E;
  margin-right: 36px;
  position: relative;
}

.post__meta--tags__item:before,
.page__meta--tags__item:before {
  content: '';
  display: block;
  width: 100%;
  height: 0.05em;
  position: absolute;
  bottom: -0.2em;
  left: 0;
  background-color: currentcolor;
  opacity: 0;
  -webkit-transform: translateY(-3px);
      -ms-transform: translateY(-3px);
          transform: translateY(-3px);
  -webkit-transition: opacity 0.2s;
  -o-transition: opacity 0.2s;
  transition: opacity 0.2s;
}

.post__meta--tags__item:hover:before, .post__meta--tags__item:focus:before,
.page__meta--tags__item:hover:before,
.page__meta--tags__item:focus:before {
  opacity: 0.75;
}

.post__meta--author h2,
.page__meta--author h2 {
  font-size: 24px;
  line-height: 1.25;
}

.post__navigation,
.page__navigation {
  margin-top: 32px;
  border-top: 3px solid rgba(162, 162, 162, 0.3);
  padding-top: 18px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.post__navigation__link,
.page__navigation__link {
  width: 50%;
  max-width: 255px;
}

.post__navigation__link__label,
.page__navigation__link__label {
  color: #D1004D;
  font-family: "proxima-nova", -apple-system, sans-serif;
  font-weight: bold;
  position: relative;
  display: inline-block;
  margin-left: 1em;
}

.post__navigation__link__label:after,
.page__navigation__link__label:after {
  content: '';
  display: block;
  width: 100%;
  height: 0.05em;
  position: absolute;
  bottom: -0.2em;
  left: 0;
  background-color: currentcolor;
  opacity: 0;
  -webkit-transform: translateY(-3px);
      -ms-transform: translateY(-3px);
          transform: translateY(-3px);
  -webkit-transition: opacity 0.2s;
  -o-transition: opacity 0.2s;
  transition: opacity 0.2s;
}

.post__navigation__link__label:hover:after, .post__navigation__link__label:focus:after,
.page__navigation__link__label:hover:after,
.page__navigation__link__label:focus:after {
  opacity: 0.75;
}

.post__navigation__link__label:after,
.page__navigation__link__label:after {
  height: 0.175em;
  bottom: -0.25em;
  opacity: 0.3;
}

.post__navigation__link__label:before,
.page__navigation__link__label:before {
  content: '';
  display: block;
  height: 0.5em;
  width: 0.5em;
  position: absolute;
  right: calc(100% + 0.5em);
  top: 0.5em;
  background-image: url("../img/icons/arrow-red.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  -webkit-transform: rotate(90deg);
      -ms-transform: rotate(90deg);
          transform: rotate(90deg);
}

.post__navigation__link:hover .post__navigation__link__label:after,
.page__navigation__link:hover .post__navigation__link__label:after, .post__navigation__link:hover
.page__navigation__link__label:after,
.page__navigation__link:hover
.page__navigation__link__label:after {
  opacity: 0.75;
}

.post__navigation__link__title,
.page__navigation__link__title {
  display: block;
  padding-left: calc(1em * 1.14286);
  padding-top: 12px;
  font-size: 14px;
  color: #A2A2A2;
}

.post__navigation__link--next,
.page__navigation__link--next {
  text-align: right;
}

.post__navigation__link--next .post__navigation__link__label,
.page__navigation__link--next .post__navigation__link__label {
  margin-left: auto;
  margin-right: 1em;
}

.post__navigation__link--next .post__navigation__link__label:before,
.page__navigation__link--next .post__navigation__link__label:before {
  right: auto;
  left: calc(100% + 0.5em);
  -webkit-transform: rotate(-90deg);
      -ms-transform: rotate(-90deg);
          transform: rotate(-90deg);
}

.post__navigation__link--next .post__navigation__link__title,
.page__navigation__link--next .post__navigation__link__title {
  padding-left: auto;
  padding-right: calc(1em * 1.14286);
}

.page__content > h1:first-child,
.page__content > h2:first-child,
.page__content > h3:first-child {
  font-family: "abril-display", serif;
  font-size: 40px;
  color: #303030;
  line-height: 1.25;
  margin-top: 0.75em;
  margin-bottom: 0.3em;
  max-width: 825px;
}

.pni-container .post__content .pni-navigation,
.pni-container .page__content .pni-navigation {
  width: 100%;
}

.pni-container .post__content .pni-title,
.pni-container .page__content .pni-title {
  position: relative;
}

.pni-container .post__content .pni-title ~ ul,
.pni-container .post__content .pni-title ~ ol,
.pni-container .page__content .pni-title ~ ul,
.pni-container .page__content .pni-title ~ ol {
  display: none;
}

.pni-container .post__content .pni-title:after,
.pni-container .page__content .pni-title:after {
  content: '';
  position: absolute;
  top: 0.25em;
  right: 0;
  height: 14px;
  width: 14px;
  background-image: url("../img/icons/arrow-green.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.pni-container .post__content .pni-title.expanded:after,
.pni-container .page__content .pni-title.expanded:after {
  -webkit-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
          transform: rotate(180deg);
}

@media (min-width: 71.25em) {
  .pni-container .post__content,
  .pni-container .page__content {
    position: relative;
  }
  .pni-container .post__content > .pni-content > *:first-child,
  .pni-container .post__content > .pni-content > *:first-child:empty + *,
  .pni-container .page__content > .pni-content > *:first-child,
  .pni-container .page__content > .pni-content > *:first-child:empty + * {
    margin-top: 0;
  }
  .pni-container .post__content .pni-navigation,
  .pni-container .page__content .pni-navigation {
    max-width: 255px;
    position: absolute;
    top: 0;
    left: calc(100% + 30px);
    max-height: 100%;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
  }
  .pni-container .post__content .pni-content > *:first-child,
  .pni-container .post__content .pni-content > *:first-child:empty + *,
  .pni-container .page__content .pni-content > *:first-child,
  .pni-container .page__content .pni-content > *:first-child:empty + * {
    margin-top: 0;
  }
  .pni-container .post__content .pni-content > *:last-child,
  .pni-container .post__content .pni-content > *:nth-last-child(2),
  .pni-container .page__content .pni-content > *:last-child,
  .pni-container .page__content .pni-content > *:nth-last-child(2) {
    margin-bottom: 0;
  }
  .pni-container .post__content .pni-title,
  .pni-container .page__content .pni-title {
    position: static;
  }
  .pni-container .post__content .pni-title ~ ul,
  .pni-container .post__content .pni-title ~ ol,
  .pni-container .page__content .pni-title ~ ul,
  .pni-container .page__content .pni-title ~ ol {
    display: block !important;
  }
  .pni-container .post__content .pni-title:after,
  .pni-container .page__content .pni-title:after {
    display: none;
  }
  @supports (position: sticky) {
    .pni-container .post__content,
    .pni-container .page__content {
      max-width: 1110px;
    }
    .pni-container .post__content .pni-content,
    .pni-container .page__content .pni-content {
      max-width: 825px;
    }
    .pni-container .post__content .pni-navigation,
    .pni-container .page__content .pni-navigation {
      float: right;
      position: sticky;
      top: 171px;
      left: 100%;
      z-index: 10;
      max-height: calc(100vh - 171px);
    }
  }
}

.wysiwyg h1, .wysiwyg h2, .wysiwyg h3, .wysiwyg h4, .wysiwyg h5, .wysiwyg h6 {
  margin-bottom: 0;
}

.wysiwyg h1 {
  margin-top: 1.5em;
}

.wysiwyg h2,
.wysiwyg h3 {
  margin-top: 1.45em;
}

.wysiwyg h4 {
  margin-top: 1.15em;
}

.wysiwyg h5,
.wysiwyg h6 {
  margin-top: 1.35em;
}

.wysiwyg p {
  margin-top: 1.4em;
  margin-bottom: 1.4em;
}

.wysiwyg ul, .wysiwyg ol {
  margin-top: 1.4em;
  margin-bottom: 1.4em;
}

.wysiwyg ul ul, .wysiwyg ul ol, .wysiwyg ol ul, .wysiwyg ol ol {
  margin-top: 0.7em;
  margin-bottom: 0.7em;
}

.wysiwyg dl dt {
  margin-top: 0.7em;
}

.wysiwyg img,
.wysiwyg figure {
  margin-top: 0.35em;
  margin-bottom: 0.35em;
}

.wysiwyg figcaption {
  margin-top: 0.35em;
}

.wysiwyg .wp-caption {
  margin-bottom: 1.5em;
}

.wysiwyg blockquote {
  margin-top: 3.5em;
  margin-bottom: 3.5em;
}

.wysiwyg table {
  margin-top: 1.5em;
  margin-bottom: 1.5em;
}

.wysiwyg pre {
  margin-top: 2.25em;
  margin-bottom: 2.25em;
}

.wysiwyg hr {
  margin-top: 3.5em;
  margin-bottom: 3.5em;
}

.wysiwyg h1 + *, .wysiwyg h2 + *, .wysiwyg h3 + *, .wysiwyg h4 + *, .wysiwyg h5 + *, .wysiwyg h6 + * {
  margin-top: 0.85em;
}

.wysiwyg {
  overflow-wrap: break-word;
  word-wrap: break-word;
}

.wysiwyg h1 {
  font-size: 40px;
  line-height: 1.25;
}

.wysiwyg h2, .wysiwyg h3, .wysiwyg h4, .wysiwyg h5, .wysiwyg h6 {
  font-family: "proxima-nova-condensed", sans-serif;
  line-height: 1.25;
}

.wysiwyg h2 {
  font-size: 30px;
}

.wysiwyg h3 {
  font-size: 24px;
  color: #00CC9E;
}

.wysiwyg h4 {
  font-size: 20px;
}

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

.wysiwyg a[href] {
  color: #D1004D;
}

.wysiwyg ul, .wysiwyg ol {
  padding-left: 1.75em;
}

.wysiwyg ul ul, .wysiwyg ul ol, .wysiwyg ol ul, .wysiwyg ol ol {
  padding-left: 1em;
}

.wysiwyg ul > li {
  list-style: none;
  margin: 0;
  padding: 0;
  padding-left: 1.35em;
  position: relative;
}

.wysiwyg ul > li:before {
  content: '';
  background-color: #303030;
  border-radius: 50%;
  display: block;
  width: 5px;
  height: 5px;
  position: absolute;
  left: 2px;
  top: 0.6em;
}

.wysiwyg ol > li {
  margin-left: 0.75em;
  padding-left: 0.65em;
}

.wysiwyg dl dt {
  font-style: italic;
}

.wysiwyg img,
.wysiwyg figure {
  margin-left: 0;
  margin-right: 0;
  max-width: 100%;
  height: auto;
}

.wysiwyg img figcaption,
.wysiwyg figure figcaption {
  margin: 0;
  font-size: 14px;
  color: #A2A2A2;
  text-align: left;
}

.wysiwyg img {
  -webkit-box-shadow: 2px 2px 8px #BBBBBB;
          box-shadow: 2px 2px 8px #BBBBBB;
}

.wysiwyg img.noshadow {
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
}

@media (min-width: 855px) {
  .wysiwyg img {
    position: relative;
    -webkit-transition: max-width 0.5s ease-out;
    -o-transition: max-width 0.5s ease-out;
    transition: max-width 0.5s ease-out;
    z-index: 10;
  }
  .wysiwyg img:hover, .wysiwyg img:focus {
    max-width: calc(100vw - 30px);
    -webkit-transition: max-width 1s ease;
    -o-transition: max-width 1s ease;
    transition: max-width 1s ease;
  }
}

@media (min-width: 1110px) {
  .wysiwyg img:hover, .wysiwyg img:focus {
    max-width: 1080px;
  }
}

@media (min-width: 1140px) {
  .wysiwyg img:hover, .wysiwyg img:focus {
    max-width: 1110px;
  }
}

@media (hover: none) {
  .wysiwyg img:hover, .wysiwyg img:focus {
    max-width: 100% !important;
  }
}

.wysiwyg .alignleft {
  float: left;
  display: inline;
  margin-right: 1.5em;
}

.wysiwyg .alignright {
  float: right;
  display: inline;
  margin-left: 1.5em;
}

.wysiwyg .aligncenter {
  clear: both;
  display: block;
  margin-right: auto;
  margin-left: auto;
}

.wysiwyg .wp-caption {
  max-width: 100%;
  padding-top: 5px;
  text-align: left;
}

.wysiwyg .wp-caption img {
  margin: 0;
  padding: 0;
  border: 0 none;
}

.wysiwyg .wp-caption .wp-caption-text {
  margin: 0;
  font-size: 14px;
  color: #A2A2A2;
}

.wysiwyg .wp-block-embed__wrapper,
.wysiwyg .embed-container {
  position: relative;
  padding-bottom: 56.25%;
  /* 16:9 */
  height: 0;
}

.wysiwyg .wp-block-embed__wrapper iframe,
.wysiwyg .embed-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.wysiwyg blockquote {
  margin-left: 0;
  background-color: #F4F4F4;
  color: #909090;
  padding-top: 1px;
  padding-right: 2.5em;
  padding-left: 1.5em;
  padding-bottom: 1px;
  width: calc(100% - 16px);
  position: relative;
}

.wysiwyg blockquote:after {
  content: '';
  display: block;
  position: absolute;
  top: -1em;
  right: -1em;
  width: 3.75em;
  height: 3.75em;
  background-image: url("../img/icons/quote.svg");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}

.wysiwyg blockquote cite {
  display: block;
  margin-top: 1em;
  margin-bottom: 1.5em;
  font-size: 14px;
}

.wysiwyg blockquote cite:before {
  content: '– ';
}

.wysiwyg table {
  border-collapse: collapse;
  display: block;
  max-width: 100%;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}

.wysiwyg table thead {
  background-color: #909090;
}

.wysiwyg table thead th,
.wysiwyg table thead td {
  color: #FFFFFF;
  text-align: left;
  vertical-align: top;
  padding: 9px 26px;
}

.wysiwyg table tbody tr:nth-child(odd) {
  background-color: #FBFBFB;
}

.wysiwyg table tbody tr:nth-child(even) {
  background-color: #EEEEEE;
}

.wysiwyg table tbody td {
  font-size: 14px;
  color: #363636;
  padding: 6px 26px;
  vertical-align: top;
}

.wysiwyg table.maximize-contentarea thead th,
.wysiwyg table.maximize-contentarea thead td,
.wysiwyg table.maximize-contentarea tbody td {
  font-size: 12px;
  padding: 6px 6px;
  word-break: break-all;
}

.wysiwyg pre,
.wysiwyg code {
  font-family: Consolas, Monaco, "Andale Mono", "Ubuntu Mono", monospace;
  font-size: 14px;
  color: #343434;
  background-color: #F4F4F4;
}

.wysiwyg pre {
  padding: 15px;
  width: 100%;
}

.wysiwyg pre:not([class]), .wysiwyg pre.wp-block-code {
  white-space: pre;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}

.wysiwyg code {
  padding: 0.25em 0.5em;
}

.wysiwyg pre code {
  padding: 0;
}

.wysiwyg hr {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: 0;
  border-top: 2px solid rgba(162, 162, 162, 0.3);
}

.wysiwyg .hk-quote-subscript {
  text-align: right;
  color: #A2A2A2;
  font-size: 80%;
}

.wysiwyg .hk-div-align-right {
  float: right;
  position: relative;
  margin-left: 3%;
}

@media (max-width: 47.99em) {
  .wysiwyg .hk-div-align-right {
    float: left;
    margin-left: 0 !important;
    width: 100% !important;
  }
}

.wysiwyg .hk-div-align-left-first-in-row {
  clear: both;
  float: left;
  position: relative;
  margin-right: 3%;
}

@media (max-width: 47.99em) {
  .wysiwyg .hk-div-align-left-next-in-row {
    float: left;
  }
}

.categories-menu {
  width: 100%;
  background-color: rgba(0, 204, 158, 0.08);
  color: #00CC9E;
  padding: calc(15px - 0.25em) 15px;
  margin-bottom: 15px;
  text-align: center;
}

.categories-menu__title {
  display: none;
}

.categories-menu__list {
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 15px;
}

@media (min-width: 37.5em) {
  .categories-menu__list {
    display: block !important;
    width: 943.5px;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
}

.categories-menu__list__item {
  display: inline-block;
  margin: 0.25em 0.85em;
}

.categories-menu__list__item a {
  position: relative;
}

.categories-menu__list__item a:before {
  content: '';
  display: block;
  width: 100%;
  height: 1px;
  position: absolute;
  bottom: -4px;
  left: 0;
  background-color: #00CC9E;
  opacity: 0;
  -webkit-transform: translateY(-3px);
      -ms-transform: translateY(-3px);
          transform: translateY(-3px);
  -webkit-transition: opacity 0.2s;
  -o-transition: opacity 0.2s;
  transition: opacity 0.2s;
}

.categories-menu__list__item:hover a:before, .categories-menu__list__item:focus a:before {
  opacity: 1;
}

@media (max-width: 37.49em) {
  .categories-menu {
    padding: 15px;
    text-align: left;
    font-size: 16px;
  }
  .categories-menu__title {
    display: block;
    font-family: "proxima-nova", -apple-system, sans-serif;
    font-size: 16px;
    font-weight: 600;
    margin: 0;
    position: relative;
  }
  .categories-menu__title:after {
    content: '';
    position: absolute;
    top: 0.25em;
    right: 0;
    height: 14px;
    width: 14px;
    background-image: url("../img/icons/arrow-green.png");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
  }
  .categories-menu__title.expanded:after {
    -webkit-transform: rotate(180deg);
        -ms-transform: rotate(180deg);
            transform: rotate(180deg);
  }
  .categories-menu__list {
    display: none;
  }
  .categories-menu__list__item {
    display: block;
    font-size: 16px;
    margin-left: 15px;
    margin-right: 15px;
    margin-top: 1.5em;
    margin-bottom: 1.5em;
  }
  .categories-menu__list__item:last-child {
    margin-bottom: 15px;
  }
}

.pni-navigation {
  background-color: #F4F4F4;
  padding: 24px;
  color: #909090;
  font-size: 14px;
}

.pni-navigation li a[href] {
  color: #303030;
  -webkit-transition: color 0.2s;
  -o-transition: color 0.2s;
  transition: color 0.2s;
}

.pni-navigation li a[href]:hover, .pni-navigation li a[href]:focus {
  color: #D1004D;
}

.pni-navigation li a[href]:hover:after, .pni-navigation li a[href]:focus:after {
  content: '';
  display: none;
}

.pni-navigation > ul,
.pni-navigation > ol {
  margin-top: 1em !important;
}

.pni-navigation ol {
  line-height: 1.25;
}

.pni-navigation ul {
  list-style: none;
  margin: 0;
  padding: 0;
  line-height: 1.25;
}

.pni-navigation ul ul li:before {
  border-radius: 0;
  width: 5px;
  height: 2px;
}

.pni-navigation ul ul, .pni-navigation ul ol, .pni-navigation ol ul, .pni-navigation ol ol {
  margin-top: 0;
  margin-bottom: 0;
  padding-left: 0;
}

.pni-navigation li {
  list-style: none;
  margin: 0;
  padding: 0;
  overflow: hidden;
  -o-text-overflow: ellipsis;
     text-overflow: ellipsis;
  position: relative;
}

.pni-navigation li:before {
  content: '';
  background-color: #909090 !important;
  border-radius: 50%;
  display: block;
  width: 3px;
  height: 3px;
  position: absolute;
  left: 2px;
  top: 0.5em !important;
}

.pni-title {
  color: #00CC9E;
  font-family: "proxima-nova-condensed", sans-serif;
  font-weight: bold;
  font-size: 16px;
  margin-top: 0 !important;
  margin-bottom: 0;
}

.pni-title:before {
  content: '';
  display: inline-block;
  height: 1em;
  width: 1em;
  vertical-align: middle;
  margin-right: 0.4em;
  margin-top: -0.1em;
  background-image: url("../img/icons/contents.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

html.svg .pni-title:before {
  background-image: url("../img/icons/contents.svg");
}

.posts-list,
.posts-grid {
  margin-top: 60px;
}

@media (min-width: 28.75em) {
  .posts-list,
  .posts-grid {
    margin-top: -18px;
  }
  .posts-list__item::after,
  .posts-grid__item::after {
    display: block;
    content: "";
    clear: both;
  }
  .posts-list__item .teaser__image-wrapper,
  .posts-grid__item .teaser__image-wrapper {
    float: left;
    width: 30%;
    height: 145px;
    overflow: hidden;
  }
  .posts-list__item .teaser__image-wrapper img,
  .posts-grid__item .teaser__image-wrapper img {
    width: 100%;
  }
  @supports ((-o-object-fit: cover) or (object-fit: cover)) {
    .posts-list__item .teaser__image-wrapper,
    .posts-grid__item .teaser__image-wrapper {
      overflow: initial;
    }
    .posts-list__item .teaser__image-wrapper img,
    .posts-grid__item .teaser__image-wrapper img {
      height: 100%;
      -o-object-fit: cover;
         object-fit: cover;
      -o-object-position: top left;
         object-position: top left;
    }
  }
}

@media (min-width: 28.75em) and (min-width: 48em) {
  .posts-list__item .teaser__image-wrapper,
  .posts-grid__item .teaser__image-wrapper {
    width: 255px;
    height: 155px;
  }
}

@media (min-width: 28.75em) {
  .posts-list__item .teaser__title, .posts-list__item .teaser__excerpt, .posts-list__item .teaser__footer,
  .posts-grid__item .teaser__title,
  .posts-grid__item .teaser__excerpt,
  .posts-grid__item .teaser__footer {
    float: right;
    clear: right;
    width: calc(70% - 30px);
  }
}

@media (min-width: 28.75em) and (min-width: 48em) {
  .posts-list__item .teaser__title, .posts-list__item .teaser__excerpt, .posts-list__item .teaser__footer,
  .posts-grid__item .teaser__title,
  .posts-grid__item .teaser__excerpt,
  .posts-grid__item .teaser__footer {
    width: calc(100% - 255px - 30px);
  }
}

@media (min-width: 28.75em) {
  .posts-list__item .teaser__title,
  .posts-grid__item .teaser__title {
    margin-bottom: 0.2em;
  }
}

@supports (display: grid) {
  .posts-list:empty {
    display: none;
  }
  html.js .posts-grid {
    margin-top: 0;
    width: calc(100% + 30px);
    margin-left: -15px;
  }
  @media (min-width: 28.75em) {
    html.js .posts-grid {
      display: grid;
      grid-row-gap: 0;
      grid-auto-rows: 30px;
      grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
    }
    html.js .posts-grid__item:nth-child(even) {
      grid-row-end: span 20;
    }
    html.js .posts-grid__item:nth-child(odd) {
      grid-row-end: span 25;
    }
    html.js .posts-grid__item:nth-child(1) {
      grid-row-end: span 12;
    }
    html.js .posts-grid__item {
      position: relative;
    }
    html.js .posts-grid__item > * {
      opacity: 0;
      -webkit-transition: opacity 0.5s;
      -o-transition: opacity 0.5s;
      transition: opacity 0.5s;
    }
    html.js .posts-grid__item::after {
      content: '';
      display: block;
      position: absolute;
      top: 0;
      left: 15px;
      width: calc(100% - 15px);
      height: calc(100% - 30px);
      background-color: #F4F4F4;
      border-radius: 5px;
      z-index: 1;
      pointer-events: none;
      opacity: 1;
      -webkit-transition: opacity 0.5s;
      -o-transition: opacity 0.5s;
      transition: opacity 0.5s;
      -webkit-animation-duration: 1s;
      -webkit-animation-fill-mode: forwards;
      -webkit-animation-iteration-count: infinite;
      -webkit-animation-name: placeholderSkeleton;
      -webkit-animation-timing-function: linear;
      background: #F4F4F4;
      background-image: -webkit-linear-gradient(left, #F4F4F4 0%, #fdfdfd 20%, #F4F4F4 40%, #F4F4F4 100%);
      background-repeat: no-repeat;
      background-size: 800px 100%;
    }
    html.js .posts-grid__item .teaser__image-wrapper, html.js .posts-grid__item .teaser__title, html.js .posts-grid__item .teaser__excerpt, html.js .posts-grid__item .teaser__footer {
      float: none;
      clear: none;
      width: auto;
    }
    html.js .posts-grid__item .teaser__image-wrapper {
      height: auto;
      background-color: transparent;
    }
    html.js .posts-grid__item:first-child .teaser__title {
      font-size: 32px;
      line-height: 1.1875;
    }
    html.js .posts-grid__item:first-child .teaser__image {
      float: left;
      width: 255px;
      max-width: 40%;
      margin-right: 32px;
      margin-bottom: 24px;
    }
    html.js .posts-grid__item:first-child .teaser__excerpt {
      font-size: 18px;
    }
    html.js .posts-grid__item[data-js-set-grid-item-height] > * {
      opacity: 1;
    }
    html.js .posts-grid__item[data-js-set-grid-item-height]:after {
      opacity: 0;
    }
  }
  @media (min-width: 37.5em) {
    html.js .posts-grid {
      grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    }
  }
  @media (min-width: 48em) {
    html.js .posts-grid {
      grid-template-columns: repeat(auto-fill, minmax(245px, 1fr));
    }
  }
  @media (min-width: 61.25em) {
    html.js .posts-grid {
      grid-template-columns: repeat(auto-fill, minmax(255px, 1fr));
      grid-column-gap: 66px;
    }
  }
  @media (min-width: 71.25em) {
    html.js .posts-grid {
      width: calc(100% - 36px);
      margin-left: -15px;
    }
  }
  html.js .posts-grid__item {
    overflow: hidden;
  }
  html.js .posts-grid__item__content.teaser {
    padding: 30px 15px;
    margin: 0;
  }
  html.js .posts-grid__item[data-js-set-grid-item-height] .teaser {
    background-color: transparent;
    -webkit-transition: background-color 0.2s, color 0.2s;
    -o-transition: background-color 0.2s, color 0.2s;
    transition: background-color 0.2s, color 0.2s;
  }
  html.js .posts-grid__item[data-js-set-grid-item-height] .teaser__categories, html.js .posts-grid__item[data-js-set-grid-item-height] .teaser__categories:after,
  html.js .posts-grid__item[data-js-set-grid-item-height] .teaser__categories__item a {
    -webkit-transition: background-color 0.2s;
    -o-transition: background-color 0.2s;
    transition: background-color 0.2s;
  }
  html.js .posts-grid__item[data-js-set-grid-item-height] .teaser:hover, html.js .posts-grid__item[data-js-set-grid-item-height] .teaser:focus {
    background-color: #00CC9E;
    color: #FFFFFF;
  }
  html.js .posts-grid__item[data-js-set-grid-item-height] .teaser:hover *, html.js .posts-grid__item[data-js-set-grid-item-height] .teaser:hover:before, html.js .posts-grid__item[data-js-set-grid-item-height] .teaser:focus *, html.js .posts-grid__item[data-js-set-grid-item-height] .teaser:focus:before {
    color: #FFFFFF !important;
  }
  html.js .posts-grid__item[data-js-set-grid-item-height] .teaser:hover .read-more span:after, html.js .posts-grid__item[data-js-set-grid-item-height] .teaser:focus .read-more span:after {
    background-color: #FFFFFF;
  }
  html.js .posts-grid__item[data-js-set-grid-item-height] .teaser:hover .teaser__categories:after, html.js .posts-grid__item[data-js-set-grid-item-height] .teaser:focus .teaser__categories:after {
    height: 2px;
    background-color: rgba(255, 255, 255, 0.75);
  }
  html.js .posts-grid__item[data-js-set-grid-item-height] .teaser:hover .teaser__categories__item a, html.js .posts-grid__item[data-js-set-grid-item-height] .teaser:focus .teaser__categories__item a {
    background-color: #00CC9E;
  }
  html.js .posts-grid__item:first-child .teaser:before {
    content: "Latest Blog Post";
    display: block;
    font-family: "abril-display", serif;
    font-size: 16px;
    color: #00CC9E;
    margin-bottom: 0.85em;
  }
  @media (min-width: 28.75em) {
    html.js .posts-grid__item:first-child .teaser:before {
      position: absolute;
      bottom: 24px;
      right: 15px;
      font-size: 20px;
    }
    html.js .posts-grid__item:first-child .teaser__categories {
      padding-right: 160px;
    }
  }
  @media (min-width: 48em) {
    html.js .posts-grid__item:first-child .teaser:before {
      right: 30px;
      bottom: 22px;
      font-size: 22px;
    }
    html.js .posts-grid__item:first-child .teaser__categories {
      padding-right: 200px;
    }
  }
  @media (min-width: 28.75em) {
    html.js .posts-grid__item:first-child {
      grid-column-start: 1;
      grid-column-end: 3;
    }
  }
  @media (min-width: 48em) {
    html.js .posts-grid__item__content {
      padding: 30px;
    }
  }
  @media (min-width: 71.25em) {
    .posts-grid-successor-wrapper {
      width: calc(100% - 36px);
      margin-left: -15px;
    }
  }
}

@-webkit-keyframes placeholderSkeleton {
  0% {
    background-position: -500px 0;
  }
  100% {
    background-position: 500px 0;
  }
}

.related-posts-container {
  padding-top: 64px;
  margin-bottom: 64px;
}

.related-posts-container + .related-posts-container {
  border-top: 3px solid rgba(162, 162, 162, 0.3);
}

.related-posts-heading {
  margin-top: 0;
  font-family: "proxima-nova-condensed", sans-serif;
  font-size: 30px;
}

.related-posts {
  width: calc(100% + 30px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-left: -30px;
}

.related-posts__item__content.teaser {
  margin-bottom: 0;
}

.related-posts__item {
  width: 100%;
  margin-left: 30px;
  margin-bottom: 30px;
}

@media (min-width: 28.75em) {
  .related-posts__item {
    width: calc(50% - 30px);
  }
}

@media (min-width: 48em) and (max-width: 61.24em) {
  .related-posts__item {
    width: calc(33.3333% - 30px);
  }
  .related-posts__item:nth-child(n+4) {
    display: none;
  }
}

@media (min-width: 61.25em) {
  .related-posts__item {
    width: calc(25% - 30px);
    margin-bottom: 0;
  }
}

.related-posts__item__content {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.comment-form input[type=text],
.comment-form textarea {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  outline: none;
  border-radius: 0;
  width: 100%;
  border: 1px solid rgba(162, 162, 162, 0.3);
  padding: 0.5em;
}

.comment-form-comment {
  margin-bottom: 2px;
}

.comment-form-comment textarea {
  resize: vertical;
}

.comment-form-comment label {
  display: none;
}

.comment-form-author label, .comment-form-email label, .comment-form-url label {
  display: block;
  font-family: "proxima-nova-condensed", sans-serif;
  font-weight: bold;
  margin-bottom: 6px;
}

.comment-form #gdpr-comments-compliance label {
  color: #A2A2A2;
  font-size: 13px;
}

.comment-form .comment-notes,
.comment-form #gdpr-comments-compliance-text {
  color: #A2A2A2;
  font-size: 13px;
  margin: 0;
}

.comment-form .comment-notes a,
.comment-form #gdpr-comments-compliance-text a {
  color: #D1004D;
}

.comment-form .comment-form-cookies-consent label {
  color: #A2A2A2;
  font-size: 14px;
}

@media (min-width: 37.5em) {
  .comment-form-author, .comment-form-email, .comment-form-url {
    float: left;
    width: calc(33.333% - 20px);
    margin-right: 30px;
  }
  .comment-form-author ~ div, .comment-form-email ~ div, .comment-form-url ~ div {
    display: block;
    clear: both;
  }
  .comment-form-url {
    margin-right: 0;
  }
}

.comment-form input[type=checkbox] {
  position: absolute;
  opacity: 0;
  border-radius: 0;
}

.comment-form input[type=checkbox] + label {
  cursor: pointer;
  position: relative;
  padding-left: 2em;
}

.comment-form input[type=checkbox] + label:before {
  content: '';
  margin-right: 0.65em;
  display: inline-block;
  margin-left: -2em;
  vertical-align: top;
  height: 1.5em;
  width: 1.5em;
  background-color: white;
  border: 1px solid rgba(162, 162, 162, 0.3);
}

.comment-form input[type=checkbox]:checked + label:after {
  content: '';
  display: block;
  position: absolute;
  left: 0.5em;
  top: -0.05em;
  width: 0.5em;
  height: 1em;
  border: solid #303030;
  border-width: 0 2px 2px 0;
  -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg);
}

.pagination {
  display: none;
  text-align: center;
  margin-top: 40px;
}

html.no-js .pagination {
  display: block;
}

.pagination .page-numbers {
  line-height: 2.5em;
  font-weight: bold;
  position: relative;
  color: #303030;
  padding: 0.5em 0.75em;
  background-color: #F4F4F4;
  -webkit-transition: all 0.2s;
  -o-transition: all 0.2s;
  transition: all 0.2s;
}

.pagination .page-numbers.current {
  background-color: #00CC9E;
  color: #FFFFFF;
}

.pagination a.page-numbers:hover {
  background-color: #00CC9E;
  color: #FFFFFF;
}

.button--load_more {
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-top: 60px;
  margin-bottom: 60px;
  max-width: 100%;
  width: 290px;
}

html.no-js .button--load_more {
  display: none;
}

.button--load_more__animation {
  display: none;
}

.button--load_more[disabled] {
  font-size: 0;
}

.button--load_more[disabled] .button--load_more__animation {
  display: inline-block;
  text-align: center;
  width: 100px;
  height: 20px;
}

.button--load_more[disabled] .button--load_more__animation .dot {
  display: inline-block;
  width: 5px;
  height: 5px;
  margin-left: 5px;
  margin-right: 5px;
  border-radius: 50%;
  background: #FFFFFF;
  -webkit-animation: wave 1.3s ease-in-out infinite;
          animation: wave 1.3s ease-in-out infinite;
}

.button--load_more[disabled] .button--load_more__animation .dot:nth-child(2) {
  -webkit-animation-delay: -1.1s;
          animation-delay: -1.1s;
}

.button--load_more[disabled] .button--load_more__animation .dot:nth-child(3) {
  -webkit-animation-delay: -0.9s;
          animation-delay: -0.9s;
}

@-webkit-keyframes wave {
  0%, 60%, 100% {
    -webkit-transform: translateY(10px);
            transform: translateY(10px);
  }
  30% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes wave {
  0%, 60%, 100% {
    -webkit-transform: translateY(10px);
            transform: translateY(10px);
  }
  30% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

header nav {
  width: 100%;
  background-color: #FFFFFF;
}

header nav .current-menu-item > a,
header nav .current-page-ancestor > a {
  color: #00CC9E;
}

header nav .meta-menu {
  padding: 24px 15px;
}

header nav .meta-menu a {
  margin-bottom: 24px;
}

@media (min-width: 48em) {
  header nav .meta-menu {
    display: none !important;
  }
}

header nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

header nav ul a {
  display: block;
  width: 100%;
}

header nav .meta-menu ul {
  background-color: #FFFFFF;
  text-align: left;
}

header nav > ul > li {
  display: block;
  border-bottom: 1px solid #F4F4F4;
}

header nav > ul > li > a {
  padding: 15px;
  font-size: 24px;
  font-family: "abril-display", serif;
}

header nav > ul > li.menu-item-has-children > a {
  position: relative;
}

header nav > ul > li.menu-item-has-children > a:after {
  content: '';
  display: block;
  position: absolute;
  top: 24px;
  right: 22.5px;
  height: 14px;
  width: 14px;
  background-image: url("../img/icons/arrow-grey.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

html.no-touch header nav > ul > li.menu-item-has-children:hover > a:after,
header nav > ul > li.menu-item-has-children > a.is-hovered:after {
  -webkit-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
          transform: rotate(180deg);
}

header nav > ul > li.menu-item-has-children:focus-within > a:after {
  -webkit-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
          transform: rotate(180deg);
}

header nav > ul > li > ul.sub-menu {
  display: none;
  padding-left: 15px;
}

header nav > ul > li > ul.sub-menu > li {
  margin-left: 9px;
}

header nav > ul > li > ul.sub-menu > li:first-child {
  margin-top: -4.5px;
}

header nav > ul > li > ul.sub-menu > li a {
  padding-top: 12.75px;
  padding-bottom: 12.75px;
}

header nav > ul > li > ul.sub-menu > li.menu-item-has-children > a {
  font-weight: 600;
}

header nav > ul > li > ul.sub-menu > li.menu-item-has-children {
  padding-bottom: 4.5px;
  border-bottom: 1px solid #F4F4F4;
  margin-bottom: 4.5px;
}

header nav > ul > li > ul.sub-menu > li:last-child {
  border-bottom: none;
  margin-bottom: 12.75px;
}

html.no-touch header nav > ul > li:hover > ul.sub-menu,
html.no-touch header nav > ul > li > ul.sub-menu:hover,
header nav > ul > li > a.is-hovered + ul.sub-menu {
  display: block;
}

header nav > ul > li:focus-within ul.sub-menu {
  display: block;
}

@media (min-width: 48em) {
  header nav a {
    -webkit-transition: color 0.2s;
    -o-transition: color 0.2s;
    transition: color 0.2s;
  }
  html.no-touch header nav a:hover, header nav a:focus {
    color: #D1004D;
  }
  header nav > ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    position: relative;
    padding-left: 15px;
  }
}

@media (min-width: 48em) and (min-width: 61.25em) {
  header nav > ul {
    padding-left: 0;
  }
}

@media (min-width: 48em) {
  header nav > ul > li {
    border-bottom: none;
  }
  header nav > ul > li > a {
    padding: 15px 0;
    margin-bottom: -0.333em;
    font-size: 19px;
    font-family: "abril-display", serif;
    text-align: center;
  }
  header nav > ul > li.menu-item-has-children > a:after {
    position: absolute;
    top: calc(15px + 0.5em - 3px);
    right: -13px;
    height: 8px;
    width: 8px;
    -webkit-transform: none !important;
        -ms-transform: none !important;
            transform: none !important;
  }
  html.no-touch header nav > ul > li.menu-item-has-children:hover > a:before,
  header nav > ul > li.menu-item-has-children > a.is-hovered:before {
    content: '';
    position: absolute;
    top: 100%;
    left: -50%;
    width: 200%;
    height: 27px;
  }
  header nav > ul > li.menu-item-has-children:focus-within > a:before {
    content: '';
    position: absolute;
    top: 100%;
    left: -50%;
    width: 200%;
    height: 27px;
  }
  header nav > ul > li.menu-item-has-children:last-child {
    padding-right: 13px;
  }
  header nav > ul > li > ul.sub-menu {
    position: absolute;
    top: 80px;
    background-color: #FFFFFF;
    -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
            box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    min-width: 255px;
    padding: 30px 30px 24px 24px;
  }
  header nav > ul > li > ul.sub-menu > li {
    margin-left: 0;
    margin-bottom: 0.75em;
  }
  header nav > ul > li > ul.sub-menu > li a {
    padding-top: 0.15em;
    padding-bottom: 0.15em;
  }
  header nav > ul > li > ul.sub-menu > li.menu-item-has-children {
    border-bottom: none;
    margin-bottom: 1em;
  }
  header nav > ul > li > ul.sub-menu > li:last-child {
    padding-bottom: 0;
    border-bottom: none;
    margin-bottom: 0;
  }
  header nav > ul > li > ul.sub-menu > li .sub-menu {
    padding-left: 16px;
  }
  header nav > ul > li:last-child > ul.sub-menu {
    right: 0;
  }
}

form.search {
  position: relative;
}

form.search .search-input {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 100%;
  height: 32px;
  border-radius: 16px;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: 0;
  outline: 0;
  padding-left: 1em;
  padding-right: calc(32px + 0.5em);
}

form.search .search-submit {
  position: absolute;
  right: 3px;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  height: 32px;
  width: 32px;
  text-indent: -999999999px;
  background-color: transparent;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: 0;
  outline: 0;
  background-image: url("../img/icons/search.png");
  background-size: 18px;
  background-repeat: no-repeat;
  background-position: center;
}

@media (min-width: 48em) {
  form.search .search-input {
    height: 22px;
    border-radius: 11px;
    font-size: 14px;
    padding-right: calc(22px + 0.5em);
  }
  form.search .search-submit {
    height: 22px;
    width: 22px;
    background-size: 12px;
  }
}

.teaser {
  position: relative;
  margin-bottom: 60px;
  overflow-wrap: break-word;
  word-wrap: break-word;
}

.teaser__title {
  margin-top: 0;
  margin-bottom: 15px;
  color: #303030;
  font-size: 24px;
  line-height: 1.25;
}

.teaser__image {
  max-width: 100%;
  height: auto;
  border: 1px solid rgba(162, 162, 162, 0.1);
}

.teaser__excerpt {
  color: #303030;
  font-size: 16px;
  line-height: 1.4;
}

.teaser__excerpt p {
  margin-top: 0.7em;
  margin-bottom: 0.7em;
}

.teaser .read-more {
  display: block;
  margin-top: 1em;
}

.teaser .read-more span {
  display: inline-block;
  color: #D1004D;
  font-family: "proxima-nova", -apple-system, sans-serif;
  font-weight: bold;
  position: relative;
}

.teaser .read-more span:after {
  content: '';
  display: block;
  width: 100%;
  height: 0.05em;
  position: absolute;
  bottom: -0.2em;
  left: 0;
  background-color: currentcolor;
  opacity: 0;
  -webkit-transform: translateY(-3px);
      -ms-transform: translateY(-3px);
          transform: translateY(-3px);
  -webkit-transition: opacity 0.2s;
  -o-transition: opacity 0.2s;
  transition: opacity 0.2s;
}

.teaser .read-more span:hover:after, .teaser .read-more span:focus:after {
  opacity: 0.75;
}

.teaser .read-more span:after {
  height: 0.175em;
  bottom: -0.25em;
  opacity: 0.3;
}

.teaser__meta {
  clear: both;
  color: #A2A2A2;
  font-size: 14px;
  margin-top: 1.35em;
  margin-bottom: 0.25em;
}

.teaser__meta a {
  position: relative;
}

.teaser__meta a:after {
  content: '';
  display: block;
  width: 100%;
  height: 0.05em;
  position: absolute;
  bottom: -0.2em;
  left: 0;
  background-color: currentcolor;
  opacity: 0;
  -webkit-transform: translateY(-3px);
      -ms-transform: translateY(-3px);
          transform: translateY(-3px);
  -webkit-transition: opacity 0.2s;
  -o-transition: opacity 0.2s;
  transition: opacity 0.2s;
}

.teaser__meta a:hover:after, .teaser__meta a:focus:after {
  opacity: 0.75;
}

.teaser__categories {
  list-style: none;
  margin: 0;
  padding: 0;
  color: #00CC9E;
  font-size: 0;
  padding-right: 32px;
  position: relative;
}

.teaser__categories__item {
  font-size: 13px;
  display: inline-block;
  z-index: 1;
  position: relative;
}

.teaser__categories__item a {
  padding-right: 0.25em;
  background-color: #FFFFFF;
  position: relative;
}

.teaser__categories__item a:after {
  content: ', ';
}

.teaser__categories__item a:before {
  content: '';
  display: block;
  width: 100%;
  height: 0.05em;
  position: absolute;
  bottom: -0.2em;
  left: 0;
  background-color: currentcolor;
  opacity: 0;
  -webkit-transform: translateY(-3px);
      -ms-transform: translateY(-3px);
          transform: translateY(-3px);
  -webkit-transition: opacity 0.2s;
  -o-transition: opacity 0.2s;
  transition: opacity 0.2s;
}

.teaser__categories__item a:hover:before, .teaser__categories__item a:focus:before {
  opacity: 0.75;
}

.teaser__categories__item a:before {
  width: calc(100% - 0.475em);
}

.teaser__categories__item:last-child a {
  padding-right: 1em;
}

.teaser__categories__item:last-child a:before {
  width: calc(100% - 0.975em);
}

.teaser__categories__item:last-child a:after {
  content: none;
}

.teaser__categories:after {
  content: '';
  display: block;
  width: 100%;
  height: 3px;
  background-color: rgba(0, 204, 158, 0.15);
  position: absolute;
  bottom: 7px;
}

.button,
input[type=submit],
.wp-block-button__link {
  border: 0;
  border-radius: 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  -webkit-box-shadow: none;
          box-shadow: none;
  outline: none;
  font-family: "proxima-nova", -apple-system, sans-serif;
  font-size: 16px;
  background-color: #D1004D;
  color: #FFFFFF !important;
  padding: 15px 30px;
  text-align: center;
  -webkit-transition: background-color 0.2s;
  -o-transition: background-color 0.2s;
  transition: background-color 0.2s;
}

.button:hover, .button:focus,
input[type=submit]:hover,
input[type=submit]:focus,
.wp-block-button__link:hover,
.wp-block-button__link:focus {
  background-color: #b80044;
}

.button:disabled,
input[type=submit]:disabled,
.wp-block-button__link:disabled {
  background-color: rgba(209, 0, 77, 0.3);
}

/*------------------------------------*\
    HAMBURGER ICON
\*------------------------------------*/
.nav-toggle {
  display: block;
  position: relative;
  margin: 0;
  padding: 0;
  width: 40px;
  height: 40px;
  font-size: 0;
  text-indent: -9999px;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  -webkit-box-shadow: none;
          box-shadow: none;
  border-radius: none;
  border: none;
  cursor: pointer;
  background-color: transparent;
}

.nav-toggle:focus {
  outline: none;
}

.nav-toggle span {
  display: block;
  position: absolute;
  top: 18px;
  left: 14px;
  right: 0;
  height: 3px;
  background-color: #343434;
  /* autoprefixer: off */
  transition: background-color 0s 0.3s;
}

.nav-toggle span::before, .nav-toggle span::after {
  content: '';
  position: absolute;
  display: block;
  left: -4px;
  width: calc(100% + 4px);
  height: 3px;
  background-color: #343434;
  /* autoprefixer: off */
  transition-duration: 0.3s, 0.3s;
  transition-delay: 0.3s, 0s;
}

.nav-toggle span::before {
  top: -8px;
  /* autoprefixer: off */
  transition-property: top, transform;
}

.nav-toggle span::after {
  bottom: -8px;
  /* autoprefixer: off */
  transition-property: bottom, transform;
}

.nav-toggle.active span {
  background: none;
}

.nav-toggle.active span::before {
  top: 0;
  /* autoprefixer: off */
  transform: rotate(45deg);
}

.nav-toggle.active span::after {
  bottom: 0;
  /* autoprefixer: off */
  transform: rotate(-45deg);
}

.nav-toggle.active span::before, .nav-toggle.active span::after {
  /* autoprefixer: off */
  transition-delay: 0s, 0.3s;
}

div.shariff {
  margin-top: 48px;
  border-top: 3px solid rgba(162, 162, 162, 0.3);
  padding-top: 32px;
}

.post__meta div.shariff,
.page__meta div.shariff {
  margin-top: 0;
  border-top: 0;
  padding-top: 0;
}

.post__content div.shariff:first-child,
.page__content div.shariff:first-child {
  border-top: 0;
  border-bottom: 3px solid rgba(162, 162, 162, 0.3);
  padding-bottom: 32px;
}

div.shariff .shariff-buttons.theme-round {
  margin-top: 6px !important;
}

div.shariff .shariff-buttons.theme-round li {
  width: 44px !important;
  height: 44px !important;
  margin: 10px !important;
}

div.shariff .shariff-buttons.theme-round li:first-child {
  margin-left: 0 !important;
}

div.shariff .shariff-buttons.theme-round li a {
  height: 44px;
  width: 44px;
}

div.shariff .shariff-buttons.theme-round li a .shariff-icon svg {
  padding: 12px 6px;
}

div.shariff .shariff-buttons li a {
  -webkit-transition: background-color 0.2s;
  -o-transition: background-color 0.2s;
  transition: background-color 0.2s;
}

div.shariff .shariff-icon svg path {
  -webkit-transition: fill 0.2s;
  -o-transition: fill 0.2s;
  transition: fill 0.2s;
}

svg {
  fill: inherit;
  stroke: inherit;
}

@media print {
  * {
    background: transparent !important;
    color: #000 !important;
    -webkit-box-shadow: none !important;
            box-shadow: none !important;
    text-shadow: none !important;
  }
  a,
  a:visited {
    text-decoration: underline;
  }
  a[href]:after {
    content: " (" attr(href) ")";
  }
  abbr[title]:after {
    content: " (" attr(title) ")";
  }
  .ir a:after,
  a[href^="javascript:"]:after,
  a[href^="#"]:after {
    content: "";
  }
  pre, blockquote {
    border: 1px solid #999;
    page-break-inside: avoid;
  }
  thead {
    display: table-header-group;
  }
  tr, img {
    page-break-inside: avoid;
  }
  img {
    max-width: 100% !important;
  }
  @page {
    margin: 0.5cm;
  }
  p,
  h2,
  h3 {
    orphans: 3;
    widows: 3;
  }
  h2,
  h3 {
    page-break-after: avoid;
  }
}

/*************************************************/
/* Prism.js syntax highlighting */
/*************************************************/
code[class*="language-"], pre[class*="language-"] {
  text-shadow: none;
}

/*************************************************/
/* Header numbering starting at h3 */
/* Usage: add the class 'countheaders' to a parent element of the headers to enable numbering */
/*************************************************/
body {
  counter-reset: h3;
}

h2 {
  counter-reset: h4;
}

h3 {
  counter-reset: h5;
}

h4 {
  counter-reset: h6;
}

.countheaders h3:before {
  counter-increment: h3;
  content: counter(h3) " ";
}

.countheaders h4:before {
  counter-increment: h4;
  content: counter(h3) "." counter(h4) " ";
}

.countheaders h5:before {
  counter-increment: h5;
  content: counter(h3) "." counter(h4) "." counter(h5) " ";
}

.countheaders h6:before {
  counter-increment: h6;
  content: counter(h3) "." counter(h4) "." counter(h5) "." counter(h6) " ";
}

h3.nocount:before, h4.nocount:before, h5.nocount:before, h6.nocount:before {
  content: "";
  counter-increment: none;
}

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