:root {
    --primary: #38b000;
    --secondary: #  ;
    --background: #F3F1E5;
    /* rgb(243, 241, 229) */
    --background-two: #98D274;
    /* rgb(152, 210, 116) */
    --text: #002F00;
}

main {
    width: 100%;
    display: flex;
    padding-top: 5rem;
    justify-content: center;
}


/* |> Card */
.container {
    display: flex;
    width: 100%;
    height: 75vh;
    gap: .1rem;
    margin: -5rem 1rem 0 1rem;
}

.card {
    position: relative;
    flex: 1 1 15rem;
    height: 25rem;
    object-fit: cover;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    margin-bottom: .45rem;
}
.card img {
    position: absolute;
    top: 0;
    object-fit: cover;
    width: 15rem;
    height: 25rem;
    border-radius: .4rem;
    z-index: -1;
    -webkit-filter: brightness(.5);
    filter: brightness(.5);
    box-shadow: rgba(6, 24, 44, 0.4) 0px 0px 0px 2px, rgba(6, 24, 44, 0.65) 0px 4px 6px -1px, rgba(255, 255, 255, 0.08) 0px 1px 0px inset;
}
.card-body {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 14rem;
    color: var(--background);
}
.card-body h3 {
    margin-bottom: 0;
    font-size: clamp(1.125rem, 2rem, 50%);
    text-transform: uppercase;
    font-weight: 800;
}
.card-body p {
    font-family: 'Outfit';
    font-size: .7125rem;
}
.card-body a {
    text-decoration: none;
    color: var(--background);
    position: absolute;
    bottom: 1rem;
    font-size: 2rem;
    transition: all 0.2s ease-in;
}
.card-desc {
    position: relative;
    max-height: 0px;
    pointer-events: none;
    opacity: 0;
    transition: max-height 2s ease, opacity 1s ease;
    overflow: hidden;
}
.card:hover .card-desc, .card.active .card-desc {
    max-height: 300px;
    opacity: 1;
    pointer-events: all;
}
.container::-webkit-scrollbar {
    display: none;
}
.card:hover a {-webkit-animation:heartbeat 1.5s ease-in-out infinite both;animation:heartbeat 1.5s ease-in-out infinite both}

@-webkit-keyframes heartbeat{from{-webkit-transform:scale(1);transform:scale(1);-webkit-transform-origin:center center;transform-origin:center center;-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}10%{-webkit-transform:scale(.91);transform:scale(.91);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}17%{-webkit-transform:scale(.98);transform:scale(.98);-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}33%{-webkit-transform:scale(.87);transform:scale(.87);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}45%{-webkit-transform:scale(1);transform:scale(1);-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}}@keyframes heartbeat{from{-webkit-transform:scale(1);transform:scale(1);-webkit-transform-origin:center center;transform-origin:center center;-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}10%{-webkit-transform:scale(.91);transform:scale(.91);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}17%{-webkit-transform:scale(.98);transform:scale(.98);-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}33%{-webkit-transform:scale(.87);transform:scale(.87);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}45%{-webkit-transform:scale(1);transform:scale(1);-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}}

@media screen and (max-width: 800px) {
    .container {
        max-height: 100vh;
        overflow-y: scroll;
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        scroll-snap-type: y mandatory;
        scroll-behavior: smooth;
    }
    .card {
        flex: 1 1 100%;
        scroll-snap-align: center;
    }
    .card, .card img {
        width: 100%;
        height: 63vh;
    }
    .card-body {
        width: 80%;
    }
    .card-body p{
        font-size: 1rem;
        font-weight: 300;
    }
    .card-body h3 {
        font-size: 1.4rem;
    }
}
@media screen and (min-width: 800px) {
    .container {
        min-height: max-content;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
        height: 100%;
    }
    .card, .card img {
        flex: 1 1 25%;
        width: 95%;
        height: 30rem;
    }
    .card-body {
        width: 70%;
    }
    .card-body h3 {
        position: relative;
        font-size: 1.4125rem;
    }
    .card-body p {
        font-size: .9125rem;
        font-weight: 300;
    }
}
@media screen and (min-width: 1980px) {
    .container {
        min-height: calc(100vh - 30.35rem);
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
    }
    .card, .card img {
        flex: 1 1 19rem;
        width: 90%;
        height: 40rem;
    }
}

