@import url('https://fonts.googleapis.com/css?family=Raleway');
@import url('https://fonts.googleapis.com/css?family=Dancing+Script');
@font-face {
    font-family: passion;
    src: url(../fonts/PassionsConflictROB.ttf);
}
@font-face {
    font-family: seventhPass;
    src: url(../fonts/TAKASHI.ttf);
}

.loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #2c2c2c;
  transition: opacity 0.75s, visibility 0.75s;
  z-index: 10000;
}

.loader--hidden {
  opacity: 0;
  visibility: hidden;
}

.loader::after {
  content: "";
  width: 35px;
  height: 35px;
  border: 05px solid #dddddd;
  border-top-color: #1f80ee;
  border-radius: 50%;
  animation: loading 0.75s ease infinite;
}

@keyframes loading {
  from {
    transform: rotate(0turn);
  }
  to {
    transform: rotate(1turn);
  }
}




* {
    box-sizing: border-box;
    margin:0;
    padding:0;
}
.wrapper {
    overflow:hidden ;
    padding-bottom: 200px;
}
body{
    font-family: 'Raleway';
    color: #222;
    padding-bottom: 30px;
    overflow-x: hidden;
    user-select: none;
    background-color: #ececec;

}

/*Hamburger Menu*/
.ham {
   
  width: 20px;
  height: 25px;
  cursor: pointer;
  position: relative;
  transition: all .5s ease-in-out;
}

.meny {
  position: absolute;
  background-color: #222;
  width:250px;
  height:170px;
  
  transform: translateX(100px) translateY(30px);
  
  
  line-height: 35px;
  transition: all .3s ease-in-out;
}

.meny li {

  padding-left: 5%;
}
.meny.wh {
  background-color: #fff;
}

.meny.active {
  transform: translateX(-100px) translateY(30px);
}

.ham .line {
  transition: transform .3s ease-in-out ;
}
.ham.active .line1 {
  transform: rotate(45deg) translateY(7px);
}

.ham.active .line2 {
  transform: rotate(-45deg) translateY(-7px);
}

.nav.active .line {
  background-color: #000;
}
.line {
background-color: #fff;
position: absolute;
width: 100%;
height: 2px;
top:20%;
}
.line2 {
  top:60%;
}

.container {
    max-width: 90%;
    margin: 0 auto;
    
}



.logo a{
    font-family:'passion' ;
    font-weight: lighter ;
    font-size: 1.5em;
}
.nav {
    position: fixed;
    background-color: #222;
    top:0;
    left:0;
    right:0;
    transition: all 0.3s ease-in-out;
    z-index: 20;
}

.nav .container {
    display:flex;
    justify-content: space-between;
    align-items: center;
    z-index: 10;
    padding: 20px 0;
    transition: all 0.3s ease-in-out;
}

 .nav ul {
   
    list-style-type: none;
    align-items: center;
    justify-content: center;
    font-size: 14px;
} 

.nav a{
    color: #fff;
    text-decoration: none;
    padding: 7px 7px ;
    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;

}

.nav.active .container {
    padding:5px 0;
}

.nav a.current, .nav a:hover {
    color: #1f80ee;
    font-weight:bold;
    
}

.hero {
    
    background-image: url(../img/lion4.jpg);
    background-size: cover ;
    background-position: top center;
   
    
    top: 0;
    color: rgb(247, 246, 246);
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    margin-bottom: 0px;
    height: 100vh;

    z-index: -1;
}

.mv {
   /*display: block;*/
   mix-blend-mode:overlay;
   width: fit-content;
   height: fit-content;
    position: absolute;
    scale: 2;
    padding: 0;
    top: 0;
    left: center;
    opacity: 0.3;
    z-index: -4;
   
}


.hero::before {
    content:'';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(19, 18, 17, 0.7);
    z-index: -3;
}

.paper {
    z-index:666;
    background-color: rgb(233, 233, 233);
    left: 0;
    padding-top: 40px;
    
}

.hero h1 {
    font-size: 46px;
    margin: 25px 0 20px;
    letter-spacing: 3px;
    font-weight: lighter;
}
.hero p {
  
    font-size: 18px;
    letter-spacing: 3px;
    
}

.content h2, .content h3 {
    font-size: 200%;
    margin:20px 0;
	justify-content: center;
}

