header{
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #000;
  z-index: 1000;
}

header a{

}

header a:hover{
  text-decoration: none;
}


.header-search{

}

.menu-btn{
  position: relative;
  border: solid 1px #fff;
  display: inline-block;
  padding: .3em;
  margin: 10px;
  border-radius: 5px;
  cursor: pointer;
  color: #fff;
}

.menu{
  position: absolute;
  top: 0;
  right: 100%;
  width: 100%;
  height: 100vh;
  transform: translate(0%, 0);
  transition: transform .5s ease;
  background: #841a1a;
  padding: 4.5em 1.5em 1em;
}

.menu-active{
  transform: translate(100%, 0);
}

.menu-close{
  display: inline-block;
  font-size: 2em;
  position: absolute;
  top: 5px;
  right: 10px;
  cursor: pointer;
  color: #deb1b1;
}

.pc-home{
  float: left;
}

.pc-home a{
  color: #fff;
  text-decoration: none;
  transition: color .4s ease;
}

.pc-home a:hover, .pc-home a:active{
  color: #aaa;
}

.header-desc{
  padding: 2em 0;
  color: #eee;
}

.mobil-web-title{
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-family: title-font;
}

@media (min-width: 1024px){

  /* header{
    background: transparent;
  } */

  .menu-btn{
    display: none;
  }

  .header-desc{
    display: none;
  }

  .header-search{
    max-width: 400px;
    margin: 0 auto;
    /* background-color: #a7371b; */
    padding: 0 .5em;
    border-radius: 5px;
  }

  .menu{
    position: relative;
    height: initial;
    z-index: 1000;
    transform: none;
    padding: .5em;
    background: #000;
    transition: none;
    transform: translate(100%, 0);
  }

  .menu-close{
    display: none;
  }

  .mobil-web-title{
    display: none;
  }
}