/* |> Header */

header {
    position: relative;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding-top: 5.8rem;
    padding-bottom: 1rem;
}
header h2 {
    font-weight: 900;
    color:#002F00;
    text-transform: uppercase;
    margin: 0;
    font-size: 2.6125rem;
}
header p {
    font-family: 'Outfit', sans-serif;
    font-weight: 400;
    font-size: 1.2125rem;
    margin: 0 .4rem 0 .4rem;
    text-align: center;
}

/* |> Filter */

.container-o {
    display: flex;
    flex-direction: column;
    width: 100%;
    align-items: center;
    justify-content: center;
}

.filter {
    background-color: #fff;
    padding: 1rem;
    border-radius: 0.4rem;
    width: 90%;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}
.filter .path {
    flex: 1 1 100%;
}
.filter .path a {
    text-decoration: none;
    color: var(--text);
    font-size: 0.8rem;
}
.filter .path a::after {
    content: ' /';
}
.filter .path a:last-of-type {
    font-weight: 600;
    color: var(--primary);
}
.filter .path a:last-of-type::after {
    content: '';
}

.filter .navigation li a {
    text-decoration: none;
    color:#F3F1E5;
    font-size: 0.8rem;
}
.filter .navigation li img {
    width: 1.5rem;
    margin-right: .4rem;
    margin-left: 0.4rem;
}
.filter .navigation {
    position: relative;
    display: flex;
    width: 100%;
    justify-content: flex-start;
}
.xnav {
    position: relative;
}
.filter .navigation ul {
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}
.filter .navigation button {
    border: none;
    background-color: #38b000;
    margin: .4rem;
    padding: .4rem;
    width: 15rem;
    border-radius: 0.4rem;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1rem;
    font-family: 'Outfit';
    font-weight: 300;
    color: #fff;
    cursor: pointer;
    z-index: 2;
}
.filter .navigation button i {
    font-size: 1rem;
    margin-left: 0.2rem;
}
.filter .navigation button[data-active="true"] {
    background-color: #38b000;
    color:#F3F1E5;
}

.filter .navigation button[data-active="true"]+ul{
    max-height: 200px;
    opacity: 1;
    pointer-events: all;
}
.filter .navigation ul {
    flex: 1 1 100%;
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    position: absolute;
    max-height: 0px;
    opacity: 0;
    pointer-events: none;
    top: 2rem;
    width: 15.4rem;
    z-index: 2;
}
.filter .navigation li {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 0.4em;
    background-color: #38b000;
    color:#F3F1E5;
    margin: 0.2rem;  
    border-radius: 0;
    margin: 0;
    margin-left: .4rem;
    cursor: pointer;
    border-bottom: #002F00 solid 0.01em;
    width: 15rem;
}
.filter .navigation li:last-of-type {
    border-radius: 0 0 0.4rem 0.4rem;
    border-bottom: none;
}

/* |> Content */

.chy{
    flex: 1 1 98.99%;
    text-align: center;
    width: 100% !important;
    text-transform: uppercase;
    color:#002F00;
    font-weight: 900;
    margin: 0;
    font-size: 2rem;
    z-index: 1;
    display: grid;
    place-content: center;
}
.chy span {
    font-size: 0.925rem;
    font-weight: 400;
    text-transform: none;
    font-family: 'Outfit', sans-serif;
}
.chy::before {
    content: '————————————';
    color:#38b000;
    font-weight: 400;
}
.chy::after {
    content: '————————————';
    color:#38b000;
    font-weight: 400;
}

