/* Colors */
/* Fonts */
/* Font weights */
/* Width px => em */
/* Lists */
/* Links */
@import url("https://fonts.googleapis.com/css2?family=Fira+Sans:wght@300;400;500;600;700&display=swap");
/* General */
html {
  font-size: 62.5%;
}

body {
  background-color: #FFF;
  color: #141E28;
  font-family: "Fira Sans", Arial, Helvetica, sans-serif;
  font-size: 1.5em;
  font-weight: 400;
  line-height: 1.6;
  padding: 0;
  margin: 0;
}

html, body, * {
  box-sizing: border-box;
}

figure {
  padding: 0;
  margin: 0;
}

img {
  width: auto;
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
  color: #141E28;
  border: 0;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* General - TinyMCE */
#wrapper.mce-content-body {
  display: block;
  background: #FFF;
  color: #141E28;
}

/* Helper */
.offscreen,
.invisible {
  position: absolute !important;
  left: -10000px !important;
  top: auto !important;
  height: 1px !important;
  width: 1px !important;
  overflow: hidden !important;
}

.hidden {
  display: none;
}

/* Helper - TinyMCE */
#wrapper.mce-content-body .offscreen {
  position: static !important;
  top: auto !important;
  left: auto !important;
  height: auto !important;
  width: auto !important;
  opacity: 0.2 !important;
}

/* Layout - Basic */
body,
.wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

body {
  background-color: #F4F4F4;
}

.wrapper {
  width: 100%;
  box-shadow: 0 0 25px 0 rgba(0, 0, 0, 0.05);
  background-color: #FFF;
  max-width: 120rem;
  margin: 0 auto;
  border-top: 8px solid #1B8839;
}

.yellow .wrapper {
  border-top-color: #F6CA00;
}

.red .wrapper {
  border-top-color: #CD1719;
}

/* Layout - Content */
main {
  flex: 1;
  display: flex;
  flex-direction: column;
}

body:not(.ie) .content-container {
  flex-grow: 1;
  position: relative;
}

.ie .content-container {
  flex-grow: 1;
}

.content-container {
  padding: 0 10px;
}
@media (min-width: 31.25em) {
  .content-container {
    padding: 0 20px;
  }
}
@media (min-width: 62.5em) {
  .content-container .mod_article {
    /*max-width: 120.0rem;*/
    margin: 0 auto;
  }
}

.content-main {
  padding: 0 0 40px 0;
}
@media (min-width: 50em) {
  .content-main {
    padding: 0 0 60px 0;
  }
}
@media (min-width: 62.5em) {
  .content-main {
    padding: 0 0 80px 0;
  }
}
@media (min-width: 62.5em) {
  .content-main.content-main-has-outro {
    padding: 0;
  }
}

/* TinyMCE */
#wrapper.mce-content-body {
  max-width: 660px;
  margin: 0;
  padding: 10px 20px;
}

.header {
  padding: 0 20px;
}
.header .header-logo {
  max-width: 105rem;
  margin: 0 auto;
  padding: 50px 0 0 0;
}
.header .header-logo img {
  width: 28.5rem;
  height: auto;
}

.feedback-boxes {
  margin: 2rem auto;
  max-width: 74rem;
  display: flex;
  flex-direction: column;
}
@media (min-width: 68.75em) {
  .feedback-boxes {
    flex-direction: row;
    align-items: stretch;
    justify-content: center;
    gap: 20px;
  }
}
@media (min-width: 75em) {
  .feedback-boxes {
    gap: 30px;
  }
}
.feedback-boxes .feedback-box {
  flex: 1;
  border-radius: 3px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 0 0 25px 0;
  margin: 6rem auto 0 auto;
}
.feedback-boxes .feedback-box.feedback-box-green {
  background-color: #1B8839;
  color: #FFF;
}
.feedback-boxes .feedback-box.feedback-box-yellow {
  background-color: #F6CA00;
  color: #000;
}
.feedback-boxes .feedback-box.feedback-box-red {
  background-color: #CD1719;
  color: #FFF;
}
.feedback-boxes .feedback-box h2 {
  margin: -6rem 0 0 0;
  text-align: center;
}
.feedback-boxes .feedback-box p {
  font-size: 2.1rem;
  line-height: 2.8rem;
  margin: 0.4rem 20px 1.6rem 20px;
  text-align: center;
}
@media (min-width: 75em) {
  .feedback-boxes .feedback-box p {
    margin: 0.4rem 25px 1.6rem 25px;
  }
}
.feedback-boxes .feedback-box p:last-child {
  margin-top: 0;
  margin-bottom: 0;
}
.feedback-boxes .feedback-box .button {
  padding-right: 50px;
}

