@charset "UTF-8";
/*Farben*/
/*Transitions*/
/*Breakpoints für das Responsive Design*/
/*Font Families*/
/*
Dünn 100
Extraleicht 200
Leicht 300
Normal 400
Medium 500
Halbfett 600
Fett 700
Extrafett 800
Schwarz 900
*/
@font-face {
    font-family: "poppins thin";
    src: url("fonts/poppins/Poppins-Thin.ttf") format("truetype");
    font-display: swap;
}
@font-face {
    font-family: "poppins extralight";
    src: url("fonts/poppins/Poppins-ExtraLight.ttf") format("truetype");
    font-display: swap;
}
@font-face {
    font-family: "poppins light";
    src: url("fonts/poppins/Poppins-Light.ttf") format("truetype");
    font-display: swap;
}
@font-face {
    font-family: "poppins regular";
    src: url("fonts/poppins/Poppins-Regular.ttf") format("truetype");
    font-display: swap;
}
@font-face {
    font-family: "poppins medium";
    src: url("fonts/poppins/Poppins-Medium.ttf") format("truetype");
    font-display: swap;
}
@font-face {
    font-family: "poppins semibold";
    src: url("fonts/poppins/Poppins-SemiBold.ttf") format("truetype");
    font-display: swap;
}
@font-face {
    font-family: "poppins bold";
    src: url("fonts/poppins/Poppins-Bold.ttf") format("truetype");
    font-display: swap;
}
@font-face {
    font-family: "poppins black";
    src: url("fonts/poppins/Poppins-Black.ttf") format("truetype");
    font-display: swap;
}
/*------------------------------------------------*/
/*------------------------------------------------*/
/*General Styling*/
/*------------------------------------------------*/
/*------------------------------------------------*/
* {
    transition: all 0.12s ease;
}

body {
    overflow-x: hidden;
    font-family: "poppins regular", serif;
}

@media (min-width: 897px) {
    .hide-on-desktop {
        display: none;
    }
}

@media (max-width: 897px) {
    .hide-on-mobile {
        display: none;
    }
}

.entry-content {
    padding: 80px 0 0 0;
}

.hero-image,
.hero-image-home {
    background-color: #113D30;
}
.hero-image .wp-block-cover,
.hero-image-home .wp-block-cover {
    padding: 1em 2em;
    height: calc(100vh - 80px);
}
.hero-image .wp-block-cover > img,
.hero-image-home .wp-block-cover > img {
    height: calc(100vh - 80px);
}
.hero-image .wp-block-cover h1,
.hero-image-home .wp-block-cover h1 {
    text-align: center;
}
.hero-image .wp-block-cover .wp-block-button,
.hero-image-home .wp-block-cover .wp-block-button {
    max-width: 80%;
}

.hero-image .wp-block-cover {
    height: 50vh !important;
}
.hero-image .wp-block-cover > img {
    height: 50vh !important;
}

@media (max-width: 897px) {
    .section {
        max-width: 75% !important;
        margin: 60px auto !important;
    }
}
@media (max-width: 580px) {
    .section {
        max-width: 100% !important;
        padding: 0 30px !important;
    }
}

.berry-rey-startpage-image {
    margin: -180px 0 0 0;
}

ul {
    margin-top: 0px;
    margin-bottom: 0px;
    list-style-type: square;
}

/*Telephone, mail and address*/
.tel,
.mail,
.address {
    display: flex;
    align-items: center;
}
.tel::before,
.mail::before,
.address::before {
    font-family: "dashicons";
    font-size: 20px;
    margin: 0 10px 0 0;
}
.tel a,
.mail a,
.address a {
    border-bottom: solid 2px #ffffff;
}
.tel a:hover,
.mail a:hover,
.address a:hover {
    border-bottom: solid 2px #113D30;
}

.tel::before {
    content: "";
}

.mail::before {
    content: "";
}

.address::before {
    content: "";
}

/*Buttons*/
button,
.wpcf7-submit {
    cursor: pointer;
    font-size: 16px;
    padding: 10px 25px;
    outline: 0;
    border: 0;
    color: #ffffff;
    background-color: #113D30;
}
button:hover,
.wpcf7-submit:hover {
    background-color: #F2D780;
    color: #113D30;
}

