/* roboto-condensed-300 - latin */
@font-face {
    font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Roboto Condensed';
    font-style: normal;
    font-weight: 300;
    src: url('../fonts/roboto-condensed-v25-latin-300.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
  }
  
  /* roboto-condensed-regular - latin */
  @font-face {
    font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Roboto Condensed';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/roboto-condensed-v25-latin-regular.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
  }
  
  /* roboto-condensed-700 - latin */
  @font-face {
    font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Roboto Condensed';
    font-style: normal;
    font-weight: 700;
    src: url('../fonts/roboto-condensed-v25-latin-700.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
  }
  /* roboto-300 - latin */
@font-face {
    font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 300;
    src: url('../fonts/roboto-v30-latin-300.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
  }
  
  /* roboto-regular - latin */
  @font-face {
    font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/roboto-v30-latin-regular.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
  }
  
  /* roboto-500 - latin */
  @font-face {
    font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 500;
    src: url('../fonts/roboto-v30-latin-500.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
  }
  

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}


:root {
  --normal: #303030;
  --white: #fff;
  --black: #000;
  --dark-black: #0A0101;
  --green: #3AA129;
  --gray: #707070;
  --blue: #014C9E;
  --font-standard: 'Roboto';
  --font-condensed: 'Roboto Condensed';
}


body {
  background: #fff;
  font-family: var(--font-standard);
  color: var(--normal);
  background-color: #f8f9f8;
  overflow-x: hidden;
}

#wrapper {
    overflow: hidden;
    position: relative;
}

a:focus-visible {
    box-shadow:
  0 0 0 1px var(--green),
  0 0 0 2px var(--blue);
}

p {
    font-size: 15px;
    margin-bottom: 1em;
    line-height: 24px;
    color: var(--gray);
}

p b {
    font-weight: 500;
}

p span {
  color: inherit;
}

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
}

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

img {
    max-width: 100%;
    height: auto;
}

a {
  text-decoration: none;
  color: inherit;
  outline: none;
  cursor: pointer;
}

a:has(img) {
    border-bottom: 0 !important;
}

strong, b {font-weight: 600;}

i, em {font-style: italic;}

table[border="1"] {
    border-width: 1px;
}
table[border="2"] {
    border-width: 2px;
}
table[border="3"] {
    border-width: 3px;
}
table[border="4"] {
    border-width: 4px;
}
table[border="5"] {
    border-width: 5px;
}

table {
    width: 100% !important;
    height: auto !important;
}

table td {
    padding: 4px;
    color: #000 !important;
}

table thead td {
background: var(--green) !important;
color: #fff !important;
}

.wysiwyg ul,
.accordion-content ul {
    margin: 0 0 15px 0;
    padding: 0 0 0 15px;
}

.wysiwyg ul li,
.accordion-content ul li {
    font-size: 15px;
    margin-bottom: 4px;
    line-height: 20px;
    color: var(--gray);
    list-style-position: outside;
    list-style-type:disc;
}

.news-m-list .wysiwyg ul li {
    font-size: 16px;
    line-height: 24px;
    color: #474847;
}

#content-main p a,
#content-main li a {border-bottom: 1px solid var(--green);}

#content-main a:hover,
#footer a:hover {
    opacity: 0.8;
}

.overlay-link {
    position: absolute;
    left:0;
    right:0;
    top:0;
    bottom:0;
}

.page-container {
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
}

.page-container.xl {
    max-width: 1000px !important;
}

.bg-green {
    background-color: var(--green);
    color: var(--white);
}

.bg-blue {
    background-color: var(--blue);
    color: var(--white);
}

.bg-white {
    background-color: var(--white);
}

.has-border {
    border-bottom: 2px solid #707070;
    padding-bottom: 20px;
}

h5, .headline-5,
h6, .headline-6 {
  font-family: var(--font-condensed);
  font-weight: 700;
}

.btn {
    font-family: var(--font-condensed);
    font-weight: 700;
    font-size: 24px;
    line-height: 34px;
    padding: 10px 25px;
    display: inline-block;
    transition: color .15s ease-in-out, background-color .15s ease-in-out;
    margin-bottom: 20px;
    word-wrap: break-word;
    text-transform: uppercase;
    hyphens: auto;
}

.btn.btn-primary {
    background-color: var(--green);
    color: var(--white);
    border: none;
}

.btn.btn-primary:hover {
    background-color: var(--white);
    color: var(--green);
    outline: 2px solid var(--green);
}

.btn.btn-secondary {
    font-size: 22px;
    line-height: 31px;
    background-color: var(--white);
    color: var(--green);
}

.btn.btn-secondary:hover {
    background-color: var(--green);
    color: var(--white);
}

.btn.btn-alt {
    width: auto;
    background-color: var(--blue);
    color:#fff;
    border:none;
    outline: none;
    margin: 0;
    padding: 10px 20px;
}
.btn.btn-alt:hover {
background-color: #1F62AC;
}

.btn.btn-small {
    width: auto;
    background-color: var(--green);
    color:#fff;
    border:none;
    outline: none;
    text-transform: none;
    margin: 0;
    font-size: 18px;
    line-height: 24px;
    padding: 10px 20px;
}
.btn.btn-small:hover {
background-color: var(--green);
}

