

:root{
    --font-col: #2c2c2c;
    --primary-col: #08FE93;
    --primary-darker-col: #04bd6d;
    --secondary-col: #27B0FF;
}

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;   
}

h1, h2, h3, h4, h5, h6{
    font-weight: normal;
    font-size: inherit;
}

body{    
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    overflow-x: hidden;
}

header{
    position: relative;
    background: #ffffff;
}

header a{
    text-decoration: none;
    color: #ffffff;
}

.header{
    height: 30px;  
    color: #ffffff;
    background: var(--secondary-col);
    padding-left: 100px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
}

.scheme-container{
    position: absolute;
    top: 5px;
    right: 6px;
    z-index: 2;
    color: #ffffff;
}

.wave1{
    margin-bottom: -4px;
}

.wave2{
    margin-top: -4px;
}

.header div,
.header a{
    padding: 0 20px;
}

nav{    
    width: 100%;
    height: 60px;
    background: #ffffff;
    display: flex;
    flex-direction: row;
    align-items: center;
}

.nav-container{
    width: 100%;        
    padding: 0 40px;
    padding-left: 90px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-around;
}

.nav-container a{
    text-decoration: none;
    color: #4C5979;
    font-size: 1.15em;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: 0.5s all ease-in;
    padding: 10px;
    border-radius: 8px;
}

.nav-container a:hover,
.nav-container .active{
    color: #ffffff;
    background-color: #5d6d94;
    transition: 0.25s all ease-in;
}

#brand-position{
    top: 0px;
    left: 0px;
    position: absolute;
    background: #293035;
    text-decoration: none;
}

.brand{
    padding: 5px;
    text-align: center;
}

#logo{     
    height: 50px;
    margin: 4px 0;
}

.brand-title{
    color: #ffffff;
    font-weight: bold;
    font-family: Arial, Helvetica, sans-serif;
}




.page-up{
    position: fixed;
    bottom: 20px;
    right: 20px;
}

.page-up a{
    text-decoration: none;
    color: #ffffff;
}

.page-up div{
    border-radius: 20px;
    background: var(--secondary-col);
    color: #ffffff;
    padding: 20px;
}



#start{
    width: 100%;
    height: calc(70vh - 90px + 128px);
    position: relative;
    overflow: hidden;

    color: #ffffff;
    font-size: 2em;   

    display: flex;
    flex-direction: column;
    margin-top: auto;
}

#start-bg{
    z-index: -1;

    width: 100%;
    height: calc(70vh - 90px + 128px);    

    position: absolute;

    background: url('/assets/img/haus.jpeg');
    background-attachment: fixed;
    background-position: 50% 0%;
    background-repeat: no-repeat;
    background-size: cover;    
}

.start-content{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    height: 100%;
    width: 100%;    
    background-color: rgba(0, 0, 0, 0.5);
}

.start-content-text{
    text-align: center;
    max-width: 690px;
}

.start-content-text-sub{
    margin-top: 20px;
    font-size: 0.7em;
    color: #ecebeb;
    letter-spacing: 4px;
    text-transform: uppercase;
}


#wir{
    width: 100%;
    background-color: #ffffff;
}

.wir-content{
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.wir-content-card{
    display: flex;
    flex-direction: row;
    align-items: center;
    margin-top: -61.5px;

    z-index: 10;
    background: linear-gradient(135deg, var(--secondary-col) 70%, var(--primary-col) 60%);
}

.wir-content-card-item{
    width: 260px;
    padding: 20px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
}

.wir-content-card-item-icon{
   color: #ffffff;
   padding: 20px;
   font-size: 2em;
}

.wir-content-card-item-text{
    color: #ffffff;
}

.wir-content-card-item-text div:first-child{
    color: #ffffff;
    font-size: 1.2em;
}

.wir-content-card-item-text div:last-child{
    color: #ffffff;
    font-size: 1em;
}

.wir-content-2{
    margin: 84px 0;    
}

.wir-content-2-container{
    display: flex;
    flex-direction: row;
}


.wir-content-2-left{
    width: 50%;
    padding: 40px;   
    color: #504d4d;    
    background-color: #f5f5f5;
}


.wir-content-2-right{    
    width: 50%;
    height: auto;

    background: url('/assets/img/haus.jpeg');
    background-attachment: scroll;
    background-position: 0;
    background-repeat: no-repeat;
    background-size: cover;   

   
    
    object-fit: cover;
}






p{
    font-size: 1.1em;
    line-height: 30px;
}

.title{
    font-size: 2em;    
}

.text-primary{
    color: var(--primary-col);
}

.text-secondary{
    color: var(--secondary-col);
}

#services{
    background: url('/assets/img/terasse.jpg');
    background-attachment: fixed;
    background-position: 0% 50%;
    background-repeat: no-repeat;
    background-size: cover;
}

