html {
  --color-black: #000;
  --color-grey: #aaa;
  --color-silver: #dadada;
  --color-white: #fff;
  --color_accessibility-background-screen: #f1f1f1;
  --color_accessibility-text-screen: #21759b;
}

html {
  --color-aqua: #14968a;
  --color-blue: #006781;
  --color-blue-dark: #1d356c;
  --color-yellow: #e6ce1e;
  --color-orange: #f68c19;
  --color-pink: #e16d65;
  --color-background: #eff4e2;
}

/* Text meant only for screen readers. */
/* Do not show the outline on the skip link target. */
a:focus-visible,
button:focus-visible,
input[type=submit]:focus-visible,
#search-form button:focus-visible img {
  outline-color: black;
}

@font-face {
  font-family: "Nunito";
  src: url("fonts/subset-Nunito-Bold.woff2") format("woff2");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Nunito";
  src: url("fonts/subset-Nunito-BoldItalic.woff2") format("woff2");
  font-weight: bold;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Nunito";
  src: url("fonts/subset-Nunito-SemiBold.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Nunito";
  src: url("fonts/subset-Nunito-ExtraBold.woff2") format("woff2");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Nunito";
  src: url("fonts/subset-Nunito-Italic.woff2") format("woff2");
  font-weight: normal;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Nunito";
  src: url("fonts/subset-Nunito-Regular.woff2") format("woff2");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Pacifico";
  src: url("fonts/Pacifico-Regular.woff2") format("woff2");
  font-weight: normal;
  font-style: normal;
}
html {
  font-family: "Nunito", sans-serif;
}
h1,
.h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: bold;
  color: var(--color-pink);
}

p,
ul,
ol,
table,
form,
blockquote,
figure {
  font-size: 1.25rem;
}

.wp-block-quote {
  font-family: "Pacifico";
  text-align: center;
  color: var(--color-blue-dark);
  text-wrap: balance;
}
.wp-block-quote p {
  font-size: 3.125rem;
  line-height: 1.6;
  margin-bottom: 0;
}
.wp-block-quote cite {
  font-family: "Nunito", sans-serif;
}

table th,
.wp-block-table th,
table.downloads th {
  background-color: var(--color-pink);
  font-weight: bold;
}
table th,
table td,
.wp-block-table th,
.wp-block-table td,
table.downloads th,
table.downloads td {
  border-bottom: 2px solid var(--color-aqua);
}
table thead th,
.wp-block-table thead th,
table.downloads thead th {
  border-bottom: 5px solid var(--color-aqua);
}
table thead th:first-child,
.wp-block-table thead th:first-child,
table.downloads thead th:first-child {
  border-top-left-radius: 1rem;
}
table thead th:last-child,
.wp-block-table thead th:last-child,
table.downloads thead th:last-child {
  border-top-right-radius: 1rem;
}

figure.wp-block-image img {
  border-radius: 1rem;
}
figure.wp-block-image .wp-element-caption {
  font-size: 1rem;
  font-style: normal;
  margin-left: 1rem;
  text-align: center;
}

.alignleft {
  /*rtl:ignore*/
  /*rtl:ignore*/
}

.alignright {
  /*rtl:ignore*/
  /*rtl:ignore*/
}

a {
  color: var(--color-aqua);
}
a:hover {
  color: var(--color-blue-dark);
}

input:not([type=submit]):not([type=radio]):not([type=checkbox]),
textarea,
select {
  border-radius: 0.75em;
  border-color: var(--color-pink);
}

