/* Global styling */
html {
    font-size: 15px;
}

body {
    font-family: 'DTL Caspari TOT Regular' !important;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

p {
    /*font-family: 'DTL Caspari TOT Regular' !important;*/
    font-size: 1.375rem;
    line-height: 1.6;
}

strong {
    font-family: 'DTL Caspari TOT Bold' !important;
}

a {
    font-family: 'DTL Caspari TOT Regular' !important;
    text-decoration: none;
}

a:hover {
    text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'DTL Caspari TOT Regular' !important;
}

h1,
.uk-h1 {
    font-size: 2.5rem;
    letter-spacing: 0.3px;
    color: #000;
}

h2,
.uk-h2 {
    font-size: 1.875rem;
    letter-spacing: 0.3px;
    color: #000;
    margin: 0 0 30px 0;
}

h2 strong {
    font-family: 'DTL Caspari TOT Regular' !important;
    font-weight: 400;
}

h3,
.uk-h3 {
    font-size: 1.563rem;
    margin-top: 35px;
    letter-spacing: 0.3px;
    color: #000;
    margin-bottom: 10px;
}

h3+p {
    margin-top: 10px !important;
}

h4 {
    color: #000;
}

figcaption {
    padding-top: 10px;
    font-size: 1.125rem;
    font-style: normal;
    color: #000;
    text-align: left;
    margin-left: 7%;
    max-width: 400px;
}

blockquote {
    font-family: 'DTL Caspari TOT Regular' !important;
}

/* Header */
#navbar .uk-navbar-container .uk-container-xlarge {
    max-width: 1400px;
}

header {
    background: #FFFF00;
    position: relative;
    z-index: 1;
}

header::after {
    bottom: 0;
    transform: skewY(-1.5deg);
    transform-origin: 100%;
    background: inherit;
    content: '';
    display: block;
    height: 50%;
    left: 0;
    position: absolute;
    right: 0;
    z-index: -1;
    -webkit-backface-visibility: hidden;
}

/* Begin - Footer */

footer {
    background: #000;
    position: relative;
    z-index: 1;
}

footer::before {
    top: 0;
    transform: skewY(358.5deg);
    transform-origin: 0 0;
    background: inherit;
    content: '';
    display: block;
    height: 50%;
    left: 0;
    position: absolute;
    right: 0;
    z-index: -1;
    -webkit-backface-visibility: hidden;
}

footer .uk-button {
    margin-right: 0;
    position: inherit;
    padding-left: 0;
    font-size: 0.938rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

footer .uk-button:before {
    content: none;
}

footer .uk-button svg {
    width: 30px;
    margin-right: 20px;
}

.wb-footer .uk-text-small {
    font-size: 1.375rem;
    line-height: 2.188rem;
    margin-top: 0;
}

.wb-footer h4 {
    font-size: 1.563rem;
    letter-spacing: 0.3px;
    margin-bottom: 15px;
}

.wb-footer p a {
    background-image: none !important;
}

.wb-footer .uk-grid div:nth-of-type(3) .uk-h4:nth-of-type(2) {
    margin-top: 80px;
}

.wb-footer .uk-button-text:nth-of-type(5) {
    margin-right: 30px;
}

.wb-footer .uk-button-text:nth-of-type(5),
.wb-footer .uk-button-text:nth-of-type(6) {
    margin-top: 34px !important;
}

.wb-footer .uk-button:first-of-type {
    font-size: 1.375rem;
    color: #FFF;
    background-color: #000 !important;
    border: 2px solid #FFF;
    text-transform: none;
    letter-spacing: 0;
}

/* Kontakt und Materialien im Footer*/
.wb-footer .uk-button-text:nth-of-type(5),
.wb-footer .uk-button-text:nth-of-type(6),
.wb-footer .uk-button-text:nth-of-type(7),
.wb-footer .uk-button-text:nth-of-type(8) {
    display: block !important;
    margin-top: 0 !important;
    margin-bottom: 10px;
}

.wb-footer .uk-button-text:nth-of-type(5) {
    margin-top: 60px;
}

/* End - Footer */

/* Intro Image */
.intro-img img,
.wb-header-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

/* End Image */
.end-img,
.wb-news figure {
    /*height: 800px;*/
    width: 100%;
    /* Full width */
    aspect-ratio: 2 / 1;
    /* 2:1 aspect ratio */
    overflow: hidden;
}

.end-img img,
.wb-news figure img {
    /* width: 100%;
    height: 800px;
    object-fit: cover;*/
    width: 100%;
    /* Make the image fill the container */
    height: 100%;
    /* Ensure the image fills the container */
    object-fit: cover;
    /* Maintain aspect ratio and cover the container */
}

/* Section Spacers */
.spacer-150 {
    padding-top: 150px;
}

.spacer-50 {
    padding-top: 50px;
}

/* Changes to existing theme blocks */
/* Begin - Button with arrow */
.uk-button {
    font-size: 1.563rem;
    margin-right: 40px;
    position: relative;
    /* Set the parent container to relative positioning */
    padding-left: 40px;
    /* Add padding to the left to create space for the image */
}

.uk-button svg {
    width: 30px;
}

.uk-button:before {
    background-image: url('assets/images/wb-arrow-plain.svg');
    display: inline-block;
    width: 30px;
    height: 30px;
    content: "";
    background-position: center;
    /* Center the background image */
    background-size: contain;
    /* Ensure the background image fully fits */
    background-repeat: no-repeat;
    /* Prevent the background image from repeating */
    position: absolute;
    /* Set the pseudo-element to absolute positioning */
    top: 50%;
    /* Adjust the distance from the top */
    left: 0;
    /* Position from the left */
    transform: translateY(-50%);
    /* Center vertically */
    z-index: 1;
    /* Ensure the image is above other content */
}

.archiv-button.uk-button:before {
    background-image: none;
}

.archiv-button.uk-button:after {
    background-image: url('assets/images/wb-arrow-plain.svg');
    display: inline-block;
    width: 30px;
    height: 30px;
    content: "";
    background-position: center;
    /* Center the background image */
    background-size: contain;
    /* Ensure the background image fully fits */
    background-repeat: no-repeat;
    /* Prevent the background image from repeating */
    position: absolute;
    /* Set the pseudo-element to absolute positioning */
    top: 50%;
    /* Adjust the distance from the top */
    right: 0;
    /* Position from the left */
    transform: translateY(-50%);
    /* Center vertically */
    z-index: 1;
    /* Ensure the image is above other content */
}

.archiv-button {
    float: right;
    margin-top: 20px !important;
    margin-right: 0;
    padding-right: 50px;
}

/* End - Button with arrow */

.uk-text-default {
    font-size: 1rem;
    line-height: 1.5;
}

.uk-text-large {
    font-size: 1.875rem;
    line-height: 1.5;
    letter-spacing: 0.3px;
}

.uk-text-small {
    font-size: 0.9rem;
    line-height: 1.5;
}

.uk-light,
.uk-light .uk-button-text {
    color: #FFF;
}

.uk-dark,
.uk-dark .uk-button-text {
    color: #000;
}

a.uk-link-heading:hover,
.uk-link-heading a:hover,
.uk-link-toggle:hover .uk-link-heading {
    color: #000;
}

/* Begin - Top Navbar */
#topbar {
    background: transparent;
    z-index: 20;
    position: relative;
    height: 55px;
    padding-top: 10px;
}

