@import url('https://fonts.verwaltungsportal.de/import/?family=Work+Sans:400,400i,700,700i%7CPlaywrite+DE+VA:400,400i');

body {
    font-family: "Work Sans", sans-serif;
    font-weight: 400;
    color: #191919;
    background-color: #f2f2f2;
    font-size: 1rem;
    /* 1rem = 16px */
    line-height: 1.5;
    background-attachment: fixed;
    background-size: cover;
}

@media (min-width: 768px) {
    html {
        position: relative;
    }
}

@media (min-width: 992px) {
    body {
        font-size: 1.125rem;
    }
}

a {
    color: #870404;
}

a:hover,
a:focus {
    color: #870404;
    text-decoration: underline;
}

#contentCol a {
    font-weight: 400;
}

b,
strong {
    font-weight: 700;
}

@media (min-width: 768px) {
    #formdescription {
        margin-left: 15px;
    }
}

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

/* ----------------------------------------------- compact ----------------------------------------------- */

.compact {
    padding: 15px;
    background-color: #fff;
    box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 5;
}

@media (min-width: 768px) {
    .compact {
        padding: 20px 15px 15px 15px;
        margin-top: 30px;
        margin-bottom: 30px;
    }
}

@media (min-width: 992px) {
    .compact {
        padding: 20px 30px 30px 30px;
        margin-top: 60px;
        margin-bottom: 60px;
    }
}

/* ----------------------------------------------- topbar ----------------------------------------------- */

#topbar {
    padding-bottom: 18px;
    background-color: #ffffff;
}

@media (min-width: 1200px) {
    .index #topbar {
        background: url(../img/dekorative-pfote-header.png) top 6px right 6px no-repeat;
    }
}

/* -------------------------------------------- phone + mail -------------------------------------------- */

address {
    font-style: 400;
}

#mail,
#phone {
    color: #191919;
    display: inline-block;
    font-weight: 400;
    margin-top: 15px;
    line-height: 1;
    position: relative;
    min-height: 18px;
    font-size: 1rem;
}

@media (min-width: 992px) {

    #mail,
    #phone {
        margin-top: 0;
        padding-top: 2px;
    }

    #mail {
        margin-left: 30px;
    }
}

#mail {
    padding-left: 28px;
    background: url(../img/icon-mail.png) center left no-repeat;
}

#phone {
    padding-left: 25px;
    background: url(../img/icon-telefon.png) center left no-repeat;
}

@media (max-width: 991px) {

    #mail,
    #phone {
        background-position: left 5px center;
    }
}

#mail a,
#phone a {
    color: #36611a;
}

#mail a:hover,
#phone a:hover {
    color: #36611a;
    text-decoration: none;
}

/* ----------------------------------------------- logo ----------------------------------------------- */

.logo {
    display: inline-block;
}

.logo img {
    display: block;
}

a.logo {
    text-decoration: none;
}

a.logo:is(:hover, :focus) {
    text-decoration: none;
    color: #191919;
}

a.logo:is(:hover, :focus) :is(b, strong) {
    color: #36611a;
}

@media (max-width: 991px) {
    .logo img {
        max-width: 190px;
        width: 100%;
    }

    body:not(.intro, .index) .logo img {
        max-width: 125px;
        width: 100%;
    }
}

@media (min-width: 992px) {
    .logo {
        font-size: clamp(1.5rem, 2vw, 1.625rem);
        color: #191919;
    }

    .logo :is(b, strong) {
        font-size: clamp(2.25rem, 4vw, 3rem);
        font-family: 'Playwrite DE VA';
        font-weight: 400;
        color: #36611a;
        padding-right: 10px;

    }

    .logo img {
        padding-right: 10px;
    }
    .logo .tiny_p {
        display: flex;
        align-items: end;
    }
}

/* --------------------------------------- navigation --------------------------------------- */

.navbar-nav {
    background-color: #95e449;
}

/* burgermenu for tablet */