@property --home-hero-tree-scale {
  syntax: "<number>";
  inherits: false;
  initial-value: 1;
}
@property --home-hero-tree-rotate {
  syntax: "<angle>";
  inherits: false;
  initial-value: 0deg;
}
@keyframes homeHeroLeavesDrift {
  0%, 100% {
    background-position: 50% 50%, 50% 50%;
    background-size: 100% auto, 100% 100%;
  }
  50% {
    background-position: 48% 52%, 50% 50%;
    background-size: 108% auto, 100% 100%;
  }
}
@keyframes homeHeroTreeReveal {
  from {
    opacity: 0;
    --home-hero-tree-scale: 0;
  }
  to {
    opacity: 1;
    --home-hero-tree-scale: 1;
  }
}
@keyframes homeHeroTreeSway {
  0%, 100% {
    --home-hero-tree-rotate: 0deg;
  }
  25% {
    --home-hero-tree-rotate: -1deg;
  }
  75% {
    --home-hero-tree-rotate: 1deg;
  }
}
@keyframes homeHeroVisualReveal {
  from {
    transform: scale(0);
  }
  to {
    transform: scale(1);
  }
}
@media (min-width: 1300px) {
  #masthead #logo {
    align-self: flex-start;
    height: 145px;
    margin-bottom: -45px;
    padding: 0 20px 10px 20px;
    border-radius: 20px;
    background-color: var(--color-white);
    display: flex;
    align-items: flex-end;
  }
  #masthead #logo a img {
    min-width: 220px;
  }
}
@media (min-width: 1800px) {
  #masthead #logo {
    width: 285px;
    height: 160px;
    margin-bottom: -60px;
  }
  #masthead #logo a img {
    min-width: 245px;
  }
}
@media (max-width: 1299px) {
  #masthead #menu-toggle button svg rect {
    fill: var(--color-blue-dark);
  }
}
#masthead #site-navigation {
  font-size: 1.25rem;
}
@media (max-width: 1299px) {
  #masthead #site-navigation {
    background-color: var(--color-blue);
    border-top: 2px solid var(--color-blue-dark);
  }
}
@media (min-width: 1300px) {
  #masthead #site-navigation ul li ul {
    border-bottom-left-radius: 1em;
    border-bottom-right-radius: 1em;
  }
  #masthead #site-navigation ul li ul:before {
    background-color: var(--color-aqua);
  }
}
#masthead #site-navigation .current_page_item > a,
#masthead #site-navigation .current-menu-item > a,
#masthead #site-navigation .current_page_ancestor > a,
#masthead #site-navigation .current-menu-ancestor > a,
#masthead #site-navigation .current_page_parent > a {
  color: var(--color-blue);
}
@media (max-width: 1299px) {
  #masthead #site-navigation .current_page_item > a,
  #masthead #site-navigation .current-menu-item > a,
  #masthead #site-navigation .current_page_ancestor > a,
  #masthead #site-navigation .current-menu-ancestor > a,
  #masthead #site-navigation .current_page_parent > a {
    color: var(--color-white);
    background-color: var(--color-orange);
  }
}
#masthead #search #search-form button img {
  filter: brightness(0) saturate(100%) invert(27%) sepia(19%) saturate(6743%) hue-rotate(168deg) brightness(88%) contrast(101%);
}
@media (min-width: 1300px) {
  #masthead #search.active #search-form input[type=text] {
    border-color: var(--color-blue);
  }
}
#footer {
  background-color: rgba(20, 150, 138, 0.9);
  background-image: url("../../img/footer-bg.svg");
  background-size: contain;
  background-position: 50% 20px;
  position: relative;
  z-index: 9999;
  font-size: 1.375rem;
  font-weight: bold;
}
#footer h2 {
  font-size: 1.75rem;
  color: var(--color-blue-dark);
}
#footer #footer-menu ul li.current-menu-item a {
  color: var(--color-blue-dark);
}
#footer .social-links ul li a img {
  filter: invert(100%);
}
#footer #copyright {
  background-color: var(--color-blue-dark);
}
#footer #copyright ul li:before {
  width: 2px;
  background-color: var(--color-aqua);
}
.page-template-template-team h2 {
  font-size: 3.125rem;
  font-weight: 800;
  text-align: center;
  color: var(--color-white);
}
.page-template-template-team {
  color: var(--color-white);
}
.page-template-template-team p {
  font-weight: bold;
}

