@charset "UTF-8";
/**
 * Debug the site breakpoint
 * element only exists if WP_DEBUG is true
 */
.debug:after {
  box-sizing: border-box;
  position: fixed;
  display: block;
  bottom: 10px;
  right: 10px;
  padding: 5px 28px 5px 20px;
  font-size: 12px;
  font-weight: bold;
  color: #777;
  border-radius: 3px;
  background-color: #f7f7f7;
  box-shadow: 0 2px 2px rgba(0, 0, 0, 0.3);
  z-index: 100000;
}
@media (min-width: 475px) {
  .debug:after {
    content: "Small (850px)  | " attr(data-template);
    background: linear-gradient(to right, #f7f7f7, #f7f7f7 95%, #ffde03 95%, #ffde03 100%);
  }
}
@media (min-width: 850px) {
  .debug:after {
    content: "Medium (850px) | " attr(data-template);
    background: linear-gradient(to right, #f7f7f7, #f7f7f7 95%, #ff0266 95%, #ff0266 100%);
  }
}
@media (min-width: 1000px) {
  .debug:after {
    content: "Large (1000px) | " attr(data-template);
    background: linear-gradient(to right, #f7f7f7, #f7f7f7 95%, #0336ff 95%, #0336ff 100%);
  }
}
@media (min-width: 1200px) {
  .debug:after {
    content: "X-Large (1200px) | " attr(data-template);
    background: linear-gradient(to right, #f7f7f7, #f7f7f7 95%, #4A148C 95%, #4A148C 100%);
  }
}

.screen-reader-text {
  position: absolute;
  left: -10000px;
  top: auto;
  width: 1px;
  height: 1px;
  clip: rect(1px, 1px, 1px, 1px);
  overflow: hidden;
}

.skip-link {
  position: absolute;
  top: -100%;
  padding: 0.625rem;
  left: 0;
  color: black;
  font-weight: 700;
  font-size: 1.1875rem;
  background: #005eb8;
  text-decoration: none;
  z-index: 10000;
}

.skip-link:focus {
  left: 0;
  top: 0;
  text-decoration: underline;
  color: white;
}

input:focus,
button[type=submit]:focus {
  outline: 0.1875rem solid #005eb8;
}

a:focus,
input:focus,
button:focus,
select:focus,
p a:focus h1 a:focus,
h2 a:focus,
h3 a:focus,
h4 a:focus {
  color: black;
  text-decoration: none;
}
@supports (display: block) {
  a:focus,
input:focus,
button:focus,
select:focus,
p a:focus h1 a:focus,
h2 a:focus,
h3 a:focus,
h4 a:focus {
    background-color: #fae100;
    box-shadow: 0 0 #fae100, 0 0.1875rem black;
    outline: 0.1875rem solid transparent;
  }
}

select:focus option {
  background-color: white;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

audio,
canvas,
iframe,
img,
svg,
video {
  vertical-align: middle;
}

figure {
  min-height: 1px;
}

html {
  line-height: 1.5;
}

body {
  font-family: "Frutiger W01", Arial, sans-serif;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: #212b32;
  max-width: 91.25rem;
  margin: 0 auto;
}

p,
ul,
ol,
input,
textarea,
label,
.gfield_label,
select {
  margin-bottom: 1.5rem;
  font-size: 1rem;
  font-weight: 400;
}
@media (min-width: 850px) {
  p,
ul,
ol,
input,
textarea,
label,
.gfield_label,
select {
    font-size: 1.1875rem;
  }
}
@media (min-width: 1000px) {
  p,
ul,
ol,
input,
textarea,
label,
.gfield_label,
select {
    font-size: 1.1875rem;
  }
}

a {
  color: #005eb8;
  text-underline-offset: 2px;
}

a:hover {
  text-decoration-thickness: 0.1875rem;
  color: #003087;
}

p a {
  display: inline;
  text-decoration: underline;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Frutiger W01", Arial, sans-serif;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 0.75rem;
}

h1 {
  font-size: 2.375rem;
}
@media (min-width: 850px) {
  h1 {
    font-size: 3rem;
  }
}

h2 {
  font-size: 1.5rem;
}
@media (min-width: 850px) {
  h2 {
    font-size: 2rem;
  }
}

h3 {
  font-size: 1.1875rem;
}
@media (min-width: 850px) {
  h3 {
    font-size: 1.5rem;
  }
}

h4 {
  font-size: 1rem;
}
@media (min-width: 850px) {
  h4 {
    font-size: 1.1875rem;
  }
}

ul,
ol {
  padding-left: 1.5rem;
}

.screen-reader-text {
  position: absolute;
  left: -10000px;
  top: auto;
  width: 1px;
  height: 1px;
  clip: rect(1px, 1px, 1px, 1px);
  overflow: hidden;
}

/**
 * Responsive images
 */
img {
  max-width: 100%;
  height: auto;
}

.u-wrapper {
  width: 90%;
  max-width: 77.5rem;
  margin: 0 auto;
}
@media (min-width: 850px) {
  .u-wrapper {
    width: 95%;
  }
}
@media (min-width: 1000px) {
  .u-wrapper {
    width: 90%;
  }
}

.header-wrapper {
  position: relative;
  width: 90%;
  max-width: 77.5rem;
  margin: 0 auto;
}
@media (min-width: 850px) {
  .header-wrapper {
    width: 95%;
  }
}
@media (min-width: 1000px) {
  .header-wrapper {
    width: 90%;
  }
}

/**
* Forms
*/
fieldset {
  border: none;
  padding: 0;
  margin: 0;
}

input[type=text],
input[type=search],
input[type=tel],
input[type=number],
input[type=file],
input[type=email],
input[type=password],
input[type=url],
textarea {
  width: 100%;
  font-weight: 400;
  font-family: "Frutiger W01", Arial, sans-serif;
  font-size: 1rem;
  border: 0.0625rem solid #4c6272;
  color: #212b32;
  background-color: white;
  padding: 0.9375rem;
}
@media (min-width: 850px) {
  input[type=text],
input[type=search],
input[type=tel],
input[type=number],
input[type=file],
input[type=email],
input[type=password],
input[type=url],
textarea {
    font-size: 1.1875rem;
  }
}
input[type=text]:focus,
input[type=search]:focus,
input[type=tel]:focus,
input[type=number]:focus,
input[type=file]:focus,
input[type=email]:focus,
input[type=password]:focus,
input[type=url]:focus,
textarea:focus {
  outline: 0.1875rem solid #005eb8;
}

label,
.gfield_label {
  display: inline-block;
  color: #212b32;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

textarea {
  resize: vertical;
}

button {
  font-family: "Frutiger W01", Arial, sans-serif;
}
button:focus {
  outline: 0.1875rem solid #005eb8;
}

.gform_previous_button.button {
  padding: 0.3125rem 0.625rem 0.3125rem 2rem;
  background: #005eb8 url("../imgs/icons/arrow-left-blue.svg") no-repeat;
  background-size: 0.75rem 0.75rem;
  background-position: center left 0.75rem;
}
@media (min-width: 850px) {
  .gform_previous_button.button {
    padding: 0.625rem 1.25rem 0.625rem 2.5rem;
    background-size: 0.875rem 0.875rem;
  }
}

input[type=file] {
  margin: 0;
  cursor: pointer;
  outline: none;
  -webkit-font-smoothing: antialiased;
  -webkit-appearance: none;
  height: auto;
  width: 100%;
  text-decoration: none;
}

input[type=checkbox] {
  display: inline-block;
  appearance: none;
  width: 1.875rem;
  height: 1.875rem;
  border: 0.125rem solid #4c6272;
  border-radius: 0.1875rem;
  padding: 0.1875rem;
  margin: 0 1.5rem 0 0;
  background-color: white;
}

input[type=checkbox]:checked {
  background-image: url("../imgs/icons/tick.svg");
}

input[type=radio] {
  display: inline-block;
  appearance: none;
  width: 1.875rem;
  height: 1.875rem;
  border: 0.125rem solid #4c6272;
  border-radius: 50%;
  padding: 0.1875rem;
  margin: 0 1.5rem 0 0;
  background-color: white;
}

input[type=radio]:checked {
  background-image: url("data:image/svg+xml,<svg viewBox='0 0 20 20' fill='white' xmlns='http://www.w3.org/2000/svg'><circle cx='10' cy='10' r='5'/></svg>");
  background-color: #005eb8;
}

input[type=search] {
  border: none;
  border-radius: 0;
}

select {
  font-size: 1rem;
  padding: 0.9375rem;
}
@media (min-width: 850px) {
  select {
    font-size: 1.1875rem;
  }
}
@supports (display: block) {
  select {
    appearance: none;
    -moz-appearance: none;
    -webkit-appearance: none;
    padding: 0.9375rem;
    padding-right: 2.1875rem;
    background-image: url("../imgs/icons/chevron-down.svg");
    background-repeat: no-repeat;
    background-color: #fff;
    background-position: right 0.625rem center;
    background-size: 1.375rem 1.375rem;
    border: 0.0625rem solid #4c6272;
    border-radius: 0;
    color: #212b32;
  }
}

select[multiple=multiple] {
  background-image: none;
  padding: 0.9375rem;
}

.gchoice {
  display: flex;
  margin-bottom: 0.75rem;
}

.gform_fields {
  margin-left: 0;
  padding-left: 0;
  display: flex;
  flex-wrap: wrap;
}

.gfield {
  width: 100%;
  list-style: none;
  margin-bottom: 1.875rem;
}

.gfield_radio {
  list-style: none;
  padding: 0;
}

.gfield_list_group select,
.gfield_list_group .select {
  width: 100%;
}

.gfield_required {
  font-weight: 400;
  padding-left: 0.3125rem;
}

.field_description_below input,
.field_description_below select,
.field_description_below .textarea {
  margin-bottom: 0;
}
.field_description_below .gfield_description {
  margin-top: 0.5rem;
}

.field_description_above input,
.field_description_above select,
.field_description_above .textarea {
  margin-bottom: 1.875rem;
}
.field_description_above .gfield_description {
  margin-bottom: 0.5rem;
}

.gsection_title {
  margin-bottom: 0;
}

.ginput_container_fileupload {
  margin-bottom: 0.375rem;
}

.gfield_checkbox,
.gfield_radio {
  list-style-type: none;
  margin: 0;
  padding: 0;
}
.gfield_checkbox li,
.gfield_radio li {
  display: flex;
  align-items: center;
  margin-bottom: 0.375rem;
}
.gfield_checkbox label,
.gfield_radio label {
  font-weight: 400;
  margin: 0;
  flex: 1 0;
}

.ginput_complex {
  display: flex;
  align-items: center;
  margin-left: -0.375rem;
}
.ginput_complex .ginput_container {
  padding-left: 0.375rem;
}

.ginput_container_consent {
  display: flex;
  align-items: center;
  margin-bottom: 0.375rem;
}
.ginput_container_consent label {
  margin: 0;
  font-weight: 400;
}

.ginput_container_name {
  display: flex;
  flex-wrap: wrap;
  margin-left: -1.5rem;
}
.ginput_container_name span {
  margin-bottom: 1.5rem;
}
.ginput_container_name span:last-of-type {
  margin-bottom: 0;
}
@media (min-width: 850px) {
  .ginput_container_name span {
    margin-bottom: 0;
  }
}
.ginput_container_name .name_prefix,
.ginput_container_name .name_first,
.ginput_container_name .name_last {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding-left: 1.5rem;
}
.ginput_container_name .name_prefix label,
.ginput_container_name .name_first label,
.ginput_container_name .name_last label {
  font-weight: 400;
  margin: 0 0.75rem 0 0;
}
.ginput_container_name .name_prefix input[type=text],
.ginput_container_name .name_first input[type=text],
.ginput_container_name .name_last input[type=text] {
  order: 2;
  width: 100%;
}
.ginput_container_name .name_first,
.ginput_container_name .name_last {
  flex-basis: 100%;
}
@media (min-width: 850px) {
  .ginput_container_name .name_first,
.ginput_container_name .name_last {
    flex-basis: 50%;
  }
}

.ginput_container_name.has_prefix .name_first,
.ginput_container_name.has_prefix .name_last {
  flex-basis: 100%;
  flex-grow: 1;
}
@media (min-width: 850px) {
  .ginput_container_name.has_prefix .name_first,
.ginput_container_name.has_prefix .name_last {
    flex-basis: 33.33%;
  }
}

.gfield_password_strength {
  padding: 0.25rem 0.5rem;
  margin-top: 0.75rem;
  font-size: 0.875rem;
  background-color: #cad1d5;
  font-weight: 700;
  width: 100%;
}
@media (min-width: 850px) {
  .gfield_password_strength {
    width: 50%;
  }
}

.gfield_password_strength.short {
  background-color: rgba(213, 40, 27, 0.2);
}

.gfield_password_strength.bad {
  background-color: rgba(255, 165, 0, 0.2);
}

.gfield_password_strength.good {
  background-color: rgba(0, 128, 0, 0.2);
}

.gfield_password_strength.strong {
  background-color: rgba(0, 128, 0, 0.2);
}

.clear-multi {
  display: flex;
}

.ginput_container_time {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
}
.ginput_container_time label {
  width: 100%;
  font-weight: 400;
  margin-bottom: 0;
}
.ginput_container_time input,
.ginput_container_time .select {
  width: 100%;
  flex: 1;
}
.ginput_container_time i {
  padding: 0 0.625rem;
}

.gfield_time_hour {
  max-width: 6.25rem;
}

.gfield_time_minute {
  max-width: 5.625rem;
  margin-right: 1.25rem;
}

.gfield_time_ampm {
  width: 6.875rem;
}

.ginput_container_address {
  display: flex;
  flex-wrap: wrap;
}
@media (min-width: 850px) {
  .ginput_container_address {
    margin-left: -1.5rem;
  }
  .ginput_container_address .ginput_full {
    display: flex;
    flex-direction: column;
    width: 100%;
    padding-left: 1.5rem;
    margin-bottom: 0.375rem;
  }
  .ginput_container_address .ginput_left,
.ginput_container_address .ginput_right {
    width: 50%;
    padding-left: 1.5rem;
    margin-bottom: 0.375rem;
  }
  .ginput_container_address label {
    width: 100%;
    font-weight: 400;
  }
  .ginput_container_address input,
.ginput_container_address .select {
    width: 100%;
  }
}

.gform_hidden,
.gfield_visibility_hidden {
  display: none;
}

.gfield_error {
  border: 0.1875rem solid #d5281b;
  border-radius: 0.625rem;
  padding: 0.625rem 0 0 0;
}
.gfield_error > * {
  padding: 0 0.625rem 0 0.625rem;
}

.validation_message {
  margin: 0.9375rem 0 0 0;
  background: #d5281b;
  color: white;
}
.validation_message:before {
  content: "*";
}

.recaptcha-text {
  color: #4c6272;
  font-size: 0.875rem;
}

.noscroll {
  overflow: hidden;
}

.noscroll-modal {
  overflow: hidden;
}

#cookie-notice {
  z-index: 75 !important;
}

#cn-notice-text {
  font-size: 0.875rem;
}
@media (min-width: 850px) {
  #cn-notice-text {
    font-size: 1rem;
  }
}

table {
  width: 100%;
  table-layout: fixed;
  overflow-wrap: break-word;
  border-collapse: collapse;
  overflow-x: auto;
  margin-bottom: 1.5rem;
}

tbody td {
  border-bottom: 0.0625rem solid #aeaeae;
}

td,
th {
  font-size: 1rem;
  vertical-align: top;
  padding: 0.5rem 1rem 0.5rem 0;
  border: none;
  border-bottom: 0.0625rem solid #212b32;
}
@media (min-width: 850px) {
  td,
th {
    padding: 1rem 1.5rem 1rem 0;
    font-size: 1.1875rem;
  }
}
td:last-child,
th:last-child {
  padding-right: 0;
}

th {
  text-align: left;
  border-bottom-width: 0.125rem;
}

thead {
  border-bottom: none;
}

tfoot {
  border-top: none;
}

@media print {
  body {
    padding: 1cm;
    position: relative;
  }
  body * {
    color: black !important;
  }
  .container {
    min-height: unset !important;
    overflow: visible;
  }
  .site-header {
    display: none !important;
  }
  .nav-tertiary-wrapper {
    display: none !important;
  }
  .site-footer {
    display: none !important;
  }
  .alert-banner {
    display: none !important;
  }
  .social-media-banner {
    display: none !important;
  }
  .content-sidebar-group__sidebar {
    display: none !important;
  }
  .share-this {
    display: none !important;
  }
  .content-sidebar-group__grid {
    display: block !important;
  }
  .content-sidebar-group__content {
    width: 100% !important;
    padding-left: 0 !important;
  }
  .content-sidebar-group__content * {
    margin-bottom: 0.625rem !important;
  }
  .tax-terms-list--top-floating {
    position: unset !important;
    margin-bottom: 1.5625rem !important;
  }
  .consultant-single-meta--top-floating {
    margin-bottom: 1.5625rem !important;
    top: 0 !important;
  }
  .consultant-single-meta__meta {
    float: left !important;
  }
  .consultant-single-meta__icon {
    display: none !important;
  }
  .consultant-single-meta__image-default {
    display: none !important;
  }
  .page-title {
    width: 100% !important;
    padding-bottom: 0 !important;
    background: transparent !important;
    border: 0.125rem solid black;
  }
  .page-title::after, .page-title::before {
    display: none !important;
  }
  .page-title__content {
    color: black;
  }
  .page-title__excerpt {
    max-width: 100% !important;
  }
  .hero {
    background: transparent !important;
  }
  .hero::after, .hero::before {
    display: none !important;
  }
  .hero .button {
    color: white !important;
  }
  .hero .button[href]:after {
    content: "(" attr(href) ")";
    font-size: 0.75rem;
    font-weight: normal;
    display: block;
  }
  .hero .button.button--reset {
    color: black !important;
  }
  .hero-featured .hero-featured__image,
.hero-featured .hero-featured__content {
    background: transparent !important;
  }
  .hero-featured .hero-featured__inner {
    padding: 0;
  }
  .hero-featured .hero-featured__image::after, .hero-featured .hero-featured__image::before {
    display: none !important;
  }
  .hero-featured .button[href]:after {
    content: "(" attr(href) ")";
    font-size: 0.75rem;
    font-weight: normal;
    display: block;
  }
  .offset-overlay__wrapper {
    box-shadow: none !important;
  }
  .review-dates {
    display: block !important;
    width: 100%;
  }
  .related-pages-group {
    display: inline !important;
    position: relative;
  }
  .related-pages-group__title {
    display: block;
  }
  .related-pages-group__list {
    display: block !important;
  }
  .related-pages:after {
    content: " (" attr(href) ")";
    font-size: 0.75rem;
  }
  .standard-content .button,
.standard-content .care-card__heading,
.standard-content .do-list__title,
.standard-content .dont-list__title,
.standard-content .do-dont__title,
.standard-content .panel.is-style-alert {
    color: white !important;
  }
  .standard-content .button *,
.standard-content .care-card__heading *,
.standard-content .do-list__title *,
.standard-content .dont-list__title *,
.standard-content .do-dont__title *,
.standard-content .panel.is-style-alert * {
    color: white !important;
  }
  .standard-content .button--secondary {
    color: black !important;
  }
  .standard-content h2,
.standard-content h3,
.standard-content h4 {
    break-after: avoid-page;
    break-inside: avoid-page;
  }
  .standard-content a[href]:after {
    content: " (" attr(href) ")";
  }
  .standard-content .button[href]:after,
.standard-content .action-link[href]:after,
.standard-content .file__link[href]:after {
    content: "(" attr(href) ")";
    font-size: 0.75rem;
    font-weight: normal;
    display: block;
  }
  .standard-content .action-link[href]:after {
    line-height: 1.2;
  }
  .standard-content .expander__button[href]:after {
    content: none;
  }
  .standard-content .expander--minimised .expander__content {
    display: block;
  }
  .standard-content .contact-detail__detail a[href]:after {
    font-weight: normal;
  }
  .signpost-item a[href]:after {
    content: "(" attr(href) ")";
    font-size: 0.75rem;
    font-weight: normal;
    display: block;
  }
  .signpost-item.signpost-item--secondary * {
    color: white !important;
  }
  .signpost-location {
    color: white !important;
  }
  .signpost-location[href]:after {
    content: "(" attr(href) ")";
    font-size: 0.75rem;
    font-weight: normal;
    display: block;
  }
  .signpost-location.signpost-location--alt {
    color: black !important;
  }
  .featured-link-item__link[href]:after {
    content: "(" attr(href) ")";
    font-size: 0.75rem;
    font-weight: normal;
    display: block;
  }
  .card-article__title a[href]:after,
.card-article__action a[href]:after,
.card-article-compact__title a[href]:after,
.news-group__footer a[href]:after {
    content: "(" attr(href) ")";
    font-size: 0.75rem;
    font-weight: normal;
    display: block;
  }
  .card-article__action .button {
    color: white !important;
  }
  .promotion__content-footer a[href]:after,
.promotion-secondary__content a[href]:after {
    content: "(" attr(href) ")";
    font-size: 0.75rem;
    font-weight: normal;
    display: block;
  }
  .card-promoted__link {
    color: white !important;
  }
  .card-promoted__link[href]:after {
    content: "(" attr(href) ")";
    font-size: 0.75rem;
    font-weight: normal;
    display: block;
  }
  .cqc-banner__link[href]:after {
    content: " (" attr(href) ")";
  }
  .event__action .button {
    color: white !important;
  }
  .event__action .button[href]:after {
    content: "(" attr(href) ")";
    font-size: 0.75rem;
    font-weight: normal;
    display: block;
  }
  .card-list__return-to-top {
    display: none !important;
  }
  .share-links {
    display: none !important;
  }
  .libraryh3lp {
    display: none !important;
  }
}
/**
 * Table
 */
.wp-block-table table {
  margin-bottom: 0;
}

/**
 * Image blocks
 */
.wp-block-image figcaption {
  position: relative;
  background: transparent;
  color: #212b32;
  margin-left: 0;
  text-align: left;
  font-size: 1rem;
  font-weight: 400;
  padding: 0.75rem;
  border-bottom: 0.0625rem solid #d8dde0;
}
@media (min-width: 850px) {
  .wp-block-image figcaption {
    font-size: 1.1875rem;
  }
}

/**
 * Audio embed
 */
.wp-block-audio audio {
  width: 100%;
}
.wp-block-audio figcaption {
  margin-top: 0.625rem;
  font-size: 1rem;
}

/**
 * File download
 */
.wp-block-file {
  font-size: 1.5rem;
}
.wp-block-file a:first-child {
  color: #212b32;
  margin-right: 1.875rem;
  margin-bottom: 0.3125rem;
  word-break: break-word;
}

.wp-block-file__button {
  color: white;
  background-color: #005eb8;
  padding: 0.3125rem 1.25rem;
  font-weight: 700;
}
.wp-block-file__button:hover {
  background-color: #00519f;
  text-decoration: none;
}

/**
 * Aspect ratios
 */
.wp-has-aspect-ratio {
  max-width: 100%;
}
.wp-has-aspect-ratio iframe,
.wp-has-aspect-ratio object,
.wp-has-aspect-ratio embed {
  width: 100%;
}

/**
 * Embeded 16x9 content
 */
.wp-embed-aspect-16-9 {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
}
.wp-embed-aspect-16-9 iframe,
.wp-embed-aspect-16-9 object,
.wp-embed-aspect-16-9 embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/**
 * Embeded Image blocks
 */
.wp-block-image figure {
  display: table;
}
.wp-block-image figure figcaption {
  display: table-caption;
  caption-side: bottom;
}
.wp-block-image img {
  margin-bottom: 0;
}

/**
 * Separator
 */
.wp-block-separator {
  margin-top: 1.2rem;
  margin-bottom: 1.2rem;
}

html {
  background-color: #e1e9eb;
}

body {
  background-color: #f0f4f5;
  margin: 0 auto;
}

body.home {
  background-color: white;
}

body.home .site-footer {
  background-color: white;
}

.searchwp-highlight {
  background-color: #ffeb3b;
}

#cmplz-cookies-overview, #cmplz-manage-consent-container {
  margin-bottom: 1.5rem;
}

@font-face {
  font-family: "Frutiger W01";
  font-display: swap;
  font-style: normal;
  font-weight: 400;
  src: url("https://assets.nhs.uk/fonts/FrutigerLTW01-55Roman.eot?#iefix");
  src: url("https://assets.nhs.uk/fonts/FrutigerLTW01-55Roman.eot?#iefix") format("eot"), url("https://assets.nhs.uk/fonts/FrutigerLTW01-55Roman.woff2") format("woff2"), url("https://assets.nhs.uk/fonts/FrutigerLTW01-55Roman.woff") format("woff"), url("https://assets.nhs.uk/fonts/FrutigerLTW01-55Roman.ttf") format("truetype"), url("https://assets.nhs.uk/fonts/FrutigerLTW01-55Roman.svg#7def0e34-f28d-434f-b2ec-472bde847115") format("svg");
}
@font-face {
  font-family: "Frutiger W01";
  font-display: swap;
  font-style: normal;
  font-weight: 600;
  src: url("https://assets.nhs.uk/fonts/FrutigerLTW01-65Bold.eot?#iefix");
  src: url("https://assets.nhs.uk/fonts/FrutigerLTW01-65Bold.eot?#iefix") format("eot"), url("https://assets.nhs.uk/fonts/FrutigerLTW01-65Bold.woff2") format("woff2"), url("https://assets.nhs.uk/fonts/FrutigerLTW01-65Bold.woff") format("woff"), url("https://assets.nhs.uk/fonts/FrutigerLTW01-65Bold.ttf") format("truetype"), url("https://assets.nhs.uk/fonts/FrutigerLTW01-65Bold.svg#eae74276-dd78-47e4-9b27-dac81c3411ca") format("svg");
}
/*
* Progress bar.
*/
.gform_wrapper.gravity-theme .gf_progressbar_title {
  color: #767676;
  font-size: 12.992px;
  font-weight: normal;
  margin: 0 0 4.8px 0;
}

.gform_wrapper.gravity-theme .gf_progressbar {
  background: #e8e8e8;
  border-radius: 10.5px;
  margin-bottom: 16px;
  position: relative;
}

.gform_wrapper.gravity-theme .gf_progressbar_percentage {
  border-radius: 10.5px;
  height: 20.992px;
  text-align: right;
  vertical-align: middle;
}

.gform_wrapper.gravity-theme .gf_progressbar_percentage:not(.percentbar_100) {
  border-radius: 10.5px 0 0 10.5px;
}

.gform_wrapper.gravity-theme .gf_progressbar_percentage span {
  display: block;
  float: right;
  font-size: 13px;
  line-height: 21px;
  margin-left: 8px;
  margin-right: 8px;
  min-width: 2em;
  width: auto;
}

.gform_wrapper.gravity-theme .gf_progressbar_percentage.percentbar_0 span {
  color: #959595;
  float: none;
  margin-left: 9.6px;
  text-shadow: none;
}

.gform_wrapper.gravity-theme .gf_progressbar_blue {
  background: #d2d6dc;
}

.gform_wrapper.gravity-theme .gf_progressbar_percentage.percentbar_blue {
  background-color: #1e7ac4;
  color: #fff;
}

.gform_wrapper.gravity-theme .gf_progressbar_gray {
  background: #d2d6dc;
}

.gform_wrapper.gravity-theme .gf_progressbar_percentage.percentbar_gray {
  background-color: #6b7280;
  color: #fff;
}

.gform_wrapper.gravity-theme .gf_progressbar_green {
  background: #e8e8e8;
}

.gform_wrapper.gravity-theme .gf_progressbar_percentage.percentbar_green {
  background-color: #aac138;
  color: #fff;
}

.gform_wrapper.gravity-theme .gf_progressbar_orange {
  background: #e8eaec;
}

.gform_wrapper.gravity-theme .gf_progressbar_percentage.percentbar_orange {
  background-color: #ff5d38;
  color: #fff;
}

.gform_wrapper.gravity-theme .gf_progressbar_red {
  background: #e8eaec;
}

.gform_wrapper.gravity-theme .gf_progressbar_percentage.percentbar_red {
  background-color: #ec1e31;
  color: #fff;
}

.gform_wrapper.gravity-theme .gf_progressbar_spring {
  background: #d2d6dc;
}

.gform_wrapper.gravity-theme .gf_progressbar_percentage.percentbar_spring {
  background: linear-gradient(270deg, #9cd790 0%, #76d7db 100%);
  color: #fff;
}

.gform_wrapper.gravity-theme .gf_progressbar_blues {
  background: #d2d6dc;
}

.gform_wrapper.gravity-theme .gf_progressbar_percentage.percentbar_blues {
  background: linear-gradient(270deg, #00c2ff 0%, #7838e2 100%);
  color: #fff;
}

.gform_wrapper.gravity-theme .gf_progressbar_rainbow {
  background: #d2d6dc;
}

.gform_wrapper.gravity-theme .gf_progressbar_percentage.percentbar_rainbow {
  background: linear-gradient(270deg, #1dbeea 0%, #cd6ad6 50%, #f35160 100%);
  color: #fff;
}

html[dir=rtl] .gform_wrapper.gravity-theme .gf_progressbar_percentage:not(.percentbar_100) {
  border-radius: 0 10.5px 10.5px 0;
}

/*
* Legacy Progress bar.
*/
.gform_legacy_markup_wrapper .gf_progressbar_wrapper {
  clear: both;
  width: 100%;
  margin: 0 0 16px 0;
  padding: 0 0 16px 0;
}

.gform_legacy_markup_wrapper .gf_progressbar_wrapper .gf_progressbar_title {
  color: #767676;
  font-size: 13px;
  line-height: 1 !important;
  margin: 0 0 8px 0 !important;
  padding: 0 !important;
  clear: both;
  filter: alpha(opacity=60);
  -moz-opacity: 0.6;
  -khtml-opacity: 0.6;
  opacity: 0.6;
}

.gform_legacy_markup_wrapper .gf_progressbar {
  position: relative;
  background: #e8e8e8;
  position: relative;
  -moz-border-radius: 10.5px;
  -webkit-border-radius: 10.5px;
  border-radius: 10.5px;
  width: 100%;
}

.gform_legacy_markup_wrapper .gf_progressbar_percentage {
  height: 21px;
  text-align: right;
  border-radius: 10.5px;
  vertical-align: middle;
  font-family: helvetica, arial, sans-serif;
  font-size: 13px !important;
  z-index: 999;
}

.gform_legacy_markup_wrapper .gf_progressbar_percentage.percentbar_100 {
  border-top-right-radius: 10.5px;
  border-bottom-right-radius: 10.5px;
}

.gform_legacy_markup_wrapper .gf_progressbar_percentage span {
  display: block;
  width: auto;
  float: right;
  margin-right: 5px;
  margin-left: 5px;
  line-height: 21px;
}

.gform_legacy_markup_wrapper .gf_progressbar_percentage.percentbar_0 span {
  color: #959595;
  text-shadow: none;
  float: none !important;
  margin-left: 12px;
  word-wrap: normal;
}

.gform_legacy_markup_wrapper .gf_progressbar_blue {
  background: #d2d6dc;
}

.gform_legacy_markup_wrapper .gf_progressbar_percentage.percentbar_blue {
  background-color: #1e7ac4;
  color: #fff;
}

.gform_legacy_markup_wrapper .gf_progressbar_gray {
  background: #d2d6dc;
}

.gform_legacy_markup_wrapper .gf_progressbar_percentage.percentbar_gray {
  background-color: #6b7280;
  color: #fff;
}

.gform_legacy_markup_wrapper .gf_progressbar_green {
  background: #e8e8e8;
}

.gform_legacy_markup_wrapper .gf_progressbar_percentage.percentbar_green {
  background-color: #aac138;
  color: #fff;
}

.gform_legacy_markup_wrapper .gf_progressbar_orange {
  background: #e8eaec;
}

.gform_legacy_markup_wrapper .gf_progressbar_percentage.percentbar_orange {
  background-color: #ff5d38;
  color: #fff;
}

.gform_legacy_markup_wrapper .gf_progressbar_red {
  background: #e8eaec;
}

.gform_legacy_markup_wrapper .gf_progressbar_percentage.percentbar_red {
  background-color: #ec1e31;
  color: #fff;
}

.gform_legacy_markup_wrapper .gf_progressbar_spring {
  background: #d2d6dc;
}

.gform_legacy_markup_wrapper .gf_progressbar_percentage.percentbar_spring {
  background: linear-gradient(270deg, #9cd790 0%, #76d7db 100%);
  color: #fff;
}

.gform_legacy_markup_wrapper .gf_progressbar_blues {
  background: #d2d6dc;
}

.gform_legacy_markup_wrapper .gf_progressbar_percentage.percentbar_blues {
  background: linear-gradient(270deg, #00c2ff 0%, #7838e2 100%);
  color: #fff;
}

.gform_legacy_markup_wrapper .gf_progressbar_rainbow {
  background: #d2d6dc;
}

.gform_legacy_markup_wrapper .gf_progressbar_percentage.percentbar_rainbow {
  background: linear-gradient(270deg, #1dbeea 0%, #cd6ad6 50%, #f35160 100%);
  color: #fff;
}

.pika-single {
  display: flex;
  flex-wrap: wrap;
  position: relative;
  z-index: 9999;
  background: white;
  border: 1px solid #ccc;
  font-family: "Frutiger W01", Arial, sans-serif;
  max-width: 23.125rem;
}
.pika-single.is-bound {
  position: absolute;
}

.pika-lendar {
  width: 100%;
  margin: 0.5rem;
}

.pika-title {
  display: flex;
  position: relative;
  text-align: center;
}
.pika-title select {
  display: none;
}

.pika-label {
  order: 2;
  padding: 0.3125rem 0.1875rem;
  font-size: 1.1875rem;
  font-weight: bold;
}

.pika-prev,
.pika-next {
  display: block;
  cursor: pointer;
  position: relative;
  outline: none;
  border: 0;
  padding: 0;
  width: 1.25rem;
  height: 1.875rem;
  text-indent: 1.25rem;
  white-space: nowrap;
  overflow: hidden;
  background-color: transparent;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 75% 75%;
  opacity: 0.5;
}
.pika-prev:hover,
.pika-next:hover {
  opacity: 1;
}
.pika-prev.is-disabled,
.pika-next.is-disabled {
  cursor: default;
  opacity: 0.2;
}

.pika-prev,
.is-rtl .pika-next {
  order: 1;
  margin-right: auto;
  background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABQAAAAeCAYAAAAsEj5rAAAAUklEQVR42u3VMQoAIBADQf8Pgj+OD9hG2CtONJB2ymQkKe0HbwAP0xucDiQWARITIDEBEnMgMQ8S8+AqBIl6kKgHiXqQqAeJepBo/z38J/U0uAHlaBkBl9I4GwAAAABJRU5ErkJggg==");
}

.pika-next,
.is-rtl .pika-prev {
  order: 4;
  margin-left: auto;
  background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABQAAAAeCAYAAAAsEj5rAAAAU0lEQVR42u3VOwoAMAgE0dwfAnNjU26bYkBCFGwfiL9VVWoO+BJ4Gf3gtsEKKoFBNTCoCAYVwaAiGNQGMUHMkjGbgjk2mIONuXo0nC8XnCf1JXgArVIZAQh5TKYAAAAASUVORK5CYII=");
}

.pika-select {
  display: inline-block;
}

.pika-table {
  width: 100%;
  border-collapse: collapse;
  border: 0;
  margin: 0;
}
.pika-table tbody {
  background: #f5f5f5;
}
.pika-table tr {
  border: none;
}
.pika-table th, .pika-table td {
  width: 14.2857142857%;
  min-width: 3rem;
  padding: 0;
  border: 0.0625rem solid #ccc;
}
.pika-table th {
  color: #005eb8;
  font-size: 1rem;
  font-weight: bold;
  text-align: center;
  border: none;
}
.pika-table abbr {
  text-decoration: none;
}

.pika-button {
  cursor: pointer;
  display: block;
  outline: none;
  margin: 0;
  width: 100%;
  padding: 0.5rem 0.3125rem;
  color: #212b32;
  font-size: 0.875rem;
  font-family: "Frutiger W01", Arial, sans-serif;
  text-align: right;
  background: white;
  border: none;
}
.is-today .pika-button {
  color: #005eb8;
  font-weight: 700;
}
.is-selected .pika-button {
  color: white;
  font-weight: 700;
  background: #005eb8;
  box-shadow: inset 0 0.0625rem 0.1875rem rgba(0, 0, 0, 0.2);
}
.is-disabled .pika-button {
  pointer-events: none;
  cursor: default;
}
.pika-button:hover {
  color: #212b32;
  background: #efefef;
  box-shadow: none;
}
.pika-button .is-selection-disabled {
  pointer-events: none;
  cursor: default;
}

.searchwp-live-search-results {
  opacity: 0;
  transition: opacity 0.25s ease-in-out;
  -moz-transition: opacity 0.25s ease-in-out;
  -webkit-transition: opacity 0.25s ease-in-out;
  height: 0;
  overflow: hidden;
  z-index: 9999995; /* Exceed SearchWP Modal Search Form overlay. */
  position: absolute;
  display: none;
}

.searchwp-live-search-results-showing {
  display: block;
  opacity: 1;
  height: auto;
  overflow: auto;
}

.searchwp-live-search-no-results {
  padding: 3em 2em 0;
  text-align: center;
}

.searchwp-live-search-no-min-chars:after {
  content: "Continue typing";
  display: block;
  text-align: center;
  padding: 2em 2em 0;
}

@keyframes searchwp-spinner-line-fade-quick {
  0%, 39%, 100% {
    opacity: 0.25;
  }
  40% {
    opacity: 1;
  }
}
/**
 * WordPress Gutenberg Gallery styling
 *
 * We have opted to use the CSS straight out of Gutenberg as it is very complex and covers a ton of use cases.
 */
.wp-block-gallery,
.blocks-gallery-grid {
  display: flex;
  flex-wrap: wrap;
  list-style-type: none;
  padding: 0;
  margin: 0;
}

.wp-block-gallery .blocks-gallery-image,
.wp-block-gallery .blocks-gallery-item,
.blocks-gallery-grid .blocks-gallery-image,
.blocks-gallery-grid .blocks-gallery-item {
  margin: 0 1em 1em 0;
  display: flex;
  flex-grow: 1;
  flex-direction: column;
  justify-content: center;
  position: relative;
  width: calc(50% - 1em);
}

.wp-block-gallery .blocks-gallery-image:nth-of-type(even),
.wp-block-gallery .blocks-gallery-item:nth-of-type(even),
.blocks-gallery-grid .blocks-gallery-image:nth-of-type(even),
.blocks-gallery-grid .blocks-gallery-item:nth-of-type(even) {
  margin-right: 0;
}

.wp-block-gallery .blocks-gallery-image figure,
.wp-block-gallery .blocks-gallery-item figure,
.blocks-gallery-grid .blocks-gallery-image figure,
.blocks-gallery-grid .blocks-gallery-item figure {
  margin: 0;
  height: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
}

.wp-block-gallery .blocks-gallery-image img,
.wp-block-gallery .blocks-gallery-item img,
.blocks-gallery-grid .blocks-gallery-image img,
.blocks-gallery-grid .blocks-gallery-item img {
  display: block;
  max-width: 100%;
  height: auto;
  width: auto;
}

.wp-block-gallery .blocks-gallery-image figcaption,
.wp-block-gallery .blocks-gallery-item figcaption,
.blocks-gallery-grid .blocks-gallery-image figcaption,
.blocks-gallery-grid .blocks-gallery-item figcaption {
  position: absolute;
  bottom: 0;
  width: 100%;
  max-height: 100%;
  overflow: auto;
  padding: 3em 0.77em 0.7em;
  color: #fff;
  text-align: center;
  font-size: 0.8em;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.7) 0, rgba(0, 0, 0, 0.3) 70%, transparent);
  box-sizing: border-box;
  margin: 0;
  z-index: 2;
}

.wp-block-gallery .blocks-gallery-image figcaption img,
.wp-block-gallery .blocks-gallery-item figcaption img,
.blocks-gallery-grid .blocks-gallery-image figcaption img,
.blocks-gallery-grid .blocks-gallery-item figcaption img {
  display: inline;
}

.wp-block-gallery figcaption,
.blocks-gallery-grid figcaption {
  flex-grow: 1;
}

.wp-block-gallery.is-cropped .blocks-gallery-image a,
.wp-block-gallery.is-cropped .blocks-gallery-image img,
.wp-block-gallery.is-cropped .blocks-gallery-item a,
.wp-block-gallery.is-cropped .blocks-gallery-item img,
.blocks-gallery-grid.is-cropped .blocks-gallery-image a,
.blocks-gallery-grid.is-cropped .blocks-gallery-image img,
.blocks-gallery-grid.is-cropped .blocks-gallery-item a,
.blocks-gallery-grid.is-cropped .blocks-gallery-item img {
  width: 100%;
  height: 100%;
  flex: 1;
  -o-object-fit: cover;
  object-fit: cover;
}

.wp-block-gallery.columns-1 .blocks-gallery-image,
.wp-block-gallery.columns-1 .blocks-gallery-item,
.blocks-gallery-grid.columns-1 .blocks-gallery-image,
.blocks-gallery-grid.columns-1 .blocks-gallery-item {
  width: 100%;
  margin-right: 0;
}

@media (min-width: 600px) {
  .wp-block-gallery.columns-3 .blocks-gallery-image,
.wp-block-gallery.columns-3 .blocks-gallery-item,
.blocks-gallery-grid.columns-3 .blocks-gallery-image,
.blocks-gallery-grid.columns-3 .blocks-gallery-item {
    width: calc(33.3333333333% - 0.6666666667em);
    margin-right: 1em;
  }
  .wp-block-gallery.columns-4 .blocks-gallery-image,
.wp-block-gallery.columns-4 .blocks-gallery-item,
.blocks-gallery-grid.columns-4 .blocks-gallery-image,
.blocks-gallery-grid.columns-4 .blocks-gallery-item {
    width: calc(25% - 0.75em);
    margin-right: 1em;
  }
  .wp-block-gallery.columns-5 .blocks-gallery-image,
.wp-block-gallery.columns-5 .blocks-gallery-item,
.blocks-gallery-grid.columns-5 .blocks-gallery-image,
.blocks-gallery-grid.columns-5 .blocks-gallery-item {
    width: calc(20% - 0.8em);
    margin-right: 1em;
  }
  .wp-block-gallery.columns-6 .blocks-gallery-image,
.wp-block-gallery.columns-6 .blocks-gallery-item,
.blocks-gallery-grid.columns-6 .blocks-gallery-image,
.blocks-gallery-grid.columns-6 .blocks-gallery-item {
    width: calc(16.6666666667% - 0.8333333333em);
    margin-right: 1em;
  }
  .wp-block-gallery.columns-7 .blocks-gallery-image,
.wp-block-gallery.columns-7 .blocks-gallery-item,
.blocks-gallery-grid.columns-7 .blocks-gallery-image,
.blocks-gallery-grid.columns-7 .blocks-gallery-item {
    width: calc(14.2857142857% - 0.8571428571em);
    margin-right: 1em;
  }
  .wp-block-gallery.columns-8 .blocks-gallery-image,
.wp-block-gallery.columns-8 .blocks-gallery-item,
.blocks-gallery-grid.columns-8 .blocks-gallery-image,
.blocks-gallery-grid.columns-8 .blocks-gallery-item {
    width: calc(12.5% - 0.875em);
    margin-right: 1em;
  }
  .wp-block-gallery.columns-1 .blocks-gallery-image:nth-of-type(1n),
.wp-block-gallery.columns-1 .blocks-gallery-item:nth-of-type(1n),
.blocks-gallery-grid.columns-1 .blocks-gallery-image:nth-of-type(1n),
.blocks-gallery-grid.columns-1 .blocks-gallery-item:nth-of-type(1n) {
    margin-right: 0;
  }
  .wp-block-gallery.columns-2 .blocks-gallery-image:nth-of-type(2n),
.wp-block-gallery.columns-2 .blocks-gallery-item:nth-of-type(2n),
.blocks-gallery-grid.columns-2 .blocks-gallery-image:nth-of-type(2n),
.blocks-gallery-grid.columns-2 .blocks-gallery-item:nth-of-type(2n) {
    margin-right: 0;
  }
  .wp-block-gallery.columns-3 .blocks-gallery-image:nth-of-type(3n),
.wp-block-gallery.columns-3 .blocks-gallery-item:nth-of-type(3n),
.blocks-gallery-grid.columns-3 .blocks-gallery-image:nth-of-type(3n),
.blocks-gallery-grid.columns-3 .blocks-gallery-item:nth-of-type(3n) {
    margin-right: 0;
  }
  .wp-block-gallery.columns-4 .blocks-gallery-image:nth-of-type(4n),
.wp-block-gallery.columns-4 .blocks-gallery-item:nth-of-type(4n),
.blocks-gallery-grid.columns-4 .blocks-gallery-image:nth-of-type(4n),
.blocks-gallery-grid.columns-4 .blocks-gallery-item:nth-of-type(4n) {
    margin-right: 0;
  }
  .wp-block-gallery.columns-5 .blocks-gallery-image:nth-of-type(5n),
.wp-block-gallery.columns-5 .blocks-gallery-item:nth-of-type(5n),
.blocks-gallery-grid.columns-5 .blocks-gallery-image:nth-of-type(5n),
.blocks-gallery-grid.columns-5 .blocks-gallery-item:nth-of-type(5n) {
    margin-right: 0;
  }
  .wp-block-gallery.columns-6 .blocks-gallery-image:nth-of-type(6n),
.wp-block-gallery.columns-6 .blocks-gallery-item:nth-of-type(6n),
.blocks-gallery-grid.columns-6 .blocks-gallery-image:nth-of-type(6n),
.blocks-gallery-grid.columns-6 .blocks-gallery-item:nth-of-type(6n) {
    margin-right: 0;
  }
  .wp-block-gallery.columns-7 .blocks-gallery-image:nth-of-type(7n),
.wp-block-gallery.columns-7 .blocks-gallery-item:nth-of-type(7n),
.blocks-gallery-grid.columns-7 .blocks-gallery-image:nth-of-type(7n),
.blocks-gallery-grid.columns-7 .blocks-gallery-item:nth-of-type(7n) {
    margin-right: 0;
  }
  .wp-block-gallery.columns-8 .blocks-gallery-image:nth-of-type(8n),
.wp-block-gallery.columns-8 .blocks-gallery-item:nth-of-type(8n),
.blocks-gallery-grid.columns-8 .blocks-gallery-image:nth-of-type(8n),
.blocks-gallery-grid.columns-8 .blocks-gallery-item:nth-of-type(8n) {
    margin-right: 0;
  }
}
.wp-block-gallery .blocks-gallery-image:last-child,
.wp-block-gallery .blocks-gallery-item:last-child,
.blocks-gallery-grid .blocks-gallery-image:last-child,
.blocks-gallery-grid .blocks-gallery-item:last-child {
  margin-right: 0;
}

.wp-block-gallery.alignleft,
.wp-block-gallery.alignright,
.blocks-gallery-grid.alignleft,
.blocks-gallery-grid.alignright {
  max-width: 420px;
  width: 100%;
}

.wp-block-gallery.aligncenter .blocks-gallery-item figure,
.blocks-gallery-grid.aligncenter .blocks-gallery-item figure {
  justify-content: center;
}

.wp-block-gallery:not(.is-cropped) .blocks-gallery-item {
  align-self: flex-start;
}

.wp-block-gallery.has-nested-images {
  display: flex;
  flex-wrap: wrap;
}

.wp-block-gallery.has-nested-images figure.wp-block-image:not(#individual-image) {
  margin: 0 1rem 1rem 0;
  width: calc(50% - 0.5rem);
}

.wp-block-gallery.has-nested-images figure.wp-block-image:not(#individual-image):last-of-type:not(#individual-image) {
  margin-right: 0;
}

.wp-block-gallery.has-nested-images figure.wp-block-image:not(#individual-image):nth-of-type(even) {
  margin-right: 0;
}

.wp-block-gallery.has-nested-images figure.wp-block-image {
  display: flex;
  flex-grow: 1;
  justify-content: center;
  position: relative;
  margin-top: auto;
  margin-bottom: auto;
  flex-direction: column;
  max-width: 100%;
}

.wp-block-gallery.has-nested-images figure.wp-block-image > div,
.wp-block-gallery.has-nested-images figure.wp-block-image > a {
  margin: 0;
  flex-direction: column;
  flex-grow: 1;
}

.wp-block-gallery.has-nested-images figure.wp-block-image img {
  display: block;
  height: auto;
  max-width: 100% !important;
  width: auto;
}

.wp-block-gallery.has-nested-images figure.wp-block-image figcaption {
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.7) 0, rgba(0, 0, 0, 0.3) 70%, transparent);
  bottom: 0;
  color: #fff;
  font-size: 13px;
  left: 0;
  margin-bottom: 0;
  max-height: 60%;
  overflow: auto;
  padding: 0 8px 8px;
  position: absolute;
  text-align: center;
  width: 100%;
  box-sizing: border-box;
}

.wp-block-gallery.has-nested-images figure.wp-block-image figcaption img {
  display: inline;
}

.wp-block-gallery.has-nested-images figure.wp-block-image.is-style-rounded > div,
.wp-block-gallery.has-nested-images figure.wp-block-image.is-style-rounded > a {
  flex: 1 1 auto;
}

.wp-block-gallery.has-nested-images figure.wp-block-image.is-style-rounded figcaption {
  flex: initial;
  background: none;
  color: inherit;
  margin: 0;
  padding: 10px 10px 9px;
  position: relative;
}

.wp-block-gallery.has-nested-images figcaption {
  flex-grow: 1;
  flex-basis: 100%;
  text-align: center;
}

.wp-block-gallery.has-nested-images:not(.is-cropped) figure.wp-block-image:not(#individual-image) {
  margin-top: 0;
  margin-bottom: auto;
}

.wp-block-gallery.has-nested-images:not(.is-cropped) figure.wp-block-image:not(#individual-image) img {
  margin-bottom: 1rem;
}

.wp-block-gallery.has-nested-images:not(.is-cropped) figure.wp-block-image:not(#individual-image) figcaption {
  bottom: 1rem;
}

.wp-block-gallery.has-nested-images.is-cropped figure.wp-block-image:not(#individual-image) {
  align-self: inherit;
}

.wp-block-gallery.has-nested-images.is-cropped figure.wp-block-image:not(#individual-image) > div:not(.components-drop-zone),
.wp-block-gallery.has-nested-images.is-cropped figure.wp-block-image:not(#individual-image) > a {
  display: flex;
}

.wp-block-gallery.has-nested-images.is-cropped figure.wp-block-image:not(#individual-image) a,
.wp-block-gallery.has-nested-images.is-cropped figure.wp-block-image:not(#individual-image) img {
  width: 100%;
  flex: 1 0 0%;
  -o-object-fit: cover;
  object-fit: cover;
}

.wp-block-gallery.has-nested-images.columns-1 figure.wp-block-image:not(#individual-image) {
  margin-right: 0;
  width: 100%;
}

@media (min-width: 600px) {
  .wp-block-gallery.has-nested-images.columns-3 figure.wp-block-image:not(#individual-image) {
    margin-right: 1rem;
    width: calc(33.3333333333% - 0.6666666667rem);
  }
  .wp-block-gallery.has-nested-images.columns-3 figure.wp-block-image:not(#individual-image).is-dragging ~ figure.wp-block-image:not(#individual-image) {
    margin-right: 1rem;
  }
  .wp-block-gallery.has-nested-images.columns-4 figure.wp-block-image:not(#individual-image) {
    margin-right: 1rem;
    width: calc(25% - 0.75rem);
  }
  .wp-block-gallery.has-nested-images.columns-4 figure.wp-block-image:not(#individual-image).is-dragging ~ figure.wp-block-image:not(#individual-image) {
    margin-right: 1rem;
  }
  .wp-block-gallery.has-nested-images.columns-5 figure.wp-block-image:not(#individual-image) {
    margin-right: 1rem;
    width: calc(20% - 0.8rem);
  }
  .wp-block-gallery.has-nested-images.columns-5 figure.wp-block-image:not(#individual-image).is-dragging ~ figure.wp-block-image:not(#individual-image) {
    margin-right: 1rem;
  }
  .wp-block-gallery.has-nested-images.columns-6 figure.wp-block-image:not(#individual-image) {
    margin-right: 1rem;
    width: calc(16.6666666667% - 0.8333333333rem);
  }
  .wp-block-gallery.has-nested-images.columns-6 figure.wp-block-image:not(#individual-image).is-dragging ~ figure.wp-block-image:not(#individual-image) {
    margin-right: 1rem;
  }
  .wp-block-gallery.has-nested-images.columns-7 figure.wp-block-image:not(#individual-image) {
    margin-right: 1rem;
    width: calc(14.2857142857% - 0.8571428571rem);
  }
  .wp-block-gallery.has-nested-images.columns-7 figure.wp-block-image:not(#individual-image).is-dragging ~ figure.wp-block-image:not(#individual-image) {
    margin-right: 1rem;
  }
  .wp-block-gallery.has-nested-images.columns-8 figure.wp-block-image:not(#individual-image) {
    margin-right: 1rem;
    width: calc(12.5% - 0.875rem);
  }
  .wp-block-gallery.has-nested-images.columns-8 figure.wp-block-image:not(#individual-image).is-dragging ~ figure.wp-block-image:not(#individual-image) {
    margin-right: 1rem;
  }
  .wp-block-gallery.has-nested-images.columns-1 figure.wp-block-image:not(#individual-image):nth-of-type(1n) {
    margin-right: 0;
  }
  .wp-block-gallery.has-nested-images.columns-2 figure.wp-block-image:not(#individual-image):nth-of-type(2n) {
    margin-right: 0;
  }
  .wp-block-gallery.has-nested-images.columns-3 figure.wp-block-image:not(#individual-image):nth-of-type(3n) {
    margin-right: 0;
  }
  .wp-block-gallery.has-nested-images.columns-4 figure.wp-block-image:not(#individual-image):nth-of-type(4n) {
    margin-right: 0;
  }
  .wp-block-gallery.has-nested-images.columns-5 figure.wp-block-image:not(#individual-image):nth-of-type(5n) {
    margin-right: 0;
  }
  .wp-block-gallery.has-nested-images.columns-6 figure.wp-block-image:not(#individual-image):nth-of-type(6n) {
    margin-right: 0;
  }
  .wp-block-gallery.has-nested-images.columns-7 figure.wp-block-image:not(#individual-image):nth-of-type(7n) {
    margin-right: 0;
  }
  .wp-block-gallery.has-nested-images.columns-8 figure.wp-block-image:not(#individual-image):nth-of-type(8n) {
    margin-right: 0;
  }
  .wp-block-gallery.has-nested-images.columns-default figure.wp-block-image:not(#individual-image) {
    margin-right: 1rem;
    width: calc(33.33% - 0.6666666667rem);
  }
  .wp-block-gallery.has-nested-images.columns-default figure.wp-block-image:not(#individual-image):nth-of-type(3n + 3) {
    margin-right: 0;
  }
  .wp-block-gallery.has-nested-images.columns-default figure.wp-block-image:not(#individual-image):first-child:nth-last-child(2),
.wp-block-gallery.has-nested-images.columns-default figure.wp-block-image:not(#individual-image):first-child:nth-last-child(2) ~ figure.wp-block-image:not(#individual-image) {
    width: calc(50% - 1rem);
  }
  .wp-block-gallery.has-nested-images.columns-default figure.wp-block-image:not(#individual-image):first-child:nth-last-child(1) {
    width: 100%;
  }
}
.wp-block-gallery.has-nested-images.alignleft,
.wp-block-gallery.has-nested-images.alignright {
  max-width: 420px;
  width: 100%;
}

.wp-block-gallery.has-nested-images.aligncenter {
  justify-content: center;
}

.wp-block-gallery.has-nested-images figure.wp-block-image figcaption {
  position: relative;
  background: transparent;
  color: #212b32;
  margin-left: 0;
  text-align: left;
  font-size: 1.1875rem;
  font-weight: 400;
  padding: 0.75rem;
  border-bottom: 0.0625rem solid #d8dde0;
}

.accordion {
  border: 0.0625rem solid #c9c9c9;
  text-decoration: none;
  background: white;
}

.accordion__button {
  border: 0;
  width: 100%;
  text-align: left;
  font-size: 1.5rem;
  font-weight: 700;
  color: #005eb8;
  background: url("../imgs/icons/chevron-down.svg") center right 0.75rem no-repeat;
  background-size: 1.5rem 1.5rem;
  padding: 0.75rem 3rem 0.75rem 0.75rem;
  cursor: pointer;
}
.accordion__button:hover {
  text-decoration: underline;
}
.accordion__button:focus {
  outline: none;
}

.accordion__button--active {
  background: url("../imgs/icons/chevron-up.svg") center right 0.75rem no-repeat;
  background-size: 1.5rem 1.5rem;
}

.accordion__content {
  padding: 0.75rem;
  border-top: 0.0625rem solid #d8dde0;
}

.accordion__content-item {
  margin-bottom: 1.5rem;
}
.accordion__content-item:last-child {
  margin-bottom: 0;
}

.a-z-button {
  display: flex;
  justify-content: center;
  align-items: center;
  border: 0.0625rem solid #005eb8;
  font-size: 1.5rem;
  font-weight: 700;
  color: #005eb8;
  background-color: white;
  width: 3.125rem;
  height: 3.125rem;
  text-decoration: underline;
  text-underline-offset: 0.125rem;
}
@media (min-width: 1000px) {
  .a-z-button {
    font-size: 1.625rem;
  }
}
.a-z-button:hover {
  background: #005eb8;
  border: 0.0625rem solid #005eb8;
  color: white;
}
.a-z-button:after {
  padding-top: 100%;
  display: block;
  content: "";
}

.a-z-button--disabled {
  color: #4c6272;
  background-color: #d8dde0;
  border: #d8dde0;
  text-decoration: none;
  pointer-events: none;
}
.a-z-button--disabled:hover, .a-z-button--disabled:visited {
  color: #4c6272;
}

.a-z-button--active {
  background: #005eb8;
  border: 0.0625rem solid #005eb8;
  color: white;
}

.a-z-group {
  max-width: 51.6875rem;
}

.a-z-group__title {
  font-size: 1.1875rem;
  font-weight: 700;
  margin-bottom: 2.125rem;
  border-bottom: 2px solid black;
}
@media (min-width: 850px) {
  .a-z-group__title {
    font-size: 1.5rem;
  }
}

.a-z-group--small .a-z-group__title {
  display: block;
  border-bottom: 0;
  font-size: 1.1875rem;
  margin-bottom: 0.3125rem;
}

.a-z-group__grid {
  display: flex;
  flex-wrap: wrap;
  margin-left: -0.75rem;
  list-style: none;
  padding: 0;
}
@media (min-width: 850px) {
  .a-z-group__grid {
    justify-content: normal;
  }
}

.a-z-group__grid-item {
  padding-left: 0.75rem;
  margin-bottom: 0.75rem;
}

.alert-banner {
  background-color: #ffeb3b;
  margin: 0 auto;
  position: relative;
  padding: 0.75rem 0;
  width: 100%;
}

.alert-banner__title {
  text-align: center;
  margin: 0;
}
.alert-banner__title a {
  color: #212b32;
  font-weight: 700;
}

.alert-takeover {
  background: #da291c;
  font-size: 1.1875rem;
  text-align: center;
  padding: 1.5rem 1rem;
  color: white;
  margin: 1.5rem auto;
}
@media (min-width: 850px) {
  .alert-takeover {
    padding: 2.25rem 0;
    margin: 3rem auto;
  }
}
@media (min-width: 1200px) {
  .alert-takeover {
    padding: 4rem 0;
  }
}

.alert-takeover__content-wrapper {
  max-width: 1000px;
  margin: 0 auto;
}

.alert-takeover__title {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.2;
  max-width: 100%;
  margin: 0 auto 1.5rem auto;
}
@media (min-width: 850px) {
  .alert-takeover__title {
    font-size: 2rem;
  }
}
@media (min-width: 1200px) {
  .alert-takeover__title {
    font-size: 2.625rem;
  }
}

.alert-takeover__content {
  font-size: 1rem;
  margin: 0 auto 1.5rem auto;
  padding: 0 1.25rem;
}
@media (min-width: 850px) {
  .alert-takeover__content {
    font-size: 1.1875rem;
    margin-bottom: 1.5rem;
  }
}
@media (min-width: 1200px) {
  .alert-takeover__content {
    font-size: 1.5rem;
    margin-bottom: 3rem;
  }
}

.wp-block-quote,
blockquote {
  border: 0.1875rem solid #005eb8;
  position: relative;
  padding: 1rem 1rem 1rem 4rem;
  background-color: unset;
  background-image: url("../imgs/icons/quotemarks.svg");
  background-repeat: no-repeat;
  background-size: 1.875rem 1.875rem;
  background-position: top 1.5rem left 1rem;
  margin-top: 0;
  border-left: 0;
  border-right: 0;
}
.wp-block-quote:before,
blockquote:before {
  content: none;
}
@media (min-width: 850px) {
  .wp-block-quote,
blockquote {
    padding: 1.5rem 1.5rem 1.5rem 6rem;
    background-position: top 2.25rem left 1.5rem;
    background-size: 3.125rem 3.125rem;
  }
}
.wp-block-quote p,
blockquote p {
  line-height: 1.3;
  font-size: 1.1875rem;
  font-style: italic;
  margin-bottom: 0;
}
@media (min-width: 1000px) {
  .wp-block-quote p,
blockquote p {
    font-size: 1.5rem;
  }
}
.wp-block-quote cite,
blockquote cite {
  font-size: 1rem;
  font-weight: 700;
  font-style: normal;
}
@media (min-width: 1000px) {
  .wp-block-quote cite,
blockquote cite {
    font-size: 1.1875rem;
  }
}

.breadcrumbs {
  margin: 0;
  padding: 0;
  padding: 0.5rem 0.625rem;
}
@media (min-width: 850px) {
  .breadcrumbs {
    background-color: transparent;
    padding: 0;
  }
}
.breadcrumbs a {
  text-decoration: underline;
  text-underline-offset: 2px;
}
.breadcrumbs span {
  font-size: 0.875rem;
  color: #003087;
}
.breadcrumbs .current-item {
  color: #212b32;
}
.breadcrumbs span,
.breadcrumbs .current-item {
  margin: 0 0.25rem;
}
.breadcrumbs span:first-child,
.breadcrumbs .current-item:first-child {
  margin-left: 0;
}
@media (min-width: 850px) {
  .breadcrumbs {
    font-size: 1.1875rem;
  }
}

.breadcrumbs--primary {
  color: white;
}
.breadcrumbs--primary a {
  color: white;
}
.breadcrumbs--primary span,
.breadcrumbs--primary .current-item {
  color: white;
}
.breadcrumbs--primary span a:focus {
  color: black;
}
.breadcrumbs--primary span a:focus span {
  color: black;
}

.breadcrumbs--secondary {
  color: #212b32;
  padding: 1.25rem 0 2.25rem;
}
.breadcrumbs--secondary a {
  color: #212b32;
}
.breadcrumbs--secondary span,
.breadcrumbs--secondary .current-item {
  color: #212b32;
}

/**
 * Component: Button
 */
.button, .filter-group__button-primary, .filter-group__button-primary:focus {
  display: inline-block;
  margin: 0 0 1.5rem 0;
  cursor: pointer;
  border: none;
  outline: none;
  -webkit-font-smoothing: antialiased;
  -webkit-appearance: none;
  padding: 0.3125rem 2rem 0.3125rem 0.625rem;
  background: #005eb8 url("../imgs/icons/arrow-right-blue.svg") no-repeat;
  background-size: 0.75rem 0.75rem;
  background-position: center right 0.75rem;
  border-radius: 0;
  color: white;
  font-size: 1.1875rem;
  font-weight: 700;
  height: auto;
  width: auto;
  text-decoration: none;
}
.button:hover, .filter-group__button-primary:hover {
  background-color: #003087;
  color: white;
  text-decoration: none;
}
.button:focus, .filter-group__button-primary:focus {
  border-radius: 0;
  background-color: #fae100;
  background-image: url("../imgs/icons/arrow-right-black.svg");
  color: black;
}
@media (min-width: 850px) {
  .button, .filter-group__button-primary, .filter-group__button-primary:focus {
    padding: 0.625rem 2.5rem 0.625rem 1.25rem;
    background-size: 0.875rem 0.875rem;
  }
}

.button--secondary {
  background: white url("../imgs/icons/arrow-right-blue.svg") top 0.875rem right 0.75rem no-repeat;
  background-size: 0.75rem 0.75rem;
  color: #005eb8;
}
.button--secondary:hover {
  text-decoration: none;
  color: white;
}
.button--secondary:focus {
  border-radius: 0;
  color: black;
}
@media (min-width: 850px) {
  .button--secondary {
    background-size: 0.875rem 0.875rem;
    background-position: top 1.125rem right 0.75rem;
  }
  .button--secondary:hover {
    background-repeat: no-repeat;
    text-decoration: none;
    color: white;
  }
  .button--secondary:focus {
    border-radius: 0;
    color: black;
  }
}

.button--block {
  display: block;
  height: 100%;
}

.button__file-info {
  padding-left: 0.75rem;
  font-weight: 400;
}

.button--reset {
  background: none;
  color: #005eb8;
  font-size: 1rem;
  padding: 0;
  margin: 0;
}
.button--reset:hover {
  background: none;
  text-decoration: underline;
}
.button--reset:focus {
  background-image: none;
  text-decoration: none;
}

.button--calendar {
  background: none;
  color: #005eb8;
  font-size: 1rem;
  padding: 0;
  margin: 0;
  text-decoration: underline;
}
.button--calendar:hover {
  background: none;
  color: #005eb8;
}
.button--calendar:focus {
  text-decoration: none;
  background-image: none;
}

.button-menu-toggle {
  display: block;
  width: 100%;
  border: none;
  background-color: white;
  text-align: right;
  color: #005eb8;
  font-size: 1.1875rem;
  padding: 0.375rem;
  cursor: pointer;
  border-top: 0.125rem solid #005eb8;
  padding-right: 0.8125rem;
}

.button-menu-toggle__text {
  vertical-align: middle;
  display: inline-block;
  font-weight: 700;
  margin-bottom: 0;
  text-align: center;
}

.button-menu-toggle__svg {
  vertical-align: middle;
  display: inline-block;
  height: 2.375rem;
  width: 2.375rem;
  border-radius: 0;
}

.button-menu-toggle__line {
  stroke: #41b6e6;
  stroke-width: 9;
  transform-origin: 50% 50%;
  transition: transform 200ms;
}

.button-menu-toggle__line--1 {
  transform: translateY(-20px) rotate(0deg);
}

.button-menu-toggle__line--1--open {
  transform: rotate(45deg);
  transition: transform 200ms;
  stroke: #41b6e6;
}

.button-menu-toggle__line--2 {
  opacity: 1;
  transition: opacity 200ms;
}

.button-menu-toggle__line--2--open {
  opacity: 0;
  transition: opacity 0.125s;
  stroke: #41b6e6;
}

.button-menu-toggle__line--3 {
  transform: translateY(20px) rotate(0deg);
}

.button-menu-toggle__line--3--open {
  transform: rotate(-45deg);
  transition: transform 200ms;
  stroke: #41b6e6;
}

.card-article {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  background: white;
  border-radius: 0;
  border-bottom: 1px solid #41b6e6;
}
@media (min-width: 850px) {
  .card-article {
    flex-direction: row;
    border-bottom: 3px solid #41b6e6;
  }
}

.card-article.card-article--person {
  flex-direction: row;
}

.card-article.card-article--service .card-article__meta-text,
.card-article.card-article--resource .card-article__meta-text {
  display: inline;
}

@media (min-width: 850px) {
  .card-article--vertical {
    flex-direction: column;
  }
}
.card-article--vertical .card-article__figure {
  max-width: none;
  flex-shrink: 0;
}
.card-article--vertical .card-article__content {
  height: 100%;
}

.card-article--person .card-article__figure {
  max-height: 14.0625rem;
  max-width: 14.0625rem;
}
.card-article--person .card-article__figure:after {
  padding-top: 100%;
  display: block;
  content: "";
}

.card-article__figure {
  width: 100%;
  min-height: 13.5rem;
  margin: 0;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.card-article__figure:after {
  padding-top: 50%;
  display: block;
  content: "";
}
@media (min-width: 850px) {
  .card-article__figure {
    max-width: 36%;
  }
}

.card-article__date {
  display: inline-block;
  align-self: flex-start;
  margin-bottom: 0.75rem;
  font-size: 1rem;
  color: #4c6272;
}

.card-article__date--alt {
  padding: 0;
  background: transparent;
}

.card-article__title {
  font-size: 1.375rem;
  margin-bottom: 1rem;
  line-height: 1.2;
}
@media (min-width: 850px) {
  .card-article__title {
    font-size: 1.5rem;
  }
}
.card-article__title a {
  display: inline-block;
  text-decoration: none;
}
.card-article__title a:hover {
  text-decoration: underline;
}

.card-article--no-excerpt .card-article__title {
  margin-bottom: 0;
}
.card-article--no-excerpt .card-article__lower {
  margin-top: 1rem;
}

.card-article__content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 1.5rem;
  width: 100%;
}

.card-article--person .card-article__content {
  min-width: 12.5rem;
}

.card-article__footer {
  margin: 1.5rem 0 0 0;
}

.card-article__meta {
  font-size: 1rem;
  margin: 0;
}
.card-article__meta a {
  display: inline;
}

.card-article--hide-meta-label .card-article__meta-text {
  display: none;
}

.card-article__action {
  margin-bottom: 0;
}
.card-article__action a {
  margin-bottom: 0;
}

.card-article__attributes {
  margin-bottom: 1.5rem;
}
@media (min-width: 850px) {
  .card-article__attributes {
    margin-bottom: 2.25rem;
  }
}

.card-article__icon {
  width: 2rem;
  height: 2rem;
  display: inline-block;
  margin-right: 0.375rem;
}
@media (min-width: 1000px) {
  .card-article__icon {
    width: 2.625rem;
    height: 2.625rem;
  }
}

.card-article__attribute {
  margin: 0 0 0.5rem 0;
}
@media (min-width: 850px) {
  .card-article__attribute {
    margin: 0 0 1.25rem 0;
  }
}
.card-article__attribute:last-of-type {
  margin-bottom: 0;
}

.card-event {
  background: white;
  border-bottom: 0.1875rem solid #41b6e6;
}

.card-event__date {
  display: inline-block;
  color: #4c6272;
  margin-bottom: 0.75rem;
  font-size: 1rem;
}

.card-event__content {
  width: 100%;
  display: flex;
  padding: 1.5rem;
  flex-direction: column;
  justify-content: space-between;
}

.card-event__title {
  margin-bottom: 0.75rem;
  font-size: 1.1875rem;
}
.card-event__title a {
  color: #005eb8;
}
@media (min-width: 850px) {
  .card-event__title {
    font-size: 1.5rem;
  }
}

.card-event__footer {
  margin: 1.5rem 0 0 0;
}

.card-event__title a {
  text-decoration: none;
}
.card-event__title a:hover, .card-event__title a:focus {
  text-decoration: underline;
}

.card-event__excerpt {
  margin-bottom: 0;
}

.card-event__meta {
  font-size: 1rem;
  margin: 0;
}
.card-event__meta a {
  display: inline;
}

.card-event__meta-title {
  font-weight: 700;
}

.card-group--padded {
  padding: 1.25rem 0;
}
@media (min-width: 1000px) {
  .card-group--padded {
    padding: 3rem 0;
  }
}

.card-group--padded-bottom {
  padding-bottom: 1.25rem;
}
@media (min-width: 1000px) {
  .card-group--padded-bottom {
    padding-bottom: 3rem;
  }
}

.card-group--bg-alt {
  background-color: #005eb8;
}
.card-group--bg-alt .card-group__heading {
  color: white;
}
.card-group--bg-alt .signpost-item {
  border: none;
}
.card-group--bg-alt .signpost-item:hover {
  background-color: white;
  color: #212b32;
  border: none;
}
.card-group--bg-alt .signpost-item:hover .signpost-item__title a {
  color: #005eb8;
}
.card-group--bg-alt .signpost-item:hover .signpost-item__content {
  background-color: white;
  background-image: url("../imgs/icons/chevron-right.svg");
}

@media (min-width: 1000px) {
  .card-group--2-cols .card-group__grid-item {
    width: 50%;
  }
}

@media (min-width: 1000px) {
  .card-group--3-cols .card-group__grid-item {
    width: 33.33%;
  }
}

.card-group--3-cols.card-group--multi-row .card-group__grid-item {
  /*@include bp(media-queries.$s) {
      width: 50%;
  }*/
}
@media (min-width: 1000px) {
  .card-group--3-cols.card-group--multi-row .card-group__grid-item {
    width: 33.33%;
  }
}

@media (min-width: 475px) {
  .card-group--4-cols .card-group__grid-item {
    width: 50%;
  }
}
@media (min-width: 1000px) {
  .card-group--4-cols .card-group__grid-item {
    width: 25%;
  }
}

.card-group--text-align-left .card-group__heading {
  text-align: left;
}

@media (min-width: 850px) {
  .card-group__header {
    text-align: center;
  }
}

.card-group__title {
  display: flex;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.card-group__heading {
  font-size: 1.5rem;
  line-height: 1.125;
  margin-bottom: 0;
}
@media (min-width: 850px) {
  .card-group__heading {
    font-size: 1.625rem;
  }
}

.card-group__archive {
  text-align: right;
}

.card-group__archive-link {
  font-size: 1rem;
}
@media (min-width: 1000px) {
  .card-group__archive-link {
    font-size: 1.1875rem;
  }
}

.card-group__description {
  max-width: 50rem;
  margin: 0 auto 1.5rem auto;
  font-size: 1.1875rem;
  line-height: 1.2;
}
@media (min-width: 850px) {
  .card-group__description {
    text-align: center;
    font-size: 1.375rem;
  }
}

.card-group__grid {
  display: flex;
  flex-wrap: wrap;
  box-sizing: border-box;
  margin: 0 0 0 -1.5rem;
  padding: 0;
  list-style: none;
}

.card-group__grid-item {
  padding-left: 1.5rem;
  margin-bottom: 0.75rem;
  width: 100%;
}
@media (min-width: 850px) {
  .card-group__grid-item {
    margin-bottom: 1.5rem;
  }
}

.card-group--text-align-left .card-group__description {
  text-align: left;
  margin: 0 0 1.25rem 0;
}
@media (min-width: 850px) {
  .card-group--text-align-left .card-group__description {
    text-align: left;
  }
}

.card-list {
  width: 100%;
  list-style: none;
  margin: 0;
  padding: 0;
}

.card-list__heading {
  margin-top: 0.75rem;
}

.card-list__card {
  margin-bottom: 1.5rem;
}
.card-list__card:last-child {
  margin-bottom: 0;
}

.card-list--two-columns {
  width: auto;
}
@media (min-width: 850px) {
  .card-list--two-columns {
    display: flex;
    flex-wrap: wrap;
    margin-left: -2.5rem;
  }
}
.card-list--two-columns .card-list__card {
  display: flex;
  margin-bottom: 1.5rem;
}
@media (min-width: 850px) {
  .card-list--two-columns .card-list__card {
    width: 50%;
    padding-left: 2.5rem;
    max-width: calc(50% + 2.5rem);
  }
}

.card-list__return-to-top {
  display: block;
  font-weight: 700;
  margin-top: 0.75rem;
  font-size: 1rem;
  padding-left: 0.9375rem;
  background-image: url("../imgs/icons/chevron-up-light.svg");
  background-size: 0.625rem 0.625rem;
  background-repeat: no-repeat;
  background-position: left bottom 0.75rem;
}
@media (min-width: 850px) {
  .card-list__return-to-top {
    font-size: 1.1875rem;
    padding-left: 1.375rem;
    background-image: url("../imgs/icons/chevron-up-light.svg");
    background-size: 0.875rem 0.875rem;
    background-repeat: no-repeat;
    background-position: left bottom 0.75rem;
  }
}

.child-pages-menu {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  margin: 0;
  margin-left: -1.5rem;
}

.child-pages-menu__item {
  display: flex;
  width: 100%;
  padding-left: 1.5rem;
  font-size: 1.1875rem;
}
@media (min-width: 850px) {
  .child-pages-menu__item {
    width: 33.3333%;
  }
}
.child-pages-menu__item:nth-child(3n+1) {
  padding-left: 0;
}
.child-pages-menu__item:nth-last-child(-n+3) .child-pages-menu__link {
  border-bottom: 1px solid #41b6e6;
}

.child-pages-menu__link {
  position: relative;
  padding: 0.625rem 1.25rem 0.625rem 0;
  width: 100%;
  border-top: 1px solid #41b6e6;
  font-size: 1.1875rem;
  font-weight: 700;
  text-decoration: none;
}
.child-pages-menu__link:after {
  content: "";
  position: absolute;
  width: 0.75rem;
  height: 0.75rem;
  top: 1.125rem;
  right: 0;
  background: url("../imgs/icons/arrow-right-blue.svg") no-repeat center;
}
@media (min-width: 1000px) {
  .child-pages-menu__link {
    font-size: 1.1875rem;
    margin-right: 1.375rem;
  }
  .child-pages-menu__link:after {
    width: 0.875rem;
    height: 0.875rem;
    top: 1rem;
  }
}
.child-pages-menu__link:hover {
  color: #231f20;
}
.child-pages-menu__link:hover:after {
  background-image: url("../imgs/icons/arrow-right-black.svg");
}

.container {
  width: 100%;
  display: block;
}

.container--padded {
  padding: 1.5rem 0;
}
@media (min-width: 850px) {
  .container--padded {
    padding: 4rem 0;
  }
}

.container--padded-bottom {
  padding-bottom: 1.5rem;
}
@media (min-width: 850px) {
  .container--padded-bottom {
    padding-bottom: 4rem;
  }
}

.content-sidebar-group {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 100%;
}
.content-sidebar-group a:focus {
  outline: 0.1875rem #005eb8 solid;
}

.content-sidebar-group--sidebar-top-mobile .content-sidebar-group__sidebar {
  order: 1;
}
.content-sidebar-group--sidebar-top-mobile .content-sidebar-group__content {
  order: 2;
}
@media (min-width: 850px) {
  .content-sidebar-group--sidebar-top-mobile .content-sidebar-group__sidebar {
    order: 2;
  }
  .content-sidebar-group--sidebar-top-mobile .content-sidebar-group__content {
    order: 1;
  }
}

.content-sidebar-group__content {
  width: 100%;
}
@media (min-width: 850px) {
  .content-sidebar-group__content {
    width: auto;
    flex: 1 0;
  }
}

.content-sidebar-group__content-item,
.content-sidebar-group__sidebar-item {
  margin: 0 0 1.5rem 0;
}
.content-sidebar-group__content-item:last-child,
.content-sidebar-group__sidebar-item:last-child {
  margin: 0;
}

.content-sidebar-group__sidebar {
  width: 100%;
  margin: 1.5rem 0 1.5rem 0;
}
@media (min-width: 850px) {
  .content-sidebar-group__sidebar {
    width: 35%;
    margin: 0 0 0 1.5rem;
  }
}
@media (min-width: 1200px) {
  .content-sidebar-group__sidebar {
    width: 30%;
    margin: 0 0 0 4.6875rem;
  }
}

.content-sidebar-group__sidebar--before {
  margin: 0 0 1.5rem 0;
}
@media (min-width: 850px) {
  .content-sidebar-group__sidebar--before {
    margin: 0 1.5rem 0 0;
  }
}
@media (min-width: 1200px) {
  .content-sidebar-group__sidebar--before {
    margin: 0 4.6875rem 0 0;
  }
}

.cqc-widget a:focus {
  outline: 0.1875rem solid #005eb8;
}

.date-human {
  display: inline-block;
  color: #212b32;
  font-weight: 400;
  font-size: 1rem;
  background-image: url("./../imgs/icons/clock.svg");
  background-repeat: no-repeat;
  background-position: left center;
  background-size: 1.2rem 1.2rem;
  padding-left: 1.7rem;
}

.date-range {
  display: inline-block;
  border-radius: 0.25rem;
  color: #212b32;
  font-weight: 400;
  font-size: 1rem;
  padding: 0 0.5rem;
}
@media (min-width: 1000px) {
  .date-range {
    font-size: 1.1875rem;
  }
}

.editor-notice {
  margin: 0;
  padding: 0.75rem;
  border: 0.0625rem solid #d8dde0;
  border-left-color: #005eb8;
  border-left-width: 0.25rem;
}

.editor-notice__message {
  margin-bottom: 0;
}
.editor-notice__message:before {
  content: "Warning: ";
  font-weight: bold;
}

#environment-notification {
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1.25;
  padding: 0 0.75rem;
  height: 5.125rem;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 99998;
  background: #ffb81c;
}
@media (min-width: 600px) {
  #environment-notification {
    position: fixed;
  }
}
@media (min-width: 782px) {
  #environment-notification {
    height: 4.125rem;
  }
}

.environment-notification__text {
  text-align: center;
  margin: 0;
}

.environment-notification__link {
  color: #212b32;
  font-weight: 700;
}
.environment-notification__link:hover {
  color: #212b32;
}

body.environment-staging {
  margin-top: 5.125rem;
}
@media (min-width: 782px) {
  body.environment-staging {
    margin-top: 4.125rem;
  }
}

body.environment-staging.logged-in #environment-notification {
  top: 2.875rem;
}
@media (min-width: 782px) {
  body.environment-staging.logged-in #environment-notification {
    top: 2rem;
  }
}

.featured-pages {
  position: relative;
  width: 100%;
  padding: 0 2.25rem;
}
.featured-pages:before {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: calc(100% - 6.625rem);
  background-color: #425563;
}
@media (min-width: 850px) {
  .featured-pages {
    padding: 0 6.625rem;
  }
}

.featured-pages__list {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  margin-left: -6.625rem;
  padding: 0;
  list-style: none;
}

.featured-pages__list-item {
  width: 100%;
  padding-left: 6.625rem;
  margin-bottom: 3rem;
}
@media (min-width: 850px) {
  .featured-pages__list-item {
    width: 50%;
    margin-bottom: 4rem;
  }
}

@media (min-width: 850px) {
  .featured-pages__list-item--3-col {
    width: 33.33333%;
  }
}

.featured-page-item {
  position: relative;
  width: 100%;
  min-height: 100%;
  color: white;
  text-decoration: none;
}
.featured-page-item p:last-child {
  margin: 0;
}
@media (min-width: 850px) {
  .featured-page-item:not(.featured-page-item--has-image) {
    padding-top: 14.1875rem;
    min-height: calc(100% - 14.1875rem);
  }
}

.featured-page-item:hover,
.featured-page-item:focus {
  color: white;
  border-bottom-color: #ffb81c;
  text-decoration: none;
}
.featured-page-item:hover .featured-page-item__title,
.featured-page-item:focus .featured-page-item__title {
  color: inherit;
  text-decoration: underline;
}

.featured-page-item__image {
  min-height: 15.3125rem;
  margin-bottom: 1.5rem;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
@media (min-width: 850px) {
  .featured-page-item__image {
    min-height: 12.6875rem;
    margin-right: 3.125rem;
  }
}

.featured-page-item__title {
  display: inline-block;
  color: white;
  padding-right: 1.625rem;
  margin: 0;
  font-size: 1.1875rem;
  font-weight: bold;
  line-height: 1.25;
  background-image: url("../imgs/icons/chevron-right-orange.svg");
  background-position: right top 0.625rem;
  background-size: 0.625rem;
  background-repeat: no-repeat;
  width: 100%;
}
.featured-page-item__title a {
  color: inherit;
  text-decoration: none;
  border-bottom: 2px solid transparent;
}
.featured-page-item__title a:hover, .featured-page-item__title a:focus {
  border-bottom: 2px solid rgba(255, 255, 255, 0.5);
}
@media (min-width: 850px) {
  .featured-page-item__title {
    font-size: 1.5rem;
    background-position: right top;
    background-size: 0.875rem;
  }
}

.featured-page-item__excerpt {
  margin-top: 0.75rem;
  padding-right: 3.125rem;
}
@media (min-width: 850px) {
  .featured-page-item__excerpt {
    margin-top: 1.25rem;
  }
}

.filter-date {
  position: relative;
}

.filter-date__label {
  display: block;
  font-size: 1.1875rem;
  margin-bottom: 0.3125rem;
}
@media (min-width: 850px) {
  .filter-date__label {
    font-size: 1.5rem;
  }
}

.filter-date__input {
  width: 100%;
  background-color: white;
  background-repeat: no-repeat;
  background-size: 1.5625rem 1.5625rem;
  background-position: right 0.625rem center;
  background-image: url("./../imgs/icons/calendar.svg");
  margin: 0;
  border: 0.0625rem solid #768692;
}
.filter-date__input:focus {
  border-color: #005eb8;
}

/****************************************************
 * Theme settings
/****************************************************/
.flatpickr-calendar {
  position: absolute;
  display: none;
  visibility: hidden;
  animation: none;
  opacity: 0;
  border: 0;
  width: 100%;
  max-width: 25rem;
  padding: 1.5rem;
  background: #fff;
  color: #212b32;
  font-size: 0.875rem;
  border: #4c6272 0.0625rem solid;
  text-align: center;
  margin-top: 0.3125rem;
}

.flatpickr-calendar.open,
.flatpickr-calendar.inline {
  visibility: visible;
  opacity: 1;
}

.flatpickr-calendar.open {
  display: block;
  z-index: 99999;
}

.flatpickr-calendar.inline {
  display: block;
}

.flatpickr-calendar:focus {
  outline: 0;
}

.flatpickr-wrapper {
  position: relative;
  display: inline-block;
}

.flatpickr-months {
  display: flex;
  margin-bottom: 0.625rem;
}

.flatpickr-month {
  line-height: 1;
  text-align: center;
  position: relative;
  user-select: none;
  flex: 1;
}

.flatpickr-months .flatpickr-prev-month,
.flatpickr-months .flatpickr-next-month {
  user-select: none;
  text-decoration: none;
  cursor: pointer;
  padding: 0.375rem 1rem;
  background: #005eb8;
  border-radius: 0.3125rem;
  z-index: 3;
}

.flatpickr-months .flatpickr-prev-month:hover,
.flatpickr-months .flatpickr-next-month:hover {
  background: #003087;
}

.flatpickr-months .flatpickr-prev-month svg path,
.flatpickr-months .flatpickr-next-month svg path {
  stroke: white;
  stroke-width: 2;
  stroke-linecap: round;
}

.flatpickr-months .flatpickr-prev-month:hover svg path,
.flatpickr-months .flatpickr-next-month:hover svg path {
  fill: #f64747;
}

.flatpickr-months .flatpickr-prev-month svg,
.flatpickr-months .flatpickr-next-month svg {
  width: 0.625rem;
  height: 0.625rem;
}

.numInputWrapper {
  font-size: 1rem;
  pointer-events: none;
}

.flatpickr-current-month {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}

.flatpickr-current-month .cur-month {
  font-size: 1rem;
  font-weight: 700;
  display: inline-block;
  padding: 0;
  margin-right: 0.3125rem;
}

.flatpickr-current-month .cur-year[type=number] {
  max-width: 3.125rem;
  font-weight: 700;
  background: transparent;
  color: inherit;
  padding: 0;
  margin: 0;
  font-size: inherit;
  height: auto;
  border: 0;
  border-radius: 0;
  vertical-align: initial;
  appearance: textfield;
}

.flatpickr-current-month .cur-year:focus {
  outline: 0;
}

.flatpickr-weekdays {
  display: flex;
  background: transparent;
  text-align: center;
  overflow: hidden;
  width: 100%;
}

.flatpickr-weekdaycontainer {
  display: flex;
  flex: 1;
}

.flatpickr-weekday {
  display: block;
  flex: 1;
  cursor: default;
  font-size: 0.9375rem;
  font-weight: 700;
  width: 14.28571%;
  line-height: 1;
  margin: 0;
  text-align: center;
}

.flatpickr-days {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-start;
}

.dayContainer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  width: 100%;
  padding: 0;
  outline: 0;
  text-align: left;
  opacity: 1;
}

.flatpickr-day {
  background: none;
  border: 1px solid transparent;
  border-radius: 150px;
  color: #212b32;
  cursor: pointer;
  font-weight: 400;
  width: 14.28571%;
  height: 3.125rem;
  line-height: 3.125rem;
  margin: 0;
  position: relative;
  text-align: center;
}

.flatpickr-day.inRange,
.flatpickr-day.prevMonthDay.inRange,
.flatpickr-day.nextMonthDay.inRange,
.flatpickr-day.today.inRange,
.flatpickr-day.prevMonthDay.today.inRange,
.flatpickr-day.nextMonthDay.today.inRange,
.flatpickr-day:hover,
.flatpickr-day.prevMonthDay:hover,
.flatpickr-day.nextMonthDay:hover,
.flatpickr-day:focus,
.flatpickr-day.prevMonthDay:focus,
.flatpickr-day.nextMonthDay:focus {
  cursor: pointer;
  outline: 0;
  background: #005eb8;
  border-color: #005eb8;
  color: white;
}

.flatpickr-day.today {
  border: 0.125rem solid;
  border-color: #005eb8;
}

.flatpickr-day.today:hover,
.flatpickr-day.today:focus {
  border-color: #005eb8;
  color: #fff;
}

.flatpickr-day.selected,
.flatpickr-day.startRange,
.flatpickr-day.endRange,
.flatpickr-day.selected.inRange,
.flatpickr-day.startRange.inRange,
.flatpickr-day.endRange.inRange,
.flatpickr-day.selected:focus,
.flatpickr-day.startRange:focus,
.flatpickr-day.endRange:focus,
.flatpickr-day.selected:hover,
.flatpickr-day.startRange:hover,
.flatpickr-day.endRange:hover,
.flatpickr-day.selected.prevMonthDay,
.flatpickr-day.startRange.prevMonthDay,
.flatpickr-day.endRange.prevMonthDay,
.flatpickr-day.selected.nextMonthDay,
.flatpickr-day.startRange.nextMonthDay,
.flatpickr-day.endRange.nextMonthDay {
  background: #003087;
  color: #fff;
  border-color: #003087;
}

.flatpickr-day.selected.startRange,
.flatpickr-day.startRange.startRange,
.flatpickr-day.endRange.startRange {
  border-radius: 50px 0 0 50px;
}

.flatpickr-day.selected.endRange,
.flatpickr-day.startRange.endRange,
.flatpickr-day.endRange.endRange {
  border-radius: 0 50px 50px 0;
}

.flatpickr-day.selected.startRange.endRange,
.flatpickr-day.startRange.startRange.endRange,
.flatpickr-day.endRange.startRange.endRange {
  border-radius: 50px;
}

.flatpickr-day.inRange {
  border-radius: 0;
}

.flatpickr-day.flatpickr-disabled,
.flatpickr-day.flatpickr-disabled:hover,
.flatpickr-day.prevMonthDay,
.flatpickr-day.nextMonthDay,
.flatpickr-day.notAllowed,
.flatpickr-day.notAllowed.prevMonthDay,
.flatpickr-day.notAllowed.nextMonthDay {
  color: rgba(0, 0, 0, 0.3);
  background: transparent;
  border-color: transparent;
  cursor: default;
}

.flatpickr-day.flatpickr-disabled,
.flatpickr-day.flatpickr-disabled:hover {
  cursor: not-allowed;
  color: rgba(255, 255, 255, 0.1);
}

.flatpickr-day.week.selected {
  border-radius: 0;
}

.flatpickr-day.hidden {
  visibility: hidden;
}

/*.rangeMode .flatpickr-day {
    margin-top: 1px;
}*/
.flatpickr-weekwrapper .flatpickr-weekday {
  float: none;
  width: 100%;
  line-height: 28px;
}

.flatpickr-weekwrapper span.flatpickr-day {
  display: block;
  width: 100%;
  max-width: none;
  color: rgba(0, 0, 0, 0.3);
  background: transparent;
  cursor: default;
  border: none;
}

.flatpickr-innerContainer {
  display: flex;
  overflow: hidden;
}

.filter-date-range-dropdown {
  width: 100%;
}

.filter-date-range-dropdown__label {
  display: block;
  font-size: 1.1875rem;
  margin-bottom: 0.3125rem;
}

.filter-date-range-dropdown select {
  width: 100%;
  height: 3.25rem;
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  padding: 0.9375rem;
  border: 0.0625rem solid #4c6272;
}
@supports (display: block) {
  .filter-date-range-dropdown select {
    padding-right: 2.1875rem;
    background-image: url("../imgs/icons/chevron-down.svg");
    background-repeat: no-repeat;
    background-color: #fff;
    background-position: right 0.625rem center;
    background-size: 1.375rem 1.375rem;
  }
}

.filter-date-range-custom {
  display: none;
  margin-top: 1.5rem;
}

.filter-group input:focus,
.filter-group select:focus,
.filter-group p a:focus,
.filter-group button[type=submit]:focus {
  outline: #005eb8 0.1875rem solid;
}

.filter-group__mobile-toggle {
  display: block;
  border: none;
  outline: none;
  -webkit-font-smoothing: antialiased;
  -webkit-appearance: none;
  padding: 0.625rem 2.1875rem 0.625rem 0.625rem;
  background: #003087 url("../imgs/icons/custom-select.svg") no-repeat;
  background-size: 1rem 1rem;
  background-position: right 0.625rem center;
  border-radius: 0;
  color: white;
  font-size: 1rem;
  font-weight: 700;
  width: 100%;
  text-decoration: none;
  text-align: left;
}
.filter-group__mobile-toggle:hover {
  text-decoration: underline;
  text-decoration-thickness: 0.125rem;
}
.filter-group__mobile-toggle:focus {
  outline: #005eb8 0.1875rem solid;
  background: #fae100 url("../imgs/icons/custom-select-black.svg") no-repeat;
  background-size: 1rem 1rem;
  background-position: right 0.625rem center;
}
@media (min-width: 850px) {
  .filter-group__mobile-toggle {
    display: none;
  }
}

.filter-group__title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  display: none;
}
@media (min-width: 850px) {
  .filter-group__title {
    display: block;
  }
}

.filter-group__container {
  background: white;
  border: 0.0625rem solid #efefef;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
}
@media (min-width: 850px) {
  .filter-group__container {
    background: transparent;
    border: none;
    padding: 0;
  }
}

.filter-group__item {
  margin-bottom: 1.5rem;
}
.filter-group__item:last-of-type {
  margin-bottom: 0;
}

.filter-group__search {
  margin-bottom: 1.5rem;
}

.filter-group__controls {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
}
.filter-group__controls .button, .filter-group__controls .filter-group__button-primary {
  margin-left: 1.125rem;
}

.filter-group__reset {
  display: block;
  font-size: 1rem;
  text-decoration: underline;
  padding: 0.25rem 0;
  color: #005eb8;
}
@media (min-width: 850px) {
  .filter-group__reset {
    font-size: 1.1875rem;
  }
}

.filter-group__button-primary {
  margin-bottom: 0;
}
.filter-group__button-primary:focus {
  margin-bottom: 0;
}

.filter-dropdown {
  width: 100%;
}

.filter-dropdown__label {
  display: block;
  font-size: 1.1875rem;
  margin-bottom: 0.3125rem;
}

.filter-dropdown select {
  width: 100%;
  margin: 0;
}

.filter-search {
  width: 100%;
}

.filter-search__label {
  display: block;
  font-size: 1.1875rem;
  margin-bottom: 0.3125rem;
}

.filter-search__input-group {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  width: 100%;
  margin: 0;
  border: 0.0625rem solid #4c6272;
  background-color: white;
}

.filter-search__field {
  display: block;
  flex: 1 0;
  min-width: 0;
  height: 3.25rem;
  border: none;
  margin: 0;
  padding-left: 0.625rem;
  background-color: white;
}

.filter-search__submit {
  display: block;
  margin: 0;
  text-indent: -9999px;
  width: 3.25rem;
  height: 3.25rem;
  padding: 0.625rem;
  background: url("./../imgs/icons/search-white.svg") no-repeat center;
  background-size: 1.5625rem;
  background-color: #0072ce;
  border: none;
  color: white;
}
.filter-search__submit:focus {
  background: #fae100 url("./../imgs/icons/search-black.svg") no-repeat center;
  background-size: 1.5625rem;
}

/**
 * Component: Filter Summary
 */
.in-this-section__title {
  font-size: 1.625rem;
  margin-bottom: 0.25rem;
}

.in-this-section__list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.in-this-section__link {
  display: inline-block;
  color: #005eb8;
  font-weight: 700;
  text-decoration: none;
  padding-top: 1rem;
  padding-bottom: 0.75rem;
  padding-right: 1.5rem;
  border-bottom: solid 1px #41b6e6;
  width: 100%;
  background-image: url(../imgs/icons/arrow-right-blue.svg);
  background-position: right 24px;
  background-size: 0.875rem 0.875rem;
  background-repeat: no-repeat;
}
.in-this-section__link:hover {
  text-decoration: underline;
}
.in-this-section__link:focus {
  background-image: url(../imgs/icons/arrow-right-black.svg);
}
@media (min-width: 850px) {
  .in-this-section__link {
    background-position: right 24px;
    background-size: 1rem 1rem;
  }
}

.in-this-section__link[aria-current=page] {
  color: #212b32;
  background-image: url(../imgs/icons/arrow-right-black.svg);
}

.searchwp-live-search {
  width: 100%;
  max-width: 17.5rem;
}

.searchwp-live-search-results {
  opacity: 0;
  transition: opacity 0.25s ease-in-out;
  -moz-transition: opacity 0.25s ease-in-out;
  -webkit-transition: opacity 0.25s ease-in-out;
  height: 0;
  overflow: hidden;
  text-indent: -9999px;
  z-index: 9999995; /* Exceed SearchWP Modal Search Form overlay. */
  position: absolute;
  display: none;
  font-size: 1rem;
  background: white;
  border: 0.0625rem solid #768692;
  border-radius: 0.3125rem;
}

.searchwp-live-search-results-showing {
  display: block;
  text-indent: 0;
  opacity: 1;
  height: auto;
  overflow: auto;
}

.searchwp-live-search-result {
  display: block;
  padding: 0.9375rem 0.625rem;
  border-top: 0.0625rem solid #d8dde0;
}
.searchwp-live-search-result:first-child {
  border-top: 0;
}

.searchwp-live-search-result__text {
  margin-bottom: 0;
}

.searchwp-live-search-no-results {
  padding: 0.9375rem 0.625rem;
  margin-bottom: 0;
  text-align: center;
}

.searchwp-live-search-no-min-chars:after {
  content: "Continue typing";
  display: block;
  text-align: center;
  padding: 5.9375rem 0.625rem 0.9375rem 0.625rem;
}

@keyframes searchwp-spinner-line-fade-quick {
  0%, 39%, 100% {
    opacity: 0.25;
  }
  40% {
    opacity: 1;
  }
}
.main {
  width: 100%;
  display: block;
}

.main--bg-secondary {
  background-color: white;
}

.mega-menu {
  display: none;
  padding: 3rem 0;
  width: 100%;
}
.mega-menu .u-wrapper {
  display: flex;
  justify-content: space-between;
}
@media (min-width: 1000px) {
  .mega-menu {
    display: block;
  }
}

.mega-menu__title {
  margin-bottom: 2.25rem;
  font-size: 1.375rem;
  width: 100%;
  font-weight: 700;
  color: inherit;
}
@media (min-width: 1000px) {
  .mega-menu__title {
    font-size: 1.5rem;
  }
}

.mega-menu__text {
  font-size: 1rem;
  text-align: right;
  margin: 0.625rem 0;
  flex-basis: 100%;
}
.mega-menu__text a {
  text-decoration: underline;
}
@media (min-width: 1000px) {
  .mega-menu__text {
    font-size: 1.1875rem;
  }
}

.mega-menu__content {
  width: 100%;
  flex-grow: 1;
}

.mega-menu__panel {
  max-width: 22.625rem;
}
.mega-menu__panel .button {
  display: block;
  width: auto;
}

.mega-menu__panel-title {
  color: #212b32;
}

.mega-menu__panel-text {
  color: #212b32;
}

.nav-footer {
  display: flex;
  width: 100%;
  list-style-type: none;
  margin: 0;
  padding: 0;
  flex-wrap: wrap;
}

.nav-footer__item {
  margin-right: 1.5rem;
}

.nav-primary {
  display: none;
  padding: 0;
  margin: 0;
  width: 100%;
  list-style-type: none;
  font-weight: 700;
  margin-left: -0.75rem;
}
@media (min-width: 1000px) {
  .nav-primary {
    font-size: 1.125rem;
    display: flex;
    flex-wrap: wrap;
  }
}
@media (min-width: 1200px) {
  .nav-primary {
    font-size: 1.3125rem;
  }
}

.nav-primary__link {
  padding: 0.75rem;
  display: block;
  position: relative;
  text-decoration: none;
  color: #005eb8;
  border-bottom: 0.0625rem solid transparent;
}
@media (min-width: 1000px) {
  .nav-primary__link {
    padding: 0.5rem;
  }
}
@media (min-width: 1200px) {
  .nav-primary__link {
    padding: 0.75rem 1rem 0.75rem;
  }
}
.nav-primary__link:hover {
  background-color: #f0f4f5;
  color: #231f20;
  text-decoration: none;
}

.nav-primary__item--parent .nav-primary__link {
  background-image: url("../imgs/icons/arrow-right-blue.svg");
  background-position: center right 0.625rem;
  background-repeat: no-repeat;
  background-size: 0.875rem 0.875rem;
  padding-right: 2rem;
}
@media (min-width: 1200px) {
  .nav-primary__item--parent .nav-primary__link {
    padding-right: 2.1875rem;
  }
}

.nav-primary__item--active .nav-primary__link,
.nav-primary__item--parent + .nav-primary__item--active .nav-primary__link {
  color: #4c6272;
}
.nav-primary__item--active .nav-primary__link:hover,
.nav-primary__item--parent + .nav-primary__item--active .nav-primary__link:hover {
  border-bottom: 0.0625rem solid transparent;
}

.nav-primary__item--parent:hover .nav-primary__link {
  z-index: 999;
}

.nav-primary__item--parent:focus .nav-primary__link,
.nav-primary__item--parent:focus-within .nav-primary__link {
  z-index: 999;
}

.nav-primary__item--parent:hover .nav-primary__dropdown {
  z-index: 999;
  top: 100%;
}

.nav-primary__item--parent:hover .nav-primary__dropdown,
.nav-primary__item--parent:focus .nav-primary__dropdown,
.nav-primary__item--parent:focus-within .nav-primary__dropdown {
  z-index: 999;
  top: 100%;
}

.nav-primary__dropdown {
  position: absolute;
  top: -9999px;
  left: 0;
  background: #f0f4f5;
  border-bottom: 0.25rem solid #41b6e6;
  width: 100%;
}

.nav-mobile-primary {
  text-align: right;
  list-style: none;
  font-size: 1.0625rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.nav-mobile-primary__item {
  margin-bottom: 0.75rem;
}

.nav-mobile-primary__link {
  color: #005eb8;
  text-decoration: none;
  padding-right: 1.5rem;
  background-image: url(../imgs/icons/arrow-right-blue.svg);
  background-position: right 6px;
  background-size: 0.875rem 0.875rem;
  background-repeat: no-repeat;
}
.nav-mobile-primary__link:hover {
  color: #231f20;
  text-decoration: underline;
  background-image: url(../imgs/icons/arrow-right-blue.svg);
}

.nav-mobile-primary__item--active .nav-mobile-primary__link {
  text-decoration: underline;
}

.nav-secondary {
  margin: 0;
  padding: 0;
  list-style-type: none;
}
@media (min-width: 1000px) {
  .nav-secondary {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
  }
}

.nav-secondary__item {
  margin-left: 0.75rem;
  font-size: 1rem;
}
@media (min-width: 1235px) {
  .nav-secondary__item {
    font-size: 1.1875rem;
    margin-left: 1.5rem;
  }
}

.nav-secondary__link {
  display: block;
  color: #231f20;
  text-decoration: none;
}
.nav-secondary__link:hover {
  text-decoration: underline;
  color: #005eb8;
}
.nav-secondary__item--active .nav-secondary__link {
  text-decoration: underline;
  text-decoration-thickness: 0.125rem;
}

.nav-secondary__item:last-of-type .nav-secondary__link {
  background: #05a9c7;
  padding: 0.25rem 0.75rem;
}
.nav-secondary__item:last-of-type .nav-secondary__link:hover {
  color: #231f20;
}
.nav-secondary__item:last-of-type .nav-secondary__link:focus {
  background: #fae100;
}

.nav-mobile-secondary {
  text-align: right;
  list-style: none;
  font-size: 1.0625rem;
  margin-bottom: 0.25rem;
}

.nav-mobile-secondary__link {
  margin-bottom: 0.75rem;
}

.nav-mobile-secondary__link {
  color: #005eb8;
  text-decoration: none;
  margin-right: 1.5rem;
  margin-bottom: 0.75rem;
  line-height: 2;
}
.nav-mobile-secondary__link:hover {
  color: #231f20;
  text-decoration: underline;
}

.nav-mobile-secondary__item--active .nav-mobile-secondary__link {
  text-decoration: underline;
}

.nav-mobile-secondary__item:last-of-type {
  margin-top: 0.5rem;
}

.nav-mobile-secondary__item:last-of-type .nav-mobile-secondary__link {
  background: #05a9c7;
  padding: 0.25rem 0.75rem;
  color: #212b32;
  font-size: 1.1875rem;
}

.page-dates {
  display: flex;
  flex-wrap: wrap;
  max-width: 50rem;
  padding-bottom: 1.5rem;
  padding-top: 0.75rem;
  color: #4c6272;
}
@media (min-width: 475px) {
  .page-dates {
    padding-bottom: 3rem;
  }
}
@media (min-width: 475px) {
  .page-dates .page-dates__date-text:nth-of-type(2) {
    margin-left: 1.25rem;
    border-left: 0.125rem solid #212b32;
    padding-left: 1.25rem;
    padding-top: 0;
  }
}

.page-dates__date {
  flex-basis: 50%;
  padding-left: 0.25rem;
}
@media (min-width: 475px) {
  .page-dates__date {
    flex-basis: auto;
  }
}

.page-title {
  position: relative;
  width: 100%;
  color: white;
  background-color: #005eb8;
  overflow: hidden;
  padding: 0.75rem 0;
}
.page-title a {
  color: inherit;
}
@media (min-width: 850px) {
  .page-title {
    padding: 1.375rem 0 3.125rem 0;
  }
}
.page-title:after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-image: url("../imgs/page-title-bg.svg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top right;
}
@media (min-width: 475px) {
  .page-title:after {
    background-size: contain;
  }
}
.page-title:before {
  content: none;
  position: absolute;
  bottom: -106px;
  left: -261px;
  width: 755px;
  height: 654px;
  background-image: url("../imgs/page-title-bg-before.svg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: bottom left;
}
@media (min-width: 850px) {
  .page-title:before {
    content: "";
  }
}

.page-title__published {
  display: flex;
  align-items: center;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0;
  color: white;
}

.page-title__breadcrumbs {
  margin-bottom: 0.625rem;
  position: relative;
  z-index: 1;
}
@media (min-width: 1000px) {
  .page-title__breadcrumbs {
    margin-bottom: 3.125rem;
  }
}

.page-title__content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
}

@media (min-width: 1000px) {
  .page-title__text {
    flex: 1 0;
    max-width: 52.5rem;
  }
}
.page-title__text p {
  margin-bottom: 0.625rem;
}
@media (min-width: 850px) {
  .page-title__text p {
    margin-bottom: 1.5rem;
  }
}

@media (min-width: 1000px) {
  .page-title__image {
    width: 45%;
    margin-left: 5%;
  }
}

.page-title__heading {
  display: block;
  font-size: 1.625rem;
  font-weight: 700;
}
@media (min-width: 850px) {
  .page-title__heading {
    font-size: 2.375rem;
  }
}
@media (min-width: 1200px) {
  .page-title__heading {
    font-size: 3rem;
  }
}

.page-title__excerpt {
  font-size: 1rem;
  max-width: 50rem;
}
@media (min-width: 1000px) {
  .page-title__excerpt {
    font-size: 1.5rem;
  }
}

.page-title--light {
  color: #212b32;
  background-color: #d8dde0;
}

.page-title--childrens-single {
  color: #212b32;
  background-color: #fae100;
}
.page-title--childrens-single:after {
  content: none;
}
.page-title--childrens-single:before {
  content: none;
}
.page-title--childrens-single .u-wrapper {
  position: relative;
}
@media (min-width: 850px) {
  .page-title--childrens-single .u-wrapper:after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 11.25rem;
    height: 11.25rem;
    background-image: url("../imgs/children-animals/kangaroo-moose.svg");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: top right;
  }
}
@media (min-width: 1000px) {
  .page-title--childrens-single .u-wrapper:after {
    width: 18.125rem;
    height: 18.125rem;
  }
}
.page-title--childrens-single .breadcrumbs--primary,
.page-title--childrens-single .breadcrumbs--primary span {
  color: #212b32;
}
.page-title--childrens-single .page-title__text {
  max-width: none;
}
@media (min-width: 850px) {
  .page-title--childrens-single .page-title__text {
    max-width: 70%;
  }
}
@media (min-width: 850px) {
  .page-title--childrens-single {
    padding: 1.375rem 0;
  }
}
@media (min-width: 1000px) {
  .page-title--childrens-single {
    padding: 1.375rem 0 3.125rem 0;
  }
}

@media (min-width: 850px) {
  .page-title--bird-giraffes .u-wrapper:after {
    background-image: url("../imgs/children-animals/bird-giraffes.svg");
  }
}

@media (min-width: 850px) {
  .page-title--bird-kangaroo .u-wrapper:after {
    background-image: url("../imgs/children-animals/bird-kangaroo.svg");
  }
}

@media (min-width: 850px) {
  .page-title--birds-kangaroo .u-wrapper:after {
    background-image: url("../imgs/children-animals/birds-kangaroo.svg");
  }
}

@media (min-width: 850px) {
  .page-title--birds-moose .u-wrapper:after {
    background-image: url("../imgs/children-animals/birds-moose.svg");
  }
}

@media (min-width: 850px) {
  .page-title--kangaroo-birds .u-wrapper:after {
    background-image: url("../imgs/children-animals/kangaroo-birds.svg");
  }
}

@media (min-width: 850px) {
  .page-title--kangaroo-moose .u-wrapper:after {
    background-image: url("../imgs/children-animals/kangaroo-moose.svg");
  }
}

@media (min-width: 850px) {
  .page-title--moose-giraffes .u-wrapper:after {
    background-image: url("../imgs/children-animals/moose-giraffes.svg");
  }
}

@media (min-width: 850px) {
  .page-title--moose-giraffes2 .u-wrapper:after {
    background-image: url("../imgs/children-animals/moose-giraffes2.svg");
  }
}

.pagination {
  display: flex;
  align-items: center;
  margin-bottom: 2.5rem;
  justify-content: center;
}

.pagination--margin-top {
  margin-top: 1.25rem;
  margin-bottom: 2.5rem;
}
@media (min-width: 850px) {
  .pagination--margin-top {
    margin-bottom: 0;
  }
}

.pagination__list {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 1rem;
}
@media (min-width: 850px) {
  .pagination__list {
    font-size: 1.1875rem;
  }
}

.pagination__list--narrow {
  width: 100%;
  justify-content: center;
}
@media (min-width: 850px) {
  .pagination__list--narrow {
    width: 66.66666%;
  }
}

.pagination__item {
  margin-right: 0.3125rem;
}

.pagination__item--hidden-mobile {
  display: none;
}
@media (min-width: 850px) {
  .pagination__item--hidden-mobile {
    display: block;
  }
}

.pagination__button {
  display: block;
  color: #005eb8;
  padding: 0.375rem 1rem;
  border: 0.0625rem solid #e8edee;
  font-weight: 700;
}
.pagination__button:hover {
  background: #ffb81c;
  color: #212b32;
  text-decoration: none;
}

.pagination__button--disabled {
  background: #212b32;
  color: #0d1113;
  border: 0.0625rem solid transparent;
}

.pagination__button--active {
  background: #005eb8;
  border: 1px solid #005eb8;
  color: white;
}

.pagination__item--disabled .pagination__button--next,
.pagination__item--disabled .pagination__button--prev {
  color: #212b32;
}
.pagination__item--disabled .pagination__button--next:hover,
.pagination__item--disabled .pagination__button--prev:hover {
  color: inherit;
  text-decoration: none;
}

.pagination__button--next,
.pagination__button--prev {
  background: none;
  border: 0.0625rem solid transparent;
  color: #005eb8;
}
.pagination__button--next:hover,
.pagination__button--prev:hover {
  background: none;
  text-decoration: underline;
  color: #00519f;
}

.pagination__ellipsis {
  display: block;
  padding: 0.375rem 0.6875rem;
}

.people-card {
  max-width: 50rem;
  height: 100%;
}

.people-card__image {
  margin-bottom: 0.75rem;
}

.people-card__content {
  width: 100%;
}

.people-card__title {
  margin-bottom: 0rem;
}

@media (min-width: 850px) {
  .people-group {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    margin-left: -1.5rem;
  }
}

.people-group__item {
  margin-bottom: 1.5rem;
}
@media (min-width: 850px) {
  .people-group__item {
    width: 50%;
    padding-left: 1.5rem;
  }
}
@media (min-width: 1000px) {
  .people-group__item {
    width: 33.33333%;
  }
}

.promotion {
  display: flex;
  flex-direction: column;
  background: unset;
  color: black;
  padding-bottom: 1.5rem;
}
@media (min-width: 850px) {
  .promotion {
    flex-direction: row;
    position: relative;
    padding-bottom: 4.5rem;
    min-height: 470px;
  }
}

.content-sidebar-group + .promotion {
  margin-top: 2.25rem;
}
@media (min-width: 850px) {
  .content-sidebar-group + .promotion {
    margin-top: 4rem;
  }
}

.container--padded .promotion:last-child {
  padding-bottom: 0;
}

.promotion__figure {
  width: 100%;
  flex-shrink: 0;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
@media (min-width: 850px) {
  .promotion__figure {
    width: 70%;
    clip-path: polygon(0 0, 100% 0, 71% 100%, 0% 100%);
  }
}
.promotion__figure img {
  width: 100%;
}

.promotion__content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin: auto 0;
  padding: 2.25rem;
  background-color: #ffd815;
}
@media (min-width: 850px) {
  .promotion__content {
    width: 64%;
    position: absolute;
    right: 0;
    top: 20%;
  }
}
@media (min-width: 1200px) {
  .promotion__content {
    padding: 4rem 4.5rem;
    padding-left: 3rem;
  }
}

.promotion__content-header {
  margin-bottom: 2.25rem;
  line-height: 1.2;
}
@media (min-width: 1200px) {
  .promotion__content-header {
    font-size: 1.1875rem;
  }
}

.promotion__title {
  line-height: 1.2;
  margin-bottom: 1.5rem;
  font-size: 1.625rem;
}
@media (min-width: 1200px) {
  .promotion__title {
    font-size: 2.375rem;
    margin-bottom: 1.875rem;
  }
}

.promotion__message {
  font-size: 1.1875rem;
}

.promotion__content-footer .button {
  margin: 0;
}

.pullquote {
  position: relative;
  margin-top: 3.1875rem;
  padding: 1.25rem 1.625rem;
  background-color: rgba(65, 182, 230, 0.5);
}
@media (min-width: 1000px) {
  .pullquote {
    padding: 2.0625rem 2.9375rem;
  }
}
.pullquote__quote {
  font-size: 1.375rem;
  line-height: 1.33333;
}
@media (min-width: 1000px) {
  .pullquote__quote {
    font-size: 2rem;
  }
}
.pullquote__cite {
  font-size: 1.0625rem;
  font-weight: 700;
  font-style: normal;
}
@media (min-width: 1000px) {
  .pullquote__cite {
    font-size: 1.1875rem;
  }
}
.pullquote:before {
  content: "";
  width: 0;
  height: 0;
  border-bottom: 3.1875rem solid rgba(65, 182, 230, 0.5);
  border-right: 3.1875rem solid transparent;
  position: absolute;
  top: -3.1875rem;
  left: 0;
}

.related-content {
  margin-bottom: 1.25rem;
}

.related-content__title {
  font-size: 1.625rem;
  border-bottom: 0.0625rem solid #41b6e6;
  padding-bottom: 0.625rem;
  margin-bottom: 0;
}

.related-content__list {
  list-style: none;
  margin: 0 0 1.5rem;
  padding: 0;
}

.related-content__item:last-child {
  margin-bottom: 0;
}

.related-content__link {
  display: block;
  font-weight: 700;
  text-decoration: none;
  padding: 0.5rem 3.125rem 0.5rem 0;
  border-bottom: 0.0625rem solid #41b6e6;
  background-image: url("../imgs/icons/arrow-right-blue.svg");
  background-size: 0.875rem 0.875rem;
  background-repeat: no-repeat;
  background-position: center right;
}
.related-content__link:hover {
  text-decoration: underline;
}

.search-form {
  display: flex;
  position: relative;
  width: 100%;
  margin: 0;
  background: white;
  border: 0.0625rem solid #4c6272;
}
@media (min-width: 1000px) {
  .search-form {
    max-width: 20rem;
  }
}

.search-form > label {
  display: block;
  margin: 0;
  flex: 1 0;
}

input[type=search].search-field {
  font-family: "Frutiger W01", Arial, sans-serif;
  font-size: 1.1875rem;
  background-color: white;
  display: block;
  width: 100%;
  height: 100%;
  border: none;
  margin: 0;
  padding: 0 0 0 0.9375rem;
}
input[type=search].search-field::placeholder {
  color: #768692;
  opacity: 1;
}

.search-submit {
  display: block;
  margin: 0;
  text-indent: -9999px;
  width: 3.25rem;
  height: 3.25rem;
  padding: 0.625rem;
  background: url("./../imgs/icons/search-white.svg") no-repeat center;
  background-size: 1.5625rem;
  background-color: #0072ce;
  border: none;
  cursor: pointer;
  color: white;
}
@media (min-width: 1200px) {
  .search-submit {
    width: 3.375rem;
    height: 3.375rem;
  }
}
.search-submit:focus {
  background: #fae100 url("./../imgs/icons/search-black.svg") no-repeat center;
  background-size: 1.5625rem;
}

.signpost-item {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  width: 100%;
  background-color: white;
  overflow: hidden;
  margin: 0 auto;
  border-bottom: 0.0625rem solid #41b6e6;
}
.signpost-item:hover {
  background-color: #003087;
  color: white;
}
.signpost-item:hover .signpost-item__title a {
  color: white;
  text-decoration: none;
}
.signpost-item:hover .signpost-item__content {
  text-decoration: none;
  border-color: transparent;
  background-image: url("../imgs/icons/arrow-right-blue.svg");
  background-repeat: no-repeat;
}
.signpost-item:hover a {
  color: white;
}
.signpost-item:hover a:focus {
  color: black;
}
.signpost-item:focus a {
  background-color: #fae100;
  box-shadow: 0 -0.125rem #fae100, 0 0.1875rem black;
  color: black;
  outline: 0.1875rem solid transparent;
  text-decoration: none;
}
.signpost-item:focus .signpost-item__content {
  background-image: url("../imgs/icons/arrow-right-black.svg");
}
@media (min-width: 850px) {
  .signpost-item {
    border-bottom: 0.1875rem solid #41b6e6;
  }
}
@media (min-width: 1000px) {
  .signpost-item {
    display: flex;
  }
}

.signpost-item--excerpt .signpost-item__title a {
  color: #005eb8;
}
.signpost-item--excerpt .signpost-item__excerpt {
  color: #212b32;
}
.signpost-item--excerpt:hover .signpost-item__excerpt {
  color: white;
}

.signpost-item__link::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.signpost-item__content {
  width: 100%;
  display: flex;
  flex-direction: column;
  padding: 0.75rem 3rem 0.75rem 0.75rem;
  text-decoration: none;
  background-image: url("../imgs/icons/arrow-right-blue.svg");
  background-position: top 0.875rem right 0.75rem;
  background-size: 1.125rem 1.125rem;
  background-repeat: no-repeat;
}
@media (min-width: 850px) {
  .signpost-item__content {
    background-size: 1.125rem 1.125rem;
    background-position: top 1.875rem right 1.5rem;
  }
}
@media (min-width: 850px) {
  .signpost-item__content {
    padding: 1.5rem 4rem 1.5rem 1.5rem;
  }
}

.signpost-item__title {
  display: inline-block;
  font-size: 1.1875rem;
  font-weight: 700;
  margin: 0;
  line-height: 1.2;
  width: 100%;
}
.signpost-item__title a {
  text-decoration: none;
}
@media (min-width: 1000px) {
  .signpost-item__title {
    font-size: 1.5rem;
  }
}

.signpost-item__excerpt {
  margin-top: 0.75rem;
  margin-bottom: 0;
}
.signpost-item__excerpt:last-child {
  margin-bottom: 0;
}
@media (min-width: 850px) {
  .signpost-item__excerpt {
    margin-top: 1.25rem;
  }
}

.signpost-item__figure {
  overflow: hidden;
}
.signpost-item__figure img {
  width: 100%;
}

.signpost-item__footer {
  margin-top: auto;
  padding-top: 0.625rem;
}

.signpost-item__meta {
  display: inline;
  font-size: 0.875rem;
}
@media (min-width: 850px) {
  .signpost-item__meta {
    font-size: 1rem;
  }
}
.signpost-item__meta a {
  text-decoration: none;
}
.signpost-item__meta a:hover {
  color: white;
  text-decoration: underline;
}

.signpost-item--secondary {
  background-color: #005eb8;
  border-bottom: none;
}
.signpost-item--secondary .signpost-item__content .signpost-item__title a {
  color: white;
}
.signpost-item--secondary .signpost-item__content .signpost-item__title a:focus {
  color: black;
}
.signpost-item--secondary:hover {
  background-color: #ffd815;
}
.signpost-item--secondary:hover .signpost-item__content {
  background-image: url("../imgs/icons/arrow-right-black.svg");
}
.signpost-item--secondary:hover .signpost-item__content .signpost-item__title a {
  color: #231f20;
}

.signpost-location {
  display: block;
  width: 100%;
  height: 100%;
  padding: 0.75rem 2.25rem 0.75rem 0.75rem;
  text-decoration: none;
  background-color: #005eb8;
  background-image: url("../imgs/icons/arrow-right-blue.svg");
  background-position: top 1.125rem right 0.75rem;
  background-size: 0.75rem 0.75rem;
  background-repeat: no-repeat;
  color: white;
  font-weight: 700;
}
.signpost-location:hover {
  background-color: #003087;
  color: white;
}
@media (min-width: 850px) {
  .signpost-location {
    padding: 0.75rem 3rem 0.75rem 1rem;
    background-size: 1.125rem 1.125rem;
    background-position: top 1rem right 1rem;
    font-size: 1rem;
  }
}
@media (min-width: 1000px) {
  .signpost-location {
    font-size: 1.1875rem;
  }
}

.signpost-location--alt {
  background-color: transparent;
  color: #005eb8;
  width: auto;
  padding-left: 0;
}
.signpost-location--alt:hover {
  background-color: transparent;
  color: #003087;
}
@media (min-width: 850px) {
  .signpost-location--alt {
    padding: 0.5rem 3rem 0.5rem 0;
    background-size: 1.125rem 1.125rem;
    background-position: top 1.125rem right 0;
  }
}

.share-links {
  margin-top: 1rem;
  padding: 1.25rem;
  background-color: white;
}
@media (min-width: 850px) {
  .share-links {
    margin-top: 1.875rem;
  }
}
@media (min-width: 850px) {
  .share-links {
    width: calc(65% - 1.5rem);
  }
}
@media (min-width: 1200px) {
  .share-links {
    width: calc(70% - 4.6875rem);
  }
}

@media (min-width: 1000px) {
  .share-links,
.share-links__action-group,
.share-links__print {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
  }
}

.share-links__action-group {
  margin-right: 0.9375rem;
}

.share-links__list {
  display: inline-block;
  list-style-type: none;
  margin: 0;
  padding: 0;
}

.share-links__item {
  display: inline-block;
  margin-right: 0.375rem;
}
.share-links__item:last-child {
  margin-right: 0;
}

.share-links__print {
  border: 0;
  background: transparent;
  margin-left: auto;
  padding-top: 0.625rem;
}
@media (min-width: 1000px) {
  .share-links__print {
    padding-top: 0;
  }
}
.share-links__print:hover {
  cursor: pointer;
}
.share-links__print:hover .share-links__print-title, .share-links__print:focus .share-links__print-title {
  text-decoration: underline;
}

.share-links__print-title {
  margin: 0 0.375rem 0 0;
  color: #212b32;
  font-size: 1.1875rem;
}

.share-links__share-title {
  line-height: 1;
  color: #212b32;
  font-size: 1.1875rem;
  margin: 0 1.25rem 0 0;
  margin: 0 1.25rem 0.75rem 0;
  display: inline-block;
}
@media (min-width: 850px) {
  .share-links__share-title {
    margin: 0 1.25rem 0 0;
  }
}

.share-links__icon {
  display: inline-block;
  width: 2.5rem;
  height: 2.5rem;
}

.site-footer {
  width: 100%;
  padding: 0 0 1.5rem;
  background-color: white;
}
.site-footer h2 {
  font-size: 1.1875rem;
}
@media (min-width: 850px) {
  .site-footer h2 {
    font-size: 1.5rem;
  }
}

.site-footer__separator {
  height: 1.5rem;
  background-image: url("../imgs/separator.svg");
  background-repeat: repeat-x;
  background-size: cover;
  background-position: left;
}
@media (min-width: 850px) {
  .site-footer__separator {
    margin: 0 0 3rem;
    height: 2.5rem;
  }
}

.site-footer__inner {
  padding: 1.5rem 0;
}
@media (min-width: 850px) {
  .site-footer__inner {
    padding: 3rem 0;
  }
}
.site-footer__inner .u-wrapper {
  display: flex;
  flex-wrap: wrap;
}
@media (min-width: 850px) {
  .site-footer__inner .u-wrapper {
    flex-wrap: nowrap;
  }
}

.site-footer__content {
  display: flex;
  flex-grow: 1;
  flex-direction: column;
  margin: 0 0 1rem;
}
@media (min-width: 850px) {
  .site-footer__content {
    margin: 0 3rem 3rem 0;
    flex-direction: row;
  }
}

@media (min-width: 850px) {
  .site-footer__content-left-col {
    width: 50%;
  }
}

@media (min-width: 850px) {
  .site-footer__content-right-col {
    width: 50%;
  }
}

.site-footer__quick-links-wrapper,
.site-footer__headquarters-wrapper,
.site-footer__switchboard-wrapper {
  margin-bottom: 1rem;
}

.site-footer__logo {
  width: 100%;
  max-width: 14.0625rem;
  margin-bottom: 1.5rem;
}
@media (min-width: 850px) {
  .site-footer__logo {
    max-width: 17.8125rem;
    margin-bottom: 2.25rem;
  }
}

.site-footer__cqc {
  width: 100%;
}
@media (min-width: 850px) {
  .site-footer__cqc {
    max-width: 18.75rem;
  }
}

.site-footer__social-links {
  background-color: #0072ce;
}

.site-footer__nav {
  padding: 1rem 0;
}
@media (min-width: 850px) {
  .site-footer__nav {
    padding: 1.5rem 0;
  }
}

@media (min-width: 850px) {
  .site-footer__smallprint {
    display: flex;
    flex-direction: row;
  }
}

.site-footer__copyright,
.site-footer__credits {
  margin: 0 0 1rem;
  font-size: 1rem;
}

.site-footer__copyright p {
  margin: 0;
  display: inline-block;
  font-size: 1rem;
}

.site-footer__seperator {
  margin: 0 0.75rem;
}

.site-footer__quick-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

@media (min-width: 850px) {
  .site-footer__headquarters-directions,
.site-footer__switchboard-wrapper a {
    font-size: 1.1875rem;
  }
}

.site-header {
  margin: 0 auto;
  padding: 1rem 0 0 0;
  background-color: white;
}
@media (min-width: 850px) {
  .site-header {
    padding: 1rem 0 0 0;
  }
}
@media (min-width: 1200px) {
  .site-header {
    padding: 1.25rem 0 0 0;
  }
}

.site-header__inner {
  position: relative;
  display: flex;
  justify-content: space-between;
}
@media (min-width: 850px) {
  .site-header__inner {
    flex-wrap: wrap;
    align-items: center;
  }
}

@media (min-width: 1000px) {
  .site-header__inner--with-keyline {
    margin-top: 1.5rem;
    border-top: 0.0625rem solid #41b6e6;
    border-bottom: 0.0625rem solid #41b6e6;
  }
}

.site-header__logo {
  width: 100%;
  max-width: 15.625rem;
}
@media (min-width: 1000px) {
  .site-header__logo {
    width: 35%;
  }
}
@media (min-width: 1200px) {
  .site-header__logo {
    width: 30%;
    max-width: 21.875rem;
  }
}
.site-header__logo img {
  height: 100%;
}

.site-header__primary {
  position: relative;
  display: none;
}
@media (min-width: 1000px) {
  .site-header__primary {
    display: block;
    width: 100%;
  }
}

.site-header__secondary {
  z-index: 15;
  width: 50%;
}
@media (min-width: 1000px) {
  .site-header__secondary {
    width: 65%;
  }
}
@media (min-width: 1200px) {
  .site-header__secondary {
    width: 70%;
  }
}

.site-header__search-form {
  display: block;
  margin-left: 0.75rem;
}

.site-header__secondary-menu {
  display: none;
}
@media (min-width: 1000px) {
  .site-header__secondary-menu {
    display: block;
    height: auto;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    margin-bottom: 1rem;
    height: 100%;
  }
}
@media (min-width: 1200px) {
  .site-header__secondary-menu {
    margin-bottom: 1.5rem;
  }
}

.site-header__search-toggle {
  margin-right: 0.625rem;
}
@media (min-width: 475px) {
  .site-header__search-toggle {
    margin-right: 0.9375rem;
  }
}
@media (min-width: 1000px) {
  .site-header__search-toggle {
    display: none;
  }
}

@media (min-width: 1000px) {
  .site-header__menu-toggle {
    display: none;
  }
}

.site-header__action-group {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  z-index: 15;
  height: 100%;
}
@media (min-width: 1000px) {
  .site-header__action-group {
    display: none;
  }
}

.site-header__mobile-nav {
  background-color: white;
  margin-top: 1.5rem;
}
@media (min-width: 1000px) {
  .site-header__mobile-nav {
    margin-top: 0;
  }
}

.site-header__mobile-content {
  display: none;
  padding: 1.25rem;
}
.site-header__mobile-content.open {
  display: block;
}
@media (min-width: 1000px) {
  .site-header__mobile-content.open {
    display: none;
  }
}

.site-header__search-form {
  display: none;
}
@media (min-width: 1000px) {
  .site-header__search-form {
    display: flex;
    justify-content: flex-end;
  }
}

.site-header__mobile-search {
  margin-bottom: 1.5rem;
}
.site-header__mobile-search input[type=search] {
  font-size: 17px;
}

.site-logo {
  display: block;
  width: 100%;
}

.site-logo__image {
  display: block;
  width: 100%;
}

.skiplink {
  position: absolute;
  top: -100%;
  padding: 0.625rem;
  left: 0;
  color: white;
  font-weight: 700;
  font-size: 1.1875rem;
  background: #005eb8;
  text-decoration: none;
  z-index: 10000;
}

.skiplink:focus {
  left: 0;
  top: 0;
  text-decoration: underline;
  color: black;
  z-index: 999999;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 1.25rem 0;
}
@media (min-width: 850px) {
  .social-links {
    flex-direction: row;
    padding: 2.25rem 0;
  }
}

.social-links__left-col {
  display: flex;
  flex-grow: 1;
  align-items: center;
  justify-content: center;
}
@media (min-width: 850px) {
  .social-links__left-col {
    justify-content: flex-start;
  }
}

.social-links__right-col {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
@media (min-width: 850px) {
  .social-links__right-col {
    flex-direction: row;
    justify-content: flex-start;
  }
}

.social-links__strapline,
.social-links__info {
  margin-bottom: 0;
  font-size: 1.1875rem;
}
@media (min-width: 850px) {
  .social-links__strapline,
.social-links__info {
    font-size: 1.5rem;
  }
}

.social-links__strapline {
  margin: 0 1rem 1rem 0;
  color: #ffd815;
  font-weight: 700;
}
@media (min-width: 850px) {
  .social-links__strapline {
    margin: 0 1rem 0 0;
  }
}

.social-links__info {
  margin: 0 1.25rem 0.5rem 0;
  color: white;
}
@media (min-width: 850px) {
  .social-links__info {
    margin: 0 1.25rem 0 0;
  }
}

.social-links__icons {
  display: flex;
  justify-content: flex-end;
}

.social-links__icon {
  width: 2.625rem;
  height: 2.625rem;
  margin: 0 0 0 1.25rem;
}
.social-links__icon:first-of-type {
  margin: 0;
}

.social-links__icon-image {
  border-radius: 50%;
}

/**
 * Component: Standard Content
 */
/**
 * The following element styles are primarily used to
 * format and style Gutenberg block styles.
 */
.standard-content {
  /**
  * Embeded Image blocks
  */
}
.standard-content > * {
  max-width: 50rem;
}
.standard-content iframe {
  max-width: 100%;
}
.standard-content > .featured-pages,
.standard-content > .team-members-overview,
.standard-content > .signpost,
.standard-content > .card-list,
.standard-content > .columns,
.standard-content > .wp-block-image,
.standard-content > .wp-block-gallery,
.standard-content > .wp-block-embed.is-type-video,
.standard-content > .video-transcript,
.standard-content > .feature {
  max-width: none;
}
.standard-content > ul,
.standard-content > ol,
.standard-content > h2,
.standard-content > h3,
.standard-content > h4,
.standard-content > img,
.standard-content > blockquote,
.standard-content iframe,
.standard-content .contact-details,
.standard-content .expander,
.standard-content .care-card,
.standard-content .details,
.standard-content .do-dont,
.standard-content .do-list,
.standard-content .dont-list,
.standard-content .action-link,
.standard-content .warning-callout,
.standard-content .panel,
.standard-content .gform_wrapper,
.standard-content .wp-block-table,
.standard-content .wp-block-quote,
.standard-content .wp-block-audio,
.standard-content .wp-block-file,
.standard-content .wp-block-button,
.standard-content .wp-block-image,
.standard-content .wp-block-embed-twitter,
.standard-content .wp-block-embed-facebook,
.standard-content .wp-block-embed-instagram,
.standard-content .wp-block-embed-spotify,
.standard-content .wp-block-gallery,
.standard-content .wp-block-embed {
  margin-bottom: 1.25rem;
}
.standard-content .featured-image {
  max-width: 100%;
}
@media (min-width: 850px) {
  .standard-content .featured-image {
    position: relative;
    z-index: 99;
  }
}
.standard-content figure.wp-block-image {
  margin-bottom: 1.25rem;
  display: table;
}
.standard-content figure.wp-block-image figcaption {
  caption-side: bottom;
  padding-left: 0.625rem;
  font-size: 1rem;
  margin-top: 0.5rem;
}
.standard-content figure.wp-block-image img {
  margin-bottom: 0;
}

/**
 * Floating image classes
 */
.size-full {
  margin: 0 0 1.5rem 0;
}

.alignleft {
  float: left;
  margin: 0 1.5rem 1.5rem 0;
}

.aligncenter {
  margin: 0 auto;
}

.alignright {
  float: right;
  margin: 0 0 1.5rem 1.5rem;
}

.tabs {
  width: 100%;
}

.tabs__controls {
  display: flex;
}

.tabs__tab-button {
  position: relative;
  padding: 0.375rem 0.9375rem;
  border: none;
  background: #fafafa;
  margin-bottom: -0.0625rem;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  border: 0.0625rem solid #ccc;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}
.tabs__tab-button + .tabs__tab-button {
  margin-left: 0.1875rem;
}
@media (min-width: 850px) {
  .tabs__tab-button {
    font-size: 1.1875rem;
  }
}
.tabs__tab-button:first-child:after {
  left: 0;
}

.tabs__tab-button[aria-selected=true] {
  background: white;
  outline: 0;
  border-bottom: white solid 1px;
  z-index: 2;
}

.tabs__tab-content {
  position: relative;
  width: 100%;
  padding: 1.5rem;
  background: white;
  border: 0.0625rem solid #ccc;
  border-radius: 0;
  border-top-left-radius: 0;
}

.upcoming-posts {
  max-width: 77.5rem;
}
.upcoming-posts-wrapper {
  background-color: #e8edee;
  padding: 2.875rem 0 3.0625rem;
  margin: 0 -6.875rem;
}
.upcoming-posts__items {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
.upcoming-posts__list-item {
  width: calc(50% - 2.03125rem);
  margin: 0 4.0625rem 1.8125rem 0;
}
.upcoming-posts__list-item:nth-child(even) {
  margin: 0 0 1.8125rem 0;
}
.upcoming-posts__card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  padding: 1.375rem 0.875rem 0.6875rem 1.5rem;
  background-color: white;
  border-left: 3px solid #768692;
}
.upcoming-posts__card-title {
  margin-bottom: 0.9375rem;
}
.upcoming-posts__card-link {
  text-decoration: none;
}
.upcoming-posts__card-link:hover {
  text-decoration: underline;
}
.upcoming-posts__card-date {
  margin: 0;
  color: #425563;
}
.upcoming-posts__archive-link {
  float: right;
}
.upcoming-posts__archive-link:hover {
  color: #003087;
}

.card-article-compact {
  width: 100%;
}
@media (min-width: 850px) {
  .card-article-compact {
    flex-direction: row;
  }
}

.card-article-compact__content {
  padding: 1.5rem 0 0.5rem 0;
}
.card-article-compact__content > :last-child {
  margin-bottom: 0;
}
@media (min-width: 850px) {
  .card-article-compact__content {
    padding: 1.5rem 0;
  }
}

.card-article-compact__title {
  font-size: 1.1875rem;
  margin-bottom: 1rem;
  color: #005eb8;
  line-height: 1.2;
  hyphens: auto;
  -ms-hyphens: auto;
}
@media (min-width: 1200px) {
  .card-article-compact__title {
    font-size: 1.375rem;
  }
}
.card-article-compact__title a {
  display: block;
  text-decoration: none;
  padding-right: 1.25rem;
}
.card-article-compact__title a:hover {
  text-decoration: underline;
  color: #003087;
}

.card-article-compact__date {
  display: inline-block;
  align-self: flex-start;
  font-size: 1rem;
  margin-bottom: 0.75rem;
}

.card-childrens-group {
  background: #fae100;
  margin-top: 13.125rem;
  position: relative;
}

.card-childrens-group--padded {
  padding: 1.25rem 0;
}
@media (min-width: 1000px) {
  .card-childrens-group--padded {
    padding: 3rem 0;
  }
}

.card-childrens-group--padded-bottom {
  padding-bottom: 1.25rem;
}
@media (min-width: 1000px) {
  .card-childrens-group--padded-bottom {
    padding-bottom: 3rem;
  }
}

.card-childrens-group--bg-alt {
  background-color: #005eb8;
}
.card-childrens-group--bg-alt .card-childrens-group__heading {
  color: white;
}
.card-childrens-group--bg-alt .signpost-item {
  border: none;
}
.card-childrens-group--bg-alt .signpost-item:hover {
  background-color: white;
  color: #212b32;
  border: none;
}
.card-childrens-group--bg-alt .signpost-item:hover .signpost-item__title a {
  color: #005eb8;
}
.card-childrens-group--bg-alt .signpost-item:hover .signpost-item__content {
  background-color: white;
  background-image: url("../imgs/icons/chevron-right.svg");
}

@media (min-width: 1000px) {
  .card-childrens-group--2-cols .card-childrens-group__grid-item {
    width: 50%;
  }
}

@media (min-width: 1000px) {
  .card-childrens-group--3-cols .card-childrens-group__grid-item {
    width: 33.33%;
  }
}

.card-childrens-group--3-cols.card-childrens-group--multi-row .card-childrens-group__grid-item {
  /*@include bp(media-queries.$s) {
      width: 50%;
  }*/
}
@media (min-width: 1000px) {
  .card-childrens-group--3-cols.card-childrens-group--multi-row .card-childrens-group__grid-item {
    width: 33.33%;
  }
}

@media (min-width: 475px) {
  .card-childrens-group--4-cols .card-childrens-group__grid-item {
    width: 50%;
  }
}
@media (min-width: 1000px) {
  .card-childrens-group--4-cols .card-childrens-group__grid-item {
    width: 25%;
  }
}

.card-childrens-group--text-align-left .card-childrens-group__heading {
  text-align: left;
}

@media (min-width: 850px) {
  .card-childrens-group__header {
    text-align: center;
  }
}

.card-childrens-group__title {
  display: flex;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.card-childrens-group__heading {
  font-size: 1.5rem;
  line-height: 1.125;
  margin-bottom: 0;
}
@media (min-width: 850px) {
  .card-childrens-group__heading {
    font-size: 1.625rem;
  }
}

.card-childrens-group__archive {
  text-align: right;
}

.card-childrens-group__archive-link {
  font-size: 1rem;
}
@media (min-width: 1000px) {
  .card-childrens-group__archive-link {
    font-size: 1.1875rem;
  }
}

.card-childrens-group__description {
  max-width: 50rem;
  margin: 0 auto 1.5rem auto;
  font-size: 1.1875rem;
  line-height: 1.2;
}
@media (min-width: 850px) {
  .card-childrens-group__description {
    text-align: center;
    font-size: 1.375rem;
  }
}

.card-childrens-group__grid {
  display: flex;
  flex-wrap: wrap;
  box-sizing: border-box;
  margin: 3rem 0 0 -1.5rem;
  padding: 0;
  list-style: none;
}

.card-childrens-group__grid-item {
  padding-left: 1.5rem;
  margin-bottom: 0.75rem;
  width: 100%;
}
@media (min-width: 850px) {
  .card-childrens-group__grid-item {
    margin-bottom: 1.5rem;
  }
}

.card-childrens-group__text-align-left .card-childrens-group__description {
  text-align: left;
  margin: 0 0 1.25rem 0;
}
@media (min-width: 850px) {
  .card-childrens-group__text-align-left .card-childrens-group__description {
    text-align: left;
  }
}

.card-childrens-group__giraffe {
  -webkit-transform: scaleX(-1);
  transform: scaleX(-1);
  position: absolute;
  top: -10rem;
  left: 22%;
  max-width: 11.25rem;
}
.card-childrens-group__giraffe svg {
  width: 100%;
  margin-bottom: 2.25rem;
}
@media (min-width: 850px) {
  .card-childrens-group__giraffe {
    left: 14%;
    max-width: 11.875rem;
  }
}

.card-childrens-group__moose {
  -webkit-transform: scaleX(-1);
  transform: scaleX(-1);
  position: absolute;
  top: -5rem;
  left: 3%;
  max-width: 4rem;
}
.card-childrens-group__moose svg {
  width: 100%;
  margin-bottom: 2.25rem;
}

.card-childrens-group__bird-1 {
  position: absolute;
  top: -6.875rem;
  left: 85%;
  width: 12%;
  max-width: 3.125rem;
}
.card-childrens-group__bird-1 svg {
  width: 100%;
}
@media (min-width: 850px) {
  .card-childrens-group__bird-1 {
    top: -7.5rem;
    left: 42%;
    max-width: 3.5rem;
  }
}

.card-childrens-group__bird-2 {
  position: absolute;
  top: -7.5rem;
  left: 80%;
  width: 9%;
  max-width: 2.5rem;
}
.card-childrens-group__bird-2 svg {
  width: 100%;
}
@media (min-width: 850px) {
  .card-childrens-group__bird-2 {
    top: -8.75rem;
    left: 40%;
    max-width: 3rem;
  }
}

.card-consultant {
  display: flex;
  flex-direction: column;
  height: 100%;
  width: 100%;
  background: white;
  border-bottom: 0.1875rem solid #41b6e6;
  font-size: 1.1875rem;
}
.card-consultant h2 {
  font-size: 1.1875rem;
}
@media (min-width: 850px) {
  .card-consultant h2 {
    font-size: 1.5rem;
  }
}
@media (min-width: 475px) {
  .card-consultant {
    flex-direction: row;
  }
}

.card-consultant--push-bottom {
  margin-bottom: 4rem;
}

.card-consultant__image {
  width: 100%;
  padding: 1rem;
  order: 1;
}
.card-consultant__image img {
  width: 100%;
  background: #d8dde0;
}
@media (min-width: 475px) {
  .card-consultant__image {
    padding: 1.5rem;
    width: 60%;
    order: 2;
  }
}
@media (min-width: 850px) {
  .card-consultant__image {
    width: 45%;
  }
}
@media (min-width: 1000px) {
  .card-consultant__image {
    width: 35%;
  }
}

.card-consultant__footer {
  margin: 1.5rem 0 0 0;
}

.card-consultant__content {
  width: 100%;
  display: flex;
  padding: 1.5rem;
  flex-direction: column;
  justify-content: space-between;
  order: 2;
}
@media (min-width: 475px) {
  .card-consultant__content {
    order: 1;
  }
}

.card-consultant__title {
  margin-bottom: 0;
  color: #005eb8;
}

.card-consultant__title a {
  text-decoration: none;
}
.card-consultant__title a:hover, .card-consultant__title a:focus {
  text-decoration: underline;
}

.card-consultant__subtitle {
  font-weight: 700;
}

.card-consultant__subtitle,
.card-consultant__gmc {
  margin-bottom: 0;
}

.card-consultant__meta {
  font-size: 1rem;
  margin: 0;
}
.card-consultant__meta a {
  display: inline;
}

.card-consultant__attributes {
  margin-top: 1.25rem;
}
@media (min-width: 850px) {
  .card-consultant__attributes {
    margin-top: 1.5rem;
  }
}

.card-consultant__icon {
  width: 2rem;
  height: 2rem;
  display: inline-block;
  margin-right: 0.375rem;
}
@media (min-width: 1000px) {
  .card-consultant__icon {
    width: 2.625rem;
    height: 2.625rem;
  }
}

.card-consultant__attribute {
  margin: 0 0 0.5rem 0;
}
@media (min-width: 850px) {
  .card-consultant__attribute {
    margin: 0 0 1.25rem 0;
  }
}
.card-consultant__attribute:last-of-type {
  margin-bottom: 0;
}

.card-course {
  background: white;
  border-bottom: 0.1875rem solid #41b6e6;
}

.card-course__date {
  display: inline-block;
  color: #4c6272;
  margin-bottom: 0;
  font-size: 1rem;
}

.card-course__content {
  width: 100%;
  display: flex;
  padding: 1.5rem;
  flex-direction: column;
  justify-content: space-between;
}

.card-course__title {
  margin-bottom: 0.75rem;
  line-height: 1.125;
}
.card-course__title a {
  color: #005eb8;
}

.card-course__excerpt {
  margin-bottom: 0;
}

.card-course__footer {
  margin: 1.5rem 0 0 0;
}

.card-course__title a {
  text-decoration: none;
}
.card-course__title a:hover, .card-course__title a:focus {
  text-decoration: underline;
}

.card-course__meta {
  font-size: 1rem;
  margin: 0;
}
.card-course__meta a {
  display: inline;
}

.card-list-location {
  width: 100%;
  list-style: none;
  margin: 4.5rem 0;
  padding: 0;
}

.card-list-location__card {
  margin-bottom: 1.5rem;
}
@media (min-width: 850px) {
  .card-list-location__card:nth-child(even) .card-location-primary {
    flex-direction: row-reverse;
  }
  .card-list-location__card:nth-child(even) .card-location-primary .card-location-primary__figure img {
    border-top-left-radius: 0;
    border-top-right-radius: 0.375rem;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0.375rem;
  }
}
.card-list-location__card:last-child {
  margin-bottom: 0;
}

.card-location-primary {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  width: 100%;
  border-radius: 0.375rem;
  background-color: white;
  overflow: hidden;
  margin: 0 auto;
  align-items: center;
}
.card-location-primary:hover {
  background-color: #003087;
  color: white;
}
.card-location-primary:hover .card-location-primary__title a {
  color: white;
  text-decoration: none;
}
.card-location-primary:hover .card-location-primary__content {
  text-decoration: none;
  background-color: #003087;
  border-color: transparent;
}
.card-location-primary:hover a {
  color: #005eb8;
  background-image: url("../imgs/icons/chevron-right-light.svg");
}
.card-location-primary:hover a:focus {
  color: black;
}
.card-location-primary a:focus {
  background-image: url("../imgs/icons/chevron-right-dark.svg");
}
@media (min-width: 850px) {
  .card-location-primary {
    display: flex;
    flex-direction: row;
  }
}

.card-location-primary__title {
  display: inline-block;
  font-size: 1.1875rem;
  font-weight: 700;
  margin: 0;
  margin-bottom: 0.625rem;
  line-height: 1.2;
  width: 100%;
}
.card-location-primary__title a {
  color: #005eb8;
  text-decoration: none;
  padding-right: 1.25rem;
  background-image: url(../imgs/icons/chevron-right.svg);
  background-position: right 6px;
  background-size: 0.875rem 0.875rem;
  background-repeat: no-repeat;
}
@media (min-width: 850px) {
  .card-location-primary__title a {
    font-size: 1.5rem;
    padding-right: 1.875rem;
    background-position: right 9px;
    background-size: 1rem 1rem;
  }
}
@media (min-width: 1200px) {
  .card-location-primary__title a {
    font-size: 1.75rem;
    background-position: right 12px;
    background-size: 1.125rem 1.125rem;
  }
}

.card-location-primary__content {
  width: 100%;
  display: flex;
  flex-direction: column;
  padding: 1.25rem;
  text-decoration: none;
  border-bottom-left-radius: 0.375rem;
  border-bottom-right-radius: 0.375rem;
}
@media (min-width: 850px) {
  .card-location-primary__content {
    padding: 1.875rem 2.25rem 1.875rem 1.875rem;
    width: 60%;
  }
}
@media (min-width: 1200px) {
  .card-location-primary__content {
    padding: 2.25rem 3rem;
  }
}

.card-location-primary__figure img {
  width: 100%;
  border-top-left-radius: 0.375rem;
  border-top-right-radius: 0.375rem;
  border-bottom-right-radius: 0;
}
@media (min-width: 850px) {
  .card-location-primary__figure {
    width: 40%;
    height: 100%;
  }
  .card-location-primary__figure img {
    height: 325px;
    width: 510px;
    object-fit: cover;
    border-top-right-radius: 0;
    border-bottom-left-radius: 0.375rem;
  }
}

.card-location-primary__link::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: 3;
}

.card-location-secondary {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  width: 100%;
  border-radius: 0.375rem;
  background-color: white;
  overflow: hidden;
  margin: 0 auto;
}
.card-location-secondary:hover {
  background-color: #003087;
  color: white;
}
.card-location-secondary:hover .card-location-secondary__title a {
  color: white;
  text-decoration: none;
}
.card-location-secondary:hover .card-location-secondary__content {
  text-decoration: none;
  background-color: #003087;
  border-color: transparent;
  background-image: url("../imgs/icons/chevron-right-light.svg");
}
.card-location-secondary:hover a {
  color: #005eb8;
}
.card-location-secondary:hover a:focus {
  color: black;
}
@media (min-width: 1000px) {
  .card-location-secondary {
    display: flex;
  }
}

.card-location-secondary__title {
  display: inline-block;
  font-size: 1.1875rem;
  font-weight: 700;
  margin: 0;
  margin-bottom: 0.5rem;
  line-height: 1.2;
  padding-right: 1.875rem;
  width: 100%;
}
.card-location-secondary__title a {
  color: #005eb8;
  text-decoration: none;
}
@media (min-width: 1000px) {
  .card-location-secondary__title {
    font-size: 1.5rem;
  }
}

.card-location-secondary__link::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: 3;
}

.card-location-secondary__content {
  width: 100%;
  display: flex;
  flex-direction: column;
  padding: 1rem 1.5rem 1rem 1rem;
  text-decoration: none;
  background-image: url("../imgs/icons/chevron-right.svg");
  background-position: top 1.25rem right 0.75rem;
  background-size: 1.125rem 1.125rem;
  background-repeat: no-repeat;
  border-bottom-left-radius: 0.375rem;
  border-bottom-right-radius: 0.375rem;
}
@media (min-width: 850px) {
  .card-location-secondary__content {
    background-size: 1.125rem 1.125rem;
    background-position: top 2.375rem right 1.5rem;
    padding: 1.875rem 2.25rem 1.875rem 1.875rem;
  }
}

.card-location-secondary__figure img {
  width: 100%;
  border-top-left-radius: 0.375rem;
  border-top-right-radius: 0.375rem;
}

/**
 * Component: Card meta summary
 */
.card-meta-summary {
  background-color: white;
}
@media (min-width: 630px) {
  .card-meta-summary {
    display: flex;
  }
  .card-meta-summary > * {
    flex: 1;
  }
}
@media (min-width: 850px) {
  .card-meta-summary {
    display: block;
  }
}

.card-meta-summary__image .featured-image {
  display: block;
  width: 100%;
  position: relative;
  text-align: center;
  overflow: hidden;
}
.card-meta-summary__image .featured-image:after {
  padding-top: 71.4285714286%;
  display: block;
  content: "";
}
.card-meta-summary__image .featured-image > img {
  left: 50%;
  top: 50%;
  position: absolute;
  transform: translateX(-50%) translateY(-50%);
  width: 100%;
}

.card-meta-summary__content {
  padding: 1.125rem;
  flex: 1 0;
}

.card-meta-summary__title {
  display: block;
  margin-bottom: 0.75rem;
}
.card-meta-summary__title a {
  color: #005eb8;
}

.card-meta-summary__meta {
  margin: 0 0 0.375rem 0;
  font-size: 1.0625rem;
}
@media (min-width: 1000px) {
  .card-meta-summary__meta {
    font-size: 1.1875rem;
  }
}
.card-meta-summary__meta a {
  text-decoration: underline;
}
.card-meta-summary__meta a:hover {
  color: #00519f;
}

.card-meta-summary__meta-title {
  font-weight: 700;
  display: inline-block;
}

.card-promoted {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  width: 100%;
  background-color: #003087;
  overflow: hidden;
  margin: 0 auto;
}
.card-promoted:hover {
  background-color: #0072ce;
  color: white;
}
.card-promoted:hover .card-promoted__title a {
  color: white;
  text-decoration: none;
}
.card-promoted:hover .card-promoted__content {
  text-decoration: none;
  background-image: url("../imgs/icons/arrow-right-blue.svg");
  background-repeat: no-repeat;
}
.card-promoted:hover a {
  color: white;
}
.card-promoted:hover a:focus {
  color: black;
}
.card-promoted:focus a {
  background-color: #fae100;
  box-shadow: 0 -0.125rem #fae100, 0 0.1875rem black;
  color: black;
  outline: 0.1875rem solid transparent;
  text-decoration: none;
}
.card-promoted:focus .card-promoted__content {
  background-image: url("../imgs/icons/arrow-right-black.svg");
}
@media (min-width: 1000px) {
  .card-promoted {
    display: flex;
    min-height: 10rem;
  }
}

.card-promoted--image {
  background-color: white;
  border-bottom: 3px solid #41b6e6;
}
.card-promoted--image .card-promoted__title {
  font-size: 1.1875rem;
}
@media (min-width: 1200px) {
  .card-promoted--image .card-promoted__title {
    font-size: 1.5rem;
  }
}
.card-promoted--image .card-promoted__title a {
  color: #005eb8;
}

.card-promoted--excerpt .card-promoted__title a {
  color: white;
}
.card-promoted--excerpt .card-promoted__excerpt {
  color: white;
}
.card-promoted--excerpt:hover .card-promoted__excerpt {
  color: white;
}

.card-promoted__link::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.card-promoted__content {
  width: 100%;
  display: flex;
  flex-direction: column;
  padding: 0.75rem 1.25rem 0.75rem 0.75rem;
  text-decoration: none;
  background-image: url("../imgs/icons/arrow-right-blue.svg");
  background-position: top 0.875rem right 0.75rem;
  background-size: 1.125rem 1.125rem;
  background-repeat: no-repeat;
}
@media (min-width: 850px) {
  .card-promoted__content {
    background-size: 1.125rem 1.125rem;
    background-position: top 2.125rem right 1.5rem;
    padding: 1.5rem 3rem 1.5rem 1.5rem;
  }
}

.card-promoted__title {
  display: inline-block;
  font-size: 1.1875rem;
  font-weight: 700;
  margin: 0;
  line-height: 1.2;
  padding-right: 1.875rem;
  width: 100%;
}
.card-promoted__title a {
  text-decoration: none;
  color: white;
}
@media (min-width: 1000px) {
  .card-promoted__title {
    font-size: 1.375rem;
  }
}
@media (min-width: 1200px) {
  .card-promoted__title {
    font-size: 1.5rem;
  }
}

.card-promoted__excerpt {
  margin-top: 0.75rem;
  margin-bottom: 0;
}
.card-promoted__excerpt:last-child {
  margin-bottom: 0;
}
@media (min-width: 850px) {
  .card-promoted__excerpt {
    margin-top: 1.25rem;
  }
}

.card-promoted__figure {
  overflow: hidden;
}
.card-promoted__figure img {
  width: 100%;
}

.card-promoted__footer {
  margin-top: auto;
  padding-top: 0.625rem;
}

.card-promoted__meta {
  display: inline;
  font-size: 0.875rem;
}
@media (min-width: 850px) {
  .card-promoted__meta {
    font-size: 1rem;
  }
}
.card-promoted__meta a {
  text-decoration: none;
}
.card-promoted__meta a:hover {
  color: white;
  text-decoration: underline;
}

.card-news {
  display: flex;
  flex-direction: column;
  height: 100%;
  width: 100%;
  max-width: 56.25rem;
  background-color: white;
  border: 1px solid #d8dde0;
  border-radius: 0.375rem;
}
@media (min-width: 850px) {
  .card-news {
    flex-direction: row;
  }
}
@media (min-width: 1200px) {
  .card-news {
    min-width: 11.125rem;
  }
}

@media (min-width: 850px) {
  .card-news.card-news--vertical {
    flex-direction: column;
  }
}
@media (min-width: 1200px) {
  .card-news.card-news--vertical {
    min-width: unset;
  }
}

.card-news__figure {
  width: 100%;
  margin: 0;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  border-top-left-radius: 0.375rem;
  border-top-right-radius: 0.375rem;
}
.card-news__figure:after {
  padding-top: 56.25%;
  display: block;
  content: "";
}
@media (min-width: 850px) {
  .card-news__figure {
    max-width: 30%;
    flex-shrink: 0;
    border-top-left-radius: 0.375rem;
    border-top-right-radius: 0;
    border-bottom-left-radius: 0.375rem;
  }
}
@media (min-width: 1200px) {
  .card-news__figure {
    min-width: 17.375rem;
  }
}

@media (min-width: 850px) {
  .card-news--vertical .card-news__figure {
    max-width: 100%;
    flex-shrink: 0;
    border-top-left-radius: 0.375rem;
    border-top-right-radius: 0.375rem;
    border-bottom-left-radius: 0;
  }
}
@media (min-width: 1200px) {
  .card-news--vertical .card-news__figure {
    min-width: unset;
  }
}

.card-news__content {
  width: 100%;
  padding: 1.125rem 1.5rem;
}

.card-news__title {
  font-size: 1.1875rem;
}
.card-news__title a:hover {
  color: black;
}
@media (min-width: 850px) {
  .card-news__title {
    font-size: 1.5rem;
  }
}

.card-news--vertical .card-news__title {
  font-size: 1.1875rem;
}
@media (min-width: 1200px) {
  .card-news--vertical .card-news__title {
    font-size: 1.5rem;
  }
}

.card-news__date {
  display: flex;
  align-items: center;
  font-size: 1rem;
}
.card-news__date:before {
  content: "";
  background: url("./../imgs/icons/clock-light.svg") no-repeat left;
  background-size: 1.25rem 1.25rem;
  display: inline-block;
  width: 1.25rem;
  height: 1.25rem;
  margin-right: 0.375rem;
}

.card-news__footer {
  margin-top: auto;
}

.card-news__meta-item {
  display: inline-block;
  margin-top: auto;
  margin-right: 0.9375rem;
  margin-top: 0.9375rem;
  padding: 0.1875rem 0.5rem;
  font-size: 1rem;
  border: 1px solid #d8dde0;
}
.card-news__meta-item a {
  text-decoration: none;
}
.card-news__meta-item a:hover {
  text-decoration: underline;
}

.card-news__meta-list {
  display: inline-block;
  list-style: none;
  margin: 0;
  padding: 0;
}

.event {
  position: relative;
  background: white;
  padding: 0.75rem 1rem;
  margin-bottom: 1.5rem;
  border-bottom: 0.1875rem solid #41b6e6;
}
@media (min-width: 1000px) {
  .event {
    padding: 2.25rem 2.25rem;
    margin-bottom: 6rem;
  }
}
@media (min-width: 850px) {
  .event {
    display: block;
    padding: 1.25rem 1.5rem;
    margin-bottom: 4rem;
  }
}

.event__date {
  display: inline-block;
  color: #4c6272;
  font-weight: 400;
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.event__content {
  flex: 1 0;
  min-width: 60%;
}

.event__title {
  line-height: 1.2;
  margin-bottom: 4.5rem;
  color: #005eb8;
  font-size: 1.5rem;
}

.event__title a:hover, .event__title a:focus {
  text-decoration: underline;
}

.event__meta {
  margin: 0 0 0.25rem 0;
  font-size: 1rem;
}
@media (min-width: 1000px) {
  .event__meta {
    font-size: 1.1875rem;
  }
}

.event__meta-title {
  display: inline-block;
}

@media (min-width: 850px) {
  .event__actions {
    display: flex;
    margin-left: -0.5rem;
    align-items: center;
  }
}

.event__action {
  margin-bottom: 0;
}
@media (min-width: 850px) {
  .event__action {
    padding-left: 0.5rem;
  }
}
@media (min-width: 1200px) {
  .event__action {
    width: auto;
  }
}

.event__action .button {
  margin-bottom: 0.5rem;
}
@media (min-width: 1200px) {
  .event__action .button {
    display: inline-block;
    margin: 0;
  }
}

.event__well {
  display: flex;
  flex-direction: column-reverse;
}
@media (min-width: 850px) {
  .event__well {
    flex-direction: row;
    justify-content: space-between;
  }
}

.event__image img {
  margin-bottom: 1.5rem;
}
@media (min-width: 850px) {
  .event__image img {
    margin-bottom: 0;
  }
}

.event__add-to-cal {
  list-style: none;
  margin: 0;
  padding: 0;
}

.event__add-to-cal .event__calendar-link-item {
  margin-right: 0.5rem;
  padding-right: 1.5rem;
  display: inline-block;
  background-image: url("../imgs/icons/calendar-plus.svg");
  background-position: center right 0.25rem;
  background-repeat: no-repeat;
  background-size: 0.875rem 0.875rem;
}
@media (min-width: 850px) {
  .event__add-to-cal .event__calendar-link-item {
    background-image: url("../imgs/icons/calendar-plus.svg");
    background-position: center right 0.25rem;
    background-repeat: no-repeat;
    background-size: 0.875rem 0.875rem;
  }
}

.event__footer {
  display: flex;
  flex-wrap: wrap;
  border-top: 0.0625rem solid #ccc;
  padding-top: 1rem;
  margin-top: 1rem;
}
@media (min-width: 850px) {
  .event__footer {
    align-items: center;
    justify-content: space-between;
    margin-top: 1.5rem;
  }
}

.card-person {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  width: 100%;
  background-color: white;
  overflow: hidden;
  margin: 0 auto;
  border-bottom: 0.1875rem solid #41b6e6;
}
.card-person:hover {
  background-color: #003087;
  color: white;
}
.card-person:hover .card-person__title a {
  color: white;
}
.card-person:hover .card-person__content {
  background-color: #003087;
  border-color: transparent;
}
.card-person:hover a {
  color: white;
}
.card-person:hover a:focus {
  color: black;
}
.card-person:focus a {
  background-color: #fae100;
  box-shadow: 0 -0.125rem #fae100, 0 0.1875rem black;
  color: black;
  outline: 0.1875rem solid transparent;
  text-decoration: none;
}
@media (min-width: 1000px) {
  .card-person {
    display: flex;
  }
}

.card-person__link {
  color: #005eb8;
  text-decoration: none;
}
.card-person__link::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: 3;
}

.card-person__content {
  width: 100%;
  display: flex;
  flex-direction: column;
  padding: 0.75rem 1.25rem 0.75rem 0.75rem;
}
@media (min-width: 850px) {
  .card-person__content {
    padding: 1.875rem 2.25rem 1.875rem 1.875rem;
  }
}

.card-person__title {
  display: inline-block;
  font-size: 1.1875rem;
  font-weight: 700;
  margin: 0;
  padding-right: 1.875rem;
  width: 100%;
}
@media (min-width: 1000px) {
  .card-person__title {
    font-size: 1.5rem;
  }
}

.card-person__job_title {
  font-weight: 700;
}

.card-person__excerpt {
  margin: 0;
}

.card-person__figure img {
  width: 100%;
}

.featured-link-item {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  width: 90%;
  border-radius: 0.625rem;
  overflow: hidden;
  border-radius: 0.625rem;
  margin: 0 auto;
}
@media (min-width: 1000px) {
  .featured-link-item {
    display: flex;
  }
}

.featured-link-item__title {
  display: flex;
  justify-content: center;
  align-items: center;
}
.featured-link-item__title a {
  text-decoration: none;
}
.featured-link-item__title a:hover {
  color: #003087;
  text-decoration: underline;
  text-underline-offset: 0.1875rem;
}
@media (min-width: 1000px) {
  .featured-link-item__title {
    font-size: 1.5rem;
  }
}

.featured-link-item__description {
  margin-top: 0.75rem;
  margin-bottom: 1.25rem;
}
@media (min-width: 850px) {
  .featured-link-item__description {
    margin-top: 1.25rem;
    margin-bottom: 0;
  }
}

.featured-link-item__link {
  /*&::after {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      bottom: 0;
      right: 0;
      z-index: 3;
  }*/
}

.featured-link-item__content {
  text-align: center;
}

.featured-link-item__image {
  display: flex;
  justify-content: center;
  margin-bottom: 1.875rem;
}
.featured-link-item__image img {
  max-height: 5rem;
}

.filter-section-title {
  font-size: 1.1875rem;
  margin-bottom: 2.125rem;
  border-bottom: 0.125rem solid black;
  width: 100%;
}
@media (min-width: 850px) {
  .filter-section-title {
    font-size: 1.375rem;
  }
}

.h3lp-chatbox--offline {
  display: none;
}

.hero {
  color: white;
  margin: 0 auto;
  width: 100%;
  overflow: hidden;
  position: relative;
  background-position: center 75%;
  background-size: cover;
  background-repeat: no-repeat;
}
.hero:before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-repeat: no-repeat;
  background-image: url("../imgs/shape-mob.svg");
  background-position: top left;
  background-size: cover;
}
@media (min-width: 850px) {
  .hero {
    background-size: 0px;
    background-color: #005eb8;
  }
  .hero:before {
    left: -330px;
    width: 650px;
    height: 550px;
    background-image: url("../imgs/page-title-bg-before.svg");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: bottom left;
  }
}

.hero__wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
}

.hero__breadcrumbs {
  margin-top: 1rem;
  background-color: #003087;
}
@media (min-width: 475px) {
  .hero__breadcrumbs {
    background-color: transparent;
  }
}

.hero__content {
  position: relative;
  padding: 4.5rem 0;
  width: 100%;
  max-width: 15.625rem;
  line-height: 1.3;
  font-size: 1.0625rem;
}
@media (min-width: 475px) {
  .hero__content {
    max-width: 50%;
  }
}
@media (min-width: 850px) {
  .hero__content {
    padding: 3rem 0;
    max-width: calc(40% - 3rem);
    font-size: 1.1875rem;
  }
}
@media (min-width: 1000px) {
  .hero__content {
    padding: 4.5rem 0;
    max-width: calc(50% - 4.5rem);
  }
}

@media (min-width: 850px) {
  .hero--pad .hero__content {
    padding-bottom: 4.5rem;
  }
}
@media (min-width: 1000px) {
  .hero--pad .hero__content {
    padding-bottom: 7.5rem;
  }
}
@media (min-width: 1200px) {
  .hero--pad .hero__content {
    padding-bottom: 8.75rem;
  }
}

.hero--alt {
  background-color: #003087;
  background-size: cover;
}
.hero--alt:before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: -1px;
  width: 100%;
  height: auto;
  background-repeat: no-repeat;
  background-image: url("../imgs/shape-hospitals.svg");
  background-position: top left;
  background-size: contain;
}
@media (min-width: 0) and (max-width: 1200px) {
  .hero--alt .hero__content {
    max-width: 70%;
  }
  .hero--alt:before {
    background-size: cover;
    background-position: top right 30%;
  }
}
.hero--alt .hero__shim,
.hero--alt .hero__image-container {
  display: none;
}