@media (max-width: 991px) {
    #burgerButton {
        font-size: 0;
        border: none !important;
        display: block;
        height: 50px;
        width: 60px;
        border-radius: 2px;
        padding: 6px 8px;
        cursor: pointer;
        background-color: #ffffff;
        box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.08);
    }

    #burgerButtonInner2,
    #burgerButton:after,
    #burgerButtonInner {
        background-color: #95e449;
        border-radius: 2px;
        position: absolute;
        width: 40px;
        height: 3px;
        left: 10px;
        transition: transform 200ms linear, opacity 200ms linear;
    }

    #burgerButton[aria-expanded="true"] #burgerButtonInner {
        transform: rotate(-45deg) translate(-6px, 6px);
    }

    #burgerButton[aria-expanded="true"] #burgerButtonInner2 {
        opacity: 0;
    }

    #burgerButton[aria-expanded="true"]:after {
        transform: rotate(45deg) translate(-4px, -6px);
    }

    #burgerButtonInner {
        top: 16px;
    }

    #burgerButtonInner2 {
        top: 24px;
    }

    #burgerButton:after {
        top: 32px;
        content: "";
        display: block;
    }

    .navbar-nav {
        margin: 20px 0;
    }

    .navbar-collapse {
        top: 0;
        background: #5a7e20;
        position: fixed;
        left: -100%;
        bottom: 0;
        z-index: 100;
        height: auto !important;
        box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.5);
        opacity: 0;
        pointer-events: none;
        overflow-y: auto;
        transition: left 300ms linear, opacity 300ms linear;
    }

    .navbar-collapse[aria-expanded="true"],
    .navbar-collapse.in {
        left: 0;
        opacity: 1;
        pointer-events: auto;
    }

    .navbar-header {
        position: fixed;
        top: 15px;
        right: 15px;
        z-index: 101;
    }

    .navbar-toggle::before {
        content: "";
        opacity: 0;
        position: fixed;
        top: 0;
        right: 0;
        bottom: 0;
        width: 0;
        z-index: -1;
        display: block;
        background-color: rgba(0, 0, 0, 0.5);
        transition: width 300ms linear, opacity 300ms linear;
    }

    .navbar-toggle[aria-expanded="true"]::before {
        opacity: 1;
        width: 90px;
    }
    .menuBox {
        width: 100% !important;
    }
}

@media (min-width: 575px) and (max-width: 991px) {
    .navbar-collapse {
        width: 60%;
    }

    .navbar-collapse.collapse.in:after,
    .navbar-toggle[aria-expanded="true"]::before {
        width: 40%;
    }
}

/* menu desktop */

@media (min-width: 992px) {
    nav.horizontally .navbar-nav {
        display: flex;
        justify-content: space-between !important;
        align-items: center !important;
    }

    nav.horizontally .navbar-nav>li {
        flex-grow: 1;
    }

    nav.horizontally .dropdown-menu {
        position: absolute;
        top: 100%;
        left: 0;
        z-index: 1000;
    }

    nav.horizontally .navbar-nav>li>.dropdown-menu>li>.dropdown-menu {
        position: absolute;
        left: 100%;
        top: 0;
    }

    nav.horizontally .navbar-nav>li,
    nav.horizontally .navbar-nav>li>.dropdown-menu>li {
        position: relative;
    }

    .navbar-default .navbar-nav li[class*="toplevel"]>ul,
    .navbar-default .navbar-nav li[class*="secondlevel"]>ul {
        display: block !important;
        pointer-events: none;
        opacity: 0;
        transition: opacity 300ms linear;
    }

    .navbar-default .open>.dropdown-menu,
    .navbar-default .navbar-nav li[class*="toplevel"]:hover>ul,
    .navbar-default .navbar-nav li[class*="secondlevel"]:hover>ul,
    .navbar-default .navbar-nav li[class*="secondlevel"]>ul[style*="block"] {
        pointer-events: auto !important;
        opacity: 1 !important;
    }

    .navbar-default .navbar-nav li[class*="toplevel"]:focus-within>ul,
    .navbar-default .navbar-nav li[class*="secondlevel"]:focus-within>ul {
        pointer-events: auto !important;
        opacity: 1 !important;
    }

    .navbar-default .nav .open>.dropdown-menu {
        pointer-events: none !important;
        opacity: 0 !important;
    }
}

/* ---------------------------------------------- toplevel ---------------------------------------------- */

.navbar-default .navbar-nav>li>a {
    color: #191919;
    font-weight: 700;
    text-align: left;
    padding: 10px 15px;
    font-size: 1rem;
    line-height: 1.2;
    text-decoration: none;
}

@media (max-width: 991px) {
    nav.horizontally .navbar-nav>li>a.dropdown-toggle {
        padding-right: 40px;
    }

    .navbar-default .navbar-nav>li>a {
        overflow-wrap: break-word;
        word-wrap: break-word;
        hyphens: auto;
    }
}

@media (min-width: 992px) {
    .navbar-default .navbar-nav>li>a {
        padding: 34px 10px 30px 10px;
        display: flex;
        align-content: center;
        align-items: center;
        justify-content: center;
        height: 100%;
        text-align: center;
    }
}

@media screen and (-ms-high-contrast: active),
(-ms-high-contrast: none) and (min-width: 992px) {
    .navbar-default .navbar-nav>li>a {
        display: block;
    }
}

.navbar-default .navbar-nav>li>a::before {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    background: url(../img/menu-hover.png) center no-repeat;
    width: 27px;
    height: 27px;
    opacity: 0;
    transition: opacity 300ms linear;
}

@media (min-width: 992px) {
    .navbar-default .navbar-nav>li>a::before {
        top: 10px;
        right: 0;
        margin: auto;
    }
}

@media (max-width: 991px) {
    .navbar-default .navbar-nav>li>a::before {
        left: -5px;
        background-size: 50% auto;
    }
}

/* -------------------------------------------- toplevel-over ------------------------------------------- */

