@font-face {
    font-family: PaytoneOne-Regular;
    src: url(../fonts/PaytoneOne-Regular.woff2) format('woff2');

}

@font-face {
    font-family: Alata-Regular;
    src: url(../fonts/Alata-Regular.woff2) format('woff2');
    font-weight: 400;
}

@font-face {
    font-family: Amaranth-Bold;
    src: url(../fonts/Amaranth-Bold.woff2) format('woff2');
    font-weight: 800;
}

@font-face {
    font-family: Amaranth-Italic;
    src: url(../fonts/Amaranth-Italic.woff2) format('woff2');

}

@font-face {
    font-family: Mukta-Regular;
    src: url(../fonts/Mukta-Regular.woff2) format('woff2');
    font-weight: 400;
}

@font-face {
    font-family: Mukta-Medium;
    src: url(../fonts/Mukta-Medium.woff2) format('woff2');
    font-weight: 500;
}


*,
*:before,
*:after {
    padding: 0;
    margin: 0;
    border: 0;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
}

html,
body {
    height: 100%;
}

a {
    text-decoration: none;
    color: #fff;
}

body {
    margin: 0;
    color: #fff;
    background-color: #000;

}

img {
    max-width: 100%;

}

.grid-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 10px;
    padding: 0 20px;
}

header {
    margin: 0;
    padding: 0;
    width: 100%;
    position: absolute;
    z-index: 900;
}

.logo {
    margin-top: 13px;
    width: 120px;
    margin-left: 25px;
}

.slideshow-container {
    position: relative;
    max-width: 100%;
    margin: auto;
    margin-bottom: 30px;
}


h1 {
    font-family: PaytoneOne-Regular, sans-serif;
    font-size: 23px;
    font-weight: bold;
}

h2 {
    font-family: PaytoneOne-Regular, sans-serif;
    font-size: 20px;
    text-align: center;
}

h3 {
    font-family: Amaranth-Bold, sans-serif;
    color: #CC0033;
    font-size: 16px;
    text-align: center;
    margin-bottom: 3px;
}

h4 {
    font-family: Amaranth-Italic, sans-serif;
    font-size: 11px;
    letter-spacing: 1.8px;
    font-style: italic;
    text-align: center;
    margin-bottom: 23px;
}

p {
    font-family: Mukta-Regular, sans-serif;
    font-weight: 400;
    font-size: 13px;
    text-align: center;
    margin-bottom: 30px;
}

.text {
    font-family: PaytoneOne-Regular, sans-serif;
    color: #f2f2f2;
    font-size: 23px;
    padding: 5px 7px;
    position: absolute;
    bottom: 25%;
    width: 100%;
    text-align: center;
    margin: 0;
}


.chef-p {
    font-family: Mukta-Medium, sans-serif;
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 3px;
}

.abend-p {
    font-family: Mukta-Medium, sans-serif;
    font-weight: 500;
    font-size: 13px;
}

.position {
    display: grid;
    position: relative;
    width: 100%;
    margin-bottom: 30px;
}

.text-top {
    position: absolute;
    width: 100%;
    top: 0;
    padding-top: 7px;

}

.img-chef {
    margin: 0;
    height: auto;
}

.overlay {
    position: absolute;
    width: 100%;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    opacity: 0;
    transition: .5s ease;
    font-family: Mukta-Medium, sans-serif;
    font-size: 16px;
    text-align: center;
    padding: 11px 8px;
}

.overlay:hover {
    opacity: 1;
}

/*---------- Button----------- */
.flex {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    min-height: 100%;
    height: 100%;
}

.wave-btn {
    position: relative;
    width: 240px;
    height: 100px;
    display: flex;
    overflow: hidden;
    justify-content: center;
    align-items: center;
    border-radius: 0 0 100px 100px;
    margin-bottom: 70px;

    transition: 0.8s ease 0s;
    -webkit-transition: 0.8s ease 0s;
    -moz-transition: 0.8s ease 0s;
    -ms-transition: 0.8s ease 0s;
    -o-transition: 0.8s ease 0s;

    text-decoration: none;
}

