/**
 * Page layout
 */
.o-content-container {
  max-width: 1400px;
  margin: 0 auto;
}

/* TODO: Merge with the new c-post */
.o-content-container--post-no-sidebar {
  max-width: 960px;
}
.o-content-container--medium {
  max-width: 800px;
}

.o-content-container--post {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
          justify-content: space-between;
}
.o-content-container--post .o-content-container__sidebar {
  width: 320px;
  max-width: 100%;
}
.o-content-container--post .o-content-container__post {
  width: -webkit-calc(100% - 400px);
  width: calc(100% - 400px);
}
@media (max-width: 1024px) {
  .o-content-container--post {
    display: block;
  }

  .o-content-container--post .o-content-container__post {
    width: auto;
    max-width: 960px;
  }
  .o-content-container--post .o-content-container__sidebar {
    margin-top: 64px;
  }
}
@media (max-width: 480px) {
  .o-content-container--post .o-content-container__sidebar {
    margin-top: 48px;
  }
}

.o-content-container__sidebar ul,
.o-content-container__sidebar ol {
  font-size: 16px;
  line-height: 1.4;
}
.o-content-container__sidebar .widget {
  margin: 0 0 40px 0;
  list-style: none;
}

/**
 * Section component
 */
.c-section {
  padding: 80px 48px;
}
@media (max-width: 960px) {
  .c-section {
    padding: 64px 24px;
  }
}
@media (max-width: 480px) {
  .c-section {
    padding: 56px 16px;
  }
}

.c-section--flush {
  padding-top: 0;
  padding-bottom: 0;
}

.c-section--tight {
  padding: 56px 48px;
}
@media (max-width: 960px) {
  .c-section--tight {
    padding: 48px 24px;
  }
}
@media (max-width: 480px) {
  .c-section--tight {
    padding: 40px 16px;
  }
}

.c-section--tighter {
  padding: 40px 48px;
}
@media (max-width: 960px) {
  .c-section--tighter {
    padding: 24px 24px;
  }
}
@media (max-width: 480px) {
  .c-section--tighter {
    padding: 24px 16px;
  }
}

.c-section.c-section--extra-padding {
  padding: 108px 48px;
}
@media (max-width: 960px) {
  .c-section.c-section--extra-padding {
    padding: 80px 24px;
  }
}
@media (max-width: 480px) {
  .c-section.c-section--extra-padding {
    padding: 56px 16px;
  }
}

.c-section__header {
  text-align: center;
  margin: 0 auto 64px auto;
  max-width: 960px;
}
.c-section__header--wide {
  max-width: 1280px;
}
.c-section__header:last-child {
  margin-bottom: 0;
}

.c-section__heading {
  margin-bottom: 32px;
}
.c-section__heading:last-child {
  margin-bottom: 0;
}

.c-icon__container.c-section__illustration {
  max-width: 480px;
  margin: 0 auto 24px auto;
}

.c-section__heading,
.c-section__subheading {
  color: rgba(0, 0, 0, 0.60);
}

.c-section--gray {
  background-color: #fafafa;
}
.c-section--green {
  background-color: #08b89d;
}
.c-section--dark-green {
  background-color: #328580;
}
.c-section--orange {
  background-color: #ec8231;
}
.c-section--blue {
  background-color: #0078b0;
}
.c-section--dark-blue {
  background-color: #094e90;
}

.c-section--green .c-section__heading,
.c-section--green .c-section__subheading,
.c-section--green *,
.c-section--dark-green .c-section__heading,
.c-section--dark-green .c-section__subheading,
.c-section--dark-green *,
.c-section--orange .c-section__heading,
.c-section--orange .c-section__subheading,
.c-section--orange * {
  color: #fff;
}

/**
 * Columns
 */
/* .o-columns--reverseOrder {
  flex-direction: row-reverse;
} */

/* .o-columns-two-thirds.o-columns-two-thirds--vcenter,
.o-columns-fourths.o-columns-fourths--vcenter {
  align-items: center;
} */