#topbar a {
    font-size: 0.938rem;
    text-transform: uppercase;
    margin-left: 20px;
    letter-spacing: 0.5px;
}

/* End - Top Navbar */

.uk-navbar-sticky {
    padding: 60px 0 30px 0;
}

/*.uk-navbar-sticky .uk-logo img {
    display: none;
}

.uk-navbar-sticky .wp-title {
    position: relative;
    display: inline-block;
}

.uk-navbar-sticky .wp-title a {
    margin-left: 70px;
    position: relative;
}

.uk-navbar-sticky .wp-title:before {
    content: url('assets/images/wb-logo-bird.svg');
    position: absolute;
    left: -10px;
    top: 0;
    width: 100px;
    height: auto;
}*/

.uk-navbar {
    position: relative;
    height: 60px;
    /*margin-top: 30px;*/
    /*margin-bottom: 30px !important;*/
    /* margin-left: 60px;*/
    margin-right: 0;
    border-bottom: 2px solid #000;
    align-items: center;
}

.uk-navbar:before {
    content: "";
    position: absolute;
    top: -2px;
    /* Adjust to overlap with the top border */
    left: 0;
    width: 100%;
    /* Adjust the width of the left padding as needed */
    height: 2px;
    /* Same as the border thickness */
    background-color: #000;
    /* Color of the top border */
}

.uk-navbar-nav>li>a {
    font-family: 'DTL Caspari TOT Regular';
    font-size: 1.375rem;
    padding: 0 20px;
    color: #000 !important;
    position: relative;
    font-weight: 400;
    text-transform: none;
    letter-spacing: 0.2px;
    height: 60px;
}

.uk-navbar-nav>li:hover>a,
.uk-navbar-nav>li>a[aria-expanded="true"] {
    color: #000;
}

.uk-navbar-nav li a:hover {
    color: #fff !important;
    background: #000;
    height: 60px;
}

.uk-navbar-nav>li>a::before {
    content: "";
    position: absolute;
    background-color: #000;
    transition: none;
    height: 0;
    left: 0;
}

.uk-navbar-nav>li>a,
.uk-navbar-item,
.uk-navbar-toggle {
    min-height: 40px;
    left: 60px;
}

*+.uk-margin {
    margin-top: 35px !important;
}

.uk-margin {
    margin-bottom: 5px;
}

.uk-dotnav {
    padding: 0;
}

.uk-dotnav>.uk-active>* {
    background-color: #000;
    border-radius: 0;
}

.uk-dotnav>*>* {
    background: #999999;
    width: 30px;
    height: 5px;
    border-radius: 0;
}

/* Begin - Drowdown Menu */

.uk-dropdown {
    background: #000;
    color: #FFF;
}

.uk-navbar-dropdown {
    margin-top: 20px;
}

.uk-dropdown {
    font-family: 'DTL Caspari TOT Regular', sans-serif;
    font-size: 1.375rem;
    --uk-position-offset: 10px;
    --uk-position-viewport-offset: 15px;
    min-width: 250px;
    padding: 15px 22px;
}

