@font-face {
    font-family: 'Mulish';
    src: url('../fonts/Mulish-Black.woff2') format('woff2'),
        url('../fonts/Mulish-Black.woff') format('woff');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Mulish';
    src: url('../fonts/Mulish-Regular.woff2') format('woff2'),
        url('../fonts/Mulish-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Mulish';
    src: url('../fonts/Mulish-Bold.woff2') format('woff2'),
        url('../fonts/Mulish-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Mulish';
    src: url('../fonts/Mulish-SemiBold.woff2') format('woff2'),
        url('../fonts/Mulish-SemiBold.woff') format('woff');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}


/*===========================================================
 Custom Variable
============================================================*/
:root {
    /* Hamber menu icon style */
    --hamWidth: 40px;
    --hamHeight: 4px;
    --hamMargin: 6px;
    /* summation of --hamMargin adn --hamHeight */
    --hamTranslate: 10px;
    /* summation of --hamMargin adn --hamHeight */
    --hamTranslate3: -10px;
    --hamBg: red;
    /* --preloaderBg:  green; */

}


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

body {
    font-size: 17px;
    font-family: 'Mulish';
    font-weight: 400;
    color: #000;
    background: #fff;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-font-smoothing: antialiased;
}

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%;
}

img.lazy {
    background-image: url('../img/loading.gif');
    background-repeat: no-repeat;
    background-position: 50% 50%;
    background-size: 50px auto;
    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;
}

#npreOverlay {
    background: var(--preloaderBg);
}

/*===========================================================
 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;
}



/*===========================================================
 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 {
    position: relative;
}

.blue-circle {
    width: 57px;
    height: 57px;
    border-radius: 50%;
    background-color: #5fabdd;
    position: absolute;
    right: -60px;
}

.header-area {
    padding: 15px 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;
}

.menu ul li a {
    font-weight: 400;
    line-height: 24px;
    padding-left: 10px;
    font-size: 16px;
    font-weight: bold;
    line-height: 1.14;
    color: #000;
    text-decoration: none;
}

.menu ul li a:hover {
    color: #8f1137;

}

.logo img {}

.menu {
    text-align: right;
}

.menu-bttm {
    border-top: 1px solid #7e7e7e;
    padding-top: 12px;
    margin-top: 12px;
}

.menu-top ul li a {
    padding-left: 35px;
}

.menu-bttm {
    display: flex;
    align-items: center;
}

.search {
    margin-left: 70px;
}

.search input {
    width: 240px;
    height: 29px;
    border-radius: 15px;
    border: 0;
	background: #efefef;
    padding: 0 10px;
    padding-left: 45px;
}

.search form {
    position: relative;
}

.search button {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    line-height: 1;

}

.menu-bttm ul li a {
    padding-right: 20px;
    padding-left: 0;
}

/*===========================================================
 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: 0;
    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: #34495e;
    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);
}



/*===========================================================
 Hamberger
===========================================================*/


