body {
  background: url("./img/rrbg.jpg") no-repeat top center fixed;
  background-size: cover;
  font-family: "Montserrat", sans-serif;
  min-height: 100vh;
  width: 100vw;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
a {
  text-decoration: none;
  color: white;
  text-align: left;
  padding-bottom: 10px;
}
.btn_wrapper {
  padding: 0;
  margin: 0;
  margin-right: 40px;
  width: 200px;
  height: 44px;
}
.flex_row {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
}
.flex_col {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  margin-top: 0;
  padding-top: 0;
  gap: 5;
}
.content_container {
  width: 100%;
  max-width: 1000px;
  padding: 0 30px;
  margin: auto;
  text-align: center;
  box-sizing: border-box;
}
.info {
  padding-top: 50px;
  margin: 0 auto;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
}
img {
  width: 100%;
  height: auto;
  display: block;
}
.left {
  margin: 0;
  padding: 0;
  width: 60%;
}
.right {
  width: 40%;
  border-left: 1px solid white;
  margin-left: 20px;
  padding-left: 20px;
}
.fancy-button {
  position: relative;
  display: block;
  margin: auto;
  cursor: pointer;
  margin: 20px;
  margin-top: 0;
  width: 200px;
  height: 44px;
  -webkit-perspective: 267px;
  perspective: 267px;
}
.fancy-button:hover .fancy-flipper {
  transform: rotateX(0deg);
}
.fancy-button .fancy-flipper {
  transition: transform 0.3s cubic-bezier(0.217, 0.6, 0.355, 1);
  transform-style: preserve-3d;
  transform: rotateX(-90deg);
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
}
.fancy-button .fancy-flipper svg {
  display: inline-block;
}
.fancy-button .fancy-front {
  transform: rotateX(0deg) translateZ(22px);
  backface-visibility: hidden;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
}
.fancy-button .fancy-back {
  transform: rotateX(90deg) translateZ(22px);
  backface-visibility: hidden;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
}
#stations .fancy-flipper {
  transform: rotateX(90deg);
}
#stations:hover .fancy-flipper {
  transform: rotateX(0deg);
}
#stations .fancy-front {
  transform: rotateX(0deg) translateZ(22px);
}
#stations .fancy-back {
  transform: rotateX(-90deg) translateZ(22px);
}
#investors .fancy-flipper {
  transform: rotateX(-90deg);
}
#investors:hover .fancy-flipper {
  transform: rotateX(0deg);
}
#investors .fancy-front {
  transform: rotateX(0deg) translateZ(22px);
}
#investors .fancy-back {
  transform: rotateX(90deg) translateZ(22px);
}
.button-text {
  text-transform: uppercase;
}
.large_bold {
  font-weight: bold;
  color: white;
  text-transform: uppercase;
  font-size: 2rem;
  margin-top: 0;
  padding-top: 0;
}

@media screen and (max-width: 870px) {
  .info {
    flex-direction: column;
  }
  .left {
    width: 100%;
    align-items: center;
    justify-content: center;
  }
  .right {
    margin: 0 auto;
    width: initial;
    border-left: none;
    margin-top: 40px;
    font-size: 1.2rem;
  }
  .right .large_bold {
    margin: 0 auto;
    padding-bottom: 20px;
  }
  .right > a {
    margin: 0 auto;
    padding-bottom: 15px;
  }
  .flex_col {
    justify-content: center;
  }
  a {
    text-align: center;
  }
}

@media screen and (max-width: 520px) {
  .left {
    flex-wrap: wrap;
    width: initial;
  }
  .btn_wrapper:nth-child(1) {
    margin-bottom: 20px;
  }
}
