@import url('./reset.css');
@import url('./global.css');
@import url('./components/_gallery.css');
@import url('./components/_link-button.css');
@import url('./components/_navigator.css');
@import url('./components/_pills.css');

.s-wrapper {
  display: flex;
  height: 100vh;
  flex-flow: row nowrap;
}

.s-wrapper video {
  position: fixed;
  width: 100%;
}

.s-wrapper .s-left-column {
  width: 100px;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  padding-right: 50px;
  left: 0;
  top: 0;
  z-index: 1;
}

.s-wrapper .s-main-content {
  height: 100%;
  width: 100%;
  padding-left: 130px;
  position: relative;
}

.s-wrapper .s-main-content__top {
  height: 80vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.s-wrapper .s-main-content__bottom {
  height: 20vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.s-wrapper .s-main-content .s-logo img {
  margin-top: 50px;
  margin-left: 0;
  margin-bottom: 30px;
}

.s-wrapper .s-main-content__top .s-description {
  background-color: rgba(0,0,0,0.7);
  max-width: 50%;
  padding: 20px;
  border-radius: 10px;
}

.s-wrapper .s-main-content__top .s-description .s-description__text p {
  color: #fff;
  line-height: 170%;
}

.s-wrapper .s-main-content__top .s-description .pills {
  margin-bottom: 20px;
}

.s-wrapper .s-main-content .s-links {
  padding: 20px;
  padding-left: 0;
}

.s-wrapper .s-main-content .s-links ul{
  display: flex;
  flex-direction: row;
}

@media screen and (max-width: 1560px) {
  .s-wrapper video {
    height: 100%;
    object-fit: cover;
  }
  
}

@media screen and (max-width: 820px) {
  .s-wrapper .s-main-content .s-logo img {
    width: 80vw;
  }

  .s-wrapper .s-main-content__bottom {
    height: 50vh;
  }
  
}

@media screen and (max-width: 480px) {
  * {
    font-size: 12px;
  }
  
  .s-wrapper .s-main-content__top .s-description {
    max-width: 80%;
  }

  .s-wrapper .s-left-column {
    width: 60px;
  }

  .s-wrapper .s-main-content {
    padding-left: 70px;
  }

  .s-wrapper .s-main-content__bottom {
    height: 120vh;
    position: absolute;
  }
  
}

@media screen and (max-width: 390px) {
  .s-wrapper .s-main-content__bottom {
    justify-content: flex-start;
    margin-top: 200px;
  }
}

@media screen and (max-height: 570px) {
  .s-wrapper .s-main-content__bottom {
    margin-top: 300px;
  }
}