/*===========================================================
 Common CSS
============================================================*/

body {
    font-size: 17px;
    font-family: 'Source Sans Pro', sans-serif;
    font-weight: 400;
    color: #000;
    background: #fff;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-font-smoothing: antialiased;
    overflow-y: hidden;
}

ul {
    padding: 0;
    margin: 0;
}


li,
li:hover,
a:hover,
.btn,
.btn:hover {
    transition: all .3s ease;
}

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

*:active,
*:focus {
    outline: none;
    border: 0;
}

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

strong {
    font-weight: 700;
}

u {
    border-bottom: 1px solid #fff;
    line-height: 1;
    text-decoration: unset;
}

.cboth {
    overflow: hidden;
    clear: both;
}

.left {
    float: left;
}

.right {
    float: right;
}

button {
    background-color: transparent;
    border: 0;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
    margin: 0;
}

button:active,
button:focus {
    outline: 0;
    outline: 0;
}

/*===========================================================
 Placeholder Style
============================================================*/

::-webkit-input-placeholder {
    color: #6c6c6c;
    font-size: 14px;
    font-weight: 300;
    line-height: 30px;
    letter-spacing: 0.39px;
}

:-moz-placeholder {
    color: #6c6c6c;
    font-size: 14px;
    font-weight: 300;
    line-height: 30px;
    letter-spacing: 0.39px;
}

::-moz-placeholder {
    color: #6c6c6c;
    font-size: 14px;
    font-weight: 300;
    line-height: 30px;
    letter-spacing: 0.39px;
}

:-ms-input-placeholder {
    color: #6c6c6c;
    font-size: 14px;
    font-weight: 300;
    line-height: 30px;
    letter-spacing: 0.39px;
}



/*===========================================================
Preloader CSS
============================================================*/
.preloader {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    background: white;
    z-index: 99999999;
}

#preloader-logo {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
}

.loading-msg {
    width: 100%;
    font-size: 0.75em;
    color: #555;
    position: fixed;
    bottom: 10%;
    left: 50%;
    transform: translate(-50%, 50%);
    text-align: center;
}

.spinner {
    width: 80px;
    height: 80px;
    border: 2px solid #f3f3f3;
    border-top: 3px solid #2489CE;
    border-radius: 100%;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    -webkit-animation: spin 1s infinite ease;
    animation: spin 1s infinite ease;
}

@-webkit-keyframes spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

#loading-msg {
    width: 100%;
    position: absolute;
    left: 0;
    bottom: 25px;
    text-align: center;
    color: #333;
    font-size: 0.8em;
}

/*===========================================================
 Scroll To Top
============================================================*/

.go-top {
    bottom: 15px;
    display: none;
    position: fixed;
    right: 15px;
    z-index: 999;
}

.go-top img {
    width: 35px;
}

.go-top span {
    /*background-color: #4285F4;*/
    color: rgba(255, 255, 255, .6);
    cursor: pointer;
    float: right;
    font-size: 16px;
    font-weight: 400;
    line-height: 22px;
    padding: 5px 10px;
}

.go-top span:hover {
    color: #fff;
}


/*===========================================================
 Navigation Menu Desktop
============================================================*/
.header-area {
    padding: 19px 0;
}

.header {
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}

.menu ul li {
    list-style: none;
    display: inline-block;
    padding: 13px 13px;
}

.menu ul li a {
    font-size: 18px;
    color: #000;
    text-decoration: none;
    padding: 7px 5px;
    border-bottom: 2px solid transparent;
    position: relative;
}

.menu ul li:hover > a:before,
.menu ul li.current-page-ancestor > a:before,
.menu ul li.current-menu-ancestor > a:before,
.menu ul li.current-menu-item > a:before,
.menu ul li.current_page_item > a:before,
body.category-videos .video-posts-holder > a:before,
body.category-jekhipe-gemeinsam .jekjipe-gemeinsam-holder > a:before {
  content: '';

  height: 2px;
  width: 100%;
  background-color: #00bf00;

  position: absolute;
  bottom: 0;
  left: 0;
}

.menu ul ul li:hover > a:before,
.menu ul ul li.current-page-ancestor > a:before,
.menu ul ul li.current-menu-ancestor > a:before,
.menu ul ul li.current-menu-item > a:before,
.menu ul ul li.current_page_item > a:before,
body.category-videos ul ul .video-posts-holder > a:before,
body.category-jekhipe-gemeinsam ul ul .jekjipe-gemeinsam-holder > a:before {
  height: 100%;
  width: 2px;
  left: 10px;
}