.navbar-nav>li:hover>a::before,
.navbar-nav>li>a:hover::before,
.navbar-nav>li>a:focus::before,
.navbar-nav>li.open>a::before,
.navbar-nav>li.open>a:hover::before,
.navbar-nav>li.open>a:focus::before,
.navbar-nav>li[class$="_over"]>a::before,
.navbar-nav>li[class$="_over"]>a:hover::before,
.navbar-nav>li[class$="_over"]>a:focus::before {
    opacity: 1;
}

/* -------------------------------------- secondlevel + thirdlevel dropdown-box -------------------------------------- */

.navbar-default .navbar-nav>li>.dropdown-menu,
.navbar-default .navbar-nav>li>.dropdown-menu>li>.dropdown-menu {
    padding: 12px 0;
    background-color: #fff;
    border: 1px solid #d8fa80;
}

@media (min-width: 992px) {
    .navbar-default .navbar-nav>li>.dropdown-menu {
        margin-top: 0;
        left: 50%;
        transform: translate(-50%, 0);
    }

    .navbar-default .navbar-nav>li>.dropdown-menu>li>.dropdown-menu {
        margin-left: 10px;
        margin-top: -13px;
    }

    .navbar-default .navbar-nav>li>.dropdown-menu::before {
        content: "";
        position: absolute;
        display: block;
        height: 0;
        left: 0;
        right: 0;
        top: -0;
    }

    .navbar-default .navbar-nav>li>.dropdown-menu>li>.dropdown-menu::before {
        content: "";
        position: absolute;
        display: block;
        width: 10px;
        top: 0;
        bottom: 0;
        left: -10px;
    }
}

/* --------------------------------------------- secondlevel + thirdlevel -------------------------------------------- */

.navbar-default .navbar-nav>li>.dropdown-menu>li>a,
.navbar-default .navbar-nav>li>.dropdown-menu>li>.dropdown-menu>li>a {
    color: #191919;
    font-weight: 400;
    text-align: left;
    padding: 4px 30px;
    background-color: transparent;
    position: relative;
    font-size: 1rem;
    line-height: 1.2;
    text-decoration: none;
}

@media(max-width:991px) {
    nav.horizontally .navbar-nav>li>.dropdown-menu>li>a.dropdown-toggle2 {
        padding-right: 40px;
    }

    .navbar-default .navbar-nav>li>.dropdown-menu>li>a,
    .navbar-default .navbar-nav>li>.dropdown-menu>li>.dropdown-menu>li>a {
        overflow-wrap: break-word;
        word-wrap: break-word;
        hyphens: auto;

    }
}

.navbar-default .navbar-nav>li>.dropdown-menu>li>a::before,
.navbar-default .navbar-nav>li>.dropdown-menu>li>.dropdown-menu>li>a::before {
    content: "";
    position: absolute;
    left: 8px;
    top: 0;
    bottom: 0;
    margin: auto;
    display: block;
    width: 17px;
    height: 17px;
    background: url(../img/subnav-hover.png) center no-repeat;
    opacity: 0;
    transition: opacity 300ms linear;
}

/* ------------------------------------------ secondlevel + thirdlevel over ------------------------------------------ */

.navbar-nav>li>.dropdown-menu>li:hover>a,
.navbar-nav>li>.dropdown-menu>li>a:hover,
.navbar-nav>li>.dropdown-menu>li>a:focus,
.navbar-nav>li>.dropdown-menu>li.open>a,
.navbar-nav>li>.dropdown-menu>li.open>a:hover,
.navbar-nav>li>.dropdown-menu>li.open>a:focus,
.navbar-nav>li>.dropdown-menu>li[class$="_over"]>a,
.navbar-nav>li>.dropdown-menu>li[class$="_over"]>a:hover,
.navbar-nav>li>.dropdown-menu>li[class$="_over"]>a:focus,
.navbar-nav>li>.dropdown-menu>li>.dropdown-menu>li>a:hover,
.navbar-nav>li>.dropdown-menu>li>.dropdown-menu>li>a:focus,
.navbar-nav>li>.dropdown-menu>li>.dropdown-menu>li.open>a,
.navbar-nav>li>.dropdown-menu>li>.dropdown-menu>li.open>a:hover,
.navbar-nav>li>.dropdown-menu>li>.dropdown-menu>li.open>a:focus,
.navbar-nav>li>.dropdown-menu>li>.dropdown-menu>li[class$="_over"]>a,
.navbar-nav>li>.dropdown-menu>li>.dropdown-menu>li[class$="_over"]>a:hover,
.navbar-nav>li>.dropdown-menu>li>.dropdown-menu>li[class$="_over"]>a:focus {
    color: #870404;
}

.navbar-nav>li>.dropdown-menu>li:focus-within>a,
.navbar-nav>li>.dropdown-menu>li>.dropdown-menu>li:focus-within>a {
    color: #870404;
}