.wave-btn:hover {
    border-radius: 10px;
    transition: all 0.8s ease 0.2s;
    -webkit-transition: all 0.8s ease 0.2s;
    -moz-transition: all 0.8s ease 0.2s;
    -ms-transition: all 0.8s ease 0.2s;
    -o-transition: all 0.8s ease 0.2s;

    -webkit-box-shadow: 0 0 20px rgba(204, 0, 51, 1);
    box-shadow: 0 0 20px rgba(204, 0, 51, 1);
}

.wave-btn:hover .wave-btn_waves {
    top: -50px;

}

.wave-btn_text {
    font-family: Alata-Regular, sans-serif;
    letter-spacing: 10.5%;
    color: #000;
    font-size: 16px;
    line-height: 30px;
    padding-top: 20px;
    position: relative;
    z-index: 1;
}

.wave-btn_waves {
    position: absolute;
    width: 250px;
    height: 250px;
    background-color: #CC0033;
    top: 0;
    left: 0;

    -webkit-box-shadow: inset 0 0 50px rgba(0, 0, 0, 0.5);
    box-shadow: inset 0 0 50px rgba(0, 0, 0, 0.5);

    transition: all 0.8s ease 0s;
    -webkit-transition: all 0.8s ease 0s;
    -moz-transition: all 0.8s ease 0s;
    -ms-transition: all 0.8s ease 0s;
    -o-transition: all 0.8s ease 0s;
}

.wave-btn_waves:after,
.wave-btn_waves:before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    width: 250%;
    height: 250%;

    transform: translate3d(-50%, -96%, 0) rotate(0deg) scale(1);
    -moz-transform: translate3d(-50%, -96%, 0) rotate(0deg) scale(1);
    -ms-transform: translate3d(-50%, -96%, 0) rotate(0deg) scale(1);
    -webkit-transform: translate3d(-50%, -96%, 0) rotate(0deg) scale(1);
    -o-transform: translate3d(-50%, -96%, 0) rotate(0deg) scale(1);
}

.wave-btn_waves:before {
    background-color: #000;
    border-radius: 48%;

    animation: waves 5s infinite linear;
    -webkit-animation: waves 5s infinite linear;
    -moz-animation: waves 5s infinite linear;
    -o-animation: waves 5s infinite linear;
}

.wave-btn_waves:after {
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 44%;

    animation: waves 10s infinite linear;
    -webkit-animation: waves 10s infinite linear;
    -moz-animation: waves 10s infinite linear;
    -o-animation: waves 10s infinite linear;
}

@keyframes waves {
    0% {
        transform: translate3d(-50%, -96%, 0) rotate(0deg) scale(1);
        -moz-transform: translate3d(-50%, -96%, 0) rotate(0deg) scale(1);
        -ms-transform: translate3d(-50%, -96%, 0) rotate(0deg) scale(1);
        -webkit-transform: translate3d(-50%, -96%, 0) rotate(0deg) scale(1);
        -o-transform: translate3d(-50%, -96%, 0) rotate(0deg) scale(1);

    }

    100% {
        transform: translate3d(-50%, -96%, 0) rotate(360deg) scale(1);
        -moz-transform: translate3d(-50%, -96%, 0) rotate(360deg) scale(1);
        -ms-transform: translate3d(-50%, -96%, 0) rotate(0deg) scale(1);
        -webkit-transform: translate3d(-50%, -96%, 0) rotate(360deg) scale(1);
        -o-transform: translate3d(-50%, -96%, 0) rotate(360deg) scale(1);
    }
}

