@font-face {
  font-family: Lato-local;
  src: url('../fonts/Lato-Thin.ttf') format("truetype");
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Lato-local;
  src: url('../fonts/Lato-Regular.ttf') format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Lato-local;
  src: url('../fonts/Lato-Black.ttf') format("truetype");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Lato-local;
  src: url('../fonts/Lato-Light.ttf') format("truetype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Lato-local;
  src: url('../fonts/Lato-Bold.ttf') format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Merriweather-local;
  src: url('../fonts/Merriweather-Light.ttf') format("truetype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Merriweather-local;
  src: url('../fonts/Merriweather-Black.ttf') format("truetype");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Merriweather-local;
  src: url('../fonts/Merriweather-Bold.ttf') format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Merriweather-local;
  src: url('../fonts/Merriweather-Regular.ttf') format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  --midnight-blue-2: #003;
  --midnight-blue: #071b36;
  --fr-blau: black;
  --steel-blue-2: #1784bb;
  --white-2: white;
  --gold: #d8b914;
  --goldenrod: #bda10f;
  --firebrick: #c92228;
  --cornflower-blue: #55acee;
  --steel-blue: #3765a3;
  --pale-violet-red: #e04c86;
  --medium-sea-green: #3bc984;
  --yellow-green: #78b600;
  --yellow-green-2: #78b60040;
  --black: #0000000d;
  --olive-drab: #65921259;
  --black-2: #333;
  --white-smoke: #f1f1f1;
  --silver: #b9b9b9;
  --tan: #c8ad7a;
  --white: #fff6;
  --black-3: #00000029;
  --burlywood: #e2c798;
  --connyjaeger_beige: #e2c798;
  --dim-grey: #666;
  --dark-grey: #999;
}

body {
  color: #333;
  font-family: Lato-local, sans-serif;
  font-size: 100%;
  line-height: 1.4em;
}

h1 {
  color: #bda10f;
  text-align: center;
  letter-spacing: 0;
  text-transform: uppercase;
  margin-top: 15px;
  font-family: Merriweather-local, sans-serif;
  font-size: 3.2em;
  font-weight: 400;
  line-height: 45px;
}

h2 {
  color: var(--midnight-blue-2);
  text-align: left;
  letter-spacing: .01em;
  text-transform: uppercase;
  margin-top: 0;
  margin-bottom: 20px;
  font-family: Merriweather-local, sans-serif;
  font-size: 2em;
  font-weight: 400;
  line-height: 1.2em;
}

h3 {
  color: #071b36;
  margin-top: 20px;
  margin-bottom: 10px;
  font-size: 1.5em;
  font-weight: 300;
  line-height: 1.3em;
}

h4 {
  color: var(--midnight-blue);
  font-size: 1.3em;
  font-weight: 300;
  line-height: 1.2em;
}

h5 {
  color: #003;
  margin-top: 20px;
  margin-bottom: 10px;
  font-family: Merriweather-local, sans-serif;
  font-size: 1.5em;
  font-weight: 500;
  line-height: 1.2em;
}

p {
  margin-bottom: 20px;
  font-size: 1em;
  font-weight: 400;
  line-height: 1.8em;
}

a {
  color: var(--fr-blau);
  text-decoration: underline;
  transition: color .4s;
}

a:hover {
  color: var(--steel-blue-2);
}

a:focus-visible, a[data-wf-focus-visible] {
  outline-offset: .125rem;
  outline: .125rem solid #000;
}

ul {
  color: #8d8d8d;
  text-align: left;
  margin-top: 20px;
  margin-bottom: 30px;
  padding-left: 20px;
  font-weight: 300;
}

li {
  margin-bottom: 5px;
}

strong {
  font-size: .9em;
  font-weight: 700;
}

blockquote {
  border-left: 5px solid var(--white-2);
  color: var(--white-2);
  margin-top: 20px;
  margin-bottom: 25px;
  padding: 0 20px;
  font-size: 1.8em;
  font-style: italic;
  font-weight: 300;
  line-height: 1.3em;
}

.nav {
  background-color: #003;
  width: 100%;
  padding-top: 25px;
  padding-bottom: 25px;
  padding-left: 25px;
  display: inline-block;
  box-shadow: inset 0 -3px #bda10f;
}

.nav-link {
  opacity: .85;
  color: #071b36;
  text-transform: none;
  margin-left: 42.5px;
  font-size: 1.5em;
  font-weight: 400;
  transition: opacity .35s;
}

.nav-link:hover, .nav-link.w--current {
  opacity: 1;
  color: var(--fr-blau);
}

.nav-link.first {
  padding-left: 0;
}

.nav-link.dropdown {
  font-size: 1em;
}

.section {
  padding-top: 100px;
  padding-bottom: 60px;
  position: relative;
}

.section.top-section {
  padding-top: 0;
  padding-bottom: 0;
}

.footer-section {
  color: #bda10f;
  padding-top: 60px;
  padding-bottom: 60px;
  font-size: .85em;
  position: relative;
}

.footer-section.unterseite {
  background-image: linear-gradient(#003, #003);
}

.menu-button {
  border: 3px solid #bda10f;
  border-radius: 10px;
  width: 100px;
  height: 100px;
  margin: 10px 25px;
  padding: 35px 5px 10px;
  transition: border-color .4s;
  position: absolute;
  top: 0;
  left: 0;
}

.menu-button:hover {
  border-color: var(--white-2);
}

.menu-button.w--open {
  background-image: linear-gradient(to bottom, var(--white-2), var(--white-2));
}

.navbar {
  background-image: linear-gradient(to bottom, var(--white-2), var(--white-2));
  text-align: left;
  width: 705px;
  margin-top: 25px;
  margin-left: auto;
  margin-right: auto;
  box-shadow: 0 1px 30px -10px #071b36;
}

.contact-overlay {
  z-index: 9999;
  opacity: 0;
  text-align: center;
  background-color: #000000e6;
  width: 100%;
  height: 100%;
  padding-top: 50px;
  display: none;
  position: fixed;
  inset: 0;
  transform: scale(1.1);
}

.close-link {
  opacity: .5;
  color: #fff;
  margin-bottom: 20px;
  font-size: 15px;
  text-decoration: none;
  transition: opacity .4s;
  display: block;
}

.close-link:hover {
  opacity: 1;
  color: #fff;
}

.text-field {
  background-color: #ffffff1a;
  border: 1px solid #000000b3;
  border-radius: 3px;
  height: 50px;
  font-size: 16px;
}

.text-field:focus {
  color: #fff;
  border-color: #ffffff4d;
}

.text-field.text-area {
  height: 120px;
}

.form-wrapper {
  width: 50%;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

.submit-button {
  background-color: #55acee;
  border-radius: 3px;
  width: 100%;
  padding-top: 16px;
  padding-bottom: 16px;
  font-size: 17px;
  transition: background-color .4s;
  display: block;
}

.submit-button:hover {
  background-color: #3765a3;
}

.contact-heading {
  color: #fff;
  font-size: 30px;
  line-height: 32px;
}

.small-divider {
  opacity: .2;
  background-color: #fff;
  width: 80px;
  height: 2px;
  margin: 10px auto;
  display: block;
}

.contact-text {
  opacity: .7;
  color: #fff;
  margin-bottom: 20px;
  font-size: 18px;
  font-weight: 300;
  line-height: 22px;
}

.success-message {
  background-color: #2bab68;
}

.success-text {
  color: #fff;
  margin-bottom: 0;
}

.cta-section {
  text-align: center;
  background-color: #3bc984;
  padding-top: 60px;
  padding-bottom: 60px;
}

.cta-heading {
  color: #fff;
  margin-bottom: 18px;
  font-size: 34px;
  font-weight: 700;
  line-height: 40px;
}

.button {
  background-color: var(--fr-blau);
  color: #fff;
  text-transform: uppercase;
  border-radius: 25px;
  margin-top: 20px;
  margin-bottom: 20px;
  padding: 15px 40px;
  font-size: 14px;
  transition: background-color .4s;
}

.button:hover {
  background-color: var(--steel-blue-2);
  color: #fff;
  text-decoration: none;
}

.logo {
  width: 300px;
}

.brand {
  float: right;
}

.nav-container {
  text-align: center;
}

.slider {
  background-color: #0000;
  height: 100%;
}

.statue1 {
  background-image: url('../images/goldenersaal20170209_199.jpg');
  background-position: 50% 0;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
}

.container {
  margin-bottom: 40px;
  padding-top: 20px;
  padding-bottom: 20px;
  position: relative;
}

.slider_text_container {
  background-color: var(--white-2);
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  width: auto;
  height: 50%;
  padding-bottom: 35px;
  padding-left: 35px;
  padding-right: 35px;
  display: flex;
  position: fixed;
  bottom: 0;
  left: 0;
}

.slidertext_1 {
  color: var(--fr-blau);
  text-align: left;
  margin-bottom: 10px;
  font-size: 3.5em;
  font-weight: 400;
  line-height: 1.1em;
}

.telefonlink {
  float: left;
  color: #fff;
  padding-top: 15px;
  padding-bottom: 15px;
  font-size: 1.37em;
  font-weight: 400;
  position: relative;
}

.telefonlink:hover {
  color: #f1f1f1;
  text-decoration: underline;
}

.footerlink {
  color: #bda10f;
}

.footerlink:hover {
  color: var(--white-2);
}

.footerlink.w--current {
  color: #f1f1f1;
}

.footerlink.home {
  color: #071b36;
}

.footerlink.home:hover {
  color: #bda10f;
}

.flexcontainer_footer {
  justify-content: space-between;
  align-items: flex-start;
  display: flex;
}

.iconreihe {
  float: right;
  width: 250px;
  display: block;
}

.utility-page-wrap {
  justify-content: center;
  align-items: center;
  width: 100vw;
  max-width: 100%;
  height: 100vh;
  max-height: 100%;
  display: flex;
}

.utility-page-content {
  text-align: center;
  flex-direction: column;
  width: 260px;
  display: flex;
}

.utility-page-form {
  flex-direction: column;
  align-items: stretch;
  display: flex;
}

.bildsection {
  border-bottom: 3px solid #bda10f;
  height: 400px;
  position: relative;
}

.bildsection.kontakt {
  background-image: url('../images/goldenersaal_gesicht.jpg');
  background-position: 50% 60%;
  background-size: cover;
}

.bildsection.organigramm {
  background-image: url('../images/saal_links.jpg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
}

.bildsection.chronik {
  background-image: url('../images/goldenersaal_tor.jpg');
  background-position: 55% 70%;
  background-repeat: no-repeat;
  background-size: cover;
}

.bildsection.beitreten {
  background-image: url('../images/fuerstenzimmer_augsburg_2.jpg');
  background-position: 50% 66%;
  background-size: cover;
}

.bildsection.aktuelles {
  background-image: url('../images/aktuelles.jpg');
  background-position: 50% 52%;
  background-repeat: no-repeat;
  background-size: cover;
}

.bildsection.spenden {
  background-image: url('../images/goldenersaal_spenden.jpg');
  background-position: 0 -270px;
  background-repeat: no-repeat;
  background-size: cover;
}

.bildsection.shop {
  background-image: url('../images/shop.jpg');
  background-position: 0 -123px;
  background-repeat: no-repeat;
  background-size: cover;
}

.slidertext_2 {
  color: #b9b9b9;
}

.person {
  width: 100%;
}

.divider {
  background-color: #bda10f;
  width: 60px;
  height: 3px;
  margin-top: 10px;
  margin-bottom: 30px;
}

.slider_section {
  border-bottom: 3px solid #bda10f;
  height: 100vh;
  margin-top: -125px;
}

.abschluss_white_top {
  background-image: url('../images/abschluss_weiss_bottom.png');
  background-position: 50% 0;
  background-repeat: no-repeat;
  width: 100%;
  height: 20px;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
}

.abschluss_white_top.content {
  inset: 0 0 auto;
}

.abschluss_white_bottom {
  z-index: 9999;
  background-image: url('../images/abschluss_weiss_top.png');
  background-position: 50% 100%;
  background-repeat: no-repeat;
  flex: none;
  width: 100%;
  height: 20px;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}

.abschluss_grey_bottom {
  background-image: url('../images/abschluss_grey_bottom.png');
  background-position: 50% 100%;
  background-repeat: no-repeat;
  background-size: contain;
  width: 100%;
  height: 20px;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}

.icon {
  color: #bda10f;
  font-size: 1.5em;
}

.uebersicht_saal {
  background-image: url('../images/saal_uebersicht.jpg');
  background-position: 50% 0;
  background-size: cover;
}

.statue2 {
  background-image: url('../images/goldenersaal_principum.jpg');
  background-size: cover;
}

.flexbox_footer {
  text-align: left;
  flex: 1;
  margin-top: 25px;
}

.flexbox_footer._20 {
  flex: none;
  margin-top: 40px;
}

.inner_padding {
  padding-left: 10px;
  padding-right: 10px;
  position: relative;
}

.inner_padding.person {
  background-image: linear-gradient(#003, #003);
  border: 2px solid #bda10f;
  border-radius: 60px;
  padding: 5px;
}

.footer_headline {
  border-bottom: 1px solid var(--gold);
  color: #071b36;
  margin-bottom: 10px;
  padding-bottom: 5px;
  font-size: 1.5em;
}

.footer_headline.unterseite {
  border-bottom-color: var(--white-2);
  color: #bda10f;
  margin-bottom: 10px;
  font-family: Merriweather-local, sans-serif;
  font-size: 1.5em;
}

.flex_container {
  grid-column-gap: 25px;
  grid-row-gap: 25px;
  flex-flow: row;
  justify-content: flex-start;
  align-items: center;
  margin-top: 50px;
  margin-bottom: 50px;
  display: flex;
}

.flexbox_33 {
  background-image: linear-gradient(to bottom, var(--white-2), var(--white-2));
  border: 5px solid #bda10f;
  border-radius: 75px;
  width: 33.3%;
  height: 150px;
  margin-left: 10px;
  margin-right: 10px;
  text-decoration: none;
  transition: color .4s, box-shadow .5s;
}

.flexbox_33:hover {
  box-shadow: inset 0 0 20px #003;
}

.icon_container {
  width: 50px;
  margin-top: 20px;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

.section_contentnavi {
  background-image: linear-gradient(#003, #003);
  padding-top: 60px;
  padding-bottom: 60px;
  position: relative;
}

.text_white {
  color: var(--white-2);
}

.intro_box {
  z-index: 1;
  background-image: linear-gradient(#000033e6, #000033e6);
  border: 3px solid #bda10f;
  border-radius: 70px;
  width: 50%;
  margin-left: auto;
  margin-right: auto;
  padding: 0 15px 20px;
  display: block;
  position: absolute;
  bottom: 125px;
  left: 0;
  right: 0;
}

.header_text {
  color: var(--white-2);
  text-align: center;
  margin-bottom: 15px;
  font-family: Merriweather-local, sans-serif;
  font-size: 1.3em;
  font-style: italic;
  font-weight: 300;
  line-height: 1.3em;
  display: block;
}

.nav_menu {
  background-image: linear-gradient(to bottom, var(--white-2), var(--white-2));
  border-bottom: 3px solid #bda10f;
  border-bottom-right-radius: 75px;
  border-bottom-left-radius: 75px;
  margin-left: auto;
  margin-right: auto;
  padding-bottom: 20px;
  display: block;
}

.h1 {
  color: var(--goldenrod);
  text-align: center;
  margin-top: 15px;
  margin-bottom: 10px;
  font-size: 2em;
}

.button_content {
  background-color: var(--midnight-blue-2);
  color: var(--white-2);
  border-radius: 50px;
  margin-top: 10px;
  margin-bottom: 5px;
  font-family: Merriweather-local, sans-serif;
  transition: color .5s, background-color .5s, border-color .5s, box-shadow .5s;
}

.button_content:hover {
  background-color: var(--white-2);
  box-shadow: inset 0 0 0 2px var(--midnight-blue);
  color: var(--midnight-blue-2);
}

.button_content.invisible {
  display: none;
}

.footer_text {
  color: #071b36;
  font-weight: 400;
}

.product_container {
  margin-top: 50px;
  padding: 20px;
  position: relative;
  box-shadow: 1px 1px 30px -10px #071b36, inset 3px 0 #071b36;
}

.dropdown-list {
  border-right: 1px solid #000;
}

.dropdown-list.w--open {
  background-image: linear-gradient(to bottom, var(--white-2), var(--white-2));
  border-right-style: none;
}

.header_link {
  color: var(--gold);
  text-decoration: none;
  transition-property: none;
}

.header_link:hover {
  color: var(--white-2);
}

.header_link.w--current {
  text-decoration: none;
}

.content_list {
  color: #071b36;
  margin-top: 0;
  margin-bottom: 40px;
}

.lightbox_link {
  margin-top: 10px;
}

.row {
  margin-bottom: 10px;
}

.flexbox_person {
  flex: 0 25%;
  transition: color .4s, box-shadow .5s;
  position: relative;
}

.image_person {
  border-bottom: 3px solid #003;
  border-top-left-radius: 55px;
  border-top-right-radius: 55px;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

.button_header {
  background-image: linear-gradient(#003, #003);
  border: 1px solid #bda10f;
  width: 200px;
  height: 50px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 10px;
  transition: color .4s, border-color .4s;
  display: block;
}

.button_header:hover {
  border-color: var(--white-2);
}

.button_text {
  color: #bda10f;
  text-align: center;
  font-family: Merriweather-local, sans-serif;
  font-weight: 700;
}

.dropdown_icon {
  margin-top: 20px;
  margin-right: 775px;
}

.headerbox_content {
  background-image: linear-gradient(#000033e6, #000033e6);
  border-top: 3px solid #bda10f;
  border-left: 3px solid #bda10f;
  border-right: 3px solid #bda10f;
  border-top-left-radius: 75px;
  border-top-right-radius: 75px;
  width: 35%;
  height: 80px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 5px;
  padding-left: 25px;
  padding-right: 25px;
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}

.text_menu {
  color: #bda10f;
  text-align: center;
  font-size: 1em;
  font-weight: 700;
}

.h4_persons {
  color: var(--gold);
  text-align: center;
  margin-bottom: 5px;
  font-size: 1.1em;
  font-weight: 700;
}

.person_text {
  color: var(--white-2);
  text-align: center;
}

.big_button_text {
  color: var(--midnight-blue);
  text-align: center;
  margin-top: 15px;
  font-size: 1.4em;
  text-decoration: none;
}

.statue_detail {
  background-image: url('../images/goldenersaal20170209_81.jpg');
  background-repeat: no-repeat;
  background-size: cover;
}

.logotype {
  text-transform: uppercase;
  margin-top: 15px;
  margin-bottom: 10px;
  font-family: Merriweather-local, sans-serif;
  font-size: 3.5em;
  font-weight: 300;
  line-height: 45px;
  transition: color .4s;
  display: block;
}

.div-block-10 {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}

.section_button_single {
  z-index: 999;
  box-shadow: none;
  background-color: #003;
  border-bottom: 3px solid #bda10f;
  width: 100%;
  height: 50px;
  margin-bottom: 0;
  margin-left: auto;
  margin-right: auto;
  transition: background-color .3s;
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}

.section_button_single:hover {
  background-color: #bda10f;
}

.link_scroll {
  color: #000;
  text-align: right;
  text-transform: uppercase;
  font-weight: 700;
  text-decoration: none;
  display: block;
}

.container_scroll {
  justify-content: flex-end;
  align-items: center;
  width: 100%;
  height: 100%;
  display: flex;
}

.icon_scroll {
  margin-top: 0;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

.link_block_logo {
  width: 75px;
  margin-top: 5px;
  margin-left: 20px;
  position: absolute;
  bottom: 0;
  left: 0;
}

.header_image {
  width: 50px;
}

.footer_image {
  width: 125px;
  display: block;
}

.textlink {
  color: #003;
  font-weight: 400;
  display: inline-block;
}

.textlink:hover {
  color: #bda10f;
}

.important_text {
  border-bottom: 3px solid #003;
  font-size: 1em;
  line-height: 2.2em;
}

.preis_box {
  background-image: linear-gradient(#003, #003);
  border-top: 3px solid #bda10f;
  border-left: 3px solid #bda10f;
  border-top-left-radius: 30px;
  padding-left: 20px;
  padding-right: 10px;
  position: absolute;
  bottom: 0;
  right: 0;
}

.content_image_big {
  margin-top: 15px;
  margin-bottom: 15px;
}

.ausverkauft_text {
  color: var(--firebrick);
  font-size: 1.2em;
}

.h2-white {
  color: var(--white-2);
}

.header-logowrapper {
  grid-column-gap: 25px;
  grid-row-gap: 25px;
  flex-flow: row;
  justify-content: center;
  align-items: center;
  display: flex;
}

.preis {
  color: var(--gold);
  font-weight: 400;
}

html.w-mod-js [data-ix="tile-1"], html.w-mod-js [data-ix="tile-2"], html.w-mod-js [data-ix="tile-3"], html.w-mod-js [data-ix="tile-4"] {
  opacity: 0;
  transform: scale(.96);
}

html.w-mod-js [data-ix="hero-text"] {
  opacity: 0;
  transform: translate(0, -20px);
}

@media screen and (max-width: 991px) {
  h1 {
    color: #bda10f;
    font-size: 2em;
    line-height: 38px;
  }

  h2 {
    font-size: 1.6em;
  }

  h3 {
    font-size: 1.3em;
  }

  h4 {
    font-size: 1em;
  }

  p {
    font-size: .9em;
  }

  .nav {
    background-color: #071b36;
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .nav-link {
    text-align: center;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding-bottom: 20px;
    display: block;
  }

  .nav-link.first {
    padding-left: 20px;
  }

  .section {
    padding-top: 20px;
    padding-left: 40px;
    padding-right: 40px;
  }

  .section.top-section {
    padding-bottom: 0;
  }

  .footer-section {
    padding-top: 35px;
    padding-bottom: 35px;
  }

  .menu-button {
    float: none;
    text-align: center;
    border-width: 3px;
    border-radius: 10px;
    width: 60px;
    height: 60px;
    margin-top: 15px;
    padding: 5px 0 0;
  }

  .navbar {
    z-index: 99999;
    text-align: center;
    background-color: #f1f1f1;
    width: 100%;
    position: absolute;
  }

  .contact-overlay {
    opacity: 0;
    display: none;
    transform: scale(1.1);
  }

  .form-wrapper {
    width: 70%;
  }

  .logo {
    width: 230px;
  }

  .brand {
    float: right;
  }

  .slider {
    height: 300px;
  }

  .statue1 {
    background-position: 50%;
  }

  .container {
    max-width: 1200px;
  }

  .footerlink {
    line-height: 2em;
  }

  .flexcontainer_footer {
    flex-wrap: wrap;
  }

  .bildsection.spenden {
    background-position: 50%;
    background-size: cover;
  }

  .bildsection.shop {
    background-position: 50%;
  }

  .slider_section {
    height: auto;
    margin-top: 0;
  }

  .abschluss_white_top, .abschluss_white_bottom {
    z-index: 500;
    background-size: contain;
  }

  .icon {
    padding-top: 5px;
  }

  .icon:hover {
    border-radius: 25px;
  }

  .statue2 {
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: cover;
  }

  .inner_padding.person {
    object-fit: cover;
    height: 100%;
  }

  .flex_container {
    grid-column-gap: 0px;
    grid-row-gap: 40px;
    flex-flow: wrap;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 60px;
  }

  .flexbox_33 {
    flex: 0 auto;
  }

  .intro_box {
    background-image: linear-gradient(to bottom, var(--midnight-blue-2), var(--midnight-blue-2));
    border-style: none;
    border-radius: 0;
    width: 100%;
    padding-top: 15px;
    padding-bottom: 25px;
    position: static;
    left: 0;
    right: 0;
  }

  .nav_menu {
    border-bottom: 3px solid #bda10f;
    border-left: 3px solid #bda10f;
    border-right: 3px solid #bda10f;
  }

  .nav_dropdown_text {
    text-align: center;
    display: block;
    position: relative;
    left: 10px;
  }

  .dropdown-toggle {
    padding-bottom: 5px;
  }

  .dropdown_wrapper {
    width: 200px;
    margin-left: auto;
    margin-right: auto;
    display: block;
    position: relative;
  }

  .dropdown-list.w--open {
    background-image: linear-gradient(#f1f1f1, #f1f1f1);
    border-style: none;
    border-top-width: 1px;
    border-top-color: #000;
    border-bottom-width: 1px;
    border-bottom-color: #000;
    border-left-width: 1px;
    border-left-color: #000;
  }

  .header_link {
    height: auto;
  }

  .flexbox_person {
    flex: 0 30%;
  }

  .image_person {
    object-fit: cover;
    width: 100%;
    height: 100%;
  }

  .button_header {
    padding-top: 13px;
  }

  .button_header:hover {
    color: var(--gold);
  }

  .dropdown_icon {
    margin-top: 0;
    margin-right: 0;
    padding-top: 11px;
    top: -10px;
  }

  .headerbox_content {
    width: 80%;
  }

  .logotype {
    text-align: center;
    font-size: 2em;
  }

  .section_button_single {
    margin-bottom: 0;
    bottom: 0;
    left: 0;
    right: 0;
  }
}

@media screen and (max-width: 767px) {
  h1 {
    font-size: 2em;
    line-height: 41px;
  }

  h2 {
    font-size: 1.3em;
  }

  h3 {
    margin-top: 10px;
    margin-bottom: 10px;
    font-size: 1em;
    line-height: 1.3em;
  }

  h4 {
    font-size: 1em;
  }

  p {
    font-size: 1em;
    line-height: 1.4em;
  }

  ul {
    font-size: .9em;
  }

  blockquote {
    font-size: 1.2em;
  }

  .nav {
    width: 100%;
    padding-left: 10px;
    padding-right: 10px;
    position: relative;
    inset: auto 0 0;
  }

  .section {
    padding-left: 20px;
    padding-right: 20px;
  }

  .section.top-section.home-page {
    padding-left: 5px;
    padding-right: 5px;
  }

  .footer-section {
    text-align: center;
    padding-left: 10px;
    padding-right: 10px;
  }

  .menu-button {
    margin: 0 0 0 -20px;
    display: block;
    position: static;
  }

  .form-wrapper {
    width: 80%;
  }

  .logo {
    width: 266px;
    margin-left: 10px;
  }

  .brand {
    float: none;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    padding-left: 0;
    display: block;
  }

  .nav-container {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    justify-content: flex-start;
    align-items: center;
    padding-bottom: 0;
    display: flex;
  }

  .slider {
    height: 300px;
  }

  .slidertext_1 {
    padding-left: 20px;
    padding-right: 20px;
    font-size: 2.5em;
  }

  .telefonlink {
    float: none;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    display: block;
  }

  .iconreihe {
    float: none;
    margin-left: auto;
    margin-right: auto;
    display: block;
  }

  .bildsection {
    height: 250px;
  }

  .slider_section {
    height: auto;
  }

  .column {
    margin-top: 15px;
    padding-left: 0;
    padding-right: 0;
  }

  .uebersicht_saal {
    background-position: 100%;
    background-size: cover;
  }

  .flexbox_footer {
    flex-basis: 50%;
    width: 50%;
    margin-bottom: 20px;
  }

  .flex_container {
    align-content: stretch;
  }

  .flexbox_33 {
    border-radius: 50px;
  }

  .icon_container {
    width: 60px;
  }

  .section_contentnavi {
    padding-left: 20px;
    padding-right: 20px;
  }

  .header_text {
    font-size: 1em;
  }

  .nav_menu {
    width: 100%;
    max-height: 100vh;
  }

  .h1 {
    font-size: 1.4em;
  }

  .dropdown_wrapper {
    display: block;
  }

  .content_list {
    font-size: 1em;
  }

  .flexbox_person {
    flex-basis: 47%;
  }

  .big_button_text {
    font-size: 1.2em;
  }

  .logotype {
    background-image: none;
    background-position: 0 0;
    background-repeat: repeat;
    background-size: auto;
    margin: 0;
    font-size: 1.5em;
    line-height: 25px;
  }

  .section_button_single {
    text-align: center;
    position: absolute;
    left: 0;
    right: 0;
    box-shadow: -8px 0 27px #00000026;
  }

  .link_scroll {
    display: inline-block;
  }

  .header_image {
    right: 25px;
  }

  .preis_box {
    font-size: 1.5em;
  }

  .columns {
    margin-left: -10px;
    margin-right: -10px;
  }
}

@media screen and (max-width: 479px) {
  h1 {
    font-size: 24px;
    line-height: 32px;
  }

  h2, h3, h5 {
    font-size: 1.1em;
  }

  p {
    font-size: 1em;
    line-height: 1.4em;
  }

  ul {
    font-size: .8em;
  }

  li {
    margin-bottom: 2px;
  }

  blockquote {
    margin-bottom: 10px;
    font-size: .9em;
  }

  .nav-link {
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .menu-button {
    flex: none;
    width: 50px;
    height: 50px;
    margin-left: -10px;
    padding-top: 0;
  }

  .close-link:hover {
    color: #fff;
  }

  .form-wrapper {
    width: 90%;
  }

  .cta-heading {
    font-size: 28px;
  }

  .logo {
    width: 210px;
  }

  .nav-container {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
  }

  .slider {
    height: 355px;
  }

  .container {
    padding-top: 15px;
    padding-bottom: 15px;
  }

  .slidertext_1 {
    padding-left: 10px;
    padding-right: 10px;
    font-size: 1.8em;
  }

  .telefonlink {
    font-size: 1.07em;
  }

  .flexcontainer_footer {
    flex-wrap: wrap;
  }

  .iconreihe {
    width: 200px;
  }

  .bildsection {
    height: 175px;
  }

  .bildsection.organigramm {
    background-position: 50%;
    background-size: cover;
  }

  .flexbox_footer {
    flex-basis: 100%;
    margin-top: 10px;
    margin-bottom: 10px;
  }

  .flexbox_footer._20 {
    margin-top: 0;
  }

  .inner_padding.person {
    height: 425px;
  }

  .flex_container {
    grid-row-gap: 20px;
    place-content: center;
    align-items: center;
  }

  .flexbox_33 {
    border-radius: 75px;
    width: 80%;
    margin-top: 10px;
  }

  .button_content {
    text-align: center;
    display: block;
  }

  .product_container {
    padding-bottom: 70px;
  }

  .dropdown-toggle {
    padding-top: 0;
  }

  .flexbox_person {
    flex: 0 auto;
    margin-top: 10px;
  }

  .image_person {
    max-height: 350px;
  }

  .logotype {
    font-size: 1.2em;
  }

  .footer_image {
    width: 100px;
  }

  .preis_box {
    border-top-style: none;
    border-left-style: none;
    border-top-left-radius: 0;
    bottom: 0;
    left: 0;
    right: 0;
  }
}


@font-face {
  font-family: 'Lato-local';
  src: url('../fonts/Lato-Thin.ttf') format('truetype');
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Lato-local';
  src: url('../fonts/Lato-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Lato-local';
  src: url('../fonts/Lato-Black.ttf') format('truetype');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Lato-local';
  src: url('../fonts/Lato-Light.ttf') format('truetype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Lato-local';
  src: url('../fonts/Lato-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Merriweather-local';
  src: url('../fonts/Merriweather-Light.ttf') format('truetype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Merriweather-local';
  src: url('../fonts/Merriweather-Black.ttf') format('truetype');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Merriweather-local';
  src: url('../fonts/Merriweather-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Merriweather-local';
  src: url('../fonts/Merriweather-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}