.content {
    width: 90%;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 0.4rem;
    padding: .4rem;
    background-color: #fff;
    margin-top: .4rem;
}
@media screen and (min-width: 1940px) {
    .content {
        width: 60%;
        box-shadow: rgba(14, 30, 37, 0.12) 0px 2px 4px 0px, rgba(14, 30, 37, 0.32) 0px 2px 16px 0px;
        border-radius: 5px;
        padding-inline: 2rem;
    }
    .filter {
        width: 60%;
        box-shadow: rgba(0, 0, 0, 0.12) 0px 1px 3px, rgba(0, 0, 0, 0.24) 0px 1px 2px;
    }
}
.row {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 0.4rem;
    align-items: center;
}
.item-sm {
    flex: 1 1 24.55%;
    width: 100%;
    min-width: 19rem;
}
.item-md {
    flex: 1 1 49.55%;
    width: 100%;
}
.item-lg {
    flex: 1 1 74.55%;
    width: 100%;
}
.item {
    flex: 1 1 99.55%;
    width: 100%;
}
.center {
    text-align: center;
}
.m-0 {
    margin: 0;
}
.m-t-0 {
    margin-top: 0;
}
.m-t {
    margin-top: .4rem;
}
.m-b-0 {
    margin-bottom: 0;
}
.row img {
    width: 100%;
    object-fit: cover;
}
.row iframe {
    aspect-ratio: 16 / 9;
    width: 100%;
    height: auto;
}
h1.h {
    font-size: 2rem;
    text-transform: uppercase;
    font-weight: 900;
    color: #002F00;
}
h2.h {
    font-size: 1.6125rem;
    text-transform: uppercase;
    font-weight: 900;
    color: #002F00;
}
h3.h {
    font-size: 1.3125rem;
    text-transform: uppercase;
    font-weight: 900;
    color: #002F00;
}
h4.h {
    font-size: 1.1125rem;
    text-transform: uppercase;
    font-weight: 900;
    color: #002F00;
}
h5.h {
    font-size: .9125rem;
    text-transform: uppercase;
    font-weight: 900;
    color: #002F00;
}
h6.h {
    font-size: .8125rem;
    text-transform: uppercase;
    font-weight: 900;
    color: #002F00;
}
.h.margin-0 {
    margin: 0;
}
/* |> Paragraphs */
p.p {
    font-family: 'Outfit', sans-serif;
    margin: 0;
    color:#002F00;
    text-underline-offset: .125rem;
}

.divider {
    flex: 1 1 100%;
    height: 2px;
    background-color: #38b000;
    width: 100%;
    margin: .8rem 0 .8rem 0;
    position: relative;
}
.divider::after {
    content: '';
    position: absolute;
    width: 10px;
    height: 10px;
    background-color: #38b000;
    top: -.25rem;
    right: 0;
    border-radius: 50px;
}
.divider::before {
    content: '';
    position: absolute;
    width: 10px;
    height: 10px;
    background-color: #38b000;
    top: -.25rem;
    left: 0;
    border-radius: 50px;
}
/* |> Colors */
.c-bg {
    color: var(--background);
}
.c-primary {
    color: var(--primary) !important;
}
.c-text {
    color: var(--text) !important;
}
.c-none {
    color: #000 !important;
}

.fs-sm, .fs-small {
    font-size: .8125rem;
}
.fs-md, .fs-medium {
    font-size: .9125rem;
}
.fs-lg, .fs-lorge {
    font-size: 1.125rem;
}
.fs-x{
    font-size: 1.3125rem;
}
.fs-xx{
    font-size: 1.6125rem;
}

    /* Light, normal, bold, bolder, black */
.fw-light {
    font-weight: 200;
}
.fw-normal {
    font-weight: 300;
}
.fw-bold {
    font-weight: 500;
}
.fw-bolder {
    font-weight: 600;
}
.fw-black {
    font-weight: 900;
}
.aspect-1 {
    aspect-ratio: 1/1;
    object-fit: cover;
}
/* |> Links */
a.link {
    text-decoration: none;
    color: #002F00;
    padding: 0 .4rem 0 .4rem;
    position: relative;
    padding-left: 1rem;
    border-bottom: #002F00 solid 1px;
    font-family: 'Outfit', sans-serif;
    font-weight: 300;
}
a.link::before {
    font-family: bootstrap-icons;
    position: absolute;
    content: '\F471';
    transform: rotate(45deg);
    left: 0;
}

/* |> Collapse */

