* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
      font-family: sans-serif;
  }

  a {
    text-decoration: none;
    color: #191919;
  }
  
  header {
    display: flex;
    justify-content: space-between;
    padding: 20px 50px;
    width: 100vw;
    height: 10vh;
    box-shadow: 0 5px 10px 1px #eee;
  }
  
  header .nav1 {
      display: flex;
      align-items: center;
      cursor: pointer;
  }
  
  header .nav1 svg {
      width: 18px;
      margin-right: 7px;
      stroke: #191919;
  }
  
  header .nav1 span {
      font-size: 13px;
      padding-top: 3px;
      color: #191919;
      letter-spacing: .1em;
      padding-left: 10px;
  }
  
  header .nav2 {
      display: flex;
      align-items: center;
  }
  
  header .nav2 nav ul{
      display: flex;
      list-style: none;
      align-items: center;
      font-size: 11px;
      color: #191919;
  }
  
  header nav li {
      position: relative;
      cursor: pointer;
  }
  
  header .nav2 nav ul li:after {
      content: '';
      position: absolute;
      left: 50%;
      top: 100%;
      transform: translate(-50%, -50%);
      width: 1px;
      height: 1px;
      background: #000;
      transition: width 120ms ease-in-out, opacity 210ms ease-in-out;
      opacity: 0;
  }
  
  header .nav2 nav ul li:hover:after {
      width: 100%;
      opacity: 1;
  }
  
  header .nav2 nav ul li {
      margin: 0 20px;
      letter-spacing: .3em;
  }
  
  header .nav3 button {
      border: none;
      background: none;
      font-size: 13px;
      position: relative;
      color: #191919;
      cursor: pointer;
      letter-spacing: .1em;
  }
  
  header .nav3 button:after {
      content: '';
      position: absolute;
      left: 50%;
      top: 100%;
      transform: translate(-50%, -50%);
      width: 100%;
      height: 1px;
      background: gray;
  }
  
  .article1 {
    background: red;
    height: 90vh;
    background-image: url(https://i.ibb.co/dczS1GC/maxresdefault.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: fixed;
    width: 1480px;
    margin: 0 20px;
  }
  
  .article1 img {
      object-fit: cover;
  }
  
  .article1 .content {
    color: #fff;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, 100%);
  }
  
  .article1 .content h1 {
    font-size: 45px;
    display: flex;
    justify-content: center;
    padding-bottom: 1px;
    color: #FFF9E8;
  }
  
  .article1 .content span {
      font-size: 30px;
      color: #FFF9E8;
  }
  
  .article2 {
    height: 100vh;
    margin: 0 20px;
    background: url(https://i.ibb.co/jDj2rGf/steaksf.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: fixed;
    position: relative;
    width: 1480px;
  }
  
  .article2 .content {
    display: inline-block;
    width: 300px;
    height: 150px;
    bottom: 0;
    position: absolute;
    margin-bottom: 150px;
    margin-left: 100px;
    font-size: 20px;
    color: #FFE8CA;
  }
  
  .article2 .content h1 {
    padding-bottom: 15px;
  }
  
  .article3 {
    height: 100vh;
    background: red;
    margin: 0 20px;
    display: flex;
  }
  
  .article3 .left {
    width: 50%;
    height: 100%;
    background: #14001a;
    position: relative;
  }
  
  .article3 .left .content {
    position: absolute;
    top: 60%;
    margin-left: 100px;
    font-size: 18px;
    color: #FFE0F2;
    width: 350px;
    height: 150px;
  }
  
  .article3 .left .content h1 {
    padding-bottom: 15px;
    animation: box 2s infinite ease-in-out alternate-reverse;
  }
  
  @keyframes box {
    to {
        /* color: pink; */
        transform: translateX(2%);
    }
  }
  
  .article3 .left .content span {
    font-size: 19px;
  }
  
  .article3 .right {
    width: 50%;
    height: 100%;
    background: goldenrod;
  }
  
  .article3 .right img {
    object-fit: cover;
  }
  
  .article4 {
    height: 100vh;
    position: relative;
    margin-right: 20px;
    margin-left: 10px;
    width: 1490px;
  }
  
  .article4 .content {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 300px;
    height: 190px;
    color: #FFF4D6;
    font-size: 18px;
    margin-bottom: 260px;
    margin-right: 310px;
  }
  
  .article4 .content h1 {
    padding-bottom: 23px;
  }
  
  .article4 .content:before {
    content: '';
    background: #FFF4D6;
    width: 1px;
    height: 150px;
    display: inline-block;
    position: absolute;
    transform: translate(-15000%, 20%);
  }
  
  .article4 img {
    object-fit: cover;
    object-position: 10px -250px;
  }
  
  .article5 {
    height: 100vh;
    background-image: url(https://i.ibb.co/rK90zsF/men.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    position: relative;
    margin: 0 20px;
    width: 1480px;
  }
  
  .article5 .content {
    color: white;
    width: 300px;
    font-size: 18px;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translate(-50%, -85%);
  }
  
  .article5 .edge {
    width: 1px;
    height: 150px;
    background: snow;
    position: absolute;
    top: 50%;
    left: 46.2%;
    transform: translate(0, -25%);
  }
  
  .article5 .content h1 {
    padding-bottom: 1px;
  }
  
  .article5 .content span {
    font-size: 10px;
  }
  
  .article6 {
    height: 100vh;
    margin: 0 20px;
    background-image: url(https://i.ibb.co/9N1d5LW/outside.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    display: flex;
    color: snow;
    width: 1480px;
  }
  
  .article6 .left, .article6 .right {
    width: 50%;
  }
  
  .article6 .left, .article6 .right {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 32px;
    margin: 200px 0;
  }
  
  .article6 .left, .article6 .right {
    border-right: 2px solid snow;
    cursor: pointer;
  }
  
  .article6 .left svg, .article6 .right svg {
    /* transition: opacity 170ms ease; */
    width: 20px;
    opacity: 0;
  }
  
  .article6 .left svg, .article6 .left span, .article6 .right svg, .article6 .right span {
    transition: transform 300ms ease, opacity 270ms ease;
  }
  
  .article6 .left:hover svg, .article6 .right:hover svg {
    transform: translate(70%, 0);
    opacity: 1;
  }
  
  .article6 .left:hover span, .article6 .right:hover span {
    transform: translate(-5%, 0);
  }