.navbar-nav>li>.dropdown-menu>li:hover>a::before,
.navbar-nav>li>.dropdown-menu>li>a:hover::before,
.navbar-nav>li>.dropdown-menu>li>a:focus::before,
.navbar-nav>li>.dropdown-menu>li.open>a::before,
.navbar-nav>li>.dropdown-menu>li.open>a:hover::before,
.navbar-nav>li>.dropdown-menu>li.open>a:focus::before,
.navbar-nav>li>.dropdown-menu>li[class$="_over"]>a::before,
.navbar-nav>li>.dropdown-menu>li[class$="_over"]>a:hover::before,
.navbar-nav>li>.dropdown-menu>li[class$="_over"]>a:focus::before,
.navbar-nav>li>.dropdown-menu>li>.dropdown-menu>li>a:hover::before,
.navbar-nav>li>.dropdown-menu>li>.dropdown-menu>li>a:focus::before,
.navbar-nav>li>.dropdown-menu>li>.dropdown-menu>li.open>a::before,
.navbar-nav>li>.dropdown-menu>li>.dropdown-menu>li.open>a:hover::before,
.navbar-nav>li>.dropdown-menu>li>.dropdown-menu>li.open>a:focus::before,
.navbar-nav>li>.dropdown-menu>li>.dropdown-menu>li[class$="_over"]>a::before,
.navbar-nav>li>.dropdown-menu>li>.dropdown-menu>li[class$="_over"]>a:hover::before,
.navbar-nav>li>.dropdown-menu>li>.dropdown-menu>li[class$="_over"]>a:focus::before {
    opacity: 1;
}

.navbar-nav>li>.dropdown-menu>li:focus-within>a::before,
.navbar-nav>li>.dropdown-menu>li>.dropdown-menu>li:focus-within>a::before {
    opacity: 1;
}

/* ----------------------------------------------- banner ----------------------------------------------- */

#slider,
.slider-wrapper {
    max-height: 300px;
    overflow: hidden;
}

@media (min-width: 768px) {
    #headerpic .nivo-directionNav a {
        top: auto;
        bottom: 12px;
    }

    #headerpic .nivo-controlNav {
        pointer-events: none;
    }

    #headerpic .nivo-controlNav a {
        pointer-events: auto;
    }
}

@media (min-width: 992px) {
    #headerpic .nivo-directionNav a {
        bottom: 18px;
    }

    #slider,
    .slider-wrapper {
        max-height: 400px;
    }
}

#headerpic {
    margin: 0 auto;
    overflow: hidden;
    position: relative;
    width: 100%;
    margin-top: 15px;
}

.slider-wrapper,
#slider {
    height: 100%;
}

.slider-mask {
    display: block;
    background: url(../img/dekorative-pfote-banner.png) bottom right no-repeat;
}

.theme-nivo .nivo-controlNav .slick-dots li button {
    pointer-events: all;
}

/* ----------------------------------------------- bannerOverlay ----------------------------------------------- */

#bannerOverlay .tabLogo {
    padding: 15px;
}

@media (max-width: 991px) {
    #bannerOverlay .tabLogo {
        padding: 0 0 15px 0;
    }
}

@media (min-width: 992px) {
    #bannerOverlay .tabLogo {
        padding: 62px 35px;
        background-color: rgba(255, 255, 255, .63);
        pointer-events: all;
        margin-left: 100px;
    }

    #bannerOverlay {
        position: absolute;
        left: 0;
        top: 0;
        bottom: 0;
        right: 0;
        z-index: 53;
        pointer-events: none;
        display: flex;
    }

    #bannerOverlay .row {
        display: block;
    }
}

/* ----------------------------------------------- tabs ----------------------------------------------- */

#tabs {
    padding-top: 20px;
}

#tabs>.row>* {
    margin-top: 30px;
}

.tab {
    background: #f5f5f5 linear-gradient(45deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0) 50%, #d8fa80 50%) top right / 180px 180px no-repeat;
    padding: 20px;
    font-size: 1.125rem;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.tab:not(.tab2) img {
    display: block;
    width: 100%;
    margin-bottom: 25px;
}

.tab a {
    display: inline-block;
    position: relative;
}

#tabs .tab a {
    text-decoration: none;
}

.tab table img {
    display: inline-block;
    margin: 5px 0 0 0;
}

@media (min-width: 992px) {
    #tabs .tab {
        min-height: 100%;
    }
}

/* -------------------------------------------- tabs tab1 --------------------------------------------- */

#asideTab .tab1 a[href^="mailto:"],
#tabs .tab1 a[href^="mailto:"] {
    text-decoration: underline;
}

#asideTab .tab1 a:not([href^="mailto:"], [href^="tel:"]),
#tabs .tab1 a:not([href^="mailto:"], [href^="tel:"]) {
    position: relative;
    font-family: 'Playwrite DE VA', sans-serif;
    display: inline-block;
    text-decoration: none;
    font-size: 1rem;
    color: #191919;
    background-color: #95e449;
    border: 2px solid #191919;
    border-radius: 20px;
    padding: 5px 50px 5px 20px;
}

#asideTab .tab1 a:not([href^="mailto:"], [href^="tel:"])::after,
#tabs .tab1 a:not([href^="mailto:"], [href^="tel:"])::after {
    content: '';
    position: absolute;
    pointer-events: none;
    border-left: 2px solid rgba(0, 0, 0, 0.1);
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    width: 35px;
    height: 24px;
    background: url(../img/icon-pfote-logo.png) center no-repeat;
    transition: background-position 150ms ease-in-out;
}