.btn.btn-small span {
    font-size: 0.7em;
    margin-right: 5px;
}

#header-search {
    display: none;
}

.search-open #header-search {
    display: block;
}

.search_it-form {
    margin-bottom: 20px;
}

.search_it-flex {
    display: flex;
    align-items: center;
}
.search_it-flex input[type="text"]{
height: 52px;
}

#iframe-wrapper {
padding: 40px;
}

.mfp-iframe-scaler iframe {
    background: #fff;
}

.hsearch-teaser p {margin-bottom: 10px;}

.search_it-flex .btn {
    border: 2px solid #707070;
    border-left:none;
    height: 52px;
}

.btn-clean {
    color:#707070;
    font-size: 20px;
    transition: color 0.3s ease;
}
.btn-clean:hover {
    color:#000000;
}
.search_it-flex .btn-clean {
margin-left: 30px;
margin-right: 15px;
}

.hsearch-result {
    margin-bottom: 15px;
    border-bottom: 1px solid #e1e6e1;
    padding-bottom: 15px;
}

.hsearch-category {
    color:var(--gray);
    font-weight: bold;
}

.hsearch-title {
    margin-bottom: 0;
}

.hsearch-url a {
    font-size: 16px;
    color: var(--green);
    display: flex;
    align-items: flex-start;
}

.hsearch-url a > span.ti-angle-right {
    margin-right: 5px;
    font-size: 12px;
    margin-top: 4px;
}

.member-img picture {
    display: block;
}

.h-highlight {
font-weight: bold;
}

.mfp-iframe-scaler {
    padding-top: 0;
    height: 80dvh;
  }

.yform .control-label {
    font-size: 16px;
    line-height: 22px;
    color: var(--gray);
    display: block;
    margin-bottom: 5px;
}

.form-description a {
    text-decoration: underline;
}

.yform .form-group {
    margin-bottom: 20px;
}

.mfp-bg {
    background: #014c9e;
  }

input[type="text"],
input[type="email"],
input[type="password"],
input[type="search"],
textarea {
    font-size: 20px;
    line-height: 28px;
    border: 2px solid #707070;
    padding: 10px 15px;
    width: 100%;
    color: var(--gray);
    outline: none;
}

input[type="text"]::placeholder,
input[type="email"]::placeholder,
input[type="password"]::placeholder,
input[type="search"]::placeholder {
    color: var(--gray);
}


input[type="text"]:focus-visible,
input[type="email"]:focus-visible,
input[type="password"]:focus-visible,
input[type="search"]:focus-visible {
    outline: 0;
}

/* clears the ‘X’ from Internet Explorer */
input[type=search]::-ms-clear { display: none; width : 0; height: 0; }
input[type=search]::-ms-reveal { display: none; width : 0; height: 0; }
/* clears the ‘X’ from Chrome */
input[type="search"]::-webkit-search-decoration,
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-results-button,
input[type="search"]::-webkit-search-results-decoration { display: none; }

/* HEADER */
#header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    background-color: var(--white);
}

#content {padding-top: 135px;}


#header #header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 23px 0px 0px 0px;
}

#header #header-inner #logo img {
    max-width: 256px;
    transition: all 0.2s ease-in-out;
}

#header #navigation_mobile .hamburger {
    display: block;
    z-index: 999;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

#header #mob_check,
#header .hamburger {
    height: 26px;
    width: 41px;
    position: absolute;
    top: -22px;
    right: 0;
}

#header #navigation.active {
    transform: translateX(0);
}

#header #navigation_mobile .hamburger .line {
    display: block;
    height: 6px;
    width: 100%;
    border-radius: 0px;
    background: var(--blue);
}

#header #navigation_mobile .hamburger.nav-close .line1 {
    transform-origin: 15% 100%;
    transition: transform 0.3s ease-in-out;
}

#header #navigation_mobile .hamburger.nav-close .line2 {
    transition: transform 0.2s ease-in-out;
}

#header #navigation_mobile .hamburger.nav-close .line3 {
    transform-origin: 21% 0%;
    transition: transform 0.3s ease-in-out;
}

#header #navigation_mobile .hamburger.nav-close .line1 {
    transform: rotate(45deg);
}

#header #navigation_mobile .hamburger.nav-close .line2 {
    transform: scaleY(0);
}

#header #navigation_mobile .hamburger.nav-close .line3 {
    transform: rotate(-45deg);
}

#header #navigation ul li.dropdown {
    position: relative;
}

#header #header-inner #navigation ul li a.active {
    color: var(--green)!important;
}

#header #header-inner #navigation ul > li {
    display: inline-block;
}


#header #header-inner #navigation ul li a {
    font-family: var(--font-condensed);
    font-weight: 600;
    display: block;
    font-size: 18px;
    line-height: 92px;
    letter-spacing: 0.05rem;
    color: var(--dark-black);
    text-transform: uppercase;
}


#header #logo {
    z-index: 99;
}

#header #navigation ul li.dropdown > ul.dropdown-menu {
    display: none;
    z-index: 1;
}