.hamburger .line {
    width: var(--hamWidth);
    height: var(--hamHeight);
    background-color: #8f1137;
    display: block;
    margin: var(--hamMargin) auto;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.hamburger:hover {
    cursor: pointer;
}

/* ONE */

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

.slideout-open .line:nth-child(1) {
    -webkit-transform: translateY(var(--hamTranslate)) rotate(45deg);
    -ms-transform: translateY(var(--hamTranslate)) rotate(45deg);
    -o-transform: translateY(var(--hamTranslate)) rotate(45deg);
    transform: translateY(var(--hamTranslate)) rotate(45deg);
}

.slideout-open .line:nth-child(3) {
    -webkit-transform: translateY(var(--hamTranslate3)) rotate(-45deg);
    -ms-transform: translateY(var(--hamTranslate3)) rotate(-45deg);
    -o-transform: translateY(var(--hamTranslate3)) rotate(-45deg);
    transform: translateY(var(--hamTranslate3)) rotate(-45deg);
}




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

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

.dropdown-menu {
    margin: 0;
    border: 0;
    border-radius: 0;
}

.dropdown a {
    position: relative;
}

.dropdown>a:hover::after {
    color: #d25419;
}

.dropdown>a::after {
    display: inline-block;
    margin-left: .255em;
    vertical-align: middle;
    content: "";
    border-top: .3em solid;
    border-right: .3em solid transparent;
    border-bottom: 0;
    border-left: .3em solid transparent;
}

/*===========================================================
 Header
===========================================================*/
.logo {}




/*===========================================================
 Banner
===========================================================*/


.banner {
    position: relative;
}

.banner-img {}

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

.banner-text {
    max-width: 511px;
    width: 100%;
    bottom: 0;
    left: 0;
    position: absolute;
    padding: 28px 96px 60px 53px;
    background-color: rgba(216, 216, 216, 0.7);
}

.banner-text h2 {
    font-size: 40px;
    font-weight: 900;
    line-height: 1.24;
    color: #8f1137;
}

.banner-text p {
    font-size: 18px;
    font-weight: normal;
    line-height: 1.44;
    color: #000;
}

.join-us {
    position: absolute;
    right: 0;
    bottom: 0;
}

.join-us a {
    padding: 15px 70px 8px 71px;
    background-color: #f1ece9;
    font-size: 42px;
    font-weight: bold;
    text-align: center;
    color: #8f1137;
}



/*===========================================================
 Content area
===========================================================*/
.content-area {
    background-color: #f1ece9;
    padding-top: 100px;
    padding-bottom: 160px;
}

.content-text {
    margin-bottom: 20px;
    display: inline-block;
    width: 100%;
}

.content-text h2 {
    font-size: 28px;
    font-weight: bold;
    line-height: 1.29;
    color: #000;
    margin-bottom: 0;

}

.content-text a {
    float: right;

}

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


/*===========================================================
Aktuelle 
===========================================================*/

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

.aktuelles-title {
    margin-bottom: 70px;
    margin-top: -55px;
    text-align: center;
}

.aktuelles-title h2 {
    font-size: 42px;
    font-weight: bold;
    color: #8f1137;
    background: #fff;
    display: inline-block;
    padding: 0 88px;
    padding-top: 10px;
}

.single-aktuelle {
    background-color: #f5f5f5;
}

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

.aktuelle-text {
    padding: 15px 20px 27px 20px;
    display: inline-block;
}

.aktuelle-text h2 {
    font-size: 28px;
    font-weight: bold;
    line-height: 1.29;
    color: #000;
}

.aktuelle-text p {
    font-size: 14px;
    font-weight: normal;
    line-height: 1.43;
    color: #000;
    margin-bottom: 20px;
    margin-top: 8px;
}

.aktuelle-text a {
    font-size: 14px;
    font-weight: normal;
    line-height: 1.43;
    color: #8b2b44;
    text-decoration: none;
    float: right;
}

/*===========Pagination======*/


.pagination,
.page-numbers {
    display: flex;
    align-items: center;
    justify-content: center;

}

.pagination {
    margin-top: 30px;
}

.btn-nav,
.btn-page {
    cursor: pointer;
}



.btn-page:hover {
    border-radius: 2px;
    background-color: #8f1137;
    color: #fff;
}

.btn-page {
    border: none;
    font-size: 17px;
    font-weight: normal;
    line-height: 1.55;
    color: #8f1137;
    width: 26px;
    height: 26px;
    margin: 0 5px;

}

.btn-selected {
    border-radius: 2px;
    background-color: #8f1137;
    color: #fff;
}

.pagination button {
    line-height: 1;
}

.footer-menu div {
    margin: 20px 0;
}

.footer-menu div a {
    display: block;
    font-size: 16px;
    font-weight: normal;
    line-height: 1;
    color: #f5f5f5;
    text-decoration: none;
    margin: 10px 0;
}

.footer-menu p {
    font-size: 16px;
    font-weight: normal;
    line-height: 1;
    color: #f5f5f5;
}

.footer-menu div a span {
    margin-left: 10px;
}



/*===========================================================
 footer
===========================================================*/

.footer-area {
    background-color: #8f1137;
    padding-top: 40px;
}

.footer-menu {}

.footer-menu h3 {
    font-size: 18px;
    font-weight: 600;
    line-height: 1;
    color: #fff;
    margin-bottom: 10px;
}

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

.footer-menu ul li a {
    font-size: 16px;
    font-weight: normal;
    line-height: 1.7;
    color: #f5f5f5;
    display: block;
    text-decoration: none;
}

.footer-menu address {
    margin: 0;
    font-size: 16px;
    font-weight: normal;
    line-height: 1.7;
    color: #f5f5f5;
}

.social-icon {
    text-align: right;
}

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

.footer-btm {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer-btm {
    padding-top: 50px;
    padding-bottom: 24px;
}

.footer-btm p {
    font-size: 14px;
    font-weight: 300;
    line-height: 1;
    color: #f5f5f5;
}

.footer-btm ul li {
    list-style: none;
    display: inline-block;
}

.footer-btm ul li a {
    font-size: 14px;
    font-weight: 300;
    line-height: 1;
    color: #f5f5f5;
    text-decoration: none;
    margin-left: 15px;
}




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

@media (max-width: 991px) {
    .header-area {
        display: none;
    }

    .mobile-logo {
        width: 120px;
    }

    .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: transparent;
        background-clip: padding-box;
        border: none;
        position: unset;
        top: unset;
    }

    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: 1px solid rgba(255, 255, 255, .1);
        line-height: 2;
    }

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

    .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: 0 15px;
    }

    .menu {
        text-align: left;
    }
}

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

