@import url(//db.onlinewebfonts.com/c/543092172c7d9a62dc51fa0fc510b6cf?family=Everett+Regular);
@import url('https://fonts.googleapis.com/css2?family=Cormorant+SC:wght@300&family=Mali:wght@200&family=Mitr:wght@200;300;400&family=Nunito:wght@200;300&family=Rubik+Mono+One&display=swap');
:root{
  --primary: #886F6F
}
*{
  box-sizing: border-box;
  margin-left: 10px ;
  margin-right: 10px;
  color: #222;
  background-color:#e6e6e6 ;
  z-index: 99;
}
/*---------------------------------------------------------------------------*/

/*---------------------------------------------------------------------------*/
nav{
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  padding: 16px 32px;
}
nav .container{
  max-width: 1280px;
  margin: 0 auto;
  font-size: 15px;
  font-family: 'Everett Regular', sans-serif;
  display: flex;
  
  align-items: center;
  justify-content: space-between;
  transition: 0.5s ease;
  
}
nav .container a{
  position: relative;
  text-decoration: none;
  font-weight: bold;
  transition: 0.3s ease-in-out;
}
nav .container .hamburger{
  display: none;
  position: relative;
  z-index: 1;

  user-select: none;
  -ms-user-select:none;
  -webkit-user-select:none;

  appearance: none;
  border: none;
  outline: none;
  background: none;
  cursor: pointer;
}
.hamburger span{
  display: block;
  width: 33px;
  height: 4px;
  margin-bottom: 5px;
  position: relative;

  background-color: #222;
  border-radius: 6px;
  z-index: 1;

  transform-origin: 0 0;

  transition: 0.4s;
}
.hamburger:hover span:nth-child(2){
  transform: translate(10px);
  background-color: var(--primary);
}
.hamburger.is-active span:nth-child(1){
  transform: translate(0px, -2px) rotate(45deg);
}
.hamburger.is-active span:nth-child(2){
  opacity: 0;
  transition: translateX(15px);
}
.hamburger.is-active span:nth-child(3){
  transform: translate(-3px, 3px) rotate(-45deg);
}
.hamburger.is-active:hover span{
  background-color: var(--primary);
}
nav .container .nav_bar {
  position: relative;
  display: flex;
  flex: 1 1 0%;
  justify-content: flex-end;
  margin: 0;
}
nav .container .nav_items a::before {
  content: "";
  position: absolute;
  background: #222;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 0;
  transition: .3s ease;
}
nav .container .nav_items a:hover:before {
  width: 100%;
}

@media (max-width: 1135px){
  
  nav .container .hamburger {
    display: block;
  }
  nav .container .nav_bar {
    display: none;
  }
  nav .container .nav_bar.active{
    position: fixed;
    display: flex;
    right: 5%;
    top: 8%;
    align-items: right;
    width: 50%;
    transform: translateX(0%);
    transition: 0.5s ease;

  }
  nav .container .nav_bar .nav_items a{
    color: #e6e6e6;
    background-color:#222 ;
    font-size: 1.2em;
    margin: 20px;
  }
  nav .container .nav_bar .nav_items a:before{
    background: #222;
    
  }
  nav .container .nav_bar .nav_items{
    background: #222;
    width: 600px;
    max-width: 600px;
    margin: 20px;
    border: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    border-radius: 5px;
  }
  
}








/*---------------------------------------------------------------------------*/

/*---------------------------------------------------------------------------*/

#myBtn {
  display: none;
  position: fixed;
  bottom: 20px;
  right: 30px;
  z-index: 10000;
  font-size: 18px;
  border: none;
  outline: none;
  background-color: #222;
  color: #e6e6e6;
  cursor: pointer;
  padding: 15px;
  border-radius: 4px;
}
#myBtn:hover {
  background-color: gray;
  color: #222;
}