.o-columns-halves,
.o-columns-thirds,
.o-columns-two-thirds,
.o-columns-fourths,
.o-columns-fifths,
.o-columns-three-fourths {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
          justify-content: space-between;
}

.o-columns-halves > * {
  width: -webkit-calc((100% - 80px) / 2);
  width: calc((100% - 80px) / 2);
}
.o-columns-halves.o-columns--gapless > * {
  width: -webkit-calc(100% / 2);
  width: calc(100% / 2);
}

.o-columns-two-thirds > *:first-child {
  width: -webkit-calc((100% - 80px) * (2 / 3));
  width: calc((100% - 80px) * (2 / 3));
}
.o-columns-two-thirds > *:last-child {
  width: -webkit-calc((100% - 80px) * (1 / 3));
  width: calc((100% - 80px) * (1 / 3));
}
.o-columns-two-thirds.o-columns--gapless > *:first-child {
  width: -webkit-calc(100% * (2 / 3));
  width: calc(100% * (2 / 3));
}
.o-columns-two-thirds.o-columns--gapless > *:last-child {
  width: -webkit-calc(100% * (1 / 3));
  width: calc(100% * (1 / 3));
}

.o-columns-two-thirds.o-columns--inverse > *:first-child {
  width: -webkit-calc((100% - 80px) * (1 / 3));
  width: calc((100% - 80px) * (1 / 3));
}
.o-columns-two-thirds.o-columns--inverse > *:last-child {
  width: -webkit-calc((100% - 80px) * (2 / 3));
  width: calc((100% - 80px) * (2 / 3));
}
.o-columns-two-thirds.o-columns--inverse.o-columns--gapless > *:first-child {
  width: -webkit-calc(100% * (1 / 3));
  width: calc(100% * (1 / 3));
}
.o-columns-two-thirds.o-columns--inverse.o-columns--gapless > *:last-child {
  width: -webkit-calc(100% * (2 / 3));
  width: calc(100% * (2 / 3));
}

.o-columns-thirds > * {
  width: -webkit-calc((100% - 32px) * (1 / 3));
  width: calc((100% - 32px) * (1 / 3));
}
.o-columns-thirds.o-columns--gapless > * {
  width: -webkit-calc(100% * (1 / 3));
  width: calc(100% * (1 / 3));
}

.o-columns-fourths > * {
  width: -webkit-calc((100% - 32px) * (1 / 4));
  width: calc((100% - 32px) * (1 / 4));
}
.o-columns-fourths.o-columns--gapless > * {
  width: -webkit-calc(100% * (1 / 4));
  width: calc(100% * (1 / 4));
}

.o-columns-fifths > * {
  width: -webkit-calc((100% - 24px) * (1 / 5));
  width: calc((100% - 24px) * (1 / 5));
}
.o-columns-fifths.o-columns--gapless > * {
  width: -webkit-calc(100% * (1 / 5));
  width: calc(100% * (1 / 5));
}

.o-columns-three-fourths > *:first-child {
  width: -webkit-calc((100% - 48px) * (3 / 4));
  width: calc((100% - 48px) * (3 / 4));
}
.o-columns-three-fourths > *:last-child {
  width: -webkit-calc((100% - 48px) * (1 / 4));
  width: calc((100% - 48px) * (1 / 4));
}
.o-columns-three-fourths.o-columns--gapless > *:first-child {
  width: -webkit-calc(100% * (3 / 4));
  width: calc(100% * (3 / 4));
}
.o-columns-three-fourths.o-columns--gapless > *:last-child {
  width: -webkit-calc(100% * (1 / 4));
  width: calc(100% * (1 / 4));
}

.o-columns-three-fourths.o-columns--inverse > *:first-child {
  width: -webkit-calc((100% - 48px) * (1 / 4));
  width: calc((100% - 48px) * (1 / 4));
}
.o-columns-three-fourths.o-columns--inverse > *:last-child {
  width: -webkit-calc((100% - 48px) * (3 / 4));
  width: calc((100% - 48px) * (3 / 4));
}
.o-columns-three-fourths.o-columns--inverse.o-columns--gapless > *:first-child {
  width: -webkit-calc(100% * (1 / 4));
  width: calc(100% * (1 / 4));
}
.o-columns-three-fourths.o-columns--inverse.o-columns--gapless > *:last-child {
  width: -webkit-calc(100% * (3 / 4));
  width: calc(100% * (3 / 4));
}