@-webkit-keyframes {
    0% {
        transform: translate3d(-50%, -96%, 0) rotate(0deg) scale(1);
        -moz-transform: translate3d(-50%, -96%, 0) rotate(0deg) scale(1);
        -ms-transform: translate3d(-50%, -96%, 0) rotate(0deg) scale(1);
        -webkit-transform: translate3d(-50%, -96%, 0) rotate(0deg) scale(1);
        -o-transform: translate3d(-50%, -96%, 0) rotate(0deg) scale(1);

    }

    100% {
        transform: translate3d(-50%, -96%, 0) rotate(360deg) scale(1);
        -moz-transform: translate3d(-50%, -96%, 0) rotate(360deg) scale(1);
        -ms-transform: translate3d(-50%, -96%, 0) rotate(0deg) scale(1);
        -webkit-transform: translate3d(-50%, -96%, 0) rotate(360deg) scale(1);
        -o-transform: translate3d(-50%, -96%, 0) rotate(360deg) scale(1);
    }
}

@-moz-keyframes {
    0% {
        transform: translate3d(-50%, -96%, 0) rotate(0deg) scale(1);
        -moz-transform: translate3d(-50%, -96%, 0) rotate(0deg) scale(1);
        -ms-transform: translate3d(-50%, -96%, 0) rotate(0deg) scale(1);
        -webkit-transform: translate3d(-50%, -96%, 0) rotate(0deg) scale(1);
        -o-transform: translate3d(-50%, -96%, 0) rotate(0deg) scale(1);

    }

    100% {
        transform: translate3d(-50%, -96%, 0) rotate(360deg) scale(1);
        -moz-transform: translate3d(-50%, -96%, 0) rotate(360deg) scale(1);
        -ms-transform: translate3d(-50%, -96%, 0) rotate(0deg) scale(1);
        -webkit-transform: translate3d(-50%, -96%, 0) rotate(360deg) scale(1);
        -o-transform: translate3d(-50%, -96%, 0) rotate(360deg) scale(1);
    }
}

@-o-keyframes {
    0% {
        transform: translate3d(-50%, -96%, 0) rotate(0deg) scale(1);
        -moz-transform: translate3d(-50%, -96%, 0) rotate(0deg) scale(1);
        -ms-transform: translate3d(-50%, -96%, 0) rotate(0deg) scale(1);
        -webkit-transform: translate3d(-50%, -96%, 0) rotate(0deg) scale(1);
        -o-transform: translate3d(-50%, -96%, 0) rotate(0deg) scale(1);

    }

    100% {
        transform: translate3d(-50%, -96%, 0) rotate(360deg) scale(1);
        -moz-transform: translate3d(-50%, -96%, 0) rotate(360deg) scale(1);
        -ms-transform: translate3d(-50%, -96%, 0) rotate(0deg) scale(1);
        -webkit-transform: translate3d(-50%, -96%, 0) rotate(360deg) scale(1);
        -o-transform: translate3d(-50%, -96%, 0) rotate(360deg) scale(1);
    }
}

/*--------------------------------*/


.button {
    font-family: Alata-Regular, sans-serif;
    font-size: 12px;
    font-weight: 400;
    border: 2px solid #fff;
    display: block;
    text-align: center;
    padding: 5px 15px;
    width: 100px;
    height: 30px;
    margin: 0 auto;
    margin-bottom: 50px;
}

.button:hover {
    background-color: #CC0033;
}

.marg-top {
    margin-top: 30px;
}

.marg-bot {
    margin-bottom: 20px;
}

.grid {
    display: grid;
}

.border-text {
    padding: 9px 5px;
    color: #fff;
    border: 10px solid #CC0033;
    margin: 0;
}

.img-item {
    height: 150px;
    background-size: cover;
    background-position: center;
    text-align: center;
    align-content: center;
    padding: 5px;
    font-family: Amaranth-Bold, sans-serif;
    font-size: 12px;
    font-weight: bold;
    color: #fff;
    position: relative;
    transition: color .5s ease;
    cursor: pointer;
 }

 .img-item:hover {
    font-size: 15px;
    transition: all .5s ease;
 }

.img-item:hover::before {
    background-color: #4d4f50e0;
    opacity: .85;
}

.img-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: .65;
    transition: opacity .5s ease;
}

.img-item>* {
    z-index: 1;
}