#asideTab .tab1 a:not([href^="mailto:"], [href^="tel:"]):hover::after,
#asideTab .tab1 a:not([href^="mailto:"], [href^="tel:"]):focus::after,
#tabs .tab1 a:not([href^="mailto:"], [href^="tel:"]):hover::after,
#tabs .tab1 a:not([href^="mailto:"], [href^="tel:"]):focus::after {
    background-position: right 10px center;
}

#tabs .tab1 a[href*="mailto:"],
#tabs .tab1 a[href*="tel:"] {
    display: inline-block;
    margin-left: 24px;
    padding-left: 4px;
    position: relative;
    color: #191919;
}

#tabs .tab1 a[href*="tel:"] {
    text-decoration: none;
}

#tabs .tab1 a:is([href*="mailto:"],[href*="tel:"])::before {
    content: '';
    position: absolute;
    right: 100%;
    top: 50%;
    transform: translateY(-50%);
    background: url(../img/icon-mail.png);
    width: 22px;
    height: 17px;
    transition: right 300ms linear;
}

#tabs .tab1 a[href*="tel:"]::before {
    background: url(../img/icon-telefon.png);
    width: 19px;
    height: 19px;
}

#tabs .tab1 a:is([href*="mailto:"],[href*="tel:"]):is(:hover,:focus)::before {
    right: calc(100% + 4px);
}

/* -------------------------------------------- tabs tab2 --------------------------------------------- */

#tabs .tab2 {
    background: #f5f5f5 linear-gradient(45deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0) 50%, #d8fa80 50%) top right / 180px 180px no-repeat;
}

#tabs .tab2 a {
    color: #870404;
    text-decoration: underline;
}

@media (min-width: 992px) {

    #asideTab .tab2,
    #tabs .tab2 {
        padding-top: 60px;
        padding-bottom: 40px;
        font-size: 1.125rem;
    }
}

#tabs .tab1 :is(h1, h2, h3, h4, h5, h6),
#tabs .tab2 :is(h1, h2, h3, h4, h5, h6) {
    font-size: clamp(1.45rem, 4vw, 1.625rem);
    font-weight: 400;
    color: #5c7029;
    margin-bottom: 25px;
}

#asideTab .tab2 .tab_link_title a,
#tabs .tab2 .tab_link_title a {
    color: #5a7e20;
    font-weight: 700;
}

#asideTab .tab2 .tab_link_mehr,
#tabs .tab2 .tab_link_mehr {
    font-size: 0;
    position: relative;
    margin-top: 10px;
}

#asideTab .tab2 .tab_link_mehr a,
#tabs .tab2 .tab_link_mehr a {
    position: relative;
    font-family: 'Playwrite DE VA', sans-serif;
    display: inline-block;
    text-decoration: none;
    font-size: 1rem;
    color: #191919;
    border-radius: 20px;
    background-color: #95e449;
    border: 2px solid #191919;
    padding: 5px 50px 5px 20px;
}

#asideTab .tab2 .tab_link_mehr a::after,
#tabs .tab2 .tab_link_mehr a::after {
    content: '';
    position: absolute;
    pointer-events: none;
    border-left: 2px solid rgba(0, 0, 0, 0.1);
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    width: 35px;
    height: 24px;
    background: url(../img/icon-pfote-logo.png) center no-repeat;
    transition: background-position 150ms ease-in-out;
}

#asideTab .tab2 .tab_link_mehr a:hover::after,
#asideTab .tab2 .tab_link_mehr a:focus::after,
#tabs .tab2 .tab_link_mehr a:hover::after,
#tabs .tab2 .tab_link_mehr a:focus::after {
    background-position: right 10px center;
}

#tabs .tab2 a.has-image,
.tabSocial a.has-image,
#asideTab a.has-image {
    display: inline-block;
    border-radius: 50%;
    background-color: #ecfac7;
    transition: background-color 300ms linear;
    height: 34px;
    width: 34px;
    aspect-ratio: 1/1;
}

#tabs .tab2 a.has-image img,
.tabSocial a.has-image img,
#asideTab a.has-image {
    padding: 4px;
    height: 34px;
    width: 34px;
}

#tabs .tab2 a.has-image:is(:hover, :focus),
.tabSocial a.has-image:is(:hover, :focus),
#asideTab a.has-image:is(:hover, :focus) {
    background-color: #649732;
}

/* ------------------------------------------------ content ----------------------------------------------- */

#content {
    text-align: left;
    padding-top: 30px;
    padding-bottom: 30px;
}

@media (min-width: 768px) {
    #content.md-gutter {
        margin-left: -15px;
        margin-right: -15px;
    }
}

@media (min-width: 992px) {
    #content {
        padding-top: 55px;
        padding-bottom: 35px;
    }

    .index #content {
        padding-top: 40px;
        padding-bottom: 60px;
    }

    #contentCol {
        padding: 20px 25px 0 20px;
    }
}