.collapse {
    width: 100%;
    position: relative;
    transition: max-height 0.2s ease, opacity 0.1 linear;
    overflow: hidden;
}
.collapse-title {
    display: flex;
    flex-direction: row;
    cursor: pointer;
    background-color: #38b000;
    color: var(--background);
    font-weight: 600;
    padding: .6rem;
}
.collapse-title::after {
    font-family: bootstrap-icons;
    content: '\F282';
    position: absolute;
    top: 7px;
    right: .8rem;
    font-size: 1.5rem;
    cursor: pointer;
    transition: transform 0.4s ease;
}
.collapse-title.active::after {
    transform: rotate(180deg);
}
.collapse-content {
    max-height: 0;
    border:#38b000 solid 2px;
    opacity: 1;
    transition: all 0.8s ease;
}
.collapse-title.active~.collapse-content{
    max-height: 100vh;
    opacity: 1;
}


/* |> Buttons */

.btnn {
    text-decoration: none;
    padding-inline: 1.8rem;
    padding-block: .4rem;
    border: #002F00 solid 2px;
    border-radius: 50px;
    color: #002F00;
    font-weight: 500;
    margin-block: .4rem;
    text-align: center;
    display: grid;
    place-content: center;
    background-color: #fff;
}
.btnn.primary {
    background-color: #38b000;
    color:#F3F1E5;
    border:none;
    box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 1px 3px 1px;
}
.button-center {
    width: 100%;
    display: grid;
    place-content: center;
}
.btnn-group {
    display: flex;
    flex-direction: row;
}
.btnn-group .btnn {
    border-radius: 0;
    position: relative;
    transition: all 0.3s ease;
}
.btnn-group .btnn:hover {
    background-color: #002F00;
    color:#fff;
}
.btnn-group .btnn::before {
    content: '';
    position: absolute;
    background-color: #002F00;
    width: 1px;
    height: 100%;
}
.btnn-group .btnn:first-of-type {
    border-top-left-radius: 50px;
    border-bottom-left-radius: 50px;
    border-right: none;
}
.btnn-group .btnn:first-of-type::before {
    background-color: transparent;
}
.btnn-group .btnn:last-of-type {
    border-top-right-radius: 50px;
    border-bottom-right-radius: 50px;
    border-left: none;
}


.btn {
    text-decoration: none;
    padding: .4rem 1.8rem .4rem .8rem;
    border-radius: 50px;
    border: #002F00 solid 2px;
    color:#002F00;
    transition: all 0.2s ease;  
    display: flex;
    flex-direction: row;
    align-items: center;
    font-size: clamp(.4rem, 1.2rem, 80%);
    width: min-content;
    margin: 0.4rem;
    text-wrap: nowrap;
    position: relative;
    justify-content: center;
    text-align: center;
    box-shadow: rgba(0, 0, 0, 0.07) 0px 1px 2px, rgba(0, 0, 0, 0.07) 0px 2px 4px, rgba(0, 0, 0, 0.07) 0px 4px 8px, rgba(0, 0, 0, 0.07) 0px 8px 16px, rgba(0, 0, 0, 0.07) 0px 16px 32px, rgba(0, 0, 0, 0.07) 0px 32px 64px;
}
.btn i {
    padding-right: .4rem;
}
.inline {
    display: flex;
    flex-direction: row;
    /* rgba(0, 47, 0, 0.7) */
    border-radius: 50px;
}
.inline .btn {
    border-radius: 0;
    margin: 0;
    border: none;
    border-bottom: #002F00 solid 2px;
    border-top: #002F00 solid 2px;
    width: 100%;
    text-wrap: wrap;
    box-shadow: none;
}
.inline .btn:not(:first-of-type)::before {
    content: '';
    position: absolute;
    background-color: #002F00;
    width: 1px;
    height: 80%;
    left: 0;
}
.inline .btn:first-of-type {
    border-radius: 50px 0 0 50px;
    border-left: #002F00 solid 2px;
}
.inline .btn:last-of-type {
    border-radius: 0 50px 50px 0;
    border-right: #002F00 solid 2px;
}
.btn:hover{
    background-color: #002F00;
    color: var(--background);
}
.btn:focus {
    box-shadow: rgba(0, 47, 0, 0.3) 0px 0px 0px 3px;
}
.btn.icon {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-right: .4rem;
}
.btn.icon i {
    text-align: center;
}
.btn.primary {
    background-color: #38b000;
    color: #F3F1E5;
    font-weight: 600;
    border:#38b000;
    box-shadow: rgba(56, 176, 0, 0.7) 0px 0px 0px 2px;
}
.btn.primary:hover {
    /* rgba(56, 176, 0, 1) */
    box-shadow: rgba(56, 176, 0, 0.3) 0px 0px 0px 3px;
}

