.page {
  min-height: calc(100vh - 131px);
}

@media (max-width: 513px) {
  .page {
    min-height: calc(100vh - 152px);
    overflow: hidden;
  }
}


.page .breadcrumb {
  max-width: 1000px;
  margin: auto;
  padding: 50px 50px 0;
  font-size: 0.9em;
  font-weight: 500;
}

@media (max-width: 1200px) {
  .page .breadcrumb {
    padding: 20px 20px 0;
  }
}

.page .breadcrumb .item {
  display: inline-block;
  padding: 5px 0;
  margin-right: 5px;
  text-transform: uppercase;
  color: var(--mid-grey);
}

.page .breadcrumb a.item {
  text-decoration: none;
  color: var(--mid-green);
}

.page .breadcrumb a.item:hover {
  text-decoration: underline;
}

.page .breadcrumb .item:after {
  content: " ";
  height: 20px;
  width: 20px;
  display: inline-block;
  vertical-align: -4px;
  margin-left: 5px;
  background: url('/static/images/chevron_right_mid_grey.svg') center/contain no-repeat;
}

.page .breadcrumb .item:last-child:after {
  display: none;
}

.page .page_title {
  background: linear-gradient(to right, #016D4D, #1F9E5C);
  padding: 50px;
  text-align: center;
}

@media (max-width: 1200px) {
  .page .page_title {
    padding: 20px;
  }
}

.page .page_title .title {
  color: #fff;
  font-size: 1.8em;
  font-weight: 800;
}