.header-fixed #header {
/* https://smoothshadows.com/#djEsMiw0LDAuMDUsMjUsMTIsMCwjMDMwNzEyLCNmM2Y0ZjYsI2ZmZmZmZiwy */
box-shadow: 0px 1px 2px rgba(3, 7, 18, 0.05),
  0px 3px 6px rgba(3, 7, 18, 0.04),
  0px 7px 14px rgba(3, 7, 18, 0.03),
  0px 12px 25px rgba(3, 7, 18, 0.01);

}

.header-fixed #header #header-inner {
    padding: 14px 0;
}
.header-fixed #header #header-inner #logo img {
    width: 150px;
}

.header-fixed #header #header-inner #navigation ul li a {
    line-height: 1.4em;
}


.nice-select {
border:2px solid #707070;
display: block;
border-radius: 0;
float: none;

font-size: 20px;
color:#707070;
height: 52px;
line-height: 50px;
}

.nice-select:hover {
    border-color: #707070;
}

.nice-select::after {
    width: 10px;
    height: 10px;
    border-color:#707070;
    margin-top: -6px;
}

.nice-select .list {
    border:2px solid #707070;
    border-radius: 0;
    box-shadow: none;
    margin-top: 0;
    width: 100%;
}

.nice-select .option.selected {
    background-color: var(--blue) !important;
    color: #fff;
}

.nice-select .list:hover .option:not(:hover) {
    color:#707070;
  }

  .nice-select .option:hover, .nice-select .option.focus, .nice-select .option.selected.focus {
    background-color: var(--blue);
    color: #fff;
  }

/*#header #navigation.active .hamburger.nav-close .nav-btn {
    transform: translateX(0);
}
*/

/* FOOTER  */
#footer {
    background-color: var(--blue);
    color: var(--white);
    padding: 50px 0px 25px 0px;
}

#footer .page-container {
    max-width: 273px;
}

#footer #footer-inner .footer-column {
    margin-bottom: 25px;
}

#footer #footer-inner h6 {
    font-weight: 700;
    font-size: 15px;
    line-height: 22px;
    margin-bottom: 4px;
    color: #fff;
}

#footer #footer-inner h6 a {
    font-size: inherit;
}

#footer #footer-inner address,
#footer #footer-inner address p,
#footer #footer-inner address a {
    font-size: 15px;
    line-height: 22px;
    color: var(--white);
}

#footer #footer-inner ul li a {
    font-size: 15px;
    line-height: 22px;
    color: var(--white);
}

/* Floating Icons  */
#floating-icons ul {
    margin:0;
    padding: 0;
    display: flex;
    justify-content: space-between;
}

#floating-icons ul li {
    width: 100%;
    margin-bottom: 0;
    margin-right: 2px;
}

#floating-icons ul li a {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--blue);
    height: 100%;
    width: 100%;
    padding: 10px;
}

#floating-icons ul li a > span {
    color: var(--white);
    font-size: 27px;
}




/* CONTENT  */
#content #content-main {
    position: relative;
}

.global_info {
    padding: 15px 30px;
    position: relative;
    background: #c86b66;
    text-align: center;
    border-bottom:1px solid #a03e38;
}


.global_info p:last-of-type{
    margin-bottom: 0;
}

.global_info * {
    color: #fff;
}

/* TEXT BOXES  */
.text-boxes-wrapper .page-container {
    position: relative;
}


.text-boxes-wrapper .text-box {
    padding: 23px 17px 23px 19px;
    margin-bottom: 18px;
    position: relative;
    transition: transform 0.2s ease-out;
}

.text-boxes-wrapper .text-box:hover {
    transform: scale(1.08);
}


.text-boxes-wrapper .text-box h2 {
    color: #fff;
    font-weight: bold;
    font-size: 50px;
    line-height: 60px;
}

.text-boxes-wrapper .text-box h4 {
    font-size: 20px;
    line-height: 26px;
    margin-top: 4px;
    color: #fff;
}

/* NEWS WRAPPER  */
.news-wrapper {
    background-color: var(--white);
    padding: 42px 0;
}

.news-wrapper .headline h3 {
    font-family: var(--font-condensed);
    font-weight: 700;
    font-size: 30px;
    line-height: 43px;
    color: var(--green);
}

.news-listing {
    margin-top: 10px;
    background-color: var(--white);
}

.news-listing .news-item {
    margin-bottom: 38px;
}

.news-listing .news-content {
    padding: 24px 0px 0px 0;
}

.news-listing .news-content h5 {
    
    font-size: 20px;
    line-height: 24px;
    
    color: #969393;
    margin-bottom: 10px;
}

.news-listing .news-content h3 {
    font-family: var(--font-condensed);
    font-size: 20px;
    line-height: 24px;
    font-weight: 700;
    color: var(--green);
    margin-bottom: 10px;
    text-transform: uppercase;
    hyphens: auto;
}

.termin-listing .event {
    background: #fff;
    padding: 20px;
    margin-bottom: 20px;
}

.termin-listing .event .wysiwyg p:last-of-type {
    margin-bottom: 0;
}

.termin-listing .event-header {
margin-bottom: 14px;
}


.event-header > h3 {
 flex-basis: 80%;
}

.event-header-meta {
    display: flex;
    padding-bottom: 6px;
    margin-bottom: 14px;
    border-bottom: 1px solid #e1e1e1;
}

.event-header-meta h5 {
color: #706F70;
}

