.scene {
  position: absolute;
  height: 100vh;
  top: 0;
  left: 0;
  right: 0;
	/* border: 1px solid black; */
}

.scene--active {
  position: fixed;
  /* max-width: calc(1360px - ((50px) * 2)); */
  max-width:100%;
  margin: auto;
  /* left:50px; */
	/* border: 1px solid red; */
}

.scene--ended {
  position: absolute;
  bottom: 0;
  top: auto;
}

.horizontal-scroll-section {
  position: relative;
  height: 100vh;
  opacity: 0;
  transition: 0.2s opacity;
}

.horizontal-scroll-section--init {
  opacity: 1;
}

.horizontal-scroll-section__content {
  display: flex;
  align-items: center;
}

.horizontal-scroll-section__content-wrapper {
  display: flex;
  height: 100%;
  align-items: center;
  position: relative;
}

.slide-container {
  position: relative;
  /* min-width: 100%; */
  text-align: left;
  width:auto;
  height: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
	align-items: center;
	margin-right: 50px; /* NEED TO CHECK THIS */
}

.slide-container .slide-content {
	width: 100%;
	padding: 20px;
}

.slide-container .slide-image {
	/* max-width: 60%;
	display: block;
	padding: 20px;
	margin: 20px;
	max-height: 90%;	 */
}

.slide-container .slide-image img {
  max-width: none;
  max-height: 700px;
}
@media (min-width:768px) {
  .slide-container .slide-content {
    min-width:600px;
  }
}
@media (max-width:767px) {
  .slide-container .slide-image img {
    max-height:400px;
    max-width: 100%;
  }
  .slide-container .slide-image {
    max-width:100%;
  }
  .slide-container {
    width:90%;
    min-width: 90%;
  }
  .slide-container .slide-image,
  .slide-container .slide-content {
    padding:0 20px 0 0;
  }
}
.end-slide {
	min-width: calc((100vw - 1360px + 100px) / 2); /* NEED TO CHECK THIS */
}