/* prociono-regular - latin */
@font-face {
    font-family: 'Prociono';
    font-style: normal;
    font-weight: 400;
    src: url('/fonts/prociono-v22-latin-regular.eot'); /* IE9 Compat Modes */
    src: local(''),
         url('/fonts/prociono-v22-latin-regular.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
         url('/fonts/prociono-v22-latin-regular.woff2') format('woff2'), /* Super Modern Browsers */
         url('/fonts/prociono-v22-latin-regular.woff') format('woff'), /* Modern Browsers */
         url('/fonts/prociono-v22-latin-regular.ttf') format('truetype'), /* Safari, Android, iOS */
         url('/fonts/prociono-v22-latin-regular.svg#Prociono') format('svg'); /* Legacy iOS */
  }

*{
    margin: 0;
    padding: 0;
    font-family: 'Prociono', serif;
}

html {
    scroll-behavior: smooth;
}
  
.header{
    min-height: 100vh;
    width: 100%;
    background-image: linear-gradient(rgba(4,9,30,0),rgba(255,255,255,0.0));
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
}
nav{
    display: flex;
    padding:2% 6%;
    justify-content: space-between;
    align-items: center;
}
nav img{
    width: 150px;
}
.nav-links{
    flex: 1;
    text-align: right;
}
.nav-links ul li{
    list-style: none;
    display: inline-block;
    padding: 8px 12px;
    position: relative;
}
.nav-links ul li a{
    color: #fff;
    text-decoration: none;
}
.nav-links ul li::after{
    content: '';
    width: 0%;
    height: 2px;
    background: #fff;
    display: block;
    margin: auto;
    transition: 0.5s;
}
.nav-links ul li:hover::after{
    width: 100%;
}
.text-box{
    width: 90%;
    color: #fff;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    text-align: center;
}

.text-box img{
    width: 350px;
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
}
.text-box h1{
    font-size: 35px;
    font-weight: 300;
    margin-top: 20px;
}
.text-box p{
    font-size: 20px;
    font-weight: 200;
    padding: 20px;
    line-height: 30px;
}
.hero-btn{
    display: inline-block;
    text-decoration: none;
    font-size: 25px;
    color: #fff;
    border: 1px solid #fff;
    margin-top: 10px;
    margin: 8px 5px;
    padding: 8px 17px;
    border-radius: 20px;
    background: transparent;
    position: relative;
    cursor: pointer;
}
.hero-btn:hover{
    border: 1px solid #fff;
    transition: 1s;
    background-color: #fff;
    color: #000;
}
nav .fa{
    display: none;
}
@media(max-width: 700px) {
    .header{
        background-attachment: scroll;
    }
    .text-box img{
        width: 250px;
    }
    .nav-links ul li{
        display: block;
    }
    .nav-links{
        position: fixed;
        background: #fff;
        height: 100vh;
        width: 200px;
        top: 0;
        right: -200px;
        text-align: left;
        z-index: 2;
        transition: 0.5s;
    }
    .nav-links ul li a{
        color: #000;
    }
    nav .fa{
        width: 20px;
        display: block;
        color: #fff;
        margin: 10px;
        font-size: 22px;
        cursor: pointer;
    }
    .nav-links ul{
        padding: 30px;
    }
}


/* welcome text */
.welcome-box{
    min-height: 150px;
    background-color: #fff;
    /* background-image: url("/images/logo_icon_op_5.svg"); */
    background-position: center;
    background-size: 100%;
    background-repeat: no-repeat;
    width: 80%;
    margin: auto;
    text-align: center;
    margin-top: 50px;
}
.welcome-box h1{
    margin: 20px 0;
    font-size: 36px;
    font-weight: 500;
    color: #000;
}
.welcome-box p{
    font-weight: 300;
    color: #777;
    line-height: 25px;
}
.read-more{
    text-align: center;
    position: relative;
    margin-top: 15px;
}
.read-more p{
    display: block;
    margin: 0;
}
.read-more p::before,
.read-more p::after{
    display: inline-flex;
    content: "";
    height: 1px;
    width: 140px;
    margin: 0 20px;
    background-color: #777;  
}
.read-more::after{
    display: block;
    content: "";
    border: solid #777;
    border-width: 0 1px 1px 0;
    padding: 4px;
    position:absolute;
    left: 50%;
    -webkit-transform: rotate(45deg);
}
.read-more p:hover{
    font-weight: 400;
}
#more {
    display: none;
    transition: 1s;
    }