.hero__text {
  color: white;
  margin: 1.875rem 0;
}
.hero__text a {
  color: inherit;
}
@media (min-width: 1200px) {
  .hero__text {
    font-size: 1.1875rem;
  }
}

.hero__title {
  font-size: 1.5rem;
  line-height: 1.1;
}
@media (min-width: 850px) {
  .hero__title {
    font-size: 1.75rem;
  }
}
@media (min-width: 1200px) {
  .hero__title {
    font-size: 2rem;
  }
}

.hero__button span {
  display: inline-block;
  margin: 0.25rem;
}
.hero__button .button {
  border: 0.0625rem solid white;
  padding-left: 1rem;
  margin-bottom: 0.25rem;
}
.hero__button .button--secondary {
  color: white;
  background: #da291c;
  background-image: url(../imgs/icons/arrow-right-white.svg);
  background-repeat: no-repeat;
  background-size: 0.625rem 0.625rem;
  background-position: center right 0.625rem;
}
.hero__button .button--secondary:hover {
  background-color: white;
  color: #005eb8;
  background-image: url(../imgs/icons/arrow-right-blue.svg);
}
.hero__button .button--secondary:focus {
  border-radius: 0;
  background-color: #fae100;
  background-image: url(../imgs/icons/arrow-right-black.svg);
  color: black;
  background-repeat: no-repeat;
}

