*{  
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
}
body{
    background-color: rgb(242, 246, 248);
}
/* II HEADER */
.header{
    min-height: 100vh;
    width: 100%;
    background-image: linear-gradient(rgba(4,9,30,0.7), rgba(4,9,30,0.7)), url(slikeHNH/images/6.jpg); /* <<<-- Ovde ide header img */
    background-position: center;
    background-size: cover;
    position: relative;
}
.logo{
    position: relative;
    margin-top: 40px;
    margin-left: 40px;
    margin-right: 40px;
    margin-bottom: 40px;
}

nav{
    display: flex;
    padding: 2% 6%;
    justify-content: space-between;
    align-items: center;
}
nav img{
    width: 300px;
}
/* NAV BAR + ANIMATION */
.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;
    font-size: 13px;
   

}
.nav-links ul li::after{
    content: '';
    width: 0%;
    height: 2px;
    background: #f44336;
    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 h1{
    font-size: 32px;
}
.text-box p{
    margin: 10px 0 40px;
    font-size: 14px;
    color: #fff;
}
.hero-btn{
    display: inline-block;
    text-decoration: none;
    color: #fff;
    border: 1px solid #fff;
    padding: 12px 34px;
    font-size: 13px;
    background: transparent;
    position: relative;
    cursor: pointer;
    margin-top: 30px;

}
.hero-btn:hover{
    border: 1px solid #f44336;
    background: #f44336;
    transition: 1s;
}


#xbutton{
    display: none;
}
#listbutton{
    display: none;   /* This ID classifications are made because the premade icons come with a weirdly made class */
}
@keyframes fade-in {
    from {
      opacity: 0;
    }
    to {
      opacity: 1;
    }
  }
  @keyframes fade-in-sum {   /* Fade in for sum text*/
    from {
      opacity: 0;
      transform: translateY(50px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }  
  .lang-box{
    align-content: center;
    position: absolute;
    display: flex;

  }
  .language-options{  /* CSS for the two flags */
    
    margin-top: 5px;
    margin-bottom: 5px;
    margin-left: 10px;
    margin-right: 10px;
    padding: 20px;
    justify-content: space-around;
    cursor: pointer;
  }
  /* Apply the animation to the header text */
  .fade-in-text {
    animation: fade-in 1.5s ease-in-out; /* Change duration and timing as needed */
  }
  .hidden{ /* Animation CSS */
    opacity: 0;
    filter: blur(5px);
    transform: translateX(-100%);
    transition: all 1s;
  }
  .show{
    opacity: 1;
    filter: blur(0);
    transform: translate(0);
  }
  
 
  
  @media(prefers-reduced-motion) {
    .hidden {
        transition: none;
    }
  }
 
  @media(max-width: 700px){
    nav img{
        width: 150px;
        height: 100px;
    }
    .text-box h1{
        font-size: 20px;
    }
    .nav-links ul li{
        display: block;
    }
    .nav-links{
        position: absolute;
        background: #f44336;
        height: 100vh;
        width: 200px;
        top: 0;
        right: -200px;
        text-align: left;
        z-index: 2;
        transition: 1s;
    }
    .nav-links ul{
        padding: 50px;
    }
    #xbutton{
        display: block;
        height: 1px;
        width: 1px;
        color: #fff;
        margin: 10px;
        font-size: 22px;
        cursor: pointer;
    }
    #listbutton{
        display: block;
        height: 1px;
        width: 1px;
        color: #fff;
        margin: 10px;
        font-size: 22px;
        cursor: pointer;
        position: relative;  /* This ID classifications are made because the premade icons come with a weirdly made class */

    }
}
/* ABOUT LAYER */

.summary{
    width: 80%;
    margin: auto;
    text-align: center;
    padding-top: auto;
    align-content: center;
    margin-top: 200px;   /* Summed up main text are*/
    
    

}
.summary h1{
    font-size: 60px;
    font-weight: 600;
    text-align: center;
    align-self: center;
    margin-top: 5%;
    position: relative;
}
.summary p{
    color: #222222;
    font-size: 20px;
    font-weight: 300;
    line-height: 22px;
    padding: 10px;  
}
.summary h3{
    color: #222222;
    font-size: 28px;
    font-weight: 300;
    line-height: 22px;
    padding: 10px;  
}
.row{               /* row and text columns can be used in making large text boxes, good for summing up large pieces of data in small placeholder objects*/
    margin-top: 5%;
    margin-right: 10%;
    margin-left: 10%;
    display: flex;
    justify-content: space-between;
    width: auto;
  

}
@media(max-width: 700px){
    .summary p{
        font-size: 15px;
    }
    .summary{
        margin-top: 30px;
    }
}
    