#team-intro {
  margin-top: -4vw;
  padding-top: 4vw;
  background-color: rgba(212, 52, 41, 0.7);
  --curve-depth: 4rem;
}
@supports (clip-path: shape(from 0 0, line to 100% 0, close)) {
  #team-intro {
    clip-path: shape(from 0 0, hline to 100%, vline to 100%, curve to 0 100% with 50% calc(100% - var(--curve-depth)), close);
  }
}
#team-intro img {
  border-radius: 2rem;
  border: 10px solid var(--color-white);
}
@media (max-width: 799px) {
  #team-intro {
    margin-top: -40px;
    padding-top: 40px;
  }
}

#team {
  background-color: rgba(12, 131, 119, 0.5764705882);
  --curve-depth: 4rem;
  margin-top: calc(var(--curve-depth) * -1);
  margin-bottom: calc(var(--curve-depth) * -1);
}
@supports (clip-path: shape(from 0 0, line to 100% 0, close)) {
  #team {
    clip-path: shape(from 0 var(--curve-depth), curve to 100% var(--curve-depth) with 50% 0, vline to 100%, curve to 0 100% with 50% calc(100% - var(--curve-depth)), close);
  }
}
@media (max-width: 799px) {
  #team {
    padding-top: 50px;
  }
}
#team-list .member {
  border-radius: 1.375rem;
}
#team-list .member h3 {
  color: var(--color-blue-dark);
  font-weight: 800;
}
#team-list .member p {
  color: var(--color-black);
  font-weight: normal;
}
#team-list .member figure {
  font-size: 0;
  overflow: hidden;
  border-radius: 1rem;
  margin-bottom: 1.25rem;
}
#team-list .member .member-bio {
  border-radius: 1.375rem;
}
#team-list .member .member-bio p {
  font-size: 1.025rem;
}
@media (max-width: 799px) {
  #team-list .member .member-bio p {
    font-size: 1.25rem;
  }
}

input[type=submit],
input[type=button],
button[type=submit],
.btn,
.wp-block-button__link {
  font-family: "Nunito", sans-serif;
  font-size: 1.375rem;
  font-weight: bold;
  border-radius: 999em;
  padding: 0.34em 1.25em;
  background-color: var(--color-blue-dark);
}
input[type=submit]:hover,
input[type=button]:hover,
button[type=submit]:hover,
.btn:hover,
.wp-block-button__link:hover {
  background-color: var(--color-blue);
  color: var(--color-white);
}

.post-list-item {
  background-color: var(--color-grey);
  border-radius: 1.25rem;
}
.post-list-item time {
  font-size: 1.125rem;
  font-weight: bold;
  margin-bottom: 0.5em;
  display: block;
}
.post-list-item h2 {
  font-size: 2.1875rem;
  color: var(--color-white);
}
.post-list-item h3 {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--color-white);
}
.post-list-item p {
  font-size: 1.25rem;
  font-weight: bold;
  color: var(--color-white);
}
.post-list-item img {
  border-radius: 0.8rem;
  font-size: 0;
}
.post-list-item footer a {
  color: var(--color-white);
  font-size: 1.25rem;
  font-weight: 800;
}
.post-list-item footer a:after {
  transition: all 0.25s ease;
  content: " >";
}
.post-list-item footer a.btn:after {
  display: none;
}

.blog .post-list-item {
  background-color: var(--color-white);
}
.blog .post-list-item h3 {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--color-blue-dark);
}
.blog .post-list-item p {
  font-size: 1.125rem;
  font-weight: normal;
  color: var(--color-black);
}
.blog .post-list-item footer a {
  color: var(--color-pink);
}

