:root {
  --translate: -107vh;
}

body {
  perspective: 180vh;
  transform: translate3d(0, 0, 0);
  width: 100%;
  height: 100%;
  overflow: hidden;
  height: 100vh;
}

#index {
  position: absolute;
  top: 100%;
  left: 0;
  width: 90%;
  margin: 0 5%;
  -webkit-transform-origin: 50% 0;
  transform-origin: 50% 0;
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
  -webkit-transform: rotateX(60deg) translate3d(0, var(--translate), 0);
  transform: rotateX(60deg) translate3d(0, var(--translate), 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  text-align: center;
  transition: all 0.4s;
  flex-direction: column-reverse;
  display: flex;
  pointer-events: none;
}

#index>div {
  position: relative;
  transform-style: preserve-3d;
  backface-visibility: hidden;
  transform: rotateX(-60deg) translateZ(0);
  text-align: center;
  -webkit-transform: translateZ(0);
  transform: rotateX(-60deg) translateZ(0);
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
  -webkit-backface-visibility: hidden;
  transition: transform 0.5s ease-in-out, opacity 0.5s ease-in-out;
  -webkit-transition: -webkit-transform 0.5s ease-in-out,
    -webkit-opacity 0.5s ease-in-out;
  /* padding: 10% 0 0 0; */
  height: 70vh;
  display: flex;
  opacity: 0;
  -webkit-opacity: 0;
}

#index>div:nth-child(1) .container {
  align-self: start;
}

#index>div:nth-child(1),
#index>div:nth-child(2),
#index>div:nth-child(3) {
  opacity: 1;
  -webkit-opacity: 1;
}

/* #index>div:nth-child(1),
#index>div:nth-child(2),
#index>div:nth-child(4),
#index>div:nth-child(6){
  height: 90vh;
} */
#index>div .container {
  justify-self: center;
  align-self: center;
  text-align: center;
  margin: 0 auto;
}

#index .description_content {
  font-size: 30px;
  line-height: 1.3;
  text-align: center;
  /* min-width: 35vw; */
  margin: 0 auto;
}

.landscape_img picture.img-responsive img,
.img-max-width-1453 .img-responsive img {
  max-width: 1453px !important;
  width: 100%;
  
}
.description_content p,
.description_content p a,
.description_content p span{
  font-family: 'GTPlanarRetalic15', Arial, Helvetica, sans-serif !important;
  line-height: 1.5;
}

#index h1{
  padding-top: 50px;;
}
#index h1,
#index h1 p{
  font-size: 70px;
}
@media  (max-width: 767px) {
  body {
    perspective: 3800px;
  }
}
@media screen and (orientation: portrait) and (max-width: 480px) {
  #index {
    width: 120%;
    margin: 0 -10%;
  }
}
/* 
@media screen and (orientation: landscape) and (max-width: 1024px) {
  body {
    perspective: 70vh;
  }
} */