@media (max-width: 960px) {
  .o-columns-halves,
  .o-columns-fourths,
  .o-columns-fifths {
    -webkit-flex-wrap: wrap;
            flex-wrap: wrap;
  }
  .o-columns-two-thirds {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
            flex-direction: column;
  }

  .o-columns-halves > *,
  .o-columns-halves.o-columns--gapless > * {
    width: 100%;
  }

  .o-columns-fourths > *,
  .o-columns-fifths > * {
    width: -webkit-calc((100% - 32px) * (1 / 2));
    width: calc((100% - 32px) * (1 / 2));
  }
  .o-columns-fourths.o-columns--gapless > *,
  .o-columns-fifths.o-columns--gapless > * {
    width: -webkit-calc(100% * (1 / 2));
    width: calc(100% * (1 / 2));
  }

  .o-columns-two-thirds {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
            flex-direction: column;
  }
  .o-columns-two-thirds > *:first-child,
  .o-columns-two-thirds > *:last-child,
  .o-columns-two-thirds.o-columns--gapless > *:first-child,
  .o-columns-two-thirds.o-columns--gapless > *:last-child,
  .o-columns-two-thirds.o-columns--inverse > *:first-child,
  .o-columns-two-thirds.o-columns--inverse > *:last-child,
  .o-columns-two-thirds.o-columns--inverse.o-columns--gapless > *:first-child,
  .o-columns-two-thirds.o-columns--inverse.o-columns--gapless > *:last-child {
    width: 100%;
  }

  /**
   * Show the smaller one above
   */
  .o-columns-two-thirds:not(.o-columns--inverse) > *:first-child {
    -webkit-box-ordinal-group: 3;
    -webkit-order: 2;
            order: 2;
  }
  .o-columns-two-thirds:not(.o-columns--inverse) > *:last-child {
    -webkit-box-ordinal-group: 2;
    -webkit-order: 1;
            order: 1;
  }

  /**
   * Cap the width at ~40% of 960px
   */
  .o-columns-two-thirds.o-columns--inverse > *:first-child,
  .o-columns-two-thirds:not(.o-columns--inverse) > *:last-child {
    max-width: 384px;
  }
}

@media (max-width: 600px) {
  .o-columns-three-fourths {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
            flex-direction: column;
  }

  .o-columns-three-fourths > *:first-child,
  .o-columns-three-fourths > *:last-child,
  .o-columns-three-fourths.o-columns--gapless > *:first-child,
  .o-columns-three-fourths.o-columns--gapless > *:last-child,
  .o-columns-three-fourths.o-columns--inverse > *:first-child,
  .o-columns-three-fourths.o-columns--inverse > *:last-child,
  .o-columns-three-fourths.o-columns--inverse.o-columns--gapless > *:first-child,
  .o-columns-three-fourths.o-columns--inverse.o-columns--gapless > *:last-child {
    width: 100%;
  }

  .o-columns-three-fourths > *:last-child {
    margin-top: 32px;
  }

  /**
   * Show the smaller one above
   */
  .o-columns-three-fourths:not(.o-columns--inverse) > *:first-child {
    -webkit-box-ordinal-group: 3;
    -webkit-order: 2;
            order: 2;
  }
  .o-columns-three-fourths:not(.o-columns--inverse) > *:last-child {
    -webkit-box-ordinal-group: 2;
    -webkit-order: 1;
            order: 1;
  }

  /**
   * Cap the width at ~40% of 960px
   */
  .o-columns-three-fourths.o-columns--inverse > *:first-child,
  .o-columns-three-fourths:not(.o-columns--inverse) > *:last-child {
    max-width: 384px;
  }
}