.content p {
    color :rgb(0, 0, 0);
    line-height: 30px;
     letter-spacing: 1.2px;
	justify-content: auto;
}
.bk {
    background-image: url('../img/text.png'); 
    background-size: contain;
    
    position: absolute;
    top: 100vh;
    left: 0;
    width: 100%;
    height: 130%;
  
    opacity: 1;
    
    background-repeat: repeat;
    z-index: -3;
      
}

.bt {
    /*display: none; /* Hidden by default */
    position: fixed; /* Fixed/sticky position */
    bottom: 40px; /* Place the button at the bottom of the page */
    right: 30px; /* Place the button 30px from the right */
    z-index: 699; /* Make sure it does not overlap */
    border: none; /* Remove borders */
    outline: none; /* Remove outline */
    background-color: rgb(48, 48, 48); /* Set a background color */
    color: white; /* Text color */
    cursor: pointer; /* Add a mouse pointer on hover */
    padding: 10px; /* Some padding */
    border-radius: 100px; /* Rounded corners */
    font-size: 15px; /* Increase font size */
    transition: all 1s ease;
    opacity:0.0;
  }


   .bt.active {
   
    background-color:#aeaeae;
    opacity:0.7;
   }
  

  .bt:hover {
    color:#1f80ee;
    background-color: rgb(81, 81, 81); /* Add a dark-grey background on hover */
    opacity:1;
  }

footer {
    position: absolute;
    font-family: 'Raleway';
    font-size: 10px;
    text-align: center;
    align-items: center;
    justify-content: center;
    margin-top: 250px;
    margin-bottom: 0;
    padding-bottom: 0;
    padding-top: 12px;
    color: #fff;
    background-color: #222;
    word-spacing:5px ;
    letter-spacing: 5px;
    height: 40px;
    width: 100%;
    opacity: 1;
    
}




.gallery {
    margin-top: 70px;
    padding-top: 3rem;
    /*border:2px solid red;*/
    position: relative;
    height: 60vmin;
    width: 100vw;
    z-index: 3;
}



#image-track {
    display: flex;
    gap: 7vmin;
    position: absolute;
    left: 50%;
    top: 75%;
    transform: translate(0%, -50%); 
    user-select: none; /* -- Prevent image highlighting -- */
   
  }
  
  #image-track > .image {
    width: 30vmin;
    height: 60vh;
    object-fit:cover;
    object-position: 100% center;
    box-shadow: 5px 5px 30px rgba(0,0, 0, 0.2);
    
  }
  
  

  .image-container .image {
    transition: all 0.35s ease; 
  }
  .image-container .image:hover {
    transform:scale(1.05);
    
    
  }



  /* The Modal (background) */
.modal {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 1; /* Sit on top */
    padding-top: 120px; /* Location of the box */
    left: 0;
    top: 0;
    backdrop-filter: blur(3px);
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: none; /* Enable scroll if needed */
    background-color: rgb(0,0,0); /* Fallback color */
    background-color: rgba(0,0,0,0.8); /* Black w/ opacity */
  }
  
  /* Modal Content (image) */
  .modal-content {
    margin: auto;
    display: block;
    border: 1px solid rgb(0, 0, 0);
    
    width: 85%;
    height:90%;
    object-fit:cover;
    max-width: 700px;
  }
  
  /* Caption of Modal Image */
  #caption {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 700px;
    text-align: center;
    color: #ccc;
    padding: 10px 0;
    height: 150px;
  }
  
  /* Add Animation */
  .modal-content, #caption {  
    -webkit-animation-name: zoom;
    -webkit-animation-duration: 0.6s;
    animation-name: zoom;
    animation-duration: 0.6s;
  }
  
  @-webkit-keyframes zoom {
    from {-webkit-transform:scale(0)} 
    to {-webkit-transform:scale(1)}
  }
  
  @keyframes zoom {
    from {transform:scale(0)} 
    to {transform:scale(1)}
  }
  
  /* The Close Button */
  .close {
    position: absolute;
    top: 65px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
  }
  
  .close:hover,
  .close:focus {
    color: rgb(10, 96, 234);
    text-decoration: none;
    cursor: pointer;
    scale: 0.9;
  }
  
  /* 100% Image Width on Smaller Screens */
  @media only screen and (max-width: 700px){
    .modal-content {
      width: 100%;
    }
  }
  

  #m7{
    font-family: passion;
    font-size: .7rem;
    letter-spacing: 0px;
}