/*===========================================================
 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: var(--green-bright);
    /*  */
    --header-height: 0;
    /*  */
    --white: #fff;
    --black: #000;
    --gray-light: #bdc3c7;
    --gray-dark: #444;
    --green-primary: #6ba02b;
    --gray-very-light: #e2e2e2;
    --green-bright: #76b82a;
    --green-bright-opaque: #76b82a7c;
    --gray-deep: #494949;
    --green-olive: #3a5816;
    --gray-line: #898989;

    --wb-gray: #f9f9f9;
    --wb-green: var(--green-bright);
    --wb-green-opaque: var(--green-bright-opaque);

    --red-alert: #B83127;

    --xxl: 55px;
    --xl: 42px;
    --xl2: 40px;
    --lg: 32px;
    --lg2: 30px;
    --lg3: 28px;
    --lg4: 26px;
    --lg5: 24px;
    --lg6: 22px;
    --lg7: 20px;

    --md: 18px;
    --sm: 16px;
    --xs: 14px;

    --fontText: "D-Din", Arial, Helvetica, sans-serif;
    --fontTextCond: "D-Din-Condensed", Arial, sans-serif;
    --fontHeadline: "Arsenal-Regular", Arial, Helvetica, serif;
    --fontNav: "D-Din", Arial, Helvetica, sans-serif;

    --size-body: 19px;
    --size-h1: 31px;
    --size-h2: 26px;
    --size-h3: 22px;
    --size-h4: 19px;
    --size-h5: 19px;
    --size-h6: 19px;

    /* padding */
    --sectionPadding: 100px;
    --gutter-x: 30px;
}

