html, body {

    overflow-x: hidden;
}

body {
    margin: 0;
    padding: 0;

}
 /* if backdrop support: very transparent and blurred */ /*
 @supports ((-webkit-backdrop-filter: blur(2em)) or (backdrop-filter: blur(2em))) {
    .header {
        -webkit-backdrop-filter: blur(2em);
        backdrop-filter: blur(2em);
    }
  } */


header {
    transition-duration: 1s;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 141px;
    z-index: 10;
    position: fixed;
    box-sizing: border-box;
    /*background-color: rgba(0, 0, 0, 0.479); */
    backdrop-filter: blur(2em);
}

@media(min-width: 1921px){
    header {
        height: 5.6vw;
    }
}


 
  nav {
    width: 100%;
    height: 100%;
}

nav ul{
    float: right;
    height: 100%;
}

@media (min-width: 1921px){
    nav ul{
        float: right;
        width: 55%;
        height: 50%;
        margin-top: 0px;
        margin-bottom: 0px;
        font-size: 1.1vw;
    }
}
 

.header_div{   
    width: 100%;
    height: 100%;
}

nav ul li {
    list-style-type: none;
    display: inline-block;
    color: white;
    margin-right: 56px;
    margin-top: 50px;
}

@media (min-width: 1921px){
    nav ul li {
        margin-right: 50px;
        margin-top: 2.5vw;
    }
}


nav ul li a{
    text-decoration: none;
    color:white;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

nav ul li :after {
    content: '';
    display: block;
    border-bottom: 1px solid white;
    width: 0;
    position: relative;
    right: 0;
    -webkit-transition: 0.5s ease;
    transition: 0.5s ease;
}



nav ul li :hover:after {
    width: 100%;
}


label{
    position: absolute;
    float: right;
    top: 30%;
    right: 4%;
    font-size: 50px;
    line-height: 70px;
    color: white;
    display:none;
}

#toggle{
    display:none;
}

@media only screen and (max-width:1100px){

    header{
        backdrop-filter: none;
    }

    label{
        display:block;
        cursor: pointer;
    }

    nav ul{
        background-color: #383838;
        float: none;
        padding-bottom: 20px;
    }

    nav ul li {
        text-align: center;
        list-style-type: none;
        display: block;
        color: white;
        font-size: 2.5em;
        margin-top: 50px;
        
    }


    nav{
        margin-top: 141px;
        display:none;
    }

    #toggle:checked + nav{
        display: block;
    }

 
}


.main_heading{
    position: relative;
    top: 36%;
    left: 15%;
    right: 15%;
    width: 70%;
    text-align: center;
    font-size: 6.5em;
    font-family: "Alike";
    color: white;
    z-index: 1;
    font-weight: 900;
}


.main_picture_div {
    position: relative;
    background-image: url("ales-krivec-QnNqGoCnBg0-unsplash_bea.png");
    background-repeat: no-repeat;
    background-size: cover;
    left: 0px;
    top: 0px;
    right: 0px;
    width: 100%;
    height: 1078px;
}

@media only screen and (min-width: 1921px){
    .main_picture_div {
        position: relative;
        background-image: url("ales-krivec-QnNqGoCnBg0-unsplash_bea@2x.png");
        background-repeat: no-repeat;
        left: 0px;
        top: 0px;
        right: 0px;
        width: 100%;
        height: 1078px;
    }
}

@media (min-width: 1921px){
    .main_picture_div {
        height: 50vw;
    }
}

.top_logo_image{
    top: 1%;
    left: 9%;
    width: 135px;
    position: fixed;
    z-index: 11;
}

.main_button_div{
    position: relative;
    top: 30%;
    left: 25%;
    width: 100%;
    height: 50px;

}

@media (max-width: 1460px) { 
    .main_picture_div{
        height: 778px;
    }
    .main_heading{
        position: relative;
        top: 33%;
        left: 15%;
        right: 15%;
        width: 70%;
        text-align: center;
        font-size: 4.5em;
        font-family: "Alike";
        color: white;
        z-index: 1;
        font-weight: 900;
    }

    .main_button_div{
        position: relative;
        top: 40%;
        left: 20%;
        width: 100%;
        height: 50px;
        margin-right: 100px;
    }

 }

 @media (max-width: 1081px) and (min-resolution: 192dpi) {
    .main_heading{
        width: 90%;
        left: 5%;
        right: 5%;
    }
 }



