@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;
   /* overflow: hidden;*/
}
.wrapper {
    overflow:hidden ;
}
body{
    font-family: 'Raleway';
    color: #222;
    padding-bottom: 30px;
    overflow-x: hidden;
    user-select: none;

}


/*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: 3;
}

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

.nav ul {
   /* display: flex;*/
    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.5s ease-in-out;
}



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

.hero {
    background-image: url('../img/box.jpg');
    background-repeat: no-repeat;
    background-size:cover;
    background-position: center center;
    
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    margin-bottom: 0px;
    height: 95vh;
    z-index: -1;
}

.hero::before {
    content:'';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(14, 15, 17, 0.3);
    z-index: -2;

}

.hero h1 {
    font-size: 46px;
    margin: 25px 0 20px;
    letter-spacing: 3px;
    font-weight: lighter;
}
.hero h2 {
    font-size: 20px;
    font-family: 'Courier New', Courier, monospace;
    margin: 25px 0 20px;
    letter-spacing: 10px;
    font-weight: bolder;
}
.hero p {
    font-family: 'Arial';
    font-size: 14px;
    letter-spacing: 5px;
    line-height: 3rem;
    
}
.insta {
  width: 20px;
  translate: 0px 7px;
}
footer {
    position: absolute;
    /*font-family: 'Raleway';*/
    font-family: Raleway;
    font-size: 10px;
    text-align: center;
    align-items: center;
    justify-content: center;
    margin-top: 0px;
    margin-bottom: 0;
    padding-bottom: 0;
    padding-top: 12px;
    color: #fff;
    background-color: #222;
    word-spacing:5px ;
    letter-spacing: 5px;
    height: 5vh;
    width: 100%;
    opacity: 1;
}

#seven{
    font-family: seventhPass;
    font-size: 1rem;
    letter-spacing: 3px;
}
#site{
    letter-spacing: 3px;
    font-size: 9px;
}

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