.page_banner {
    position: relative;
    height: 700px;
    background-size: cover !important;
    display: flex;
    align-items: center;
    justify-content: center;
}
.page_banner .overlay {
  position: absolute;
  height: 100%;
  width: 100%;
  background-color: rgba(0,0,0,.7);
  display: none;
}
.page_banner .image {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-size: cover !important;
}
.page_banner .content_container {
  display: flex;
  justify-content: end;
  z-index: 2;
}
.page_banner .content_container.left_content {
  justify-content: start;
}
.page_banner .content {
  display: flex;
  flex-direction: column;
  width: 32%;
}
.page_banner {
  color: #FFF;
}
.page_banner .button-b {
  color: #FFF;
  position: relative;
  top: 7px;
  margin-left: 30px;
}
.page_banner .links {
  display: flex;
}

@media only screen and (max-width: 768px) {
  .page_banner {
    height: 550px;
  }
  .page_banner .content_container {
    padding: 60px 20px;
  }
  .page_banner .overlay {
    display: block;
  }
  .page_banner .content {
    width: 100%;
  }
  .page_banner .image {
    background-position: 30% center !important;
  }
}