.uk-navbar-dropdown-nav>li>a {
    color: #FFF;
}

.uk-navbar-nav .uk-dropdown li a:hover {
    height: auto;
}

.uk-navbar-dropdown-nav>li>a:hover {
    color: #FFFF00;
}

.uk-navbar-dropdown.uk-dropdown {
    top: 40px !important;
}

.uk-navbar-dropdown-nav>li.uk-active>a {
    color: #FFFF00;
}

/* End - Drowdown Menu */

.uk-offcanvas-bar {
    font-family: 'DTL Caspari TOT Regular', sans-serif;
}

.uk-offcanvas-bar .wp-title {
    padding-left: 20px;
}

.uk-logo {
    position: relative;
    top: -30px;
    left: -30px;
}

.uk-search-icon {
    position: relative;
    left: 14px;
    transform: scale(-1, 1);
}

.uk-search-icon svg {
    display: none;
}

.uk-search-icon:before {
    background-image: url('assets/images/wb-search-icon.svg');
    display: inline-block;
    width: 25px;
    height: 25px;
    content: "";
    background-position: center;
    /* Center the background image */
    background-size: contain;
    /* Ensure the background image fully fits */
    background-repeat: no-repeat;
    /* Prevent the background image from repeating */
    position: absolute;
    /* Set the pseudo-element to absolute positioning */
    top: 50%;
    /* Adjust the distance from the top */
    left: 0;
    /* Position from the left */
    transform: translateY(-50%);
    /* Center vertically */
    z-index: 1;
    /* Ensure the image is above other content */
}

header {
    padding-top: 120px !important;
    padding-bottom: 20px !important;
}

header .tm-transparent-navbar-positive {
    margin-top: 0;
}

.uk-navbar-left {
    position: relative;
    left: -48px;
}

.uk-navbar-center {
    /*margin-left: 50px;*/
    /*
    border-top: 1px solid #000;
    border-bottom: 1px solid #000;
    */
}

.uk-navbar-right {
    position: absolute;
    top: 50%;
    /*transform: translate(-50%, -50%);*/
    width: max-content;
    box-sizing: border-box;
    z-index: 990;
    top: 0;
    right: 0;
    left: 100%;
}

.uk-navbar-right .uk-navbar-toggle {
    padding-right: 0;
}

.uk-navbar-item .uk-button {
    line-height: 40px;
}

.uk-text-lead {
    font-family: 'DTL Caspari TOT Regular';
    /*padding: 100px 4rem 20px 4rem;*/
    padding-top: 100px;
    color: #000;
}

.uk-text-lead p {
    font-family: 'DTL Caspari TOT Regular';
    font-weight: 400;
    font-size: 1.875rem;
    line-height: 2.813rem;
}

.wb-search-page .uk-search-large .uk-search-input,
.wb-error-page .uk-search-large .uk-search-input {
    font-size: 1.125rem;
}

.uk-search-large .uk-search-input {
    font-size: 2rem;
}

.wb-search-page header h1,
.wb-error-page header h1 {
    font-size: 4.2rem;
}

.wb-search-page header,
.wb-error-page header {
    background-color: #FFF;
}

.wb-search-page,
.wb-error-page {
    font-size: 1.125rem;
    font-family: 'DTL Caspari TOT Regular';
    text-align: center;
}

.wb-search-page .uk-text-lead,
.wb-error-page .uk-text-lead {
    font-weight: 400;
    font-size: 1.35rem;
    padding: 0;
}

/* Begin - Block: Accordion */
.uk-accordion {
    margin: 50px 0 100px 0 !important;
    margin-right: 5vw !important;
}

.uk-accordion .uk-accordion-title {
    font-family: 'DTL Caspari TOT Regular';
    font-weight: 400;
    font-size: 1.563rem;
    padding-left: 10px;
    letter-spacing: 0.3px;
    color: #000;
}

.uk-accordion-content {
    margin: 20px 10px;
}

.uk-accordion li {
    border-bottom: 2px solid #000000;
    padding-bottom: 15px;
}

.uk-accordion li:first-of-type {
    border-top: 2px solid #000;
    padding-top: 15px;
}

.uk-accordion>:nth-child(n+2) {
    margin-top: 15px;
}

.uk-accordion-title::before {
    background-image: url('assets/images/wb-accordion-open.svg');
    margin-right: 10px;
}

.uk-open>.uk-accordion-title::before {
    background-image: url('assets/images/wb-accordion-close.svg');
    margin-right: 10px;
}

/* End - Block: Accordion */

.uk-article-meta,
.uk-article-title,
.uk-article-meta a {
    color: #000 !important;
    text-decoration: none;
}

.archive .uk-article-meta time {
    font-size: 1.375rem;
}

.uk-input,
.uk-select,
.uk-textarea {
    max-width: 100%;
    width: 100%;
    border: 0 none;
    padding: 0 12px;
    background: #EAE9E5;
    color: #000;
    border: solid 1px #EAE9E5;
}

.uk-textarea {
    padding: 10px 12px;
}

.uk-input:focus,
.uk-select:focus,
.uk-textarea:focus {
    outline: none;
    background-color: #EAE9E5;
    color: #000;
    border: solid 1px #EAE9E5;
}


