#page2 {
  width: 100%;
  flex-grow: 1;
}

.page2-side-menu {
  height: 100%;
  min-width: 70px;
  width: 70px;
  background: white;
  display: flex;
  flex-direction: column-reverse;
}

.page2-image {
  display: none;
  position: fixed;
  z-index: 1;
  height: 100vh;
  top: 0;
  right: 0px;
  bottom: 0;
  pointer-events: none;
}

.page-show .page2-image {
  display: flex;
}

.page2-image-arrow {
  position: fixed;
  z-index: 1;
  top: 40%;
  right: -30px;
  pointer-events: none;
}

.page2-content {
  flex-grow: 1;
  background: radial-gradient(circle at top, #565656, #1c1c1a, #1c1c1a);
  overflow: auto;
}

.page2-info {
  color: white;
  width: 50%;
  height: 100%;
  padding: 50px;
  display: flex;
  flex-direction: column;
}

.page2-info h1 {
  margin-top: 30px;
  margin-bottom: 40px;
  font-size: 50px;
}

.page2-info h2 {
  margin-bottom: 20px;
}

.page2-text {
  margin-top: 20px;
  font-weight: 100;
}

.page2-text div {
  font-family: ubuntu-l;
}

.page2-space {
  flex-grow: 1;
  margin: 10px 0px;
}

@media only screen and (max-width: 1100px) {
  .page2-side-menu {
    min-width: 50px;
    width: 50px;
  }
}

@media only screen and (max-width: 750px) {
  .page2-image,
  .page-show .page2-image {
    display: none;
  }

  .page2-content {
    background: url(../img/page2bgt.png),
                radial-gradient(circle at top, #565656, #1c1c1a, #1c1c1a);
    background-position: right;
    background-size: contain;
    background-repeat: no-repeat;
    overflow: auto;
  }

  .page2-image-arrow {
    display: none;
  }

  .page2-side-menu {
    display: none;
  }

  .page2-info {
    width: 100%;
  }
}