@media (min-width: 1200px) {
    #contentCol {
        padding: 30px 30px 0 45px;
    }
}

/* ------------------------------------------------ asideTab ----------------------------------------------- */

@media (max-width: 991px) {
    #asideTab {
        margin-top: 30px;
        margin-left: auto;
        margin-right: auto;
    }
}

#asideTab>*+* {
    margin-top: 40px;
}

/* ------------------------------------------------ @10ev events ----------------------------------------------- */

#events .tab3 {
    margin-left: auto;
    margin-right: auto;
    margin-top: 32px;
    position: relative;
    background: url(../img/pfote-wasserzeichen-unterseite.png) bottom left no-repeat, #f5f5f5;
    font-size: 1.125rem;
    color: #191919;
}

#events .tab3 .tabHeadline {
    color: #5a7e20;
    font-size: 1.625rem;
    font-weight: 400;
    margin: 0;
    padding: 35px 25px 25px 25px;
}

#events .tab3 .tab_link_title a {
    color: #36611a !important;
    font-weight: 700;
}

#clr-events-hide {
    margin-top: 25px;
}

#events .tab3 .tab_link_mandat a {
    color: #191919;
}

#events .tab3 .tab_link_mehr {
    color: transparent;
    font-size: 0;
    padding-bottom: 25px;
    padding-right: 20px;
}

#events .tab3 .tab_link_mehr a {
    position: relative;
    font-family: 'Playwrite DE VA', sans-serif;
    display: inline-block;
    text-decoration: none;
    font-size: 1rem;
    color: #191919 !important;
    background-color: #95e449;
    border: 2px solid #191919;
    border-radius: 20px;
    padding: 5px 50px 5px 20px;
}

#events .tab3 .tab_link_mehr a::after {
    content: '';
    position: absolute;
    pointer-events: none;
    border-left: 2px solid rgba(0, 0, 0, 0.1);
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    width: 35px;
    height: 24px;
    background: url(../img/icon-pfote-logo.png) center no-repeat;
    transition: background-position 150ms ease-in-out;
}

#events .tab3 .tab_link_mehr a:hover::after,
#events .tab3 .tab_link_mehr a:focus::after {
    background-position: right 10px center;
}

#events .tab3 .eventclndr-tab {
    margin-bottom: 0;
}

#events .tab3 #clr-events-hide>p:nth-child(1) {
    display: none !important;
}

#events #clr-events-hide {
    padding-left: 40px;
    padding-right: 40px;
}

#events .tab3 .tab_spacer {
    height: 15px;
}

/* ------------------------------------------------ @19ev ----------------------------------------------- */

#ev19 {
    position: relative;
    padding-top: 140px;
    padding-bottom: 95px;
}

@media (max-width: 767px) {
    #ev19 {
        padding-bottom: 130px;
        padding-top: 40px;
    }
}

#ev19>.row::before {
    content: '';
    z-index: -1;
    position: absolute;
    left: 0;
    top: -55px;
    width: 455px;
    height: 455px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

@media (max-width: 1199px) {
    #ev19>.row::before {
        width: 370px;
        height: 370px;
    }
}

@media (max-width: 767px) {
    #ev19>.row::before {
        bottom: -92px;
        top: unset;
    }
}

#events19 {
    position: relative;
}

#eventsHeadline {
    font-size: 2.5rem;
    position: relative;
    color: #36611a;
    font-weight: 400;
    display: inline-block;
    margin-bottom: 5px;
}

#events19 .eventsTab {
    color: #191919;
    font-size: 1.625rem;
    font-weight: 400;
    line-height: 1.2;
    padding-bottom: 30px;
}

@media (max-width: 767px) {
    #eventsHeadline {
        font-size: 1.5625rem;
    }

    #eventsBox .eventsTab {
        font-size: 1.25rem;
    }
}

@media (max-width: 361px) {
    #eventsHeadline {
        font-size: 1.25rem;
    }
}

#eventsBox {
    background: url(../img/pfote-wasserzeichen.png) bottom left no-repeat, #f5f5f5 linear-gradient(45deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0) 50%, #d8fa80 50%) top right / 180px 180px no-repeat;
    padding: 75px 15px 30px 90px;
}

@media (max-width: 991px) {
    #eventsBox {
        padding: 40px 30px 15px 30px;
    }
}

@media (max-width: 767px) {
    #eventsBox {
        padding: 30px 30px 15px 30px;
    }
}

#eventsKalender #clr-events-hide,
#eventsKalender .tab_link_mehr {
    display: none;
    height: 0;
}

#eventsKalender .eventclndr-tab {
    margin-bottom: 0;
    margin-top: 16px;
}

@media (max-width: 767px) {
    #eventsKalender .eventclndr-tab {
        margin-top: 0;
        margin-bottom: 15px;
    }
}

#eventsList {
    position: relative;
    color: #191919;
    font-size: 1.125rem;
}

#eventsList a {
    text-decoration: none;
}

#eventsList a:is(:hover, :focus) {
    text-decoration: underline;
}

@media (max-width: 575px) {
    #eventsList {
        font-size: 1rem;
    }
}