/*
.modal-full h4,
.modal-full input {
    color: #000 !important;
}
*/

/* Custom blocks*/

/* Begin - To be reviewed as for a single case */
.uk-object-cover.small-img {
    object-fit: cover;
    width: 100%;
}

.uk-object-cover.small-img figure {
    max-width: 1400px !important;
}

.small-img .uk-object-cover {
    object-fit: cover;
    width: 100%;
}

/* End - To be reviewed as for a single case */


.wb-dark-yellow {
    background-color: #cebf49;
}

.wb-separator {
    margin: 1rem 0;
}

.wb-separator-large {
    margin: 8rem 0;
}

.wb-no-padding div {
    padding: 0;
}

.wp-title {
    font-size: 2rem;
    font-family: 'DTL Caspari TOT Regular';
    text-transform: uppercase;
    margin-left: -20px;
}

.wb-link-modified {
    background: #000;
    color: #FFF;
    padding: 30px 30px;
    position: relative;
    left: 47px;
    font-size: 1.375rem;
}

.wb-link-modified a:hover {
    background: #3d3d3d;
    color: #FFF;
}

/*.uk-section-large h1 {
    font-family: "DTL Caspari TOT Regular";
    font-size: 1.8rem;
    line-height: 1.8;
    position: absolute;
    top: 92px;
    left: 75px;
    padding: 0;
    border-bottom: 2px solid #000;
}*/

.heading-special {
    font-size: 2.5rem;
    position: relative;
    margin-left: 0;
    margin-bottom: 0 !important;
    margin-top: 0 !important;
    padding: 10px 0;
    letter-spacing: 0.3px;
}

.heading-special span {
    position: relative;
    border-bottom: 2px solid #000;
    padding-left: 10px;
    padding-right: 10px;
    padding-bottom: 10px;
    /* Adjust as needed */
}

.wp-home-intro {
    padding-top: 120px;
}

.wp-home-intro h1 {
    margin-top: 80px;
    margin-bottom: 0;
}

.wp-home-intro h2 {
    margin-top: 0;
    margin-bottom: 20px;
}

.wp-home-intro p {
    margin-top: 0;
    margin-bottom: 20px;
}

.wp-home-intro img {
    position: relative;
    top: 80px;
}

/* Begin - Single Bee */

.wb-species-info {
    margin-top: 40px;
    margin-bottom: 100px;
}

.wb-species-info section {
    padding-bottom: 30px !important;
}

.wb-species-info h4 {
    font-family: 'DTL Caspari TOT Bold' !important;
    margin-top: 10px;
    margin-bottom: 5px;
    text-transform: uppercase;
    font-size: 1.125rem;
    letter-spacing: 0.5px;
}

.wb-species-info p {
    margin-top: 0;
}

.wb-species-info .wb-species-info-heading {
    margin-bottom: 3rem;
}

/* Add fake restricted container on Bienenarten and Pflanzenarten, und News-Einzelseite*/
.wb-species-info .steckbrief.uk-container-small,
.wb-species-info p,
.wb-species-info h2 {
    width: 70%;
    margin-left: 7%;
    margin-right: auto;
}

.wb-species-info .steckbrief h2,
.wb-species-info .steckbrief p {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
}

.wb-species-info .wb-slider-full {
    margin-top: 80px;
}

.wb-species-info .steckbrief {
    margin-top: 0;
}

/* Add fake restricted container on Bienenarten and Pflanzenarten, und News-Einzelseite*/
.uk-container.uk-container-expand.wb-news-info {
    padding: 100px 0 0 0;
}

.wb-news-info p,
.wb-news-info h2,
.wb-news-info .uk-accordion,
.wb-news-info .wb-external-links,
.wb-news-info ul,
.wb-news-info blockquote,
.wb-news-info .wb-list {
    max-width: 1200px;
    margin-left: auto !important;
    margin-right: auto !important;
    padding-left: 40px;
    padding-right: 20vw;
}

.wb-news-info .uk-accordion,
.wb-news-info .wb-external-links,
.wb-news-info .wb-list {
    padding-right: 10vw !important;
}

.wb-news-info ul li p {
    padding-left: 0;
    padding-right: 0;
}

.wb-news-info .wb-downloads-single h2 {
    padding-left: 0;
    padding-right: 0;
}

.wb-news-info .wb-external-links h2 {
    padding-left: 0;
    padding-right: 0;
}

/*.wb-news-info figure.uk-margin-auto {
    margin-left: 0 !important;
    margin-right: 0 !important;
}*/

.wb-news-info .wb-slider-full {
    margin-top: 60px;
}

/* End - Single Bee */


/*.wb-species-info .restricted-text {
    width: 70%;
    margin-left: 7%;
    margin-right: auto;
}*/

.wb-article-heading {
    margin: 0;
}

.wb-article-heading:nth-of-type(2) {
    margin-bottom: 20px;
}

.wb-slider {
    background-color: #FFFF00;
}

/* NEW */
.wb-slider p {
    font-size: 1.875rem;
    line-height: 3.125rem;
}

/* NEW */
.wb-slider h2 {
    font-size: 5.625rem;
    line-height: 5.625rem;
    text-transform: uppercase;
}

