
/* HEADER
========================== */

header{
  display:flex;
  justify-content: space-around;
  align-items:center;
  text-transform: uppercase;
  height: 150px;
  position: fixed;
  top: 0;
  left: 0;
  width:100%;
  box-sizing: border-box;
  padding: 0 50px;
  color:#fff;
  z-index: 1;
  transition: 1s;
  letter-spacing: 1.5px;
  font-size: 14px;

}

.header-change{
  height: 80px;
  background-color: #23221f;
  transition: 0.5s;
}


.logo{
  text-align: center;
  text-transform: uppercase;
  font-size: 24px;
  letter-spacing: 4px;
  font-family: 'Wire One', sans-serif;
  color:#fff;


}

.nav-links{
  text-align: center;
  position:  static;
}

.nav-links li{
  display: inline-block;
  padding-left: 45px;
}

.nav-links a{
  display: inline-block;
  text-decoration: none;
  text-transform: uppercase;

}
.nav-links .active{
  color:#A9A9A9;

}

.icons{
    text-align: center;
}

.icons i {
    padding-right:15px;
}


.burger div{
  background-color: #fff;
  width: 25px;
  height: 5px;
  margin: 3px;
  transition:  all 0.3s ease;

}

.burger{
  display: none;
  cursor: pointer;
}


@media screen and (max-width: 1228px) {


  header{

    padding: 0 20px;
    display:flex;
    justify-content: space-around;
    height: 80px;
    background-color: #23221f;


  }

  .header-change{
    background-color: #23221f;
    height: 80px;
    color:#fff;
    transition: 1s;
  /* box-shadow: 0px 5px 5px 0px #111; */
  }

  .logo{
    font-size: 16px;
     flex-grow:1;
    flex-shrink:0;


  }


   .nav-links{
       /* display: block; */
       overflow: scroll;
       position: absolute;
       z-index: -1;

       height: calc(100vh - 80px);
       padding: 25px;
       top: 80px;
       left: -100vh;
       width: 0;
       right: 0;
       /* top:80px; */
       transition: transform 0.3s ease-in-out;
       background-color: #23221f;
       color: #fff;

  }




  .nav-links li{
    /* display: inline-block; */
    padding-left: 0;

    /* transition: transform 0.7s ease-in-out; */
  }

  .nav-links a{
    color: #fff;

  }

  .icons{
    display: none;
  }

  .burger {
    /* padding-left:40px; */
    order: 2;
    cursor: pointer;
    display: block;

  }
}

.nav-active{


  transform: translateX(100vh);
  width: 100%;

}



.nav-active li{

    display: block;
    padding: 10px;
    margin: 5px;
}



.nav-active li a{
  color:#fff;
  display: block;
  width: 100%;
  line-height: 50px;
  height: 35px;
}
.nav-active li a:hover{
  /* border-bottom: 2px solid #000; */


  color:#A9A9A9;
}



.toggle .line1{
  transform: rotate(-45deg) translate(-5px,6px);
}
.toggle .line2{
    opacity: 0;
}
.toggle .line3{
  transform: rotate( 45deg) translate(-5px,-6px);
}

/** HEADER END */