footer {
    margin-top: 60px;
    border-top: 2px solid #fff;
}

.logo-f {
    width: 110px;
}

.grid-2 {
    display: grid;
    grid-template-columns: auto 1fr;
    grid-gap: 5px;
}

.grid-3 {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-gap: 35px;
}

.grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 5px;
}


.logo-f {
    margin-top: 14px;
    margin-bottom: 7px;
}

.icon {
    width: 17px;
    margin-top: 4px;   
}

.text-footer {
    font-size: 10px;
    text-align: left;
    margin-top: 5px;
    margin-left: 10px;
    margin-bottom: 19px;
}

.text-footer:hover {
    color: #CC0033;
}

.menu-footer  {
    display: block;
    list-style-type: none;
    text-align: center;
    margin-top: 8px;
}

.menu-footer ul a {
    font-family: Alata-Regular, sans-serif;
    font-size: 13px;
    font-weight: 400;   
}

.menu-footer li {
    padding: 16px 8px 5px 3px;
}

.menu-footer a:hover {
    color: #CC0033;
    opacity: 1;
}


.footer-link {
    font-size: 13px;
    text-align: center;
    margin-left: 15px;
    margin-bottom: 50px;
      
}

.footer-link a:hover {
    color: #CC0033;
    opacity: 1;
}

.current-f {
    color: #CC0033;
}

.folgen {
    text-align: center;
    margin-top: 25px; 
    margin-bottom: 20px; 
}

.img-social {
    width: 40px;
    margin: 0 auto;
    padding-left: 12px;
    margin-bottom: 25px;
}

.text-lin {
    font-size: 16px;
    padding: 10px;
}


.one {
    grid-column: span 2;
    grid-column: 1/3;
    grid-row: 2/3;
}

.two {
    grid-column: span 2;
    grid-column: 3/5;
    grid-row: 2/3;
}

.three {
    grid-column: span 4;
    grid-column: 2/4;
    grid-row: 1/2;
}

.col-12 {
    grid-column: 1/-1;
}

.col-6 {
    grid-column: span 2;
}

.col-4 {
    grid-column: span 2;
}

.c4 {
    grid-column: span 4;
    margin: 0 auto;
}

.c-4 {
    grid-column: span 2;
}

.column-4 {
    display: none;
}

.col-2 {
    grid-column: span 2;
}


#mobile-navi {
    display: inherit;
}

#mobile-lines {
    display: inherit;
}

#menu-main {
    display: none;
}







