body {
  font-family: serif;
}

header#hd_top {
  height: 100vh;
  width: 100%;
  max-width: none;
  overflow: hidden;
  position: relative;
}

#top_video {
  min-height: 100%;
  min-height: 100vh;
  min-width: 100%;
  min-width: 100vw;
  position: absolute;
  top: 0;
  right: 0;
/*  background: url(../images/video_bg.png) no-repeat;*/
  transition: all 0.6s;
}

#logo {
  position: absolute;
  top: 50%;
  left: 10%;
  width: 270px;
  transform: translateY(-50%);
}

.navigation {
  position: absolute;
  top: 50%;
  right: 10%;
  width: 600px;
  font-size: 3em;
  text-shadow: 1px 2px 4px #050505;
  transform: translateY(-50%);
}

.navigation > ul {
  display: block;
}

.menu:first-child > a::before {
  display: none;
}

.menu {
  margin: 40px 20px;
}

.menu  a {
  color: #fff;
  text-decoration: none;
}

.menu:nth-child(2) {
  padding-left: 0.8em;
/*  text-indent: 0.8em;*/
}

.menu:nth-child(3) {
  padding-left: 1.6em;
/*  text-indent: 1.6em;*/
}

.menu:nth-child(4) {
  padding-left: 2.4em;
/*  text-indent: 2.4em;*/
}

.menu:nth-child(5) {
  padding-left: 3.2em;
/*  text-indent: 3.2em;*/
}

.page_title {
  font-size: 55px;
  top: 20%;
  left: 4%;
}

.new-arrival {
  font-size: 20px;

}

.new-arrival >li{
  margin-top: 1em;
}

.new-arrival li{
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}


.news_date {
  font-size: 18px;
}

.news_title{
  color: #fff;
}

@media screen and (max-width: 1024px) {
  .navigation {
    right: 0;
    font-size: 2.5em;
    width: 550px;
  }

  #logo {
    width: 200px;
    left: 5%;
  }
}

@media screen and (max-width: 768px) {
  .navigation {
    font-size: 2em;
    width: 430px
  }

  .menu:first-child > a::before {
    height: 33px;
  }
  .new-arrival {
    font-size: 16px;
  }
  
  .news_date {
    font-size: 14px;
  }
}

@media screen and (max-width: 600px) {
  #top_video {
    transform: translateX(40%);
  }

  .navigation {
    font-size: 1.5em;
    width: 350px;
  }

  #logo {
    width: 150px;
  }

  /*
  .menu:nth-child(2) {
    text-indent: 20%;
  }
*/

}

@media screen and (max-width: 480px) {
  #logo {
    top: 10px;
    transform: none;
  }

  .navigation {
    width: 320px;
    bottom: 0;
    transform: none;
    top: auto;
  }

  .menu {
    margin: 20px 10px;
  }

  .menu:first-child > a::before {
    height: 35px;
  }
}