.page-hero {
  z-index: 999;
  align-items: flex-start;
  border-bottom: 7px solid var(--color-white);
  box-shadow: 0px 10px 6px 0px rgba(0, 0, 0, 0.25);
}
@media (max-width: 799px) {
  .page-hero {
    border-bottom-width: 4px;
    box-shadow: 0px 5px 3px 0px rgba(0, 0, 0, 0.12);
  }
}
.page-hero .container {
  max-width: none;
  margin: 0;
  padding: 0;
}
.page-hero h1 {
  z-index: 2;
  padding: 5vw 6vw 6vw 7.33vw;
  text-wrap: balance;
  hyphens: auto;
  font-size: clamp(1.25rem, 3.6458333333vw, 70px);
  max-width: 75%;
  color: var(--color-white);
}
@media (max-width: 799px) {
  .page-hero h1 {
    hyphens: auto;
    font-size: 2.5rem;
    padding-left: 20px;
  }
}
.page-hero h1 {
  display: inline-block;
  position: relative;
}
.page-hero h1 span {
  position: relative;
}
.page-hero h1:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  opacity: 0.8;
  background-color: #c04038;
  mask: url("../../img/page-hero-mask.svg");
  mask-size: 100% 100%;
  mask-repeat: no-repeat;
  mask-position: right;
}
.block-cta {
  background-color: transparent;
}
@media (max-width: 799px) {
  .block-cta {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}
@media (min-width: 800px) {
  .block-cta {
    padding-top: 80px;
    padding-bottom: 80px;
    position: relative;
    z-index: 99;
  }
}
.block-cta .container {
  max-width: 1088px;
  border-radius: 2rem;
  background-color: var(--color-blue);
}
.block-cta .container h2 {
  text-align: left;
  color: var(--color-white);
}
@media (min-width: 800px) {
  .block-cta .container h2 {
    font-size: 2.8125rem;
  }
}
.block-cta .container p {
  color: var(--color-white);
  font-size: 1.375rem;
  text-wrap: balance;
}
.block-cta .container .btn {
  background-color: var(--color-pink);
}
.block-cta .container .btn:hover {
  background-color: var(--color-aqua);
}
@media (min-width: 800px) {
  .block-cta .container figure {
    border-radius: 1.25rem;
    overflow: hidden;
  }
}

body.home {
  background: transparent;
  background: linear-gradient(90deg, rgb(155, 193, 135) 0%, rgb(177, 200, 101) 33%, rgb(204, 201, 111) 65%, rgb(189, 204, 171) 100%);
}
body.home #page {
  background-image: url("../../img/home-bg.svg");
  background-repeat: no-repeat;
  background-size: 8000px;
  background-position: 50% 20vw;
}
body.home #home-intro,
body.home #home-video {
  position: relative;
  z-index: 4;
}
body.home #home-intro p,
body.home #home-video p {
  color: var(--color-blue-dark);
}
body.home h2 {
  font-weight: 800;
  color: var(--color-white);
}
body.home #page {
  position: relative;
}
@media (min-width: 1300px) {
  body.home #page:after {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    pointer-events: none;
    background-image: url("../../img/home-bg-1.webp");
    background-repeat: no-repeat;
    background-size: 1617px;
    background-position: 50% 13vw;
    z-index: 0;
  }
  body.home #home-video .home-video-description {
    max-width: 880px;
  }
  body.home .home-hero {
    margin-bottom: 100px;
  }
}