@media (max-width: 480px) {
  .o-columns-thirds {
    -webkit-flex-wrap: wrap;
            flex-wrap: wrap;
  }
  .o-columns-thirds > *,
  .o-columns-thirds.o-columns--gapless > *,
  .o-columns-fourths > *,
  .o-columns-fourths.o-columns--gapless > *,
  .o-columns-fifths > *,
  .o-columns-fifths.o-columns--gapless > * {
    width: 100%;
  }
}


/**
 * Hero section
 */
.c-hero {
  position: relative;
  min-height: 600px;
  text-align: center;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
          align-items: center;
}
.c-hero > * {
  z-index: 2;
}
@media (max-width: 1599px) {
  .c-hero {
    min-height: 480px;
  }
}
@media (max-width: 960px) {
  .c-hero {
    min-height: 400px;
  }
}
@media (max-width: 600px) {
  .c-hero {
    min-height: 360px;
  }
}

.c-hero > .c-hero__image {
  z-index: 1;
}
.c-hero__image {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  overflow: hidden;
}
.c-hero__image source,
.c-hero__image img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}
.c-hero__image:after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.40);
}
.c-hero * {
  color: #fff;
}

.c-hero__image--align-top img {
  -o-object-position: top;
     object-position: top;
}
.c-hero__image--align-middle img {
  -o-object-position: center;
     object-position: center;
}
.c-hero__image--align-bottom img {
  -o-object-position: bottom;
     object-position: bottom;
}

.c-hero--imageless {
  min-height: 240px;
  -webkit-box-align: center;
  -webkit-align-items: center;
          align-items: center;
}

.c-bg-cover-image {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  overflow: hidden;
}
.c-bg-cover-image img {
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top;
     object-position: top;
  width: 100%;
  height: 100%;
}
.c-bg-cover-image.c-bg-cover-image--center img {
  -o-object-position: center;
     object-position: center;
}

.c-separator {
  width: 64px;
  margin: 24px auto 0;
  height: 4px;
  background-color: #ec8231;
}
.c-separator--thin {
  height: 1px;
}
.c-separator--small {
  width: 32px;
  margin: 16px auto 0;
  height: 1px;
}
.c-separator--gray {
  background-color: rgba(0, 0, 0, 0.12);
}
.c-separator--left {
  margin-left: 0;
  margin-right: auto;
}

.c-filter-buttons {
  max-width: 960px;
  margin: 0 auto;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
          justify-content: center;
}
.c-filter-buttons .c-button {
  min-width: 160px;
  -webkit-box-flex: 1;
  -webkit-flex: 1 0 auto;
          flex: 1 0 auto;
  margin: 12px;
  max-width: 600px;
}
.c-filter-buttons .c-button:not(.is-active):not(:hover) {
  background-color: #fff;
  color: rgba(0, 0, 0, 0.60);
  border-color: rgba(0, 0, 0, 0.12);
}

.c-icon__container {
  width: 144px;
  max-width: 144px;
  position: relative;
  overflow: hidden;
}
.c-icon__container--small {
  width: 96px;
  max-width: 96px;
}

.c-icon__container--circle {
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.5);
}
.c-icon__container:after {
  content: "";
  padding-top: 100%;
  display: block;
}

.c-icon__icon {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.c-icon__icon svg {
  width: 100%;
  height: 100%;
}
.c-icon__icon img,
.c-icon__icon source {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}

.c-icon-list__item {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
          flex-direction: column;

  -webkit-box-pack: center;

  -webkit-justify-content: center;

          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
          align-items: center;
}
.c-icon-list--row .c-icon-list__item {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
          flex-direction: row;
}
.c-icon-list--row .c-icon-list__item .c-icon__container {
  -webkit-flex-shrink: 0;
          flex-shrink: 0;
}

.c-icon-list__item-body {
  margin: 16px 0 0 0;
}
.c-icon-list--row .c-icon-list__item-body {
  margin: 0 0 0 24px;
}

@media (max-width: 480px) {
  .c-icon-list--row .c-icon-list__item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
            flex-direction: column;
  }
  .c-icon-list--row .c-icon-list__item-body {
    margin: 16px 0 0 0;
  }
}