.logo img {
    /*width: 150px;*/
}

/*===========================================================
 Navigation Menu slideout
============================================================*/
main .mobileMenuOpener {
    display: none;
}

.panel-header {
    display: none;
}

.slideout-menu {
    position: fixed;
    top: 0;
    bottom: 0;
    width: 256px;
    min-height: 100vh;
    overflow-y: scroll;
    -webkit-overflow-scrolling: touch;
    z-index:999;
    display: none;
}

.slideout-menu-left {
    left: 0;
}

.slideout-menu-right {
    right: 0;
}

.slideout-panel {
    position: relative;
    z-index: 1;
    background-color: #FFF;
    min-height: 100vh;

}

.slideout-open,
.slideout-open body,
.slideout-open .slideout-panel {
    overflow: hidden;
}

.slideout-open .slideout-menu {
    display: block;
}

.slideout-open .slideout-menu {
    background: #34495e;
}

.btn-hamburger {
    cursor: pointer;
}

.menu-section-list {
    padding: 25px 10px;
}

.menu-section-list li a:hover {
    color: #bdc3c7;
}

.menu-section-list li a {
    line-height: 2;
    color: #fff;
}

.menu-section-list li {
    display: block;
}

.btn-hamburger img {
    width: 27px;
}

/*Hamburger Menu Icon*/
.hamburger .line {
    width: 40px;
    height: 5px;
    background-color: #005b1f;
    display: block;
    margin: 8px auto;
    transition: all 0.3s ease-in-out;
}

.hamburger:hover {
    cursor: pointer;
}

.hamburger:hover .line {
    opacity: .8;
}

.slideout-open .line:nth-child(2) {
    opacity: 0;
}

.slideout-open .line:nth-child(1) {
    transform: translateY(13px) rotate(45deg);
}

.slideout-open .line:nth-child(3) {
    transform: translateY(-13px) rotate(-45deg);
}

.menu ul li .dropdown-menu li {
    display: block;
}

.menu ul li .dropdown-menu li a {
    padding: 0;
    line-height: 1.2;
    display: block;
}



/* .dropdown-menu:before {
    position: absolute;
    content: '';
    width: 11px;
    height: 11px;
    transform: rotate(-45deg);
    border-radius: 2px;
    border: solid 1px #bcb9b8;
    background-color: #bcb9b8;
    top: -4px;
    left: 25px;
    z-index: -1;
} */
.dropdown-menu:before {
    display: inline-block;
    margin-left: 0.255em;
    vertical-align: middle;
    content: "";
    border-top: 0.3em solid;
    border-right: 0.3em solid transparent;
    border-bottom: 0;
    border-left: 0.3em solid transparent;
    top: -6px;
    left: 20px;
    position: absolute;
    background-repeat: no-repeat;
    transform: rotate(180deg);
    color: #bcb9b8;
}

.dropdown-menu .dropdown-menu:before {
    top: 25px;
    left: -14px;
    border-top: 0.3em solid transparent;
    border-right: 0.3em solid transparent;
    border-bottom: 0.3em solid transparent;
    border-left: 0.3em solid;
}

.dropdown {
    position: relative;
}

.dropdown:before {
    position: absolute;
    content: '';
    background-image: url(../img/arrow-down-black.svg);
    background-position: 75% center;
    background-repeat: no-repeat;
    width: 15px;
    height: 8px;
    background-size: cover;
    z-index: 9;
    right: -5px;
    background-repeat: no-repeat;
    top: 24px;
    cursor: pointer;
}

.dropdown .dropdown:before {
    -webkit-transform: rotate(270deg);
    -moz-transform: rotate(270deg);
    -o-transform: rotate(270deg);
    -ms-transform: rotate(270deg);
    transform: rotate(270deg);
    top: 14px;
    right: 25px;
}

.dropdown-menu {
    margin: 0;
    border-radius: 7px;
    box-shadow: 0 12px 24px 0 rgba(0, 0, 0, 0.25);
    border: solid 1px #bcb9b8;
    background-color: #fff;
    min-width: 271px;
    max-width: 350px;
    width: max-content;
    top: 100%;
    left: 14px;
    padding: 15px 0 !important;

}

.dropdown-menu > li > a {
    padding-left: 25px !important;
    padding-right: 25px !important;
}

.dropdown-menu > li.menu-item-has-children > a {
    padding-right: 35px !important;
}

.dropdown-menu .dropdown-menu {
    left: 100%;
    top: -15px;
}