.event-header-meta h6 {
    font-size: 0.875em;
    color: #706F70;
    margin-left: auto;
}

.news-listing .news-content p {
    font-size: 15px;
    line-height: 22px;
    color: #474847;
}

.news-listing .news-read-more a,
a.read-more {
    position: relative;
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    color: var(--green);
    padding-left: 12px;
    display: inline-block;
}

.news-listing .news-read-more a::before,
a.read-more::before {
    content: '>';
    position: absolute;
    left: 0;
}

.news-listing .news-view-all a {
    font-family: var(--font-standard);
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    color: var(--green);
    position: relative;
    padding-left: 15px;
}

.news-listing .news-view-all a::before {
    content: '>';
    position: absolute;
    left: 0;
}

.events-wrapper {
    background-color: #eef2f0;
    padding: 30px 35px;
    margin-bottom: 14px;
}

.events-wrapper .headline h3 {
    font-size: 30px;
    line-height: 43px;
    color: var(--green);
    margin-bottom: 7px;
}

.events-wrapper > .headline {
    text-align: center;
    border-bottom: 2px solid var(--gray);
}

.events-wrapper .event {
    border-bottom: 2px solid var(--gray);
    margin-top: 21px;
    padding-bottom: 5px;
}

.events-wrapper .event:last-child {
    border: none;
}

.events-wrapper .event h5 {
    font-size: 18px;
    line-height: 24px;
    color: var(--gray);
    text-transform: uppercase;
}

.events-wrapper .event h6 {
    font-size: 14px;
    line-height: 24px;
    color: var(--gray);
    margin-bottom: 5px;
}

.events-wrapper .event p {
    font-size: 14px;
    line-height: 18px;
    color: var(--gray);
}

.events-wrapper .events-view-all {
    margin-top: 40px;
}

.events-wrapper .events-view-all a {
    
    font-size: 20px;
    line-height: 28px;
    color: var(--green);
    position: relative;
    padding-left: 15px;
}

.events-wrapper .events-view-all a:before {
    content: '>';
    position: absolute;
    left: 0;
}

.m-events .events-wrapper {
    padding: 32px 25px;
    margin-bottom: 25px;
}

/* PARTNERS  */
.partners {
    background-color: #e6eae7;
    padding: 50px 0px;
}

.partners h3 {
    font-family: var(--font-condensed);
    font-weight: 700;
    font-size: 24px;
    line-height: 30px;
    color: var(--green);
}

.partners .partners-sliders {
    margin-top: 40px;
    position: relative;
}

.partners .partners-sliders .slick-arrow {
    position: absolute;
    top: 25%;
    cursor: pointer;
}

.partners .partners-sliders .slick-arrow.slick-prev {
    left: -15%;
}

.partners .partners-sliders .slick-arrow.slick-next {
    right: -15%;
}

.partners .partners-sliders .slick-arrow > span {
    font-size: 39px;
    color: var(--green);
}

.partners .partners-sliders .slick-list .slick-slide {
    border-radius: 10px;
    background-color: var(--white);
    margin-right: 14px;
    display: flex;
    align-items: center;
    padding: 16px;
    justify-content: center;
    transition: 0.1s, 0.1s;
    transition-timing-function: linear, ease-in;
    overflow: hidden;
}

.partners .partners-sliders .slick-list .slick-slide a {
    display: block;
}


.partners .partners-sliders .slick-list .slick-slide img {
    height: 50px;
    width: auto;
}

/* TWO COLUMN  */
.two-column-container {
    /* max-width: 273px; */
    margin: 0 auto;
    padding: 0 15px;
    margin-top: 40px;
}

.two-column-container aside h3 {
    
    font-size: 24px;
    line-height: 22px;
    color: #706F7065;
}

.two-column-container aside ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.two-column-container aside ul ul {
    margin:5px 0 20px 10px;
}


.two-column-container aside ul li {
    display: block;
    width: 100%;
    margin-bottom: 10px;
    display: block;
}

.two-column-container aside ul ul li {
    margin-bottom: 5px;
  }

.two-column-container aside ul li a {
    font-family: var(--font-condensed);
    font-size: 18px;
    line-height: 22px;
    font-weight: 700;
    color: #706F70;
    word-wrap: break-word;
    text-transform: uppercase;
}

.two-column-container aside ul li a.rex-current,
.two-column-container aside ul li a.rex-active {
    color:var(--green);
}

.two-column-container aside ul ul li a {
    font-family: var(--font-condensed);
    text-transform: none;
    font-weight: 400;
    font-size: 16px;
    line-height: 20px;
}

.two-column-container .main-content {
    margin-top: 25px;
}

.two-column-container aside ul li.current-menu a {
    color: var(--green);
}

.hsearch-title {
    margin: 5px 0 10px;
}



.img-module-sliders .slick-arrow {
position: absolute;
left: 10px;
top:50%;
transform: translateY(-50%);
z-index: 1;
background: var(--blue);
padding: 7px;
cursor: pointer;

} 
.img-module-sliders .slick-arrow.slick-next {
    right: 10px;
    left: auto;
    } 

    .img-module-sliders .slick-arrow > span {
        font-size: 16px;
        color: #fff;
      }

      .chocolat-wrapper {
        z-index: 99999;
      }

      .chocolat-overlay.chocolat-visible {
        opacity: .95;
      }

      .chocolat-wrapper .chocolat-bottom {
        background: #fff;
      }


