a:hover {
    text-decoration: none!important;
}

/* margin */

.mr-mb-20-img img {
  margin-right: 20px;
  margin-bottom: 20px;
}

.mb-20-img img
{
  margin-bottom: 20px;
}

/* page iimage */
.page-images-container img {
    max-width: 100%;
    height: auto;
}

@media (max-width: 1140px) {
  .page-images-container {
    position: absolute;
  }
}

/* home icon */
@media (min-width: 1140px) {
  .mainmenu ul.level_1 > li:first-child {
    width: 55px;
  }

  .mainmenu ul.level_1 > li:first-child > a::after,
  .mainmenu ul.level_1 > li:first-child > strong::after {
        position: absolute;
        top: 0px;
        left: 0px;
        width: 55px;
        height: 35px;
        padding-top: 15px;
        background-color: #666666;
        font: 22px FontAwesome;
        color: #fff;
        content: "\f015";
        text-align: center;
    }

    .mainmenu ul.level_1>li:first-child>a, 
    .mainmenu ul.level_1>li:first-child>strong {
        width: 50px;
        height: 50px;
        padding: 0px;
        margin: 0px;
    }

      .mainmenu ul.level_1>li:first-child>a:hover:after, 
      .mainmenu ul.level_1>li:first-child>a.trail:after, 
      .mainmenu ul.level_1>li:hover:first-child>a:after, 
      .mainmenu ul.level_1>li:first-child>strong.active:after, 
      .mainmenu ul.level_1>li:first-child>strong.forward:after {
        background-color: #497999;
        color: #ffffff;
    }
}

/* ===========================
   Basis: 1 Spalte (mobile)
   =========================== */
.rs-columns {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
}

.rs-column[class*="-col-"] {
  width: auto !important;
}


/* ==========================================================
   MEDIUM (ab 768px)
   ========================================================== */

/* 2 Spalten */
@media (min-width: 768px) {
  .rs-columns:has(.rs-column.-medium-col-2-1) {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* 3 Spalten */
@media (min-width: 768px) {
  .rs-columns:has(.rs-column.-medium-col-3-1) {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* 4 Spalten */
@media (min-width: 768px) {
  .rs-columns:has(.rs-column.-medium-col-4-1) {
    grid-template-columns: repeat(4, 1fr);
  }
}


/* ==========================================================
   LARGE (ab 1024px)
   ========================================================== */

/* 2 Spalten */
@media (min-width: 1024px) {
  .rs-columns:has(.rs-column.-large-col-2-1) {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* 3 Spalten */
@media (min-width: 1024px) {
  .rs-columns:has(.rs-column.-large-col-3-1) {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* 4 Spalten */
@media (min-width: 1024px) {
  .rs-columns:has(.rs-column.-large-col-4-1) {
    grid-template-columns: repeat(4, 1fr);
  }
}


/* Spaltenbasis */
.rs-column {
  width: 100%;
}

/* accordion */
/* Vollbreiter Klickbereich */
.toggler {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 12px 16px;
  background: #f3f3f3;
  cursor: pointer;
  font-weight: 400;
  border: 1px solid #ddd;
  border-radius: 4px;
}

/* Beim Öffnen */
.toggler.active {
  background: #e8eef3;
}

/* Inhalt versteckt */
.accordion-content {
  display: none;
  padding: 16px;
  border: 1px solid #ddd;
  border-top: none;
}

/* Icon rechts */
.toggler::after {
  content: "\f078"; /* fa-chevron-down */
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  margin-left: auto;
  transition: transform .3s ease;
}

.mod_eventlist .day_short {
  white-space: normal !important;
  overflow: visible !important;
  text-overflow: unset !important;
}

.breadcrumb li:first-child:before,
.mod_breadcrumb li:first-child:before {
    content: none !important;
}

/* Downloads */
.content-downloads ul {
  padding-inline-start: 0!important;
}

.content-downloads li {
    list-style: none;
    padding: 0;
    margin: 0;
}

.content-downloads a {
  width: 100%;
      position: relative;
      display: block;
      padding: 12px 12px 10px;
      background-color: #e8e8e8;
      text-decoration: none;
      -webkit-box-sizing: border-box;
      -moz-box-sizing: border-box;
      box-sizing: border-box;
      -ms-transition: all 0.3s ease-in-out;
      -webkit-transition: all 0.3s 
  ease-in-out;
      -o-transition: all 0.3s ease-in-out;
      -moz-transition: all 0.3s ease-in-out;
      transition: all 0.3s 
  ease-in-out;
}

.content-downloads ul li a:hover, 
.content-downloads ul li a:active, 
.content-downloads a:hover, 
.content-downloads a:active {
    background-color: #497999;
    color: #ffffff;
}


.content-downloads ul li a span, 
.content-downloads a span {
      position: relative;
      padding-right: 30px;
      float: right;
      display: block;
      text-decoration: none;
      color: #626262;
      -ms-transition: all 0.3s ease-in-out;
      -webkit-transition: all 0.3s 
  ease-in-out;
      -o-transition: all 0.3s ease-in-out;
      -moz-transition: all 0.3s ease-in-out;
      transition: all 0.3s 
  ease-in-out;
}

.content-downloads ul li a:before, 
.content-downloads a:before {
    right: 10px;
    top: 13px;
    position: absolute;
    display: block;
    font: 16px FontAwesome;
    text-decoration: none;
    color: #497999;
    content: "\f019";
    -ms-transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s 
ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    transition: all 0.3s 
ease-in-out;
}

.download-element a:hover .size ,
.download-element a:hover:before {
  color: #ffffff;
}

/* text gallery */
.content-gallery {
  display: inline-block;
}

.content-gallery figure {
  margin-right: 2px;
  margin-bottom: 2px;
}

.mod_newsreader
.mod_newsreader .layout_full .content-gallery ul {
  padding-left: 0;
}

.content-gallery ul {
  overflow: hidden;
  margin-top: 0;
  padding-top: 0;
  padding-inline-start: 0;
  list-style-type: none;
}

.content-gallery li.col_first {
  clear: left;
}

.content-gallery li {
  float: left;
}

/* image text */
.media--left figure {
  float: left;
  margin-right: 20px;
}