@media screen and (min-width: 1100px) { 
  .nav-effect {
    position: fixed;
    background-color: white;
    width: 100%;
    height: 80px;
    top: -80px;
    margin: 0;
    padding: 0;
    z-index: 3;
    box-shadow: 0 0 10px rgba(0,0,0,0.2);
    transition: all .5s ease;
  }

  .motion {
    position: fixed;
    top: 0px;
    width: 100%;
  }

  .static-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-align: right;
    white-space: nowrap;
    padding-top: 20px;
    padding-bottom: 10px;
    z-index: 4;
  }

  .static-nav img {
    width: 200px;
    margin-left: 50px;
  }

  .static-nav ul {
    margin-right: 50px;
  }

  .static-nav .nav-item {
    display: inline-block;
    margin: 0 20px;
  }

  .static-nav .nav-item a {
    display: block;
    width: 100%;
    height: 30px;
    line-height: 30px;
    text-align: left;
    text-decoration: none;
    color: white;
    font-size: 1.6rem;
    letter-spacing: 1.2px;
    font-family: serif;
    transition: all .5s ease;
  }

  .not-select::after{
    border-bottom: solid 1px;
    border-bottom-color: #fff;
    bottom: 0px;
    content: "";
    display: block;
    transition: all .3s ease;
    -webkit-transition: all .3s ease;
    width: 0;
  }

  .select::after {
    border-bottom: solid 1px;
    border-bottom-color: #000;
    bottom: 0px;
    content: "";
    display: block;
    transition: all .3s ease;
    -webkit-transition: all .3s ease;
    width: 0;
  }

  .static-nav .nav-item a:hover::after {
    width:100%
  }
}

@media screen and (max-width: 1099px) { 
  .nav-effect {
    position: fixed;
    background-color: white;
    width: 100%;
    height: 50px;
    top: -50px;
    margin: 0;
    padding: 0;
    z-index: 3;
    box-shadow: 0 0 10px rgba(0,0,0,0.2);
    transition: all .5s ease;
  }

  .motion {
    position: fixed;
    top: 0px;
    width: 100%;
  }

  .static-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-align: right;
    white-space: nowrap;
    padding-top: 15px;
    padding-bottom: 10px;
    z-index: 4;
  }

  #logo {
    width: 150px;
    margin-left: 15px;
  }

  .static-nav #pc-nav {
    display: none;
  }
}

/*top item position*/
@media screen and (max-width: 1099px) { 
  #theme {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    width: 70%;
    height: auto;
  }
}

@media screen and (min-width:1100px) {
  #theme {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    width: 50%;
    height: auto;
  }
}

.top {
  width: 100vw;
  min-height: 90vh;
  max-height: 90vh;
}

.vegas-timer {
  top: 85vh !important;
}
.vegas-timer-progress {
  background: #D4DAE7 !important;
}