@media only screen and (min-width:730px) {

    .grid-container {
        grid-template-columns: repeat(8, 1fr);
        grid-gap: 10px;
        max-width: 710px;
        margin: 0 auto;
        padding: 0;
    }


    .logo {
        width: 130px;
        margin: 0;
        margin-top: 22px;
    }

    nav ul {
        display: grid;
        grid-template-columns: repeat(5, auto);
        list-style-type: none;
        justify-content: flex-end;
        align-content: center;
        padding: 0;
        margin: 0;
        grid-gap: 20px;
        margin-top: 35px;
    }

     nav ul a {
        font-family: Alata-Regular, sans-serif;
        font-size: 15px;
        color: #fff;
        font-weight: 400;
    }

    nav ul a::after {
        content: '';
        display: block;
        width: 0;
        height: 3px;
        background: white;
        transition: width .7s;
    }

    nav ul a:hover::after {
        width: 100%;
    }

    nav ul a:focus::after {
        width: 100%;
        height: 3px;
        background: white;
    }

    .current::after {
        content: '';
        display: block;
        width: 100%;
    }

    .slideshow-container {
        margin-bottom: 60px;
    }

    .text {
        font-size: 50px;
        padding: 8px 12px;
        position: absolute;
        bottom: 30%;
        width: 100%;
        text-align: center;
    }

    h1 {
        font-size: 43px;
    }

    h2 {
        font-size: 31px;
        margin-bottom: 5px;
    }

    h3 {
        font-size: 25px;
        margin-bottom: 15px;
    }

    h4 {
        font-size: 15px;
        letter-spacing: 1.8px;
        margin-bottom: 23px;
    }

    p {
        font-size: 15px;
        margin-bottom: 20px;
    }

    .chef-p {
        font-size: 16px;
        margin-bottom: 10px;
    }

    .abend-p {
        margin-bottom: 30px;
        font-size: 15px ;
    }

    .position {
        position: relative;
        width: 100%;
        margin-bottom: 40px;
    }

    .text-top {
        position: absolute;
        width: 100%;
        top: 0;
        padding-top: 7px;
    }

    .img-chef {
        width: 195px;
        height: auto;
        margin-top: 70px;
    }

    .overlay {
        font-size: 20px;
        padding: 15px 10px;
    }
 
    .button {
        font-size: 15px;
        padding: 8px 10px;
        width: 120px;
        height: 45px;
        margin: 0 auto;
        margin-bottom: 100px;
    }

    .marg-top {
        margin-top: 70px;
    }

    .marg-bot {
        margin-bottom: 20px;
    }

    .border-text {
        padding: 12px 5px;
        border: 12px solid #CC0033;
        margin: 0;
    }

    .img-item {
        height: 230px;
        padding: 7px;
        font-size: 15px;
     }

     .img-item:hover {
        font-size: 18px;
        transition: all .5s ease;
     }
  
    footer {
        margin-top: 100px;
    }

    .logo-f {
        width: 130px;
    }

    .grid-2 {
        display: grid;
        grid-template-columns: auto 1fr;
        grid-gap: 7px;
    }

    .grid-3 {
        display: grid;
        grid-template-columns: 1fr 1fr 1fr;
        grid-gap: 20px;
    }

    .grid-4 {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
    }


    .logo-f {
        margin-top: 15px;
        margin-bottom: 7px;
    }

    .icon {
        width: 20px;
        margin-top: 7px;   
    }

    .text-footer {
        font-size: 15px;
        text-align: left;
        margin-top: 5px;
        margin-left: 10px;
    }

    .text-footer:hover {
        color: #CC0033;
    }

    .menu-footer  {
        display: block;
        list-style-type: none;
        text-align: center;
        margin-top: 12px;
    }

    .menu-footer ul a {
        font-family: Alata-Regular, sans-serif;
        font-size: 16px;
        font-weight: 400;   
    }

    .menu-footer li {
        padding: 14px 8px 0 8px;
    }

    .menu-footer a:hover {
        color: #CC0033;
        opacity: 1;
    }


    .footer-link {
        font-size: 16px;
        text-align: center; 
    }

    .footer-link a:hover {
        color: #CC0033;
        opacity: 1;
    }

    .current-f {
        color: #CC0033;
    }

    .folgen {
        text-align: center;
        margin-top: 35px; 
        margin-bottom: 30px; 
    }

    .img-social {
        width: 40px;
        margin: 0 auto;
        margin-bottom: 65px;  
    }

    .one {
        grid-column: span 3;
        grid-column: 1/4;
        grid-row: 1/2;
    }
    
    .two {
        grid-column: span 2;
        grid-column: 6/9;
        grid-row: 1/2;
    }
    
    .three {
        grid-column: span 3;
        grid-column: 4/6;
        grid-row: 1/2;
    }

    .col-10 {
        grid-column: span 6;
    }

    .col-6 {
        grid-column: span 4;
    }

    .col-5 {
        grid-column: span 5;
    }

    .col-4 {
        grid-column: span 3;
    }

    .c-4 {
        grid-column: span 2;
    }

    .c4 {
        grid-column: span 3;
        margin-left: 40px;
    }

    .column-4 {
        display: inherit;
        grid-column: span 4;
    }

    .col-3 {
        grid-column: span 3;
    }

    .col-2 {
        grid-column: span 2;
    }


    .parallax-image1 {
        height: 55vh;
        background-attachment: fixed;
        background-repeat: no-repeat;
        background-size: cover;
        background-position: center center;
    }

    .parallax-image1:nth-child(1) {
        background-image: url(../img/Parallax_1_tab.jpg);
    }

    .parallax-image2 {
        height: 55vh;
        background-attachment: fixed;
        background-repeat: no-repeat;
        background-size: cover;
        background-position: center center;
    }

    .parallax-image2:nth-child(1) {
        background-image: url(../img/Parallax_2_tab.jpg);
    }

    #mobile-navi {
        display: none;
    }

    #mobile-lines {
        display: none;
    }

    #menu-main {
        display: inherit;
    }

}




