/* Default REM (root em) size = 16px (Browser Standardschriftgröße) */
* {
  margin: 0;
  padding: 0;
}

body,
html {
  margin: 0;
  padding: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.toggle.open {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 150;
  background: #878787;
  border-color: #878787;
  color: #fff;
}

.toggle.close {
  display: none;
}

a:focus {
  box-shadow: none;
}

.hero {
  background-image: linear-gradient(to bottom, rgba(255, 255, 255, 1), rgba(255, 236, 175, 1.0));
  position: relative;
  padding-top: 0;
  padding-bottom: 0;
}

.hero a {
  color: #969747;
}

.hero a:hover {
  color: #969747;
  text-decoration: none;
}

.hero .hero-body {
  padding-top: 0;
  padding-bottom: 4rem;
}

.hero-body .hero-text {
  align-self: flex-end;
}

.hero-body .site-title {
  padding-bottom: 1rem;
}

.hero-body .hero-logo a {
  display: inline-block;
  max-width: 15rem;
}

.hero-body h1 {
  font-size: 2.25rem;
  display: inline-block;
  font-weight: 700;
  letter-spacing: 1px;
  color: #969747;
  margin-bottom: 0;
  padding-bottom: .75rem;
  border-bottom: 2px solid #969747;
}

.hero-body p.claim {
  font-size: 1.75rem;
  color: #000000;
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 0;
}

.hero-bar {
  padding: .25rem;
  font-size: 1rem;
  font-weight: 700;
  color: white;
  background-color: #969747;
}

.hero-bar .container {
  display: flex;
  justify-content: space-between;
}

.hero-bar .hero-contact {
  display: flex;
  align-items: center;
  font-size: 1rem;
}

.hero-bar .fa {
  margin-right: .25rem;
}

.hero-bar .divider-vert {
  padding: .9rem 1rem;
}

.hero-bar .divider-vert::before {
  border-left: .1rem solid #ffffff;
}

.hero-bar a {
  color: #ffffff;
}

.hero-bar .input-group {
  width: 15rem;
}

.hero-bar .search-btn {
  background-color: #ffecaf;
  color: #878787;
  font-weight: 700;
  border: transparent;
  padding-right: .5rem;
  padding-left: .5rem;
  margin-right: 0;
}

.hero-bar .form-input.search {
  background-color: #ffecaf;
  border: none;
}

.hero-bar .form-input::placeholder {
  color: #000000;
}

.hero-bar .form-input.search:focus {
  box-shadow: none;
}

#main-nav .search-btn {
  background-color: #ffffff;
  color: #878787;
  font-weight: 700;
  border: .05rem solid #cdcccc;
  padding-right: .5rem;
  padding-left: .5rem;
  margin-right: 0;
}

.header .navbar {
  margin: 2rem auto;
  text-transform: uppercase;
}

.header .navbar .navbar-section {
  justify-content: space-between;
}

.header .navbar .navbar-section:first-child .btn {
  font-size: 1.1rem;
  font-weight: 700;
}

.header .navbar .navbar-section .btn:first-child {
  padding-left: 0;
}

.header .navbar .navbar-section .btn:last-child {
  padding-right: 0;
}

.header .navbar .navbar-section a.btn:hover {
  text-decoration: none;
}

.header .navbar .navbar-section form {
  flex: 0 0 65%;
}

.header .navbar a:hover {
  text-decoration: underline;
}

.header .navbar a:focus {
  box-shadow: none;
}

.main {
  color: #000000;
  font-weight: 300;
  padding-bottom: 2rem;
}

.content.max-80 {
  max-width: 80ch;
}

.content.max-60 {
  max-width: 60ch;
}

#grid {
  /* Default REM = 20px */
  display: grid;
  /* grid-template-columns: 7.05rem auto; */
  grid-template-columns: 8rem 1fr;
  grid-template-rows: auto 1fr;
  grid-gap: 1vw 2vw;
  max-width: 1024px;
  margin: 0 auto;
}