.home-hero {
  animation: fadeIn 0.34s ease-in-out;
  z-index: 99;
  overflow: hidden;
  border-bottom-left-radius: 4.68vw;
  border-bottom-right-radius: 4.68vw;
  background: #49948A;
  background: url("../../img/home-hero-bg-2.svg"), linear-gradient(0deg, rgb(73, 148, 138) 0%, rgb(57, 120, 130) 100%);
  background-size: 150%;
  background-position: 50% 0%;
  background-repeat: no-repeat;
}
.home-hero .container {
  max-width: 1550px;
}
.home-hero h1 {
  text-wrap: balance;
  position: relative;
  z-index: 3;
  font-size: clamp(3.125rem, 6.5104166667vw, 100px);
  font-weight: 800;
  line-height: 0.9;
  color: var(--color-white);
  margin-bottom: 0.25em;
}
@media (max-width: 799px) {
  .home-hero h1 {
    font-size: clamp(3.125rem, 4.1666666667vw, 80px);
  }
}
.home-hero p {
  text-wrap: balance;
  position: relative;
  z-index: 3;
  font-size: clamp(1.25rem, 1.6666666667vw, 28px);
  font-weight: 600;
  line-height: 1.33;
  color: var(--color-white);
}
@media (max-width: 1299px) {
  .home-hero p br {
    display: none;
  }
}
@media (max-width: 799px) {
  .home-hero p {
    font-size: clamp(1.5625rem, 2.6041666667vw, 50px);
  }
}
.home-hero .large p {
  max-width: 24ch;
  text-wrap: balance;
  font-size: clamp(1.875rem, 2.1875vw, 48px);
}
@media (max-width: 799px) {
  .home-hero .large {
    font-size: clamp(2.1875rem, 3.125vw, 60px);
  }
}
@media (min-width: 800px) {
  .home-hero h1 {
    width: 50%;
    max-width: 14ch;
  }
  .home-hero p {
    width: 50%;
    max-width: 46ch;
  }
}
@media (max-width: 799px) {
  .home-hero .btn {
    font-size: clamp(1rem, 4.58vw, 19px);
  }
  .home-hero {
    padding-bottom: 100vw;
  }
}
.home-hero .btn {
  position: relative;
  z-index: 3;
}
.home-hero:before {
  content: "";
  display: block;
  background-image: url("../../img/visual-home-hero.webp");
  background-repeat: no-repeat;
  background-size: contain;
  width: 36.197917vw;
  height: 37.03125vw;
  position: absolute;
  bottom: 0;
  right: 12.375vw;
  z-index: 2;
  animation: homeHeroVisualReveal 1.18s 0.4s ease both;
  transform-origin: bottom center;
}
@media (max-width: 799px) {
  .home-hero:before {
    width: 95vw;
    height: 95vw;
    right: -5vw;
  }
}
.home-hero:after {
  will-change: transform, opacity;
  --home-hero-tree-scale: 1;
  --home-hero-tree-rotate: 0deg;
  pointer-events: none;
  content: "";
  display: block;
  background-image: url("../../img/home-hero-bg.svg");
  background-repeat: no-repeat;
  background-size: contain;
  animation: homeHeroTreeReveal 1.5s ease-out both, homeHeroTreeSway 12s ease-in-out 1.5s infinite;
  transform: translateZ(0) scale(var(--home-hero-tree-scale)) rotate(var(--home-hero-tree-rotate));
  transform-origin: bottom center;
  width: 53vw;
  height: 33vw;
  position: absolute;
  bottom: -1.5vw;
  right: -1vw;
  z-index: 1;
}
@media (max-width: 799px) {
  .home-hero:after {
    width: 100vw;
    height: 60vw;
    bottom: 0;
    right: -8qvw;
  }
}

#home-video h2 {
  color: var(--color-white);
  font-size: 3.125rem;
}
#home-video a {
  border-radius: 1.25rem;
}
#home-video .home-video-description p {
  font-size: 1.375rem;
  font-weight: bold;
}

#home-quicklinks h2 {
  font-size: 3.125rem;
}
#home-quicklinks h2:before {
  content: "";
  display: block;
  width: 170px;
  height: 160px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 10px;
  background-image: url("../../img/icon-flessenpost.webp");
  background-size: contain;
  background-repeat: no-repeat;
}
#home-quicklinks #home-quicklink-1 {
  background-color: var(--color-aqua);
}
#home-quicklinks #home-quicklink-1 a.btn:hover {
  background-color: var(--color-blue-dark);
}
#home-quicklinks #home-quicklink-2 {
  background-color: var(--color-blue);
}
#home-quicklinks #home-quicklink-2 a.btn {
  background-color: var(--color-blue-dark);
}
#home-quicklinks #home-quicklink-2 a.btn:hover {
  background-color: var(--color-black);
}
#home-quicklinks #home-quicklink-3 {
  background-color: var(--color-blue-dark);
}
#home-quicklinks #home-quicklink-3 a.btn {
  background-color: var(--color-blue);
}
#home-quicklinks #home-quicklink-3 a.btn:hover {
  background-color: var(--color-aqua);
}

