@charset "UTF-8";
[data-tooltip]:before {
  /* needed - do not touch */
  content: attr(data-tooltip);
  position: absolute;
  opacity: 0;
  /* customizable */
  transition: all 0.15s ease;
  padding: 10px;
  color: #333;
  border-radius: 10px;
  box-shadow: 2px 2px 1px silver;
}

[data-tooltip]:hover:before {
  /* needed - do not touch */
  opacity: 1;
  /* customizable */
  background: yellow;
  margin-top: -50px;
  margin-left: 20px;
}

[data-tooltip]:not([data-tooltip-persistent]):before {
  pointer-events: none;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  border: 0;
  font-family: Roboto, sans-serif;
}

a {
  text-decoration: none;
}

body {
  background-color: #333;
  font-size: 18px;
}

nav {
  display: block;
  width: calc(100vw - 0px);
  position: fixed;
  z-index: 10;
  transition: transform 0.25s ease;
}
@media screen and (max-width: 500px) {
  nav.scroll-active {
    transform: translateY(-55px);
  }
}
nav #info-header {
  background-color: #333;
  color: #f0f0f0;
  height: 60px;
  display: flex;
  align-items: center;
  padding: 0 20px;
}
nav #info-header .title {
  color: inherit;
  font-family: "Playfair Display", serif;
  font-size: 30px;
  font-weight: 200;
}
@media screen and (max-width: 650px) {
  nav #info-header .title {
    font-size: 25px;
  }
}
@media screen and (max-width: 500px) {
  nav #info-header .title {
    font-size: 15px;
  }
}
@media screen and (max-width: 375px) {
  nav #info-header .title {
    font-size: 14px;
  }
}
nav #info-header .fill {
  flex-grow: 1;
}
nav #info-header .contact {
  color: #f4f4f4;
  border-color: #f4f4f4;
  display: flex;
  flex-direction: row;
  align-items: center;
  transition: color 0.25s, border-color 0.25s;
}
nav #info-header .contact:not(:last-child) {
  margin-right: 40px;
}
@media screen and (max-width: 1150px) {
  nav #info-header .contact:not(:last-child) {
    margin-right: 20px;
  }
  nav #info-header .contact .text {
    display: none;
  }
}
nav #info-header .contact:hover {
  color: #eab840;
  border-color: #eab840;
}
nav #info-header .contact .icon {
  margin-right: 5px;
  font-size: 20px;
  width: 40px;
  height: 40px;
  border-width: 1px;
  border-style: solid;
  border-color: inherit;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}
nav #info-header .contact .text {
  margin-left: 5px;
  padding-left: 5px;
  border-color: inherit;
  border-left-width: 1px;
  border-style: solid;
  font-size: 14px;
  font-weight: 200;
}
nav #nav-header {
  border-bottom: 1px solid #333;
  background-color: #f4f4f4;
  color: #333;
  opacity: 0.9;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 500px) {
  nav #nav-header {
    height: initial;
    opacity: 1;
  }
}
nav #nav-header .link {
  display: flex;
  font-size: 18px;
  cursor: pointer;
  margin: 0px 20px;
  transition: border 0.25s linear;
  color: #333;
}
nav #nav-header .link a {
  color: #333;
}
@media screen and (max-width: 500px) {
  nav #nav-header .link {
    align-items: center;
    justify-content: center;
    flex-grow: 1;
    margin: 0px 0px;
    height: 40px;
  }
  nav #nav-header .link a .text, nav #nav-header .link a .icon {
    color: #222 !important;
  }
  nav #nav-header .link:nth-child(1) {
    background-color: #6abdca;
  }
  nav #nav-header .link:nth-child(2) {
    background-color: #64b986;
  }
  nav #nav-header .link:nth-child(3) {
    background-color: #eab840;
  }
  nav #nav-header .link:nth-child(4) {
    background-color: #ee725d;
  }
}
nav #nav-header .link a.info {
  padding-left: 5px;
  color: #eab840;
}
nav #nav-header .link a.info:hover {
  color: #111;
}
@media screen and (max-width: 650px) {
  nav #nav-header .link {
    font-size: 12px;
  }
  nav #nav-header .link .hide {
    display: none;
  }
}
nav #nav-header .link .icon {
  padding-right: 5px;
}
nav #nav-header .link:nth-child(4) .icon {
  color: #6abdca;
}
nav #nav-header .link:nth-child(3) .icon {
  color: #64b986;
}
nav #nav-header .link:nth-child(2) .icon {
  color: #eab840;
}
nav #nav-header .link:nth-child(1) .icon {
  color: #ee725d;
}
nav #nav-header .link:hover:nth-child(4) .text {
  border-top: 2px solid #6abdca;
  border-bottom: 2px solid #6abdca;
}
nav #nav-header .link:hover:nth-child(3) .text {
  border-top: 2px solid #64b986;
  border-bottom: 2px solid #64b986;
}
nav #nav-header .link:hover:nth-child(2) .text {
  border-top: 2px solid #eab840;
  border-bottom: 2px solid #eab840;
}
nav #nav-header .link:hover:nth-child(1) .text {
  border-top: 2px solid #ee725d;
  border-bottom: 2px solid #ee725d;
}