.wb-slider h3,
.wb-slider p,
.wb-slider a {
    margin-left: 8rem;
    margin-right: 4rem;
}

.wb-slider .uk-slider-nav {
    justify-content: flex-start;
}

.wb-slider .uk-slider-nav a,
.wb-slider .uk-slidenav-large {
    margin-left: 0;
    margin-right: 0;
}

.wb-slider .uk-slidenav-previous {
    margin-right: 15px;
}

.wb-slider .uk-slidenav-next {
    margin-left: 15px;
}

.wb-slider .uk-slidenav-large {
    padding: 0;
}

/* Begin - Block - Infobox */
.wb-infobox {
    margin: 50px 0;
    /*margin-right: 20vw;*/
    padding: 30px 40px;
    /*padding-left: 10vw;*/
}

.wb-infobox-img {
    position: relative;
    top: -72px;
    /*margin-right: 20vw;*/
    padding: 30px 40px;
    /*padding-left: 10vw;*/
}

.wb-infobox.illu-integrated,
.wb-infobox-img.illu-integrated {
    overflow: visible;
    margin-bottom: 150px;
}

.wb-infobox.illu-integrated img,
.wb-infobox-img.illu-integrated img {
    margin-top: -90px;
    margin-left: -320px;
    position: absolute;
    width: 240px;
    height: 240px !important;
}

.wb-infobox .uk-position-cover,
.wb-infobox-img .uk-position-cover {
    margin-right: 20vw;
}

.wb-infobox h2.uk-h1,
.wb-infobox-img h2.uk-h1 {
    font-size: 5.625rem !important;
    margin: 0 !important;
    padding: 0 !important;
    line-height: 2.8rem;
}

.wb-infobox h2,
.wb-infobox-img h2 {
    margin-bottom: 0;
    padding-top: 5px;
}

.wb-infobox p,
.wb-infobox-img p {
    margin-top: 10px;
}

.wb-infobox h4,
.wb-infobox-img h4 {
    font-family: 'DTL Caspari TOT Medium' !important;
    font-size: 1.25rem;
    padding: 4px 0px;
    line-height: 2.1;
    text-align: center;
    letter-spacing: 0.5px;
    display: inline-block;
    /* Add this line */
}

.wb-infobox h4::before,
.wb-infobox h4::after,
.wb-infobox-img h4::before,
.wb-infobox-img h4::after {
    content: '';
    /* Add content for the pseudo-elements */
    display: block;
    /* Display as block-level elements */
    width: 100%;
    /* Full width of the parent element */
    height: 2px;
    /* Two-pixel height */
    background-color: #000;
    /* Color of the border */
}

.wb-infobox h4::after,
.wb-infobox-img h4::after {
    margin-top: -4px;
}

/* End - Block - Infobox */

/* Begin - Block - Downloads */
.wb-downloads {
    margin: 60px 0 !important;
    /*margin-right: 20vw;*/
    padding: 0 !important;
    /*padding-left: 10vw;*/
}

.wb-downloads-single {
    padding: 20px 0 20px 0;
    background: #eae9e5;
    width: 100%;
    margin-left: 0;
}

.wb-downloads .uk-position-cover {
    margin-right: 20vw;
}

.wb-downloads-single h2 {
    font-size: 1.563rem;
    margin-top: 10px;
}

.wb-downloads-single li {
    margin-bottom: 15px;
}

.wb-downloads span.wb-download-button,
.wb-downloads-single span.wb-download-button {
    float: left;
    margin-right: 25px;
    letter-spacing: 0.3px;
}

.wb-downloads span.wb-download-button img,
.wb-downloads-single span.wb-download-button img {
    width: 25px;
    margin-top: 10px;
}

/* End - Block - Downloads */


/* Begin - Contact Page */
.wb-contact {
    padding-bottom: 100px;
}

.wb-contact h2 {
    margin: 100px 0 30px 0;
}

.wb-contact table {
    font-size: 1.375rem;
}

.wb-contact .uk-table td {
    padding: 2px 2px;
}

/* End - Contact Page */


.wb-latest-projects h3 {
    color: #000000 !important;
}

.wb-latest-projects-content {
    border-bottom: 2px solid #000000;
}

.wb-slider-full-caption p {
    margin-top: 20px;
    font-size: 1.125rem;
}

.wb-slider-full .uk-dotnav {
    position: relative;
    top: -130px;
    align-items: center;
}

.wb-slider-full .uk-dotnav>*>* {
    height: 3px;
    background: #FFF;
}

.wb-slider-full .uk-dotnav>.uk-active>* {
    height: 6px;
}

.wb-slider-full .uk-slidenav-large {
    padding: 0;
}

.wb-slider-full [class*='uk-position-center-left'],
.wb-slider-full [class*='uk-position-center-right'] {
    top: calc(50% - 60px - var(--uk-position-margin-offset));
}


/* Events Single */
.wb-veranstaltung {
    font-size: 1.375rem;
}

.wb-veranstaltung h2 {
    margin-bottom: 10px;
}

.wb-veranstaltung p {
    margin-top: 0;
}

.wb-veranstaltung section {
    margin-bottom: 60px;
}

/* News Single */
.wb-news hr {
    border-top: 0;
}