/*Iframe Contact Page*/
iframe {
    width: 100%;
    height: 300px;
    padding: 20px 0 0 0;
}

/*block.php -> markierter Link zb Allergenhinweise*/
p.is-style-marked-link a {
    text-decoration: underline;
    color: #0D6113;
}
p.is-style-marked-link a:hover {
    color: #19bb25;
}

/*automatisch erstellte Cookie Seite*/
.cmplz-document {
    margin: 0 auto;
    padding: 80px 30px 0 30px;
}

/*Single CPT no Top Padding*/
.jobs-template-single-jobs .entry-content, .galerie-template-default .entry-content {
    padding: 0;
}

/*featherlight*/
.featherlight-content .caption {
    margin: 10px 0 0 0;
}

/*------------------------------------------------*/
/*------------------------------------------------*/
/*Header*/
/*------------------------------------------------*/
/*------------------------------------------------*/
header {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
    width: 100vw;
    -moz-box-shadow: 0 5px 25px 0 rgba(0, 0, 0, 0.2);
    -webkit-box-shadow: 0 5px 25px 0 rgba(0, 0, 0, 0.2);
    box-shadow: 0 5px 25px 0 rgba(0, 0, 0, 0.2);
}
header .current-menu-item a {
    position: relative;
    display: inline-block;
    cursor: pointer;
    text-decoration: none !important;
}
header .current-menu-item a::after {
    transition: all 0.12s ease;
    display: block;
    content: "";
    transform: scaleX(1);
}
header .current-menu-item a:hover {
    transition: all 0.12s ease;
}
header .current-menu-item a:hover::after {
    transform: translateX(7px);
}
header .current-menu-item a::after {
    border-bottom: solid 1px #ffffff;
}
header .header-wrap .header .header-columns a:hover {
    color: #999999 !important;
}
@media (min-width: 897px) {
    header nav ul li a {
        padding: 0px 15px;
    }
}
@media (max-width: 897px) {
    header nav {
        transition: all 0.12s ease;
        position: absolute !important;
        top: 0;
        height: 100vh;
        width: 100vw;
        background-color: #113D30;
    }
    header nav ul {
        display: flex !important;
        flex-direction: column !important;
    }
    header nav ul li a {
        font-size: 20px;
        padding: 10px 0;
    }
    header .nav-opened {
        right: 0vw;
    }
    header .nav-closed {
        right: -100vw;
    }
    header .hamburger-menu {
        position: absolute;
        top: 42px;
        right: 40px;
        width: 30px;
        height: 30px;
        display: inline-block;
        cursor: pointer;
        transition: all 0.12s ease;
    }
    header .hamburger-menu .bar {
        width: 100%;
        height: 2px;
        background-color: #ffffff;
        display: block;
        margin: 7px 0;
    }
}
@media (max-width: 897px) and (max-width: 380px) {
    header .hamburger-menu {
        top: 62px;
    }
}

.hamburger-menu.active .bar:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.hamburger-menu.active .bar:nth-child(2) {
    opacity: 0;
}

.hamburger-menu.active .bar:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

/*------------------------------------------------*/
/*------------------------------------------------*/
/*Hero Images*/
/*------------------------------------------------*/
/*------------------------------------------------*/
@media (max-width: 1047px) {
    .hero-image-home .hero-image-content-wrap .hero-image-content {
        display: flex;
        flex-direction: column;
        text-align: center;
    }
    .hero-image-home .hero-image-content-wrap .hero-image-content h1 {
        font-size: 3rem;
    }
    .hero-image-home .hero-image-content-wrap .hero-image-content img {
        max-width: 80%;
    }
}
@media (max-width: 897px) {
    .hero-image-home .hero-image-content-wrap .hero-image-content h1 {
        display: none;
    }
}
.hero-image-main-btn .wp-block-button {
	position: absolute;
    bottom: 30px;
}

@media (max-width: 1047px) {
    .hero-image-main-btn .wp-block-button {
        bottom: 100px;
    }
}
.hero-image-home .hero-image-content-wrap .wp-block-button .wp-block-button__link:hover {
    background-color: #113D30;
    border: 2px solid #113D30;
}