.main_st {
    width: 100%;
    list-style-type: none;
}

.button_container_div{
    text-align: center;
}

.button_li{
    display: inline-block;
    margin-top: 7%;
    font-weight: bolder;
    width: 214px;
    height: 47px;
    margin-right: 200px;

}

@media (max-width: 1081px) and (min-resolution: 192dpi) {
    .button_li{
        width: 100%;
    }
}


#button_learn_more{
    display: inline-block;
    color: #C69A39;
    border-style: solid;
    padding: 9px;
    padding-right: 35px;
    padding-left: 35px;
    width: 280px;
    height: 29px;
    font-size:20px;
    background-color: rgba(0, 0, 0, 0.514);
    border: 2px #C69A39 solid;
    text-decoration: none;
    margin-top:30px;
}

#button_learn_more :after {
    content: '';
    display: block;
    border-bottom: 1px solid white;
    width: 0;
    position: relative;
    right: 0;
    -webkit-transition: 0.5s ease;
    transition: 0.5s ease;
  }

  #button_learn_more:hover:after {
    width: 100%;
}

@media (max-width: 1081px) and (min-resolution: 192dpi) {
    #button_learn_more{
        width: 60%;
        height: 60px;
        font-size: 4.5vw;
    }
}

#button_order_tour {
    margin-top:30px;
    display: inline-block;
    color: white;
    border-style: solid;
    padding: 9px;
    width: 280px;
    height: 29px;
    padding-right: 35px;
    padding-left: 35px;
    font-size:20px;
    background-color: #C69A39;
    border: 2px #C69A39 solid;
    text-decoration: none;
}

#button_order_tour:after {
    content: '';
    display: block;
    border-bottom: 1px solid white;
    width: 0;
    position: relative;
    right: 0;
    -webkit-transition: 0.5s ease;
    transition: 0.5s ease;
  }

  #button_order_tour:hover:after {
    width: 100%;
}

@media (max-width: 1081px) and (min-resolution: 192dpi) {
    #button_order_tour{
        width: 60%;
        height: 60px;
        font-size: 4.5vw;
    }
}


.spacer {
    height: 220%;
    width: 100%;
    position: relative;
}

@media (max-width: 1081px) and (min-resolution: 192dpi) {
    .spacer {
        height: 10px;
        width: 100%;
        position: relative;
        background-color: brown;
    }
}


/*    Main-Content    */

#main_content{
    margin-top: 7%;
    display: inline-block;
    margin-bottom: 0%;
}

#main_content_2{
    margin-top: 7%;
    display: inline-block;
    margin-bottom: 5%;
    width: 88%;
    text-align: right;
}

@media (max-width: 1750px){
    #main_content_2{
        width: 100%;
    }
}



#main_content2{
    width: 88%;
}
@media (max-width: 1750px){
    #main_content2{
        width: 100%;
    }
}

#left_content_div{
    float: left;
    margin-left: 14%;
    width: 42%;
    margin-right:2%;
}

@media (max-width: 1750px){
    #left_content_div{
        margin-left: 5%;
        width: 45%;
        margin-right:5%;
    }
}

@media (max-width: 1081px){
    #left_content_div{
        float: center;
        margin-left: 5%;
        width: 90%;
        margin-right:5%;
    }
}


.heading {
    font-size: 51px;
    color: #C69A39;
    font-weight: normal;
    font: Regular 51px/40px 'Alike';
    margin-left: 14%;
}

@media (max-width: 1740px){
    .heading{
        margin-left: 5%;
    }
}

@media (min-width: 1921px){
   .heading{
       font-size: 2.4vw;
   } 
}


@media (max-width: 1081px) and (min-resolution: 192dpi) {
    #left_content_div{
        font-size: 2.0em;
    }

    .normal_text{
        font-size: 4.3vw !important;
        line-height: 1.2 !important;
    }

   /* .heading{
        margin-left: 0% !important;
    } */


} 