#grid.intern {
  grid-template-columns: 10rem 1fr;
}

#grid .navig {
  grid-column: 1;
  grid-column-end: 1;
  grid-row: 1 / span 2;
  padding: 0;
  background-color: #ffffff;
}

#grid .content {
  grid-column-start: 2;
  grid-column-end: -1;
  grid-row: 1;
  padding-left: 1rem;
  overflow-x: hidden;
}

#grid .content.wide {
  grid-column-start: 1;
  padding-left: 0;
}

ul.nav.parent>li:first-child {
  margin-top: 0;
}

ul.nav.parent>li.berlin {
  margin-bottom: 2.5rem;
}

ul.nav.parent>li {
  margin-bottom: 1rem;
}

ul.nav .btn {
  text-align: left;
}

ul.nav .btn-block {
  border: 0;
  text-transform: uppercase;
}

ul.nav .nav-item.level1>a,
ul.nav .nav-item.level1>label {
  color: #ffffff;
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 400;
}

ul.nav .nav-item.level1>a:focus {
  box-shadow: none;
}

ul.nav .nav-item.level1 .btn-block {
  background-color: #969747;
}

ul.nav .nav-item.level1 .btn-block:hover,
ul.nav .nav-item.level1 .btn-block.active {
  background-color: #d2501a;
}

.content h2,
.content .h2 {
  font-size: 1.1rem;
  color: #d2501a;
  font-weight: 700;
  margin-bottom: 1.2rem;
}

.content h2.years {
  margin-top: 1rem;
}

.content h3,
.content .h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
  color: #000000;
}

.content h3 a {
  color: #000000;
}

.content h3 a:hover {
  text-decoration: underline;
}

.page-header {
  margin-top: .2rem;
  margin-bottom: 1rem;
}

.page-header h2 {
  font-size: 1.1rem;
  line-height: 1.4;
  padding-top: .2rem;
  margin-bottom: 0;
  font-weight: 700;
}

.page-header .form-select {
  margin-bottom: 1rem;
}

.text-bold {
  font-weight: 700;
}

ul {
  list-style-position: outside;
}

.content ul {
  list-style: none;
}

.content ul li::before {
  content: "\2981";
  /* Add content: \2022 is the CSS Code/unicode for a bullet */
  color: #969747;
  display: inline-block;
  /* Needed to add space between the bullet and the text */
  width: 1rem;
  /* Also needed for space (tweak if needed) */
  margin-left: -1rem;
  /* Also needed for space (tweak if needed) */
}

.content ul li p {
  display: inline;
  margin: 0;
  padding: 0;
}

.figure-caption,
.block-type-image figcaption,
.block-type-gallery figcaption,
.owl-carousel figcaption {
  font-size: .75rem;
  padding-top: .25rem;
}

.figure .figure-caption {
  margin-top: 0;
}

.block-type-gallery h3.gallery-header {
  margin-bottom: 1rem;
}

.accordion .accordion-header {
  padding: .2rem 0;
}

.accordion .accordion-header:hover {
  color: #969747;
  text-decoration: underline;
  cursor: pointer;
}

.accordion .accordion-header .icon-arrow-right::before {
  border-width: .15rem;
  border-color: #969747;
}

.accordion input:checked~.accordion-header>.icon-arrow-right::before {
  border-color: #d2501a;
}

.accordion input:checked~.accordion-header {
  font-weight: 700;
}

.accordion input:checked~.accordion-header:hover {
  color: #000000;
  text-decoration: none;
  cursor: default;
}

.institution .accordion-header {
  font-weight: 700;
}

.accordion-body ul {
  margin-left: .95rem;
}

.downloads-container {
  margin-top: 2rem;
  margin-bottom: 2rem;
}

ul.download,
ul.linklist,
ul.booklist {
  list-style: none;
  padding: 0;
  margin-left: 0;
}