/* Content Module  */
.content-module {
    margin-top: 25px;
}

.content-module .heading h3 {
    
    font-size: 30px;
    line-height: 43px;
    color: var(--green);
}

/* Pagination  */
.pagination ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.pagination ul li {
    display: inline-block;
}

.pagination ul li:not(:last-child) {
    margin-right: 18px;
}

.pagination ul li a {
    
    font-size: 18px;
    line-height: 24px;
    background-color: var(--white);
    color: var(--green);
    padding: 12px 16px;
    text-align: center;
    display: block;
}

.pagination ul li.active a {
    background-color: var(--green);
    color: #fff;
}


.pagination ul li a.next,
.pagination ul li a.prev {
    background-color: transparent;
}

/* News Module 2 */
.news-module-t-2 {
    margin-top: 50px;
}

.news-module-t-2 .heading h3 {
    font-family: var(--font-condensed);
    font-size: 24px;
    line-height: 30px;
    font-weight: 700;
    color: var(--green);
}

.news-module-t-2 .news-m-listing .news-m-list {
    margin-bottom: 21px;
}

.news-module-t-2 .news-m-listing {
    margin-top: 21px;
}

.news-module-t-2 .news-m-listing .news-m-list {
    background-color: var(--white);
}

.news-module-t-2 .news-m-listing .news-m-list .news-m-list-content {
    padding: 25px;
}

.news-m-list-gallery {
display: flex;
flex-wrap: wrap;
gap:10px;
margin: 10px 0;
padding-left: 20px;
}

.news-m-list-text {
    font-size: 15px;
    line-height: 20px;
    color: var(--gray);
}

.news-m-list-gallery-item {
    width: calc(50% - 5px);
}

.news-module-t-2 .news-m-listing .news-m-list .news-m-list-content .wysiwyg h5 {
    font-family: var(--font-condensed);
    font-size: 20px;
    line-height: 24px;
    color: #969393;
    margin-bottom: 15px;
}

.news-module-t-2 .news-m-listing .news-m-list .news-m-list-content .wysiwyg h3 {
    font-family: var(--font-condensed);
    font-size: 20px;
    font-weight: 700;
    line-height: 24px;
    color: var(--green);
    margin-bottom: 26px;
    text-transform: uppercase;
}

.news-module-t-2 .news-m-listing .news-m-list .news-m-list-content .wysiwyg p {
    /*font-family: var(--font-condensed);*/
    font-size: 16px;
    line-height: 24px;
    color: #474847;
}

.news-module-t-2 .news-m-listing .news-m-list .news-m-list-content .news-read-more {
    margin-top: 22px;
}

.news-module-t-2 .news-m-listing .news-m-list .news-m-list-content .news-read-more a {
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    color: var(--green);
    position: relative;
    padding-left: 12px;
}

.news-module-t-2 .news-m-listing .news-m-list .news-m-list-content .news-read-more a:before {
    content: '>';
    position: absolute;
    left: 0;
}

.news-module-t-2 .news-m-listing .news-m-read-more {
    margin-top: 85px;
}

.news-module-t-2 .news-m-listing .news-m-read-more a {
    
    font-size: 15px;
    line-height: 20px;
    font-weight: 500;
    color: var(--green);
    position: relative;
    padding-left: 15px;
}

.news-module-t-2 .news-m-listing .news-m-read-more a:before {
    font-family: var(--font-standard);
    content: '>';
    position: absolute;
    left: 0;
}

.news-module-t-2 .news-m-listing form {
    margin-top: 20px;
    margin-bottom: 35px;
}

.news-module-t-2 .pagination {
    margin-top: 25px;
}

.news-module-t-2 .pagination ul li {
    margin-bottom: 10px;
}




.news-module-t-2.single-list .news-m-listing .news-m-list-img {
    padding: 20px 0 0 20px;
}

.news-m-list-img a {
    border: none;
}


.news-module-t-2.single-list .news-m-listing .news-m-list .news-m-list-content .wysiwyg h5 {
    margin-bottom: 0;
}

.news-module-t-2.single-list .news-m-listing .news-m-list .news-m-list-content .wysiwyg h6 {
    
    font-size: 16px;
    line-height: 24px;
    color: var(--gray);
    margin-bottom: 20px;
}

.news-module-t-2.single-list .news-m-listing .news-m-list .news-m-list-content .wysiwyg h3 {
    margin-bottom: 20px;
}

.news-module-t-2.single-list .news-m-listing .news-m-list .news-m-list-content {
    padding-top: 40px;
}

.news-module-t-2.single-list .news-m-listing .news-m-list .news-m-list-content .author {
    margin-top: 40px;
}

.news-module-t-2.single-list .news-m-listing .news-m-list .news-m-list-content .author h6 { 

    font-weight: bold;
    font-size: 16px;
    line-height: 24px;
    color: var(--green);
}

.news-module-t-2.single-list .heading h4 {
    font-size: 20px;
    line-height: 28px;
    color: var(--gray);
    word-wrap: break-word;
    text-align: right;
}

.news-module-t-2.single-list .back-to-overview {
    margin-top: 28px;
}