/*===========================================================
 Common CSS
============================================================*/
body {
    font-family: var(--fontText);
    font-weight: 400;
    line-height: 1.5;
    letter-spacing: normal;
    overflow-x: hidden !important;

    font-size: var(--size-body);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

ul {
    padding: 0;
    margin: 0;
}

li,
li:hover,
a:hover,
.btn,
.btn:hover {
    transition: all 0.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 var(--white);
    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 {
    font-family: var(--fontHeadline);
    font-weight: normal;
}

h1 {
    font-size: var(--size-h1);
}

h2 {
    font-size: var(--size-h2);
}

h3 {
    font-size: var(--size-h3);
}

h4 {
    font-size: var(--size-h4);
}

h5 {
    font-size: var(--size-h5);
}

h6 {
    font-size: var(--size-h6);
}

.maincontent ul,
.maincontent ol {
    padding-left: 20px;
}

button:active,
button:focus {
    outline: 0;
}

.row {
    display: flex;
    flex-wrap: wrap;
    margin-right: calc(var(--gutter-x) * -0.5);
    margin-left: calc(var(--gutter-x) * -0.5);
}

.row>* {
    flex-shrink: 0;
    width: 100%;
    max-width: 100%;
    padding-right: calc(var(--gutter-x) * 0.5);
    padding-left: calc(var(--gutter-x) * 0.5);
    margin-top: var(--bs-gutter-y);
}

.col {
    flex: 1 0 0%;
}

.col-6 {
    flex: 0 0 auto;
    width: 50%;
}

.col-12 {
    flex: 0 0 auto;
    width: 100%;
}

.container {
    width: 100%;
    padding-right: calc(var(--gutter-x) * 0.5);
    padding-left: calc(var(--gutter-x) * 0.5);
    margin-right: auto;
    margin-left: auto;
    max-width: 1320px;
}

.container-fluid {
    width: 100%;
    padding-right: calc(var(--gutter-x) * 0.5);
    padding-left: calc(var(--gutter-x) * 0.5);
    margin-right: auto;
    margin-left: auto;
}

/*===========================================================
 Placeholder Style
============================================================*/

::-webkit-input-placeholder {
    color: var(--black);
    font-weight: 300;
    line-height: 30px;
    letter-spacing: 0.39px;
}

:-moz-placeholder {
    color: var(--black);
    font-weight: 300;
    line-height: 30px;
    letter-spacing: 0.39px;
}

::-moz-placeholder {
    color: var(--black);
    font-weight: 300;
    line-height: 30px;
    letter-spacing: 0.39px;
}

:-ms-input-placeholder {
    color: var(--black);
    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;
    background: var(--white);
    border-radius: 50%;
    border: 1px solid var(--white);
}

.go-top span {
    /*background-color: #4285F4;*/
    color: rgba(255, 255, 255, 0.6);
    cursor: pointer;
    float: right;
    font-weight: 400;
    line-height: 22px;
    padding: 5px 10px;
}

.go-top span:hover {
    color: var(--white);
}

/*===========================================================
Loader
===========================================================*/

.preloader {
    width: 100vw;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    background: var(--white);
    z-index: 99999999;
}

.spinner {
    width: 80px;
    height: 80px;
    border: 2px solid #f3f3f3;
    border-top: 3px solid #58b8cb;
    border-radius: 100%;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    -webkit-animation: 1s infinite spin;
    animation: 1s infinite spin;
}

@-webkit-keyframes spin {
    from {
        transform: rotate(0);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes spin {
    from {
        transform: rotate(0);
    }

    to {
        transform: rotate(360deg);
    }
}

#loading-msg {
    width: 100%;
    position: absolute;
    left: 0;
    bottom: 25px;
    text-align: center;
    color: #333;
    font-size: 0.8em;
}

/*===========================================================
 Navigation Menu Desktop
============================================================*/
.header {
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-end;
    position: relative;
}

.menu-left {
    transition: 0.6s;
    position: absolute;
    top: 0;

    height: 100%;
}

.menu-left a {
    display: block;

    height: 100%;
}

.menu-left img {
    width: auto;
    height: 100%;
}

.menu {
    display: flex;
    align-items: center;
    margin-left: auto;
}

.menu ul {
    margin: 0;
}

.menu-flex {
    display: flex;
    gap: 25px;
}

.menu ul li {
    list-style: none;
    display: inline-block;
    margin: 0 !important;
}

.menu ul li a {
    font-weight: 400;
    line-height: 1.5;
    text-decoration: none;
    color: #848484;
    text-transform: uppercase;
}

.menu ul li a:hover {
    color: var(--black) !important;
}

.dropdown-menu {
    margin: 0 !important;
    position: absolute;
    z-index: 1000;
    display: none;
    min-width: 10rem;
    padding: 10px;
    list-style: none;
    background-color: var(--black);
    background-clip: padding-box;
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: 0.25rem;
}

.header-area {
    transition: all 0.3s ease-in-out;
    border-top: 6px solid var(--green-bright);
    position: fixed;
    top: 0;
    width: 100%;
    background-color: var(--white);
    z-index: 100;
    padding: 0;
}

body.admin-bar .header-area {
    top: 32px;
}

body.wb-visual-editor-active .header-area {
    position: absolute !important;
}

.header-area.fixed-header {
    box-shadow: 0 1px 4px 0 #666;
}

.header-area {
    height: 104px;
}

.header-area .header {
    height: 98px;
}

.header-area + .breadcrumb,
.header-area + .top-icons + * {
    margin-top: 104px;
}

div.breadcrumb {
    border-top: 1px solid #d6d6d6;
    border-bottom: 1px solid #d6d6d6;
}

ol.breadcrumb {
    padding: 10px 0;
}

.breadcrumb ol {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0;

    white-space: nowrap;
}

.breadcrumb ol li {
    list-style: none;
    margin: 0 !important;
}

.breadcrumb ol li a {
    text-decoration: none;
    color: var(--green-bright);
    display: flex;
}

.breadcrumb i,
.breadcrumb ol li.active {
    color: var(--gray-dark);
}

.nav-header {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 333;
}

.nav-header ul {
    display: flex;
    gap: 10px;
}

.nav-header ul {
    margin: 0 !important;
}

.nav-header ul li {
    margin: 0 !important;
    list-style: none;
}

.nav-header ul li a {
    text-decoration: none;
    background-color: var(--green-bright);
    color: var(--white);
    padding: 10px 25px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 5px;
}

.nav-header ul li a.active {
    border-bottom: 1px solid var(--white);
}

/* ====================Mega Menu================= */

.mega-menu-area {
    background: var(--green-bright);
    padding: 50px 0;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 222;
    /* visibility: hidden;
    display: none; */
}

.mega-menu-top.current {
    display: block;
    visibility: visible;
}

.mega-menu-title {
    margin-bottom: 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.mega-menu-title h2 {
    color: var(--white);
    font-weight: 400;
}

.mega-menu-title p {
    color: var(--white);
}

.cross i {
    color: var(--white);
    cursor: pointer;
}

.mega-menu-card {
    display: flex;
    gap: 50px 30px;
    flex-wrap: wrap;
    justify-content: space-between;
    padding-bottom: 35px;
    border-bottom: 1px solid var(--white);
}

.mega-menu-card .bv-name {
    font-weight: bold;
}

.mega-menu-card address {
    white-space: break-spaces;
}

.mega-menu-card div {
    display: flex;
    flex-direction: column;
    gap: 5px 0;
    max-width: 18%;
    width: 100%;
}

.mega-menu a {
    color: var(--white);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
}

.mega-finder a:hover,
.mega-menu a:hover {
    color: var(--green-olive);
}

.mega-menu address {
    color: var(--white);
    font-style: normal;
    font-family: var(--fontText);
}

.mega-finder {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.mega-finder div {
    display: flex;
    flex-direction: column;
    gap: 40px 0;
    max-width: 33.33%;
    width: 100%;
}

.mega-finder div a {
    text-decoration: none;
    color: var(--white);
    display: flex;
    gap: 15px;
    align-items: center;
}

.close-sidebar {
    cursor: pointer;
}

.search-bar {
    max-width: 460px;
    background: #dbdbdb;
    padding: 70px 20px;
    transition: all 0.3s ease-in-out;
    position: fixed;
    right: 0;
    top: 0;
    height: 100%;
    width: 460px;
    /* background: var(--white); */
    box-shadow: -2px 0 5px rgba(0, 0, 0, 0.2);
    overflow-y: auto;
    transform: translateX(120%);
}

.search-bar.right-sidebar.active {
    z-index: 999;
}

.search-bar.active {
    transform: translateX(0);
}

.contact-persons-inner {
    padding-bottom: 30px;
}

/* width */
.search-bar::-webkit-scrollbar {
    width: 10px;
    border-radius: 5px;
}

/* Track */
.search-bar::-webkit-scrollbar-track {
    background: #f1f1f1;
}

/* Handle */
.search-bar::-webkit-scrollbar-thumb {
    background: var(--green-primary);
}

/* Handle on hover */
.search-bar::-webkit-scrollbar-thumb:hover {
    background: #555;
}

.search-bar>div {
    max-height: 100vh;
}

.search {
    position: relative;
}

.cross-icon {
    margin-bottom: 20px;
}

.search.search-container:before {
    position: absolute;
    content: "";
    width: 1px;
    height: 100%;
    background: #ccc;
    right: 70px;
}

.search input {
    background-color: var(--white);
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
    transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
    padding: 0 90px 0 20px;
    width: 100%;
    height: 67px;
    color: #555;

    border: 2px solid #000 !important;
}

.search ::-webkit-input-placeholder {
    color: #555;
}

.search ::-moz-placeholder {
    color: #555;
}

.search :-ms-input-placeholder {
    color: #555;
}

.search :-moz-placeholder {
    color: #555;
}

.search button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 25px;
    cursor: pointer;
}

.cross-icon i {
    color: var(--gray-dark);
}

.contact-persons-inner h2 {
    margin-bottom: 15px;
}

.contact-persons-inner * + h2 {
    margin-top: 50px;
}

.contact-persons-inner h3 {
    margin-top: 35px;
}

.contact-persons-inner h2 + h3 {
    margin-top: 0;
}

/*===========================================================
 Navigation Menu slideout
============================================================*/
main .mobileMenuOpener {
    display: none;
}

.panel-header {
    display: none;
}

.panel-header .mobile-logo {
    margin-left: auto;
}

.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: var(--white);
    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: #6ba02b;
}

.btn-hamburger {
    cursor: pointer;
}

.menu-section-list {
    padding: 25px 10px;
}

.menu-section-list li a:hover {
    color: var(--gray-light);
}

.menu-section-list li a {
    line-height: 2;
    color: var(--white);
}

.menu-section-list li {
    display: block;
}

.btn-hamburger img {
    width: 27px;
}

.hamburger:hover {
    cursor: pointer;
}

.hamburger:hover .line {
    opacity: 0.8;
}

/*===========================================================
 Hamberger
===========================================================*/

.hamburger .line {
    width: var(--hamWidth);
    height: var(--hamHeight);
    background-color: var(--hamBg);
    display: block;
    margin: var(--hamMargin) auto;
    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) {
    transform: translateY(var(--hamTranslate)) rotate(45deg);
}

.slideout-open .line:nth-child(3) {
    transform: translateY(var(--hamTranslate3)) rotate(-45deg);
}

.menu ul li .dropdown-menu li {
    display: block;
    position: relative;
}

.menu ul li .dropdown-menu li a {
    padding: 8px 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: var(--black);
}

.dropdown>a::after {
    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-icons {
    position: fixed;
    top: 167px;
    right: 0;
    z-index: 6;
    display: -ms-grid;
    display: grid;
    background-color: transparent;
    padding: 0;
}

.top-icons a {
    background: var(--green-bright);
    padding: 12px;
    display: flex;
    text-decoration: none;
    margin-bottom: 4px;
    align-items: center;
    text-align: center;
    justify-content: center;
}

.top-icons a i {
    text-decoration: none;
    color: var(--white);
}

.bdz-nav-list {
    list-style: none;
    display: flex;
    justify-content: flex-end;
    gap: 20px;
    position: relative;
}

.bdz-nav-list {
    margin: 0 !important;
}

.bdz-nav-item {
    /* position: relative; */
    margin: 0 !important;
}

.bdz-navbar {
    padding-top: 10px;
    padding-bottom: 2px;

    margin-left: auto;
}

.bdz-navbar .bdz-container {}

.bdz-submenu-links a,
.bdz-nav-link {
    text-decoration: none;
    color: #848484;
    padding: 10px;
    display: block;
    text-transform: uppercase;
    font-weight: 400;
}

.bdz-nav-link:hover {
    color: #76b82a;
}

.bdz-menu-column h4 {
    text-transform: uppercase;
    font-weight: 400;
}

.bdz-menu-column p {
    width: 330px;
    max-width: 100%;

    line-height: 1.4;
    margin-bottom: 25px !important;
}

.bdz-mega-menu {
    display: none;
    position: absolute;
    left: 0;
    width: 100vw;
    background: white;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    padding: 20px 0;
    z-index: 1000;
    background: #76b82a;
    padding: 70px 100px;
    min-height: 560px;
    top: 52px;
}

.bdz-mega-menu {
    color: #fff;
}

.bdz-mega-menu.show {
    display: block;
}

.bdz-mega-menu-content {
    display: flex;
    gap: 30px;
}

.bdz-menu-column {
    /* width: 33%; */
}

/*
.bdz-menu-column {
    flex: 1;
}

.bdz-menu-column:last-child {
    flex: 2;
} */

.bdz-submenu-links {
    display: flex;
    flex-direction: column;
    gap: 0 10px;
}

.bdz-submenu-links a,
.bdz-submenu-links .bdz-nav-link {
    padding: 5px 15px;
    transition: background-color 0.3s;
}

.bdz-content-column a,
.bdz-submenu-links a {
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-family: var(--fontText);
    text-decoration: none;
}

.bdz-submenu-links .bdz-nav-link:hover {
    color: #fff;
}

.bdz-submenu-links .bdz-nav-link span {
    padding-right: 25px;
    /* border-bottom: 5px solid transparent !important; */
    padding-bottom: 3px;
}

.bdz-content-column.active li a {
    display: inline-block;
    padding-right: 25px;
    border-bottom: 5px solid transparent;
}

.bdb-5 .bdz-nav-link {
    border-bottom: 5px solid transparent;
    padding: 0;
    display: inline-block;
}

.bdb-5 .bdz-nav-link:hover,
.bdz-content-column.active li:hover a,
.bdz-submenu-links .bdz-nav-link:hover span {
    border-bottom: 5px solid #fff !important;
}

.bdz-submenu-links .bdz-nav-link span {
    border-bottom: 5px solid transparent;
}

.bdz-content-column li {
    list-style: none;
}

.bdz-menu-column:nth-child(2) .bdz-submenu-links {
    max-width: 445px;
    width: 100%;
}

.bdz-menu-column:nth-child(2) {
    padding: 0 30px;
}

.bdz-content-column.active,
.bdz-menu-column:nth-child(2) {
    position: relative;
}

.bdz-menu-column:nth-child(2):before {
    position: absolute;
    content: "";
    width: 1px;
    height: 100%;
    left: 0;
    background: #fff;
}

.bdz-menu-column:nth-child(3) {
    padding-left: 25px;
}

.bdz-menu-column .weiter-bttn {
    text-align: left;
}

.bdz-menu-column .vc_general.vc_btn3.vc_btn3-color-grey {
    color: #fff !important;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border: 1px solid #fff !important;
}

.bdz-menu-column .vc_general.vc_btn3.vc_btn3-color-grey:hover {
    background: #fff !important;
    color: #76b82a !important;
}

.bdz-content-column.active {}

.bdz-content-column.active:after {
    position: absolute;
    content: "";
    left: -25px;
    top: 0;
    width: 1px;
    height: 100%;
    background: #fff;
}

.bdz-submenu-links .bdz-nav-link.active {}

.bdz-content-column {
    display: none;
}

.bdz-content-column.active {
    display: block;
}

.bdz-close-menu {
    position: absolute;
    top: 10px;
    right: 100px;
    cursor: pointer;
    color: #fff;
}

.bdz-close-menu:hover {
    color: #fff;
}

/* Mobile menu button */
.bdz-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.bdz-menu-column {
    overflow-y: auto;
    height: calc(100vh - 200px);
}

/* width */
.bdz-menu-column::-webkit-scrollbar {
    width: 5px;
}

/* Track */
.bdz-menu-column::-webkit-scrollbar-track {
    background: #f1f1f1;
}

/* Handle */
.bdz-menu-column::-webkit-scrollbar-thumb {
    background: #888;
}

/* Handle on hover */
.bdz-menu-column::-webkit-scrollbar-thumb:hover {
    background: #555;
}

/* CUSTOM GALLERY */
.custom-gallery {}

.custom-gallery a {
    position: relative;
    width: calc(50% - 8px); /* 2 columns with 16px gap */
    margin-bottom: 16px;
    display: block;
}

.custom-gallery a:after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: url('../img/zoom-in.svg') no-repeat 50% 50% / 40px auto, rgba(118, 184, 42, 0.8);
    opacity: 0;
    transition: opacity .3s ease;
}

.custom-gallery a:hover:after {
    opacity: 1;
}

.custom-gallery img {
    width: 100%;
    height: auto;
    display: block;
}

/* Responsive styles */
@media (max-width: 1299px) {
    .bdz-navbar {
        padding-right: 0;
        padding-top: 35px;
    }
}

/* Mobile menu styles */
.menu-items {
    padding: 0 10px;
}

.menu ul li a {
    color: #000 !important;
}

.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    overflow-y: auto;
}

.menu-level {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    transition: transform 0.3s ease;
    transform: translateX(100%);
}

.menu-level.active {
    transform: translateX(0);
}

.menu-header {
    padding: 15px;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    border-bottom: 1px solid #ddd;
}

.back-btn {
    background: none;
    border: none;
    padding: 5px 10px;
    margin-right: 10px;
    cursor: pointer;
}

.menu-title {
    font-size: var(--size-h4);
    font-weight: bold;
}

.menu-items {
    list-style: none;
}

.menu-item {
    border-bottom: 1px solid #eee;
}

.menu-link {
    display: flex;
    justify-content: space-between;
    padding: 15px;
    color: #333;
    text-decoration: none;
    align-items: center;
}

.menu-link:active {
    background: #f5f5f5;
}

************************* */

/*===========================================================
Area
===========================================================*/
.banner-area {
    background-image: url(../img/banner.jpg);
    width: 100%;
    min-height: 576px;
    background-size: cover;
    background-position: center center;
}

/*===========================================================
Content Area
===========================================================*/
.content-area {
    padding-top: 100px;
}

.content-inner {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.acc-container,
.wb-news {
    background: var(--green-bright);
    padding: 40px;
}

.content-text h3,
.content-top-text h3 {
    color: var(--gray-dark);
    font-weight: 400;
}

.content-top-text p a {}

.content-top-text p a {
    display: inline-flex;
    align-items: center;
    line-height: 22px;
    text-decoration: none;
    color: var(--green-primary);
    gap: 6px;
}

.content-left {
    /* max-width: 1090px; */
    max-width: 65%;
    width: 100%;
}

.content-right {
    /* max-width: calc(100% - 1180px); */
    max-width: 30%;
    width: 100%;
}

.wb-contact-card {
    display: flex;
    gap: 20px;

    margin-bottom: 35px;
}

.wb-contact-card-text h3 {
    font-weight: 400;
    margin: 0;
}

.wb-contact-card-text h5 {
    color: #737b7e;
    text-transform: uppercase;
    margin-bottom: 10px;
    font-weight: normal;
    margin: 5px 0;
}

.wb-contact-card-text a {
    display: flex;
    align-items: center;
    gap: 5px;
    line-height: 22px;
    text-decoration: none;
    color: var(--green-primary);
}

.content-text-area .content-right-img {
    float: right;
    margin-top: 50px;
    padding-left: 20px;
}

.content-right-img h6 {
    position: relative;
    color: #717273;
    margin-top: 6px;
}

.gallery {
    background-size: cover;
    background-position: center center;
    position: relative;
}

.gallery a {
    display: flex;
    text-decoration: none;
}

.wb-contact-card .gallery a {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;

    opacity: 0;
}

.wb-contact-card .gallery a:hover,
.wb-contact-card .gallery a:focus,
.wb-contact-card .gallery a:active {
    background-color: var(--wb-green-opaque);
    opacity: 1;
}

.gallery i {
    position: absolute;
    bottom: 5px;
    left: 5px;
    color: var(--white);
}

.fancybox-slide--image {}

.lg-sub-html {
    background-color: rgba(0, 0, 0, 0.45);
    bottom: 0;
    color: var(--gray-very-light);
    left: 0;
    padding: 10px 40px;
    position: fixed;
    right: 0;
    text-align: center;
    z-index: 1080;
}

.wb-news-wrapper.wb-template-news-area {
    border-top: 1px solid var(--gray-very-light);
    margin-top: 30px;
    padding-top: 30px;
}

.news-title {}

.news-title h3 {
    color: #4d6d28;
    font-weight: 300;
}

.news-card {
    margin-bottom: 50px;
}

.news-card h6 {
    font-weight: 300;
    margin: 0;
}

.news-card h4 a {
    list-style: none;
    color: var(--green-bright);
    text-decoration: none;
    font-weight: 300;
    display: block;
}

.news-card-inner {
    display: flex;
    flex-wrap: wrap;
}

.news-card-img {
    max-width: 350px;
    width: 100%;
}

.news-card-img a {
    display: flex;
}

.news-card-text {
    max-width: calc(100% - 350px);
    width: 100%;
    padding-left: 20px;
}

.news-card-text h6 {
    color: #888;
    font-weight: 400;
}

.news-card-text p {
    font-weight: 400;
    margin-bottom: 5px;
    font-family: var(--fontText);
}

.news-card-text a {
    color: var(--green-bright);
    text-decoration: none;
    text-transform: uppercase;
    display: flex;
    gap: 10px;
    align-items: center;
    font-weight: 400;
}

.kontakt {
    padding: 25px;
    background: var(--gray-very-light);
}

.kontakt.mt-0 {
    margin-top: 0;
}

.kontakt-inner {
    border-bottom: 1px dotted var(--gray-line);
    padding-bottom: 30px;
}

.kontakt-inner .kontakt-img-title a {
    color: var(--black);
    text-decoration: none !important;
}

.kontakt-inner .kontakt-img-title a:hover,
.kontakt-inner .kontakt-img-title a:focus,
.kontakt-inner .kontakt-img-title a:active {
    color: var(--wb-green);
}

.kontakt-inner .kontakt-img-title h3 {
    font-weight: bold;
}

.kontakt-text {
    margin-top: 14px;
}

.kontakt-text h3 {
    color: var(--green-deep);

    margin-bottom: 12px;
    font-weight: 400;
    font-family: var(--fontText);
}

.kontakt-text div {
    margin: 15px 0;
}

.kontakt-text a {
    text-decoration: none;
    color: var(--wb-green);
    font-weight: 400;
}

.kontakt-text h4 {
    display: flex;
    align-items: center;
    gap: 5px;
    margin: 0;
    color: var(--green-deep);
    font-family: var(--fontText);
    font-weight: 400;
    line-height: 1;
}

.kontakt-text h4 a {
    color: var(--green-primary);
}

.member {
    padding: 18px;
    background: var(--gray-very-light);
}

.member-img {
    display: flex;
}

.member-img img {
    width: 100%;
    display: block;
}

.member-text {
    background: var(--green-bright);
    padding: 20px;
}

.member-text p {
    font-style: normal;
    color: var(--white);
    font-family: var(--fontText);
    font-weight: 400;
}

.member-text a {
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: flex-start;
    text-decoration: none;
    gap: 15px;
    font-family: var(--fontText);
    font-weight: 400;
}

.trade {
    background: var(--gray-very-light);
    
    padding: 18px;
    border-bottom: 1px solid var(--gray-line);
}

.trade-inner {
    padding-bottom: 30px;
}

.trade-img {
    display: flex;
}

.trade-img img {
    width: 100%;
}

.trade h4 {
    margin-bottom: 12px;
    font-weight: 300;
}

.trade h4 a {
    text-decoration: none;
    color: var(--wb-green);
    margin-bottom: 12px;
    font-weight: 400;
}

.weiter-bttn {
    text-align: center;
}

/* =======================Slider============= */
.slider-area {
    padding: 100px 0;
}

.slick-dots {
    bottom: -110px;

    padding-left: 0 !important;
}

.slider {
    display: flex;
}

.single-slider {
    text-align: center;
    display: flex !important;
    justify-content: center;
    align-items: center;
}

.slider-img {
    width: 200px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.w-110 {
    width: 110px;
}

.slider-area .slick-slide img {
    height: 60px;
    width: auto;
    max-width: 100%;
}

.slider-area .slick-arrow.slick-left {
    left: 0;
}

.slider-area .slick-arrow.slick-right {
    right: 0;
}

.slider-area .slick-arrow {
    z-index: 1;
    top: 50%;
    transform: translateY(-50%);
    position: absolute;
}

.slider {
    position: relative;
}

.slick-arrow i {
    color: #5d9122;
    cursor: pointer;
}

.slick-dots li.slick-active button:before {
    opacity: 1;
}

.slick-dots li button:before {
    background: #5d9122;
    border-radius: 50%;
    opacity: 0.75;
}

.slick-dots li button:before {
    content: "";
}

.slick-dots li {
    margin-bottom: 0 !important;
}

/*===========================================================
Footer Area
===========================================================*/
.footer-area {
    background: var(--green-primary);
    padding: 100px 0;
}

.footer {
    display: flex;
    justify-content: space-between;

    padding-right: 100px;
    gap: 70px;
}

.footer > * {
    flex: 2;
}

.footer > .wb-custom-footer-menus {
    flex: 8;
    display: flex;
    gap: 30px;
}

.footer .wb-custom-footer-menus .footer-menus {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.footer > .footer-meta,
.footer > .flex-2 {
    flex: 3;
}

.footer > .flex-2 ul {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* 2 columns */
    gap: 0.5rem 1rem; /* row gap / column gap */
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-menu {}

.footer-menu h4,
.footer-menu h4 a {
    text-transform: uppercase;
    color: var(--white);
    text-decoration: none;

    font-family: var(--fontText);
    font-weight: 400;
}

.footer-menu ul {
    margin-bottom: 35px;
}

.footer-menu ul ul {
    display: none !important;
}

.footer-menu ul li {
    list-style: none;
    margin: 0 !important;
}

.footer-menu ul li a {
    color: var(--gray-very-light);
    text-decoration: none;
}

.footer-meta address {
    color: var(--gray-very-light);
    text-decoration: none;
    font-style: normal;
}

.footer-meta p {
    color: var(--gray-very-light);
    text-decoration: none;
    font-style: normal;
    margin: 0;
}

.footer-meta p a {
    color: var(--gray-very-light);
    text-decoration: none;
}

.footer-bttn {
    margin-top: 25px;
}

.footer-bttn .vc_general.vc_btn3.vc_btn3-color-grey {
    border: 1px solid var(--white) !important;
    color: var(--white) !important;
    text-transform: uppercase !important;
    font-weight: 300 !important;
}

.footer-bttn .vc_general.vc_btn3.vc_btn3-color-grey:hover,
.footer-bttn .vc_general.vc_btn3.vc_btn3-color-grey:focus,
.footer-bttn .vc_general.vc_btn3.vc_btn3-color-grey:active {
    border: 1px solid transparent !important;
    background: var(--white) !important;
    color: var(--black) !important;
}

.footer-area a:hover,
.footer-area a:focus,
.footer-area a:active {
    color: var(--black);
}

/*===========================================================
Accordion
===========================================================*/
.accordion-area {
    background-color: var(--yellow);
    padding-top: var(--sectionPadding);
    padding-bottom: 70px;
}

.acc-container,
.wb-news {
    width: 100%;
    margin-left: auto;
    margin-right: auto;

    margin-bottom: 35px;
}

.wb-news * {
    color: var(--white) !important;
}

.wb-news ul {
    list-style: none;
    padding: 0;

    display: flex;
    flex-wrap: wrap;

    gap: 0 15px;
}

.wb-news h4 {
    font-size: var(--lg4) !important;
}

.wb-news h5 {
    font-size: var(--lg6) !important;
}

.acc-container ul {
    width: 100%;
}

.acc-container ul li {
    flex: 1;
    width: 100%;

    border-bottom: 0 !important;
    margin-bottom: 0 !important;
}

.acc-container ul li a {
    display: block;
}

.acc-container ul li a i {
    margin-left: 10px;
}

.acc-container > ul {
    display: flex;
    flex-direction: column;

    list-style: none !important;
    padding-left: 0 !important;
}

.acc-container ul.menu li a {
    color: var(--white) !important;
    text-transform: none !important;
    text-decoration: none !important;

    font-size: var(--lg6) !important;
    padding: 5px 15px;
}

.acc-container > ul ul {
    margin: 0;
    padding-left: 10px;

    display: none;
}

.acc-container > ul li.open > ul.menu {
    display: block;
}

.acc-container .menu i.fa-angle-down {
  transition: transform 0.3s ease;
}

.acc-container .menu i.fa-angle-down.rotated {
  transform: rotate(180deg);
}

.acc-container .menu-item-draft > a {
  opacity: 0.7;
  font-style: italic;
}

.wb-menu-item-editable {
    position: relative;
}

/* ==============================BDZ================ */
.banner-slider-area {
    position: relative;
}

.banner-slider-img {
    position: relative;
}

.banner-slider-img:before {
    content: "";
    display: block;
    position: absolute;
    height: 100%;
    width: 50%;
    max-width: 1200px;
    right: -4.9%;
    background-color: rgba(118, 184, 42, 0.6);
    transform: skewX(-50.6deg);
}

.banner-slider-text {
    position: absolute;
    right: 10%;
    top: 50%;
    transform: translateY(-50%);
}

.banner-slider-img img {
    display: block;

    width: 100%;
    max-height: 700px;
    object-fit: cover;
}

.banner-slider-area .slick-dots {
    margin: 0;
    bottom: 20px;
    z-index: 2;
}

.banner-slider-area .slick-dots li button:before {
    background: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    opacity: 1;
}

.banner-slider-area .slick-dots li.slick-active button:before {
    opacity: 1;

    background: var(--white) !important;
}

.banner-slider-area .slick-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
}

.banner-slider-area .slick-arrow i {
    color: var(--white);
}

.banner-slider-area .slick-right {
    right: 50px;
}

.banner-slider-area .slick-left {
    left: 50px;
}

.weihnachtsgruss {
    background: var(--green-primary);
}

.weihnachtsgruss-text {
    width: 100%;
    padding: 16px 22px;
}

.banner-slider-text h2 {
    margin: 0;
    
    display: flex;
    align-items: center;
    text-decoration: none;
    font-weight: 400;
    color: var(--white);
    gap: 15px;
}

.banner-img-mobile {
	display: none !important;
}

.banner-img-desktop {
	display: block !important;
}

.weihnachtsgruss-img {
    width: 100%;
}

.weihnachtsgruss-img img {
    display: flex;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: left center;
    object-position: left center;
}

.weihnachtsgruss-text h6 {
    margin: 0;
}

.weihnachtsgruss-text h5,
.weihnachtsgruss-text h6,
.weihnachtsgruss-text p,
.weihnachtsgruss-text a {
    color: var(--white);
}

.weihnachtsgruss-text h3 a {
    text-decoration: none;
}

.weihnachtsgruss-text h3 a {
    color: var(--white);
    font-weight: 400;
}

.weihnachtsgruss-text h6 {
    color: var(--white);
    font-family: var(--fontText);
    margin-bottom: 10px;
}

.weihnachtsgruss-text p {
    color: var(--white);
    font-family: var(--fontText);
}

.weihnachtsgruss-text a {
    color: var(--white);
    display: flex;
    align-items: center;
    gap: 10px;
    text-transform: uppercase;
    font-weight: 400;

    text-decoration: none !important;
}

.news-top-img img {
    display: flex;
}

.news-top-inner {
    /* max-width: 500px; */
    max-width: calc(50% - 30px);
    width: 100%;
}

.news-top-img img {
    width: 100%;
}

.news-top-inner .news-card-text {
    max-width: 100%;
    padding: 0;
}

.wb-news-wrapper.wb-template-grid {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.news-top-text {
    padding-top: 15px;
}

.news-top-text h5 {
    color: var(--gray-dark);
    margin: 0;
}

.news-top-text h3 {}

.news-top-text h3 a {
    text-decoration: none;
    color: var(--green-primary);
    font-weight: 400;
}

.wb-news-wrapper.wb-template-grid {
    position: relative;
    padding-top: 50px;
    margin-top: 50px;
}

.news-top:after {
    position: absolute;
    content: "";
    display: block;
    background: #8b8b8b;
    top: 0;
    width: 90%;
    height: 1px;
    left: 50%;
    transform: translateX(-50%);
}

.nachrichten-bttn a {
    width: 100% !important;
    display: flex !important;
    gap: 10px;
}

.nachrichten-bttn a i {
    margin-right: 10px;
}

.news-slider-title {
    margin-bottom: 30px;
}

.news-slider-title h3 {
    color: var(--white);
    margin: 0;
    font-weight: 400;
}

.news-slider-img img {
    width: 100%;
    height: 190px;
    object-fit: cover;
}

.news-slider-single {
    width: 100%;
}

.wb-news-wrapper.wb-template-wb-post-slider {
    position: relative;
    padding-bottom: 70px;
    margin: 0 -15px;
}

.news-slider-single {
    padding: 0 15px;
}

.wb-news-wrapper.wb-template-wb-post-slider .slick-arrow {
    position: absolute;
    right: 15px;
    bottom: 0;
}

.wb-news-wrapper.wb-template-wb-post-slider .slick-left {
    position: absolute;
    right: 55px;
    bottom: 0;
}

.wb-news-wrapper.wb-template-wb-post-slider .slick-arrow i {
    color: var(--white);
}

.wb-news-wrapper.wb-template-wb-post-slider .slick-dotted.slick-slider {
    margin-bottom: 0 !important;
}

.wb-news-wrapper.wb-template-wb-post-slider .slick-dots {
    position: absolute;
    left: 15px;
    bottom: 0;
    width: auto;
}

.wb-news-wrapper.wb-template-wb-post-slider .slick-list {
    border-bottom: 1px solid var(--white);
    padding-bottom: 30px;
}

.wb-news-wrapper.wb-template-wb-post-slider .slick-dots li {
    width: 14px;
    height: 14px;
}

.wb-news-wrapper.wb-template-wb-post-slider .slick-dots li button:before {
    background: var(--white);
    border-radius: 50%;
    opacity: 1;
    width: 14px;
    height: 14px;
    border: 1px solid var(--white);
}

.wb-news-wrapper.wb-template-wb-post-slider .slick-dots li.slick-active button:before {
    opacity: 1;
    background: #c1c1c1 !important;
    border: 1px solid var(--white);
}

.news-slider-text {
    padding-top: 10px;
}

.news-slider-text a {
    text-decoration: none;
    color: var(--white);
}

.news-slider-text a span {
    color: var(--white);
    font-weight: 400;
    text-transform: uppercase;
}

.news-slider-text a i {
    margin-right: 10px;
    color: var(--white);
}

.news-slider-text h5 {
    color: var(--white);
    margin: 0;
}

.news-slider-text h4 {
    color: #888;
    margin: 0;
}

.news-slider-text h4 a {
    font-weight: 400;
}

.news-slider-text h5 a {
    font-weight: 400;
}

.news-slider-text h6 {
    color: var(--white);
    font-weight: 400;
}

.trade-inner h4 {}

.trade-inner h4 a {
    text-decoration: none;
    color: var(--green-bright);
    font-weight: 300;
    display: block;
}

.trade-inner h3 {
    margin: 0;
}

.trade-inner h3 a {
    text-decoration: none;
    color: var(--green-bright);
    font-weight: 300;
    display: block;
}

.trade-inner div p {
    font-weight: 400;
    margin-bottom: 5px;
    font-family: var(--fontText);
}

.trade-inner div h6 {
    color: #888;
    font-weight: 400;
}

/*===========================================================
 Responsive Menu
===========================================================*/
@media (min-width: 1680px) {
    .container-fluid {
        max-width: 1680px;
        width: 100%;
        margin-left: auto;
        margin-right: auto;
        padding: 0;
    }
}

@media (min-width: 1400px) {}

@media (min-width: 992px) {
    .dropdown:hover>a+.dropdown-menu {
        display: block;
    }

    .dropdown-menu .dropdown-menu {
        position: absolute;
        left: 100%;
        top: 0;
    }

    .dropdown .dropdown>a::after {
        transform: rotate(-90deg);
        margin-top: -4px;
    }
}

@media (max-width: 991px) {
    #main {
        padding-top: 0;
    }

    .header-area {
        background-color: transparent !important;
        height: unset !important;
        border-top: 0 !important;

        position: absolute !important;
        top: 68px !important;
    }

    body.admin-bar .header-area {
        top: 46px !important;
    }

    .header-area .menu-left,
    .header-area .bdz-navbar {
        display: none;
    }

    .header-area .header {
        height: unset !important;
    }

    .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: var(--white);
        display: block;
        padding: 10px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.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 {
        position: fixed;
        top: 0;
        width: 100%;
        z-index: 10000;

        display: -moz-flex;
        display: -ms-flex;
        display: -o-flex;
        display: flex;
        justify-content: space-between;
        align-items: center;
        background: var(--white);
        box-shadow: 0px 1px 3px var(--gray-very-light);
        padding: 10px 15px;
    }

    body.admin-bar .panel-header {
        top: 46px;
    }

    .header-area + .breadcrumb,
    .header-area + .top-icons + * {
        margin-top: 68px;
    }

    .header-area + .breadcrumb {
        margin-top: 68px;
    }

    .top-icons + * {
        margin-top: 0;
    }

    .nav-header {
        width: 100%;
    }

    .nav-header ul li {
        flex: 1;
    }

    .mega-finder {
        flex-direction: column;
        gap: 50px;
    }

    .mega-menu-card {
        justify-content: flex-start;
    }

    .mega-menu-card div {
        max-width: 100%;
    }
}

/*===========================================================
Containers
============================================================*/

@media (min-width: 576px) {
    .container {
        max-width: 540px;
    }
}

@media (min-width: 768px) {
    .container {
        max-width: 720px;
    }
}

@media (min-width: 992px) {
    .container {
        max-width: 960px;
    }
}

@media (min-width: 1200px) {
    .container {
        max-width: 1140px;
    }
}

@media (min-width: 1400px) {
    .container {
        max-width: 1320px !important;
    }
}

@media (max-width: 379px) {}

@media (max-width: 1399px) {
    :root {
        --xxl: 44px;
        --xl: 33px;
        --xl2: 32px;
        --lg: 25px;
        --lg2: 24px;
        --lg3: 22px;
        --lg4: 20px;
        --lg5: 19px;
        --lg6: 17px;
        --lg7: 16px;
        --md: 14.4px;
        --sm: 12.8px;
    }

    .slick-dots li,
    .slick-dots li button:before {
        width: 16px;
        height: 16px;
    }
}

@media (max-width: 1199px) {
    .content-right {
        max-width: 32%;
    }

    .content-text-area .content-right-img {
        float: none;
        padding-left: 0;
    }
}

@media (max-width: 991px) {
    .banner-slider-img img {
        object-fit: contain;
    }

    .content-area {
        padding-top: 50px;
    }

    .content-inner {
        flex-direction: column;
    }

    .content-right,
    .content-left {
        width: 100%;
        max-width: 100%;
    }

    .content-right {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        gap: 30px;
    }

    .acc-container {
        width: 100%;
    }

    .trade,
    .member,
    .kontakt {
        width: 100%;
        margin-top: 0;
    }

    .footer {
        flex-wrap: wrap;
        gap: 30px;
        justify-content: flex-start;
        flex-direction: column;
    }

    .footer-meta {
        width: 100%;
        display: flex;
        flex-direction: column;
        gap: 30px;
    }

    .footer-bttn {
        width: 100%;
        margin-top: 0;
        margin-bottom: 10px;
    }

    .footer-menu {
        width: 100%;
    }

    .footer > .flex-2 ul {
        display: block;
    }

    .content-right {
        margin-top: 30px;
    }

    .news-top-inner {
        max-width: calc(50% - 15px);
    }

    .mobile-social {
        display: flex;
        gap: 15px;
    }

    .mobile-social a i {
        color: #6ba02b;
        font-size: var(--size-h3);
    }

    .banner-slider-img:before {
        width: 66%;
    }

    .footer-area {
        padding-bottom: 150px !important;
    }

    .top-icons {
        width: 100%;

        top: unset;
        bottom: 0;
        right: unset;
        left: 0;
        
        display: flex;
        justify-content: space-between;
        gap: 15px;

        background-color: #76b82a8a;
    }

    .top-icons a {
        flex: 1;
        margin-bottom: 0;

        aspect-ratio: 1;
        max-height: 80px;
    }

    .go-top {
        bottom: 85px;
        right: 13px;
    }

	.banner-img-mobile {
		display: block !important;
	}

	.banner-img-desktop {
		display: none !important;
	}

    .breadcrumb ol {
        overflow: scroll;
    }
}

@media (max-width: 767px) {
    .news-slider-single {
        padding: 0 15px;
    }

    .news-card-inner {
        flex-direction: column;
    }

    .news-card-text {
        max-width: 100%;
        padding-left: 0;
        padding-top: 20px;
    }

    .trade,
    .member,
    .kontakt {
        width: 100%;
    }

    .footer-area {
        padding: 70px 0 50px 0;
    }

    .acc-container {
        padding: 25px;
    }

    .content-area {
        padding-top: 50px;
    }

    .banner-slider-img:before {
        width: 86%;
        right: -4.9%;
        background-color: rgba(118, 184, 42, 0.75);
        transform: skewX(-22.6deg);
    }

    .banner-slider-area .slick-arrow {
        /* margin-top: -50px; */
    }

    .banner-slider-area .slick-right {
        right: 15px;
    }

    .banner-slider-area .slick-left {
        left: 15px;
    }

    .banner-slider-text h2 a {
        display: block;
        width: 100%;
        text-align: center;
        font-size: var(--size-h4);
        /* margin-top: 50px; */
    }

    .news-card-img img,
    .weihnachtsgruss-img img {
        width: 100%;
    }

    .news-card-img,
    .weihnachtsgruss-text,
    .weihnachtsgruss-img {
        max-width: 100%;
    }

    .wb-news-wrapper.wb-template-wb-post-slider .slick-dots li,
    .wb-news-wrapper.wb-template-wb-post-slider .slick-dots li button:before,
    .slick-dots li,
    .slick-dots li button:before {
        width: 12px;
        height: 12px;
    }
}

@media (max-width: 575px) {
    .search-bar {
        width: calc(100% - 50px);
    }

    .news-top-inner {
        max-width: 100%;
        margin-bottom: 30px;
    }

    .news-slider-single {
        padding: 0;
    }

    .breadcrumb ol {
        gap: 8px;
    }

    .wb-contact-card {
        flex-direction: column;
    }

    .footer-meta {
        flex-direction: column;
    }

    .footer-menu {
        width: 100%;
    }

    .mobile-social {
        gap: 10px;
    }

    .mobile-social a i {
        font-size: var(--size-h4);
    }
}