ul.download li,
ul.linklist li,
ul.booklist li {
  padding-left: 1.7em;
}

ul.download li:before {
  /* content: "\f1c1"; -> PDF-Icon  */
  content: "\f0f6";
  font-family: FontAwesome;
  display: inline-block;
  width: 1.5em;
  margin-left: -1.7em;
}

ul.linklist li:before {
  content: "\f08e";
  font-family: FontAwesome;
  display: inline-block;
  width: 1.5em;
  margin-left: -1.7em;
}

ul.booklist li:before {
  content: "\f02d";
  font-family: FontAwesome;
  display: inline-block;
  width: 1.5em;
  margin-left: -1.7em;
}

ul.institutions {
  margin-left: 1.4rem;
  list-style: none;
}

ul.institutions li:before {
  content: none;
}

#map {
  height: 321px;
}

#map.all {
  height: 540px;
  z-index: 50;
}

.accession-years {
  font-size: .75rem;
  font-weight: 700;
  margin: .5rem 0 2rem 0;
}

.accession-years span:first-child {
  margin-right: .5rem;
}

.accession-years span.label {
  color: #ffffff;
  padding: .1rem .4rem;
  margin-bottom: .2rem;
}

.color-2008 {
  background-color: #885251;
}

.color-2010 {
  background-color: #bf211e;
}

.color-2011 {
  background-color: #d47825;
}

.color-2012 {
  background-color: #e9ce2c;
}

.color-2013 {
  background-color: #b9be5f;
}

.color-2014 {
  background-color: #69a197;
}

.color-2015 {
  background-color: #6279b8;
}

.color-2016 {
  background-color: #355a84;
}

.color-2017 {
  background-color: #770058;
}

.color-2018 {
  background-color: #950952;
}

.color-2019 {
  background-color: #8c6fae;
}

.color-2020 {
  background-color: #0077b6;
}

.color-2021 {
  background-color: #228a8c;
}

.color-2022 {
  background-color: #5f5c65;
}

.color-2023 {
  background-color: #79c7d7;
}

.color-2024 {
  background-color: #c33c54;
}

.color-2025 {
  background-color: #8a6552;
}

.images {
  margin: 2rem 0;
}

nav.pagination {
  display: flex;
  justify-content: space-between;
  margin-top: 2rem;
}

nav.pagination a.btn {
  font-weight: 700;
}

nav.pagination .prev {
  padding-right: .875rem;
}

nav.pagination .next {
  padding-left: .875rem;
}

/* contact-forms */
.form-container {
  margin: 2rem 0;
}

.columns input,
.coluns input:required,
.columns textarea {
  background-color: #ffecaf;
  border: none !important;
}

.form-input:focus {
  box-shadow: none !important;
  background-color: #FFF9E5 !important;
  border: 1px solid #F1C5B4 !important;
}

.honeypot {
  position: absolute;
  left: -9999px;
}

.form-submit {
  padding-top: 1rem;
}

.form-submit .btn.btn-primary {
  color: #fff;
  font-weight: 700;
}

.alert.success,
.alert.error {
  font-weight: 700;
  color: #d2501a;
}

.alert.error {
  font-size: .75rem;
}

.errors {
  font-weight: 700;
  color: #d2501a;
  margin-bottom: 1rem;
}

/* contact-forms Ende */

/* login-form */
#login .alert {
  font-size: .75rem;
  font-weight: 700;
  color: #d2501a;
  margin-bottom: 1rem;
}

/* login-form Ende */

/* Block Styles */
.block.block-type-heading h3 {
  font-size: 1rem;
  font-weight: 700;
  color: #000000;
  margin-bottom: 1rem;
}

.block.block-type-list {
  margin-bottom: 1.2rem;
}

.block.block-type-list ul {
  margin-top: 0;
}

.block.block-type-gallery {
  margin: 1rem 0;
}

.block-type-image figure.half {
  max-width: 50%;
}

.video-container {
  margin-bottom: 1rem;
}