.bold_text{
    text-transform:uppercase;
    font-weight: bold;
    font-size: 1.8em;
    font-family: 'Raleway';
    letter-spacing: 0px;
    color: #383838;
}

@media (min-width: 1921px){
    .bold_text{
        font-size: 1.6vw;
    }
}


.bold_text_right{
    position:relative;
    text-align: right;
    text-transform:uppercase;
    font-weight: bold;
    font-size: 1.8em;
    font-family: 'Raleway';
    letter-spacing: 0px;
    color: #383838;
}

@media (max-width: 1081px) and (min-resolution: 192dpi) {
    .bold_text_right{
        margin-top: 20px;
        margin-right: 5%;
    }
}

@media (min-width: 1921px){
    .bold_text_right{
        font-size: 1.8vw;
    }
}

@media (max-width: 1750px){
    .bold_text_right{
        margin-right: 5%;   
    }
}

.normal_text{
    font-family: 'Raleway';
    text-align: left;
    letter-spacing: 0;
    color: #383838;
    opacity: 1;
    font-size: 1.5vw;
    line-height: 1.5;
    text-align: justify;
}

@media (min-width: 1921px){
    .normal_text{
        font-size: 1.2vw;
    }
}




.normal_text_right{
    position: relative;
    margin-top: 50px;
    font-family: 'Raleway';
    text-align: right;
    letter-spacing: 0;
    color: #383838;
    opacity: 1;
    font-size: 1.5vw;
    line-height: 1.5;
    text-align: justify;
    margin-left:60%;
    width: 40%;
}

@media(min-width: 1921px){
    .normal_text_right{
        font-size: 1.2vw;
    }
}

@media (max-width: 1750px){
    .normal_text_right{
        width: 45%;
        margin-left: 50%;
    }
}

@media (max-width: 1081px) and (min-resolution: 192dpi) {
    .normal_text_right{
        margin-left: 5%;
        width: 90%;
        margin-right:5%;
        font-size: 4.3vw;
    }
}

.group_picture_left{
    z-index: 1;
    position: absolute;
    left:-270px;
    bottom:-20%;
}


.group_picture_right{
    z-index: 1;
    position: absolute;
    right:-250px;
    top:45%;
    width: 35%;
}

#read_more_a{
    font-weight: bold;
    text-decoration: underline;
    font-family: 'Raleway';
    text-align: left;
    letter-spacing: 0;
    color: #383838;
    opacity: 1;
    font-size: 25px;
}

.main_content_picture_1{
    margin-left: 2%;
    right: 0%;
    width: 40%;
}

@media (max-width: 1750px){
    .main_content_picture_1{
        width: 40%;
        margin-left: 0%;
        margin-top: 2%;
        margin-right: 5%;
    }
}

@media (max-width: 1081px){
    .main_content_picture_1{
        position: relative;
        width: 90%;
        margin-left: 5%;
        margin-top: 10%;
        margin-right: 5%;
    }
}

@media (max-width: 1081px) and (min-resolution: 192dpi) {
    .main_content_picture_1{
        margin-top: 0%;
    }
}

.left_content_picture_div{
    float: left;
    position: relative;
    margin-left: 5%;
    margin-top: 100px;
    width: 35%;
}

.main_content_picture_left{
    float: left;
    margin-right: 5%;
    margin-top:20px;
    width: 40%;
}


@media (max-width: 1081px) and (min-resolution: 192dpi) {

    .left_content_picture_div{
        width: 100%;
        margin-left:0%;
        margin-top: 20px;
        margin-right: 0px;
        margin-bottom: 50px;
    }

    .main_content_picture_left{
        margin-right: 5% !important;
        margin-left:5% !important;
        width: 40% !important;
    }
}


@media (min-width: 1740px){
    .left_content_picture_div{
        margin-left: 14%;
    }
}

.button_li2{
    display: inline-block;
    margin-top: 1%;
    margin-left: 10%;
    font-weight: bolder;
}