.news-module-t-2.single-list .news-m-listing {
    margin-top: 32px;
}

/* Accordion Module  */
.accordion-module {
    margin-top: 50px;
}

.accordion-module .accordion-item {
    background-color: var(--white);
    margin-bottom: 20px;
}

.accordion-module .accordion-item .accordion-title {
    padding: 10px 25px;
    cursor: pointer;
    position: relative;
}

.accordion-module .accordion-item .accordion-title:after {
    content: "\e649";
    font-family: 'themify';
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    color: var(--green);
    position: absolute;
    right: 10px;
    top: 12px;
    font-size: 28px;
    transition: transform .2s ease-in-out;
}

.accordion-module .accordion-item.show .accordion-title:after {
    transform: rotate(90deg);
}

.accordion-module .accordion-item .accordion-title h3 {
    font-family: var(--font-condensed);
    font-weight: 700;
    font-size: 24px;
    line-height: 34px;
    color: var(--green);
}

.accordion-module .accordion-item .accordion-content {
    padding: 10px 25px;
    overflow-x: auto;
}

.accordion-module .accordion-item:not(.show) .accordion-content {
    display: none;
}

.accordion-module .accordion-item .accordion-content p {
    font-size: 16px;
    line-height: 24px;
    color: var(--gray);
}

.content-module .wysiwyg {
    margin-top: 35px;
}

/* Members Module  */
.members-module {
    margin-top: 50px;
    padding: 25px;
}

.members-module .heading h3 {
    font-family: var(--font-condensed);
    font-weight: 700;
    font-size: 24px;
    line-height: 34px;
    color: var(--green);
}

.members-module .members-listing {
    margin-top: 20px;
}

.members-module .members-listing .member .member-info {
    margin-top: 10px;
}

.members-module .members-listing > .row {
    gap: 20px 0;
}

.members-module .members-listing .member .member-info h5 {
    font-size: 16px;
    line-height: 22px;
    font-weight: 500;
    color: #969393;
    margin-bottom: 5px;
}

.members-module .members-listing .member .member-info p {
    font-size: 14px;
    line-height: 21px;
    color: #474847;
}

/* Button Module */
.buttons-module {
    margin-top: 50px;
}

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

.buttons-module .btn {
    display: block;
}


@media(max-width: 767px) {

    body.menu-active {
        overflow-y: hidden;
    }

    #floating-icons {
        margin-top: 15px;
        margin-bottom: 18px;
    }

    #floating-icons ul li {
        display: inline-block;
    }

    
    #header #navigation_mobile {
        position: relative;
    }

    #navigation {
        position: fixed;
        height: 100dvh;
        top: 0;
        left: 0;
        width: 100vw;
        background: var(--white);
        overflow: hidden;
        padding-top: 100px;
        transform: translateX(100%);
        transition: .65s;
    }

    #header #header-inner #navigation .navigation-container {
        width: 100%;
        padding-right: 20px;
        padding-left: 20px;
        margin-right: auto;
        margin-left: auto;
        overflow-y: auto;
        height: 100%;
        padding-bottom: 30px;
    } 

    #header #header-inner #navigation ul > li {
        display: block;
        margin-right: 0;
    }

    #header #header-inner #navigation ul li a {
        line-height: 22px;
        text-transform: none;
    }

    #header #header-inner #navigation ul > li {
        margin-right: 0!important;
        padding-top: 10px;
        padding-bottom: 0px;
    }

    #hero-banner .page-container {
        width: 100%;
        max-width: 100%;
        padding: 0;
        margin: 0;
    }

    .submenu-opener {
        position: absolute;
        top: 14px;
        right: 0;
        width: 15px;
        height: 15px;
        text-align: center;
        display: flex;
        align-items: center;
        justify-content: center;
        font-family: "themify";
        font-size: 20px;
        font-weight: bold;
    }

    .submenu-opener:after {
        content: "\e61a";
    }

    .submenu-opener.closed:after {
        content: "\e622";
    }

    #header #navigation ul.dropdown-menu li {
        padding: 10px 0;
    }

    #header #navigation ul li.dropdown > ul.dropdown-menu {
        padding: 0px 0 0 10px;
    }

    #header #header-inner #logo img {
        max-width: 65%;
        min-width: unset;
    }

    .d-events {
        display: none;
    }
}

@media(min-width: 992px) {

    h1,
    .headline-1 {
        font-size: 62px;
    }

    h2,
    .headline-2 {
        font-size: 55px;
    }

    h3,
    .headline-3 {
        font-size: 30px;
    }

    h4,
    .headline-4 {
        font-size: 22px;
    }

    h5,
    .headline-5 {
        font-size: 20px;
    }

    h6,
    .headline-6 {
        font-size: 18px;
    }
    

    #header #header-inner #navigation ul li a {
        font-size: 20px;
    }

    #header #header-inner #navigation {
        margin-left: auto;
    }

    #header #header-inner {
        justify-content: flex-start;
    }

    #header #navigation ul li.dropdown > ul.dropdown-menu {
        left: -15px;
    }

    #header #header-inner #navigation ul > li:not(:last-child) {
        margin-right: 25px;
    }

    .partners .partners-sliders .slick-arrow.slick-prev {
        left: -8%;
    }

    .partners .partners-sliders .slick-arrow.slick-next {
        right: -8%;
    }

    .partners .partners-sliders .slick-arrow > span {
        font-size: 35px;
    }

    .partners .partners-sliders .slick-list .slick-slide {
        margin-right: 20px;
    }

}