.youtube-container img {
  display: block;
  height: auto;
  max-width: 100%;
}

.youtube-container.disabled:after {
  opacity: 0.2;
}

.youtube-hint-text {
  text-align: center;
  opacity: 0.9;
}

.youtube-hint-text h3 {
  font-size: 1rem;
  font-weight: 700;
  color: #969747;
  margin-bottom: 0;
}

.youtube-hint-text button {
  margin: .75rem 0;
}

.youtube-hint-text p {
  font-size: .75rem;
  margin-bottom: 0;
}

/* Neue Grid-Galerie inherhalb des Gallery-Blocks */
.image-gallery {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 20px;
  margin-left: 0;
}

.image-gallery>li {
  flex-basis: 360px;
  /*width: 360px;*/
  position: relative;
  cursor: pointer;
}

.content ul.image-gallery li::before {
  display: none;
}

.image-gallery::after {
  content: "";
  flex-basis: 360px;
}

.image-gallery li img {
  object-fit: cover;
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

/* Neue Grid-Galerie Ende */

/* Block Styles Ende */

.btn.back-to-top {
  position: fixed;
  bottom: 1rem;
  right: 1rem;
  z-index: 99;
  background: #878787;
  border: 1px solid #878787;
  color: #fff;
}

.btn.back-to-top:focus {
  box-shadow: none;
}

/* Styles für einzelne Templates */

/* 1. aktuelles */
.divider {
  border-top: .05rem solid #f0f0f0;
  height: .05rem;
  margin: 1.5rem 0;
}

.divider:last-of-type {
  display: none;
}

.news h3 {
  margin-top: .1rem;
  margin-bottom: 1rem;
}

.news article h3 {
  margin-bottom: 0;
}

.news span {
  color: #000000;
  font-size: .875rem;
}

.news .figure {
  width: 50%;
  margin-bottom: 1.5rem;
}

.news .figure.full {
  width: 100%;
}

.news .btn.more {
  font-size: 1rem;
  font-weight: 700;
  padding-right: 1.5rem;
  padding-left: 1.5rem;
  margin-bottom: 2rem;
}

.news .content-blocks {
  margin-top: 1rem;
}

dl {
  display: grid;
  grid-template-columns: 5rem 1fr;
}

.institution dl {
  grid-template-columns: 10rem 1fr;
  margin-bottom: 1.5rem;
}

dl dt {
  grid-column-start: 1;
  font-weight: 700;
  color: #d2501a;
}

.institution dl dt {
  color: #000000;
}

dl dd {
  grid-column-start: 2;
  margin: 0 0 1.5rem 0;
  padding-left: 1em;
}

.institution dl dd {
  margin-bottom: 0;
}

.institution dl dd ul,
.institution dl dd ul li {
  margin-top: 0;
}

dl dd time {
  font-weight: 700;
}

dl.event h4 {
  font-size: 1rem;
  font-weight: 300;
}

dl dd .fa {
  color: #969747;
  font-weight: 700;
}

dl dd p {
  margin-bottom: .3rem;
}

dl dd .accordion .accordion-body {
  padding-left: 0;
}

.institution dl dd #map {
  margin-top: .25rem;
  margin-bottom: 1rem;
}

.institution h3.shortdesc-header {
  margin-bottom: .2rem;
}

.institution #longdesc ul {
  padding-left: .4rem;
}

.institution .disclaimer {
  margin: 2rem 0 3rem 0;
  font-size: .875rem;
  font-style: italic;
}

.navbar.prev-next {
  margin-top: 3rem;
}

.navbar.prev-next a {
  font-size: 1.1rem;
  font-weight: 700;
}

.navbar.prev-next a .icon {
  margin-top: -.25rem;
}

#team-subgrid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  grid-auto-rows: minmax(60px, auto);
  grid-gap: 1vw;
  margin: 1rem 0;
}

#team-subgrid .card .card-body {
  padding: .8rem;
}

