/* Page */
.page {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
}

/* intro */
.intro {
  height: 100vh;
  width: 100%;
}
.intro .section-content {
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.intro .email {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translateX(-50%) translateY(-50%);
          transform: translateX(-50%) translateY(-50%);
}
.intro .email a {
  font-size: 2vw;
  color: #206BFF;
  text-decoration: none;
}

.text-banner {
  text-align: center;
}
.banner-title {
  line-height: 1.2;
  margin: 0;
  font-size: 14vw;
  color: #0F1011;
  text-transform: uppercase;
}
/* Portfolio */

.portfolio {
  position: relative;
  height: 100vh;
  padding: 70px 0;
}
.portfolio .section-container {
  position: relative;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  height: 100%;
}
.portfolio .article-list {
  position: absolute;
  left: 25vw;
  width: auto;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
  overflow: hidden;
}
.portfolio .article {
  width: 50vw;
  padding: 20px;
}
.portfolio .article-box {
  width: 100%;
}
.portfolio .article-image {
  width: 100%;
  height: 60vh;
  min-height: 300px;
  margin-bottom: 20px;
}
.portfolio .article-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.portfolio .article-content {
  position: relative;
  padding-left: 50px;
}
.portfolio .article-content h4 {
  font-size: 30px;
  font-weight: 300;
  line-height: 1.3;
}
.portfolio .article__num {
  position: absolute;
  left: 0;
  top: 0;
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 300;
}
.portfolio .article-container {
  height: 100%;
}
@media screen and (max-width: 900px) {
  .portfolio .article {
    width: 90vw;
  }
  .portfolio .article-list {
    left: 5vw;
  }
}

.horizontal-list {
  height: 100%;
  white-space: nowrap;
}
/* Detail */
.detail {
  position: relative;
  height: 100vh;
  padding: 70px 0;
}
.detail .section-container {
  position: relative;
  width: 100vw;
}
.detail .article-list {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: auto;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
  overflow: hidden;
}

.detail .article {
  height: 100%;
  margin-right: 60px;
  display: inline-block;
}
.article-detail {
  width: auto;
}
.article-detail .article-container {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
}
.article-detail .article-content {
  padding: 60px;
}

@media screen and (max-width: 900px){
  .detail {
    height: auto;
  }
  .detail .article {
    display: block;
    width: 100%;
    margin: 0;
    padding: 20px;
  }
  .detail .article-list {
    position: relative;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;

  }
  .article-detail .article-container {
    display: block;
    padding: 0 0;
  }
  .article-detail .article-content {
    padding: 60px 0;
  }
}

/* Static */
.static {
  position: relative;
  height: 100vh;
  padding: 70px 0;
}
.static .section-container {
  position: relative;
  width: 100vw;
}
.static .article-list {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: auto;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
  overflow: hidden;
}

.static .article {
  height: 100%;
  padding: 0 60px;
  display: inline-block;
}
@media screen and (max-width: 900px){
  .static {
    height: auto;
    padding: 70px 0;
  }
  .static .article-list {
    position: relative;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .static .article {
    padding: 0 20px;
  }

}
.next {
  height: 100%;
}
.next .article-container {
  position: relative;
  display: block;
  width: 33vw;
  height: 100%;
  cursor: pointer;
}
.next .article-content {
  position: absolute;
  top: 0;
  left: 0;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-align-items: center;
  align-items: center;
  text-align: center;
  height: 100%;
  width: 100%;
  padding: 60px;
  color: #FFF;
  z-index: 2;
}
.next .article-box {
  width: 100%;
}
.next .article-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.next .article-image:after {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  content: '';
  background: #000000;
  opacity: 0.8;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
}
.next:hover .article-image:after{
  opacity: 0.5;
}
.next .article-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media screen and (max-width: 900px){
  .detail .article.next {
    height: 50vh;
    width: 100%;
  }
  .next .article-container {
    width: 100%;
  }
}
/* Picture */
.picture .article-container {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
}
.picture .article-image {
  height: 100%;
  min-width: 50vh;
}
.picture .article-image img {
  height: 100%;
}
@media screen and (max-width: 900px){
  .picture {

  }
  .picture .article-image {
    position: relative;
    width: 100%;
    display: block;
  }
  .picture .article-image img {

    height: auto;
    width: 100%;
  }

}
/* content picture */
.contentpicture .article-container {
  position: relative;
  height: 100%;
}
.contentpicture .article-content {
  width: 34%;
}
.contentpicture .article-image {
  width: 66%;
}
@media screen and (max-width: 900px) {
  .contentpicture .article-content {
    width: 100%;
    margin-bottom: 70px;
  }
  .contentpicture .article-image {
    width: 100%;
  }
}
/* Content */
.content .article-container{
  height: 100%;
}
.content .article-content {
  padding: 60px;
}
/* Counter */
.counter {
  position: absolute;
  bottom: 0;
  right: 0;
  padding: 0 4vw;
  height: 70px;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-align-items: center;
  align-items: center;
  font-size: 14px;
}
.counter-list li {
  position: relative;
  padding: 0 5px;
  height: 30px;
  width: 30px;
  line-height: 30px;
}
.counter-line {
  position: relative;
  width: 250px;
  height: 1px;
  margin-right: 40px;
}
.counter-line:before{
  position: absolute;
  content: '';
  left: -25px;
  right: -25px;
  top: 0;
  height: 1px;
  background-color: rgba(0,0,0,0.2);
}
.counter-bar {
  position: absolute;
  top: 0;
  left: 0;
  height: 2px;
  width: 50px;
  background-color: #000000;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  -webkit-transition: all .5s ease;
  transition: all .5s ease;
}
.counter-bar.noanimated {
  -webkit-transition: none;
  transition: none;
}
.count-enter-active,
.count-leave-active {
  position: absolute;
  transition: all cubic-bezier(0.77, 0, 0.175, 1) 0.5s;
  transition: all cubic-bezier(0.77, 0, 0.175, 1) 0.5s;
}

.count-enter {
  opacity: 0;
  -webkit-transform: translateY(-15px);
          transform: translateY(-15px);
}
.count-leave-to {
  opacity: 0;
  -webkit-transform: translateY(15px);
          transform: translateY(15px);
}
@media screen and (max-width: 500px) {
  .counter {
    display: none;
  }
}
@media screen and (max-width: 900px) {
  .counter-line {
    position: relative;
    width: 150px;
    height: 1px;
    margin-right: 40px;
  }
  .counter-line:before{
    left: -15px;
    right: -15px;

  }
  .counter-bar {
    width: 30px;
  }

}
.arrow-link {
  display: inline-block;
  width: auto;
  cursor: pointer
}
.arrow-link div{
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  width: auto;
}
.arrow-link span {
  display: block;
  text-transform: uppercase;
  font-weight: bold;
}
.arrow-link i {
  font-size: 28px;
  padding: 0 5px;
}
.arrow-btn {
  margin-top: 40px;
  padding: 10px 35px 10px 25px;
  border: 1px solid #000000;

}
.section.info {
    position: relative;
    height: 100vh;
    padding: 70px 0;
}
.section.info .article,
.section.info .article-list {
  height: 100%;
}
@media screen and (max-width: 900px) {
  .section.info {
    height: auto;
  }
}
