/* Buttonblock */
.button_container {
    margin: 60px 0 97px;
}

.custom_button {
  background-color: #EC6911;
  color: #fff;
  padding: 14px 24px;
  font-size: 18px;
  text-decoration: none;
  font-weight: 700;
  border: 1px solid #EC6911;
  border-radius: 8px;
  font-family: 'marselis';
  line-height: 28px;
}

.custom_button:hover {
  opacity: 0.8;
  color: #fff;
  background-color: #C35717;
  border-color: #c35717;
}

.button_container.blue .custom_button {
  border: 1px solid #00446b;
  background-color: #00446b;
}

.button_container.blue .custom_button:hover {
  background-color: #fff;
  color: #00446b;
}

.button_container.left {
    text-align: left;
}

.button_container.center {
    text-align: center;
}

.button_container.right {
    text-align: right;
}

@media only screen and (max-width: 750px) {
  .button_container {
    margin: 45px 0;
  }

  .custom_button {
    padding: 12px 28px;
  }
}