#team-subgrid .card .card-body .img-responsive {
  border-radius: 50%;
  max-width: 75%;
  margin: 0 auto;
}

#team-subgrid .card .card-title {
  font-weight: 400;
}

#team-subgrid .card-subtitle {
  font-size: .8rem;
  max-width: 90%;
  margin-bottom: .5rem;
}

#team-subgrid .card .credentials {
  font-size: .7rem;
}

#team-subgrid .card-footer {
  display: flex;
  justify-content: space-between;
}

/* 3. standardvorlage */
.figure.donation {
  margin-top: -2rem;
  margin-bottom: 2rem;
  text-align: center;
}

.figure.donation img {
  max-width: 50%;
  border-radius: 50%;
}

/* vorgestellt */
h4.subline {
  margin: 1.5rem 0;
  font-size: 1rem;
  font-weight: 700;
  color: #969747;
  letter-spacing: .5px;
}

/* Ende Styles für einzelne Templates */

/* Styles für den internen Mitgliederbereich */
.page-header.intern {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
}

.page-header.intern .logout a,
.back-to-previous a {
  background-color: #969747;
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 400;
  color: #ffffff;
  padding: .2rem .4rem;
  border: 0;
}

.back-to-previous {
  margin-top: 3rem;
}

.page-header.intern .logout a:hover,
.back-to-previous a:hover {
  background-color: #d2501a;
}

.page-header.intern .logout a:focus {
  box-shadow: none;
}

dl.intern-contact {
  grid-template-columns: 9.5rem 1fr;
  margin-bottom: 1.25rem;
}

dl.intern-contact dt {
  color: #000000;
  font-weight: 300;
}

dl.intern-contact dd {
  margin-bottom: 0;
  padding-left: 0;
}

.group-event-intern h3 {
  margin-bottom: .15rem;
}

.group-event-intern.announcement {
  margin-bottom: 3rem;
}

.group-event-intern.announcement a.invite::before {
  content: "\f0f6";
  font-family: FontAwesome;
  display: inline-block;
  width: 1rem;
  margin-left: .3rem;
}

.group-event-intern.announcement .venue p {
  margin-bottom: 0;
}

.pagination-intern {
  width: min(400px, 100%);
}

.pagination-intern a.next {
  padding-left: 0;
}

/* Ende Styles für den internen Mitgliederbereich */

footer {
  margin-top: auto;
  /* WICHTIG */
  margin-bottom: 1rem;
  font-weight: 300;
}

footer>div:first-child {
  margin-top: 1rem;
}

footer.container .column.logo-label {
  display: flex;
  align-self: center;
}

footer.container .column.logo-label.justified {
  justify-content: center;
}

footer.container .column.logo-label span::after {
  content: ":";
  color: #000000;
}

footer.container .column .img-responsive.fgpg {
  max-height: 51px;
}

footer.container .subfooter {
  padding-top: 1rem;
}

footer.container .columns.subfooter .column {
  display: flex;
  justify-content: flex-end;
}

footer.container .subfooter .navbar .navbar-section {
  padding-top: .2rem;
}

footer.container .subfooter .navbar .navbar-section a {
  font-size: 1rem;
  text-transform: uppercase;
}

footer.container .subfooter .navbar .navbar-section a:focus {
  box-shadow: none;
}

footer.container .subfooter .navbar .navbar-section span:not(:last-child) {
  padding-right: .55rem;
}

footer.container .subfooter .navbar .navbar-section span:not(:last-child):after {
  content: " | ";
  color: #000000;
}

footer.container .subfooter .navbar .navbar-section .btn.btn-link {
  color: #000000;
  font-weight: 300;
}

footer.container .subfooter .navbar .navbar-section .btn.btn-link:hover {
  color: #d2501a;
}

footer.container .subfooter .navbar .navbar-section span:last-child .btn.btn-link {
  padding-right: 0;
}

