html, body, section, div, h1, p, a {
    font-family: Arial, Helvetica, sans-serif;
    color: #001b3f;
}

.body {
  display: flex;
  height: 100vh;
  justify-content: flex-start;
  align-items: center;
}

.homepage_container {
  position: relative;
  display: flex;
  width: 100%;
  max-width: 1200px;
  margin-right: auto;
  margin-left: auto;
  padding-right: 16px;
  padding-left: 16px;
  flex-flow: column;
  justify-content: center;
  align-items: flex-start;
  align-self: center;
  flex: 1 1 0%;
}

.headline_content {
  max-width: 85%;
  margin-bottom: 16px;
  flex: 0 1 auto;
}

@media screen and (min-width: 1280px) {
  .headline_content {
    max-width: 85%;
  }
}

@media screen and (max-width: 991px) {
  .headline_content {
    max-width: 100%;
  }
}

.heading_large {
  font-weight: bold;
  font-size: 72px;
}

@media screen and (max-width: 991px) {
  .heading_large {
    font-size: 60px;
  }
}

@media screen and (max-width: 767px) {
  .heading_large {
    font-size: 40px;
  }
}

.content_large {
  font-size: 40px;
  line-height: 125%;
  font-weight: 500;
  letter-spacing: -0.5px;
}

@media screen and (max-width: 767px) {
  .content_large {
    font-size: 32px;
  }
}

@media screen and (max-width: 479px) {
  .content_large {
    font-size: 24px;
  }
}

.action_button {
  z-index: 0;
  display: inline-block;
  padding: 16px 24px;
  justify-content: flex-start;
  align-items: flex-start;
  border-style: solid;
  border-width: 1px;
  border-top-color: #001b3f;
  border-right-color: #001b3f;
  border-bottom-color: #001b3f;
  border-left-color: #001b3f;
  background-color: #FFFFFF;
  font-size: 20px;
  line-height: 18px;
  font-weight: 500;
  text-decoration: none;
}

.action_button:hover {
  border-top-color: #ef7c53;
  border-right-color: #ef7c53;
  border-bottom-color: #ef7c53;
  border-left-color: #ef7c53;
  background-color: #ef7c53;
  color: #FFFFFF;
}

@media screen and (max-width: 479px) {
  .action_button {
    width: 100%;
    text-align: center;
  }
}