.services-content{    
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
}

.services-head{
    margin-top: 20px;
    color: #ffffff;
    padding: 40px 0;
}


#kontakt{

    background: #293035;

    display: flex;
    align-items: center;
}

.kontakt-content-2-left{    
    width: 50%;
    padding: 50px;
    height: auto;
}

.kontakt-content-2-right{
    width: 50%;
    color: #504d4d;    
    background-color: #f5f5f5;
}

.zeiten{
    padding: 40px;   
    padding-top: 20px;
    background-color: #ffffff;
    font-size: 1.2em;
}

.zeit-container{
    display: flex;
    flex-direction: row;
    padding: 2px 0;
}

.zeit-container div{
    width: 50%;
}

.kontaktdaten{    
    padding: 40px;   
    padding-top: 20px;
    background-color: var(--primary-col);
    font-size: 1.2em;
}

.kontaktdaten-ort{
    padding: 20px 40px;      
    padding-left: 82px;
    font-size: 1.5em;
    position: relative;
}

.kontaktdaten-ort-img{
    position: absolute;
    top: 10px;
    left: 30px;
    height: 50px; 
}

.kontaktdaten-ort-img img{
    height: 50px;
}

.kontaktdaten a{
    text-decoration: none;    
    color: #504d4d;    
}

.kontaktdaten-umkreis{
    padding: 4px 40px;
    background: var(--primary-darker-col);
    color: #ffffff;
}

.kontaktinfo-container{
    display: flex;
    flex-direction: row;    
    padding: 2px 0;
}

.kontaktinfo-container div{
    width: 50%;
}

.kontaktinfo-text{
    padding-top: 40px;

    display: flex;
    flex-direction: row;
}

.kontaktinfo-text > div:first-child{
    padding-right: 10px;
    font-size: 2em;
}

.kontakt-sub{    
    background: #4C5979;
    color: #ffffff;
    padding: 20px;   
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}


.media-item{    
    transition: 0.5s all;
    text-decoration: none;
    text-align: center;
    font-size: 1.2em;
}

.media-item div:first-child{
    padding: 0 1em;
    padding-bottom: 20px;
    font-size: 5em;
    color: var(--primary-col);
}

.media-item div:last-child{
    padding: 0;
    padding-bottom: 0.5em;
    font-size: 1em;
    color: #cacaca;
}

.media-item:hover{
    transition: 0.5s all;
    transform: rotate(10deg);
}

.green-text{
    color: #234d38 ;
}

#impressum{

    background: url('/assets/img/wesel.jpeg');
    background-attachment: fixed;
    background-position: 50% 0%;
    background-repeat: no-repeat;
    background-size: cover;     
}

.impressum-content{
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    align-items: flex-end;
    
    margin-right: 80px;
    min-height: calc(100vh - 40px);   
}

.impressum-container{  
    width: 400px;  
    padding-top: 10px;
    margin-bottom: 80px;

    opacity: 0.9;
}

.impressum-top-items{
    background: #293035;
    color: #ffffff;
    padding: 20px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: flex-start;   
    flex-wrap: wrap;
}

.impressum-items{
    background: #162024;
    color: #ffffff;
}

.impressum-sub-items{
    background: #293035;
    color: #ffffff;
     
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: flex-start;   
    flex-wrap: wrap;
}

.impressum-sub-items a{
    text-decoration: none;
    color: #ffffff;
    font-size: 1em;
    padding: 20px;
}

.impressum-group-container{

    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: flex-start;   
    flex-wrap: wrap;

    padding: 20px;
}

.impressum-group{
    width: 200px;
    text-align: center;
    color: #beb4b4;    
    padding-bottom: 20px;
}

.impressum-group a{
    text-decoration: none;    
    color: #beb4b4;
}

.impressum-group>div:first-child{
    color: var(--secondary-col);
    font-size: 1.2em;
}

.impressum-group>div:last-child{
    font-size: 1em;
    display: flex;
    flex-direction: column;
}



footer a{
    color: #bbabab;
    text-decoration: none;
}

footer div:first-child{
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding: 40px;
    background: #293035;
    color: #ffffff;
}

footer div:nth-child(2){
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding: 4px;
    padding-left: 40px;
    background: #22282c;
    color: #ffffff;
    font-size: 14px;
}

