@import url("../../assets/css/reset.css");
@import url("../../assets/css/global.css");
@import url("../../assets/css/components/navigator.css");
@import url("../../assets/css/components/pills.css");
@import url("../../assets/css/components/link-button.css");
@import url("../../assets/css/components/gallery.css");

.s-wrapper {
  display: flex;
  flex-direction: column;
  width: 100vw;
  height: 100vh;
  overflow-y: hidden;
}

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

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

.s-page-wrapper .s-left-column {
  min-width: 50px;
  max-width: 100px;
  width: 20vw;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.s-page-wrapper .s-main-content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
  height: 100vh;
  padding-left: 24px;
  position: relative;
}

.s-page-wrapper .s-main-content__top {
  display: flex;
  flex-direction: column;
  overflow-y: scroll;
}

.s-page-wrapper .s-main-content__bottom {
  display: flex;
}

.s-page-wrapper .s-main-content__top .s-logo img {
  max-width: 95%;
  max-height: 18vh;
  margin-top: 36px;
}

.s-page-wrapper .s-main-content__top .s-middle-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.s-page-wrapper .s-main-content__top .s-description {
  background-color: rgba(0, 0, 0, 0.7);
  max-width: 600px;
  margin-right: 16px;
  padding: 20px;
  border-radius: 10px;
}

.s-page-wrapper .s-main-content__top .s-description .s-description__text {
  line-height: 170%;
}

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

.s-page-wrapper .s-main-content .s-links {
  padding: 16px;
}

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

.s-spiderman-01-01 {
  background-image: url("../../assets/images/spiderman-tobey/movie-01/background.png");
  background-size: cover;
}

.s-spiderman-01-02 {
  background-image: url("../../assets/images/spiderman-tobey/movie-02/background.png");
  background-size: cover;
}

.s-spiderman-01-03 {
  background-image: url("../../assets/images/spiderman-tobey/movie-03/background.png");
  background-size: cover;
}

.s-spiderman-02-01 {
  background-image: url("../../assets/images/spiderman-andrew/movie-01/background.png");
  background-size: cover;
}

.s-spiderman-02-02 {
  background-image: url("../../assets/images/spiderman-andrew/movie-02/background.png");
  background-size: cover;
}

.s-spiderman-03-01 {
  background-image: url("../../assets/images/spiderman-tom/movie-01/background.png");
  background-size: cover;
}

.s-spiderman-03-02 {
  background-image: url("../../assets/images/spiderman-tom/movie-02/background.png");
  background-size: cover;
}

.s-spiderman-03-03 {
  background-image: url("../../assets/images/spiderman-tom/movie-03/background.png");
  background-size: cover;
}

.s-wrapper .animate-top {
  animation-name: top-in;
  animation-duration: 0.5s;
  animation-timing-function: ease-in-out;
}

.s-wrapper .animate-bottom {
  animation-name: bottom-in;
  animation-duration: 0.5s;
  animation-timing-function: ease-in-out;
}

@keyframes top-in {
  from {
    width: 100vw;
    height: 100vh;
    position: absolute;
    transform: translateY(-100vh);
    z-index: 5;
  }
  to {
    width: 100vw;
    height: 100vh;
    position: absolute;
    transform: translateY(0vh);
    z-index: 5;
  }
}

@keyframes bottom-in {
  from {
    width: 100vw;
    height: 100vh;
    position: absolute;
    transform: translateY(100vh);
    z-index: 5;
  }
  to {
    width: 100vw;
    height: 100vh;
    position: absolute;
    transform: translateY(0vh);
    z-index: 5;
  }
}

@media screen and (max-width: 600px) {
  .s-page-wrapper .s-main-content {
    padding-left: 0;
  }

  .s-page-wrapper .s-main-content__top .s-middle-content {
    justify-content: flex-start;
  }
}

@media screen and (max-height: 540px) {
  .s-page-wrapper .s-main-content {
    justify-content: start;
  }

  .s-page-wrapper .s-main-content__top .s-middle-content {
    justify-content: start;
  }
}