/*@import "elements/accordion";
@import "elements/article";
@import "elements/box";
@import "elements/braille";
@import "elements/breadcrumb";
@import "elements/event-full";
@import "elements/event-list";
@import "elements/filter";*/
.ce_form {
  max-width: 74rem;
  margin: 0 auto;
}
.ce_form fieldset {
  padding: 40px 10px 20px 10px;
  margin: 0 0 20px 0;
  border: 1px solid #F3F3F3;
  background-color: #F3F3F3;
}
@media (min-width: 25em) {
  .ce_form fieldset {
    padding: 40px 20px 20px 20px;
  }
}
.ce_form fieldset legend {
  font-size: 2.2rem;
  line-height: 3.2rem;
  font-weight: 500;
  padding: 0;
  margin: 0;
  position: relative;
  top: 40px;
}
.ce_form fieldset.legend-offscreen > legend {
  position: absolute !important;
  left: -10000px !important;
  top: auto !important;
  height: 1px !important;
  width: 1px !important;
  overflow: hidden !important;
}
.ce_form fieldset p {
  margin: 20px 20px 20px 0;
}
.ce_form input {
  font-family: "Fira Sans", Arial, Helvetica, sans-serif;
  font-size: 2.2rem;
  line-height: 3.2rem;
  padding: 5px 10px;
}
.ce_form textarea {
  font-family: "Fira Sans", Arial, Helvetica, sans-serif;
  font-size: 2.2rem;
  line-height: 3.2rem;
  padding: 10px;
}
.ce_form .widget-radio {
  margin: 20px 0 0 0;
}
.ce_form .widget-radio label {
  font-size: 2rem;
  font-weight: 400;
}
@media (min-width: 25em) {
  .ce_form .widget-radio label {
    font-size: 2.2rem;
  }
}
.ce_form .box {
  padding: 10px;
  margin: 0 0 2rem 0;
  border: 1px solid #F3F3F3;
}
@media (min-width: 25em) {
  .ce_form .box {
    padding: 20px;
  }
}
.ce_form .box.box-grey {
  background-color: #F3F3F3;
}

.box-grey fieldset {
  padding: 0;
  margin: 0;
  border: 0;
}

label {
  font-size: 2rem;
  font-weight: 500;
}
@media (min-width: 31.25em) {
  label {
    font-size: 2.2rem;
    font-weight: 500;
  }
}

.widget-textarea label {
  display: block;
}
.widget-textarea textarea {
  width: 100%;
  height: 30rem;
  font-size: 2.2rem;
}

fieldset {
  margin: 2rem 0;
}

.widget-radio > fieldset > span {
  display: block;
}

.widget-text {
  margin: 1rem 0;
}
.widget-text label {
  display: block;
}
.widget-text input {
  width: 100%;
  font-size: 2.2rem;
}

.widget-submit button {
  font-family: "Fira Sans", Arial, Helvetica, sans-serif;
  font-size: 2.2rem;
  line-height: 2.2rem;
  background-color: #1B8839;
  border: 3px solid #1B8839;
  color: #FFF;
  padding: 1rem 25px 1.1rem 25px;
  border-radius: 3px;
  font-weight: 500;
  cursor: pointer;
}
.widget-submit button:hover, .widget-submit button:focus, .widget-submit button:active {
  border-color: #000;
}

.content-text + .ce_form {
  margin-top: 40px;
}

/*@import "elements/image";
@import "elements/image-row";
@import "elements/interview";
@import "elements/intro";
@import "elements/navbar-submenu";
@import "elements/navbar-themes";
@import "elements/news-full";
@import "elements/news-list";
@import "elements/outro";
@import "elements/pagination";
@import "elements/press-image";
@import "elements/publication";
@import "elements/search";
@import "elements/simulator";
@import "elements/sitemap";
@import "elements/table";
@import "elements/teaser";*/
.content-text {
  max-width: 74rem;
  margin: 0 auto;
}

/*@import "elements/vereinsnachrichten";
@import "elements/youtube";*/
/*@import "pages/home";*/
h1 {
  background-color: #1B8839;
  color: #FFF;
  font-size: 3rem;
  line-height: 3.6rem;
  font-weight: 500;
  padding: 1.8rem 0 1.2rem 0;
  margin: 2.5rem auto 3.6rem auto;
  max-width: 74rem;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
}
@media (min-width: 37.5em) {
  h1 {
    font-size: 4rem;
    line-height: 5rem;
    padding: 2rem 0 1.2rem 0;
  }
}
@media (min-width: 46.875em) {
  h1 {
    font-size: 4.8rem;
    line-height: 5.8rem;
    padding: 2.5rem 0 1.5rem 0;
  }
}
h1:before {
  content: " ";
  display: block;
  background-color: #1B8839;
  top: 0;
  bottom: 0;
  position: absolute;
  left: -23rem;
  width: 23rem;
}
h1.yellow {
  background-color: #F6CA00;
  color: #000;
}
h1.yellow:before {
  background-color: #F6CA00;
}
h1.red {
  background-color: #CD1719;
}
h1.red:before {
  background-color: #CD1719;
}