/* |> Lists */
.l {
    margin: .4rem;
}
.l li {
    line-height: 1.5em;
    line-break: auto;
    font-family: 'Outfit', sans-serif;
    font-size: 0.9125rem;
    font-weight: 300;
}
.l li b{
    font-weight: 600;
    color: #002F00;
}
/* |> ANCHOR */

.anchor {
    width: 5rem;
    height: 5rem;
    background-color: transparent;
    pointer-events: none;
    position: absolute;
    top: -5rem;
}


/* |> ZOOM */
.zoom {
    position: fixed;
    opacity: 0;
    pointer-events: none;
    width: 100%;
    height: 100%;
    z-index: 10;
    background-color: rgba(0, 0, 0, 0.80);
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.4s ease;
}
.zoom-container {
    position: relative;
    width: 100%;
    height: 100%;
    overflow-y: auto;
    display: grid;
    place-items: center;
}
.zoom img {
    width: clamp(40vh, 100vh, 50%);
}
.zoom[data-active="true"] {
    opacity: 1;
    pointer-events: all;
}
.tozoom {
    cursor: pointer;
}

/* |> Tables */
.flex-center {
    display: grid;
    place-content: center;
}

.table-container {
    display: block;
    width: 100%;
    max-width: 85vw;
    overflow: auto;
    scroll-behavior: smooth;
}
.table-container::-webkit-scrollbar {
    background-color: transparent;
    height: .8rem;
    background-color: var(--background);
    border-radius: 50px;
}
.table-container::-webkit-scrollbar-thumb {
    background-color: #002F00;
    border-radius: 50px;
}
.table {
    white-space:unset;
    border-collapse: 0;
    border-spacing: 0;
}
.table.w100 {
    width: 100%;
}

.table thead {
    /* background-color: #002F00; */
    font-size: 0.75rem;
    /* color: var(--background); */
}
.table th {
    padding: .4rem;
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
    border-bottom: #002F00 solid 1px;
}
.table tbody td {
    text-align: center;
    font-family: 'Outfit', sans-serif;
    font-weight: 300;
    border-bottom: #002F00 solid 1px;
    padding: 0.4rem;
}
.table tbody tr:last-of-type td {
    border-bottom: none;
}
td.nowrap{
    text-wrap: nowrap;
}
/* |> GALLERY */

.gallery {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 0.6rem;
}
.gallery-item {
    width: 100%;
    flex: 1 1 10%;
}
.gallery-item img {
    border-radius: 0.2em;
}

/* |> MEDIA: Telefon */

@media screen and (max-width: 520px) {
    .filter .navigation {
        justify-content: center;
    }
    .filter .navigation ul {
        width: 100%;
        left: 0;
        right: 0;
    }
    .filter .navigation button, .filter .navigation li {
        width: 16rem;
    }
    .content .chy::after, .content .chy::before {
        content: '';
    }
    .content .chy {
        font-size: 1.4rem;
        text-wrap:balance;
        border-top: #38b000 solid 0.1em;
        border-bottom: #38b000 solid 0.1em;
        border-radius: 0px;
        padding: 1rem;
        margin-block: 2.125rem;
    }
    .content .chy span {
        font-size: 0.7525rem;
    }
    .fs-lg {
        font-size: 1.025rem;
    }
    .gallery-item {
        flex: 1 1 48%;
    }
}

/* |> MEDIA: Tablet */
@media screen and (max-width: 800px) {
    .content article .article-section {
        grid-template-columns: 1fr;
        /* grid-template-rows: repeat(2, 1fr); */
        grid-template-rows: auto auto;
        grid-column-gap: 0px;
        grid-row-gap: 0px;
        align-items: baseline;
    }
}
