#page5 {
  width: 100%;
  flex-grow: 1;
}

.page5-side-menu {
  height: 100%;
  min-width: 70px;
  width: 70px;
  background: white;
  display: flex;
  flex-direction: column-reverse;
}

.page5-image {
  display: none;
  position: fixed;
  z-index: 1;
  width: 50%;
  bottom: 0;
  left: -1px;
  pointer-events: none;
}

.page-show .page5-image {
  display: flex;
}

.page5-content {
  flex-grow: 1;
  background: radial-gradient(circle at top, #565656, #1c1c1a, #1c1c1a);
  display: flex;
  overflow: auto;
}

.page5-col {
  width: 50%;
  color: white;
}

.page5-title-arrow-left {
  padding-left: 80px;
  margin-top: -30px;
}

.page5-title-arrow-top {
  margin-top: 30px;
}

.page5-title h1 {
  font-size: 50px;
  padding-left: 50px;
  padding-top: 50px;
}

.page5-title h2 {
  font-size: 15px;
  padding-left: 50px;
  padding-top: 10px;
}

.page5-info {
  padding: 50px 80px;
}

.page5-info-scroll h1 {
  margin-top: 30px;
  margin-bottom: 40px;
  font-size: 50px;
}

.page5-info-scroll h2 {
  margin-bottom: 20px;
}

.page5-text {
  margin-top: 20px;
  font-weight: 100;
}

.page5-text div {
  font-family: ubuntu-l;
}

.page5-space {
  flex-grow: 1;
}

.page5-button {
  background: transparent;
  border: 2px solid white;
  color: white;
  padding: 10px;
  font-size: 15px;
  width: 200px;
  cursor: pointer;
  outline: none;
  background: linear-gradient(to right, white 50%, transparent 50%);
  background-size: 200% 100%;
  background-position: right bottom;
  transition: all 0.2s ease-out;
}

.page5-button:hover {
  background-position: left bottom;
  color: black;
}

.page5-button:active {
  opacity: 0.5;
}

.page5-contact-info {
  display: flex;
  flex-direction: column;
  margin: 5px 0px;
}

.page5-icon-info {
  display: flex;
  align-items: center;
  height: 30px;
}

.page5-icon-info img {
  width: 20px;
  height: 20px;
  margin-right: 10px;
}

.page5-contact {
  display: flex;
  flex-direction: column;
}

.page5-contact .okeaa-button {
  width: 100%;
}

@media only screen and (max-width: 1100px) {
  .page5-side-menu {
    min-width: 50px;
    width: 50px;
  }

  .page5-info {
    padding: 50px 60px;
  }

  .page5-image {
    width: 60% !important;
  }
}

@media only screen and (max-width: 750px) {
  .page5-side-menu {
    display: none;
  }

  .page5-content {
    background: url(../img/page5bgt.png),
                radial-gradient(circle at top, #565656, #1c1c1a, #1c1c1a);
    background-color: rgba(0, 0, 0, 0.5);
    background-repeat: no-repeat;
    background-position: bottom center;
    background-size: contain;
  }

  .page5-content {
    flex-direction: column;
  }

  .page5-col {
    width: 100%;
  }

  .page5-title-arrow-left {
    /* padding-left: 80px;
    margin-top: -30px; */
    display: none;
  }
  
  .page5-title-arrow-top {
    /* margin-top: 30px; */
    display: none;
  }

  .page5-image,
  .page-show .page5-image {
    display: none;
  }
}