.c-square-image-container {
  padding-top: 100%;
  height: 0;
  background-color: #bdbdbd;

  display: block;
  position: relative;
}
.c-square-image-container source,
.c-square-image-container img {
  max-width: 100%;
  position: absolute;
  left: 0;
  top: 0;
}
.c-square-image-container--fill-width {
  width: 100%;
}


.c-carousel {
  overflow: hidden;
}
.c-carousel__item-icon {
  width: 56px;
  height: 56px;
  fill: #ec8231;
  margin: 0 auto;
}
.c-carousel__item-icon svg {
  width: 100%;
  height: 100%;
}

.c-carousel__item {
    max-width: 960px;
    margin: 0 auto;
}
.c-carousel__item--wide {
  max-width: unset;
}

.c-carousel__container {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  width: 100%;
  -webkit-box-align: center;
  -webkit-align-items: center;
          align-items: center;
  transition: -webkit-transform 350ms ease-out;
  -webkit-transition: -webkit-transform 350ms ease-out;
  transition: transform 350ms ease-out;
  transition: transform 350ms ease-out, -webkit-transform 350ms ease-out;
  will-change: transform;
}

.c-carousel__attribution {
  text-align: center;
  font-size: 20px;
  line-height: 32px;
}

.c-carousel__separator {
  width: 160px;
  margin: 0 auto;
  position: relative;
  height: 20px;
  border-top: 3px solid rgba(0, 0, 0, 0.12);
  margin-top: 24px;
  margin-bottom: 32px;
}

.c-carousel__separator:before {
  content: "";
  display: block;
  z-index: 1;
  position: absolute;
  border-left: 20px solid transparent;
  border-right: 20px solid transparent;
  border-top: 20px solid rgba(0, 0, 0, 0.12);
  left: -webkit-calc(50% - 20px);
  left: calc(50% - 20px);
}
.c-carousel__separator:after {
  content: "";
  display: block;
  z-index: 2;
  position: absolute;
  border-left: 20px solid transparent;
  border-right: 20px solid transparent;
  border-top: 20px solid #fff;
  top: -4px;
  left: -webkit-calc(50% - 20px);
  left: calc(50% - 20px);
}

.c-carousel__navigation {
  margin-top: 56px;
  text-align: center;
}

.c-carousel__bubble {
  display: inline-block;
  border-radius: 50%;
  background-color: #ec8231;
  width: 24px;
  height: 24px;
  margin: 16px;
  cursor: pointer;

  opacity: 0.5;
  will-change: opacity;
  -webkit-transition: opacity 250ms ease-out;
  transition: opacity 250ms ease-out;
}
.c-carousel__bubble--small {
  width: 16px;
  height: 16px;
  margin: 8px;
}
.c-carousel__bubble.is-active {
  opacity: 1;
}

.c-carousel__item-container {
  width: 100%;
  -webkit-flex-shrink: 0;
          flex-shrink: 0;
}


/**
 * Page specific components
 */
 .c-leadership-results {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
          justify-content: center;
  margin: 0;
  padding: 0;
}
ul.c-leadership-results {
  margin: 0;
  padding: 0;
}
.c-leadership-result {
  list-style: none;
  display: inline-block;
  text-align: center;

  width: 240px;
}
.c-leadership-result a {
  text-transform: none;
}


.o-figure {
  max-width: 100%;
}
.o-figure--small {
  max-width: 680px;
}
.o-figure--large {
  max-width: unset;
  width: 1360px;

  /* Based off of a container width of 960px */
  position: relative;
  left: -200px;
}
@media (max-width: 1359px) {
  .o-figure--large {
    width: 100vw;
    left: -webkit-calc((100vw - 960px) / -2);
    left: calc((100vw - 960px) / -2);
  }
}
@media (max-width: 1056px) {
  /**
   * Math changes when the viewport is not large enough for
   * 960px + section side padding
   */
  .o-figure--large {
    left: -48px;
  }
}
@media (max-width: 960px) {
  .o-figure--large {
    left: -24px;
  }
}
@media (max-width: 480px) {
  .o-figure--large {
    left: -16px;
  }
}
/** On posts with sidebars, make the large figure the same as the normal figure */
.o-content-container--post .o-content-container__post .o-figure--large {
  width: auto;
  max-width: 100%;
  left: 0;
}