#home-stats {
  background-color: var(--color-white);
  color: var(--color-blue-dark);
}
@media (min-width: 800px) {
  #home-stats {
    padding-top: 30px;
    padding-bottom: 30px;
  }
}
#home-stats .container .home-stat {
  border: none;
}
#home-stats .container .home-stat h2 {
  font-size: 3.75rem;
  color: var(--color-blue-dark);
}
#home-stats .container .home-stat p {
  font-size: 1.125rem;
  font-weight: bold;
}
#home-guideportal {
  position: relative;
  z-index: 999;
}
#home-guideportal h2 {
  font-size: 3.125rem;
}
#home-guideportal p {
  font-size: 1.25rem;
  text-wrap: balance;
  color: var(--color-white);
}
#home-guideportal a {
  font-size: 1.125rem;
  font-weight: bold;
  color: var(--color-white);
}
#home-guideportal a img {
  color: var(--color-white);
  filter: invert(100%);
}
#home-guideportal #home-guide {
  background-color: var(--color-aqua);
}
#home-guideportal #home-portal {
  background-color: var(--color-blue-dark);
}
body.page-template-template-contact .entry-header-contact {
  background-image: url("../../img/contact-bg.svg");
  background-color: rgba(20, 150, 138, 0.7);
  background-size: 75%;
  background-position: 150% 50%;
  background-repeat: no-repeat;
}
body.page-template-template-contact .entry-header-contact h1.entry-title {
  display: none;
}
body.page-template-template-contact .entry-header-contact h2 {
  font-size: 2.1875rem;
  text-wrap: balance;
  color: var(--color-blue-dark);
}
body.page-template-template-contact .entry-header-contact .form-box {
  border-radius: 1em;
}
body.page-template-template-contact .entry-header-contact .form-box input[type=submit] {
  background-color: var(--color-pink);
}
body.page-template-template-contact .entry-header-contact .form-box input[type=submit]:hover {
  background-color: var(--color-blue);
}
@media (min-width: 800px) {
  body.page-template-template-contact .entry-header-contact:after {
    background-image: url("../../img/bg-contact-scribles.svg");
  }
}

.contact-info .contact-info-btns > :first-child {
  background-color: var(--color-pink);
}
.contact-info .contact-info-btns > :first-child img {
  filter: brightness(0) saturate(100%) invert(43%) sepia(86%) saturate(775%) hue-rotate(323deg) brightness(110%) contrast(77%);
}
.contact-info .contact-info-btn {
  background-color: var(--color-aqua);
  border-radius: 1.34rem;
}
.contact-info .contact-info-btn h2 {
  color: var(--color-white) !important;
}
.contact-info .contact-info-btn figure {
  background-color: var(--color-white);
  border-radius: 0.5rem;
}
.contact-info .contact-info-btn figure img {
  filter: brightness(0) saturate(100%) invert(43%) sepia(81%) saturate(412%) hue-rotate(125deg) brightness(93%) contrast(93%);
}
.contact-info .contact-info-map {
  border: 5px solid var(--color-blue-dark);
  font-size: 0;
  overflow: hidden;
  border-radius: 1.34rem;
}
.contact-info .social-links ul li a img {
  filter: brightness(0) saturate(100%) invert(15%) sepia(35%) saturate(3639%) hue-rotate(209deg) brightness(91%) contrast(89%);
}
body.blog #page {
  background-color: rgba(0, 103, 129, 0.737254902);
}
body.blog h2 {
  font-weight: 800;
  color: var(--color-white);
}