@media(min-width:576px) {
    .page-container,
    #footer .page-container,
    .two-column-container {
        max-width: 650px;
    }


    .partners .partners-sliders .slick-arrow.slick-prev {
        left: -8%;
    }

    .partners .partners-sliders .slick-arrow.slick-next {
        right: -8%;
    }


 
}




.sp-desktop-50 {
    height:20px
  }
  .sp-desktop-100 {
    height:50px
  }
  .sp-desktop-150 {
    height:75px
  }
  .sp-desktop-200 {
    height:100px
  }
  .sp-mobile-0 {
    height:0
  }
  .sp-mobile-50 {
    height:50px
  }
  .sp-mobile-100 {
    height:100px
  }
  .sp-mobile-150 {
    height:150px
  }
  .sp-mobile-200 {
    height:200px
  }


  
  .headline-1, h1, 
  .headline-2, h2, 
  .headline-3, h3, 
  .headline-4, h4, 
  .headline-5, h5, 
  .headline-6, h6 {
    font-family: var(--font-condensed);
    font-weight: 700;
      font-size: 20px;
      line-height: 1.4em;
      color: var(--green);
      text-transform: uppercase;
    }


@media(min-width:768px) {

    .page-container {
        max-width: 1300px;
    }

    #header .page-container {
        max-width: 1140px;
    }

    #hero-banner .page-container {
        max-width: 1360px;
    }

    #content-main .page-container,
    .partners .page-container {
        max-width: 845px;
    }

    .two-column-container {
        max-width: 1140px;
    }

    h1
    .headline-1 {
        font-size: 48px;
    }

    h2,
    .headline-2 {
        font-size: 28px;
    }

    h3,
    .headline-3 {
        font-size: 24px;
    }

    h4,
    .headline-4 {
        font-size: 20px;
    }

    h5,
    .headline-5 {
        font-size: 18px;
    }

    h6,
    .headline-6 {
        font-size: 16px;
    }
      
.sp-desktop-0 {
    height:0
  }
  .sp-desktop-50 {
    height:50px
  }
  .sp-desktop-100 {
    height:100px
  }
  .sp-desktop-150 {
    height:150px
  }
  .sp-desktop-200 {
    height:200px
  }

    #navigation_mobile {
      display: none;
    }

    #header #header-inner #navigation ul > li {
        margin-right: 0;
        padding: 10px 0;
    }

    #header #navigation ul li.dropdown > ul.dropdown-menu {
        opacity: 0;
        visibility: hidden;
        position: absolute;
        background-color: #fff;
        top: calc(100% - 30px);
        right:-55px;
        left:auto;
        padding: 15px 30px;   
        transition: 0.2s ease all;
        display: block;
        width: 700px;
        word-break:normal;
    }

    .header-fixed #header #navigation ul li.dropdown > ul.dropdown-menu {
        top:100%;
        box-shadow: 0px 1px 2px rgba(3, 7, 18, 0.05),
            0px 3px 6px rgba(3, 7, 18, 0.04),
            0px 7px 14px rgba(3, 7, 18, 0.03),
            0px 12px 25px rgba(3, 7, 18, 0.01);
    }

    #header #navigation ul li.dropdown:nth-child(1) > ul.dropdown-menu {
        left: -30px;
    }


    #header #navigation ul li.dropdown > ul.dropdown-menu.multicolumn {
        column-count: 2;
        column-gap: 20px;
    }

    #header #navigation ul li.dropdown > ul.dropdown-menu.multicolumn li {
        display: inline-block;
        width: 100%;
        margin-bottom: 8px;
        padding: 0 !important;
    }

    #header #navigation ul li.dropdown > ul.dropdown-menu.multicolumn li a {
        color: #706F70!important;
        line-height: 22px!important;
    }

    #header #header-inner #navigation ul li.dropdown:hover ul.dropdown-menu,
    #header #header-inner #navigation ul li.dropdown:focus-within ul.dropdown-menu {
        opacity: 1;
        visibility: visible;
    }

    #header #header-inner #navigation ul.rex-navi3 {
        display: none;
    }

    #header #header-inner #navigation ul li:hover > a {
        color: var(--green)!important;
    }

    #footer {
        padding:60px 0;
    }

    #footer #footer-inner h6 {
        max-width: 65%;
    }

    #footer #footer-inner .footer-column {
        margin-bottom: 0px;
    }

    #footer .page-container {
        max-width: 808px;
    }

    #floating-icons {
        position: fixed;
        top: 15%;
        right: 0;
        z-index: 99999;
    }

    #floating-icons .page-container {
        max-width: 100%;
        padding: 0;
        margin: 0;
    }

    #floating-icons ul {
        display: block;
    }

    #floating-icons ul li {
        margin-right: 0;
    }

    #floating-icons ul li a {
        display: flex;
        align-items: center;
        justify-content: center;
        background-color: var(--blue);
        height: 52px;
        width: 48px;
    }

    #floating-icons ul li:not(:last-child) {
        margin-bottom: 2px;
    }

    #floating-icons ul li a {
        transition-property: color, text;
        transition: 0.3s, 0.3s;
        transition-timing-function: linear, ease-in;
    }
        

    #floating-icons ul li a:hover {
        background-color: #1F62AC;
    }

    .text-boxes-wrapper {
        position: absolute;
        width: 100%;
        top: -125px;
    }

    .news-wrapper {
        padding: 200px 0 0 0;
        background-color: transparent;
    }

    .news-wrapper > .headline {
        padding: 0 20px;
    }

    .news-listing {
        padding: 20px;
    }   

    .text-boxes-wrapper .text-box {
        min-height: 256px;
        margin-bottom: 0;
    }

    .two-column-container {
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
    }

    .two-column-container aside {
        max-width: 23%;
    }

    .two-column-container .main-content {
        width: 77%;
        padding-left: 23px;
    }

    .two-column-container .main-content {
        margin-top: 0;
    }

    .events-wrapper {
        margin-top: -20px;
        margin-right: -21px;
    }

    .partners {
        margin-top: 50px;
        padding: 60px 0;
    }



    .m-events {
        display: none;
    }

    .news-module-t-2 .news-m-listing .news-m-list .news-m-list-content {
        padding: 22px 70px 14px 44px;
    }

    .accordion-module .accordion-item .accordion-title {
        padding: 15px 33px;
    }

    .accordion-module .accordion-item .accordion-content {
        padding: 10px 37px 35px 37px;
    }

    .accordion-module .accordion-item .accordion-title:after {
        top: 16px;
        right: 12px;
        font-size: 32px;
    }

    .members-module {
        padding: 18px 32px 40px 32px;
    }

    .members-module .members-listing {
        margin-top: 40px;
    }

    .btn {
        padding: 14px 32px;
    }

    .content-module {
        margin-top: 50px;
    }

    .news-module-t-2.single-list .heading h4 {
        padding-left: 40px;
    }

    .news-module-t-2.single-list .news-m-listing .news-m-list {
        padding-bottom: 32px;
    }


    .news-module-t-2 .pagination {
        margin-top: 62px;
    }

    .news-module-t-2 .pagination ul li {
        margin-bottom: 0;
    }

    .pagination ul li:not(:last-child) {
        margin-right: 20px;
    } 

}