.o-figure--full {
  max-width: unset;
  width: 100vw;

  position: relative;
  left: -webkit-calc((100vw - 1000px) / -2);
  left: calc((100vw - 1000px) / -2);
}
@media (max-width: 1096px) {
  /**
   * Math changes when the viewport is not large enough for
   * 1000px + section side padding
   */
  .o-figure--full {
    left: -48px;
  }
}
@media (max-width: 960px) {
  .o-figure--full {
    left: -24px;
  }
}
@media (max-width: 480px) {
  .o-figure--full {
    left: -16px;
  }
}

/** Make adjustments to posts with sidebars */
.o-content-container--post .o-content-container__post .o-figure--full {
  left: -webkit-calc((100vw - 1400px) / -2);
  left: calc((100vw - 1400px) / -2);
}
@media (max-width: 1496px) {
  /**
   * Math changes when the viewport is not large enough for
   * 1400px + section side padding
   */
  .o-content-container--post .o-content-container__post .o-figure--full {
    left: -48px;
  }
}
@media (max-width: 960px) {
  .o-content-container--post .o-content-container__post .o-figure--full {
    left: -24px;
  }
}
@media (max-width: 480px) {
  .o-content-container--post .o-content-container__post .o-figure--full {
    left: -16px;
  }
}


.c-media-figure {
  margin: 32px auto;
}
.c-media-figure picture {
  display: block;
}
.c-media-figure:first-child {
  margin-top: 0;
}
.c-media-figure:last-child {
  margin-bottom: 0;
}
.c-media-figure img, .c-media-figure source {
  width: 100%;
}

.c-quote-block {
  padding: 48px;
  background-color: #328580;
}
.c-quote-block * {
  color: #fff;
}
.c-quote-block__wrapper {
  max-width: 1200px;
  margin: 0 auto;
}
.c-quote-block__quote {
  text-align: center;
}
.c-quote-block__attribution {
  margin-top: 32px;
  text-align: right;
}
@media (max-width: 600px) {
  .c-quote-block {
    padding: 32px;
  }
  .c-quote-block__quote {
    text-align: left;
  }
}

.c-list {
  list-style: none;
  text-align: left;
}
.c-list--checkbox {
  padding: 0;
}

.c-list li {
  margin-bottom: 4px;
}
  .c-list li:last-child {
    margin-bottom: 0;
  }
.c-list--checkbox li {
  position: relative;
  padding-left: 32px;
}

.c-list--checkbox li:before {
  content: "";
  display: block;

  position: absolute;
  top: -webkit-calc(50% - 10px);
  top: calc(50% - 10px);
  left: 0;
  width: 20px;
  height: 20px;

  border: 2px solid rgba(0, 0, 0, 0.12);
  border-radius: 2px;
  background-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAyNCAyNCI+PHBhdGggZD0iTTAgMGgyNHYyNEgweiIgZmlsbD0ibm9uZSIvPjxwYXRoIGQ9Ik05IDE2LjE3TDQuODMgMTJsLTEuNDIgMS40MUw5IDE5IDIxIDdsLTEuNDEtMS40MXoiIGZpbGw9IiMwMDc4YjAiLz48L3N2Zz4=');
}

.c-logo-list {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
          justify-content: center;
}
.c-logo-list__entry {
  padding: 8px;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
          justify-content: center;
}
.c-logo-list__entry-inner {
  width: 160px;
  height: 80px;
}
.c-logo-list__entry-inner img {
  -o-object-fit: contain;
     object-fit: contain;
  height: 100%;
  width: 100%;
}

/**
 * Standard form
 */