.event-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px;
  min-width: 250px;
  flex: 1 1 0;
}
.event-container .title {
  font-family: "Playfair Display", serif;
  color: #888;
  font-size: 20px;
  padding: 10px;
}
.event-container .events {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
}
@media screen and (max-width: 500px) {
  .event-container .title {
    font-size: 14px;
  }
  .event-container .events {
    display: block;
    width: 100vw;
    white-space: nowrap;
    overflow-x: auto;
  }
}

.event {
  flex-grow: 1;
  margin: 5px;
  background-color: #fff;
  color: #333;
  border: 1px solid #ddd;
  border-radius: 3px;
  padding: 10px;
  overflow: hidden;
  min-width: 150px;
  min-height: 200px;
  max-width: 200px;
  -ms-hyphens: auto;
  -webkit-hyphens: auto;
  hyphens: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media screen and (max-width: 500px) {
  .event {
    padding: 5px;
    font-size: 14px;
    min-width: 125px;
    display: inline-flex;
  }
}
.event .date {
  display: flex;
  flex-direction: row;
}
.event .date .part {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.event .date .part.dash {
  align-self: center;
  padding: 5px;
}
.event .date .part .day {
  font-size: 40px;
  font-weight: 600;
}
.event .date .part .month, .event .date .part .weekday {
  font-size: 14px;
}
.event .divider {
  width: 100%;
  height: 1px;
  background-color: #6abdca;
  margin: 5px 0;
}
.event .time {
  font-size: 14px;
}
.event .title {
  color: #333;
  margin-top: 10px;
  font-family: "Playfair Display", serif;
  word-break: break-word;
}
.event:hover .title {
  text-decoration: underline;
}

section .article.plain.category-förderverein {
  border: 1px solid #ee725d;
}
section .article.plain.category-förderverein .preview .date::after {
  content: "Neues vom Förderverein";
  display: block;
  font-size: 14px;
  padding: 4px;
  border-radius: 2px;
  font-style: normal;
  font-family: "Roboto", sans-serif;
  background-color: #64b986;
  color: white;
  margin: 4px 0px;
}
@media screen and (max-width: 500px) {
  section .article.plain.category-förderverein {
    border: none;
  }
  section .article.plain.category-förderverein .preview {
    postion: relative;
  }
  section .article.plain.category-förderverein .preview::after {
    content: "Neues vom Förderverein";
    display: block;
    font-size: 12px;
    position: absolute;
    left: 10px;
    top: 10px;
    background-color: #64b986;
    color: white;
    border-radius: 30px;
    padding: 3px 10px;
  }
}

body.förderverein header.header_förderverein {
  height: 50vh;
  color: white;
  background: linear-gradient(rgba(106, 189, 202, 0.75), rgba(100, 185, 134, 0.75)), url(/user/themes/gse-theme/images/Schule_Zeichnung.png) no-repeat center fixed;
  background-size: cover;
  flex-direction: column;
}
body.förderverein header.header_förderverein h1, body.förderverein header.header_förderverein h2 {
  text-shadow: 1px 1px 3px black;
  text-align: center;
}
@media screen and (max-width: 500px) {
  body.förderverein header.header_förderverein h1, body.förderverein header.header_förderverein h2 {
    font-size: 24px;
  }
  body.förderverein header.header_förderverein h1 strong, body.förderverein header.header_förderverein h2 strong {
    display: block;
  }
}
body.förderverein header.header_förderverein h2 {
  font-family: "Playfair Display", serif;
}
body.förderverein section.förderverein.footer {
  padding: 30px;
  background-color: #ddd;
  color: #333;
  font-size: 12px;
}
body.förderverein section.förderverein.footer p:not(:last-child) {
  margin-bottom: 10px;
}
body.förderverein section.desc-content {
  display: flex;
  flex-direction: row;
  margin: 1vw;
  justify-content: space-evenly;
  font-size: 16px;
}
@media screen and (max-width: 1200px) {
  body.förderverein section.desc-content {
    flex-direction: column;
  }
}
@media screen and (max-width: 500px) {
  body.förderverein section.desc-content {
    margin: 0;
  }
}
body.förderverein section.desc-content div.description {
  padding: 60px;
  border-radius: 90px;
  width: 30vw;
}
body.förderverein section.desc-content div.description:nth-child(1) {
  background-color: #64b986;
}
body.förderverein section.desc-content div.description:nth-child(2) {
  background-color: #eab840;
}
body.förderverein section.desc-content div.description:nth-child(3) {
  background-color: #ee725d;
}
body.förderverein section.desc-content div.description h1 {
  font-weight: normal;
}
body.förderverein section.desc-content div.description p:not(:last-child) {
  margin-bottom: 10px;
}
@media screen and (max-width: 1200px) {
  body.förderverein section.desc-content div.description {
    padding: 20px;
    width: auto;
    border-radius: 0;
  }
}
@media screen and (min-width: 1201px) {
  body.förderverein section.desc-content div.description {
    box-shadow: 15px 15px 40px black;
  }
}
@media screen and (max-width: 500px) {
  body.förderverein section.desc-content div.description {
    padding: 20px;
  }
  body.förderverein section.desc-content div.description .collapsible-header {
    display: flex;
    align-items: center;
    flex-direction: row;
  }
  body.förderverein section.desc-content div.description .collapsible-header::before {
    content: "▶";
    font-size: 20px;
    padding-right: 10px;
    transition: transform 0.25s ease-out;
  }
  body.förderverein section.desc-content div.description .collapsible-header:not(.open) ~ * {
    display: none;
  }
  body.förderverein section.desc-content div.description .collapsible-header.open {
    margin-bottom: 10px;
  }
  body.förderverein section.desc-content div.description .collapsible-header.open::before {
    transform: rotate(90deg);
  }
}

@keyframes move_eule {
  0% {
    left: 100vw;
    opacity: 1;
  }
  100% {
    left: -500px;
    opacity: 1;
  }
}
@keyframes shake_eule {
  0% {
    margin-top: 0px;
  }
  100% {
    margin-top: 10px;
  }
}
#eulenpost {
  position: absolute;
  display: inline-block;
  width: 500px;
  top: 90px;
  z-index: 1000;
  opacity: 0;
  animation: 15s linear 2s infinite move_eule, 1s ease-in-out infinite alternate shake_eule;
}

@keyframes swing {
  0% {
    transform: rotateZ(2deg);
  }
  50% {
    transform: rotateZ(-2deg);
  }
  100% {
    transform: rotateZ(2deg);
  }
}
section .article.plain.category-wiewärsdamit {
  border: 1px solid #eab840;
}
section .article.plain.category-wiewärsdamit::after {
  content: "Wie wär´s denn damit?";
  display: block;
  font-size: 20px;
  padding: 10px 20px;
  border-radius: 5px;
  font-style: normal;
  font-family: "Roboto", sans-serif;
  background-color: #eab840;
  color: white;
  margin: 0px 5px;
  writing-mode: vertical-lr;
  text-align: center;
  font-variant: titling-caps;
}
@media screen and (max-width: 850px) {
  section .article.plain.category-wiewärsdamit::after {
    font-size: 14px;
    margin: 5px 0px;
    padding: 5px;
    writing-mode: horizontal-tb;
  }
}

body.wiewärsdamitGIBTSNICHT header.header_förderverein {
  height: 50vh;
  color: white;
  background: linear-gradient(rgba(106, 189, 202, 0.75), rgba(100, 185, 134, 0.75)), url(/user/themes/gse-theme/images/Schule_Zeichnung.png) no-repeat center fixed;
  background-size: cover;
  flex-direction: column;
}
body.wiewärsdamitGIBTSNICHT header.header_förderverein h1, body.wiewärsdamitGIBTSNICHT header.header_förderverein h2 {
  text-shadow: 1px 1px 3px black;
  text-align: center;
}
body.wiewärsdamitGIBTSNICHT header.header_förderverein h2 {
  font-family: "Playfair Display", serif;
}
body.wiewärsdamitGIBTSNICHT header.header_förderverein .image-child {
  position: absolute;
  top: 0px;
  z-index: -1;
  transform-origin: top center;
  transform: scale(0.5);
}
body.wiewärsdamitGIBTSNICHT header.header_förderverein .image-child.left {
  left: 10vw;
}
body.wiewärsdamitGIBTSNICHT header.header_förderverein .image-child.right {
  right: 10vw;
}
body.wiewärsdamitGIBTSNICHT header.header_förderverein .image-child.right img {
  animation-delay: 0.7s;
}
body.wiewärsdamitGIBTSNICHT header.header_förderverein .image-child img {
  transform-origin: top center;
  animation-direction: alternate;
  animation: 2.2s ease infinite normal swing;
  filter: drop-shadow(black 5px 5px 10px);
}
body.wiewärsdamitGIBTSNICHT section.förderverein.footer {
  padding: 30px;
  background-color: #ddd;
  color: #333;
  font-size: 12px;
}
body.wiewärsdamitGIBTSNICHT section.förderverein.footer p:not(:last-child) {
  margin-bottom: 10px;
}
body.wiewärsdamitGIBTSNICHT section.desc-content {
  display: flex;
  flex-direction: row;
  margin: 1vw;
  justify-content: space-evenly;
  font-size: 16px;
}
@media screen and (max-width: 1200px) {
  body.wiewärsdamitGIBTSNICHT section.desc-content {
    flex-direction: column;
  }
}
body.wiewärsdamitGIBTSNICHT section.desc-content div.description {
  padding: 60px;
  border-radius: 90px;
  width: 30vw;
}
body.wiewärsdamitGIBTSNICHT section.desc-content div.description:nth-child(1) {
  background-color: #64b986;
}
body.wiewärsdamitGIBTSNICHT section.desc-content div.description:nth-child(2) {
  background-color: #eab840;
}
body.wiewärsdamitGIBTSNICHT section.desc-content div.description:nth-child(3) {
  background-color: #ee725d;
}
body.wiewärsdamitGIBTSNICHT section.desc-content div.description h1 {
  font-weight: normal;
}
body.wiewärsdamitGIBTSNICHT section.desc-content div.description p:not(:last-child) {
  margin-bottom: 10px;
}
@media screen and (max-width: 1200px) {
  body.wiewärsdamitGIBTSNICHT section.desc-content div.description {
    padding: 20px;
    width: auto;
    border-radius: 0;
  }
}
@media screen and (min-width: 1201px) {
  body.wiewärsdamitGIBTSNICHT section.desc-content div.description {
    box-shadow: 15px 15px 40px black;
  }
}

@keyframes swing {
  0% {
    transform: rotateZ(2deg);
  }
  50% {
    transform: rotateZ(-2deg);
  }
  100% {
    transform: rotateZ(2deg);
  }
}
section.nav-groups .groups .link.leseclub {
  border: 10px solid rgba(0, 0, 0, 0);
  max-width: 175px;
  background-image: url("/user/themes/gse-theme/images/erna_leseturm.png");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  flex-direction: column-reverse;
}
@media screen and (max-width: 850px) {
  section.nav-groups .groups .link.leseclub {
    max-width: unset;
    justify-content: center;
    min-height: 70px;
    background-position: 20px;
  }
}
section.nav-groups .groups .link.leseclub .description {
  font-family: "Playfair Display", serif;
  text-shadow: 1px 1px 2px black;
  font-size: 20px;
  display: block;
}
section.nav-groups .groups .link.leseclub .title {
  display: none;
}
section.nav-groups .groups .link.leseclub .icon {
  display: none;
  border: none;
}

body.document-default.category-leseclub .page-content {
  background-image: url("/user/themes/gse-theme/images/paper_texture.png");
  background-repeat: repeat;
  padding: 20px;
  box-shadow: 5px 5px 20px #323232;
  border-radius: 10px;
  min-height: 50vh;
}
body.document-default.category-leseclub .page-content video {
  max-width: 75vw;
  background-color: lightblue;
  border: 1px solid white;
}

@keyframes gradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
.project {
  margin: 10px;
  border-radius: 5px;
  padding: 10px;
}
.project.stadtradeln {
  font-family: "Roboto", sans-serif;
  font-style: normal;
  font-size: 20px;
  font-weight: 400;
  background-color: #93c21e;
  color: #f0fff0;
}
.project.stadtradeln .header {
  display: flex;
  flex-direction: row;
  align-items: center;
  align-content: center;
}
.project.stadtradeln .header i, .project.stadtradeln .header a {
  color: white;
}
.project.stadtradeln .header a {
  text-decoration: underline;
}
.project.stadtradeln .header .text {
  margin-left: 20px;
}
.project.stadtradeln .header .text .title {
  text-transform: uppercase;
  font-weight: 600;
  font-size: 24px;
}
.project.stadtradeln .header img {
  width: 300px;
}
@media screen and (max-width: 749px) {
  .project.stadtradeln .header {
    flex-direction: column;
  }
  .project.stadtradeln .header .text .title {
    font-size: 18px;
  }
  .project.stadtradeln .header .text .subtitle {
    font-size: 18px;
  }
}
.project.stadtradeln .info {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 20px;
}
.project.stadtradeln .info #stadtradeln_statistik:not(.visible) {
  display: none;
}
.project.stadtradeln .info .small {
  font-size: 12px;
}
.project.stadtradeln .info .button {
  width: 95%;
  margin: 5px;
  padding: 5px;
  background: linear-gradient(-45deg, #ffffff40, #f0fff060, #ffffff80, #ffffff10);
  background-size: 400% 400%;
  animation: gradient 10s ease infinite;
  border-radius: 5px;
  cursor: pointer;
  text-align: center;
}
.project.stadtradeln .info .button:hover {
  text-decoration: underline;
}
@media screen and (max-width: 749px) {
  .project.stadtradeln .info .button {
    font-size: 18px;
  }
}

section div.groups {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  background-color: rgba(0, 0, 0, 0.125);
}
@media screen and (max-width: 749px) {
  section div.groups {
    background-color: #ddd;
    flex-direction: column;
  }
}
@media screen and (min-width: 1000px) {
  section div.groups {
    gap: 10px;
    padding: 10px;
    border-top: 1px solid rgba(0, 0, 0, 0.25);
    border-bottom: 1px solid rgba(0, 0, 0, 0.25);
  }
  section div.groups .link {
    border-radius: 5px;
  }
}
section div.groups > .link {
  cursor: pointer;
  flex: 1;
  flex-direction: column;
  min-height: 200px;
  min-width: 150px;
  max-width: 300px;
  background-color: #333;
  display: flex;
  overflow: hidden;
  padding: 30px 10px;
  align-items: center;
  justify-content: space-between;
  color: white;
  transition: background-color 0.25s;
}
section div.groups > .link .title {
  display: flex;
  flex-direction: column;
  align-items: end;
}
section div.groups > .link .title .mobile-description {
  display: none;
  font-size: 12px;
  text-align: right;
}
section div.groups > .link.menu {
  display: none;
  color: #333 !important;
  background-color: #f0f0f0 !important;
}
section div.groups > .link.menu .icon {
  transition: transform 0.25s ease-out;
  background-color: #00000010;
}
section div.groups > .link.menu .icon .la {
  font-size: 20px;
}
section div.groups > .link.menu .title {
  padding: 5px;
  border: 1px solid #d0d0d0;
  border-radius: 20px;
}
section div.groups > .link.menu.visible .icon {
  transform: rotate(90deg);
}
section div.groups > .link.menu:hover .title {
  transform: none;
}
section div.groups > .link.menu:hover .icon .la {
  transform: none;
}
section div.groups > .link.menu:hover .description {
  transform: none;
}
@media screen and (max-width: 749px) {
  section div.groups > .link {
    max-width: unset;
    min-height: unset;
    flex-direction: row;
    flex-flow: row-reverse;
    padding: 5px 20px;
  }
  section div.groups > .link .description {
    display: none;
  }
}
@media screen and (max-width: 500px) {
  section div.groups > .link.menu {
    display: flex;
  }
  section div.groups > .link:not(.menu):not(.nohide):not(.visible) {
    display: none;
  }
  section div.groups > .link .title .mobile-description {
    display: initial;
  }
}
section div.groups > .link .title {
  letter-spacing: 0.05em;
  font-size: 18px;
  transition: transform 0.25s;
}
section div.groups > .link .icon {
  background-color: #00000040;
  border-radius: 3px;
}
section div.groups > .link .icon .la {
  padding: 10px;
  font-size: 40px;
  transition: transform 0.25s;
}
section div.groups > .link .description {
  font-size: 14px;
  text-align: center;
  transition: transform 0.25s;
}
section div.groups > .link:hover .title {
  transform: scale(1.05);
}
section div.groups > .link:hover .icon .la {
  transform: scale(1.1);
}
section div.groups > .link:hover .description {
  transform: scale(1.05);
}
section div.groups > .link:nth-child(4n+2) {
  background-color: rgba(106, 189, 202, 0.8);
}
@media screen and (max-width: 749px) {
  section div.groups > .link:nth-child(4n+2) {
    background-color: #6abdca;
  }
}
section div.groups > .link:nth-child(4n+2):hover {
  background-color: #57b5c3;
}
section div.groups > .link:nth-child(4n+3) {
  background-color: rgba(100, 185, 134, 0.8);
}
@media screen and (max-width: 749px) {
  section div.groups > .link:nth-child(4n+3) {
    background-color: #64b986;
  }
}
section div.groups > .link:nth-child(4n+3):hover {
  background-color: #52b178;
}
section div.groups > .link:nth-child(4n+0) {
  background-color: rgba(234, 184, 64, 0.8);
}
@media screen and (max-width: 749px) {
  section div.groups > .link:nth-child(4n+0) {
    background-color: #eab840;
  }
}
section div.groups > .link:nth-child(4n+0):hover {
  background-color: #e7af29;
}
section div.groups > .link:nth-child(4n+1) {
  background-color: rgba(238, 114, 93, 0.8);
}
@media screen and (max-width: 749px) {
  section div.groups > .link:nth-child(4n+1) {
    background-color: #ee725d;
  }
}
section div.groups > .link:nth-child(4n+1):hover {
  background-color: #ec5e46;
}

main {
  max-height: 100%;
  overflow-x: hidden;
  perspective: 1px;
  perspective-origin: center top;
  transform-style: preserve-3d;
  background-color: #f4f4f4;
}

header {
  height: calc(100vh - 120px);
  position: relative;
  top: 120px;
  vertical-align: top;
  transform-origin: center top;
  transform: translateZ(-1px) scale(2);
  display: flex;
  align-items: center;
  justify-content: center;
}
header .image-container {
  width: 100%;
  position: relative;
  height: calc(100vh + 140px);
}
header .buttons {
  display: flex;
  flex-direction: rows;
  width: 95vw;
  justify-content: space-between;
}
header .buttons .btn-move {
  cursor: pointer;
}
header .btn-scroll-down {
  cursor: pointer;
  transition: color 0.25s;
}
header .btn-scroll-down:hover {
  color: #eab840;
}
header div.showcase-counter {
  position: absolute;
  bottom: 15%;
  display: flex;
}
header div.showcase-counter div {
  width: 10px;
  height: 10px;
  background-color: #30303080;
  border: 1px solid #f4f4f4;
  border-radius: 20px;
  margin: 10px;
  box-shadow: 0px 0px 5px #333;
  transition: background-color 1s linear;
}
header div.showcase-counter div.active {
  background-color: #f4f4f480;
}
header .image-container .image:not(:nth-last-child(-n+2)) {
  display: none;
}
header .image-container .image.preload:not(:last-child) {
  display: none;
}
header .image-container .image {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
header .image-container .image div.background, header .image-container .image video.background {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center center;
  object-fit: cover;
  transform: scale(1.33);
  transition: all 15s linear;
}
header .image-container .image.scaled div.background {
  transform: scale(1.4);
}
header .image-container .image div.caption {
  font-size: 50px;
  color: #f4f4f4;
  font-weight: 800;
  padding: 0px 20px;
  text-align: center;
  text-shadow: 0px 0px 5px #222;
  opacity: 0.9;
}
header .image-container .image div.caption a {
  color: white;
  text-decoration: underline;
  display: block;
}
@media screen and (max-width: 600px) {
  header .image-container .image div.caption .title {
    font-size: 30px;
  }
}
header .image-container div.text {
  color: white;
  font-size: 100px;
  font-weight: 100;
  font-variant: small-caps;
  letter-spacing: 0.1em;
}

section {
  overflow: hidden;
  transform: translateZ(0);
}
section .article-container {
  padding: 0px 30px;
  flex: 2 1 0;
}
section .article-container img.avatar {
  display: none;
}
@media screen and (max-width: 600px) {
  section .article-container {
    padding: 0px 5px;
  }
}
@media screen and (max-width: 500px) {
  section .article-container {
    padding: 0px 0px;
  }
}
section .article-container .article-group {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media screen and (min-width: 501px) {
  section .article-container .article-group {
    background-color: white;
    border-radius: 5px;
    border: 1px solid #ccc;
  }
  section .article-container .article-group .article {
    width: 400px;
    flex-grow: 1;
    flex-basis: 0;
  }
  section .article-container .article-group .article .summary-container .quotes {
    display: none;
  }
}
@media screen and (max-width: 850px) {
  section .article-container .article-group .article {
    flex-basis: unset;
  }
}
@media screen and (max-width: 500px) {
  section .article-container .article-group {
    overscroll-behavior-x: none;
    overflow-x: auto;
    display: flex;
    flex-direction: row;
    flex-wrap: unset;
    width: 100vw;
    border: none;
  }
  section .article-container .article-group .article {
    box-shadow: inset 5px 0 10px -5px rgba(0, 0, 0, 0.5);
    min-width: 85vw;
    overflow: hidden;
  }
  section .article-container .article-group .article .preview img {
    width: 85vw;
  }
}
section .article.gallery {
  background-color: #eee;
  color: #333;
  padding: 10px;
  margin: 10px;
  display: flex;
  flex-direction: column;
  transition: background-color 0.25s;
}
section .article.gallery:hover {
  background-color: #eee;
}
section .article.gallery:hover .content a {
  text-decoration: underline;
}
section .article.gallery:hover .content .divider {
  background-color: #ee725d;
}
section .article.gallery .image-container {
  height: 200px;
  overflow: hidden;
  position: relative;
}
section .article.gallery .image-container .inner-container {
  position: absolute;
  left: 0;
  transition: left 2s ease-in-out;
  display: flex;
  flex-direction: row;
}
section .article.gallery .image-container .inner-container .image {
  display: inline-block;
  transition: opacity 0.5s linear, transform 0.5s linear;
  opacity: 0.5;
  transform: scale(0.9);
}
section .article.gallery .image-container .inner-container .image.active {
  transform: scale(1);
  opacity: 1;
}
section .article.gallery .title {
  font-family: "Roboto", sans-serif;
  font-style: normal;
  font-size: 20px;
  font-weight: 400;
  margin-top: 5px;
  margin-bottom: 10px;
  color: #333;
  text-align: center;
}
section .article {
  border-radius: 3px;
}
section .article .date, section .article mobile-date {
  font-family: "Playfair Display", serif;
  font-style: italic;
  font-size: 20px;
  color: #888;
  min-width: 200px;
  text-align: center;
}
section .article .content {
  padding: 10px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-evenly;
  width: 100%;
}
section .article .content .summary-container {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  justify-content: center;
  align-items: center;
}
section .article .content .summary-container .quotes {
  font-size: 90px;
  font-family: "Playfair Display", serif;
  font-style: italic;
  font-weight: 200;
  padding: 10px;
  color: #888;
}
@media screen and (max-width: 850px) {
  section .article .content .summary-container .quotes {
    display: none;
  }
}
section .article .content .summary-container .summary {
  padding: 5px;
}
section .article .content .summary-container .summary * {
  font-family: "Playfair Display", serif;
  font-style: italic;
}
section .article .content .summary-container .summary h1, section .article .content .summary-container .summary h2, section .article .content .summary-container .summary h3, section .article .content .summary-container .summary h4 {
  font-family: "Roboto", sans-serif;
  font-style: normal;
  font-size: 20px;
  font-weight: 400;
  margin-top: 5px;
  margin-bottom: 10px;
}
section .article .content .summary-container .summary img {
  width: 100px;
  height: 100px;
}
section .article .content .divider {
  width: 100%;
  height: 1px;
  margin: 5px 0;
  background-color: #64b986;
  transition: background-color 0.25s;
}
section .article .content .page-link {
  color: #888;
  font-family: "Roboto", sans-serif;
  font-size: 18px;
}
section .article .content .page-link a {
  transition: color 0.25s;
  color: inherit;
}
section .article .content .page-link a:hover {
  color: #333;
}
section .article.bubble {
  font-family: "Roboto", sans-serif;
  position: relative;
  font-size: 18px;
  line-height: 24px;
  min-width: 200px;
  max-width: 700px;
  background: #64b986;
  border-radius: 40px;
  padding: 18px;
  color: #fff;
  margin: 30px;
}
section .article.bubble .date {
  color: #e0e0e0;
  font-size: 16px;
}
section .article.bubble p, section .article.bubble i, section .article.bubble h1, section .article.bubble h2, section .article.bubble h3, section .article.bubble h4, section .article.bubble a {
  font-size: 18px;
  text-decoration: none;
  font-variant: normal;
}
section .article.bubble a {
  color: #e0e0e0;
  text-decoration: underline;
}
section .article.bubble a:hover {
  color: #fff;
}
section .article.bubble h1, section .article.bubble h2, section .article.bubble h3, section .article.bubble h4 {
  font-size: 20px;
  margin-bottom: 10px;
}
section .article.bubble:before {
  content: "";
  width: 0px;
  height: 0px;
  position: absolute;
  border-left: 24px solid #64b986;
  border-right: 12px solid transparent;
  border-top: 12px solid #64b986;
  border-bottom: 20px solid transparent;
  left: 32px;
  bottom: -24px;
}
section .article.bubble .mobile-date {
  display: none;
}
@media screen and (max-width: 500px) {
  section .article.bubble {
    margin: 10px;
    margin-bottom: 30px;
    padding-top: 0px;
  }
  section .article.bubble .date {
    display: none;
  }
  section .article.bubble .mobile-date {
    display: inline-block;
    position: absolute;
    right: -10px;
    top: 10px;
    background-color: white;
    color: #333;
    padding: 3px 3px 3px 10px;
    border-top-left-radius: 50px;
    border-bottom-left-radius: 50px;
    opacity: 0.9;
    border: 1px solid #e0e0e0;
  }
}
section .article.plain {
  background-color: #eee;
  color: #333;
  padding: 10px;
  margin: 10px;
  display: flex;
  flex-direction: row;
  position: relative;
  align-items: stretch;
  transition: background-color 0.25s;
}
section .article.plain .preview img {
  width: 200px;
}
section .article.plain .preview .mobile-date {
  display: none;
}
@media screen and (max-width: 850px) {
  section .article.plain {
    flex-direction: column;
    max-width: 100vw;
    overflow: auto;
  }
}
@media screen and (max-width: 500px) {
  section .article.plain {
    margin: 0px;
    padding-top: 0px;
  }
  section .article.plain .date {
    display: none;
  }
  section .article.plain .preview .mobile-date {
    display: inline-block;
    position: absolute;
    right: 0px;
    top: 10px;
    background-color: white;
    color: #333;
    padding: 3px 3px 3px 10px;
    border-top-left-radius: 50px;
    border-bottom-left-radius: 50px;
    opacity: 0.9;
    border: 1px solid #e0e0e0;
  }
  section .article.plain:hover {
    background-color: #eee;
  }
  section .article.plain:nth-child(4n+1) {
    border-bottom: 3px solid #6abdca;
  }
  section .article.plain:nth-child(4n+2) {
    border-bottom: 3px solid #64b986;
  }
  section .article.plain:nth-child(4n+3) {
    border-bottom: 3px solid #eab840;
  }
  section .article.plain:nth-child(4n+0) {
    border-bottom: 3px solid #ee725d;
  }
  section .article.plain .preview img {
    width: 100vw;
  }
  section .article.plain .content .summary {
    font-size: 16px;
  }
}
section .article.plain.featured .preview img {
  border-radius: 1000px;
  border: 1px solid #f0f0f0;
  box-shadow: 0px 0px 5px #404040;
}
@media screen and (min-width: 851px) {
  section .article.plain.featured {
    flex-direction: row-reverse;
    background: linear-gradient(342deg, #6abdca 0%, #52b178 29%, #eab840 82%, #ee725d 100%);
  }
  section .article.plain.featured .preview img {
    position: relative;
    left: 20px;
    top: 12px;
  }
}
section .article.plain:hover {
  background-color: #fff;
}
section .article.plain:hover .content a {
  text-decoration: underline;
}
section .article.plain:hover .content .divider {
  background-color: #ee725d;
}
section .article.plain .preview {
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  align-items: center;
}
section .article.plain .preview .pdf-item {
  padding: 40px;
  margin: 20px;
  background-color: #f4f4f4;
  color: #ee725d;
  font-size: 60px;
  font-weight: 400;
}

.group-content {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  background-color: inherit;
}
@media screen and (max-width: 1000px) {
  .group-content {
    flex-direction: column;
    align-items: center;
  }
}

footer {
  background-color: #333;
  color: #f4f4f4;
  font-size: 14px;
  display: flex;
  padding: 60px 30px 30px 30px;
  flex-direction: row;
  align-items: center;
  justify-content: space-around;
}
@media screen and (max-width: 800px) {
  footer {
    flex-direction: column;
  }
}
footer a {
  color: #f4f4f4;
}
footer a:hover {
  text-decoration: underline;
}
footer .images {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 800px) {
  footer .images {
    flex-direction: column;
  }
}
footer .images img {
  padding: 10px;
  width: 150px;
}
footer .block {
  padding: 10px;
  display: flex;
  flex-direction: column;
}

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