/*@import "typography/line";*/
a {
  color: #000;
  text-decoration: none;
  border-bottom: 1px solid #000;
}
a:hover, a:focus, a:active {
  color: #1B8839;
  border-bottom-color: #1B8839;
}

a.button {
  display: inline-block;
  background-color: #FFF;
  padding: 1.2rem 2rem;
  border-radius: 5.2rem;
  text-decoration: none;
  font-weight: 600;
  font-size: 2.1rem;
  border: 3px solid #1B8839;
}
a.button:hover, a.button:focus, a.button:active {
  border: 3px solid #000;
}

a.button.button-white {
  background-color: #FFF;
  color: #000;
}

a.button-arrow {
  position: relative;
}
a.button-arrow:after {
  content: "";
  display: block;
  width: 2.4rem;
  height: 2.1rem;
  background-image: url(/files/system/images/icons-arrow.png);
  background-size: 7.2rem 2.1rem;
  position: absolute;
  right: 1.8rem;
  top: calc(50% - 1.0rem);
}

/*@import "typography/list";
@import "typography/misc";*/
/* Paragraph */
p {
  font-size: 2rem;
  line-height: 3rem;
  margin: 2.2rem 0;
}
@media (min-width: 37.5em) {
  p {
    font-size: 2.3rem;
    line-height: 3.3rem;
    margin: 2.4rem 0 2.4rem 0;
  }
}

.p-centered {
  text-align: center;
}

.p-copyright {
  font-size: 1.8rem;
  font-weight: 300;
  line-height: 2.7rem;
  margin: 3.5rem 0 3.5rem 0;
  color: #555;
}

.p-line-top {
  padding-top: 3rem;
  border-top: 1px solid #A8A8A8;
  margin-top: 4rem;
}

.p-line-bottom {
  border-bottom: 1px solid #A8A8A8;
  padding-bottom: 2rem;
  margin-bottom: 4rem;
}

.p-back {
  padding-top: 1rem;
  border-top: 1px solid #A8A8A8;
  margin-top: 4rem;
}

/* Spacing */
.spacing-top-0 {
  margin-top: 0 !important;
}

.spacing-top-10 {
  margin-top: 1rem !important;
}

.spacing-top-20 {
  margin-top: 2rem !important;
}

.spacing-top-30 {
  margin-top: 3rem !important;
}

.spacing-top-40 {
  margin-top: 4rem !important;
}

.spacing-top-50 {
  margin-top: 5rem !important;
}

.spacing-top-80 {
  margin-top: 8rem !important;
}

.spacing-top-100 {
  margin-top: 10rem !important;
}

.spacing-bottom-0 {
  margin-bottom: 0 !important;
}

.spacing-bottom-10 {
  margin-bottom: 1rem !important;
}

.spacing-bottom-20 {
  margin-bottom: 2rem !important;
}

.spacing-bottom-30 {
  margin-bottom: 3rem !important;
}

.spacing-bottom-40 {
  margin-bottom: 4rem !important;
}

.spacing-bottom-50 {
  margin-bottom: 5rem !important;
}

.spacing-bottom-80 {
  margin-bottom: 8rem !important;
}

.spacing-bottom-100 {
  margin-bottom: 10rem !important;
}

.footer {
  margin: 20px 0 0 0;
  padding: 0 10px;
}
@media (min-width: 31.25em) {
  .footer {
    padding: 0 20px;
  }
}
.footer > .inside {
  max-width: 105rem;
  margin: 0 auto;
  padding: 25px 0;
  border-top: 1px solid #000;
}
.footer p, .footer li {
  font-size: 2rem;
  line-height: 2.4rem;
  margin: 0;
  padding: 0;
}
.footer a {
  color: #000;
  text-decoration: none;
}
.footer a:focus, .footer a:hover, .footer a:active {
  color: #1B8839;
  border-bottom-color: #1B8839;
}

.footer-row {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-navbar-legal ul {
  display: flex;
  gap: 20px;
  margin: 0;
  padding: 0;
}
.footer-navbar-legal li {
  list-style: none;
  margin: 0;
  padding: 0;
}

/*@import "footer/address";
@import "footer/button-list";
@import "footer/header";
@import "footer/navbar-legal";
@import "footer/navbar-main";
@import "footer/social";*/