.c-form--center {
  max-width: 100%;
  width: 480px;
  margin: 0 auto;
}
.c-form label {
  display: block;
  font-size: 22px;
  color: #666;
  margin-bottom: 4px;
}
.c-form input {
  font-size: 24px !important;
  line-height: 32px !important;
  background-color: #fff;
  border-radius: 2px;
  border: 1px solid #BDBDBD;
  color: rgba(0, 0, 0, 0.87);
  height: 56px;
  padding: 0 16px !important;
  width: 100% !important;
  max-width: 100% !important;
  margin-bottom: 32px;
}
.c-form button {
  width: 100%;
  height: 56px;
  font-size: 20px !important;
}

.c-form--small label {
  font-size: 20px;
}
.c-form--small input {
  height: 40px;
  margin-bottom: 16px;
}
.c-form--small button {
  height: 40px;
  font-size: 16px !important;
}

.c-form__input-row {
  margin-bottom: 32px;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
}
.c-form--small .c-form__input-row {
  margin-bottom: 16px;
}

.c-form input[type='checkbox'] {
  height: 24px;
  width: 24px !important;
  margin-right: 16px;
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 auto;
          flex: 0 0 auto;
}
.c-form input[type='checkbox'] + label {
  font-size: 16px;
}

/* -------------------------------------------------------------------------- */
/*                              Gform containers                              */
/* -------------------------------------------------------------------------- */
.gform_wrapper form {
  max-width: 600px;
  margin: 0;
}
.gform_wrapper .gform_body .top_label input,
.gform_wrapper .gform_body .top_label select {
  width: 100%;
}
.gform_body .gfield .ginput_container input {
  height: 40px;
  border: 1px solid #9e9e9e;
  border-radius: 2px;
  background-color: #fff;
}
.gform_wrapper .gform_body .gfield_checkbox > li {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
          align-items: center;
}
.gform_wrapper .gform_body .gfield_checkbox li input[type=checkbox] {
  height: 24px;
  width: 24px !important;
  margin-right: 8px;
}
.gform_wrapper .gform_body .gfield_checkbox li label {
  font-size: 16px;
}

.c-gform-center .gform_fields {
  display: -webkit-box !important;
  display: -webkit-flex !important;
  display: flex !important;
  -webkit-box-orient: vertical !important;
  -webkit-box-direction: normal !important;
  -webkit-flex-direction: column !important;
          flex-direction: column !important;
  -webkit-box-align: center !important;
  -webkit-align-items: center !important;
          align-items: center !important;
}

.lac__gform .gform_body .gfield .ginput_container input,
.c-gform-center .gform_body .gfield .ginput_container input,
.lac__gform .gform_body .gfield .ginput_container select,
.c-gform-center .gform_body .gfield .ginput_container select {
  font-size: 24px !important;
  line-height: 32px !important;
  background-color: #fff;
  border-radius: 2px;
  border: 1px solid #BDBDBD;
  color: rgba(0, 0, 0, 0.87);
  height: 56px;
  padding: 0 16px !important;
  width: 100% !important;
  max-width: 100% !important;
}

.lac__gform .gform_wrapper textarea,
.c-gform-center .gform_wrapper textarea {
  background-color: #fff;
  border: 1px solid #BDBDBD;
  border-radius: 2px;
  color: rgba(0, 0, 0, 0.87);
  padding: 8px 16px !important;
  width: 100% !important;
  max-width: 100% !important;
  font-size: 24px !important;
  line-height: 32px !important;
}

.lac__gform .gform_body .gfield .ginput_container input[type="checkbox"],
.c-gform-center .gform_body .gfield .ginput_container input[type="checkbox"] {
  height: 24px !important;
  width: 24px !important;
  margin-right: 8px;
}
.lac__gform .gfield_checkbox,
.c-gform-center .gfield_checkbox {
  width: 100% !important;
}

.lac__gform .gform_footer input[type="submit"],
.c-gform-center .gform_footer input[type="submit"] {
  box-shadow: 0 2px 2px 0 rgba(0,0,0,0.14), 0 3px 1px -2px rgba(0,0,0,0.12), 0 1px 5px 0 rgba(0,0,0,0.2) !important;
}

