body{
    font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-style: normal;
  overflow-x: hidden;
}

h1,h2,h3,h4,h5{
    font-family: "Poppins", sans-serif;
  font-weight: 900;
  font-style: normal;
}






*{
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
    
}

h1 {
    display: inline-block;
    padding-left: 98px;
    padding-top: 25px;
  font-style: normal;
    color: white;

}

header {
    background-color: #a5b6a7;
    color: white;
    width: 100%;
    height: 100px;
    padding: 15px 20px;         
    position: sticky;           
    top: 0;
    display: flex;              
    justify-content: space-between;  
    align-items: center;        
    z-index: 1000;
    
    
}

#menu {
  list-style: none;   
  display: flex;     
  gap: 20px;         
}

.hamburger {
  display: none;
  font-size: 30px;
  cursor: pointer;
}

@media (max-width: 1024px) {

  
  .hamburger {
    display: block;
  }


  #menu {
    display: none;              
    flex-direction: column;    
    background-color:darkgrey;
    position: absolute;
    top: 60px;                
    left: 0;
    width: 100%;
    padding: 15px 0;
  }

  #menu li {
    text-align: center;
    margin: 10px 0;
  }
}

#menu a {
  color: white;
  text-decoration: none;
}
  
#menu a:hover{
  color:#E63946;
  text-decoration: none;
}

a {
    text-decoration: none;
    color:white;
    padding: 10px;
    
}

nav{
    display:inline-block;
    float: right;
    padding-top: 45px;
    padding-right: 98px;
}

a:hover {
    color:#E63946;
}

.clear{
    clear: both;
}

h2{
    color:#667467;
    padding: 10px;
}

p{

    
    padding: 10px;
}


#hero{
    position: relative;
    background-image: url(images/hero.jpg);
    background-position: center;
    background-repeat: no-repeat;
    width:100%;
    height: 700px;
}


#absolute{
    position: absolute;
    left:90px;
    top:25px;
    width:500px;
    padding-top: 180px;
    color:#5c5c5c;
    
}


button{
    padding: 11px;
    margin: 10px;
    background-color:#667467;
    color:white;
    border-radius: 20px;
    border:none;
    
}

button:hover{
    background-color:#E63946;
    color:white;
}

.column{
    width:46%;
    padding-top: 160px;
    padding-left: 98px;
    padding-right:-900px;
    float:left;
    color:#5c5c5c;
}

.column2{
    width:50%;
    margin-top: -208px;
    margin-bottom:135px;
    padding-right: 120px;
    padding-left: 90px;
    float: right;
    color:#5c5c5c;
}

.column3{
    width:48%;
    padding-top: 20px;
    padding-left: 93px;
    padding-right:-900px;
    padding-bottom: 20px;
    font-size: 20px;
    color:#5c5c5c;
}

.img{
    width:28%;
    padding-left: 15px;
    margin-left: 70px;
}

.Fotogalerija{
    padding-bottom: 28px;
}

.column4{
    width:70%;
    padding-top: 130px;
    padding-left: 93px;
    padding-right:-900px;
    padding-bottom: 20px;
    font-size: 20px;
    color:#5c5c5c;
}

.column5{
    width:70%;
    padding-top: 130px;
    padding-left: 93px;
    padding-right:-900px;
    padding-bottom: 70px;
    font-size: 20px;
    color:#5c5c5c;
}

footer{
    width: 100%;
    height: 300px;
    background-color: dimgray;
    padding: 70px;
}


.footer{
    width:50%;
    float:left;
    color: white;
   
}

#footer2{
    float:right;
}


@media only screen and (max-width:870px){
    
    .column{
        width: 100%;
        margin-bottom: 400px;
    }

    .column2{
        width: 100%;
    }

    
    h2 {
        font-size: 5vw;
        
    }
    
    h1{
        font-size: 2vw;
        display: none;
    }
    
    .nav{
        font-size: 1vw;
        padding-top: -40px;
    }
    
    .absolute{
        width: 100%;
    }
    
    #hero2{
        display: none;
    }
}

.prvi, .drugi, .treci{
    opacity: 0;
    animation-name: fadeIn;
    animation-duration: 3s;
    animation-fill-mode: forwards;
}

@keyframes fadeIn{
    from{
        transform:translateX(-400px);
        opacity: 0;
    }
    
    to{
        transform: translateX(0px);
        opacity: 1;
    }
    
}

.prvi{
    animation-delay: 0s;
}
.drugi{
    animation-delay: 1s;
}
.treci{
    animation-delay: 3s;
}