.text-col{      /* Place holder CSS, can be used if multiple columns of text are to be used*/
    flex-basis: 31%;
    background: #fffefc;
    border-radius: 10px;
    margin-bottom: 5%;
    padding: 10px 5px;
    box-sizing: border-box;
    margin-left: 1%;
    margin-right: 1%;
    
    
}
.text-main{
    flex-basis: 20%;
    background: #fffefc;
    border-radius: 25px;
    margin-bottom: 5%;
    padding: 30px 20px;
    box-sizing: border-box;
    margin-left: 20%;
    margin-right: 20%;
    font-size: 18px;   /* Main Pharagraph Text Area Font Size, Just Bellow the Header  */
    
}
.text-col h3{
    text-align: center;
    font-weight: 600;
    margin: 10px;
    padding: 15px;
    
}
.text-col p{
    text-align: center;
    font-weight: 300;
    margin: 15px;
    padding: 10px;
}
.text-col:hover{
    box-shadow: 0 0 20px 0px rgba(0,0,0,0.2);
    transition: 0.5s;
}
@media(max-width: 700px){
    .row{
        flex-direction: column;
    }
}





/*contact */

.contact-box{
    width: 100%;
    height: 25vh;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin-bottom: 150px;
    margin-top: 150px;
}


form{
    background: #fff;
    display: flex;
    flex-direction: column;
    padding: 2vw 4vw;
    width: 90%;
    max-width: 600px;
    border-radius: 10px;
}
form h3{
    color: #555;
    font-weight: 800;
    margin-bottom: 20px;
}
form input, form textarea{
    border: 0;
    margin: 10px 0;
    padding: 20px;
    outline: none;
    background: #f5f5f5;
    font-size: 16px;


}
form button{
    padding: 15px;
    background: #ff5361;
    color: #fff;
    font-size: 18px;
    border: 0;
    outline: none;
    cursor: pointer;
    width: 150px;
    margin: 20px auto 0;
    border-radius: 30px;
}
form button:active{
    background-color: #92101b;
    transition-duration: 1s;


}
form button:hover{
    background-color: #92101b;
    transition-duration: 1s;


}
@media(max-width: 700px){
    .contact-box{
        height: 50vh;
    }
    .form{
        max-width: 50%;
    }
    
}
.video-container{
    margin-top: 5vh;
    margin-bottom: 5vh;
    padding: 10px;
    display: flex;
    flex-direction: column;
    align-self: center;
    align-items: center;
    align-content: center;
    
    
}
.video{
height: auto;
width: auto;
box-sizing: border-box;
border: black solid 2px;
border-radius: 5px;
padding: 0px;
margin-left: 0px;
margin-right: 0px;
margin-bottom: 0px;




    
}
@media(max-width: 700px){
    .video-container{
        margin-top: 0px;
        margin-bottom: 0px;


        }    
    }

.footer{
    height: 120vh;
    margin: auto;
    padding: auto;
    border-top: 2px black solid;
    justify-content: center;
    text-align: center;
    background-image: linear-gradient(rgba(4,9,30,0.7), rgba(4,9,30,0.7)), url(); /*<<<--- Ovde ide footer img */
    background-size: cover;
    position: relative;
}
.footer p{
    text-align:center;
    font-size: 14px;
    padding-top: 50px;
    color: #fff;
}
@media(max-width:700px){
    .footer{
        height: 20vh;
        margin-top: 200px;
    }
}
.imageslidecontainer{
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 10vh;
    margin-bottom: 20vh;
    padding: 50px;
    
}
.swiper{                       /* Swiper CSS */
    width: 80%;
    height: fit-content;
}
.swiper-slide img{
    width: 100%;
}
.swiper .swiper-button-prev, .swiper .swiper-button-next{
    color: white;
}
.swiper .swiper-pagination-bullet-active{
    background: white;
}

@media(max-width:700px){
    .imageslidecontainer{
        width: 100%;
        height: 60vh;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-top: 5px;
        margin-bottom: 10vh;
        padding: 0px;
        
    }
    .swiper{
        width: 150vh;
        

    }
    .swiper-slide img{
        width: 100%;
        height: 45vh;
    }
}

/* Map CSS */
.map{
    margin-top: 5vh;
    margin-bottom: 5vh;
    padding: 10px;
    display: flex;
    flex-direction: column;
    align-self: center;
    align-items: center;
    align-content: center;
    
}