.lac__gform .gform_body .gfield .ginput_container input:disabled,
.c-gform-center .gform_body .gfield .ginput_container input:disabled,
.lac__gform .gform_body .gfield .ginput_container input.is-disabled,
.c-gform-center .gform_body .gfield .ginput_container input.is-disabled {
  background-color: rgba(0, 0, 0, 0.12);
  opacity: 0.70;
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

.lac__gform .ginput_container,
.c-gform-center .ginput_container {
  margin-bottom: 16px !important;
}

.lac__gform .gfield_label,
.c-gform-center .gfield_label {
  padding: 0;
}

.c-gform-center {
  width: 480px;
  max-width: 100%;
  margin: 0 auto;
}

.lac__gform .gfield,
.c-gform-center .gfield {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
          flex-direction: column;
  width: 100%;
  padding: 0 !important;
}

.lac__gform .gform_button,
.c-gform-center .gform_button {
  height: 56px !important;
  -webkit-transition: none !important;
  transition: none !important;
  border-radius: 2px !important;
  width: 100% !important;
}

.lac__gform .gform_footer,
.c-gform-center .gform_footer {
  margin-top: 0 !important;
  padding: 0 !important;
}
.c-gform-center .gform_wrapper {
  margin: 0 !important;
}

.lac__gform--white label {
  color: #fff !important;
}
.lac__gform--white .gfield_required {
  color: #dd3c26 !important;
}
.lac__gform--white .ginput_counter {
  color: hsla(0, 0%, 100%, 0.7) !important;
}
.lac__gform--white a:hover {
  color: #e35c2a;
}

.lac__gform .gform_fields .gdpr-checkbox,
.c-gform-center .gform_fields .gdpr-checkbox {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
          flex-direction: row;
}
.lac__gform .gform_fields .gdpr-checkbox > label,
.c-gform-center .gform_fields .gdpr-checkbox > label {
  margin-right: 16px;
}
.lac__gform .gform_fields .gdpr-checkbox .ginput_container,
.c-gform-center .gform_fields .gdpr-checkbox .ginput_container {
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
          flex-grow: 1;
}
/**
 * END Gform containers
 */

/**
* Breadcrumbs
*/
.lac__breadcrumbs {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
          align-items: center;
  font-size: 14px;
  line-height: 1.4;
  color: rgba(0, 0, 0, 0.60);

  margin-top: 8px;
}
.lac__breadcrumbs:first-child {
  margin: 0 0 32px 0;
}

.lac__breadcrumbs svg {
  fill: rgba(0, 0, 0, 0.38);
  height: 20px;
  margin: 0 4px;
}
.lac__breadcrumbs a {
  color: #0078b0;
  font-size: 14px;
}

.c-image-circle {
  border-radius: 50%;
  overflow: hidden;
  line-height: 0;
  position: relative;

  width: 200px;
}
.c-image-circle:after {
  content: '';
  display: block;
  padding-top: 100%;
}
.c-image-circle img {
  position: absolute;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}

.o-two-columns {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 80px 1fr;
  grid-template-columns: 1fr 1fr;
  grid-gap: 80px;
}
@media (max-width: 600px) {
  .o-two-columns {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}

.c-contain-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.c-required-symbol {
  position: relative;
  top: -0.2em;

  display: inline-block;
}
.c-required-symbol:after {
  content: "*";
  font-weight: bold;
  font-size: 0.9em;
  color: #dd3c26;
}





/* --------------------------- Related post block --------------------------- */
.c-related-post-blocks__wrapper {
  display: -ms-grid;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 320px));
  grid-gap: 32px;
}

.c-related-post-block__image {
  width: 100%;
  background-color: #ccc;
}
.c-related-post-block__title {
  font-size: 24px;
  font-weight: bold;
  margin-top: 16px;
}
  .c-related-post-block__title a {
    font-weight: inherit;
  }

.c-related-post-block__image {
  position: relative;
}
  .c-related-post-block__image:after {
    content: '';
    /* 16:9 */
    padding-top: 56%;
    display:  block;
  }
  .c-related-post-block__image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }

.c-related-post-block p {
  font-size: 16px;
  margin: 8px 0;
}