footer.container .subfooter .navbar .navbar-section .btn:first-child {
  padding-left: 0;
}

@media screen and (max-width: 77.5em) {
  .hero {
    padding-top: .5rem;
  }

  .hero .hero-body {
    padding-bottom: 2rem;
  }

  .hero-body .column.site-title {
    padding-top: 1.25rem;
    padding-bottom: .5rem;
  }

  .hero-body .hero-logo a {
    display: inline-block;
    max-width: 10rem;
  }

  .hero-body h1 {
    font-size: 2rem;
    display: inline-block;
    font-weight: 700;
    letter-spacing: 1px;
    color: #969747;
    margin-bottom: 0;
    padding-bottom: .75rem;
    border-bottom: 2px solid #969747;
  }

  .hero-body p.claim {
    font-size: 1.5rem;
    color: #000000;
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 0;
  }

  .header .navbar {
    margin: 1rem auto;
  }

  .header .navbar .navbar-section form {
    border: .05rem solid #f0f0f0;
  }

  .header .navbar .navbar-section .input-group {
    max-width: 100%;
  }

  .header .navbar .navbar-section .search-btn {
    font-size: .8rem;
  }

  .main {
    margin-bottom: 0;
  }

}

@media screen and (max-width: 65em) {
  .hero-body h1 {
    font-size: 1.75rem;
  }

  .hero-body p.claim {
    font-size: 1rem;
    margin-bottom: .2rem;
  }

}