#eventsList .tab_spacer {
    height: 0;
    display: none;
}

#eventsList .tab_link_entry+.tab_link_entry {
    margin-top: 40px;
}

@media (max-width: 767px) {
    #eventsList .tab_link_entry+.tab_link_entry {
        margin-top: 20px;
    }
}

#eventsList .tab_link_title a {
    color: #191919;
    font-weight: 700;
}

#eventsList .tab_link_mandat a {
    color: #191919;
}

#eventsList .tab_link_mehr {
    font-size: 0;
    position: relative;
    margin-top: 10px;
}

#eventsList .tab_link_mehr a {
    position: relative;
    font-family: 'Playwrite DE VA', sans-serif;
    display: inline-block;
    text-decoration: none;
    font-size: 1rem;
    color: #191919;
    background-color: #95e449;
    border: 2px solid #191919;
    border-radius: 20px;
    padding: 5px 50px 5px 20px;
}

#eventsList .tab_link_mehr a::after {
    content: '';
    position: absolute;
    pointer-events: none;
    border-left: 2px solid rgba(0, 0, 0, 0.1);
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    width: 35px;
    height: 24px;
    background: url(../img/icon-pfote-logo.png) center no-repeat;
    transition: background-position 150ms ease-in-out;
}

#eventsList .tab_link_mehr a:hover::after,
#eventsList .tab_link_mehr a:focus::after {
    background-position: right 10px center;
}

/* ------------------------------------------ h1 - h6, newslink ----------------------------------------- */

.h4link a:link,
.h4link a:hover,
.h4link a:focus,
.h4link a:visited,
H6,
H5,
H4,
H3,
H2,
H1 {
    color: #5a7e20;
    font-weight: 400;
    line-height: 1.2;
    font-family: "Playwrite DE VA", sans-serif;
}

h1,
.h1,
.legacy_h1 {
    font-size: clamp(2rem, 6vw, 2.8125rem);
}

h2,
.h2,
.legacy_h2 {
    font-size: clamp(1.875rem, 5vw, 2.5rem);
}

h3,
.h3,
.legacy_h3 {
    font-size: clamp(1.75rem, 5vw, 2.3125rem);
}

h4,
.h4,
.h4link a:link,
.h4link a:hover,
.h4link a:focus,
.h4link a:visited,
.legacy_h4 {
    font-size: clamp(1.625rem, 5vw, 2.125rem);
}

h5,
.h5,
.legacy_h5 {
    font-size: clamp(1.5rem, 4vw, 1.8125rem);
}

h6,
.h6,
.legacy_h6,
#asideTab .tab :is(h1,h2,h3,h4,h5,h6),
#asideTab .tabHeadline {
    font-size: clamp(1.25rem, 4vw, 1.625rem);
}

#newslinks,
#newsmandate {
    border: 1px solid #5a7e20;
}

/* --------------------------------------------- formular --------------------------------------------- */

#kontakt {
    padding-top: 20px;
    padding-bottom: 20px;
    background-color: #95e449;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    color: #191919;
    font-style: normal;
    position: relative;
}

@media (min-width: 1200px) {
    #kontakt::before {
        content: '';
        position: absolute;
        pointer-events: none;
        top: -35px;
        right: -18px;
        background: url(../img/paw-print-fz.png) center no-repeat;
        width: 163px;
        height: 172px;
    }
}

@media (min-width: 768px) {
    #kontakt>.row>*+* {
        border-left: 1px solid rgba(255, 255, 255, 0.1);
    }

    #kontakt .tabFooter {
        font-size: 1.125rem;
    }
}

#kontakt .formtab p {
    margin: 0;
}

#kontakt .formgen_element,
#kontakt input[id$="_input"],
#kontakt input[name="captcha"],
#kontakt input[type="text"],
#kontakt textarea {
    color: #191919;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid #ffffff;
    padding: 3px 10px;
}

#kontakt input[type="submit"] {
    color: #191919;
    font-family: 'Playwrite DE VA', sans-serif;
    border-radius: 20px !important;
    border: none;
    padding: 5px 45px 5px 25px !important;
    font-size: 1rem;
    font-weight: 400 !important;
    background: url(../img/icon-pfote-logo.png) right center no-repeat, #ffffff;
    background-position: right 10px center !important;
    border: 2px solid #191919 !important;
    transition: background-position 150ms ease-in-out;
}

#kontakt input[type="submit"]:hover,
#kontakt input[type="submit"]:focus {
    background-position: right 12px center !important;
}

@media (max-width: 767px) {
    #kontakt>.row>div+div {
        margin-top: 30px;
    }
}

@media (min-width: 992px) {
    #kontakt {
        padding-top: 60px;
    }
}

#kontakt h1,
#kontakt h2,
#kontakt h3,
#kontakt h4,
#kontakt h5,
#kontakt h6,
#kontakt p,
#kontakt a,
#kontakt a:hover,
#kontakt a:focus {
    color: #191919;
}

#kontakt :is(h1,h2,h3,h4,h5,h6) {
    font-size: clamp(1.5rem, 1.5vw, 1.625rem);
}