footer div:last-child{
    text-align: right;
    padding: 20px 40px;
    background: #171d20;
    color: #ffffff;
    font-size: 14px;
}




.card-wrap-container{
    display: inline-flex;
    flex-direction: row;
    justify-content: center;
    margin-bottom: 40px;  
    padding-bottom: 100px;
    flex-wrap: wrap;
}

.card{     
    background-color: #ffffff;
    border-radius: 0.4rem;
    overflow: hidden;
    transition: .2s;
    width: 360px;
    margin: 1.8em 3em;
    box-shadow: 0 3rem 6rem rgba(0,0,0,.1);   

    .card-container{
        padding: 0.2em 1.5em;

        .card-title{
            padding: 0.8em 0;
            font-size: 1.5em;
            text-align: center;
        }
    
        .card-body{ 
            font-size: 1.2em;
            padding-bottom: 0.8em;
            text-align: center;
        }
    }
}

.card .card-title{    
    transition: 0.3s all ease-out;
}



.card .card-body{   
    transition: 0.3s all ease-out;
}

.card-overflow-text{
    display: none;
}

.card img {
    display: block;
    width: 100%;
    height: 18rem;
    object-fit: cover;
}

.card-body-items{
    text-align: left;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    flex-wrap: wrap;
    gap: 4px;
    margin-bottom: 16px;
}

.card-body-items div{
    color: #ffffff;
    background: var(--secondary-col);
    padding: 4px;
    font-size: 12px;
    font-weight: 100;
}

.container{
    width: 1040px;
}

li{
    margin-left: 40px;
}

.modal-caller{
    color: #27B0FF;
    font-weight: bold;
    cursor: pointer;
}


.modal-bg{
    position: fixed;
    top: 0;
    left: 0;
    background-color: rgba(0,0,0,0.75);
    z-index: 100;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;    
}

.modal{
    width: 500px;
    max-width: 70vw;    
}

.modal > div:first-child{
    color: #504d4d;
    background-color: #f5f5f5;
    padding: 20px 40px;
    font-size: 1.4em;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.modal-content{
    color: #504d4d;
    background-color: #ffffff;   
    height: calc(80vh - 70px);
    overflow-y: scroll;
}

.modal-content > .card{
    width: 100%;
    background-color: #ffffff;
    box-shadow: none;
    margin: 0;
    border-radius: 0;
}

.modal-footer{
    text-align: center;
    padding: 0.2em 30px;
    padding-bottom: 1em;
    font-size: 1.4em;
    font-size: 1.2em;
}

.cookie-bg{
    position: fixed;
    display: none;
    top: 128px;
    left: 64px;
    z-index: 100;
}

.cookie-container{    
    box-shadow: 0 3rem 6rem rgba(0, 0, 0, 0.685); 
    background: #ffffff;
    width: 450px;
    display: flex;
    flex-direction: column;
}

.cookie-letter{
    font-size: 5em;
}

.cookie-container > div:first-child{
    padding: 0 20px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}

.cookie-container > div:last-child{
    padding: 0 20px;
    padding-bottom: 20px;
}

button{
    font-size: 1rem;
    background: var(--secondary-col);
    padding: 14px 32px;
    border: none;
    border-radius: 4px;
    color: #fff;
    cursor: pointer;
    position: relative;
    transition: all 0.35s;
    outline: none;
    transition: 0.3s all ease-in;
}

button:hover{
    transition: 0.3s all ease-in;
    background: #2c2c2c;
}

#scheme-switch{
    cursor: pointer;
}
#pp-body main{
    margin-top: 80px;
}

#pp-body main a{
    text-decoration: underline;
    color: #ffee00;
}

#pp-body main h1, 
#pp-body main h2{
    color: var(--secondary-col);
}

#pp-body main h3{
    margin-top: 20px;
    color: var(--primary-col);
}

#pp-body main h4{
    color: var(--primary-col);
    margin-top: 20px;
    margin-bottom: 5px;
}

#pp-body{
    background-color: #162024;
}

.pp-container{
    color: #a2a4aa;
    margin: auto;
    padding: 10px;
    background-color: #293035;
}

.pp-subcontainer{
    padding: 20px 0;
}

.pp-content{
    margin-top: 20px;
    margin-bottom: 20px;
    margin-left: 20px;
}


::-webkit-scrollbar {
    width: 10px;
  }
  
  ::-webkit-scrollbar-track {
    background: #f1f1f1; 
  }

  ::-webkit-scrollbar-thumb {
    background: #888; 
  }

  ::-webkit-scrollbar-thumb:hover {
    background: #555; 
  }