/* Custom Code - Block: Featured Pages */
ul.wb-list {
    margin: 50px 0 100px 0;
    list-style: none;
    padding: 0;
    margin-right: 5vw;
}

ul.wb-list li {
    padding: 15px 10px;
    border-top: 2px solid #000;
}

ul.wb-list li:last-child {
    border-bottom: 2px solid #000;
}

ul.wb-list li .wb-link-heading {
    font-size: 1.563rem;
    letter-spacing: 0.3px;
}

ul.wb-list li .wb-link-heading h2 {
    font-size: 1.563rem;
    margin-bottom: 0;
    letter-spacing: 0.3px;
}

ul.wb-list li .wb-external-arrow {
    display: block;
    margin-top: 10px;
}

ul.wb-list li .wb-list-arrow {
    display: inline;
    margin-top: 0;
    float: right;
}

ul.wb-list li .wb-list-arrow img {
    width: 30px;
}

ul.wb-list li .wb-external-arrow img {
    width: 40px;
}

/* Begin - Block: Latest */

.block-latest {
    font-family: 'DTL Caspari TOT Regular', sans-serif;
    font-size: 1.875rem;
}

.block-latest .uk-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.block-latest h3 {
    font-size: 1.875rem;
    margin-top: 0;
    letter-spacing: 0.3px;
}

.block-latest article {
    border-top: 2px solid #000;
    padding: 10px !important;
}

/*.block-latest article:hover {
    background: #CEBF49;
}*/

.block-latest.news article {
    padding: 30px 10px !important;
}

.block-latest.news article:last-child {
    border-bottom: 2px solid #000;
}

.font-big {
    font-family: 'DTL Caspari TOT Regular', sans-serif;
    font-size: 3.75rem;
}

.heading-in-column {
    position: absolute;
    margin-top: 5px;
    padding-left: 10px;
}

/* End - Block: Latest */


/* Archive */
.archive {
    padding-bottom: 100px;
}

.archive .special-img {
    position: absolute;
    top: 15px;
    right: 10px;
}

/* Bees / Plants Archive */
.archive .bee-species-title {
    border-bottom: 2px solid #000;
    padding-bottom: 30px;
}

.archive .bee-species-block {
    margin: 30px 0 60px 0;
}

/* News Archive */
.news.archive section,
.events.archive section {
    margin-top: 100px;
}

.archive article {
    margin-bottom: 30px;
}

.archive article.uk-card {
    width: 100%;
    font-size: 1.375rem;
}

.archive .uk-card .uk-card-media-top {
    padding: 6px 0;
    width: auto;
    height: 100%;
}

.archive .uk-card .uk-card-media-top img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.archive .uk-card .uk-card-body {
    padding: 20px 0;
    height: 100%;
    border-bottom: 2px solid #000;
}

.archive .uk-card .uk-card-body .uk-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.archive .uk-card .uk-card-body .more-link {
    float: right;
}

/* News Single */
.wb-news figure {
    margin: 60px auto;
    max-width: 1400px !important;
    padding: 0 40px;
}

.wb-news figure img {
    width: 100%;
}

.wb-news .uk-article-meta {
    margin-top: inherit;
}

/*.wb-news .uk-pagination {
    margin: 60px auto;
    max-width: 1400px !important;
    padding: 0 40px;
}

.wb-news .uk-pagination:before {
    content: ''; 
    display: block; 
    width: 100%;
    height: 2px; 
    background-color: #000;
}

.wb-news .uk-pagination li {
    padding: 0;
}

.wb-news .uk-pagination li a {
    color: #000;
    padding: 10px 0;
}

.wb-news .uk-pagination  .uk-text-large {
    font-size: 1.563rem;
    padding: 0;
}*/

/* Events Archive */
.events.archive article {
    border-top: 2px solid #000;
    padding: 10px 0 10px 10px;
    margin-bottom: 0;
}

.events.archive .uk-card .uk-card-body {
    border-bottom: 0;
}

.events.archive .uk-card .uk-card-body {
    border-top: 0;
}

.events.archive .uk-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.events.archive .section-part article:last-child {
    border-bottom: 1px solid #ccc;
    /* Adjust the border style and color as needed */
    padding-bottom: 10px;
    /* Optional: Add some spacing below the last article */
}

.events.archive .uk-card:last-child .uk-card-body {
    border-bottom: 0;
}

.events.archive .section-part {
    margin-bottom: 100px;
    border-bottom: 2px solid #000;
}

.events.archive .wb-location-title {
    font-family: 'DTL Caspari TOT Regular', sans-serif;
    font-size: 1.875rem;
    margin-bottom: 1.5rem;
    letter-spacing: 0.3px;
}

.wb-arrow-list {
    display: none;
}

.location article:last-child {
    border-bottom: 2px solid #000;
    margin-bottom: 100px;
}


/* RESPONSIVE DESIGN */

@media (min-width: 480px) {}