body.single,
body.page:not(body.home),
body.blog,
body.archive,
body.search-results {
  background-color: var(--color-background);
  background-image: url("../../img/body-bg.svg");
  background-repeat: no-repeat;
  background-size: 8000px;
  background-position: 50% 0;
}
@media (min-width: 800px) {
  body.single,
  body.page:not(body.home),
  body.blog,
  body.archive,
  body.search-results {
    position: relative;
  }
  body.single #parallax-left,
  body.single #parallax-right,
  body.page:not(body.home) #parallax-left,
  body.page:not(body.home) #parallax-right,
  body.blog #parallax-left,
  body.blog #parallax-right,
  body.archive #parallax-left,
  body.archive #parallax-right,
  body.search-results #parallax-left,
  body.search-results #parallax-right {
    display: none !important;
  }
  body.single main,
  body.page:not(body.home) main,
  body.blog main,
  body.archive main,
  body.search-results main {
    position: relative;
    z-index: 3;
  }
}
body.single a.back,
body.page:not(body.home) a.back,
body.blog a.back,
body.archive a.back,
body.search-results a.back {
  font-weight: bold;
  margin-bottom: 2em;
  display: inline-block;
}

.page-template-template-downloads table {
  margin-bottom: 3em;
}
.page-template-template-downloads table caption {
  background-color: var(--color-aqua);
  border-top-left-radius: 2rem;
  border-top-right-radius: 2rem;
  font-weight: 800;
}
.page-template-template-downloads table tr:last-child td:first-child {
  border-bottom-left-radius: 2rem;
  padding-bottom: 0.67em;
  border-bottom: 0;
}
.page-template-template-downloads table tr:last-child td {
  border: 0;
}
.page-template-template-downloads table tr:last-child td:last-child {
  border-bottom-right-radius: 2rem;
  padding-bottom: 0.67em;
  border-bottom: 0;
}
.page-template-template-downloads table td {
  border-bottom: 1px solid #C4C4C4;
}
.page-template-template-downloads table td.no-padding {
  padding-left: 0;
  padding-right: 0;
}
.page-template-template-downloads table .extension {
  border-radius: 0.25em;
  font-weight: bold;
  background-color: var(--color-black);
}
.page-template-template-downloads table .extension.pdf {
  background-color: var(--color-aqua);
}
.page-template-template-downloads table .extension.docx, .page-template-template-downloads table .extension.doc {
  background-color: #095FAB;
}
.page-template-template-downloads table .extension.xlsx {
  background-color: var(--color-black);
}
.page-template-template-downloads table .btn {
  font-weight: normal;
  background-color: var(--color-white);
  color: var(--color-black);
  border: 1px solid var(--color-black);
}
.page-template-template-downloads .entry-content > table:nth-child(odd) caption {
  background-color: var(--color-pink);
}

#skoe-pictures {
  background-color: rgba(212, 52, 41, 0.7);
}
#skoe-pictures h2 {
  font-weight: 800;
  margin-bottom: 1em;
  color: var(--color-white);
}

#skoe-pictures-large img,
#skoe-pictures-thumbnails img {
  border-radius: 1.34rem;
}

@media (max-width: 1299px) {
  #skoe-pictures-thumbnails img {
    border-radius: 0.34rem;
  }
}
div.agenda div.month h2 {
  color: var(--color-black);
}
div.agenda div.month div.agenda-item {
  border-radius: 0.8em;
  box-shadow: 0px 5px 3px 0px rgba(0, 0, 0, 0.06), 0px 7px 18px 0px rgba(0, 0, 0, 0.08);
  background-color: var(--color-white);
}
div.agenda div.month div.agenda-item h3,
div.agenda div.month div.agenda-item p {
  font-size: 1.25rem;
}
div.agenda div.month div.agenda-item h3 {
  font-weight: 800;
}
div.agenda div.month:nth-child(3n+1) div.agenda-item h3 {
  color: var(--color-pink);
}
div.agenda div.month:nth-child(3n+2) div.agenda-item h3 {
  color: var(--color-aqua);
}
div.agenda div.month:nth-child(3n+3) div.agenda-item h3 {
  color: var(--color-blue-dark);
}