@media (max-width: 1081px) and (min-resolution: 192dpi) {

    .button_li2{
        margin-top: 1%;
        margin-left: 5% !important;
        margin-right: 5% !important;
        height: 80px !important;
        width: 90% !important;
        font-size: 30px;
    }
}

@media (max-width: 1750px){
    .button_li2{
        margin-right: 5%;
    }
}

#button_order_tour2 {
    margin-top:30px;
    display: inline-block;
    color: white;
    border-style: solid;
    text-align: center;
    padding: 9px;
    width: 280px;
    height: 29px;
    padding-right: 35px;
    padding-left: 35px;
    font-size:1.6em;
    background-color: #C69A39;
    border: 2px #C69A39 solid;
    text-decoration: none;
}

#button_order_tour2:after {
    content: '';
    display: block;
    border-bottom: 1px solid white;
    width: 0;
    position: relative;
    right: 0;
    -webkit-transition: 0.5s ease;
    transition: 0.5s ease;
  }

  #button_order_tour2:hover:after {
    width: 100%;
}

@media (max-width: 1081px) and (min-resolution: 192dpi) {
    #button_order_tour2{
        width: 92.5% !important; 
        height: 60px; 
        margin-left: 0px;
        margin-right: 0px;
    }

}
/*    FOOTER */



.contact_div{
    position: relative;
    background-image: url("patrick-fore-0gkw_9fy0eQ-unsplash_bea.png");
    width: 100%;
    height: 710px;
}

.contakt_header{
    position: absolute;
    right:  20%;
    top: 21%;
    color: white;
    left: 60%;
    font-size: 2.5vw;
}

.adress_info {
    position: absolute;
    left: 60%;
    color:white;
    top: 50%;
    line-height: 1.8em;
}

.sendUs_div{
    position: absolute;
    top:72%;
    left: 60%;
    right: 18%;
    border: solid 1px white;
    height: 55px;
}

.sendUs_backtext{
    position: absolute;
    left: 5%;
    top:33%;
    color: white;
}

.sendUs_button{
    position: absolute;
    right: 0%;
    color: black;
    height: 100%;
    text-align: center;
    width: 30%;
    background-color: white;
}

.opening_times{
    position: absolute;
    top: 49%;
    left:72%;
    right:10%;
    color:white;
    line-height: 0.9em;
    white-space: pre;
}


.buttom_picture{
    width: 100%;
    height: 100%;
    margin-top: 0px;
    margin-bottom: 0px;
    position: relative;
}

#Spacer{
    width: 100%;
    height: 1%;
}

@media (max-width: 1360px) { 
    .opening_times{
        position: absolute;
        left:52%;
        right:20%;
    }
    
    .contakt_header{
        position: absolute;
        right:  30%;
        top: 21%;
        color: white;
        left: 40%;
        font-size: 4.5vw;
    }
    
    .adress_info {
        position: absolute;
        left: 40%;
    }
    
    .sendUs_div{
        position: absolute;
        top:72%;
        left: 40%;
        right: 15%;
        border: solid 1px white;
        height: 55px;
    }

    .contact_div{
        position: relative;
        background-image: url("patrick-fore-0gkw_9fy0eQ-unsplash_bea_small.png");
        background-repeat: no-repeat;
        width: 100%;
        height: 700px;
    }
}

.footer{
    background-color: #C69A39;
    margin-top: -10px;
    width: 100%;
    position: relative;
}

.footer_div {
    background-color: #C69A39;
    position: relative;
    width: 100%;
    height:200px;
    bottom:0;
}

.footer_logo_image{
    position: absolute;
    left: 5%;
    top:25%;
    size: auto;
    width: 135px;
}

.footer_contact_div{
    position: absolute;
    left: 25%;
    top: 44%;
    color:white;
    font-size: 1.2em;
}

.facebook_div{
    text-decoration: none;
    position: absolute;
    left: 80%;
    top: 63%;
    color: white;
    display: inline;
}

.facebook_link_image{
    width: 25px;
}

.small_icon_footer{
    height: 18px;
    margin-right: 5px;
    margin-top:5px;
}

#agb_div{
 color: white;   
 float: right;
 margin-top:3px;
}