@media (min-width: 640px) {

    /*.uk-section-large h1 {
        top: 92px;
        left: 90px;
        padding: 0 12px;
    }*/
    .uk-navbar-right {
        right: 47px;
        left: 90%;
    }

    .uk-navbar-right .uk-navbar-toggle {
        padding-right: 15px;
    }

    .wp-title {
        font-size: 2.5rem;
        letter-spacing: 0.3px;
    }

    .archive article {
        margin-bottom: 0;
    }

    .archive .uk-card .uk-card-body {
        margin-top: 0;
        border-bottom: 0;
        border-top: 2px solid #000;
    }

    .archive .uk-card:last-child .uk-card-body {
        border-bottom: 2px solid #000;
    }

    .events.archive .section-part {
        border-bottom: 2px solid #000;
    }

    .archive .bee-species-title {
        border-bottom: none;
        padding-bottom: 0;
    }

    ul.wb-list li .wb-list-arrow,
    ul.wb-list li .wb-external-arrow {
        float: right;
        display: inline;
        margin-top: 0;
    }

    /*.uk-text-lead {
        padding: 90px 8rem 40px 4.8rem;
    }*/

    .uk-navbar-toggle {
        position: relative;
        display: block !important;
        top: 15px;
    }

    .uk-search-icon {
        left: 60px;
    }

    .wb-arrow-list {
        display: block;
    }

    /* Special width for Infobox, Downloads */
    .wb-infobox .uk-width-1-4\@m,
    .wb-infobox-img .uk-width-1-4\@m {
        width: 20% !important;
    }

    .wb-infobox .uk-width-3-4\@m,
    .wb-infobox-img .uk-width-3-4\@m {
        width: 60% !important;
    }

    .wb-downloads .uk-width-1-1\@m {
        width: 80% !important;
    }

    /* Kontakt und Materialien im Footer*/
    .wb-footer .uk-button-text:nth-of-type(5),
    .wb-footer .uk-button-text:nth-of-type(6) {
        display: inline-block !important;
        margin-top: 40px !important;
    }

    .wb-footer .uk-button-text:nth-of-type(7) {
        display: none !important;
    }

    .wb-footer .uk-button-text:nth-of-type(8) {
        display: none !important;
    }

}

@media (min-width: 960px) {
    #navbar .uk-container {
        padding-left: 40px;
        padding-right: 40px;
    }

    /*.uk-container {
        padding-left: 160px;
        padding-right: 160px;
    }*/

    /*.uk-section-large h1 {
        top: 80px;
        left: 100px;
        padding: 10px 12px 0px 10px;
    }*/

    .uk-section {
        padding-top: 50px;
        padding-bottom: 50px;
    }

    .uk-section-large {
        padding-top: 100px;
        padding-bottom: 100px;
    }

    .uk-text-lead {
        padding: 90px 12rem 40px 0;
    }

    .uk-navbar-toggle {
        top: 0;
    }

    .uk-search-icon {
        left: 70px;
    }

    #navbar .uk-hidden\@m {
        display: inherit !important;
    }

    .wb-slider-full-caption p {
        margin-left: 100px;
    }
}

@media (min-width: 1201px) {}

@media (min-width: 1301px) {
    .heading-special {
        margin-left: 50px;
    }

    .wb-news-info p,
    .wb-news-info h2,
    .wb-news-info .uk-accordion,
    .wb-news-info .wb-external-links,
    .wb-news-info ul,
    .wb-news-info .wb-list {
        padding-left: 0;
    }
}

@media (min-width: 1401px) {
    .heading-special {
        margin-left: 0;
    }

    /*.uk-section-large h1 {
        top: 80px;
        left: 100px;
        padding: 10px 10px 0px 10px;
    }*/

    #navbar .uk-hidden\@m {
        display: none !important;
    }

    .uk-text-lead {
        padding: 90px 20rem 40px 0;
        /*padding: 40px 20rem 40px 6rem;*/
    }

    .uk-search-icon {
        left: 30px;
    }
}

@media (min-width: 1501px) {

    /*.uk-section-large h1 {
        top: 80px;
        left: 100px;
        padding: 10px 10px 0px 10px;
    }*/
    .heading-special {
        margin-left: -50px;
    }
}

@media (min-width: 1601px) {
    .heading-special {
        margin-left: -100px;
    }
}

/* Max width for Container and Fonts */

@media (max-width: 1600px) {

    #navbar .uk-navbar-container .uk-container-xlarge,
    .uk-container-large {
        max-width: 1300px;
    }
}

@media (max-width: 1500px) {

    #navbar .uk-navbar-container .uk-container-xlarge,
    .uk-container-large {
        max-width: 1200px;
    }
}

@media (max-width: 1400px) {

    #navbar .uk-navbar-container .uk-container-xlarge,
    .uk-container-large {
        max-width: 1200px;
    }

    #navbar .uk-visible\@m {
        display: none !important;
    }

    #navbar .uk-navbar-right {
        top: 7px;
    }

    #navbar .uk-navbar-left {
        left: 0;
    }

    #navbar .uk-logo {
        left: 0;
    }

    #navbar .uk-logo img {
        /*background: #FFFF00;*/
        height: 80px !important;
    }

    #navbar .wp-title {
        margin-left: 0;
    }

    #navbar .uk-navbar-sticky .uk-logo img {
        background: #fff;
    }

    #navbar .uk-navbar:before {
        margin-left: 60px;
        width: calc(100% - 60px);
    }

    .wb-infobox.illu-integrated img,
    .wb-infobox-img.illu-integrated img {
        top: -20px;
        right: 150px;
    }

    .wb-infobox.illu-integrated img,
    .wb-infobox-img.illu-integrated img {
        margin-top: -100px;
        margin-left: -300px;
        width: 160px;
        height: 160px !important;
        ;
    }
}