.dropdown-menu li {
    padding: 7px 0 !important;
}

.dropdown-menu li a {
    color: #575352 !important;
}

.dropdown-menu li a:hover {
    color: #180601 !important;
}

.dropdown-menu ul {}

.dropdown a {
    position: relative;
}

.menu-right span {
    margin: 0 20px;
}

.menu-right .search-button {
  margin-right: 10px;
}

.search-button {
    display: inline-block;
}

.contact {
    display: inline-block;
}

.contact a,
.wpforms-submit {
    font-size: 18px !important;
    font-weight: 600 !important;
    text-align: center !important;
    color: #fff !important;
    width: 115px !important;
    line-height: 40px !important;
    border-radius: 7px !important;
    display: inline-block !important;
    text-decoration: none !important;
    background-color: #005b1f !important;
    padding: initial !important;
}

.contact a:hover,
.wpforms-submit:hover {
    background: #dd2d21;
}

/*===========================================================
 Banner Area
===========================================================*/
.banner-area .swiper-button-next {
    background-image: url(../img/arow-right.svg);
    right: 25px;
}

.banner-area .swiper-button-prev {
    background-image: url(../img/arrow-left.svg);
    left: 25px;
}

.swiper-button-next.swiper-button-disabled,
.swiper-button-prev.swiper-button-disabled {
    opacity: 1;
}

.swiper-container-horizontal>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {}

.swiper-pagination-bullet {
    opacity: 1;
    width: 8px;
    height: 8px;
    border-radius: 50px;
    background-color: #fff;
    cursor: pointer;
    -webkit-transform: unset !important;
    -ms-transform: unset !important;
    transform: unset !important;
}

.swiper-pagination {
    width: 100% !important;
}

.swiper-pagination-bullet-active-next-next {
    -webkit-transform: unset !important;
    -ms-transform: unset !important;
    transform: unset !important;
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main {
    width: 20px;
    height: 8px;
    border-radius: 50px;
    background-color: #00bf00;
}

.banner-area {}

.d-flex {
    display: flex;
    align-items: center;
    position: relative;
}

.d-flex:before {
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .4);
}

.banner-text {
    position: relative;
}

.banner-text p {
  font-weight: 600;
  color: #fff;
  max-width: 530px;
  margin-bottom: 25px;
}

.banner-text p.heading-slider {
    font-size: 32px;
    font-weight: 600;
    color: #fff;
    max-width: 530px;
    margin-bottom: 25px;
}

.banner-text a:hover {
    background: #dd2d21;
}

.banner-text a {
    font-weight: 600;
    color: #fff;
    font-size: 18px;
    border-radius: 7px;
    border: solid 1px #fff;
    width: 179px;
    text-align: center;
    display: inline-block;
    padding: 8px 0;
    text-decoration: none;
}

.search-section {
    position: absolute;
    display: none;
    opacity: 0;
    z-index: -1;
    transition: 0.5s all ease-in-out;
}