/*------------------------------------------------*/
/*------------------------------------------------*/
/*Columns*/
/*------------------------------------------------*/
/*------------------------------------------------*/
.three-columns {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

.das-sind-wir-columns {
    flex-grow: 1;
}
@media (max-width: 897px) {
    .das-sind-wir-columns {
        max-width: 75% !important;
    }
}
@media (max-width: 380px) {
    .das-sind-wir-columns {
        max-width: 100% !important;
    }
}
.das-sind-wir-columns > .wp-block-column {
    transition: all 0.12s ease;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.das-sind-wir-columns > .wp-block-column:hover {
    transform: scale(1.04);
}
.das-sind-wir-columns > .wp-block-column figure img {
    width: 100%;
    height: auto;
}
.das-sind-wir-columns > .wp-block-column > .wp-block-group {
    display: flex;
    flex-grow: 1;
    flex-direction: column;
}
.das-sind-wir-columns > .wp-block-column .wp-block-button__link::after {
    content: "";
    font-family: "dashicons";
    border: none;
    cursor: pointer;
    margin: 0 0 0 3px;
    width: 20px;
    height: 20px;
    position: relative;
    top: 4px;
}
.das-sind-wir-columns > .wp-block-column .wp-block-button__link:hover {
    background-color: #F2D780;
}

.wp-block-columns {
    gap: 30px;
}
@media (max-width: 897px) {
    .wp-block-columns {
        display: flex !important;
        flex-direction: column !important;
    }
}
@media (max-width: 768px) {
    .wp-block-columns {
        gap: 20px !important;
    }
}

.wp-block-column.is-style-column-shadow {
    -moz-box-shadow: 0 5px 25px 0 rgba(0, 0, 0, 0.2);
    -webkit-box-shadow: 0 5px 25px 0 rgba(0, 0, 0, 0.2);
    box-shadow: 0 5px 25px 0 rgba(0, 0, 0, 0.2);
}

@media (max-width: 580px) {
    #opening-and-reservation .wp-block-column:first-child p {
        display: flex;
        flex-direction: column;
    }
}

@media (max-width: 897px) {
    .mobile-switched .wp-block-column:first-child {
        order: 2;
    }
    .mobile-switched .wp-block-column:nth-child(2) {
        order: 1;
    }
}

/*------------------------------------------------*/
/*------------------------------------------------*/
/*Events CPT*/
/*------------------------------------------------*/
/*------------------------------------------------*/
.events-container .events-wrap-white-bg p, .events-container .events-wrap-white-bg .empty-event h2 {
    color: #000000;
}
.events-container .events-wrap-white-bg > :first-child {
    order: 2;
}
.events-container .events-wrap-white-bg > :last-child {
    order: 1;
}
.events-container .events-wrap-white-bg .title-wrap p {
    color: #113D30;
}
.events-container .events-wrap-green-bg p, .events-container .events-wrap-green-bg .empty-event h2 {
    color: #ffffff !important;
}
.events-container .events-wrap {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
}
@media (min-width: 897px) {
    .events-container .events-wrap .event-card:nth-child(2n) .image-wrap {
        order: 2;
    }
    .events-container .events-wrap .event-card:nth-child(2n) .infos-wrap {
        order: 1;
    }
}
.events-container .events-wrap .event-card {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    max-width: 100%;
}
@media (max-width: 897px) {
    .events-container .events-wrap .event-card {
        grid-template-columns: repeat(1, 1fr);
    }
}
.events-container .events-wrap .event-card .image-wrap {
    max-width: 960px;
    max-height: 600px;
}
.events-container .events-wrap .event-card .image-wrap img {
    width: 100%;
    height: 100%;
    max-width: 960px;
    max-height: 600px;
    object-fit: cover;
}
.events-container .events-wrap .event-card .infos-wrap {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    padding: 10px 100px;
}
@media (max-width: 1250px) {
    .events-container .events-wrap .event-card .infos-wrap {
        padding: 10px 60px;
    }
}
@media (max-width: 1047px) {
    .events-container .events-wrap .event-card .infos-wrap {
        padding: 10px 30px;
    }
}
@media (max-width: 897px) {
    .events-container .events-wrap .event-card .infos-wrap {
        padding: 10px 0 40px 0;
    }
}
.events-container .events-wrap .event-card .infos-wrap .date-wrap p {
    margin: 0;
    font-size: 20px;
}
@media (max-width: 768px) {
    .events-container .events-wrap .event-card .infos-wrap .date-wrap {
        font-size: 18px;
    }
}
.events-container .events-wrap .event-card .infos-wrap .title-wrap {
    text-decoration: none;
    font-family: "poppins bold", serif;
}
.events-container .events-wrap .event-card .infos-wrap .title-wrap p {
    line-height: 1.2;
    margin: 20px 0 10px 0;
    font-size: 35px;
    font-weight: 700;
}
@media (max-width: 768px) {
    .events-container .events-wrap .event-card .infos-wrap .title-wrap p {
        font-size: 30px;
    }
}
.events-container .events-wrap .event-card .infos-wrap .excerpt-wrap p {
    margin: 0;
    font-size: 18px;
}
@media (max-width: 768px) {
    .events-container .events-wrap .event-card .infos-wrap .excerpt-wrap p {
        font-size: 16px;
    }
}

.empty-event h2 {
    text-align: center;
    font-size: 20px;
    padding: 20px 0;
    font-weight: 400;
}

.home .events-wrap-white-bg p, .home .events-wrap-white-bg .empty-event h2 {
    color: #ffffff !important;
}

/*------------------------------------------------*/
/*------------------------------------------------*/
/*Kontakt*/
/*------------------------------------------------*/
/*------------------------------------------------*/
.wpcf7-form {
    margin: auto;
}
.wpcf7-form .wpcf7-list-item {
    margin: 0;
}
.wpcf7-form .fullname-wrap,
.wpcf7-form .company-wrap,
.wpcf7-form .email-wrap,
.wpcf7-form .number-wrap,
.wpcf7-form .message-wrap {
    padding: 20px 0;
}
.wpcf7-form .fullname-wrap p,
.wpcf7-form .company-wrap p,
.wpcf7-form .email-wrap p,
.wpcf7-form .number-wrap p,
.wpcf7-form .message-wrap p {
    margin: 0;
}
.wpcf7-form .fullname-wrap .input-text,
.wpcf7-form .company-wrap .input-text,
.wpcf7-form .email-wrap .input-text,
.wpcf7-form .number-wrap .input-text,
.wpcf7-form .message-wrap .input-text {
    font-size: 16px;
}
.wpcf7-form .fullname-wrap .input-text span,
.wpcf7-form .company-wrap .input-text span,
.wpcf7-form .email-wrap .input-text span,
.wpcf7-form .number-wrap .input-text span,
.wpcf7-form .message-wrap .input-text span {
    color: red;
}
.wpcf7-form .fullname-wrap input,
.wpcf7-form .fullname-wrap textarea,
.wpcf7-form .company-wrap input,
.wpcf7-form .company-wrap textarea,
.wpcf7-form .email-wrap input,
.wpcf7-form .email-wrap textarea,
.wpcf7-form .number-wrap input,
.wpcf7-form .number-wrap textarea,
.wpcf7-form .message-wrap input,
.wpcf7-form .message-wrap textarea {
    outline: 0;
    border-top: 0;
    border-left: 0;
    border-right: 0;
    border-bottom: solid 2px #bfbfbf;
    padding: 5px 0;
    font-size: 16px;
    width: 100%;
    max-width: 485px;
    min-width: 100%;
}
.wpcf7-form .fullname-wrap input:focus,
.wpcf7-form .fullname-wrap textarea:focus,
.wpcf7-form .company-wrap input:focus,
.wpcf7-form .company-wrap textarea:focus,
.wpcf7-form .email-wrap input:focus,
.wpcf7-form .email-wrap textarea:focus,
.wpcf7-form .number-wrap input:focus,
.wpcf7-form .number-wrap textarea:focus,
.wpcf7-form .message-wrap input:focus,
.wpcf7-form .message-wrap textarea:focus {
    border-bottom: solid 2px #113D30;
}

/*------------------------------------------------*/
/*------------------------------------------------*/
/*masonry-gallery*/
/*------------------------------------------------*/
/*------------------------------------------------*/
.masonry-gallery, .wp-block-gallery {
    display: grid !important;
    gap: 30px !important;
    grid-template-columns: repeat(3, 1fr) !important;
    padding: 0 0 30px 0 !important;
}
@media (max-width: 897px) {
    .masonry-gallery, .wp-block-gallery {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 15px !important;
        padding: 0 0 15px 0 !important;
    }
}
@media (max-width: 580px) {
    .masonry-gallery, .wp-block-gallery {
        gap: 10px !important;
        padding: 0 0 10px 0 !important;
    }
}
.masonry-gallery figure, .wp-block-gallery figure {
    max-width: 313px !important;
    max-height: 500px !important;
    width: 100% !important;
    height: 100% !important;
}
@media (min-width: 897px) {
    .masonry-gallery figure:nth-child(3n+2), .wp-block-gallery figure:nth-child(3n+2) {
        transform: translateY(30px) !important;
    }
}
@media (max-width: 897px) {
    .masonry-gallery figure, .wp-block-gallery figure {
        max-width: 265px;
        max-height: 320px;
    }
    .masonry-gallery figure:nth-child(2n+2), .wp-block-gallery figure:nth-child(2n+2) {
        transform: translateY(25px) !important;
    }
}
@media (max-width: 580px) {
    .masonry-gallery figure, .wp-block-gallery figure {
        max-height: 290px;
    }
}
@media (max-width: 380px) {
    .masonry-gallery figure, .wp-block-gallery figure {
        max-height: 240px;
    }
}
.masonry-gallery figure img, .wp-block-gallery figure img {
    display: block !important;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
}

/*------------------------------------------------*/
/*------------------------------------------------*/
/*Jobs*/
/*------------------------------------------------*/
/*------------------------------------------------*/
/*Jobs Single*/
@media (max-width: 897px) {
    .jobs-template-single-jobs .title-wrap {
        align-items: flex-start;
        flex-direction: column;
    }
}
@media (max-width: 897px) {
    .jobs-template-single-jobs .title-wrap h1 {
        padding: 100px 0 0 0;
    }
}
.jobs-template-single-jobs .title-wrap .title-infos {
    gap: 30px;
}
.jobs-template-single-jobs .title-wrap .title-infos .date {
    font-size: 18px;
}
@media (max-width: 897px) {
    .jobs-template-single-jobs .title-wrap .title-infos .date {
        font-size: 16px;
    }
}
.jobs-template-single-jobs .title-wrap .title-infos .date::before {
    font-family: "dashicons";
    border: none;
    cursor: pointer;
    margin: 0 8px 0 0;
    width: 25px;
    height: 25px;
    position: relative;
    top: 1px;
}
.jobs-template-single-jobs .title-wrap .title-infos .date::before {
    content: "";
}
.jobs-template-single-jobs .title-wrap .title-infos .job-arbeitszeit {
    font-size: 18px;
}
@media (max-width: 897px) {
    .jobs-template-single-jobs .title-wrap .title-infos .job-arbeitszeit {
        font-size: 16px;
    }
}
.jobs-template-single-jobs .title-wrap .title-infos .job-arbeitszeit::before {
    font-family: "dashicons";
    border: none;
    cursor: pointer;
    margin: 0 8px 0 0;
    width: 25px;
    height: 25px;
    position: relative;
    top: 1px;
}
.jobs-template-single-jobs .title-wrap .title-infos .job-arbeitszeit::before {
    content: "";
}

/*Jobs CPT Shortcode*/
.jobs-wrap {
    display: flex;
    justify-content: center;
    flex-direction: column;
    gap: 30px;
    margin: 30px 0 0 0;
}
.jobs-wrap .job-card {
    border: solid 2px #113D30;
    padding: 20px;
}
.jobs-wrap .job-card .title-wrap {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}
@media (max-width: 897px) {
    .jobs-wrap .job-card .title-wrap {
        flex-direction: column;
        justify-content: flex-start;
        margin: 0 0 10px 0;
    }
}
.jobs-wrap .job-card .title-wrap a {
    text-decoration: none !important;
}
.jobs-wrap .job-card .title-wrap a p {
    line-height: 1.3;
    font-size: 24px;
    margin: 0;
    color: #113D30;
    font-weight: 700;
}
@media (max-width: 897px) {
    .jobs-wrap .job-card .title-wrap a p {
        margin: 0 0 20px 0;
    }
}
.jobs-wrap .job-card .title-wrap .title-infos {
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    gap: 20px;
}
@media (max-width: 897px) {
    .jobs-wrap .job-card .title-wrap .title-infos {
        justify-content: flex-start;
    }
}
.jobs-wrap .job-card .title-wrap .title-infos .date-wrap p {
    font-size: 16px;
    margin: 0;
}
.jobs-wrap .job-card .title-wrap .title-infos .date-wrap p::before {
    font-family: "dashicons";
    border: none;
    cursor: pointer;
    margin: 0 8px 0 0;
    width: 25px;
    height: 25px;
    position: relative;
    top: 1px;
}
.jobs-wrap .job-card .title-wrap .title-infos .date-wrap p::before {
    content: "";
}
.jobs-wrap .job-card .title-wrap .title-infos .arbeitszeit-wrap p {
    font-size: 16px;
    margin: 0;
}
.jobs-wrap .job-card .title-wrap .title-infos .arbeitszeit-wrap p::before {
    font-family: "dashicons";
    border: none;
    cursor: pointer;
    margin: 0 8px 0 0;
    width: 25px;
    height: 25px;
    position: relative;
    top: 1px;
}
.jobs-wrap .job-card .title-wrap .title-infos .arbeitszeit-wrap p::before {
    content: "";
}
.jobs-wrap .job-card .excerpt-wrap p {
    margin: 0 0 10px 0;
}
.jobs-wrap .job-card .permalink-wrap a {
    position: relative;
    display: inline-block;
    cursor: pointer;
    text-decoration: none !important;
}
.jobs-wrap .job-card .permalink-wrap a::after {
    transition: all 0.12s ease;
    display: block;
    content: "";
    transform: scaleX(1);
}
.jobs-wrap .job-card .permalink-wrap a:hover {
    transition: all 0.12s ease;
}
.jobs-wrap .job-card .permalink-wrap a:hover::after {
    transform: translateX(7px);
}
.jobs-wrap .job-card .permalink-wrap a::after {
    border-bottom: solid 1px #000000;
}
.jobs-wrap .job-card .permalink-wrap a p {
    margin: 0;
}

.empty-jobs {
    margin: 40px 0 0 0;
}
.empty-jobs h2 {
    font-size: 20px;
    margin: 0;
    color: #113D30;
    font-weight: 700;
}

/*------------------------------------------------*/
/*------------------------------------------------*/
/*Galerie CPT*/
/*------------------------------------------------*/
/*------------------------------------------------*/
@media (max-width: 897px) {
    .galerie-template-default h1 {
        padding: 100px 0 0 0;
    }
}

.galerie-wrap {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    margin: 0 auto;
    gap: 30px;
}
@media (max-width: 897px) {
    .galerie-wrap {
        grid-template-columns: repeat(1, 1fr);
        gap: 20px;
        max-width: 80%;
    }
}
@media (max-width: 768px) {
    .galerie-wrap {
        max-width: 100%;
    }
}
.galerie-wrap .galerie-card {
    position: relative;
}
.galerie-wrap .galerie-card a {
    object-fit: cover;
}
.galerie-wrap .galerie-card a img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover;
    aspect-ratio: 3/2;
}
.galerie-wrap .galerie-card a .overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.6);
}
.galerie-wrap .galerie-card a p {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #ffffff;
    font-weight: bold;
    font-size: 24px;
    padding: 10px 20px;
    margin: 0;
    background-color: #113D30;
}
@media (max-width: 897px) {
    .galerie-wrap .galerie-card a p {
        font-size: 20px;
    }
}
@media (max-width: 768px) {
    .galerie-wrap .galerie-card a p {
        font-size: 16px;
    }
}
.galerie-wrap .galerie-card a:hover p {
    color: #113D30;
    background-color: #F2D780;
}

/*------------------------------------------------*/
/*------------------------------------------------*/
/*Footer*/
/*------------------------------------------------*/
/*------------------------------------------------*/
footer nav ul li a {
    padding: 0 15px;
}
footer nav ul li a:hover {
    text-decoration: underline !important;
}