
body#landpage-body {
  overflow-y: hidden;
  overflow-x: hidden;
}

body#landpage-body .wrapper {
  display: grid;
  grid-template-columns: 35% 65%;
  grid-template-rows: 63% 37%;
  width: 100vw;
  height: 100vh !important;
  max-width:100%;
  max-height:100%;
}

.box {
  padding: 10%;
  font-size: 140%;
  display: flex;
}

.upper-left {
  grid-column: 1;
  grid-row: 1;
  flex-direction: column;
  transform: translateX(-100%);
}

.upper-left.show{
  transform: translateX(0);
  -webkit-transition: 2s ease;
  -moz-transition: 2s ease;
  -o-transition: 2s ease;
}

.upper-left h5{
  margin-top: 0;
  margin-bottom: 15px;
  font-size: 35px;
}

.upper-left p{
  font-size: 25px;
  margin-top: 0;
  margin-bottom: 5px;
}

.landpage-logo-image{
  margin-top: auto;
  width: 60%;
  min-width: 150px;
}

.bottom-left {
  grid-column: 1 ;
  grid-row: 2 ;
  transform: translateY(100%);
}

.bottom-left.show{
  transform: translateY(0);
  -webkit-transition: 2s ease;
  -moz-transition: 2s ease;
  -o-transition: 2s ease;
}

.bottom-left p{
  margin: auto;
  font-size: 20px;
}

@keyframes animatedBackground {
  from {
    background-position: 100% 0;
  }
  to {
    background-position: 0 0;
  }
}

.right {
  grid-column: 2 / 3 ;
  grid-row: 1 / 3;
  background-image: url('/themes/atlas/assets/images/cover-image-min.png');
  background-size: cover;
  padding-right: 30%;
  flex-direction: column;
  background-position: 0 0;
  background-repeat: repeat-x;
  /*animation: animatedBackground 30s ease-out;*/
  transform: translateX(100%);
}

.right.show{
  transform: translateX(0);
  -webkit-transition: 2s ease;
  -moz-transition: 2s ease;
  -o-transition: 2s ease;
}

.right h1{
  margin-top: 10%;
  font-size: 85px;
  margin-bottom: 30px;
}

.right p{
  font-size: 40px;
  margin-bottom: 30px;
}

.right a.main-button {
  margin-bottom: auto;
  font-size: 20px;
}

.box.right{
  padding-top: 0;
}

@media only screen and (max-width: 715px) {
  body#landpage-body {
    overflow-x: auto;
  }


  #landpage-wrapper{
    display: block;
  }

  .bottom-left,
  .upper-left{
    display: none;
  }

  .right.show{
    transform: translateX(0);
    -webkit-transition: 0s ease;
    -moz-transition: 0s ease;
    -o-transition: 0s ease;
  }

  .right{
    grid-column: 1 / 3 ;
    grid-row: 1 / 3;
  }

}

@media only screen and (max-width: 540px) {
  .right h1 {
    font-size: 58px !important;
  }

  .right p{
    font-size: 42px !important;
  }
}


@media only screen and (max-width: 450px) {
  .right h1 {
    font-size: 54px !important;
  }

  .right p{
    font-size: 38px !important;
  }
}

@media only screen and (max-width: 380px) {
  .right h1 {
    font-size: 48px !important;
  }

  .right p{
    font-size: 32px !important;
  }
}

@media only screen and (max-width: 320px) {
  .right h1 {
    font-size: 40px !important;
  }

  .right p{
    font-size: 28px !important;
  }
}

@media only screen and (max-width: 290px) {
  .right h1 {
    font-size: 38px !important;
  }

  .right p{
    font-size: 26px !important;
  }
}