@media screen and (max-width: 60em) {

  .container,
  .hero .container {
    padding-right: 1rem;
    padding-left: 1rem;
  }

  .hero {
    padding-top: 0;
  }

  .hero .hero-body {
    padding-bottom: 1rem;
  }

  .hero-body .column.site-title {
    padding-top: 1rem;
    padding-bottom: .5rem;
  }

  .hero-body .hero-logo a {
    display: inline-block;
    max-width: 8rem;
  }

  .hero-body .site-title h1 {
    font-size: 1.25rem;
    display: inline-block;
    font-weight: 700;
    letter-spacing: 1px;
    color: #969747;
    margin-bottom: 0;
    padding-bottom: .5rem;
    border-bottom: 2px solid #969747;
  }

  .hero-body p.claim {
    font-size: .875rem;
  }

  .toggle.open,
  .toggle.close {
    display: block;
    background: #d2501a;
    border-color: #d2501a;
    color: #fff;
  }

  .header .navbar {
    flex-direction: column-reverse;
  }

  .header .navbar .navbar-section form {
    flex: 0 0 100%;
  }

  .header .navbar .navbar-section:first-child {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: .25rem;
  }

  .header .navbar .navbar-section:last-child {
    margin-bottom: .5rem;
  }

  .header .navbar .navbar-section:first-child .btn {
    font-size: .8rem;
    padding: 0;
    height: auto;
    padding-top: .1rem;
    padding-right: 0;
    padding-bottom: .1rem;
    padding-left: 0;
    margin-right: auto;
  }

  .header .navbar .navbar-section .btn.btn-link {
    border: .05rem solid #f0f0f0;
    width: 100%;
  }

  .header .navbar form,
  .header .navbar .input-group.input-inline {
    width: 100%;
  }

  .hero-bar .hero-contact {
    font-size: .75rem;
  }

  .hero-bar .divider-vert {
    padding: .9rem .5rem;
  }

  .main {
    margin-top: 1rem;
  }

  #grid {
    margin: 0;
  }

  #grid .navig,
  .main .navig {
    position: fixed;
    /* or choose `absolute` depending on desired behavior*/
    top: 0;
    bottom: 0;
    left: 0;
    min-width: 15rem;
    z-index: 200;
    transition: transform .2s linear;
    transform: translateX(-110%);
    will-change: transform;
    box-shadow: 0 .05rem .2rem rgba(0, 0, 0, .3);
    overflow: scroll;
    background-color: #ffffff;
  }

  #main-nav:target {
    transform: translateX(0);
  }

  .navig ul {
    padding: 1rem;
  }

  label.nav-item.level1 .icon {
    float: right;
  }

  .nav-item.level1 a.label-link {
    padding: 0;
  }

  .nav.children .nav-item a {
    color: #000000;
  }

  .nav.children .nav-item a:hover {
    color: #d2501a;
  }

  .nav.children .nav-item a.active {
    color: #d2501a;
  }

  div.nav.parent.mobile {
    padding: 1rem;
  }

  #grid .content {
    grid-column-start: 1;
    grid-column-end: -1;
    padding: 0;
  }

  .page-header h2,
  .content h2 {
    font-size: 1.2rem;
  }

  .content h3,
  .content .h3 {
    font-size: 1rem;
  }

  .institution dl {
    grid-template-columns: 1fr;
    margin-bottom: 1rem;
  }

  .institution dl dt {
    grid-column-start: 1;
  }

  .institution dl dd {
    grid-column-start: 1;
    padding-left: 0;
  }

  .news .figure {
    width: 100%;
  }

  footer.container .column {
    text-align: center;
  }

  footer.container .column.logo-label {
    display: block;
    margin-bottom: .5rem;
  }

  footer.container .column.logo-label span::after {
    content: "";
  }

  footer.container .column .img-responsive {
    margin: 0 auto 1rem auto;
  }

  footer.container .column .img-responsive.fgpg {
    max-width: 200px;
    max-height: none;
    margin-bottom: 2rem;
  }

  footer.container .column .img-responsive.kpg {
    max-width: 300px;
  }

  footer.container .column .img-responsive.sen {
    max-width: 500px;
  }

  footer.container .columns.subfooter .column {
    justify-content: center;
  }

  .btn.back-to-top {
    bottom: 0;
    right: 0;
    width: 2rem;
  }

  .image-gallery {
    gap: 10px;
  }

  .image-gallery>li {
    /* Firefox */
    flex-basis: -moz-calc(50% - 5px);
    /* WebKit */
    flex-basis: -webkit-calc(50% - 5px);
    /* Opera */
    flex-basis: -o-calc(50% - 5px);
    /* Standard */
    flex-basis: calc(50% - 5px);
  }

  .image-gallery::after {
    content: "";
    /* Firefox */
    flex-basis: -moz-calc(50% - 5px);
    /* WebKit */
    flex-basis: -webkit-calc(50% - 5px);
    /* Opera */
    flex-basis: -o-calc(50% - 5px);
    /* Standard */
    flex-basis: calc(50% - 5px);
  }

}

@media screen and (max-width: 30em) {
  .hero .container {
    padding-right: 0;
    padding-left: 0;
  }

  .hero {
    padding-top: 1rem;
    background-image: none;
    background-color: #969747;
  }

  .hero .columns.mobile-custom {
    max-width: 100%;
  }

  .hero .hero-body {
    padding-bottom: .5rem;
  }

  .hero-body .column.site-title {
    padding-top: 1rem;
    padding-bottom: .5rem;
  }

  .hero-body .hero-logo a {
    display: inline-block;
    max-width: 100%;
  }

  .hero-body h1 {
    font-size: 1.25rem;
    display: inline-block;
    font-weight: 700;
    letter-spacing: 1px;
    color: #969747;
    margin-bottom: 0;
    padding-bottom: .5rem;
    border-bottom: 2px solid #969747;
  }

  .hero-body p.claim {
    font-size: 1rem;
    margin-bottom: .05rem;
  }

  footer.container .column .img-responsive.sen {
    max-width: 100%;
  }

  /* Styles für den internen Mitgliederbereich */

  dl.intern-contact {
    display: inline-block;
  }

  dl.intern-contact dt span {
    display: none;
  }

  /* Ende Styles für den internen Mitgliederbereich */

}

@media screen and (max-width: 25em) {
  #grid .navig {
    width: 100%;
  }
}