.search-box {
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.search-input {
    width: 40%;
    border: 2px solid #ffffff;
    position: relative;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

.search-input .input-textarea {
    position: relative;
    background: transparent;
    font-weight: 600;
    width: 100%;
    height: 55px;
    padding: 10px 15px;
    color: white;
    z-index: 2;
    border: none;
    font-size: 22px;
}

.search-input span {
    margin-right: 10px;
}

.search-section.open {
    opacity: 1;
    z-index: 0;
    display: block;
    transition: 0.5s all ease-in-out;
    height: 100%;
    width: 100%;
    background: rgba(0, 91, 31, 0.9);
    top: 0;
    z-index: 99;

    position: fixed;
}

.search-input button {
    padding-right: 15px;
}

.search-button {
    position: relative;
    cursor: pointer;
}

.search-section ::-webkit-input-placeholder {
    color: #fff;
    font-size: 22px;
    font-weight: 600;
}

.cross span {
    position: absolute;
    width: 20px;
    height: 50px;
    right: 25px;
    top: 25px;
    font-size: 35px;
    color: #fff;
    cursor: pointer;

}

/*===========================================================
 Aktuelles
===========================================================*/
.aktuelles-area {
    padding-top: 50px;
}

.aktuelle-title {
    text-align: center;
    margin-bottom: 40px;
}

.aktuelle-title h2 {}

.title h2 {
    font-size: 40px;
    font-weight: 600;
    color: #180601;
    display: inline-block;
    position: relative;
}

.wpb_text_column h1,
.wpb_text_column h2 {
  position: relative;
  display: inline;
}

.wpb_text_column h1::after,
.wpb_text_column h2::after {
  content: '\A';
  white-space: pre;
}

.wpb_text_column h1 + *,
.wpb_text_column h2 + * {
  margin-top: 25px;
}

.title h2:before,
.wpb_text_column h1:before,
.wpb_text_column h2:before {
    position: absolute;
    content: '';
    width: 59px;
    height: 24px;
    border-radius: 1px;
    background-color: #dafbc9;
    bottom: 0;
    right: -15px;
    z-index: -1;
}

.aktuelle-img img {
    width: 100%;
}

.aktuelle-text {
    border-radius: 7px;
    background-color: #dafbc9;
    padding: 18px 17px;
    padding-bottom: 70px;
    position: relative;
}

.aktuelle-text a {
    font-size: 25px;
    font-weight: 600;
    color: #180601;
    text-decoration: none;
    display: inline-block;
    margin-bottom: 7px;
}

.aktuelle-text p {
    font-size: 15px;
    line-height: 1.6;
    top: 10px;
    color: #575352;
}

.weiterlesen {
    position: absolute;
    right: 15px;
    bottom: 18px;
}

.weiterlesen a {
    font-size: 16px;
    font-weight: 600;
    line-height: 1.5;
    color: #005b1f;
    text-align: right;
    text-decoration: underline;
}

.aktuelle-btn {
    text-align: center;
    margin-top: 45px;
}

.aktuelle-btn a {
    display: inline-block;
    text-align: center;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    color: #000;
    line-height: 38px;
    padding: 0 12px;
    border-radius: 7px;
    border: solid 1px #bcb9b8;
    transition: .3s;
}

.aktuelle-btn a:hover {
    background: #dd2d21;
    border-color: #dd2d21;
    color: #fff;
}

/*===========================================================
 Spenden Area
===========================================================*/

.spenden-area {
    padding: 100px 0;
}

.spenden {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.spenden-text {
    max-width: 590px;
    width: 100%;
}

.spenden-text .title h2:before {
    background: #fbc0a5;
}

.spenden-text h2 {}

.spenden-text p {
    font-size: 17px;
    line-height: 1.65;
    color: #575352;
    margin-top: 25px;
    margin-bottom: 30px;
}

.spenden-btn {}

.spenden-btn select {
    background: transparent;
    border: 0;
    padding: 8px 12px;
    padding-right: 36px;
    border-radius: 7px;
    background-color: #dd2d21;
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    appearance: none;
    background-image: url(../img/arrow-down-white.svg);
    background-position: 94% center;
    background-repeat: no-repeat;
    cursor: pointer;
}

.spenden-btn select option {}

.spenden-btn a {
    font-size: 18px;
    font-weight: 600;
    color: #dd2d21;
    padding: 8px 12px;
    border-radius: 7px;
    border: solid 1px #fbc0a5;
    background-color: #fff;
    text-decoration: none;
}

.spenden-btn a:hover {
    background: #dd2d21;
    border-color: #dd2d21;
    color: #fff;
}

/*===========================================================
 Gallery
===========================================================*/
.media-area {
    padding-bottom: 80px;
}

.media-title {
    margin-bottom: 40px;
}

.media-slider {
    position: relative;
}

.media-img {}

.media-img img {
    width: 100%;
    border-radius: 7px;
    object-fit: cover;
    height: 230px;
}

.media-sl .swiper-slide:nth-child(3n) .single-media .media-text,
.swiper-slide-block:nth-child(3n) .single-media .media-text,
.swiper-slide-block.single-block.background-color-green .single-media .media-text {
    border-radius: 7px;
    background-color: #dafbc9;
    border-bottom: 7px solid #00bf00;
}

.media-sl .swiper-slide:nth-child(3n+1) .single-media .media-text,
.swiper-slide-block:nth-child(3n+1) .single-media .media-text,
.swiper-slide-block.single-block.background-color-red .single-media .media-text {
    border-radius: 7px;
    background-color: #fee2d5;
    border-bottom: 7px solid #dd2d21;
}

.media-sl .swiper-slide:nth-child(3n+2) .single-media .media-text,
.swiper-slide-block:nth-child(3n+2) .single-media .media-text,
.swiper-slide-block.single-block.background-color-blue .single-media .media-text {
    border-radius: 7px;
    background-color: #c0e3fa;
    border-bottom: 7px solid #0d6cd8;
}

.media-text {
    padding: 15px;
    height: 110px;
}

.single-block .media-text {
  height: auto;
}

.media-text a {
    text-decoration: none;
    font-size: 22px;
    font-weight: 600;
    color: #180601;
}

.media-slider .swiper-button-next,
.media-slider .swiper-container-rtl .swiper-button-prev {
    background-image: url(../img/arrow-right-circle.png);
    background-size: 100% 100%;
    width: 46px;
    height: 46px;
}

.media-slider .swiper-button-prev,
.media-slider .swiper-container-rtl .swiper-button-next {
    background-image: url(../img/arrow-left-circle.png);
    background-size: 100% 100%;
    width: 46px;
    height: 46px;
}

/*===========================================================
 Uber Area
===========================================================*/

.uber-area {
    padding-bottom: 150px;
}

.uber {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.uber-title {
    margin-bottom: 78px;
}

.uber-title h2:before {
    background: #9cd6fb;
}

.uber-text {
    max-width: 590px;
    width: 100%;
}

.uber-text p {
    font-size: 16px;
    line-height: 1.75;
    color: #575352;
    margin-bottom: 30px;

}

.uber-text a {
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    display: inline-block;
    text-decoration: none;
    padding: 8px 12px;
    border-radius: 7px;
    background-color: #0d6cd8;

}

.uber-text a:hover {
    background: #dd2d21;
    border-color: #dd2d21;
    color: #fff;
}

/*===========================================================
 Footer Area
===========================================================*/

.footer-area {
    background-color: #0d6cd8;
    position: relative;
    overflow: hidden;
}

.footer-area::before {
    position: absolute;
    top: -45px;
    left: -10px;
    width: 110%;
    height: 100px;
    background: #fff;
    content: '';
    -webkit-transform: rotate(-2deg);
    -ms-transform: rotate(-2deg);
    -o-transform: rotate(-2deg);
    transform: rotate(-2deg);
}

.footer-logo {
    margin-bottom: 28px;
    position: relative;
    z-index: 9;
}

.footer {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.footer-right {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    width: 46%;
}

.footer-left {
    width: 54%;
}

.footer-left a {
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    text-decoration: none;
}

.footer-left address {
    font-size: 18px;
    color: #fff;
    margin-top: 12px;
    margin-bottom: 20px;
}

.social-icon a {
    margin-right: 10px;
    display: inline-block;
}

.single-footer {}

.footer-menu h3,
.single-footer h3 {
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 15px;
}

.single-footer a {
    font-size: 18px;
    color: #fff;
    display: block;
    text-decoration: none;
    line-height: 2;
}

.single-footer a:hover,
.footer-menu ul li a:hover {
    color: #ddd;
}

.footer-menu ul {}

.footer-menu ul li {
    list-style: none;
}

.footer-menu ul li a {
    font-size: 18px;
    color: #fff;
    display: block;
    text-decoration: none;
    line-height: 2;

}

.de {}

.de select {
    background: transparent;
    border: 0;
    font-size: 18px;
    color: #fff;
    cursor: pointer;
    appearance: none;
    background-image: url(../img/de-arrow.svg);
    background-position: 84% 10px;
    background-repeat: no-repeat;
    width: 45px;
}

.de select option {
    color: #000;
}

.footer-btm {
    text-align: right;
    border-top: 1px solid rgba(255, 255, 255, .3);
    padding: 20px 0;
    margin-top: 45px;
}

.footer-btm a {
    text-decoration: none;
    font-size: 14px;
    color: #fff;
    display: inline-block;

}

/*===========================================================
 Responsive Menu
===========================================================*/
@media (min-width: 992px) {
    .dropdown:hover > .dropdown-menu {
        display: block;
    }

    .search-mobile {
        display: none;
    }
}

@media (max-width: 991px) {
    .search-input {
    width: 70%;
}
    .search-mobile {
        display: block;
        position: absolute;
        z-index: 99;
        left: 90px;
        top: 26px;
    }

    .menu ul li {
        padding: 0;
    }

    .header-area {
        display: none;
    }


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

    .menu ul li .dropdown-menu li {
        padding-left: 10px;

    }

    .menu ul li .dropdown-menu li a {
        padding-left: 0;
        padding-right: 0;
    }

    .dropdown-menu {
        width: 100%;
        background-color: #fff;
        background-clip: padding-box;
        border: none;
        position: relative;
        top: unset;
        left: 0;
        padding: 7px 10px !important;
    }

    .dropdown:before {
        background-image: url(../img/arrow-down-white.svg);
        right: 15px;
        background-repeat: no-repeat;
        top: 23px;
    }

    main .mobileMenuOpener {
        display: block;
        position: absolute;
        width: 20px;
        height: 100%;
        z-index: 10;
    }

    .menu ul li {
        display: block;

    }

    .menu ul li a {
        color: #fff;
        display: block;
        padding: 10px 0;
        border-bottom: 2px solid rgba(255, 255, 255, .1);
        line-height: 1.5;
    }

    .menu ul li .dropdown-menu li a {
        line-height: 1.4;
    }

    .dropdown>a::after {
        right: 10px;
        position: absolute;
        top: 50%;
        margin-top: -1px;
    }

    /*Menu Activation*/
    .panel-header {
        display: -moz-flex;
        display: -ms-flex;
        display: -o-flex;
        display: flex;
        justify-content: space-between;
        align-items: center;
        background: #fff;
        box-shadow: 0px 1px 3px #eee;
        padding: 10px 15px;
    }
}

/*===========================================================
 Responsive
============================================================*/

@media (max-width: 1399px) {
    .spenden-text {
        max-width: 500px;
        width: 100%;
    }

    .uber-text {
        max-width: 500px;
        width: 100%;
    }

    .banner-area .swiper-button-next {
        right: 15px;
    }

    .banner-area .swiper-button-prev {
        left: 15px;
    }
    .search-input {
    width: 50%;
}
}

@media (max-width: 1199px) {
    .search-input {
    width: 70%;
}
    .banner-text {
        padding: 0 25px;
    }

    .uber-img,
    .spenden-img {
        width: 50%;
    }

    .uber-text,
    .spenden-text {
        max-width: 47%;
    }

    .spenden-text p {
        line-height: 1.5;
        margin-top: 10px;
        margin-bottom: 20px;
    }

    .uber-text p {
        font-size: 16px;
        line-height: 1.5;
        margin-bottom: 15px;
    }

    .uber-area {
        padding-bottom: 120px;
    }

    .aktuelle-text a {
        font-size: 24px;
    }

    .aktuelle-text {
        padding-bottom: 50px;
    }

    .weiterlesen a {
        font-size: 16px !important;
    }
}

@media (min-width: 992px) {
    .dropdown:hover > .dropdown-menu {
        display: block;
        padding: 15px 30px;
        position: absolute;
        z-index: 2;
    }
}
@media (max-width: 991px) {
    .dropdown-menu:before{
        display: none;
    }
    .dropdown:before{
        z-index: 0;
    }
    .banner-area .swiper-slide {
        height: 400px !important;
    }

    .single-aktuelle {
        margin-top: 25px;
    }

    .aktuelle-title {
        margin-bottom: 20px;
    }

    .aktuelle-text a {
        font-size: 22px;
    }

    .uber-img,
    .spenden-img {
        width: 100%;
        text-align: center;
    }

    .uber-text,
    .spenden-text {
        max-width: 100%;
        margin-top: 40px;
    }

    .spenden-area {
        padding: 80px 0;
    }

    .uber-title {
        margin-bottom: 50px;
    }

    .uber-area {
        padding-bottom: 100px;
    }
}

@media (max-width: 767px) {
    .footer-btm {
        text-align: center;
    }

    .search-input {
        width: 90%;
    }

    .banner-area .swiper-slide {
        background-size: cover !important;
        background-position: center center !important;
    }

    .banner-text p {
        font-size: 30px;
    }

    .uber-text,
    .spenden-text {
        margin-top: 30px;
    }

    .media-area {
        padding-bottom: 65px;
    }

    .spenden-area {
        padding: 65px 0;
    }

    .footer-left {
        width: 100%;
    }

    .footer-right {
        width: 100%;
        margin-top: 30px;
    }

    .footer-menu ul li a,
    .single-footer a {
        line-height: 1.6;
        font-size: 17px;
    }
}

@media (max-width: 575px) {
    .banner-area .swiper-slide {
        height: 350px !important;
    }

    .footer-area::before {
        top: -43px;
    }

    .uber-area {
        padding-bottom: 70px;
    }

    .title h2 {
        font-size: 37px;
    }

    .uber-title {
        margin-bottom: 40px;
    }

    .aktuelle-title {
        margin-bottom: 15px;
    }

    .banner-text p {
        font-size: 24px;
        line-height: 1.4;
        margin-bottom: 15px;
    }

    .banner-area .swiper-button-next {
        right: 8px;
    }

    .banner-area .swiper-button-prev {
        left: 8px;
    }
}