@media(max-width: 700px){
    .welcome-box{
        width: 90%;
    }
    .read-more p::before,
    .read-more p::after{
        width: 60px;
    }
}

/* Our House */
.our-house{
    width: 90%;
    margin: auto;
    padding-top: 80px;
}
.row{
    display: flex;
    justify-content: space-between;
    min-height: 20px;
}
.our-house-col{
    flex-basis: 49%;
    padding: 5px;
    box-sizing: border-box;
    display: flex;
    align-content: center;
    flex-wrap: wrap;
}

.our-house-col h2 {
    padding: 10px;
    text-align: center;
    font-weight: 300;
}

.our-house-col h3 {
    text-align: left;
    font-weight: 300;
    padding-left: 10px;
    width: 100%;
}

.our-house-col h1{
    margin: 20px 0;
    font-size: 36px;
    font-weight: 500;
    color: #000;
}
.our-house-col p{
    font-weight: 300;
    color: #777;
    line-height: 25px;
    padding:10px;
}

.our-house-col img{
    width: 100%;
    border-radius: 10px;
}
.equipment-element{
    display: flex;
    width: 100%;
    /* background-color: #000; */
}

.equipment-element img{
    width: 24px;
}
.equipment-element p{
    margin-left: 20px;
    color: #777;
    margin: auto;
    padding: 8px;
    width: 100%;
}



@media screen and (max-width: 700px){
    /* lots more css */
    .row{
        flex-direction: column;
    }
}
/* Call to Action */
.cta{
    margin: 0px auto;
    margin-top: 70px;
    width: 90%;
    border-radius: 10px;
    /* background-image: linear-gradient(rgba(255,255,255,0.2),rgba(255,255,255,0.2)), url("images/background_images/anfrage_winter_01.jpg"); */
    background-image: linear-gradient(rgba(0,0,0,0.2),rgba(0,0,0,0.2));
    background-size: cover;
    background-position: center;
    text-align: center;
    padding: 100px 0;
    background-attachment: fixed;
    background-color: #000;
}

.cta h1{
    color: #fff;
    margin-bottom: 40px;
}
@media(max-width: 700px){
    .cta{
        background-attachment: scroll;
    }
}


/* contact */
.contact{
    width: 90%;
    margin: auto;
}

.contact .flex-item{
    flex-basis: 49%;
    width: 100%;
    margin-top: 40px;
    /* background-color: #000; */
}

.contact .flex-item1{
    display: flex;
    flex-wrap: wrap;
    align-content: center;
}

.contact .flex-item1 .grid-container{
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: 100%;
}

.contact .flex-item1 .grid-item1{
    grid-column-start: 1;
    grid-column-end: 3;
    text-align: center;
}
.contact .flex-item1 .grid-item3{
    display: flex;
    align-items: center;
}
.contact .flex-item1 .grid-item4{
    grid-column-start: 1;
    grid-column-end: 3;
    display: flex;
    flex-basis: 0;
    justify-content: center; 
}
.contact .flex-item1 a{
    width: 50px;
    height: 50px;
}
.contact p{
    padding: 5px;
    color: #777;
    line-height: 30px;
    text-align: left; 
}
.contact h1{
    /* padding-top: 5px; */
    line-height: 30px;
    text-align: center; 
    padding-bottom: 10px;
}
.contact .sm-icons{
    width:30px;
    height:30px;
    padding:10px
}
.contact .maps{
    width: 100%;
    height: 100%;
    border-radius: 5px;
}

.contact img{
    width: 100%;
    height: 100%;
    border-radius: 10px;
    object-fit: cover;
}

.footer {
    width: 90%;
    margin: auto;
    margin-top: 30px;
    margin-bottom: 30px;
}
.footer a{
    text-decoration: none;
    color: #AAA;
    display: inline-block;
    padding: 10px;
    font-size: 15px;
}
.footer p{
    color: #AAA;
    /* padding: 30px; */
    padding: 10px;
    position: left;
    font-size: 15px;
}
.footer .da{
    padding-right: 20px;
}

.contact .flex-item img:hover {
    transition: 0.5s;
    filter: brightness(110%);
  }


/* welcome text */
.logo-box{
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
     /*  max-width: 800px; Adjust the max-width based on your design */
      margin: 10px auto; /* Center the logo box */
      width: 80%;
}
.logo-box img{

    padding: 10px;
    background-color: rgba(255, 255, 255, 0.5);
    margin-left: 10px;
    margin-right: 10px;
}