@media (max-width: 1399px) {
    .blue-circle {
        width: 47px;
        height: 47px;
        position: absolute;
        right: -49px;
    }
}

@media (max-width: 1199px) {
    .banner-text {
        padding: 25px 30px;
    }

    .content-text h2 {
        font-size: 22px;
    }
.blue-circle {
    width: 28px;
    height: 28px;
    right: -30px;
}
}

@media (max-width: 991px) {
    .blue-circle {
    width: 40px;
    height: 40px;
    right: 0;
    position: unset;
    margin-left: 10px;
}
    .search {
        margin-left: 0;
        padding-top: 0;
    }

    .search input {
        width: 100%;
    }

    .join-us {
        padding: 10px 0;
    }

    .join-us a {
        padding: 16px;
        font-size: 32px;
        color: #8f1137;
    }

    .banner-text h2 {
        font-size: 45px;
        font-weight: 900;
        line-height: 1.5;
        color: #8f1137;
    }

    .single-content {
        margin-bottom: 35px;
    }

    .content-area {
        padding-bottom: 130px;
    }

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

    .social-icon {
        text-align: left;
        margin-top: 10px;
    }

    .social-icon a {
        display: inline-block;
        margin-bottom: 0;
        margin-right: 15px;
    }

    .footer-menu {
        margin-bottom: 20px;
    }
}

@media (max-width: 767px) {
    .content-area {
        padding-bottom: 100px;
    }

    .content-area {
        padding-top: 80px;
    }

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

    .content-text img {
        width: 50px;
    }

    .banner-text {
        padding: 16px;
        max-width: 60%;
    }

    .banner-text h2 {
        font-size: 32px;
    }

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

    .join-us a {
        padding: 12px;
        font-size: 26px;
        color: #8f1137;
    }

    .join-us {
        padding: 9px 0;
    }

    .aktuelles-title h2 {
        font-size: 32px;
        padding: 0 68px;
        padding-top: 18px;
    }
}

@media (max-width: 575px) {
    .footer-btm {
        flex-direction: column;
        justify-content: center;
        padding-top: 40px;
    }

    .footer-btm p {
        margin-bottom: 10px;
    }

    .aktuelles-area {
        padding-bottom: 80px;
    }

    .aktuelles-title h2 {
        font-size: 32px;
        padding: 0 40px;
        padding-top: 18px;
    }

    .banner-text {
        padding: 10px;
        max-width: 100%;
        position: unset;
        margin: 0;
    }
	
	.join-us {
		position: unset;
		width: 100%;
	}

    .join-us a {
        padding: 10px;
        font-size: 20px;
        color: #8f1137;
		display: block;
    }

    .banner-text h2 {
        font-size: 26px;
    }


}