#kontakt .formgen {
    margin: 0;
}

#kontakt .tabFooter {
    font-weight: 400;
}

#kontakt .tabFooter a {
    text-decoration: underline;
    font-weight: 400;
}

/* ----------------------------------------------- scroll top ----------------------------------------------- */

#scrollTop {
    color: #36611a !important;
    display: block !important;
    align-content: center;
    align-items: center;
    font-size: 0;
    margin-top: 15px;
    padding-right: 10px;
    opacity: 1 !important;
}

#scrollTop span {
    font-size: 0;
    background-color: #ffffff;
    width: 29px;
    height: 29px;
    display: inline-block;
    position: relative;
    margin: 0 auto;
    margin-left: 22px;
    transition: background-color 300ms linear;
    border-radius: 50%;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.25);
}

#scrollTop span::before {
    content: "";
    position: absolute;
    pointer-events: none;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url(../img/pfeil-nach-oben.png) center no-repeat;
}

#scrollTop span:hover {
    background-color: rgba(255, 255, 255, 0.8);
}

/* ----------------------------------------------- iframetab ----------------------------------------------- */

.iframetab {
    box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.11);
}

.iframetab iframe,
.iframetab .iframe-wrapper-manual-enabling {
    min-width: 100% !important;
    width: 100% !important;
    display: block;
    max-height: 288px;
}

/* ----------------------------------------------- intro ----------------------------------------------- */

.introBox {
    padding: 90px 0;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.introBox>.row>*+* {
    margin-top: 30px;
}

.tabLink {
    position: relative;
}

.tabLink a {
    text-decoration: none;
    font-family: 'Playwrite DE VA', sans-serif;
    display: inline-block;
    position: relative;
    color: #191919;
    background: #95e449;
    border: 3px solid #191919;
    border-radius: 37px;
    font-weight: 700;
    font-size: clamp(1.6875rem, 8vw, 2.3125rem);
    padding: 8px 200px 8px 55px;
}

.tabLink a::after {
    content: '';
    position: absolute;
    pointer-events: none;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    height: 143px;
    width: 143px;
    background: url(../img/icon-pfote-logo-index.png) center no-repeat, #95e449;
    border: 3px solid #191919;
    border-radius: 100%;
    transition: background-size 150ms ease-in-out;
}

.tabLink a:hover::after,
.tabLink a:focus::after {
    background-size: 50% auto;
}

@media (max-width: 991px) {
    .tabLink a {
        padding: 8px 150px 8px 25px;
    }

    .tabLink a::after {
        height: 100px;
        width: 100px;
    }
}

@media (max-width: 767px) {
    .tabLink a {
        font-size: 1.25rem;
        padding: 6px 130px 6px 20px;
    }

    .tabLink a::after {
        height: 70px;
        width: 70px;
        background-size: 65% auto;
        right: -3px;
    }
}

/* ----------------------------------------------- footer ----------------------------------------------- */

footer {
    color: #191919;
    font-size: 1rem;
    padding-top: 40px;
    padding-bottom: 40px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-color: #95e449;
}

footer a {
    color: #191919;
}

footer a:hover,
footer a:focus {
    color: #191919;
}

footer .footerTab {
    font-size: 1rem;
}

footer .footerTab a {
    text-decoration: underline;
}

footer .tabHeadline {
    color: #191919;
    font-size: 1.375rem;
    font-weight: 400;
}

@media (max-width: 767px) {
    #innerfooter {
        margin-bottom: 30px;
    }
}

#innerfooter ul {
    border-bottom: 2px solid rgba(0, 0, 0, 0.1);
    padding: 0;
}

#innerfooter li {
    border-top: 2px solid rgba(0, 0, 0, 0.1);
}

#innerfooter a {
    display: inline-block;
    font-size: 1rem;
    font-weight: 400;
    padding: 6px 10px 6px 25px;
    position: relative;
    text-decoration: none;
}

#innerfooter a::before {
    content: "";
    position: absolute;
    display: block;
    width: 18px;
    height: 16px;
    left: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    background: url(../img/pfote-stichpunkt.png) center no-repeat;
    transition: background 300ms linear;
}

#innerfooter a:is(:hover, :focus)::before {
    background: url(../img/pfote-stichpunkt-active.png) center no-repeat;
}

/* --------------------------------------------- vernetzt -------------------------------------------- */

@media (max-width: 991px) {
    .tabSocial {
        margin-top: 30px;
        text-align: center;
    }
}

.tabSocial a:hover,
.tabSocial a:focus {
    text-decoration: none;
}

#vernetzt {
    color: #191919;
    font-size: 0.8125rem;
    font-weight: 400;
    line-height: 1.3;
    margin: 30px auto 0 auto;
    text-align: right;
    text-decoration: none;
}

@media (min-width: 992px) {
    #vernetzt {
        margin: 0;
        margin-top: 30px;
    }
}

#vernetzt span {
    color: #191919;
}

#vernetzt span span {
    display: block;
}

#vernetzt img {
    margin-left: 18px;
}