@media only screen and (min-width:1200px) {

    .grid-container {
        display: grid;
        grid-template-columns: repeat(12, 1fr);
        grid-gap: 20px;
        max-width: 1180px;
        margin: 0 auto;
        padding: 0;
    }

    .logo {
        margin-top: 20px;
        width: 230px;
    }

    nav ul {
        display: grid;
        grid-template-columns: repeat(5, auto);
        list-style-type: none;
        justify-content: flex-end;
        align-content: center;
        padding: 0;
        margin: 0;
        grid-gap: 50px;
        margin-top: 40px;
    }

     nav ul a {
        font-family: Alata-Regular, sans-serif;
        font-size: 24px;
        color: #fff;
        font-weight: 400;
    }

    nav ul a::after {
        content: '';
        display: block;
        width: 0;
        height: 3px;
        background: white;
        transition: width .7s;
    }

    nav ul a:hover::after {
        width: 100%;
    }

    nav ul a:focus::after {
        width: 100%;
        height: 3px;
        background: white;
    }

    .current::after {
        content: '';
        display: block;
        width: 100%;
    }

    #mobile-navi {
        display: none;
    }

    #mobile-lines {
        display: none;
    }

    #menu-main {
        display: inherit;
    }

    .slideshow-container {
        position: relative;
        max-width: 100%;
        margin: auto;
        margin-bottom: 70px;
    }

    .text {
        font-size: 60px;
        padding: 8px 12px;
        position: absolute;
        bottom: 35%;
        width: 100%;
    }

    h1 {
        font-size: 60px;
    }

    h2 {
        font-size: 45px;
        margin-bottom: 5px;
    }

    h3 {
        font-size: 36px;
        margin-bottom: 8px;
    }

    h4 {
        font-size: 18px;
        letter-spacing: 2.3px;
        margin-bottom: 30px;
    }

    p {
        font-size: 20px;
        margin-bottom: 20px;
    }

    .chef-p {
        font-size: 22px;
        margin-bottom: 6px;
    }

    .abend-p {
        font-size: 20px;
    }

    .position {
        position: relative;
        width: 100%;
        margin-bottom: 50px;
    }

    .img-chef {
        width: 100%;
        margin: 0;
    }

    .text-top {
        position: absolute;
        width: 100%;
        top: 0;
        padding-top: 10px;
    }

    .overlay {
        position: absolute;
        width: 100%;
        bottom: 0;
        background: rgba(0, 0, 0, 0.7);
        opacity: 0;
        transition: .5s ease;
        font-family: Mukta-Medium, sans-serif;
        font-size: 27px;
        text-align: center;
        padding: 30px 15px;
    }

    .overlay:hover {
        opacity: 1;
    }

    /*---------- Button----------- */
    .wave-btn {
        width: 300px;
        height: 130px;
        margin-bottom: 70px;
    }

    .wave-btn:hover {
        -webkit-box-shadow: 0 0 40px rgba(204, 0, 51, 1);
        box-shadow: 0 0 40px rgba(204, 0, 51, 1);
    }

    .wave-btn_text {
        font-family: Alata-Regular, sans-serif;
        letter-spacing: 10.5%;
        color: #000;
        font-size: 20px;
        line-height: 30px;
        padding-top: 20px;
        position: relative;
        z-index: 1;
    }

    .wave-btn_waves {
        position: absolute;
        width: 300px;
        height: 300px;
        background-color: #CC0033;
    }

    .wave-btn_waves:after,
    .wave-btn_waves:before {
        content: '';
        position: absolute;
        top: 0;
        left: 50%;
        width: 250%;
        height: 250%;
    }

    /*--------------------------------*/

    .button {
        font-size: 15px;
        padding: 8px 10px;
        width: 140px;
        height: 45px;
        margin: 0 auto;
        margin-bottom: 100px;
    }

    .marg-top {
        margin-top: 100px;
    }

    .marg-bot {
        margin-bottom: 35px;
    }

    .border-text {
        padding: 15px 5px;
        margin: 0;
    }

    .img-item {
        height: 350px;
        padding: 10px;
        font-size: 25px;
        position: relative;
     }

     .img-item:hover {
        font-size: 30px;
        transition: all .5s ease;
     }

    .img-item:hover::before {
        background-color: #4d4f50e0;
        opacity: .85;
    }

    .img-item::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        opacity: .65;
        transition: opacity .5s ease;
    }

    .img-item>* {
        z-index: 1;
    }

    
    footer {
        margin-top: 140px;
        border-top: 2px solid #fff;
    }

    .logo-f {
        width: 180px;
    }

    .grid-2 {
        display: grid;
        grid-template-columns: auto 1fr;
        grid-gap: 10px;
    }

    .grid-3 {
        display: grid;
        grid-template-columns: 1fr 1fr 1fr;
        grid-gap: 20px;
    }

    .grid-4 {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        grid-gap: 10px;
    }


    .logo-f {
        margin-top: 20px;
        margin-bottom: 10px;
    }

    .icon {
        width: 30px;
        margin-top: 10px;   
    }

    .text-footer {
        font-size: 20px;
        text-align: left;
        margin-top: 11px;
        margin-left: 15px;
    }

    .text-footer:hover {
        color: #CC0033;
    }

    .menu-footer  {
        display: block;
        list-style-type: none;
        text-align: center;
        margin-top: 13px;
    }

    .menu-footer ul a {
        font-family: Alata-Regular, sans-serif;
        font-size: 25px;
        font-weight: 400;   
    }

    .menu-footer li {
        padding: 15px 5px 0 5px;
    }

    .menu-footer a:hover {
        color: #CC0033;
        opacity: 1;
    }

    .footer-link {
        font-size: 20px;
        text-align: center;
        margin-left: 15px;
        margin-top: 5px;   
    }

    .folgen {
        text-align: center;
        margin-top: 43px;
        margin-bottom: 25px;  
    }

    .img-social {
        width: 50px;
        margin: 0 auto;
        margin-bottom: 105px;
    }

    .one {
        grid-column: span 4;
        grid-column: 1/5;
        grid-row: 1/2;
    }
    
    .two {
        grid-column: span 4;
        grid-column:9/13;
        grid-row: 1/2;
    }
    
    .three {
        grid-column: span 4;
        grid-column: 5/9;
        grid-row: 1/2;
    }


    .col-10 {
        grid-column: span 10;
    }

    .col-6 {
        grid-column: span 6;
    }

    .col-5 {
        grid-column: span 5;
    }

    .col-4 {
        grid-column: span 4;
    }

    .c-4 {
        grid-column: span 4;
    }

    .column-4 {
        grid-column: span 4;
    }

    .col-3 {
        grid-column: span 3;
    }

    .col-2 {
        grid-column: span 2;
    }


    .parallax-image1 {
        height: 70vh;
        background-attachment: fixed;
        background-repeat: no-repeat;
        background-size: cover;
        background-position: center center;
    }

    .parallax-image1:nth-child(1) {
        background-image: url(../img/slide_1.jpg);
    }


    .parallax-image2 {
        height: 70vh;
        background-attachment: fixed;
        background-repeat: no-repeat;
        background-size: cover;
        background-position: center center;
    }

    .parallax-image2:nth-child(1) {
        background-image: url(../img/slide_7.jpg);
    }



}