.hero__bullets {
  color: white;
  margin: 0;
  list-style-type: none;
  padding: 0;
}

.hero__bullet {
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.hero__bullet a {
  line-height: 1.3;
  font-size: 1.0625rem;
  color: inherit;
  display: inline;
  align-items: center;
}
.hero__bullet a:focus {
  color: black;
}
.hero__bullet a:focus:after {
  background-image: url("../imgs/icons/arrow-right-black.svg");
}
.hero__bullet a:after {
  content: "";
  display: inline-block;
  height: 0.875rem;
  width: 1.25rem;
  background-image: url("../imgs/icons/arrow-right-white.svg");
  background-size: 0.875rem;
  background-position: top 0.0625rem right;
  background-repeat: no-repeat;
}
@media (min-width: 850px) {
  .hero__bullet a {
    font-size: 1.1875rem;
  }
}

.hero__shim {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 100%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  background-image: url(../imgs/shape.svg);
  max-width: 25.3125rem;
  display: none;
}
@media (min-width: 850px) {
  .hero__shim {
    left: 40%;
    display: block;
  }
}
@media (min-width: 1000px) {
  .hero__shim {
    left: 50%;
  }
}

.hero__image-container {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  display: none;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-color: #003087;
}
@media (min-width: 850px) {
  .hero__image-container {
    display: block;
    background-position: center right;
    width: 60%;
  }
}
@media (min-width: 1000px) {
  .hero__image-container {
    width: 50%;
  }
}

@media (min-width: 1000px) {
  .locations-template-tpl-hospital .hero__wrapper {
    min-height: 28.125rem;
  }
}

.hero-childrens {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background-color: #fae100;
}
@media (min-width: 850px) {
  .hero-childrens {
    display: block;
    min-height: 25rem;
  }
}
@media (min-width: 1000px) {
  .hero-childrens {
    min-height: 37.5rem;
  }
}

.hero-childrens__background {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}

.hero-childrens__bird-mask {
  display: block;
  margin-left: auto;
  max-height: 18.75rem;
}
@media (min-width: 850px) {
  .hero-childrens__bird-mask {
    width: 60%;
    max-height: none;
  }
}

.hero-childrens__breadcrumbs {
  position: relative;
  background: rgba(35, 31, 32, 0.7);
  width: 100%;
  padding: 0;
  color: white;
  font-size: 0.75rem;
}
.hero-childrens__breadcrumbs .breadcrumbs {
  margin: 0;
  padding: 0.625rem 0;
}
.hero-childrens__breadcrumbs .breadcrumbs--secondary,
.hero-childrens__breadcrumbs span,
.hero-childrens__breadcrumbs a,
.hero-childrens__breadcrumbs a span,
.hero-childrens__breadcrumbs .current-item {
  color: white;
}
@media (min-width: 850px) {
  .hero-childrens__breadcrumbs {
    background: transparent;
    color: #212b32;
    z-index: 2;
  }
  .hero-childrens__breadcrumbs .breadcrumbs--secondary,
.hero-childrens__breadcrumbs span,
.hero-childrens__breadcrumbs a,
.hero-childrens__breadcrumbs a span,
.hero-childrens__breadcrumbs .current-item {
    color: #212b32;
  }
}

.hero-childrens__content {
  position: relative;
  width: 100%;
  margin-top: 18.75rem;
}
@media (min-width: 850px) {
  .hero-childrens__content {
    max-width: 40%;
    margin-top: 1.875rem;
  }
}
@media (min-width: 1200px) {
  .hero-childrens__content {
    max-width: 28.125rem;
  }
}

.hero-childrens__title {
  font-size: 1.5rem;
  line-height: 1.2;
}
@media (min-width: 1000px) {
  .hero-childrens__title {
    font-size: 2rem;
  }
}

.hero-childrens__text {
  margin-bottom: 2.25rem;
}

.hero-childrens__animal-container {
  display: none;
}
@media (min-width: 850px) {
  .hero-childrens__animal-container {
    display: none;
  }
}
@media (min-width: 1000px) {
  .hero-childrens__animal-container {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
    width: 100%;
    margin: 1.5rem 0;
  }
}

.hero-childrens__giraffe {
  transform: scaleX(-1);
  width: 40%;
  display: none;
  margin-left: -3.125rem;
}
@media (min-width: 850px) {
  .hero-childrens__giraffe {
    display: block;
  }
}

.hero-childrens__moose {
  transform: scaleX(-1);
  width: 30%;
  display: none;
}
@media (min-width: 850px) {
  .hero-childrens__moose {
    display: block;
  }
}

.hero-childrens__bird-1 {
  display: none;
  position: absolute;
  top: 12.5rem;
  left: 72%;
  width: 15%;
  max-width: 6.8125rem;
  transform: scaleX(-1);
}
@media (min-width: 850px) {
  .hero-childrens__bird-1 {
    display: block;
    top: 3.6875rem;
    left: 52%;
    width: 7%;
  }
}

.hero-childrens__bird-2 {
  display: none;
  position: absolute;
  top: 11.875rem;
  left: 80%;
  width: 12%;
  max-width: 4.6875rem;
  transform: scaleX(-1);
}
@media (min-width: 850px) {
  .hero-childrens__bird-2 {
    display: block;
    top: 3.125rem;
    left: 57%;
    width: 4.5%;
  }
}

.hero-featured {
  position: relative;
}
@media (min-width: 1000px) {
  .hero-featured {
    display: flex;
    align-items: center;
  }
}
@media (min-width: 0) and (max-width: 475px) {
  .hero-featured {
    width: 100%;
  }
}

.hero-featured__image {
  position: relative;
  width: 100%;
  min-height: 15.9375rem;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center right;
  background-color: #005eb8;
  overflow: hidden;
}
@media (min-width: 475px) {
  .hero-featured__image {
    min-height: 20.125rem;
  }
}
@media (min-width: 850px) {
  .hero-featured__image {
    min-height: 29rem;
  }
}
@media (min-width: 1000px) {
  .hero-featured__image {
    min-height: 29.375rem;
  }
}
.hero-featured__image:before {
  content: "";
  position: absolute;
  top: 0;
  left: -6.875rem;
  bottom: 0;
  width: 100%;
  background-image: url("../imgs/shape-mob-v2.svg");
  background-position: top left;
  background-repeat: no-repeat;
  background-size: contain;
  z-index: 2;
}
@media (min-width: 475px) {
  .hero-featured__image:before {
    left: 0;
  }
}
@media (min-width: 850px) {
  .hero-featured__image:before {
    left: -5.5rem;
  }
}
@media (min-width: 1000px) {
  .hero-featured__image:before {
    left: -5.625rem;
  }
}
.hero-featured__image:after {
  content: "";
  top: -3.125rem;
  left: -1.875rem;
  bottom: 0;
  position: absolute;
  width: 0;
  height: 0;
  border-left: 62px solid transparent;
  border-right: 62px solid transparent;
  border-top: 106px solid #41b6e6;
  z-index: 4;
}
@media (min-width: 475px) {
  .hero-featured__image:after {
    top: -3.125rem;
    left: 6.875rem;
  }
}
@media (min-width: 850px) {
  .hero-featured__image:after {
    top: 0;
    left: 6.9375rem;
  }
}
.hero-featured.triangle-blue .hero-featured__image::after {
  border-top-color: #41b6e6;
}
.hero-featured.triangle-pink .hero-featured__image::after {
  border-top-color: #d81080;
}
.hero-featured.triangle-yellow .hero-featured__image::after {
  border-top-color: #ffeb3b;
}
.hero-featured.triangle-green .hero-featured__image::after {
  border-top-color: #21a953;
}
.hero-featured.triangle-purple .hero-featured__image::after {
  border-top-color: #330072;
}

.hero-featured__inner {
  position: relative;
  padding: 0 1.5rem;
  margin-top: -3.75rem;
  z-index: 3;
}
@media (min-width: 475px) {
  .hero-featured__inner {
    margin-top: 0;
    padding: 4rem 3rem;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
  }
}

.hero-featured__content {
  position: relative;
  background: #005eb8;
  padding: 1rem;
  color: white;
  line-height: 1.3;
  font-size: 1.0625rem;
}
@media (min-width: 475px) {
  .hero-featured__content {
    transform: none;
    max-width: 18.75rem;
  }
}
@media (min-width: 850px) {
  .hero-featured__content {
    transform: none;
    width: 100%;
    max-width: 50%;
    font-size: 1.1875rem;
    padding: 1.5rem;
    display: flex;
    flex-flow: column;
    justify-content: center;
  }
}
@media (min-width: 1000px) {
  .hero-featured__content {
    max-width: 26.5625rem;
    padding: 2.25rem;
    width: 25rem;
  }
}

.hero-featured__title {
  font-size: 1.5rem;
  line-height: 1.2;
}
@media (min-width: 850px) {
  .hero-featured__title {
    font-size: 1.75rem;
  }
}

.hero-featured__text {
  margin-bottom: 0;
}

.hero-featured__button {
  margin-top: 1.5rem;
}
.hero-featured__button .button {
  margin-bottom: 0;
}

.location-group__inner {
  display: flex;
  flex-wrap: wrap;
  margin-left: -1.5rem;
}

.location-group__content {
  display: flex;
  flex-wrap: wrap;
  align-self: flex-start;
  padding-left: 1.5rem;
  margin-left: -1.5rem;
}
@media (min-width: 1000px) {
  .location-group__content {
    width: 70%;
  }
}

.location-group__sidebar {
  padding-left: 1.5rem;
  width: 100%;
}
@media (min-width: 1000px) {
  .location-group__sidebar {
    width: 30%;
  }
}

.location-group__heading {
  color: #212b32;
  font-size: 1.375rem;
  width: 100%;
}
@media (min-width: 1000px) {
  .location-group__heading {
    font-size: 1.625rem;
  }
}

.location-group__item {
  width: 100%;
  height: auto;
  margin-bottom: 0.75rem;
  padding-left: 1.5rem;
}
@media (min-width: 850px) {
  .location-group__item {
    margin-bottom: 1.5rem;
    width: 50%;
  }
}

.location-group__item--block {
  display: block;
  width: 100%;
  margin-bottom: 0;
}

.location-group__footer {
  text-align: right;
  font-size: 1.1875rem;
}

.nav-tertiary-wrapper {
  padding: 0.5rem 0;
  background-color: #003087;
}

.nav-tertiary {
  list-style-type: none;
  display: flex;
  flex-flow: wrap;
  padding: 0;
  margin: 0;
}
@media (min-width: 1200px) {
  .nav-tertiary {
    margin-left: -0.375rem;
    width: 105%;
  }
}

.nav-tertiary__item {
  flex-basis: 50%;
  margin-bottom: 0.5rem;
  padding: 0.3125rem 0.625rem 0.3125rem 1.375rem;
  background-image: url("../imgs/icons/arrow-right-blue.svg");
  background-repeat: no-repeat;
  background-size: 0.75rem 0.75rem;
  background-position: top 0.5rem left;
  line-height: 1;
}
@media (min-width: 1200px) {
  .nav-tertiary__item {
    padding: 0.3125rem 1.375rem 0.3125rem 0.625rem;
    background-position: top 0.5625rem right 0.25rem;
    flex-basis: auto;
    font-size: 1.125rem;
    margin-bottom: 0;
  }
}

.nav-tertiary__item a {
  color: white;
  text-decoration: none;
}
.nav-tertiary__item a:hover {
  text-decoration: underline;
}
.nav-tertiary__item a:focus {
  color: black;
}

.news-group {
  background-color: #f0f4f5;
  padding: 2.25rem 0;
}

.news-group__heading {
  color: #212b32;
  font-size: 1.375rem;
  text-align: left;
  margin-bottom: 1rem;
}
@media (min-width: 1000px) {
  .news-group__heading {
    font-size: 1.625rem;
  }
}

.news-group__inner {
  display: flex;
  flex-wrap: wrap;
  margin-left: -1.5rem;
}

.news-group__content {
  display: flex;
  flex-wrap: wrap;
  padding-left: 1.5rem;
  margin-left: -1.5rem;
  flex-grow: 1;
}
@media (min-width: 1200px) {
  .news-group__content {
    flex-basis: 0;
  }
}

.news-group__item {
  width: 100%;
  margin-bottom: 1.5rem;
  padding-left: 1.5rem;
}
@media (min-width: 850px) {
  .news-group__item {
    width: 33.33333%;
  }
}

.news-group__item--slim {
  border-top: 0.0625rem solid #41b6e6;
  margin: 0;
}

.news-group__sidebar {
  width: 100%;
  padding-left: 1.5rem;
  margin-bottom: 1.5rem;
}
.news-group__sidebar .news-group__item {
  padding-left: 0;
  width: 100%;
}
@media (min-width: 1200px) {
  .news-group__sidebar {
    width: 30%;
  }
}

.news-group__content .news-group__item {
  width: 100%;
}
@media (min-width: 850px) {
  .news-group__content .news-group__item {
    width: 33%;
  }
}

.news-group__footer {
  text-align: right;
  font-size: 1.1875rem;
}

.promotion-secondary {
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  margin-bottom: 2.25rem;
  color: black;
}
@media (min-width: 850px) {
  .promotion-secondary {
    flex-direction: row;
    margin-bottom: 4.5rem;
  }
}

.container--padded .promotion-secondary {
  margin-bottom: 0;
}

.bg-pink:before,
.bg-yellow:before {
  content: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 100%;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: top left;
}
@media (min-width: 850px) {
  .bg-pink:before,
.bg-yellow:before {
    content: "";
  }
}
.bg-pink:after,
.bg-yellow:after {
  content: none;
  position: absolute;
  bottom: -165px;
  right: -315px;
  width: 56%;
  height: 158%;
  background-image: url("../imgs/pyramid-triangles-white.svg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: bottom right;
  transform: rotate(180deg);
}
@media (min-width: 850px) {
  .bg-pink:after,
.bg-yellow:after {
    content: "";
  }
}

.bg-pink {
  background-color: #d81080;
  color: white;
}
.bg-pink:before {
  background-image: url("../imgs/promo-bg-yellow-left.svg");
}

.bg-yellow {
  background-color: #ffd815;
}
.bg-yellow:before {
  background-image: url("../imgs/promo-bg-blue-left.svg");
}

.bg-blue:after,
.bg-green:after,
.bg-purple:after {
  content: none;
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: top right;
}
@media (min-width: 850px) {
  .bg-blue:after,
.bg-green:after,
.bg-purple:after {
    content: "";
  }
}
.bg-blue:before,
.bg-green:before,
.bg-purple:before {
  content: none;
  position: absolute;
  bottom: -106px;
  left: -33%;
  width: 56%;
  height: 158%;
  background-image: url("../imgs/pyramid-triangles-white.svg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: bottom left;
  transform: rotate(180deg);
}
@media (min-width: 850px) {
  .bg-blue:before,
.bg-green:before,
.bg-purple:before {
    content: "";
  }
}

.bg-blue {
  background-color: #41b6e6;
}
.bg-blue:after {
  background-image: url("../imgs/promo-bg-yellow-right.svg");
}

.bg-green {
  background-color: #21a953;
}
.bg-green:after {
  background-image: url("../imgs/promo-bg-blue-right.svg");
}

.bg-purple {
  background-color: #330072;
  color: white;
}
.bg-purple:after {
  background-image: url("../imgs/promo-bg-blue-right.svg");
}

.promotion-secondary__content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin: auto 0;
  padding: 1.25rem;
  position: relative;
}
@media (min-width: 475px) {
  .promotion-secondary__content {
    font-size: 1rem;
    padding: 2.25rem;
  }
}
@media (min-width: 850px) {
  .promotion-secondary__content {
    padding: 2.25rem;
    padding-left: 0.75rem;
    width: 66%;
    min-height: 20rem;
    margin-left: 15%;
  }
}
@media (min-width: 1200px) {
  .promotion-secondary__content {
    padding: 4rem;
    padding-left: 0.75rem;
  }
}

.promotion-secondary__content-header {
  font-size: 1.1875rem;
}

.promotion-secondary__title {
  line-height: 1.2;
  margin-bottom: 0.75rem;
  font-size: 1.625rem;
}
@media (min-width: 850px) {
  .promotion-secondary__title {
    margin-bottom: 1.5rem;
  }
}
@media (min-width: 1200px) {
  .promotion-secondary__title {
    font-size: 2.375rem;
    margin-bottom: 1.875rem;
  }
}

@media (min-width: 1000px) {
  .promotion-secondary__message {
    font-size: 1.375rem;
  }
}

.promotion-secondary__content-footer {
  margin-top: 1.5rem;
}
.promotion-secondary__content-footer .button {
  margin: 0;
}

.offset-overlay {
  position: relative;
  margin-top: -2.5rem;
}
@media (min-width: 1000px) {
  .offset-overlay {
    margin-top: -5rem;
  }
}

.offset-overlay__wrapper {
  margin: 0 5%;
  background: white;
  box-shadow: 0 0 1rem 0 rgba(0, 0, 0, 0.15);
  padding: 0.75rem;
}
@media (min-width: 850px) {
  .offset-overlay__wrapper {
    margin: 0 2.5%;
    padding: 1.5rem;
  }
}
@media (min-width: 1000px) {
  .offset-overlay__wrapper {
    margin: 0 auto;
    padding: 2.5rem;
    width: 82.5rem;
    max-width: 95%;
  }
}

.video-embed {
  display: block;
}
@media (min-width: 850px) {
  .video-embed {
    padding-top: 0.75rem;
  }
}

.video-embed__content {
  color: #212b32;
  text-align: left;
}

.video-embed__title {
  margin-bottom: 0;
}

.video-embed__information {
  margin-bottom: 0.75rem;
}

.video-embed__video {
  position: relative;
  padding-bottom: 56.25%;
  overflow: hidden;
  max-width: 100%;
  height: auto;
}

.video-embed__video iframe,
.video-embed__video object,
.video-embed__video embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.video-embed-transcript {
  padding: 0.5rem 0;
}

.video-embed-transcript__button {
  display: block;
  background: none;
  border: none;
  padding: 0.25rem;
  margin-left: auto;
  font-size: 1rem;
  text-decoration: underline;
  color: #005eb8;
}
.video-embed-transcript__button:before {
  content: "Close";
}
.video-embed-transcript__button:hover {
  text-decoration-thickness: 0.1875rem;
}
.video-embed-transcript__button:focus {
  margin: -6px 0 0 auto;
}
@media (min-width: 850px) {
  .video-embed-transcript__button {
    font-size: 1.1875rem;
  }
}
.video-embed-transcript__button p {
  margin: 0;
}

.video-embed-transcript--minimised {
  border-bottom-width: 0.0625rem;
  padding-bottom: 1.5rem;
}
.video-embed-transcript--minimised .video-embed-transcript__button:before {
  content: none;
}
.video-embed-transcript--minimised .video-embed-transcript__content {
  display: none;
}

.video-embed-transcript__content {
  padding: 1.25rem;
  background-color: white;
}
.video-embed-transcript__content p:last-child,
.video-embed-transcript__content ul:last-child,
.video-embed-transcript__content ol:last-child {
  margin: 0;
}

.cqc-banner {
  background-color: white;
  padding: 1rem;
}
@media (min-width: 850px) {
  .cqc-banner {
    display: flex;
    align-items: center;
    padding: 1.5rem 2.25rem;
  }
}

.cqc-banner__image {
  max-width: 10rem;
  margin-bottom: 1rem;
}
@media (min-width: 850px) {
  .cqc-banner__image {
    max-width: 13.75rem;
    margin-bottom: 0;
    margin-right: 3rem;
  }
}

.cqc-banner__text {
  margin: 0;
}

.link-list__title {
  margin-bottom: 0.75rem;
  padding-bottom: 0.25rem;
  border-bottom: 0.125rem solid #aeb7bd;
}
@media (min-width: 1200px) {
  .link-list__title {
    font-size: 1.5rem;
  }
}
.link-list__title a {
  color: inherit;
}

.link-list__list {
  list-style: none;
  margin: 0;
  font-size: 1.1875rem;
  padding-left: 0;
}

.link-list__item {
  margin-bottom: 0.75rem;
}
.link-list__item:last-child {
  margin-bottom: 0;
}

.link-list__link {
  display: inline;
}

.link-list-group__items {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

.link-list-group__item {
  margin-bottom: 2.25rem;
}
.link-list-group__item:last-child {
  margin-bottom: 0;
}
@media (min-width: 1000px) {
  .link-list-group__item {
    margin-bottom: 3rem;
  }
}

.action-link--empty .action-link__text {
  color: #4c6272;
  font-weight: 400;
}

.action-link {
  display: inline-block;
  position: relative;
  padding-left: 2.125rem;
  font-size: 1.375rem;
  font-weight: 700;
  line-height: 1.875rem;
  text-decoration: underline;
}
.action-link:before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 1.875rem;
  height: 1.875rem;
  background: url("../imgs/icons/arrow-right-circle-green.svg") no-repeat left top;
  background-size: 1.875rem;
}
.action-link:focus {
  background-color: #ffeb3b;
  color: #212b32;
  box-shadow: 0 -0.125rem #ffeb3b, 0 0.25rem #212b32;
  outline: 0.25rem solid transparent;
  text-decoration: none;
}
.action-link:focus:before {
  background: url("../imgs/icons/arrow-right-circle-black.svg") no-repeat left top;
}

.action-link__text {
  font-size: 1.1875rem;
}
@media (min-width: 850px) {
  .action-link__text {
    font-size: 1.375rem;
  }
}

a.action-link {
  color: #005eb8;
}
a.action-link:hover {
  color: black;
  text-decoration: underline;
}
a.action-link:focus {
  color: #212b32;
  text-decoration: none;
}

.card {
  position: relative;
  margin: 3rem 0;
  padding: 1.5rem;
  border: 0.0625rem solid #d8dde0;
  border-bottom-width: 0.25rem;
  background: white;
}
@media (min-width: 850px) {
  .card {
    padding: 2rem;
  }
}

.card__heading-container > * {
  font-size: 1.25rem;
}
@media (min-width: 850px) {
  .card__heading-container > * {
    font-size: 1.5rem;
  }
}
.card__heading-container a:hover {
  color: #7c2855;
  text-decoration: none;
}
.card__heading-container a::before {
  position: absolute;
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
}

.card__content > *:last-child {
  margin-bottom: 0;
}
.card__content > * a:hover {
  color: #7c2855;
  text-decoration: none;
}
.card__content .block-editor-block-list__layout > *:last-child {
  margin-bottom: 0;
}

.card__image {
  margin: -2rem -2rem 0 -2rem;
}
.card__image > * {
  margin: 0;
}
.card__image figcaption {
  display: none;
}
.card__image img {
  width: 100%;
}

.care-card {
  background: white;
  border: 0.0625rem solid #d8dde0;
  position: relative;
  width: 100%;
}

.care-card__heading {
  position: relative;
  padding: 0.75rem 2.25rem;
  background-color: #005eb8;
  color: white;
}
.care-card__heading h2,
.care-card__heading h3,
.care-card__heading h4 {
  margin: 0;
  font-size: 1.5rem;
  line-height: 1.33333;
  color: white;
}

.care-card__arrow {
  display: block;
  position: absolute;
  height: 1.25rem;
  width: 1.25rem;
  bottom: -0.625rem;
  left: 1.5rem;
  overflow: hidden;
  transform: rotate(45deg);
  z-index: 2;
}
.care-card__arrow:before, .care-card__arrow::after {
  content: "";
  display: block;
  position: absolute;
  width: 0;
  height: 0;
  top: 0;
  transform: rotate(45deg);
  border: solid 2rem #005eb8;
}
@media (min-width: 1000px) {
  .care-card__arrow {
    left: 2.25rem;
  }
}

.care-card__content {
  padding: 1.5rem;
}
.care-card__content *:last-child {
  margin-bottom: 0;
}
.care-card__content .block-editor-block-list__layout > *:last-child {
  margin-bottom: 0;
}
@media (min-width: 1000px) {
  .care-card__content {
    padding: 2.25rem;
  }
}

.care-card--emergency .care-card__heading {
  background-color: #d5281b;
}
.care-card--emergency .care-card__content {
  background-color: #212b32;
  color: white;
}
.care-card--emergency .care-card__content a {
  color: white;
}
.care-card--emergency .care-card__arrow:before, .care-card--emergency .care-card__arrow::after {
  border-color: #d5281b;
}

.care-card--urgent .care-card__heading {
  background-color: #d5281b;
}
.care-card--urgent .care-card__content {
  background-color: white;
  color: #212b32;
}
.care-card--urgent .care-card__arrow:before, .care-card--urgent .care-card__arrow::after {
  border-color: #d5281b;
}

.columns {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 100%;
}
.columns > .inner-blocks-wrapper,
.columns > .inner-blocks-wrapper > .block-editor-inner-blocks,
.columns > .inner-blocks-wrapper > .block-editor-inner-blocks > .block-editor-block-list__layout,
.columns > .inner-blocks-wrapper > .block-editor-inner-blocks > .block-editor-block-list__layout > .wp-block,
.columns > .inner-blocks-wrapper > .block-editor-inner-blocks > .block-editor-block-list__layout > .wp-block > .acf-block-body,
.columns > .inner-blocks-wrapper > .block-editor-inner-blocks > .block-editor-block-list__layout > .wp-block > .acf-block-body > div,
.columns > .inner-blocks-wrapper > .block-editor-inner-blocks > .block-editor-block-list__layout > .wp-block > .acf-block-body > div > .acf-block-preview {
  display: contents;
}

.columns__content {
  width: 100%;
}
@media (min-width: 850px) {
  .columns__content {
    width: auto;
    flex: 1 0;
  }
}

.columns__content-item,
.columns__sidebar-item {
  margin: 0 0 1.5rem 0;
}
.columns__content-item:last-child,
.columns__sidebar-item:last-child {
  margin: 0;
}

.columns__sidebar {
  width: 100%;
  margin: 1.5rem 0 0 0;
}
@media (min-width: 850px) {
  .columns__sidebar {
    width: 35%;
    margin: 0 0 0 1.5rem;
  }
}
@media (min-width: 1200px) {
  .columns__sidebar {
    width: 30%;
    margin: 0 0 0 4.6875rem;
  }
}
.acf-block-preview:focus .columns__sidebar {
  border: 0.0625rem dotted #ccc;
}

.columns__sidebar--before {
  margin: 0 0 1.5rem 0;
}
@media (min-width: 850px) {
  .columns__sidebar--before {
    margin: 0 1.5rem 0 0;
  }
}
@media (min-width: 1200px) {
  .columns__sidebar--before {
    margin: 0 4.6875rem 0 0;
  }
}

.contact-details {
  background-color: white;
  border-bottom: 0.0625rem solid #41b6e6;
  padding: 1rem;
}
@media (min-width: 850px) {
  .contact-details {
    border-bottom: 0.1875rem solid #41b6e6;
    padding: 1rem;
  }
}
@media (min-width: 1000px) {
  .contact-details {
    padding: 1.5rem;
  }
}

.contact-details__title {
  color: #005eb8;
  font-size: 1.1875rem;
}
@media (min-width: 850px) {
  .contact-details__title {
    font-size: 1.5rem;
  }
}

.contact-details__description {
  margin-bottom: 1rem;
}
@media (min-width: 850px) {
  .contact-details__description {
    margin-bottom: 2.25rem;
  }
}

.contact-details__item {
  margin-bottom: 1.25rem;
}
.contact-details__item:last-child {
  margin-bottom: 0;
}

.contact-details__item--button {
  margin-top: 1.5rem;
}
.contact-details__item--button .button {
  margin-bottom: 0;
}

/**
 * Component: Contact Detail
 */
.contact-detail {
  display: flex;
  margin-bottom: 1.5rem;
  font-size: 1rem;
  flex-direction: column;
  align-items: flex-start;
}
.contact-detail a {
  color: #005eb8;
  font-weight: 700;
  text-decoration: underline;
}
.contact-detail a:hover {
  text-decoration: none;
}
.contact-detail:last-child {
  margin-bottom: 0;
}
@media (min-width: 850px) {
  .contact-detail {
    font-size: 1.1875rem;
    flex-direction: row;
    align-items: center;
  }
}

.contact-detail__label {
  font-weight: 700;
}

.contact-detail__icon {
  width: 1.875rem;
  height: 1.875rem;
  margin-right: 0.25rem;
}
@media (min-width: 1000px) {
  .contact-detail__icon {
    width: 2.1875rem;
    height: 2.1875rem;
    margin-right: 0.5rem;
  }
}

.contact-detail__label {
  margin-right: 0.25rem;
}
@media (min-width: 1000px) {
  .contact-detail__label {
    margin-right: 0.5rem;
  }
}

.contact-detail__extension {
  margin-left: 0.5rem;
}

.contents-list__list {
  padding: 0;
  list-style: none;
}

.contents-list__current {
  font-weight: 700;
}

.contents-list__item {
  padding: 0 0 0 2.25rem;
  margin-bottom: 0.5rem;
  background: url("../imgs/icons/dash.svg") left 0.875rem no-repeat;
  background-size: 1rem;
}

.details > .inner-blocks-wrapper,
.details > .inner-blocks-wrapper > .block-editor-inner-blocks,
.details > .inner-blocks-wrapper > .block-editor-inner-blocks > .block-editor-block-list__layout,
.details > .inner-blocks-wrapper > .block-editor-inner-blocks > .block-editor-block-list__layout > .wp-block,
.details > .inner-blocks-wrapper > .block-editor-inner-blocks > .block-editor-block-list__layout > .wp-block > .acf-block-body,
.details > .inner-blocks-wrapper > .block-editor-inner-blocks > .block-editor-block-list__layout > .wp-block > .acf-block-body > div,
.details > .inner-blocks-wrapper > .block-editor-inner-blocks > .block-editor-block-list__layout > .wp-block > .acf-block-body > div > .acf-block-preview {
  display: contents;
}

.details__button {
  position: relative;
  display: block;
  text-decoration: underline;
  color: #005eb8;
  cursor: pointer;
  font-size: 1.1875rem;
  padding: 0.25rem 0.25rem 0.25rem 1.5rem;
  background-color: transparent;
  border: 0;
}
.details__button:before {
  content: "";
  display: block;
  bottom: 0;
  left: 0;
  margin: auto;
  position: absolute;
  top: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-color: transparent;
  clip-path: polygon(0% 0%, 50% 100%, 100% 0%);
  border-width: 0.75rem 0.4375rem 0 0.4375rem;
  border-top-color: inherit;
}
.details__button:hover {
  color: black;
  text-decoration: none;
}
.details__button:focus {
  background-color: #ffeb3b;
  box-shadow: 0 0.25rem 0 #212b32;
  color: #212b32;
  outline: 0.25rem solid transparent;
  text-decoration: none;
}
@media (min-width: 850px) {
  .details__button {
    font-size: 1.1875rem;
  }
}
.details__button p {
  margin: 0;
}

.details--minimised {
  border-bottom-width: 0.0625rem;
}
.details--minimised .details__button:before {
  clip-path: polygon(0% 0%, 100% 50%, 0% 100%);
  border-width: 0.4375rem 0 0.4375rem 0.75rem;
  border-left-color: inherit;
}
.details--minimised .details__content {
  display: none;
}

.details__content {
  margin-top: 0.5rem;
  padding: 1rem 1rem 1rem 1.5rem;
  border-left: 0.25rem solid #d8dde0;
}
.details__content p:last-child,
.details__content ul:last-child,
.details__content ol:last-child {
  margin: 0;
}

.do-dont {
  width: 100%;
}

.do-dont__tick-list,
.do-dont__cross-list {
  background-color: white;
  border: 0.0625rem solid #d8dde0;
  padding: 0 1.5rem 1.5rem 1.5rem;
  margin: 1rem 0 2.25rem;
}
@media (min-width: 850px) {
  .do-dont__tick-list:first-child,
.do-dont__cross-list:first-child {
    margin-bottom: 3rem;
  }
}

.do-dont__title {
  position: relative;
  top: -1rem;
  left: -1.5625rem;
  display: inline-block;
  margin: 0;
  padding: 0.75rem 1.5rem;
  background-color: #005eb8;
  color: white;
  font-size: 1.1875rem;
  font-weight: 700;
}
@media (min-width: 850px) {
  .do-dont__title {
    font-size: 1.5rem;
  }
}

.do-dont__list,
.do-dont__tick-list ul,
.do-dont__cross-list ul {
  position: relative;
  list-style-type: none;
  margin: 0;
  padding: 0;
}
.do-dont__list li,
.do-dont__tick-list ul li,
.do-dont__cross-list ul li {
  background-repeat: no-repeat;
  background-size: 2.125rem 2.125rem;
  background-position: 0% 50%;
  padding-left: 3rem;
  margin-bottom: 0.5rem;
}
.do-dont__list li > *,
.do-dont__tick-list ul li > *,
.do-dont__cross-list ul li > * {
  margin: 0;
}
.do-dont__list li:last-child,
.do-dont__tick-list ul li:last-child,
.do-dont__cross-list ul li:last-child {
  margin-bottom: 0;
}

.do-dont__list li,
.do-dont__tick-list ul li {
  background-image: url("../imgs/icons/tick.svg");
}

.do-dont__list--cross li,
.do-dont__cross-list ul li {
  background-image: url("../imgs/icons/cross.svg");
}

.do-list {
  width: 100%;
}

.do-list__tick-list {
  background-color: white;
  border: 0.0625rem solid #d8dde0;
  padding: 0 1.5rem 1.5rem 1.5rem;
  margin: 1rem 0 2.25rem;
}
@media (min-width: 850px) {
  .do-list__tick-list:first-child {
    margin-bottom: 3rem;
  }
}

.do-list__title {
  position: relative;
  top: -1rem;
  left: -1.5625rem;
  display: inline-block;
  margin: 0;
  padding: 0.75rem 1.5rem;
  background-color: #005eb8;
  color: white;
  font-size: 1.1875rem;
  font-weight: 700;
}
@media (min-width: 850px) {
  .do-list__title {
    font-size: 1.5rem;
  }
}

.do-list__list,
.do-list__tick-list ul {
  position: relative;
  list-style-type: none;
  margin: 0;
  padding: 0;
}
.do-list__list li,
.do-list__tick-list ul li {
  background-image: url("../imgs/icons/tick.svg");
  background-repeat: no-repeat;
  background-size: 2.125rem 2.125rem;
  background-position: 0% 50%;
  padding-left: 3rem;
  margin-bottom: 0.5rem;
}
.do-list__list li > *,
.do-list__tick-list ul li > * {
  margin: 0;
}
.do-list__list li:last-child,
.do-list__tick-list ul li:last-child {
  margin-bottom: 0;
}

.dont-list {
  width: 100%;
}

.dont-list__cross-list {
  background-color: white;
  border: 0.0625rem solid #d8dde0;
  padding: 0 1.5rem 1.5rem 1.5rem;
  margin: 1rem 0 2.25rem;
}
@media (min-width: 850px) {
  .dont-list__cross-list:first-child {
    margin-bottom: 3rem;
  }
}

.dont-list__title {
  position: relative;
  top: -1rem;
  left: -1.5625rem;
  display: inline-block;
  margin: 0;
  padding: 0.75rem 1.5rem;
  background-color: #005eb8;
  color: white;
  font-size: 1.1875rem;
  font-weight: 700;
}
@media (min-width: 850px) {
  .dont-list__title {
    font-size: 1.5rem;
  }
}

.dont-list__list {
  position: relative;
  list-style-type: none;
  margin: 0;
  padding: 0;
}
.dont-list__list li {
  background-image: url("../imgs/icons/tick.svg");
  background-repeat: no-repeat;
  background-size: 2.125rem 2.125rem;
  background-position: 0% 50%;
  padding-left: 3rem;
  margin-bottom: 0.5rem;
}
.dont-list__list li > * {
  margin: 0;
}
.dont-list__list li:last-child {
  margin-bottom: 0;
}

.dont-list__list--cross li {
  background-image: url("../imgs/icons/cross.svg");
}

.expander {
  background-color: #fff;
  border: 0.0625rem solid #d8dde0;
  border-bottom-width: 0.25rem;
  padding: 1.5rem;
}
.expander > .inner-blocks-wrapper,
.expander > .inner-blocks-wrapper > .block-editor-inner-blocks,
.expander > .inner-blocks-wrapper > .block-editor-inner-blocks > .block-editor-block-list__layout,
.expander > .inner-blocks-wrapper > .block-editor-inner-blocks > .block-editor-block-list__layout > .wp-block,
.expander > .inner-blocks-wrapper > .block-editor-inner-blocks > .block-editor-block-list__layout > .wp-block > .acf-block-body,
.expander > .inner-blocks-wrapper > .block-editor-inner-blocks > .block-editor-block-list__layout > .wp-block > .acf-block-body > div,
.expander > .inner-blocks-wrapper > .block-editor-inner-blocks > .block-editor-block-list__layout > .wp-block > .acf-block-body > div > .acf-block-preview {
  display: contents;
}

.expander__button {
  display: inline-block;
  text-decoration: underline;
  text-align: left;
  color: #005eb8;
  cursor: pointer;
  font-size: 1rem;
  padding: 0.75rem 0.25rem 0.75rem 2.25rem;
  background: #fff url("../imgs/icons/nhs-minus.svg") no-repeat left;
  background-size: 2rem 2rem;
  border: 0;
  /*&:focus {
      background: colours.$nhs-yellow url("../imgs/icons/nhs-plus-black.svg") no-repeat left;
      background-size: rem(32) rem(32);
      text-decoration: underline;
      box-shadow: 0 rem(-2) colours.$nhs-yellow, 0 rem(4) colours.$nhs-text;
      color: colours.$nhs-text;
  }*/
}
.expander__button:hover {
  color: black;
  text-decoration: none;
}
@media (min-width: 850px) {
  .expander__button {
    font-size: 1.1875rem;
  }
}
.expander__button p {
  margin: 0;
}

.expander--minimised {
  border-bottom-width: 0.0625rem;
}
.expander--minimised .expander__button {
  background: url("../imgs/icons/nhs-plus.svg") no-repeat left;
  background-size: 2rem 2rem;
  /*&:focus {
      background: colours.$nhs-yellow url("../imgs/icons/nhs-minus-black.svg") no-repeat left;
      background-size: rem(32) rem(32);
  }*/
}
.expander--minimised .expander__content {
  display: none;
}

.expander__content {
  padding-top: 1.5rem;
}
.expander__content ul, .expander__content ol {
  padding-left: 1.5rem;
}
.expander__content p:last-child,
.expander__content ul:last-child,
.expander__content ol:last-child {
  margin-bottom: 0;
}
.expander__content ul li ul {
  padding-left: 0;
}
@media (min-width: 850px) {
  .expander__content ul li ul {
    padding-left: 1.5rem;
  }
}
.expander__content .acf-block-preview {
  margin-bottom: 1.5rem;
}

.feature {
  position: relative;
}
.feature > .inner-blocks-wrapper,
.feature > .inner-blocks-wrapper > .block-editor-inner-blocks,
.feature > .inner-blocks-wrapper > .block-editor-inner-blocks > .block-editor-block-list__layout,
.feature > .inner-blocks-wrapper > .block-editor-inner-blocks > .block-editor-block-list__layout > .wp-block,
.feature > .inner-blocks-wrapper > .block-editor-inner-blocks > .block-editor-block-list__layout > .wp-block > .acf-block-body,
.feature > .inner-blocks-wrapper > .block-editor-inner-blocks > .block-editor-block-list__layout > .wp-block > .acf-block-body > div,
.feature > .inner-blocks-wrapper > .block-editor-inner-blocks > .block-editor-block-list__layout > .wp-block > .acf-block-body > div > .acf-block-preview {
  display: contents;
}
.feature .block-list__block {
  border: 1px solid green;
}

.feature__content {
  background: #ffb81c;
  padding: 1.25rem;
  width: 90%;
}
.feature__content h2,
.feature__content h3 {
  font-size: 2rem;
}
@media (min-width: 850px) {
  .feature__content {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    width: 60%;
    padding: 1.5rem;
  }
}
@media (min-width: 1200px) {
  .feature__content {
    padding: 2.25rem;
  }
  .feature__content h2,
.feature__content h3 {
    font-size: 2.625rem;
  }
}

.feature__image {
  width: 40%;
  margin: -5rem 0 0 auto;
  z-index: -1;
}
.feature__image figcaption {
  display: none;
}
@media (min-width: 850px) {
  .feature__image {
    width: 45%;
    margin: 0 0 0 auto;
    max-width: 38.125rem;
  }
}
.feature__image .block-editor-media-placeholder {
  z-index: 2;
}

.file__link {
  position: relative;
  padding-left: 2.5rem;
  background-image: url("../imgs/icons/file.svg");
  background-size: 1.25rem 1.25rem;
  background-repeat: no-repeat;
  background-position: left center;
  font-size: 1.1875rem;
}
.file__link:hover {
  color: black;
  text-decoration: underline;
}

.file--empty .file__link {
  color: #4c6272;
}

.inset-text {
  border-left: 0.5rem solid #005eb8;
  padding: 1rem;
  margin-bottom: 1.5rem;
}
@media (min-width: 850px) {
  .inset-text {
    padding: 1.5rem;
  }
}
.inset-text > .inner-blocks-wrapper,
.inset-text > .inner-blocks-wrapper > .block-editor-inner-blocks,
.inset-text > .inner-blocks-wrapper > .block-editor-inner-blocks > .block-editor-block-list__layout,
.inset-text > .inner-blocks-wrapper > .block-editor-inner-blocks > .block-editor-block-list__layout > .wp-block,
.inset-text > .inner-blocks-wrapper > .block-editor-inner-blocks > .block-editor-block-list__layout > .wp-block > .acf-block-body,
.inset-text > .inner-blocks-wrapper > .block-editor-inner-blocks > .block-editor-block-list__layout > .wp-block > .acf-block-body > div,
.inset-text > .inner-blocks-wrapper > .block-editor-inner-blocks > .block-editor-block-list__layout > .wp-block > .acf-block-body > div > .acf-block-preview {
  display: contents;
}

.inset-text__inner {
  margin: 0;
}
.inset-text__inner p:last-child {
  margin-bottom: 0;
}

.panel {
  background-color: #ffffff;
  padding: 1.25rem;
  border-left: 0.25rem solid #768692;
}
.panel .block-editor-block-list__layout > * {
  margin-bottom: 1.25rem;
}
.panel .block-editor-block-list__layout ul, .panel .block-editor-block-list__layout ol {
  padding-left: 1.25rem;
}
.panel *:last-child {
  margin-bottom: 0;
}
@media (min-width: 475px) {
  .panel {
    padding: 1.5rem;
  }
}
.panel.is-style-alert {
  background: #da291c;
  border-color: #8a1538;
  color: #ffffff;
}
.panel.is-style-alert a {
  color: #ffffff;
}

.video-transcript {
  border: 0.0625rem solid #d8dde0;
  padding: 0.75rem;
}

.video-transcript__embed .wp-block-embed__wrapper {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
}
.video-transcript__embed .wp-block-embed__wrapper iframe,
.video-transcript__embed .wp-block-embed__wrapper object,
.video-transcript__embed .wp-block-embed__wrapper embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.video-transcript__button {
  display: block;
  background: none;
  border: none;
  padding: 0.25rem;
  margin-left: auto;
  font-size: 1.1875rem;
  text-decoration: underline;
  color: #005eb8;
}

.video-transcript__content p:last-child, .video-transcript__content ul:last-child, .video-transcript__content ol:last-child {
  margin-bottom: 0;
}

.video-transcript--minimised .video-transcript__content {
  display: none;
}

.warning-callout {
  margin-top: 3rem;
  background-color: white;
  padding: 0 1.5rem 1.5rem 1.5rem;
  background-color: #fff9c4;
  border: 0.0625rem solid #ffeb3b;
}
@media (min-width: 850px) {
  .warning-callout {
    padding: 0 2rem 2rem 2rem;
  }
}

.warning-callout__heading {
  position: relative;
  top: -0.5rem;
  left: -1.5625rem;
  display: inline-block;
  margin: 0;
  padding: 0.5rem 1.5rem;
  background-color: #ffeb3b;
  font-size: 1.1875rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
@media (min-width: 850px) {
  .warning-callout__heading {
    top: -1rem;
    font-size: 1.5rem;
    padding: 0.5rem 2rem;
    left: -2.0625rem;
  }
}
.warning-callout__heading p,
.warning-callout__heading h3 {
  margin-bottom: 0;
}

.warning-callout__content *:last-child {
  margin-bottom: 0;
}

.table-of-contents {
  margin-bottom: 1rem;
}
@media (min-width: 1000px) {
  .table-of-contents {
    margin-bottom: 1.5rem;
  }
}

.table-of-contents__heading {
  margin: 0;
  padding-bottom: 0.75rem;
  border-bottom: 0.0625rem solid #768692;
}

.table-of-contents__list {
  list-style-type: none;
  margin: 0;
  padding: 1rem 0;
}

.table-of-contents__item {
  padding: 0 0 0 2.25rem;
  margin-bottom: 0.5rem;
  background: url("../imgs/icons/dash.svg") left 0.875rem no-repeat;
  background-size: 1rem;
}
.table-of-contents__item:last-child {
  margin-bottom: 0;
}

.table-of-contents__link {
  text-decoration: underline;
}

.team-leader {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  padding: 1.5625rem;
  margin-bottom: 1.875rem;
  background-color: white;
}
.team-leader > .inner-blocks-wrapper,
.team-leader > .inner-blocks-wrapper > .block-editor-inner-blocks,
.team-leader > .inner-blocks-wrapper > .block-editor-inner-blocks > .block-editor-block-list__layout,
.team-leader > .inner-blocks-wrapper > .block-editor-inner-blocks > .block-editor-block-list__layout > .wp-block,
.team-leader > .inner-blocks-wrapper > .block-editor-inner-blocks > .block-editor-block-list__layout > .wp-block > .acf-block-body,
.team-leader > .inner-blocks-wrapper > .block-editor-inner-blocks > .block-editor-block-list__layout > .wp-block > .acf-block-body > div,
.team-leader > .inner-blocks-wrapper > .block-editor-inner-blocks > .block-editor-block-list__layout > .wp-block > .acf-block-body > div > .acf-block-preview {
  display: contents;
}

.team-leader__content {
  width: 100%;
}
@media (min-width: 850px) {
  .team-leader__content {
    width: auto;
    flex: 1 0;
  }
}

.team-leader__content-heading {
  margin-bottom: 0;
  font-size: 1.625rem;
  font-weight: 700;
}

.team-leader__content-position {
  margin-bottom: 1.25rem;
  font-weight: 700;
}

.team-leader__content-description {
  margin-bottom: 0;
}

.team-leader__image {
  width: 100%;
  margin-right: 1.875rem;
}
@media (min-width: 850px) {
  .team-leader__image {
    width: 35%;
  }
}
@media (min-width: 1200px) {
  .team-leader__image {
    width: 30%;
  }
}
.team-leader__image figure.wp-block-image {
  margin-bottom: 0;
}
.acf-block-preview:focus .team-leader__image {
  border: 0.0625rem dotted #ccc;
}

.wp-block-acf-team-leader .block-editor-block-list__block[data-empty=true] [data-rich-text-placeholder] {
  opacity: 1;
}

.acf-block-preview .team-leader > .block-editor-inner-blocks > .block-editor-block-list__layout {
  display: flex;
}
.acf-block-preview .team-leader > .block-editor-inner-blocks > .block-editor-block-list__layout .team-leader__image {
  width: auto;
}

.team-member {
  display: inline-block;
  padding-bottom: 2.3125rem;
  margin: 0 4.75rem 1.875rem 0;
  width: calc(50% - 2.5625rem);
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
}
.team-member:nth-child(2n) {
  margin: 0 0 1.875rem 0;
}
.team-member > .inner-blocks-wrapper,
.team-member > .inner-blocks-wrapper > .block-editor-inner-blocks,
.team-member > .inner-blocks-wrapper > .block-editor-inner-blocks > .block-editor-block-list__layout,
.team-member > .inner-blocks-wrapper > .block-editor-inner-blocks > .block-editor-block-list__layout > .wp-block,
.team-member > .inner-blocks-wrapper > .block-editor-inner-blocks > .block-editor-block-list__layout > .wp-block > .acf-block-body,
.team-member > .inner-blocks-wrapper > .block-editor-inner-blocks > .block-editor-block-list__layout > .wp-block > .acf-block-body > div,
.team-member > .inner-blocks-wrapper > .block-editor-inner-blocks > .block-editor-block-list__layout > .wp-block > .acf-block-body > div > .acf-block-preview {
  display: contents;
}

.team-member__content {
  width: 100%;
}
.team-member__content * {
  color: white;
}

.team-member__content-heading {
  margin-bottom: 0;
  font-size: 1.625rem;
  font-weight: 700;
}

.team-member__content-position {
  margin-bottom: 1.25rem;
  font-weight: 700;
}

.team-member__content-description {
  margin-bottom: 0;
}

.wp-block-acf-team-member {
  display: inline-block;
  margin-right: 4.75rem;
  width: calc(50% - 2.5625rem);
}
.wp-block-acf-team-member:nth-child(2n) {
  margin-right: 0;
}
.wp-block-acf-team-member .team-member {
  width: auto;
  margin: 0 0 1.875rem 0;
}
.wp-block-acf-team-member .block-editor-block-list__block[data-empty=true] [data-rich-text-placeholder] {
  opacity: 1;
}

.team-members-overview {
  background-color: #005eb8;
  padding: 3.5rem 6.5rem;
}

.team-members-overview__heading h2 {
  margin-bottom: 1.875rem;
  color: white;
  font-weight: 700;
  font-size: 2rem;
}