@media (max-width: 1300px) {

    #navbar .uk-navbar-container .uk-container-xlarge,
    .uk-container-large {
        max-width: inherit;
    }
}

/* Fonts */
@media (max-width: 991.98px) {
    .font-big {
        font-size: 2.5rem;
        letter-spacing: 0;
    }

    .heading-special {
        font-size: 2rem;
        line-height: 4rem;
        padding: 0;
    }

    h1,
    .uk-h1 {
        font-size: 1.563rem;
        letter-spacing: 0.3px;
    }

    .wb-infobox h2.uk-h1,
    .wb-infobox-img h2.uk-h1 {
        font-size: 3.125rem !important;
    }

    h2,
    .uk-h2,
    .uk-text-large,
    .block-latest,
    .block-latest h3,
    .uk-text-lead p,
    h2,
    .wb-downloads h2,
    ul.wb-list li .wb-link-heading,
    .uk-accordion .uk-accordion-title,
    .wb-kampagne-home p {
        font-size: 1.25rem;
        line-height: 1.5;
    }

    .uk-button,
    ul.wb-list li .wb-link-heading h2,
    .wb-footer h4,
    .wb-kampagne-home .uk-button {
        font-size: 1.125rem;
        letter-spacing: 0.2px;
    }

    .archive article.uk-card,
    p,
    .wb-footer .uk-text-small,
    .wb-veranstaltung,
    .wb-infobox h4,
    .wb-infobox-img h4,
    figcaption {
        font-size: 1rem;
    }

    .wb-footer .uk-text-small {
        line-height: 1.65rem;
    }

    .wb-footer .uk-button.uk-button-text {
        display: inline;
    }

    /* Other Modifications */
    .uk-button {
        display: block;
        margin-bottom: 20px;
        text-align: left;
    }

    .wb-infobox .uk-position-cover,
    .wb-infobox-img .uk-position-cover,
    .wb-downloads .uk-position-cover {
        margin-right: 5vw;
    }

    .wb-infobox.illu-integrated img,
    .wb-infobox-img.illu-integrated img {
        top: -20px;
        right: 0px;
        width: 160px;
        height: 160px !important;
        object-fit: contain;
    }

    /* Release fake container on Bienenarten und Pflanzenarten und News Einzelseite */
    .wb-species-info .steckbrief.uk-container-small,
    .wb-species-info p,
    .wb-species-info h2 {
        width: 100%;
        margin-left: auto;
        margin-right: auto;
    }

    .wb-species-info .steckbrief img {
        margin-bottom: 10px;
    }

    .wb-species-info .uk-padding-remove-left {
        padding-left: 30px !important;
    }

    /* Release fake container on Bienenarten und Pflanzenarten und News Einzelseite */
    .wb-news-info p,
    .wb-news-info h2,
    .wb-news-info .uk-accordion,
    .wb-news-info .wb-external-links,
    .wb-news-info ul,
    .wb-news-info blockquote {
        width: 100%;
        margin-left: auto !important;
        margin-right: auto !important;
        padding-left: 15px;
        padding-right: 15px;
    }

    /* Begin - Slider fonts */
    .wb-slider h3,
    .wb-slider p,
    .wb-slider a {
        margin-left: 0;
        margin-right: 0;
    }

    .wb-slider h2 {
        margin-top: 10px;
        font-size: 3.5rem;
        line-height: 3.5rem;
    }

    .wb-slider p {
        font-size: 1.25rem;
        line-height: 2rem;
    }

    /* End - Slider fonts */
    .heading-in-column {
        position: relative;
    }

    .block-latest.events article:last-child {
        border-bottom: 2px solid #000;
    }
}

@media (max-width: 767.98px) {
    .spacer-mobile-50 {
        padding-top: 50px !important;
    }

    .heading-in-column {
        position: relative;
    }

    .uk-text-lead {
        padding-top: 60px;
    }

    .wb-veranstaltung .uk-width-2-3 {
        width: 100%;
    }

    .uk-object-cover,
    .intro-img img,
    .intro-img,
    .wb-header-image img {
        height: 300px !important;
    }

    /*.end-img, .end-img img {
        height: 500px !important;
    }*/
    .wb-infobox-img h2.uk-text-right,
    .wb-infobox h2.uk-text-right {
        float: left !important;
    }
}

@media (max-width: 575.98px) {
    .wb-slider-full-caption p {
        font-size: 1rem;
        padding-left: 30px;
        line-height: 1.5rem;
    }

    figcaption {
        margin-left: 0;
    }

    .wb-infobox,
    .wb-infobox-img {
        padding-left: 0;
    }

    /* Adapt paddings between blocks */
    /*.uk-section-default {
        padding-top: 40px !important;
        padding-bottom: 40px !important;
    }
    .uk-section-large {
        padding-top: 80px !important;
        padding-bottom: 80px !important;
    }
    ul.wb-list {
        margin: 40px 0 80px 0;
    }*/
    .uk-accordion,
    ul.wb-list {
        margin: 30px 0 80px 0;
    }
}