@import url('https://fonts.googleapis.com/css2?family=Muli');

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body{
    font-family: 'Muli', sans-serif;        
    color: #222;
    padding-bottom: 50px;    
}

.container{
    max-width:  1200px;
    margin: 0 auto;
}

.nav {
    position: fixed;
    background-color: #222;
    top: 0;
    left: 0;
    right: 0;
    transition: all 0.3s ease-in-out;
    z-index: 1;
}

.nav .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    transition: all 0.3s ease-in-out;
}

.nav ul {
    display: flex;
    list-style-type: none;
    align-items: center;
    justify-content: center;
}

.nav a{
    color: #fff;
    text-decoration: none;
    padding: 7px 15px;
    transition: all 0.3s ease-in-out;
}

.nav.active{
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0, 0.3);
}

.nav.active a{
    color: #000;
}   

.logo-color{
	color:#F69D39;
	background-color: transparent;
}

.hero{
    background-image: url(../images/8353794.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: bottom center;
    height: 80vh;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    margin-bottom: 20px;
    z-index: -2;
}

.hero::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.6);
    z-index: -1;
}

.hero h1{
    font-size: 46px;
    margin: -20px 0 20px;
}

.hero p{
    font-size: 20px;
    letter-spacing: 1px;
}

.content h2, .content h3{
    font-size: 150%;
    margin: 20px 0;
}

.content p{
    color: #555;
    line-height: 30px;
    letter-spacing: 1.2px;
}

.box{
    margin: auto;
    display: grid;
    gap: 30px;
    grid-template-columns: auto auto auto;
    padding: 20px;
    width: 70%;
}

.box-sec{    
    padding: 20px;
}


.card {  
    padding: 35px;
    font-size: 110%;
    margin: 25px 0;
    min-height: 45vh;
    height: auto;  
    box-shadow: 0 4px 12px 0 rgba(0,0,0,0.2);
    transition: 0.3s;
    border-radius: 12px;
}

.card h2{
    text-align: center;
    font-size: 110%;
    margin: 20px 0;    
    letter-spacing: 1px
}

.card h3{
    font-size: 90%;
}
.card p{
    font-size: 20px;
    text-align: center;
    padding: 10px;
    color: #555;
    line-height: 25px;
    letter-spacing: 1px
}

.card:hover {
    box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2);
}

.container {
    padding: 2px 16px;
}

img {
    border-radius: 5px 5px 0 0;
}

#about{
    color: #fff;
    font-size: 20px;
    text-align: center;
    background-color: #A5BFCC;
    padding: 10% 15%;
}

.footer-heading{
    margin: 40px;
    font-weight: 500;
}

.btn{
    margin: 10px 0;
    cursor: pointer;
    display: inline-block;
    width: 40%;    
    padding: 10px;    
    font-family: inherit;
    font-size: 16px;    
    border-radius: 5px;
    background-color: #A5BFCC;
    border-color: transparent;
}

.btn:active{
    transform: scale(0.98);
}


.container-cont{
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #222;
    color: #fff;
    padding: 20px 20px;   
}

.cont{    
    padding: 10px;
    width: 30%;    
}

.kontakt-cont{
    width: 30%;
    background-color: #222;
    margin-bottom: 50px;
}

.kontakt-cont ul{
    overflow: hidden;    
    font-weight: bold;
}

.kontakt-cont ul li a{
    display: block;
    color: #fff;
    font-size: large;
    text-align: center;
    padding: 11px 11px;
    text-decoration: none;
    letter-spacing: .8px;
}
.place-icon{
    display: flex;
    align-items: center;
    align-self: center;
    justify-content: center;
    transition: all 0.3s;    
}

.place-icon:hover{
    transform: scale(1.1);
}

.form-control{
    position: relative;
    margin: 20px 0 20px;
    width: 450px;
}

.form-control input, textarea{
    font-family: inherit;
    text-align: left;       
    padding: 7px;
    color: #222;    
    display: block;
    background-color: #fff;
    border: 0;
    border-radius: 4px;
    resize: none;

    width: 100%;
    padding: 15x 0;
    font-size: 16px;
}

.form-control input:focus, .form-control input:valid{
    outline: 0;
}

.form-control textarea:focus, .form-control textarea:valid{
    outline: 0;
}

.footer{
	margin-top: 10px;
	margin-bottom: 10px;
	margin-right: 10px;
    float: right;
}



@media screen and (max-width: 1440px) {
    .box{
    width: 100%;
    }
    .container-cont{
    justify-content: space-evenly;    
    }    
}

@media screen and (max-width: 1074px) {
  .nav h1{
    font-size: 1em;
    }
  .box {
    display: block;
    padding: 0;
    width: 100%; 
  }
  .card {
    min-height: 27vh;
  }
  .nav .container{       
    padding: 5px;
  }
  .nav a{
    padding: 5px;
  }
  .hero{
    height: 75vh;
  }
  #about {
    padding: 1% 15%;
  }
  .footer-heading{
    margin: 10px;
    font-weight: 300;
  }
  .footer-heading h3{
    font-size: 1em;
  }
  .container{
    flex-direction: column;
  }
  .container h1{
    font-size: 30px;    
  }
  .container p{
    font-size: 17px;
  }
  .cont{
    width: 100%;
  }
  .container-cont{    
    display: block;
    height: 700px;                 
  }
  .form-control{
    width: 90vw;
  }
  .kontakt-cont{
    width: 100%;
  }
  .kontakt-cont ul li a{
    color: #fff;
    padding: 10px;    
  }
}