@media(max-width: 1080px) and (min-width: 992px) {
    .partners .partners-sliders .slick-arrow.slick-next {
        right: -6%;
    }

    .partners .partners-sliders .slick-arrow.slick-prev {
        left: -7%;
    }
}


@media(max-width: 991px) and (min-width: 768px) {
    #header #header-inner #navigation ul > li:not(:last-child) {
        margin-right: 15px;
    }

    .page-container,
    #content-main .page-container,
    .partners .page-container,
    #footer .page-container {
        max-width: 690px;
    }

    .partners .partners-sliders .slick-list .slick-slide {
        margin-right: 20px;

    }


    .partners .partners-sliders .slick-arrow.slick-prev {
        left: -7%;
    }

    .partners .partners-sliders .slick-arrow.slick-next {
        right: -7%;
    }
}



@media(max-width: 575px) and (min-width: 425px) {
    .page-container,
    #header #header-inner #navigation .navigation-container,
    #footer .page-container,
    .two-column-container {
        max-width: 400px;
    }


    .partners .partners-sliders .slick-arrow {
        top: 35%;
    }


    .partners .partners-sliders .slick-arrow.slick-prev {
        left: -8%;
    }

    .partners .partners-sliders .slick-arrow.slick-next {
        right: -7%;
    }

    .partners .partners-sliders .slick-arrow > span {
        font-size: 28px;
    }
}



@media(max-width: 1300px) {

#floating-icons {
    top: 35%;
}

}


@media(max-width: 910px) {

#header #header-inner #navigation ul li a {
    font-size: 16px;
}

#header #header-inner #logo img {
    max-width: 170px;
}
}


@media(max-width: 767px) {

    .two-column-container aside {
        display: none;
    }

    .content-module .wysiwyg {
        margin-top: 15px;
    }

    .news-module-t-2.single-list .news-m-listing .news-m-list-img {
        padding: 25px;
      }
    
.news-m-list-gallery {
    padding: 0 25px;
    }
    

    .two-column-container {
        padding-bottom: 40px;
    }

    #header #header-inner {
        padding: 14px 0px;
    }

    #content {
  padding-top: 80px;
}

#header .hamburger {
    top: -12px;
}

    .search_it-form {
        margin-bottom: 10px;
        margin-top: 10px;
      }

      .hsearch-title {margin-bottom: 5px;}

      .headline-1, .headline-2, .headline-3, .headline-4, .headline-5, .headline-6 {
        font-size: 24px;
        line-height: 30px;
      }

    }

    @media(max-width: 575px) {

        .termin-listing .event {
            padding: 15px;
            margin-bottom: 15px;
          }

        .event-header-meta h5 {
            font-size: 0.875em;
        }

    .search_it-flex .btn-clean {
        margin-left: 15px;
        margin-right: 0;
      }

      .partners .partners-sliders .slick-arrow {
        display: none !important;
      }

    }
    