@charset "UTF-8";
/*  Centering an element within its parent element
*
*   @param {Axis} $axis - x: centers horizontally, y: centers vertically, null: centers both axis
*
*   Example Usage:
*
*   // Center on both x and y axis
*   .container {
*     .link {
*       @include centered;
*     }
*   }
*
*   // Center on the X axis
*   .container {
*     .link {
*       @include centered(x);
*     }
*   }
*
*   // Center on the Y axis
*   .container {
*     .link {
*       @include centered(y);
*     }
*   }
*
*/
/*  Centering within an flex container
*
*   @param {Display} $display - inline: display set to inline-flex, else display set to flex
*
*
*   Example Usage:
*
*   .container {
*     @include vertical-align-flex;
*   }
*
*/
/* Chevron mixin for creating chevrons
*
*  @param {Size} $size - the size of the chevron
*  @param {Thickness} $thickness - thickness
*  @param {Color} $color - color
*  @param {Direction} $direction - direction chevron faces
*
*  Example Usage:
*
*     .chevron {
*       @include chevron(12px, 12px, #000, 'down');
*     }
*
*/
/*  Clearfix for clearing floats within a container
*
*   No Params
*
*   Example Usage:
*
*     .container {
*       @include clearfix;
*
*       .link {
*          float: left;
*       }
*     }
*
*/
/*  Set font-size and optionally leading
*
*   @param {Font Size} $fontSize - Unit-less font size
*   @param {Leading}   $leading  - (default: null) - Optional- Unit-less leading from Photoshop or Sketch
*
*   Example Usage:
*
*     p {
*       @include font-size(12,14);
*     }
*
*/
/**
* Hide Text
*/
/* Hover mixin for hover states
*
*  Note: This mixin has a dependency on what-intent plugin which detects the current input method
*        https://github.com/ten1seven/what-input
*
*  @param {Transition Duration} $transition-duration - the duration of transitions on hover states
*
*  Example Usage:
*
*     a {
*       @include hover() {
*         background-color: red
*       }
*     }
*
*/
/**
 * Returns a percentage width based on the number and total number of columns
 *
 * @param 	int 	$num 	Number of columns (e.g. 4)
 * @param 	int 	$total 	Total number of columns (e.g. 24)
 * @return 	float 			 Total width (%)
 */
/*  Unitless line-height
*
*   @param {Font Size} $fontSize - Unit-less font size
*   @param {Leading}   $leading  - Unit-less leading from Photoshop or Sketch
*
*   Example Usage:
*
*     @include line-height(16, 20);
*
*/
/*  Remove List Styles
*
*   No Params
*
*   Example Usage:
*
*     ul {
*       @include no-bullet;
*     }
*
*/
/*
  Maintain ratio mixin.
  @param {List} [$ratio] Ratio the element needs to maintain. A 16:9 ratio would look like this:
    .element { @include maintain-ratio(16 9); }
*/
/*  Media Query Mixin
*
*   @param {Media Query} $mq - Media query in single quotes: eg. 'screen and (min-width: 480px)'
*
*   Example Usage:
*
*     .selector {
*       property: value;
*
*       @include mq($bp768) {
*         property: value;
*       }
*     }
*
*/
/*  Overflow Scroll
*   Allows you to set overflow scrolling on the x and y axis
*
*   @param {axix} $axis - the axis on which to set scroll
*/
/*  Placeholder Mixin
*
*   No Params
*
*   Example Usage:
*
*     input[placeholder] {
*       @include placeholder {
*         color: red;
*       }
*     }
*
*/
/*  PX to REM Conversion
*
*   @param {Pixel} $px - Unitless pixel value to be converted into rems.
*
*   Example Usage:
*
*     margin-bottom: rem(20);
*
*/
/*  Triangle helper mixin
*
*   @param {Direction} $direction - Triangle direction, either `top`, `right`, `bottom` or `left`
*   @param {Color} $color [currentcolor] - Triangle color
*   @param {Length} $size [1em] - Triangle size
*
*/
/*  Visually hide text within an element
*   Used mostly for accessibility reasonse
*
*   No Params
*
*   Example Usage:
*
*     button {
*       span {
*         @include visuallyhidden;
*       }
*     }
*
*/
/*  Chamfer used on corners
*
*
*/
html[data-whatinput="keyboard"] *:focus {
  outline: 0.125rem solid #862633;
  outline-offset: 0.125rem; }

html[data-whatinput="mouse"] *:focus {
  outline: none;
  outline-offset: 0.125rem; }

.visually-hidden {
  position: absolute;
  white-space: nowrap;
  width: 1px;
  height: 1px;
  overflow: hidden;
  border: 0;
  padding: 0;
  clip: rect(0 0 0 0);
  -webkit-clip-path: inset(50%);
          clip-path: inset(50%);
  margin: -1px; }

*,
*::before,
*::after {
  box-sizing: border-box; }

html {
  -webkit-tap-highlight-color: transparent; }
  html.mobile-menu-open {
    overflow: hidden; }

body {
  color: #000;
  -webkit-font-smoothing: antialiased;
  -moz-font-smoothing: antialiased;
  -o-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-text-size-adjust: 100%;
  line-height: 1.5; }
  body.search-open, body.main-menu-open {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0; }
    body.search-open .cc--notification-banner, body.main-menu-open .cc--notification-banner {
      display: none; }

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  line-height: 1.1; }

a[href^='tel'] {
  color: inherit;
  text-decoration: none; }

img {
  display: block;
  width: 100%;
  height: auto; }

p {
  margin-top: 0; }
  p:last-child {
    margin-bottom: 0; }

ul,
ol {
  margin-top: 0; }
  ul ul,
  ul ol,
  ol ul,
  ol ol {
    margin-bottom: 0; }

.skip-link {
  padding-top: 0.75rem;
  padding-right: 0.75rem;
  padding-bottom: 0.75rem;
  padding-left: 0.75rem;
  position: absolute;
  top: 1.875rem;
  left: 1.875rem;
  border: 0.0625rem solid #000;
  background-color: #FFF;
  color: #000;
  white-space: nowrap;
  z-index: 1000; }
  .skip-link:not(:focus) {
    position: absolute;
    white-space: nowrap;
    width: 1px;
    height: 1px;
    overflow: hidden;
    border: 0;
    padding: 0;
    clip: rect(0 0 0 0);
    -webkit-clip-path: inset(50%);
            clip-path: inset(50%);
    margin: -1px; }

.fi--form-item input[type='date'], .f--input-text input[type='text'] {
  font-family: "IBM Plex Sans", sans-serif;
  font-weight: 700;
  font-style: normal;
  padding-right: 1.5625rem;
  padding-left: 1.5625rem;
  font-size: 0.875rem;
  line-height: 1.8572;
  position: relative;
  width: 100%;
  height: 4.0625rem;
  border: 0;
  background-color: #FFF;
  color: #000;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none; }
  @media screen and (min-width: 1024px) {
    .fi--form-item input[type='date'], .f--input-text input[type='text'] {
      height: 4.0625rem; } }
  .fi--form-item input:focus[type='date'], .f--input-text input:focus[type='text'] {
    outline: 0.125rem solid #862633; }
  .fi--form-item input[type='date']::-moz-placeholder, .f--input-text input[type='text']::-moz-placeholder {
    opacity: 1;
    color: #25282A; }
  .fi--form-item input[type='date']::placeholder, .f--input-text input[type='text']::placeholder {
    opacity: 1;
    color: #25282A; }

.fi--form-item input[type='date']::-moz-placeholder {
  opacity: 1;
  opacity: 1; }

.fi--form-item input[type='date']::placeholder {
  opacity: 1;
  opacity: 1; }


.radio-wrapper {
  padding-right: 2.1875rem;
  padding-left: 2.1875rem;
  position: relative;
  text-align: left; }
  
  .radio-wrapper:not(:last-child) {
    margin-bottom: 1.3125rem; }
  
  .radio-wrapper input[type='radio'] {
    position: absolute;
    top: 0;
    left: -624.9375rem; }
    html[data-whatinput='keyboard']
    .radio-wrapper input[type='radio']:focus + label::before {
      background-color: #FFF; }
      html[data-whatinput="keyboard"] html[data-whatinput='keyboard']
      .radio-wrapper input[type='radio']:focus + label::before {
        outline: 0.125rem solid #862633;
        outline-offset: 0.125rem; }
      html[data-whatinput="mouse"] html[data-whatinput='keyboard']
      .radio-wrapper input[type='radio']:focus + label::before {
        outline: none;
        outline-offset: 0.125rem; }
    
    .radio-wrapper input[type='radio']:checked + label {
      font-family: "IBM Plex Sans", sans-serif;
      font-weight: 700;
      font-style: normal;
      color: #862633; }
      
      .radio-wrapper input[type='radio']:checked + label::before {
        border: 0.125rem solid #862633;
        background-color: #FFF; }
      
      .radio-wrapper input[type='radio']:checked + label::after {
        transform: scale(1);
        border: 0.125rem solid #FFF;
        background-color: #862633;
        opacity: 1; }
    
    .radio-wrapper input[type='radio']:disabled + label {
      color: #97999B; }
      
      .radio-wrapper input[type='radio']:disabled + label::before {
        background-color: #97999B; }
      html[data-whatintent="mouse"]
      .radio-wrapper input[type='radio']:disabled + label {
        transition: all 0.1s; }
        html[data-whatintent="mouse"]
        .radio-wrapper input[type='radio']:disabled + label:hover::before {
          border: 0.125rem solid #97999B; }
    
    .radio-wrapper input[type='radio'] + label {
      margin: 0; }
  
  .radio-wrapper label {
    font-family: "IBM Plex Sans", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 1rem;
    line-height: 1.75;
    margin-bottom: 0;
    color: #25282A;
    cursor: pointer; }
    
    .radio-wrapper label::before,
    .radio-wrapper label::after {
      position: absolute;
      top: 0.1875rem;
      content: ''; }
    
    .radio-wrapper label::before {
      left: 0.0625rem;
      width: 1.375rem;
      height: 1.375rem;
      border: 0.0625rem solid #D9D9D6;
      border-radius: 50%;
      background-color: #FFF; }
    
    .radio-wrapper label::after {
      top: 0.375rem;
      left: 0.25rem;
      width: 1rem;
      height: 1rem;
      transform: scale(0);
      transition: transform .1s ease;
      border-radius: 50%;
      opacity: 0; }
    html[data-whatintent="mouse"]
    .radio-wrapper label {
      transition: all 0.1s; }
      html[data-whatintent="mouse"]
      .radio-wrapper label:hover::before {
        border: 0.125rem solid #862633; }

.select-wrap {
  position: relative;
  border: 0.0625rem solid #D9D9D6;
  background-color: #FFF; }
  .select-wrap select {
    font-family: "IBM Plex Sans", sans-serif;
    font-weight: 700;
    font-style: normal;
    padding-right: 2.8125rem;
    padding-left: 1.5625rem;
    font-size: 0.875rem;
    line-height: 1.8572;
    width: 100%;
    height: 3rem;
    border: 0;
    background: transparent;
    background-image: none;
    color: #25282A;
    appearance: none;
    box-shadow: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    text-overflow: ellipsis; }
    @media screen and (min-width: 1024px) {
      .select-wrap select {
        height: 3.9375rem; } }
    .select-wrap select::-ms-expand {
      display: none; }
    .select-wrap select:focus {
      outline: 0.125rem solid #862633; }
  .select-wrap svg {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 0.9375rem;
    width: 1.5625rem;
    height: 1.5625rem;
    pointer-events: none; }

.f--input-submit button {
  padding-top: 0;
  padding-right: 0;
  padding-bottom: 0;
  padding-left: 0;
  border: 0;
  background: transparent;
  cursor: pointer; }

.f--input-submit.icon-only span {
  position: absolute;
  white-space: nowrap;
  width: 1px;
  height: 1px;
  overflow: hidden;
  border: 0;
  padding: 0;
  clip: rect(0 0 0 0);
  -webkit-clip-path: inset(50%);
          clip-path: inset(50%);
  margin: -1px; }

.f--input-text input[type='text'] {
  text-overflow: ellipsis; }
  .f--input-text input[type='text']::-moz-placeholder {
    opacity: 1;
    color: #25282A; }
  .f--input-text input[type='text']::placeholder {
    opacity: 1;
    color: #25282A; }

.lc--two-column-reverse .l--two-column-reverse {
  max-width: 1800px;
  margin: 0 auto; }
  .lc--two-column-reverse .l--two-column-reverse .l--two-column-reverse-inner {
    padding-top: 2.1875rem;
    padding-right: 8.33333%;
    padding-bottom: 2.1875rem;
    padding-left: 8.33333%;
    display: flex;
    flex-direction: column; }
    @media screen and (min-width: 768px) {
      .lc--two-column-reverse .l--two-column-reverse .l--two-column-reverse-inner {
        padding-top: 3.125rem;
        padding-right: 8.33333%;
        padding-bottom: 4.6875rem;
        padding-left: 8.33333%; } }
    @media screen and (min-width: 1024px) {
      .lc--two-column-reverse .l--two-column-reverse .l--two-column-reverse-inner {
        padding-right: 10.41667%;
        padding-left: 12.5%;
        display: flex;
        flex-direction: row;
        justify-content: space-between; } }
    @media screen and (min-width: 1024px) {
      .lc--two-column-reverse .l--two-column-reverse .l--two-column-reverse-inner .lr--sidebar {
        flex: 0 0 24.32432%; } }
    @media screen and (min-width: 1024px) {
      .lc--two-column-reverse .l--two-column-reverse .l--two-column-reverse-inner .lr--main {
        flex: 0 0 70.27027%;
        width: 70.27027%; } }
    .lc--two-column-reverse .l--two-column-reverse .l--two-column-reverse-inner .lr--main .c--component,
    .lc--two-column-reverse .l--two-column-reverse .l--two-column-reverse-inner .lr--main .c--component .inner-wrapper {
      padding: 0; }

.lc--two-column .l--two-column {
  max-width: 1800px;
  margin: 0 auto; }
  .lc--two-column .l--two-column .l--two-column-inner {
    padding-top: 1.875rem;
    padding-bottom: 2.1875rem; }
    @media screen and (min-width: 768px) {
      .lc--two-column .l--two-column .l--two-column-inner {
        padding-top: 2.125rem;
        padding-bottom: 4.6875rem;
        display: flex;
        justify-content: space-between; } }
    .lc--two-column .l--two-column .l--two-column-inner .lr--sidebar {
      padding-top: 1.375rem;
      padding-right: 8.33333%;
      padding-bottom: 0.625rem;
      padding-left: 8.33333%;
      width: 100%;
      background: #97999B; }
      @media screen and (min-width: 1024px) {
        .lc--two-column .l--two-column .l--two-column-inner .lr--sidebar {
          padding-top: 0;
          padding-right: 2.08333%;
          padding-bottom: 0;
          padding-left: 2.08333%;
          flex-basis: 27.08333%; } }
    .lc--two-column .l--two-column .l--two-column-inner .lr--main {
      padding-top: 1.25rem;
      padding-right: 8.33333%;
      padding-left: 8.33333%; }
      @media screen and (min-width: 1024px) {
        .lc--two-column .l--two-column .l--two-column-inner .lr--main {
          padding-top: 0;
          padding-right: 6.25%;
          padding-bottom: 0;
          padding-left: 6.25%;
          flex-basis: 72.91667%; } }

body {
  margin: 0;
  padding: 0; }

.content-main {
  margin-top: 3.125rem; }
  @media screen and (min-width: 1024px) {
    .content-main {
      margin-top: 9.375rem; }
      .transparent-header .content-main {
        margin-top: 0; } }
  .not-sticky .content-main {
    margin-top: 0; }
    @media screen and (min-width: 1024px) {
      .not-sticky .content-main {
        margin-top: 0; } }
  .transparent-header.not-sticky .content-main {
    margin-top: 0; }
    @media screen and (min-width: 1024px) {
      .transparent-header.not-sticky .content-main {
        margin-top: -6.25rem; } }

.icon-search {
  width: 3.125rem;
  height: 3.125rem; }

.cc--accordions {
  max-width: 1800px;
  margin: 0 auto; }
  .cc--accordions .c--accordions {
    padding-top: 2.1875rem;
    padding-right: 8.33333%;
    padding-bottom: 2.1875rem;
    padding-left: 8.33333%; }
    @media screen and (min-width: 768px) {
      .cc--accordions .c--accordions {
        padding-top: 3.125rem;
        padding-right: 8.33333%;
        padding-bottom: 3.125rem;
        padding-left: 8.33333%; } }
    @media screen and (min-width: 1024px) {
      .cc--accordions .c--accordions {
        padding-right: 16.66667%;
        padding-left: 16.66667%; } }
    .cc--accordions .c--accordions .header-container .f--description {
      margin-top: 0.625rem; }
      @media screen and (min-width: 768px) {
        .cc--accordions .c--accordions .header-container .f--description {
          margin-top: 0.9375rem; } }
    .cc--accordions .c--accordions > ul {
      list-style: none;
      padding: 0;
      margin: 0;
      margin-top: 1.0625rem; }
      .cc--accordions .c--accordions > ul > li {
        margin-bottom: 0.9375rem; }
        @media screen and (min-width: 768px) {
          .cc--accordions .c--accordions > ul > li {
            margin-bottom: 1.5625rem; } }
        .cc--accordions .c--accordions > ul > li button {
          padding-right: 20%;
          padding-bottom: 0.625rem;
          padding-left: 0;
          display: block;
          position: relative;
          width: 100%;
          border: 0;
          border-bottom: 0.0625rem solid #D9D9D6;
          border-radius: 0;
          background: none;
          color: #25282A;
          text-align: left;
          cursor: pointer; }
          @media screen and (min-width: 768px) {
            .cc--accordions .c--accordions > ul > li button {
              padding-top: 0.5rem;
              padding-right: 10%;
              padding-bottom: 0.6875rem;
              padding-left: 0; } }
          @media screen and (min-width: 1024px) {
            .cc--accordions .c--accordions > ul > li button {
              padding-right: 6.25%; } }
          .cc--accordions .c--accordions > ul > li button .item-title {
            font-family: "IBM Plex Sans", sans-serif;
            font-weight: 500;
            font-style: normal;
            font-size: 1.25rem;
            line-height: 1.4; }
          .cc--accordions .c--accordions > ul > li button .offset {
            content: '';
            display: block;
            position: absolute;
            top: -75px; }
          .cc--accordions .c--accordions > ul > li button::after {
            display: block;
            position: absolute;
            top: 0;
            right: 0;
            width: 2.1875rem;
            height: 2.1875rem;
            background-color: #25282A;
            background-image: url("../images/icons/icon-arrow-down.svg");
            background-repeat: no-repeat;
            background-position: center;
            background-size: 0.625rem 0.38438rem;
            content: ''; }
            @media screen and (min-width: 768px) {
              .cc--accordions .c--accordions > ul > li button::after {
                width: 3.125rem;
                height: 100%;
                background-position: center 1.1875rem;
                background-size: 0.9375rem 0.54937rem; } }
          .cc--accordions .c--accordions > ul > li button.open {
            border-bottom: 0.0625rem solid #862633; }
            .cc--accordions .c--accordions > ul > li button.open::after {
              background-color: #862633;
              background-image: url("../images/icons/icon-arrow-up.svg"); }
        .cc--accordions .c--accordions > ul > li .f--wysiwyg p:last-child {
          margin-bottom: 0; }
  .cc--accordions .accordion-panel {
    display: none; }
    .cc--accordions .accordion-panel .cc--rich-text {
      margin-top: 0;
      margin-right: 0;
      margin-left: 0;
      border-bottom: 0.0625rem solid #862633; }
      .cc--accordions .accordion-panel .cc--rich-text .c--rich-text {
        padding-top: 0.9375rem;
        padding-right: 0;
        padding-bottom: 0.9375rem;
        padding-left: 0; }
        .cc--accordions .accordion-panel .cc--rich-text .c--rich-text .inner-wrapper {
          padding-top: 0;
          padding-right: 0;
          padding-bottom: 0;
          padding-left: 0; }
        .cc--accordions .accordion-panel .cc--rich-text .c--rich-text iframe,
        .cc--accordions .accordion-panel .cc--rich-text .c--rich-text .video-embed,
        .cc--accordions .accordion-panel .cc--rich-text .c--rich-text img,
        .cc--accordions .accordion-panel .cc--rich-text .c--rich-text .align-center {
          margin-right: auto;
          margin-left: auto;
          max-width: 100%; }
        .cc--accordions .accordion-panel .cc--rich-text .c--rich-text .align-left {
          margin-left: 0; }
        .cc--accordions .accordion-panel .cc--rich-text .c--rich-text .align-right {
          margin-right: 0; }
        .cc--accordions .accordion-panel .cc--rich-text .c--rich-text ul {
          list-style-type: disc; }
          .cc--accordions .accordion-panel .cc--rich-text .c--rich-text ul ul {
            list-style-type: circle; }
            .cc--accordions .accordion-panel .cc--rich-text .c--rich-text ul ul ul {
              list-style-type: square; }
          .cc--accordions .accordion-panel .cc--rich-text .c--rich-text ul ol ul {
            list-style-type: square; }
        .cc--accordions .accordion-panel .cc--rich-text .c--rich-text ol ul {
          list-style-type: circle; }
          .cc--accordions .accordion-panel .cc--rich-text .c--rich-text ol ul ul {
            list-style-type: square; }

.cc--rich-text + .cc--accordions .c--accordions {
  padding-top: 0; }

.cc--article-hero {
  position: relative; }
  .cc--article-hero.no-image .image-container {
    display: none; }
  .cc--article-hero.no-image .text-container {
    padding-top: 5.3125rem; }
    @media screen and (min-width: 768px) {
      .cc--article-hero.no-image .text-container {
        padding-top: 4.6875rem;
        padding-right: 8.33333%;
        padding-left: 8.33333%; } }
    @media screen and (min-width: 1024px) {
      .cc--article-hero.no-image .text-container {
        padding-right: 12.5%;
        padding-left: 12.5%; } }
  @media screen and (min-width: 768px) {
    .cc--article-hero.no-image .f--page-title {
      margin-top: 4.6875rem; } }
  .cc--article-hero.no-image .f--eyebrow + .f--page-title {
    margin-top: 0.9375rem; }
    @media screen and (min-width: 768px) {
      .cc--article-hero.no-image .f--eyebrow + .f--page-title {
        margin-top: 1.5625rem; } }
  .cc--article-hero .text-outer-wrapper {
    max-width: 1800px;
    margin: 0 auto; }
  .cc--article-hero .text-container {
    padding-top: 1.5625rem;
    padding-right: 8.33333%;
    padding-bottom: 1.5625rem;
    padding-left: 8.33333%;
    position: relative; }
    @media screen and (min-width: 768px) {
      .cc--article-hero .text-container {
        padding-top: 0;
        padding-right: 8.33333%;
        padding-bottom: 3.125rem;
        padding-left: 8.33333%; } }
    @media screen and (min-width: 1024px) {
      .cc--article-hero .text-container {
        padding-right: 12.5%;
        padding-left: 12.5%; } }
  .cc--article-hero .image-container {
    position: relative; }
    @media screen and (min-width: 1024px) {
      .cc--article-hero .image-container {
        aspect-ratio: 16 / 9; } }
    @media screen and (min-width: 1800px) {
      .cc--article-hero .image-container {
        aspect-ratio: auto;
        height: 63.3125rem; } }
    .cc--article-hero .image-container .f--image {
      height: 100%;
      width: 100%; }
      @media screen and (min-width: 1024px) {
        .cc--article-hero .image-container .f--image {
          position: absolute;
          top: 0;
          left: 0; } }
      @media screen and (min-width: 1024px) {
        .cc--article-hero .image-container .f--image img {
          height: 100%;
          -o-object-fit: cover;
             object-fit: cover; } }
    .cc--article-hero .image-container figure {
      padding: 0;
      margin: 0; }
    .cc--article-hero .image-container .image-caption {
      padding-top: 0.625rem;
      padding-right: 8.33333%;
      padding-left: 8.33333%;
      background-color: #FFF; }
      @media screen and (min-width: 768px) {
        .cc--article-hero .image-container .image-caption {
          padding-top: 0.9375rem;
          padding-right: 2.08333%;
          padding-bottom: 0.9375rem;
          padding-left: 2.08333%;
          position: absolute;
          bottom: 0;
          right: 0;
          width: 50%; } }
      .cc--article-hero .image-container .image-caption p {
        font-family: "IBM Plex Sans", sans-serif;
        font-weight: 400;
        font-style: normal;
        font-size: 0.875rem;
        line-height: 1.4286; }
  .cc--article-hero .f--eyebrow {
    padding-top: 0.6875rem;
    padding-right: 0.625rem;
    padding-bottom: 0.6875rem;
    padding-left: 0.625rem;
    margin-bottom: 0.9375rem;
    background-color: #507F70;
    display: inline-flex;
    margin-bottom: 0; }
    @media screen and (min-width: 768px) {
      .cc--article-hero .f--eyebrow {
        margin-bottom: 1.5625rem; } }
    .cc--article-hero .f--eyebrow span,
    .cc--article-hero .f--eyebrow a {
      font-family: "Oswald", sans-serif;
      font-optical-sizing: auto;
      font-weight: 500;
      font-style: normal;
      font-size: 0.875rem;
      line-height: 1.2858;
      color: #FFF;
      text-transform: uppercase; }
    .cc--article-hero .f--eyebrow a {
      text-decoration: none; }
      html[data-whatintent="mouse"] .cc--article-hero .f--eyebrow a {
        transition: all 0.1s; }
        html[data-whatintent="mouse"] .cc--article-hero .f--eyebrow a:hover {
          text-decoration: underline; }
    @media screen and (min-width: 768px) {
      .cc--article-hero .f--eyebrow {
        margin-bottom: 0; } }
  @media screen and (min-width: 768px) {
    .cc--article-hero .f--page-title {
      margin-top: 3.125rem; } }
  .cc--article-hero .f--page-title h1 {
    font-size: 3.125rem;
    line-height: 1.1201; }
    @media screen and (min-width: 768px) {
      .cc--article-hero .f--page-title h1 {
        font-size: 5rem;
        line-height: 1.125; } }
  .cc--article-hero .f--eyebrow + .f--page-title {
    margin-top: 0.9375rem; }
    @media screen and (min-width: 768px) {
      .cc--article-hero .f--eyebrow + .f--page-title {
        margin-top: 1.5625rem; } }

.cc--article-info {
  background-color: #FFF; }
  @media screen and (min-width: 768px) {
    .cc--article-info .c--article-info {
      display: flex;
      -moz-column-gap: 5%;
           column-gap: 5%; } }
  @media screen and (min-width: 1024px) {
    .cc--article-info .c--article-info {
      display: block; } }
  .cc--article-info span {
    font-family: "Oswald", sans-serif;
    font-optical-sizing: auto;
    font-weight: 500;
    font-style: normal;
    font-size: 0.875rem;
    line-height: 1.2858;
    display: block;
    color: #25282A;
    text-transform: uppercase; }
  .cc--article-info p {
    font-family: "IBM Plex Sans", sans-serif;
    font-weight: 400;
    font-style: normal;
    margin-top: 0.3125rem;
    margin-bottom: 0.3125rem;
    font-size: 0.9375rem;
    line-height: 1.8667;
    color: #000; }
    @media screen and (min-width: 768px) {
      .cc--article-info p {
        font-size: 1rem;
        line-height: 2;
        margin-top: 0;
        margin-bottom: 0.625rem; } }
    @media screen and (min-width: 1024px) {
      .cc--article-info p {
        margin-top: 0.3125rem;
        margin-bottom: 0.3125rem; } }
    .cc--article-info p:last-child {
      margin-bottom: 0; }
  .cc--article-info .authors {
    margin-top: 1.5625rem; }
    @media screen and (min-width: 768px) {
      .cc--article-info .authors {
        margin-top: 0; } }
    @media screen and (min-width: 1024px) {
      .cc--article-info .authors {
        margin-top: 2.1875rem; } }
    @media screen and (min-width: 768px) {
      .cc--article-info .authors.two-col {
        width: 33%; } }
    @media screen and (min-width: 1024px) {
      .cc--article-info .authors.two-col {
        width: 100%; } }
    @media screen and (min-width: 768px) {
      .cc--article-info .authors.two-col .author-list {
        -moz-column-count: 2;
             column-count: 2; } }
    @media screen and (min-width: 1024px) {
      .cc--article-info .authors.two-col .author-list {
        -moz-column-count: auto;
             column-count: auto; } }

.cc--article-main {
  max-width: 1800px;
  margin: 0 auto; }
  .cc--article-main .c--article-main {
    padding-top: 2.1875rem;
    padding-right: 8.33333%;
    padding-bottom: 2.1875rem;
    padding-left: 8.33333%;
    display: flex;
    flex-direction: column; }
    @media screen and (min-width: 768px) {
      .cc--article-main .c--article-main {
        padding-top: 2.1875rem;
        padding-right: 8.33333%;
        padding-bottom: 2.1875rem;
        padding-left: 8.33333%; } }
    @media screen and (min-width: 1024px) {
      .cc--article-main .c--article-main {
        padding-right: 12.5%;
        padding-left: 12.5%;
        flex-direction: row;
        justify-content: space-between; } }
  @media screen and (min-width: 1024px) {
    .cc--article-main .content-sidebar {
      padding-bottom: 4.6875rem;
      width: 16.66667%; } }
  .cc--article-main .content-main {
    margin-top: 2.1875rem; }
    @media screen and (min-width: 1024px) {
      .cc--article-main .content-main {
        margin-top: 0;
        padding-top: 0;
        padding-right: 0;
        padding-left: 0;
        width: 77.77778%; } }
  .cc--article-main .cc--rich-text .c--rich-text .inner-wrapper {
    padding-top: 0;
    padding-right: 0;
    padding-bottom: 0;
    padding-left: 0; }

.cc--back-to-top {
  position: fixed;
  right: 0;
  bottom: 3.125rem;
  z-index: 999;
  transform: translateX(100%);
  transition: transform 0.2s ease; }
  .cc--back-to-top.show {
    transform: translateX(0); }
  .cc--back-to-top .c--back-to-top button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3.125rem;
    height: 3.125rem;
    border: 0;
    background-color: #862633;
    cursor: pointer;
    z-index: 1;
    background-image: url("../images/icons/icon-arrow-up.svg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 0.9375rem 0.54937rem; }
    html[data-whatintent="mouse"] .cc--back-to-top .c--back-to-top button {
      transition: all 0.1s; }
      html[data-whatintent="mouse"] .cc--back-to-top .c--back-to-top button:hover {
        background-size: 1.17188rem 0.68672rem; }

.cc--branding-header a {
  display: block;
  font-size: 0;
  line-height: 1;
  text-decoration: none; }
  .cc--branding-header a:focus {
    outline-offset: -0.1875rem !important; }
    html[data-whatinput="keyboard"] .cc--branding-header a:focus {
      outline: 0.125rem solid #862633;
      outline-offset: 0.125rem; }
    html[data-whatinput="mouse"] .cc--branding-header a:focus {
      outline: none;
      outline-offset: 0.125rem; }
  .cc--branding-header a svg {
    width: 50%;
    height: auto;
    transition: width .2s ease; }
    @media screen and (min-width: 768px) {
      .cc--branding-header a svg {
        width: 12.5rem; } }
    @media screen and (min-width: 1024px) {
      .cc--branding-header a svg {
        width: 15.625rem; } }

@media screen and (min-width: 768px) {
  .cc--chapter-content-main-horizontal {
    padding-right: 0;
    padding-left: 0; } }

@media screen and (min-width: 1024px) {
  .cc--chapter-content-main-horizontal .c--chapter-content-main-horizontal .cc--chapter-jump-links-horizontal {
    position: sticky;
    top: 0;
    z-index: 4;
    transition: top 0.45s ease-in-out; }
    .scroll-up .cc--chapter-content-main-horizontal .c--chapter-content-main-horizontal .cc--chapter-jump-links-horizontal {
      top: 11.25rem; } }

.not-sticky .cc--chapter-content-main-horizontal .c--chapter-content-main-horizontal .cc--chapter-jump-links-horizontal {
  position: relative;
  transition: none;
  top: auto; }

.cc--chapter-content-main-horizontal .c--chapter-content-main-horizontal .content-main {
  margin-top: 0; }
  @media screen and (min-width: 768px) {
    .cc--chapter-content-main-horizontal .c--chapter-content-main-horizontal .content-main {
      margin-top: 0; } }

.cc--chapter-jump-links-horizontal {
  background-color: #D6A461; }
  .cc--chapter-jump-links-horizontal .c--chapter-jump-links-horizontal {
    max-width: 1800px;
    margin: 0 auto; }
  .cc--chapter-jump-links-horizontal .jump-links-toggle {
    padding-right: 8.33333%;
    padding-left: 8.33333%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 3.125rem; }
    @media screen and (min-width: 768px) {
      .cc--chapter-jump-links-horizontal .jump-links-toggle {
        padding-right: 8.33333%;
        padding-left: 8.33333%; } }
    @media screen and (min-width: 1024px) {
      .cc--chapter-jump-links-horizontal .jump-links-toggle {
        display: none; } }
    .cc--chapter-jump-links-horizontal .jump-links-toggle h2 {
      font-family: "Oswald", sans-serif;
      font-optical-sizing: auto;
      font-weight: 600;
      font-style: normal;
      font-size: 1.25rem;
      line-height: 1.5;
      color: #25282A;
      text-transform: uppercase; }
      @media screen and (min-width: 1024px) {
        .cc--chapter-jump-links-horizontal .jump-links-toggle h2 {
          display: none; } }
    .cc--chapter-jump-links-horizontal .jump-links-toggle svg {
      width: 2.1875rem;
      height: 2.1875rem;
      transition: transform ease-in-out 0.3s;
      fill: #25282A; }
    .cc--chapter-jump-links-horizontal .jump-links-toggle.is-active {
      border-bottom: 0; }
      .cc--chapter-jump-links-horizontal .jump-links-toggle.is-active h2 {
        color: #862633; }
      .cc--chapter-jump-links-horizontal .jump-links-toggle.is-active svg {
        transform: rotate(180deg);
        fill: #862633; }
  .cc--chapter-jump-links-horizontal .chapter-menu-nav {
    padding-right: 8.33333%;
    padding-left: 8.33333%;
    position: relative; }
    @media screen and (min-width: 1024px) {
      .cc--chapter-jump-links-horizontal .chapter-menu-nav {
        padding-right: 2.08333%;
        padding-left: 2.08333%; } }
  .cc--chapter-jump-links-horizontal .chapter-menu {
    list-style: none;
    padding: 0;
    margin: 0;
    padding-top: 0.3125rem;
    padding-bottom: 1.5625rem;
    display: none; }
    @media screen and (min-width: 1024px) {
      .cc--chapter-jump-links-horizontal .chapter-menu {
        padding-top: 1.25rem;
        padding-bottom: 0;
        display: flex;
        align-items: flex-end;
        justify-content: space-between; } }
    .cc--chapter-jump-links-horizontal .chapter-menu.is-active {
      display: block; }
    .cc--chapter-jump-links-horizontal .chapter-menu li {
      padding-top: 0.3125rem;
      padding-bottom: 0.3125rem; }
      @media screen and (min-width: 1024px) {
        .cc--chapter-jump-links-horizontal .chapter-menu li {
          padding-top: 0;
          padding-bottom: 0; } }
    .cc--chapter-jump-links-horizontal .chapter-menu a {
      font-family: "Oswald", sans-serif;
      font-optical-sizing: auto;
      font-weight: 600;
      font-style: normal;
      font-size: 1.25rem;
      line-height: 1.5;
      color: #25282A;
      text-transform: uppercase;
      display: block;
      position: relative;
      text-align: left;
      text-decoration: none; }
      @media screen and (min-width: 1024px) {
        .cc--chapter-jump-links-horizontal .chapter-menu a {
          font-size: 1.375rem;
          line-height: 1.5455;
          padding-right: 1.25rem;
          padding-bottom: 1.25rem;
          padding-left: 1.25rem;
          text-align: center; } }
      html[data-whatintent="mouse"] .cc--chapter-jump-links-horizontal .chapter-menu a {
        transition: all 0.1s; }
        html[data-whatintent="mouse"] .cc--chapter-jump-links-horizontal .chapter-menu a:hover {
          color: #862633;
          text-decoration: none; }
          @media screen and (min-width: 1024px) {
            html[data-whatintent="mouse"] .cc--chapter-jump-links-horizontal .chapter-menu a:hover::before {
              content: '';
              width: 100%;
              height: 0.5625rem;
              background-color: #862633;
              display: inline-block;
              position: absolute;
              left: 0;
              bottom: 0; } }
      @media screen and (min-width: 1024px) {
        .cc--chapter-jump-links-horizontal .chapter-menu a.is-active {
          color: #862633; }
          .cc--chapter-jump-links-horizontal .chapter-menu a.is-active::before {
            content: '';
            width: 100%;
            height: 0.5625rem;
            background-color: #862633;
            display: inline-block;
            position: absolute;
            left: 0;
            bottom: 0; } }

.cc--chapter {
  margin-top: 3.125rem; }
  @media screen and (min-width: 768px) {
    .cc--chapter {
      margin-top: 4.6875rem; } }
  .cc--chapter:first-child {
    margin-top: 2.1875rem; }
    @media screen and (min-width: 768px) {
      .cc--chapter:first-child {
        margin-top: 4.6875rem; } }
  @media screen and (min-width: 1024px) {
    .cc--chapter .c--chapter {
      max-width: 1800px;
      margin: 0 auto; } }
  .cc--chapter .c--chapter > .f--section-title {
    margin-right: 8%;
    margin-bottom: 1.5625rem;
    margin-left: 8%;
    padding-bottom: 0.9375rem;
    position: relative;
    border-bottom: 0.0625rem solid #D6A461; }
    @media screen and (min-width: 768px) {
      .cc--chapter .c--chapter > .f--section-title {
        margin-right: 8.33333%;
        margin-left: 8.33333%;
        padding-bottom: 0.9375rem; } }
    @media screen and (min-width: 1024px) {
      .cc--chapter .c--chapter > .f--section-title {
        margin-right: 4.16667%;
        margin-bottom: 1.5625rem;
        margin-left: 4.16667%;
        padding-right: 12.5%;
        padding-left: 12.5%; } }
    .cc--chapter .c--chapter > .f--section-title h2 {
      font-family: "Oswald", sans-serif;
      font-optical-sizing: auto;
      font-weight: 400;
      font-style: normal;
      font-size: 3.125rem;
      line-height: 1.04;
      letter-spacing: -0.0625rem;
      color: #25282A; }
      @media screen and (min-width: 768px) {
        .cc--chapter .c--chapter > .f--section-title h2 {
          font-size: 4.375rem;
          line-height: 1.0858;
          letter-spacing: normal; } }
  .cc--chapter .cc--component-container {
    margin-top: 0;
    margin-bottom: 0;
    padding-top: 0;
    padding-bottom: 0; }
    .cc--chapter .cc--component-container:not(:last-child) {
      margin-top: 0;
      margin-bottom: 2.1875rem; }
      @media screen and (min-width: 768px) {
        .cc--chapter .cc--component-container:not(:last-child) {
          margin-top: 0;
          margin-bottom: 3.125rem; } }
    .cc--chapter .cc--component-container .c--component:not(.c--link-list):not(.c--event-cards):not(.c--interactive-content-pane) {
      margin-bottom: 0;
      padding-top: 0;
      padding-bottom: 0; }
      .cc--chapter .cc--component-container .c--component:not(.c--link-list):not(.c--event-cards):not(.c--interactive-content-pane) .inner-wrapper {
        padding-top: 0;
        padding-bottom: 0; }
    .cc--chapter .cc--component-container .c--component.c--accordions .cc--rich-text .c--rich-text {
      padding-top: 0.9375rem;
      padding-right: 0;
      padding-bottom: 0.9375rem;
      padding-left: 0; }
    .cc--chapter .cc--component-container .c--component .f--section-title h2,
    .cc--chapter .cc--component-container .c--component .header .f--section-title h2 {
      font-size: 2.25rem;
      line-height: 1.1667;
      text-transform: none; }
      @media screen and (min-width: 768px) {
        .cc--chapter .cc--component-container .c--component .f--section-title h2,
        .cc--chapter .cc--component-container .c--component .header .f--section-title h2 {
          font-size: 2.875rem;
          line-height: 1.1305; } }

.cc--cta-menu {
  position: relative; }
  @media screen and (min-width: 1024px) {
    .cc--cta-menu {
      width: 12.5625rem; } }
  .cc--cta-menu .c--cta-menu {
    padding-right: 8.33333%;
    padding-left: 8.33333%; }
    @media screen and (min-width: 1024px) {
      .cc--cta-menu .c--cta-menu {
        padding-top: 0;
        padding-right: 0;
        padding-bottom: 0;
        padding-left: 0; } }
    .cc--cta-menu .c--cta-menu nav > ul {
      list-style: none;
      padding: 0;
      margin: 0;
      display: flex;
      justify-content: space-between; }
      .cc--cta-menu .c--cta-menu nav > ul li {
        position: relative;
        flex: 0 0 45%; }
        @media screen and (min-width: 1024px) {
          .cc--cta-menu .c--cta-menu nav > ul li {
            width: 6.25rem;
            flex: 0 0 auto; } }
    .cc--cta-menu .c--cta-menu a {
      font-family: "Oswald", sans-serif;
      font-optical-sizing: auto;
      font-weight: 600;
      font-style: normal;
      font-size: 1.125rem;
      line-height: 1.4445;
      padding-right: 2.96875rem;
      padding-left: 2.96875rem;
      position: relative;
      display: inline-flex;
      justify-content: center;
      align-items: center;
      text-decoration: none;
      text-align: center;
      letter-spacing: 0.03125rem;
      width: auto;
      min-height: 3.125rem;
      border-radius: 0;
      color: #25282A;
      background-color: #D6A461;
      -webkit-appearance: none;
         -moz-appearance: none;
              appearance: none;
      text-transform: uppercase;
      font-family: "IBM Plex Sans", sans-serif;
      font-weight: 600;
      font-style: normal;
      font-size: 1rem;
      line-height: 1.5;
      width: 100%;
      text-transform: none;
      height: 3.125rem;
      min-height: auto; }
      @media screen and (min-width: 768px) {
        .cc--cta-menu .c--cta-menu a {
          min-height: 3.75rem; } }
      @media screen and (min-width: 1024px) {
        .cc--cta-menu .c--cta-menu a {
          padding-right: 1.25rem;
          padding-left: 1.25rem; } }
      .cc--cta-menu .c--cta-menu a:focus {
        transition: color 0.1s ease-in-out, background-color 0.1s ease-in-out;
        color: #25282A;
        background-color: #D6A461;
        text-decoration: none; }
      html[data-whatintent="mouse"] .cc--cta-menu .c--cta-menu a {
        transition: all 0.1s; }
        html[data-whatintent="mouse"] .cc--cta-menu .c--cta-menu a:hover {
          transition: color 0.1s ease-in-out, background-color 0.1s ease-in-out;
          color: #FFF;
          background-color: #862633;
          text-decoration: none; }
      @media screen and (min-width: 768px) {
        .cc--cta-menu .c--cta-menu a {
          height: 3.125rem;
          min-height: auto; } }
      @media screen and (min-width: 1024px) {
        .cc--cta-menu .c--cta-menu a {
          font-size: 0.875rem;
          line-height: 1.4286; }
          .cc--cta-menu .c--cta-menu a:focus {
            outline-offset: -0.1875rem !important; }
            html[data-whatinput="keyboard"] .cc--cta-menu .c--cta-menu a:focus {
              outline: 0.125rem solid #862633;
              outline-offset: 0.125rem; }
            html[data-whatinput="mouse"] .cc--cta-menu .c--cta-menu a:focus {
              outline: none;
              outline-offset: 0.125rem; } }
      html[data-whatintent="mouse"] .cc--cta-menu .c--cta-menu a {
        transition: all 0.1s; }
        html[data-whatintent="mouse"] .cc--cta-menu .c--cta-menu a:hover {
          background-color: #25282A;
          color: #FFF; }

.cc--editorial-cards {
  background-color: #FFF; }
  .cc--editorial-cards .c--editorial-cards {
    max-width: 1800px;
    margin: 0 auto; }
  .cc--editorial-cards .inner-wrapper {
    padding-top: 2.1875rem;
    padding-right: 8.33333%;
    padding-bottom: 2.1875rem;
    padding-left: 8.33333%; }
    @media screen and (min-width: 768px) {
      .cc--editorial-cards .inner-wrapper {
        padding-top: 4.6875rem;
        padding-right: 8.33333%;
        padding-bottom: 4.6875rem;
        padding-left: 8.33333%; } }
    @media screen and (min-width: 1024px) {
      .cc--editorial-cards .inner-wrapper {
        padding-right: 4.16667%;
        padding-left: 4.16667%; } }
  @media screen and (min-width: 1024px) {
    .cc--editorial-cards .text-group {
      flex: 0 0 68.18182%; } }
  .cc--editorial-cards .header-container {
    position: relative;
    z-index: 1; }
    @media screen and (min-width: 1024px) {
      .cc--editorial-cards .header-container {
        display: flex;
        justify-content: space-between; } }
    .cc--editorial-cards .header-container .f--description {
      margin-top: 0.625rem; }
  .cc--editorial-cards .link-container.mobile {
    margin-top: 1.5625rem; }
    @media screen and (min-width: 1024px) {
      .cc--editorial-cards .link-container.mobile {
        display: none; } }
  .cc--editorial-cards .link-container.desktop {
    display: none; }
    @media screen and (min-width: 1024px) {
      .cc--editorial-cards .link-container.desktop {
        margin-top: 0.9375rem;
        display: block;
        flex: 0 0 22.72727%; } }
  .cc--editorial-cards .link-container .f--link a {
    font-family: "Oswald", sans-serif;
    font-optical-sizing: auto;
    font-weight: 600;
    font-style: normal;
    font-size: 1.125rem;
    line-height: 1.4445;
    padding-right: 2.96875rem;
    padding-left: 2.96875rem;
    position: relative;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    text-align: center;
    letter-spacing: 0.03125rem;
    width: auto;
    min-height: 3.125rem;
    border-radius: 0;
    color: #25282A;
    background-color: #D6A461;
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
    text-transform: uppercase; }
    @media screen and (min-width: 768px) {
      .cc--editorial-cards .link-container .f--link a {
        min-height: 3.75rem; } }
    @media screen and (min-width: 1024px) {
      .cc--editorial-cards .link-container .f--link a {
        padding-right: 1.25rem;
        padding-left: 1.25rem; } }
    .cc--editorial-cards .link-container .f--link a:focus {
      transition: color 0.1s ease-in-out, background-color 0.1s ease-in-out;
      color: #25282A;
      background-color: #D6A461;
      text-decoration: none; }
    html[data-whatintent="mouse"] .cc--editorial-cards .link-container .f--link a {
      transition: all 0.1s; }
      html[data-whatintent="mouse"] .cc--editorial-cards .link-container .f--link a:hover {
        transition: color 0.1s ease-in-out, background-color 0.1s ease-in-out;
        color: #FFF;
        background-color: #862633;
        text-decoration: none; }
    @media screen and (min-width: 1024px) {
      .cc--editorial-cards .link-container .f--link a {
        width: 100%; } }
  .cc--editorial-cards .cards-container {
    margin-top: 1.5625rem; }
    @media screen and (min-width: 1024px) {
      .cc--editorial-cards .cards-container {
        display: flex;
        flex-wrap: wrap; } }
  .cc--editorial-cards .article-card {
    margin-bottom: 1.5625rem;
    position: relative; }
    @media screen and (min-width: 1024px) {
      .cc--editorial-cards .article-card {
        margin-right: 2.27273%;
        margin-bottom: 0;
        flex: 0 0 31.81818%;
        display: block; } }
    .cc--editorial-cards .article-card:last-child {
      margin-right: 0;
      margin-bottom: 0;
      margin-left: 0; }
    .cc--editorial-cards .article-card .text-container {
      padding-top: 0.9375rem; }
    .cc--editorial-cards .article-card .f--eyebrow {
      padding-top: 0.6875rem;
      padding-right: 0.625rem;
      padding-bottom: 0.6875rem;
      padding-left: 0.625rem;
      margin-bottom: 0.9375rem;
      background-color: #507F70;
      display: inline-flex;
      margin-bottom: 0.3125rem;
      padding-top: 0;
      padding-right: 0;
      padding-bottom: 0;
      padding-left: 0;
      background-color: transparent; }
      @media screen and (min-width: 768px) {
        .cc--editorial-cards .article-card .f--eyebrow {
          margin-bottom: 1.5625rem; } }
      .cc--editorial-cards .article-card .f--eyebrow span,
      .cc--editorial-cards .article-card .f--eyebrow a {
        font-family: "Oswald", sans-serif;
        font-optical-sizing: auto;
        font-weight: 500;
        font-style: normal;
        font-size: 0.875rem;
        line-height: 1.2858;
        color: #25282A;
        text-transform: uppercase; }
      .cc--editorial-cards .article-card .f--eyebrow a {
        text-decoration: none; }
        html[data-whatintent="mouse"] .cc--editorial-cards .article-card .f--eyebrow a {
          transition: all 0.1s; }
          html[data-whatintent="mouse"] .cc--editorial-cards .article-card .f--eyebrow a:hover {
            text-decoration: underline; }
      @media screen and (min-width: 768px) {
        .cc--editorial-cards .article-card .f--eyebrow {
          margin-bottom: 0.625rem; } }
      .cc--editorial-cards .article-card .f--eyebrow span,
      .cc--editorial-cards .article-card .f--eyebrow a {
        color: #25282A; }
      @media screen and (min-width: 1024px) {
        .cc--editorial-cards .article-card .f--eyebrow {
          margin-bottom: 0.625rem; } }
    .cc--editorial-cards .article-card .f--cta-title h3 {
      font-family: "Oswald", sans-serif;
      font-optical-sizing: auto;
      font-weight: 400;
      font-style: normal;
      font-size: 1.625rem;
      line-height: 1.3077; }
      @media screen and (min-width: 768px) {
        .cc--editorial-cards .article-card .f--cta-title h3 {
          font-size: 2rem;
          line-height: 1.1875; } }
      .tc--chaptered-page .cc--editorial-cards .article-card .f--cta-title h3 {
        font-size: 1.25rem;
        line-height: 1.5; }
        @media screen and (min-width: 768px) {
          .tc--chaptered-page .cc--editorial-cards .article-card .f--cta-title h3 {
            font-size: 1.5rem;
            line-height: 1.4167; } }
      .cc--editorial-cards .article-card .f--cta-title h3 a {
        color: inherit;
        text-decoration: none; }
        html[data-whatintent="mouse"] .cc--editorial-cards .article-card .f--cta-title h3 a {
          transition: all 0.1s; }
          html[data-whatintent="mouse"] .cc--editorial-cards .article-card .f--cta-title h3 a:hover {
            text-decoration: underline; }

.cc--event-cards {
  background-color: #862633; }
  .cc--event-cards .c--event-cards {
    max-width: 1800px;
    margin: 0 auto; }
  .cc--event-cards .inner-wrapper {
    padding-top: 2.1875rem;
    padding-right: 8.33333%;
    padding-bottom: 2.1875rem;
    padding-left: 8.33333%; }
    @media screen and (min-width: 768px) {
      .cc--event-cards .inner-wrapper {
        padding-top: 4.6875rem;
        padding-right: 8.33333%;
        padding-bottom: 4.6875rem;
        padding-left: 8.33333%; } }
    @media screen and (min-width: 1024px) {
      .cc--event-cards .inner-wrapper {
        padding-right: 4.16667%;
        padding-left: 4.16667%; } }
  .cc--event-cards .header-container {
    position: relative;
    z-index: 1; }
    @media screen and (min-width: 1024px) {
      .cc--event-cards .header-container {
        display: flex;
        justify-content: space-between; } }
    .cc--event-cards .header-container h2 {
      color: #FFF; }
  .cc--event-cards .link-container.mobile {
    margin-top: 1.5625rem; }
    @media screen and (min-width: 1024px) {
      .cc--event-cards .link-container.mobile {
        display: none; } }
  .cc--event-cards .link-container.desktop {
    display: none; }
    @media screen and (min-width: 1024px) {
      .cc--event-cards .link-container.desktop {
        margin-top: 0.9375rem;
        display: block;
        flex: 0 0 22.72727%; } }
  .cc--event-cards .link-container .f--link a {
    font-family: "Oswald", sans-serif;
    font-optical-sizing: auto;
    font-weight: 600;
    font-style: normal;
    font-size: 1.125rem;
    line-height: 1.4445;
    padding-right: 2.96875rem;
    padding-left: 2.96875rem;
    position: relative;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    text-align: center;
    letter-spacing: 0.03125rem;
    width: auto;
    min-height: 3.125rem;
    border-radius: 0;
    color: #25282A;
    background-color: #D6A461;
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
    text-transform: uppercase; }
    @media screen and (min-width: 768px) {
      .cc--event-cards .link-container .f--link a {
        min-height: 3.75rem; } }
    @media screen and (min-width: 1024px) {
      .cc--event-cards .link-container .f--link a {
        padding-right: 1.25rem;
        padding-left: 1.25rem; } }
    .cc--event-cards .link-container .f--link a:focus {
      transition: color 0.1s ease-in-out, background-color 0.1s ease-in-out;
      color: #25282A;
      background-color: #D6A461;
      text-decoration: none; }
    html[data-whatintent="mouse"] .cc--event-cards .link-container .f--link a {
      transition: all 0.1s; }
      html[data-whatintent="mouse"] .cc--event-cards .link-container .f--link a:hover {
        transition: color 0.1s ease-in-out, background-color 0.1s ease-in-out;
        color: #FFF;
        background-color: #862633;
        text-decoration: none; }
    @media screen and (min-width: 1024px) {
      .cc--event-cards .link-container .f--link a {
        width: 100%; } }
    html[data-whatintent="mouse"] .cc--event-cards .link-container .f--link a {
      transition: all 0.1s; }
      html[data-whatintent="mouse"] .cc--event-cards .link-container .f--link a:hover {
        background-color: #25282A; }
    .cc--event-cards .link-container .f--link a:focus {
      transition: color 0.1s ease-in-out, background-color 0.1s ease-in-out;
      outline-color: #D6A461; }
  .cc--event-cards .cards-container {
    margin-top: 1.5625rem; }
    @media screen and (min-width: 1024px) {
      .cc--event-cards .cards-container {
        display: flex;
        flex-wrap: wrap; } }
  .cc--event-cards .article-card {
    margin-bottom: 1.5625rem;
    position: relative; }
    @media screen and (min-width: 768px) {
      .cc--event-cards .article-card {
        margin-bottom: 2.1875rem; } }
    @media screen and (min-width: 1024px) {
      .cc--event-cards .article-card {
        margin-right: 2.27273%;
        margin-bottom: 0;
        flex: 0 0 31.81818%;
        display: block; } }
    .cc--event-cards .article-card:last-child {
      margin-right: 0;
      margin-bottom: 0;
      margin-left: 0; }
    .cc--event-cards .article-card .text-container {
      padding-top: 0.9375rem; }
    .cc--event-cards .article-card .f--eyebrow {
      padding-top: 0.6875rem;
      padding-right: 0.625rem;
      padding-bottom: 0.6875rem;
      padding-left: 0.625rem;
      margin-bottom: 0.9375rem;
      background-color: #507F70;
      display: inline-flex;
      margin-bottom: 0.3125rem;
      padding-top: 0;
      padding-right: 0;
      padding-bottom: 0;
      padding-left: 0;
      background-color: transparent; }
      @media screen and (min-width: 768px) {
        .cc--event-cards .article-card .f--eyebrow {
          margin-bottom: 1.5625rem; } }
      .cc--event-cards .article-card .f--eyebrow span,
      .cc--event-cards .article-card .f--eyebrow a {
        font-family: "Oswald", sans-serif;
        font-optical-sizing: auto;
        font-weight: 500;
        font-style: normal;
        font-size: 0.875rem;
        line-height: 1.2858;
        color: #FFF;
        text-transform: uppercase; }
      .cc--event-cards .article-card .f--eyebrow a {
        text-decoration: none; }
        html[data-whatintent="mouse"] .cc--event-cards .article-card .f--eyebrow a {
          transition: all 0.1s; }
          html[data-whatintent="mouse"] .cc--event-cards .article-card .f--eyebrow a:hover {
            text-decoration: underline; }
      @media screen and (min-width: 768px) {
        .cc--event-cards .article-card .f--eyebrow {
          margin-bottom: 0.625rem; } }
      .cc--event-cards .article-card .f--eyebrow span,
      .cc--event-cards .article-card .f--eyebrow a {
        color: #FFF; }
      @media screen and (min-width: 1024px) {
        .cc--event-cards .article-card .f--eyebrow {
          margin-bottom: 0.625rem; } }
    .cc--event-cards .article-card .f--cta-title h3 {
      font-family: "Oswald", sans-serif;
      font-optical-sizing: auto;
      font-weight: 400;
      font-style: normal;
      font-size: 2rem;
      line-height: 1.1875;
      color: #FFF; }
      .tc--chaptered-page .cc--event-cards .article-card .f--cta-title h3 {
        font-size: 1.25rem;
        line-height: 1.5; }
        @media screen and (min-width: 768px) {
          .tc--chaptered-page .cc--event-cards .article-card .f--cta-title h3 {
            font-size: 1.5rem;
            line-height: 1.4167; } }
      .cc--event-cards .article-card .f--cta-title h3 a {
        color: inherit;
        text-decoration: none; }
        html[data-whatintent="mouse"] .cc--event-cards .article-card .f--cta-title h3 a {
          transition: all 0.1s; }
          html[data-whatintent="mouse"] .cc--event-cards .article-card .f--cta-title h3 a:hover {
            text-decoration: underline; }
    .cc--event-cards .article-card .event-meta {
      margin-top: 0.625rem; }
      .cc--event-cards .article-card .event-meta span {
        font-family: "IBM Plex Sans", sans-serif;
        font-weight: 400;
        font-style: normal;
        font-size: 0.875rem;
        line-height: 1.4286;
        color: #FFF; }
        .cc--event-cards .article-card .event-meta span:nth-child(2)::before {
          margin-right: 0.25rem;
          content: "|";
          display: inline-block; }

.cc--event-hero {
  position: relative; }
  .cc--event-hero.no-image .image-container {
    display: none; }
  .cc--event-hero.no-image .text-container {
    padding-top: 5.3125rem; }
    @media screen and (min-width: 768px) {
      .cc--event-hero.no-image .text-container {
        padding-top: 4.6875rem;
        padding-right: 8.33333%;
        padding-left: 8.33333%; } }
    @media screen and (min-width: 1024px) {
      .cc--event-hero.no-image .text-container {
        padding-right: 12.5%;
        padding-left: 12.5%; } }
  @media screen and (min-width: 768px) {
    .cc--event-hero.no-image .f--page-title {
      margin-top: 4.6875rem; } }
  .cc--event-hero.no-image .f--eyebrow + .f--page-title {
    margin-top: 0.9375rem; }
    @media screen and (min-width: 768px) {
      .cc--event-hero.no-image .f--eyebrow + .f--page-title {
        margin-top: 1.5625rem; } }
  .cc--event-hero .text-outer-wrapper {
    max-width: 1800px;
    margin: 0 auto; }
  .cc--event-hero .text-container {
    padding-top: 1.5625rem;
    padding-right: 8.33333%;
    padding-bottom: 1.5625rem;
    padding-left: 8.33333%;
    position: relative; }
    @media screen and (min-width: 768px) {
      .cc--event-hero .text-container {
        padding-top: 0;
        padding-right: 8.33333%;
        padding-bottom: 3.125rem;
        padding-left: 8.33333%; } }
    @media screen and (min-width: 1024px) {
      .cc--event-hero .text-container {
        padding-right: 12.5%;
        padding-left: 12.5%; } }
  .cc--event-hero .image-container {
    position: relative; }
    @media screen and (min-width: 1024px) {
      .cc--event-hero .image-container {
        aspect-ratio: 16 / 9; } }
    @media screen and (min-width: 1800px) {
      .cc--event-hero .image-container {
        aspect-ratio: auto;
        height: 63.3125rem; } }
    .cc--event-hero .image-container .f--image {
      height: 100%;
      width: 100%; }
      @media screen and (min-width: 1024px) {
        .cc--event-hero .image-container .f--image {
          position: absolute;
          top: 0;
          left: 0; } }
      @media screen and (min-width: 1024px) {
        .cc--event-hero .image-container .f--image img {
          height: 100%;
          -o-object-fit: cover;
             object-fit: cover; } }
    .cc--event-hero .image-container figure {
      padding: 0;
      margin: 0; }
    .cc--event-hero .image-container .image-caption {
      padding-top: 0.625rem;
      padding-right: 8.33333%;
      padding-left: 8.33333%;
      background-color: #FFF; }
      @media screen and (min-width: 768px) {
        .cc--event-hero .image-container .image-caption {
          padding-top: 0.9375rem;
          padding-right: 2.08333%;
          padding-bottom: 0.9375rem;
          padding-left: 2.08333%;
          position: absolute;
          bottom: 0;
          right: 0;
          width: 50%; } }
      .cc--event-hero .image-container .image-caption p {
        font-family: "IBM Plex Sans", sans-serif;
        font-weight: 400;
        font-style: normal;
        font-size: 0.875rem;
        line-height: 1.4286; }
  .cc--event-hero .f--eyebrow {
    padding-top: 0.6875rem;
    padding-right: 0.625rem;
    padding-bottom: 0.6875rem;
    padding-left: 0.625rem;
    margin-bottom: 0.9375rem;
    background-color: #507F70;
    display: inline-flex;
    margin-bottom: 0; }
    @media screen and (min-width: 768px) {
      .cc--event-hero .f--eyebrow {
        margin-bottom: 1.5625rem; } }
    .cc--event-hero .f--eyebrow span,
    .cc--event-hero .f--eyebrow a {
      font-family: "Oswald", sans-serif;
      font-optical-sizing: auto;
      font-weight: 500;
      font-style: normal;
      font-size: 0.875rem;
      line-height: 1.2858;
      color: #FFF;
      text-transform: uppercase; }
    .cc--event-hero .f--eyebrow a {
      text-decoration: none; }
      html[data-whatintent="mouse"] .cc--event-hero .f--eyebrow a {
        transition: all 0.1s; }
        html[data-whatintent="mouse"] .cc--event-hero .f--eyebrow a:hover {
          text-decoration: underline; }
    @media screen and (min-width: 768px) {
      .cc--event-hero .f--eyebrow {
        margin-bottom: 0; } }
  @media screen and (min-width: 768px) {
    .cc--event-hero .f--page-title {
      margin-top: 3.125rem; } }
  .cc--event-hero .f--page-title h1 {
    font-size: 3.125rem;
    line-height: 1.1201; }
    @media screen and (min-width: 768px) {
      .cc--event-hero .f--page-title h1 {
        font-size: 5rem;
        line-height: 1.125; } }
  .cc--event-hero .f--eyebrow + .f--page-title {
    margin-top: 0.9375rem; }
    @media screen and (min-width: 768px) {
      .cc--event-hero .f--eyebrow + .f--page-title {
        margin-top: 1.5625rem; } }

.cc--event-info {
  background-color: #FFF; }
  @media screen and (min-width: 768px) {
    .cc--event-info .c--event-info {
      display: flex;
      -moz-column-gap: 5%;
           column-gap: 5%; } }
  @media screen and (min-width: 1024px) {
    .cc--event-info .c--event-info {
      display: block; } }
  .cc--event-info span {
    font-family: "Oswald", sans-serif;
    font-optical-sizing: auto;
    font-weight: 500;
    font-style: normal;
    font-size: 0.875rem;
    line-height: 1.2858;
    display: block;
    color: #25282A;
    text-transform: uppercase; }
  .cc--event-info p {
    font-family: "IBM Plex Sans", sans-serif;
    font-weight: 400;
    font-style: normal;
    margin-top: 0.3125rem;
    margin-bottom: 1.5625rem;
    font-size: 0.9375rem;
    line-height: 1.8667;
    color: #000; }
    @media screen and (min-width: 768px) {
      .cc--event-info p {
        font-size: 1rem;
        line-height: 2;
        margin-top: 0;
        margin-bottom: 0.625rem; } }
    @media screen and (min-width: 1024px) {
      .cc--event-info p {
        margin-top: 0.3125rem;
        margin-bottom: 1.5625rem; } }

.cc--event-main {
  max-width: 1800px;
  margin: 0 auto; }
  .cc--event-main .c--event-main {
    padding-top: 2.1875rem;
    padding-right: 8.33333%;
    padding-bottom: 2.1875rem;
    padding-left: 8.33333%;
    display: flex;
    flex-direction: column; }
    @media screen and (min-width: 768px) {
      .cc--event-main .c--event-main {
        padding-top: 2.1875rem;
        padding-right: 8.33333%;
        padding-bottom: 2.1875rem;
        padding-left: 8.33333%; } }
    @media screen and (min-width: 1024px) {
      .cc--event-main .c--event-main {
        padding-right: 12.5%;
        padding-left: 12.5%;
        flex-direction: row;
        justify-content: space-between; } }
  @media screen and (min-width: 1024px) {
    .cc--event-main .content-sidebar {
      padding-bottom: 4.6875rem;
      width: 16.66667%; } }
  .cc--event-main .content-main {
    margin-top: 2.1875rem; }
    @media screen and (min-width: 1024px) {
      .cc--event-main .content-main {
        margin-top: 0;
        padding-top: 0;
        padding-right: 0;
        padding-left: 0;
        width: 77.77778%; } }
  .cc--event-main .cc--rich-text .c--rich-text .inner-wrapper {
    padding-top: 0;
    padding-right: 0;
    padding-bottom: 0;
    padding-left: 0; }

.cc--events-listing-filter {
  margin-bottom: 1.875rem;
  position: relative;
  background-color: #D6A461;
  z-index: 1; }
  @media screen and (min-width: 1024px) {
    .cc--events-listing-filter {
      margin-bottom: 0; } }
  @media screen and (min-width: 1024px) {
    .cc--events-listing-filter .inner-wrapper {
      padding-top: 1.125rem;
      padding-right: 4.16667%;
      padding-bottom: 1.125rem;
      padding-left: 4.16667%; } }
  .cc--events-listing-filter .c--events-listing-filter {
    max-width: 1800px;
    margin: 0 auto;
    position: relative; }
    .cc--events-listing-filter .c--events-listing-filter .form-wrapper {
      padding-top: 0.9375rem;
      padding-right: 8.33333%;
      padding-bottom: 0.9375rem;
      padding-left: 8.33333%; }
      @media screen and (min-width: 768px) {
        .cc--events-listing-filter .c--events-listing-filter .form-wrapper {
          padding-right: 8.33333%;
          padding-left: 8.33333%; } }
      @media screen and (min-width: 1024px) {
        .cc--events-listing-filter .c--events-listing-filter .form-wrapper {
          padding-top: 0;
          padding-right: 0;
          padding-bottom: 0;
          padding-left: 0; } }
      @media screen and (min-width: 1024px) {
        .cc--events-listing-filter .c--events-listing-filter .form-wrapper form {
          display: flex;
          justify-content: center;
          margin: 0;
          -moz-column-gap: 0.625rem;
               column-gap: 0.625rem; } }
      .cc--events-listing-filter .c--events-listing-filter .form-wrapper form > .fi--form-item label {
        position: absolute;
        white-space: nowrap;
        width: 1px;
        height: 1px;
        overflow: hidden;
        border: 0;
        padding: 0;
        clip: rect(0 0 0 0);
        -webkit-clip-path: inset(50%);
                clip-path: inset(50%);
        margin: -1px; }
      .cc--events-listing-filter .c--events-listing-filter .form-wrapper form > .fi--form-item:not(:last-child) {
        margin-bottom: 0.625rem; }
        @media screen and (min-width: 1024px) {
          .cc--events-listing-filter .c--events-listing-filter .form-wrapper form > .fi--form-item:not(:last-child) {
            margin-bottom: 0;
            flex: 0 0 calc((100% - 200px) / 3); } }
      .cc--events-listing-filter .c--events-listing-filter .form-wrapper form > .fi--form-item.f--form-item-date {
        position: relative; }
        .cc--events-listing-filter .c--events-listing-filter .form-wrapper form > .fi--form-item.f--form-item-date input {
          padding-right: 1.0625rem;
          padding-left: 1.0625rem;
          text-transform: uppercase;
          background-image: url("../images/icons/icon-calendar.svg");
          background-repeat: no-repeat;
          background-position: right 0.625rem center;
          background-size: 1.5625rem; }
          .cc--events-listing-filter .c--events-listing-filter .form-wrapper form > .fi--form-item.f--form-item-date input::-moz-placeholder {
            opacity: 1;
            display: none; }
          .cc--events-listing-filter .c--events-listing-filter .form-wrapper form > .fi--form-item.f--form-item-date input::placeholder {
            opacity: 1;
            display: none; }
          .cc--events-listing-filter .c--events-listing-filter .form-wrapper form > .fi--form-item.f--form-item-date input[type='date']::-webkit-calendar-picker-indicator {
            background: none;
            color: transparent;
            z-index: 1; }
          .cc--events-listing-filter .c--events-listing-filter .form-wrapper form > .fi--form-item.f--form-item-date input[type='date'] + label {
            position: absolute;
            white-space: nowrap;
            width: 1px;
            height: 1px;
            overflow: hidden;
            border: 0;
            padding: 0;
            clip: rect(0 0 0 0);
            -webkit-clip-path: inset(50%);
                    clip-path: inset(50%);
            margin: -1px; }
          .cc--events-listing-filter .c--events-listing-filter .form-wrapper form > .fi--form-item.f--form-item-date input:focus + label {
            display: none; }
      .cc--events-listing-filter .c--events-listing-filter .form-wrapper form > .fi--form-item.f--input-select .select-wrap {
        border: 0;
        background-color: #FFF; }
      .cc--events-listing-filter .c--events-listing-filter .form-wrapper form > .fi--form-item.f--input-select select {
        height: 4.0625rem; }
      .cc--events-listing-filter .c--events-listing-filter .form-wrapper form > .fi--form-item.f--input-text {
        position: relative; }
        .cc--events-listing-filter .c--events-listing-filter .form-wrapper form > .fi--form-item.f--input-text input {
          height: 4.0625rem; }
        .cc--events-listing-filter .c--events-listing-filter .form-wrapper form > .fi--form-item.f--input-text::after {
          position: absolute;
          top: 50%;
          transform: translateY(-50%);
          right: 0.9375rem;
          width: 1.5625rem;
          height: 1.5625rem;
          background-image: url("../images/icons/icon-search.svg");
          background-position: center center;
          background-size: cover;
          content: '';
          z-index: 1;
          pointer-events: none; }
      @media screen and (min-width: 1024px) {
        .cc--events-listing-filter .c--events-listing-filter .form-wrapper form > .fi--form-item.f--input-submit {
          flex: 0 0 10.625rem; } }
      .cc--events-listing-filter .c--events-listing-filter .form-wrapper form > .fi--form-item button {
        font-family: "Oswald", sans-serif;
        font-optical-sizing: auto;
        font-weight: 600;
        font-style: normal;
        font-size: 1.125rem;
        line-height: 1.4445;
        padding-right: 2.96875rem;
        padding-left: 2.96875rem;
        position: relative;
        display: inline-flex;
        justify-content: center;
        align-items: center;
        text-decoration: none;
        text-align: center;
        letter-spacing: 0.03125rem;
        width: auto;
        min-height: 3.125rem;
        border-radius: 0;
        color: #25282A;
        background-color: #D6A461;
        -webkit-appearance: none;
           -moz-appearance: none;
                appearance: none;
        text-transform: uppercase;
        background-color: #862633;
        color: #FFF;
        height: 3.125rem;
        border: 0;
        height: 4.0625rem;
        width: 100%; }
        @media screen and (min-width: 768px) {
          .cc--events-listing-filter .c--events-listing-filter .form-wrapper form > .fi--form-item button {
            min-height: 3.75rem; } }
        @media screen and (min-width: 1024px) {
          .cc--events-listing-filter .c--events-listing-filter .form-wrapper form > .fi--form-item button {
            padding-right: 1.25rem;
            padding-left: 1.25rem; } }
        .cc--events-listing-filter .c--events-listing-filter .form-wrapper form > .fi--form-item button:focus {
          transition: color 0.1s ease-in-out, background-color 0.1s ease-in-out;
          color: #25282A;
          background-color: #D6A461;
          text-decoration: none; }
        html[data-whatintent="mouse"] .cc--events-listing-filter .c--events-listing-filter .form-wrapper form > .fi--form-item button {
          transition: all 0.1s; }
          html[data-whatintent="mouse"] .cc--events-listing-filter .c--events-listing-filter .form-wrapper form > .fi--form-item button:hover {
            transition: color 0.1s ease-in-out, background-color 0.1s ease-in-out;
            color: #FFF;
            background-color: #862633;
            text-decoration: none; }
        @media screen and (min-width: 1024px) {
          .cc--events-listing-filter .c--events-listing-filter .form-wrapper form > .fi--form-item button {
            height: 100%;
            width: 100%; } }
        html[data-whatintent="mouse"] .cc--events-listing-filter .c--events-listing-filter .form-wrapper form > .fi--form-item button {
          transition: all 0.1s; }
          html[data-whatintent="mouse"] .cc--events-listing-filter .c--events-listing-filter .form-wrapper form > .fi--form-item button:hover {
            background-color: #25282A; }
        .cc--events-listing-filter .c--events-listing-filter .form-wrapper form > .fi--form-item button:focus {
          background-color: #862633;
          color: #FFF; }
      .cc--events-listing-filter .c--events-listing-filter .form-wrapper form .reset-button {
        font-family: "IBM Plex Sans", sans-serif;
        font-weight: 400;
        font-style: normal;
        font-size: 0.875rem;
        line-height: 1.5715;
        position: absolute;
        padding: 0;
        margin: 0;
        border: 0;
        text-decoration: underline;
        background: transparent;
        cursor: pointer;
        bottom: -2.5rem;
        left: 8.33333%;
        height: 1.625rem; }
        @media screen and (min-width: 1024px) {
          .cc--events-listing-filter .c--events-listing-filter .form-wrapper form .reset-button {
            bottom: -2.25rem;
            right: 4.16667%;
            left: auto; } }
        html[data-whatintent="mouse"] .cc--events-listing-filter .c--events-listing-filter .form-wrapper form .reset-button {
          transition: all 0.1s; }
          html[data-whatintent="mouse"] .cc--events-listing-filter .c--events-listing-filter .form-wrapper form .reset-button:hover {
            text-decoration: none; }

.cc--events-listing {
  max-width: 1800px;
  margin: 0 auto;
  position: relative;
  overflow: hidden; }
  .cc--events-listing .c--events-listing {
    padding-top: 2.1875rem;
    padding-right: 8.33333%;
    padding-bottom: 2.1875rem;
    padding-left: 8.33333%; }
    @media screen and (min-width: 768px) {
      .cc--events-listing .c--events-listing {
        padding-top: 4.6875rem;
        padding-right: 8.33333%;
        padding-bottom: 4.6875rem;
        padding-left: 8.33333%; } }
    @media screen and (min-width: 1024px) {
      .cc--events-listing .c--events-listing {
        padding-right: 16.66667%;
        padding-left: 16.66667%; } }
    .cc--events-listing .c--events-listing .article-card {
      padding-bottom: 1.5625rem;
      border-bottom: 0.0625rem solid #D9D9D6; }
      .cc--events-listing .c--events-listing .article-card:not(:last-child) {
        margin-bottom: 1.5625rem; }
      @media screen and (min-width: 768px) {
        .cc--events-listing .c--events-listing .article-card {
          display: flex;
          flex-direction: row-reverse;
          justify-content: space-between;
          gap: 5%; } }
      .cc--events-listing .c--events-listing .article-card .image-container {
        margin-bottom: 0.9375rem;
        position: relative; }
        @media screen and (min-width: 768px) {
          .cc--events-listing .c--events-listing .article-card .image-container {
            margin-bottom: 0;
            flex: 0 0 32.5%; } }
        @media screen and (min-width: 1024px) {
          .cc--events-listing .c--events-listing .article-card .image-container {
            flex: 0 0 37.5%; } }
        .cc--events-listing .c--events-listing .article-card .image-container .image-link:focus {
          display: block; }
          html[data-whatinput="keyboard"] .cc--events-listing .c--events-listing .article-card .image-container .image-link:focus {
            outline: 0.125rem solid #862633;
            outline-offset: 0.125rem; }
          html[data-whatinput="mouse"] .cc--events-listing .c--events-listing .article-card .image-container .image-link:focus {
            outline: none;
            outline-offset: 0.125rem; }
      @media screen and (min-width: 1024px) {
        .cc--events-listing .c--events-listing .article-card .image-container + .text-container {
          flex: 0 0 56.25%; } }
      .cc--events-listing .c--events-listing .article-card .text-container {
        width: 100%; }
        .cc--events-listing .c--events-listing .article-card .text-container .f--eyebrow {
          padding-top: 0.6875rem;
          padding-right: 0.625rem;
          padding-bottom: 0.6875rem;
          padding-left: 0.625rem;
          margin-bottom: 0.9375rem;
          background-color: #507F70;
          display: inline-flex;
          margin-bottom: 0.3125rem;
          padding-top: 0;
          padding-right: 0;
          padding-bottom: 0;
          padding-left: 0;
          background-color: transparent;
          margin-bottom: 0.625rem;
          padding-top: 0;
          padding-right: 0;
          padding-bottom: 0;
          padding-left: 0; }
          @media screen and (min-width: 768px) {
            .cc--events-listing .c--events-listing .article-card .text-container .f--eyebrow {
              margin-bottom: 1.5625rem; } }
          .cc--events-listing .c--events-listing .article-card .text-container .f--eyebrow span,
          .cc--events-listing .c--events-listing .article-card .text-container .f--eyebrow a {
            font-family: "Oswald", sans-serif;
            font-optical-sizing: auto;
            font-weight: 500;
            font-style: normal;
            font-size: 0.875rem;
            line-height: 1.2858;
            color: #25282A;
            text-transform: uppercase; }
          .cc--events-listing .c--events-listing .article-card .text-container .f--eyebrow a {
            text-decoration: none; }
            html[data-whatintent="mouse"] .cc--events-listing .c--events-listing .article-card .text-container .f--eyebrow a {
              transition: all 0.1s; }
              html[data-whatintent="mouse"] .cc--events-listing .c--events-listing .article-card .text-container .f--eyebrow a:hover {
                text-decoration: underline; }
          @media screen and (min-width: 768px) {
            .cc--events-listing .c--events-listing .article-card .text-container .f--eyebrow {
              margin-bottom: 0.625rem; } }
          .cc--events-listing .c--events-listing .article-card .text-container .f--eyebrow span,
          .cc--events-listing .c--events-listing .article-card .text-container .f--eyebrow a {
            color: #25282A; }
          @media screen and (min-width: 768px) {
            .cc--events-listing .c--events-listing .article-card .text-container .f--eyebrow {
              padding-top: 0;
              padding-right: 0;
              padding-bottom: 0;
              padding-left: 0; } }
        @media screen and (min-width: 768px) {
          .cc--events-listing .c--events-listing .article-card .text-container .f--cta-title {
            flex: 0 0 62.5%; } }
        .cc--events-listing .c--events-listing .article-card .text-container .f--cta-title h3 {
          font-family: "Oswald", sans-serif;
          font-optical-sizing: auto;
          font-weight: 400;
          font-style: normal;
          font-size: 1.625rem;
          line-height: 1.3077;
          color: #25282A; }
          @media screen and (min-width: 768px) {
            .cc--events-listing .c--events-listing .article-card .text-container .f--cta-title h3 {
              font-size: 2rem;
              line-height: 1.1875; } }
          .cc--events-listing .c--events-listing .article-card .text-container .f--cta-title h3 a {
            color: inherit;
            text-decoration: none; }
            html[data-whatintent="mouse"] .cc--events-listing .c--events-listing .article-card .text-container .f--cta-title h3 a {
              transition: all 0.1s; }
              html[data-whatintent="mouse"] .cc--events-listing .c--events-listing .article-card .text-container .f--cta-title h3 a:hover {
                text-decoration: underline; }
        .cc--events-listing .c--events-listing .article-card .text-container .date-location {
          margin-top: 0.625rem; }
          .cc--events-listing .c--events-listing .article-card .text-container .date-location span {
            font-family: "IBM Plex Sans", sans-serif;
            font-weight: 400;
            font-style: normal;
            font-size: 0.875rem;
            line-height: 1.8572;
            color: #000; }
          .cc--events-listing .c--events-listing .article-card .text-container .date-location .date + .location::before {
            padding-right: 0.1875rem;
            content: '| ';
            display: inline-flex; }
        .cc--events-listing .c--events-listing .article-card .text-container .f--description {
          margin-top: 0.625rem; }
          @media screen and (min-width: 768px) {
            .cc--events-listing .c--events-listing .article-card .text-container .f--description {
              margin-top: 0.9375rem; } }
          .cc--events-listing .c--events-listing .article-card .text-container .f--description p {
            font-size: 0.9375rem;
            line-height: 1.8667; }
            @media screen and (min-width: 768px) {
              .cc--events-listing .c--events-listing .article-card .text-container .f--description p {
                font-size: 1rem;
                line-height: 2; } }
    .cc--events-listing .c--events-listing .cc--rich-text .c--rich-text .inner-wrapper {
      padding-top: 0;
      padding-right: 0;
      padding-bottom: 0;
      padding-left: 0; }

.cc--feature-block .c--feature-block {
  max-width: 1800px;
  margin: 0 auto; }

@media screen and (min-width: 1024px) {
  .cc--feature-block .text-image-container {
    display: flex; } }

.cc--feature-block .image-container {
  position: relative; }
  @media screen and (min-width: 1024px) {
    .cc--feature-block .image-container {
      width: 50%; } }

.cc--feature-block .image-container-inner {
  position: relative; }

.cc--feature-block .text-container {
  padding-top: 1.5625rem;
  padding-right: 8.33333%;
  padding-bottom: 2.625rem;
  padding-left: 8.33333%; }
  @media screen and (min-width: 768px) {
    .cc--feature-block .text-container {
      padding-top: 2.1875rem;
      padding-right: 8.33333%;
      padding-bottom: 4.6875rem;
      padding-left: 8.33333%; } }
  @media screen and (min-width: 1024px) {
    .cc--feature-block .text-container {
      padding-top: 4.6875rem;
      padding-right: 6.25%;
      padding-bottom: 4.6875rem;
      padding-left: 6.25%;
      width: 50%; } }
  .tc--chaptered-page .cc--feature-block .text-container {
    padding-bottom: 0; }
    @media screen and (min-width: 1024px) {
      .tc--chaptered-page .cc--feature-block .text-container {
        padding-top: 4.6875rem;
        padding-bottom: 4.6875rem; } }

.cc--feature-block .f--eyebrow {
  padding-top: 0.6875rem;
  padding-right: 0.625rem;
  padding-bottom: 0.6875rem;
  padding-left: 0.625rem;
  margin-bottom: 0.9375rem;
  background-color: #507F70;
  display: inline-flex;
  margin-bottom: 0.3125rem;
  padding-top: 0;
  padding-right: 0;
  padding-bottom: 0;
  padding-left: 0;
  background-color: transparent; }
  @media screen and (min-width: 768px) {
    .cc--feature-block .f--eyebrow {
      margin-bottom: 1.5625rem; } }
  .cc--feature-block .f--eyebrow span,
  .cc--feature-block .f--eyebrow a {
    font-family: "Oswald", sans-serif;
    font-optical-sizing: auto;
    font-weight: 500;
    font-style: normal;
    font-size: 0.875rem;
    line-height: 1.2858;
    color: #25282A;
    text-transform: uppercase; }
  .cc--feature-block .f--eyebrow a {
    text-decoration: none; }
    html[data-whatintent="mouse"] .cc--feature-block .f--eyebrow a {
      transition: all 0.1s; }
      html[data-whatintent="mouse"] .cc--feature-block .f--eyebrow a:hover {
        text-decoration: underline; }
  @media screen and (min-width: 768px) {
    .cc--feature-block .f--eyebrow {
      margin-bottom: 0.625rem; } }
  .cc--feature-block .f--eyebrow span,
  .cc--feature-block .f--eyebrow a {
    color: #25282A; }

.cc--feature-block .f--description,
.cc--feature-block .f--cta-title {
  margin-top: 0.625rem; }
  @media screen and (min-width: 768px) {
    .cc--feature-block .f--description,
    .cc--feature-block .f--cta-title {
      margin-top: 0.9375rem; } }

.cc--feature-block .f--cta-title h3 {
  font-family: "Oswald", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-size: 2.25rem;
  line-height: 1.1667; }
  @media screen and (min-width: 768px) {
    .cc--feature-block .f--cta-title h3 {
      font-size: 2.875rem;
      line-height: 1.1305; } }
  .tc--chaptered-page .cc--feature-block .f--cta-title h3 {
    font-size: 1.625rem;
    line-height: 1.3077; }
    @media screen and (min-width: 768px) {
      .tc--chaptered-page .cc--feature-block .f--cta-title h3 {
        font-size: 2rem;
        line-height: 1.1875; } }

.cc--feature-block .links-container {
  margin-top: 0.9375rem; }
  @media screen and (min-width: 768px) {
    .cc--feature-block .links-container {
      margin-top: 1.5625rem; } }

.cc--feature-block .f--link {
  margin-bottom: 0.9375rem; }
  .cc--feature-block .f--link:last-child {
    margin-bottom: 0; }
  .cc--feature-block .f--link a {
    padding-top: 0.375rem;
    padding-bottom: 0.375rem;
    font-family: "Oswald", sans-serif;
    font-optical-sizing: auto;
    font-weight: 600;
    font-style: normal;
    font-size: 1.125rem;
    line-height: 1.2223;
    letter-spacing: 0.03125rem;
    color: #862633;
    text-decoration: none;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    text-align: left; }
    html[data-whatintent="mouse"] .cc--feature-block .f--link a {
      transition: all 0.1s; }
      html[data-whatintent="mouse"] .cc--feature-block .f--link a:hover {
        text-decoration: underline;
        color: #862633; }
    .cc--feature-block .f--link a svg {
      fill: #862633; }

@media screen and (min-width: 1024px) {
  .cc--feature-block.image-right .text-image-container {
    flex-direction: row-reverse; } }

.cc--feature-block.image-right .f--link a {
  text-align: right; }

.cc--footer-menu .c--footer-menu .menu-container {
  display: flex;
  justify-content: space-between; }
  .cc--footer-menu .c--footer-menu .menu-container nav {
    display: flex;
    flex: 0 0 45%; }
    @media screen and (min-width: 1024px) {
      .cc--footer-menu .c--footer-menu .menu-container nav.col-0 {
        padding-right: 8.33333%;
        flex: 0 0 37.5%; } }
    @media screen and (min-width: 1024px) {
      .cc--footer-menu .c--footer-menu .menu-container nav.col-0 > ul li.menu-item:nth-child(n+2) {
        margin-top: 1.875rem; } }
    @media screen and (min-width: 1024px) {
      .cc--footer-menu .c--footer-menu .menu-container nav.col-1 {
        flex: 0 0 62.5%; } }
    @media screen and (min-width: 1024px) {
      .cc--footer-menu .c--footer-menu .menu-container nav.col-1 > ul {
        display: flex;
        flex-direction: row;
        justify-content: space-between; } }
    @media screen and (min-width: 1024px) {
      .cc--footer-menu .c--footer-menu .menu-container nav.col-1 > ul li.menu-item {
        flex: 0 0 46.66667%; } }
    .cc--footer-menu .c--footer-menu .menu-container nav > ul {
      list-style: none;
      padding: 0;
      margin: 0;
      padding-top: 0;
      padding-right: 0;
      padding-bottom: 0;
      padding-left: 0;
      margin-top: 0;
      margin-right: 0;
      margin-bottom: 0;
      margin-left: 0;
      display: flex;
      flex-direction: column;
      width: 100%; }
      @media screen and (min-width: 1024px) {
        .cc--footer-menu .c--footer-menu .menu-container nav > ul li.menu-item {
          flex: 0 0 29.16667%; } }
      @media screen and (max-width: 1023px) {
        .cc--footer-menu .c--footer-menu .menu-container nav > ul li.menu-item:nth-child(even) {
          margin-left: 10%; } }
      @media screen and (max-width: 1023px) {
        .cc--footer-menu .c--footer-menu .menu-container nav > ul li.menu-item:nth-child(n+2) {
          margin-top: 1.875rem; } }
      .cc--footer-menu .c--footer-menu .menu-container nav > ul li.menu-item > a,
      .cc--footer-menu .c--footer-menu .menu-container nav > ul li.menu-item > span {
        font-family: "Oswald", sans-serif;
        font-optical-sizing: auto;
        font-weight: 500;
        font-style: normal;
        margin-bottom: 0.9375rem;
        font-size: 0.875rem;
        line-height: 1.2858;
        display: block;
        color: #25282A;
        letter-spacing: 0.0625rem;
        text-transform: uppercase;
        text-decoration: none;
        text-align: center; }
        @media screen and (min-width: 1024px) {
          .cc--footer-menu .c--footer-menu .menu-container nav > ul li.menu-item > a,
          .cc--footer-menu .c--footer-menu .menu-container nav > ul li.menu-item > span {
            text-align: left; } }
      html[data-whatintent="mouse"] .cc--footer-menu .c--footer-menu .menu-container nav > ul li.menu-item > a {
        transition: all 0.1s; }
        html[data-whatintent="mouse"] .cc--footer-menu .c--footer-menu .menu-container nav > ul li.menu-item > a:hover {
          text-decoration: underline; }
      .cc--footer-menu .c--footer-menu .menu-container nav > ul li.menu-item .submenus-wrapper .submenus-wrapper-inner ul.submenu {
        list-style: none;
        padding: 0;
        margin: 0;
        margin-top: 0;
        margin-right: 0;
        margin-bottom: 0;
        margin-left: 0;
        padding-top: 0;
        padding-right: 0;
        padding-bottom: 0;
        padding-left: 0;
        line-height: 1; }
        .cc--footer-menu .c--footer-menu .menu-container nav > ul li.menu-item .submenus-wrapper .submenus-wrapper-inner ul.submenu li {
          text-align: center; }
          @media screen and (min-width: 1024px) {
            .cc--footer-menu .c--footer-menu .menu-container nav > ul li.menu-item .submenus-wrapper .submenus-wrapper-inner ul.submenu li {
              text-align: left; } }
          .cc--footer-menu .c--footer-menu .menu-container nav > ul li.menu-item .submenus-wrapper .submenus-wrapper-inner ul.submenu li a {
            font-family: "IBM Plex Sans", sans-serif;
            font-weight: 400;
            font-style: normal;
            font-size: 0.875rem;
            line-height: 1.8572;
            color: #25282A;
            text-decoration: none; }
            html[data-whatintent="mouse"] .cc--footer-menu .c--footer-menu .menu-container nav > ul li.menu-item .submenus-wrapper .submenus-wrapper-inner ul.submenu li a {
              transition: all 0.1s; }
              html[data-whatintent="mouse"] .cc--footer-menu .c--footer-menu .menu-container nav > ul li.menu-item .submenus-wrapper .submenus-wrapper-inner ul.submenu li a:hover {
                text-decoration: underline; }
          .cc--footer-menu .c--footer-menu .menu-container nav > ul li.menu-item .submenus-wrapper .submenus-wrapper-inner ul.submenu li:not(:last-child) {
            margin-bottom: 0.9375rem; }
            @media screen and (min-width: 1024px) {
              .cc--footer-menu .c--footer-menu .menu-container nav > ul li.menu-item .submenus-wrapper .submenus-wrapper-inner ul.submenu li:not(:last-child) {
                margin-bottom: 0.5625rem; } }

footer {
  position: relative; }

.cc--footer {
  background-color: #D9D9D6; }
  .cc--footer .c--footer {
    max-width: 1800px;
    margin: 0 auto; }
    .cc--footer .c--footer .footer-main {
      padding-top: 2.1875rem;
      padding-right: 8.33333%;
      padding-bottom: 3.125rem;
      padding-left: 8.33333%;
      display: flex;
      flex-wrap: wrap; }
      @media screen and (min-width: 768px) {
        .cc--footer .c--footer .footer-main {
          padding-top: 4.6875rem;
          padding-right: 8.33333%;
          padding-bottom: 4.6875rem;
          padding-left: 8.33333%; } }
      @media screen and (min-width: 1024px) {
        .cc--footer .c--footer .footer-main {
          display: flex; } }
    .cc--footer .c--footer .footer-logo {
      flex: 0 0 100%;
      order: 1;
      display: flex;
      flex-direction: column;
      align-items: center; }
      @media screen and (min-width: 1024px) {
        .cc--footer .c--footer .footer-logo {
          flex: 0 1 17.5%;
          align-items: flex-start; } }
      .cc--footer .c--footer .footer-logo a {
        display: inline-block;
        width: 100%;
        max-width: 12.1875rem; }
        @media screen and (min-width: 768px) {
          .cc--footer .c--footer .footer-logo a {
            display: block;
            max-width: 13.625rem; } }
      .cc--footer .c--footer .footer-logo svg {
        width: 100%; }
      .cc--footer .c--footer .footer-logo .f--description {
        margin-top: 1.5625rem; }
        @media screen and (min-width: 768px) {
          .cc--footer .c--footer .footer-logo .f--description {
            margin-top: 2.1875rem; } }
        .cc--footer .c--footer .footer-logo .f--description strong {
          margin-bottom: 0.9375rem;
          font-family: "Oswald", sans-serif;
          font-optical-sizing: auto;
          font-weight: 500;
          font-style: normal;
          font-size: 0.875rem;
          line-height: 1.2858;
          letter-spacing: 0.03125rem;
          text-transform: uppercase;
          text-align: center;
          display: block; }
          @media screen and (min-width: 1024px) {
            .cc--footer .c--footer .footer-logo .f--description strong {
              text-align: left; } }
        .cc--footer .c--footer .footer-logo .f--description p {
          font-size: 0.875rem;
          line-height: 1.8572; }
          .cc--footer .c--footer .footer-logo .f--description p strong {
            font-family: "IBM Plex Sans", sans-serif;
            font-weight: 700;
            font-style: normal; }
        .cc--footer .c--footer .footer-logo .f--description ul li,
        .cc--footer .c--footer .footer-logo .f--description ul li p,
        .cc--footer .c--footer .footer-logo .f--description ol li,
        .cc--footer .c--footer .footer-logo .f--description ol li p {
          font-size: 0.875rem;
          line-height: 1.4286; }
    .cc--footer .c--footer .cc--footer-menu {
      margin-top: 1.5625rem;
      flex: 0 0 100%;
      order: 2; }
      @media screen and (min-width: 768px) {
        .cc--footer .c--footer .cc--footer-menu {
          margin-top: 3.125rem; } }
      @media screen and (min-width: 1024px) {
        .cc--footer .c--footer .cc--footer-menu {
          margin-top: 0;
          margin-bottom: 1.5625rem;
          margin-left: 22.5%;
          flex: 0 0 60%;
          order: 2; } }
    .cc--footer .c--footer .cc--social-links {
      flex: 0 0 100%;
      order: 4; }
      @media screen and (max-width: 1023px) {
        .cc--footer .c--footer .cc--social-links {
          margin-top: 1.875rem; } }
      @media screen and (min-width: 1024px) {
        .cc--footer .c--footer .cc--social-links {
          margin-left: 17.5%;
          display: flex;
          flex: 0 0 28.57143%;
          flex-direction: column;
          order: 4; } }
      .cc--footer .c--footer .cc--social-links .c--social-links ul li:not(:last-child) {
        margin-right: 1.5625rem; }
        @media screen and (min-width: 1024px) {
          .cc--footer .c--footer .cc--social-links .c--social-links ul li:not(:last-child) {
            margin-right: 8.33333%; } }
      .cc--footer .c--footer .cc--social-links .c--social-links ul li a svg {
        width: 1.5625rem;
        height: 1.5625rem; }
    .cc--footer .c--footer .footer-utility {
      margin-top: 1.5625rem;
      flex: 0 0 100%;
      order: 3; }
      @media screen and (min-width: 768px) {
        .cc--footer .c--footer .footer-utility {
          margin-top: 3.125rem; } }
      @media screen and (min-width: 1024px) {
        .cc--footer .c--footer .footer-utility {
          margin-top: 0;
          flex: 0 0 22.5%;
          display: flex;
          flex-direction: column;
          justify-content: center; } }
      .cc--footer .c--footer .footer-utility .f--description p {
        font-size: 0.875rem;
        line-height: 1.8572;
        color: #25282A;
        text-align: center; }
        @media screen and (min-width: 1024px) {
          .cc--footer .c--footer .footer-utility .f--description p {
            text-align: left; } }
    .cc--footer .c--footer .footer-link {
      flex: 0 0 100%;
      display: flex;
      justify-content: center;
      order: 5; }
      @media screen and (min-width: 1024px) {
        .cc--footer .c--footer .footer-link {
          flex: 0 0 25%;
          margin-left: auto;
          justify-content: flex-end; } }
      .cc--footer .c--footer .footer-link .f--link {
        margin-top: 2.5rem; }
        @media screen and (min-width: 1024px) {
          .cc--footer .c--footer .footer-link .f--link {
            margin-top: 0;
            margin-right: 0;
            margin-bottom: 0;
            margin-left: 0; } }
        .cc--footer .c--footer .footer-link .f--link a {
          font-family: "Oswald", sans-serif;
          font-optical-sizing: auto;
          font-weight: 600;
          font-style: normal;
          font-size: 1.125rem;
          line-height: 1.4445;
          padding-right: 2.96875rem;
          padding-left: 2.96875rem;
          position: relative;
          display: inline-flex;
          justify-content: center;
          align-items: center;
          text-decoration: none;
          text-align: center;
          letter-spacing: 0.03125rem;
          width: auto;
          min-height: 3.125rem;
          border-radius: 0;
          color: #25282A;
          background-color: #D6A461;
          -webkit-appearance: none;
             -moz-appearance: none;
                  appearance: none;
          text-transform: uppercase; }
          @media screen and (min-width: 768px) {
            .cc--footer .c--footer .footer-link .f--link a {
              min-height: 3.75rem; } }
          @media screen and (min-width: 1024px) {
            .cc--footer .c--footer .footer-link .f--link a {
              padding-right: 1.25rem;
              padding-left: 1.25rem; } }
          .cc--footer .c--footer .footer-link .f--link a:focus {
            transition: color 0.1s ease-in-out, background-color 0.1s ease-in-out;
            color: #25282A;
            background-color: #D6A461;
            text-decoration: none; }
          html[data-whatintent="mouse"] .cc--footer .c--footer .footer-link .f--link a {
            transition: all 0.1s; }
            html[data-whatintent="mouse"] .cc--footer .c--footer .footer-link .f--link a:hover {
              transition: color 0.1s ease-in-out, background-color 0.1s ease-in-out;
              color: #FFF;
              background-color: #862633;
              text-decoration: none; }

.cc--full-width-cta {
  position: relative;
  background-color: #25282A; }
  .cc--full-width-cta .text-container {
    position: relative;
    background-color: #25282A;
    z-index: 2; }
    @media screen and (min-width: 1024px) {
      .cc--full-width-cta .text-container {
        margin-top: -12.5rem;
        margin-right: auto;
        margin-left: auto;
        background-color: transparent; } }
    .cc--full-width-cta .text-container .inner-wrapper {
      padding-right: 8.33333%;
      padding-bottom: 2.8125rem;
      padding-left: 8.33333%;
      position: relative; }
      @media screen and (min-width: 1024px) {
        .cc--full-width-cta .text-container .inner-wrapper {
          padding-top: 5.3125rem;
          padding-right: 0;
          padding-bottom: 4.6875rem;
          padding-left: 0; } }
  @media screen and (min-width: 1024px) {
    .cc--full-width-cta .f--section-title {
      margin-right: auto;
      margin-left: auto;
      width: 58.33333%; } }
  .cc--full-width-cta .f--section-title h2 {
    color: #FFF;
    text-transform: uppercase;
    text-align: center; }
  .cc--full-width-cta .f--description {
    margin-top: 0.625rem;
    position: relative;
    z-index: 1; }
    @media screen and (min-width: 1024px) {
      .cc--full-width-cta .f--description {
        margin-top: 0.9375rem;
        margin-right: auto;
        margin-left: auto;
        width: 58.33333%; } }
    .cc--full-width-cta .f--description p {
      font-size: 1.125rem;
      line-height: 1.6667;
      color: #FFF;
      text-align: center; }
      @media screen and (min-width: 768px) {
        .cc--full-width-cta .f--description p {
          font-size: 1.25rem;
          line-height: 1.6; } }
    .cc--full-width-cta .f--description a {
      color: inherit; }
  .cc--full-width-cta .f--eyebrow {
    padding-top: 0.6875rem;
    padding-right: 0.625rem;
    padding-bottom: 0.6875rem;
    padding-left: 0.625rem;
    margin-bottom: 0.9375rem;
    background-color: #507F70;
    display: inline-flex;
    margin-bottom: 0.3125rem;
    padding-top: 0;
    padding-right: 0;
    padding-bottom: 0;
    padding-left: 0;
    background-color: transparent;
    position: relative;
    z-index: 2; }
    @media screen and (min-width: 768px) {
      .cc--full-width-cta .f--eyebrow {
        margin-bottom: 1.5625rem; } }
    .cc--full-width-cta .f--eyebrow span,
    .cc--full-width-cta .f--eyebrow a {
      font-family: "Oswald", sans-serif;
      font-optical-sizing: auto;
      font-weight: 500;
      font-style: normal;
      font-size: 0.875rem;
      line-height: 1.2858;
      color: #FFF;
      text-transform: uppercase; }
    .cc--full-width-cta .f--eyebrow a {
      text-decoration: none; }
      html[data-whatintent="mouse"] .cc--full-width-cta .f--eyebrow a {
        transition: all 0.1s; }
        html[data-whatintent="mouse"] .cc--full-width-cta .f--eyebrow a:hover {
          text-decoration: underline; }
    @media screen and (min-width: 768px) {
      .cc--full-width-cta .f--eyebrow {
        margin-bottom: 0.625rem; } }
    .cc--full-width-cta .f--eyebrow span,
    .cc--full-width-cta .f--eyebrow a {
      color: #FFF; }
  .cc--full-width-cta .links-container {
    padding-right: 10%;
    padding-left: 10%;
    margin-top: 1.25rem;
    display: flex;
    flex-direction: column;
    justify-content: center; }
    @media screen and (min-width: 1024px) {
      .cc--full-width-cta .links-container {
        margin-top: 1.5625rem;
        flex-direction: row;
        flex-wrap: wrap;
        -moz-column-gap: 0.625rem;
             column-gap: 0.625rem; } }
  .cc--full-width-cta .f--link {
    text-align: center; }
    .cc--full-width-cta .f--link:not(:last-child) {
      margin-bottom: 0.625rem; }
    .cc--full-width-cta .f--link a {
      font-family: "Oswald", sans-serif;
      font-optical-sizing: auto;
      font-weight: 600;
      font-style: normal;
      font-size: 1.125rem;
      line-height: 1.4445;
      padding-right: 2.96875rem;
      padding-left: 2.96875rem;
      position: relative;
      display: inline-flex;
      justify-content: center;
      align-items: center;
      text-decoration: none;
      text-align: center;
      letter-spacing: 0.03125rem;
      width: auto;
      min-height: 3.125rem;
      border-radius: 0;
      color: #25282A;
      background-color: #D6A461;
      -webkit-appearance: none;
         -moz-appearance: none;
              appearance: none;
      text-transform: uppercase;
      width: 100%; }
      @media screen and (min-width: 768px) {
        .cc--full-width-cta .f--link a {
          min-height: 3.75rem; } }
      @media screen and (min-width: 1024px) {
        .cc--full-width-cta .f--link a {
          padding-right: 1.25rem;
          padding-left: 1.25rem; } }
      .cc--full-width-cta .f--link a:focus {
        transition: color 0.1s ease-in-out, background-color 0.1s ease-in-out;
        color: #25282A;
        background-color: #D6A461;
        text-decoration: none; }
      html[data-whatintent="mouse"] .cc--full-width-cta .f--link a {
        transition: all 0.1s; }
        html[data-whatintent="mouse"] .cc--full-width-cta .f--link a:hover {
          transition: color 0.1s ease-in-out, background-color 0.1s ease-in-out;
          color: #FFF;
          background-color: #862633;
          text-decoration: none; }
      @media screen and (min-width: 1024px) {
        .cc--full-width-cta .f--link a {
          width: auto; } }
  .cc--full-width-cta .image-container {
    position: relative;
    width: 100%;
    aspect-ratio: 7 / 3;
    overflow: hidden; }
    @media screen and (min-width: 1024px) {
      .cc--full-width-cta .image-container {
        aspect-ratio: 12 / 5; } }
    @media screen and (min-width: 1800px) {
      .cc--full-width-cta .image-container {
        aspect-ratio: auto;
        height: 46.875rem; } }
    .cc--full-width-cta .image-container::after {
      position: absolute;
      bottom: 0;
      left: 0;
      content: '';
      display: block;
      width: 100%;
      height: 2.1875rem;
      background-image: linear-gradient(180deg, rgba(37, 40, 42, 0) 0%, #25282A 100%);
      z-index: 2; }
      @media screen and (min-width: 1024px) {
        .cc--full-width-cta .image-container::after {
          height: 12.5rem;
          background-image: linear-gradient(180deg, rgba(37, 40, 42, 0) 4%, #25282A 100%); } }
    .cc--full-width-cta .image-container .f--image {
      height: 100%;
      width: 100%; }
      @media screen and (min-width: 1024px) {
        .cc--full-width-cta .image-container .f--image {
          position: absolute;
          top: 0;
          left: 0; } }
      .cc--full-width-cta .image-container .f--image img {
        height: 100%;
        -o-object-fit: cover;
           object-fit: cover; }
    .cc--full-width-cta .image-container .f--ambient-video {
      display: none;
      aspect-ratio: 7 / 3;
      position: relative;
      z-index: 1; }
      @media screen and (min-width: 1024px) {
        .cc--full-width-cta .image-container .f--ambient-video {
          display: block;
          aspect-ratio: 12 / 5; } }
      @media screen and (min-width: 1800px) {
        .cc--full-width-cta .image-container .f--ambient-video {
          aspect-ratio: auto;
          height: 46.875rem; } }
      .cc--full-width-cta .image-container .f--ambient-video video {
        width: 100%;
        height: 100%;
        -o-object-fit: cover;
           object-fit: cover;
        display: block; }
    .cc--full-width-cta .image-container .cc--video-controls {
      top: 0;
      bottom: auto;
      z-index: 3; }

.cc--gs-component .cc--gs-component {
  max-width: 1800px;
  margin: 0 auto; }

.cc--gs-component .c--gs-component {
  padding-right: 8.33333%;
  padding-left: 8.33333%; }
  @media screen and (min-width: 768px) {
    .cc--gs-component .c--gs-component {
      padding-right: 8.33333%;
      padding-left: 8.33333%; } }
  @media screen and (min-width: 1024px) {
    .cc--gs-component .c--gs-component {
      padding-right: 18.75%;
      padding-left: 18.75%; } }

.cc--gs-component .f--page-title {
  padding-top: 2.1875rem;
  padding-right: 8.33333%;
  padding-left: 8.33333%;
  text-align: center; }
  @media screen and (min-width: 768px) {
    .cc--gs-component .f--page-title {
      padding-top: 4.0625rem;
      padding-right: 12.5%;
      padding-left: 12.5%; } }
  @media screen and (min-width: 1024px) {
    .cc--gs-component .f--page-title {
      padding-top: 5.625rem;
      padding-right: 29.16667%;
      padding-left: 29.16667%; } }
  .cc--gs-component .f--page-title h1 {
    font-size: 2.5rem;
    line-height: 1.05; }
    @media screen and (min-width: 768px) {
      .cc--gs-component .f--page-title h1 {
        font-size: 3.125rem;
        line-height: 1.04; } }

.cc--gs-component .f--wysiwyg {
  padding-top: 1.5625rem;
  padding-right: 8.33333%;
  padding-left: 8.33333%; }
  @media screen and (min-width: 768px) {
    .cc--gs-component .f--wysiwyg {
      padding-right: 8.33333%;
      padding-left: 8.33333%; } }
  @media screen and (min-width: 1024px) {
    .cc--gs-component .f--wysiwyg {
      padding-right: 18.75%;
      padding-left: 18.75%; } }
  .cc--gs-component .f--wysiwyg table {
    width: 100%;
    min-width: auto; }
    .cc--gs-component .f--wysiwyg table.gsc-search-box {
      background: #97999B; }
      .cc--gs-component .f--wysiwyg table.gsc-search-box .gsc-input-box {
        padding: 0;
        border: 0;
        background: none; }
      .cc--gs-component .f--wysiwyg table.gsc-search-box .gsib_a {
        padding: 0; }
      .cc--gs-component .f--wysiwyg table.gsc-search-box .gsib_b {
        display: none; }
      .cc--gs-component .f--wysiwyg table.gsc-search-box input.gsc-input {
        font-family: "IBM Plex Sans", sans-serif;
        font-weight: 400;
        font-style: normal;
        font-size: 1.25rem;
        line-height: 1.6;
        height: 4.6875rem !important;
        margin: 0 !important;
        padding-left: 0.9375rem !important;
        background: none !important;
        color: #25282A; }
        @media screen and (min-width: 768px) {
          .cc--gs-component .f--wysiwyg table.gsc-search-box input.gsc-input {
            padding-left: 2rem !important; } }
        @media screen and (min-width: 1024px) {
          .cc--gs-component .f--wysiwyg table.gsc-search-box input.gsc-input {
            padding-left: 3.125rem !important; } }
        .cc--gs-component .f--wysiwyg table.gsc-search-box input.gsc-input::-moz-placeholder {
          opacity: 1;
          color: #25282A; }
        .cc--gs-component .f--wysiwyg table.gsc-search-box input.gsc-input::placeholder {
          opacity: 1;
          color: #25282A; }
      .cc--gs-component .f--wysiwyg table.gsc-search-box td.gsc-search-button {
        margin: 0; }
      .cc--gs-component .f--wysiwyg table.gsc-search-box button.gsc-search-button {
        padding-top: 0.625rem;
        padding-right: 0.9375rem;
        padding-bottom: 0.625rem;
        padding-left: 0.8125rem;
        display: flex;
        position: relative;
        height: 100%;
        margin: 0;
        border: 0;
        background: none;
        cursor: pointer; }
        @media screen and (min-width: 768px) {
          .cc--gs-component .f--wysiwyg table.gsc-search-box button.gsc-search-button {
            padding-top: 0.625rem;
            padding-right: 1.5625rem;
            padding-bottom: 0.625rem;
            padding-left: 1.5625rem; } }
        .cc--gs-component .f--wysiwyg table.gsc-search-box button.gsc-search-button::after {
          display: block;
          width: 2.1875rem;
          height: 2.1875rem;
          background-image: url("data:image/svg+xml;base64,PHN2ZyBoZWlnaHQ9IjIwIiB2aWV3Qm94PSIwIDAgMjAgMjAiIHdpZHRoPSIyMCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48cGF0aCBkPSJtMTYuMzc1NDQ1NyAyNC43NDE4NzcxYzEuODg1NjM2OC4wMDEzMDU3IDMuNzE1ODcwNC0uNjM3NzUwMyA1LjE5MTE0MjMtMS44MTI1NzIzbDUuMDY4ODQ2NCA1LjA3MDY5NTIgMS4zNjQ1NjU2LTEuMzY1MDYzMy01LjA2ODg0NjMtNS4wNzA2OTUyYzIuNDIwNDI0OS0zLjA2MTA0OTQgMi40MDQ5NTg2LTcuMzg5MjA4Ny0uMDM3MjgwOS0xMC40MzI4NjkxLTIuNDQyMjM5NS0zLjA0MzY2MDM1LTYuNjYzMDQzMi0zLjk5NDk4NjA1LTEwLjE3NDA5MjEtMi4yOTMxMzU2Mi0zLjUxMTA0ODk5IDEuNzAxODUwNDItNS4zODA0NTUyIDUuNjA1MTc4OTItNC41MDYxMzUgOS40MDg4Mjk4Mi44NzQzMjAxOSAzLjgwMzY1MSA0LjI2MDMwODMgNi40OTgwNzUyIDguMTYxOCA2LjQ5NDgxMDV6bTAtMTQuODA5NjQ5NDVjMy41NTQ4NTI4IDAgNi40MzY2MzAzIDIuODgyODI4NjUgNi40MzY2MzAzIDYuNDM4OTc4MDVzLTIuODgxNzc3NSA2LjQzODk3OC02LjQzNjYzMDMgNi40Mzg5NzhjLTMuNTU0ODUyNyAwLTYuNDM2NjMwMjQtMi44ODI4Mjg2LTYuNDM2NjMwMjQtNi40Mzg5NzhzMi44ODE3Nzc1NC02LjQzODk3ODA1IDYuNDM2NjMwMjQtNi40Mzg5NzgwNXoiIGZpbGw9IiM5MDAiIGZpbGwtcnVsZT0iZXZlbm9kZCIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoLTggLTgpIi8+PC9zdmc+");
          background-repeat: no-repeat;
          background-position: center;
          content: ''; }
        .cc--gs-component .f--wysiwyg table.gsc-search-box button.gsc-search-button svg {
          display: none; }

.cc--gs-component .gsc-refinementsArea {
  padding-top: 0;
  padding-right: 0;
  padding-bottom: 0;
  padding-left: 0;
  margin-top: 2.1875rem;
  margin-bottom: 1.5625rem;
  display: none;
  border: 0;
  border-radius: 0; }
  @media screen and (min-width: 768px) {
    .cc--gs-component .gsc-refinementsArea {
      padding-right: 2.38095%;
      padding-left: 2.38095%;
      margin-top: 2.75rem;
      margin-bottom: 2.1875rem; } }
  @media screen and (min-width: 1024px) {
    .cc--gs-component .gsc-refinementsArea {
      padding-right: 6.66667%;
      padding-left: 6.66667%; } }
  .cc--gs-component .gsc-refinementsArea .gsc-refinementHeader {
    font-family: "IBM Plex Sans", sans-serif;
    font-weight: 700;
    font-style: normal;
    font-size: 1.125rem;
    line-height: 1.4445;
    padding-right: 0;
    padding-bottom: 0.3125rem;
    padding-left: 0;
    margin-right: 0.9375rem;
    display: inline-block;
    color: #000;
    text-decoration: none;
    white-space: nowrap; }
    @media screen and (min-width: 768px) {
      .cc--gs-component .gsc-refinementsArea .gsc-refinementHeader {
        font-size: 1.375rem;
        line-height: 1;
        padding-bottom: 0.875rem;
        margin-right: 2.1875rem; } }
    @media screen and (max-width: 767px) {
      .cc--gs-component .gsc-refinementsArea .gsc-refinementHeader:last-child {
        padding-right: 1.25rem; } }
    html[data-whatintent="mouse"] .cc--gs-component .gsc-refinementsArea .gsc-refinementHeader {
      transition: all 0.1s; }
      html[data-whatintent="mouse"] .cc--gs-component .gsc-refinementsArea .gsc-refinementHeader:hover {
        color: #000; }
    .cc--gs-component .gsc-refinementsArea .gsc-refinementHeader.gsc-refinementhActive {
      border-bottom: 0.1875rem solid #000;
      color: #000; }

.cc--gs-component .gs-per-result-labels {
  position: absolute;
  white-space: nowrap;
  width: 1px;
  height: 1px;
  overflow: hidden;
  border: 0;
  padding: 0;
  clip: rect(0 0 0 0);
  -webkit-clip-path: inset(50%);
          clip-path: inset(50%);
  margin: -1px; }

.cc--gs-component .gsc-control-cse {
  max-width: 1800px;
  margin: 0 auto;
  padding-top: 0;
  padding-right: 0;
  padding-bottom: 0;
  padding-left: 0;
  border: 0;
  background: none; }
  .cc--gs-component .gsc-control-cse .gsc-search-box {
    margin-bottom: 2.5rem; }
    @media screen and (min-width: 768px) {
      .cc--gs-component .gsc-control-cse .gsc-search-box {
        margin-bottom: 2.1875rem; } }
  .cc--gs-component .gsc-control-cse .gsc-above-wrapper-area {
    padding-top: 0;
    padding-right: 0;
    padding-bottom: 0;
    padding-left: 0;
    display: block;
    border: 0; }
    @media screen and (min-width: 1024px) {
      .cc--gs-component .gsc-control-cse .gsc-above-wrapper-area {
        padding-right: 0;
        padding-left: 3.33333%; } }
    .cc--gs-component .gsc-control-cse .gsc-above-wrapper-area .responsive-table {
      margin-top: 0;
      margin-right: 0;
      margin-bottom: 0;
      margin-left: 0;
      overflow: hidden; }
    .cc--gs-component .gsc-control-cse .gsc-above-wrapper-area table {
      margin-top: 0;
      margin-right: 0;
      margin-bottom: 0;
      margin-left: 0;
      border: 0; }
      .cc--gs-component .gsc-control-cse .gsc-above-wrapper-area table td,
      .cc--gs-component .gsc-control-cse .gsc-above-wrapper-area table tr {
        padding-top: 0;
        padding-right: 0;
        padding-bottom: 0;
        padding-left: 0;
        border: 0; }
      @media screen and (max-width: 767px) {
        .cc--gs-component .gsc-control-cse .gsc-above-wrapper-area table .gsc-result-info-container,
        .cc--gs-component .gsc-control-cse .gsc-above-wrapper-area table .gsc-orderby-container {
          display: block;
          text-align: left; }
          .cc--gs-component .gsc-control-cse .gsc-above-wrapper-area table .gsc-result-info-container .gsc-result-info,
          .cc--gs-component .gsc-control-cse .gsc-above-wrapper-area table .gsc-orderby-container .gsc-result-info {
            margin-bottom: 1.25rem; } }
    .cc--gs-component .gsc-control-cse .gsc-above-wrapper-area .gsc-result-info {
      font-family: "IBM Plex Sans", sans-serif;
      font-weight: 400;
      font-style: italic;
      padding-top: 0;
      padding-right: 0;
      padding-bottom: 0;
      padding-left: 0;
      font-size: 1.125rem;
      line-height: 1.1112;
      color: #000;
      font-style: italic; }
    .cc--gs-component .gsc-control-cse .gsc-above-wrapper-area .gsc-orderby-container .gsc-orderby-label {
      font-family: "IBM Plex Sans", sans-serif;
      font-weight: 700;
      font-style: normal;
      font-size: 0.75rem;
      line-height: 1.5;
      padding: 0;
      color: #862633;
      letter-spacing: 0.125rem;
      text-transform: uppercase; }
      @media screen and (max-width: 767px) {
        .cc--gs-component .gsc-control-cse .gsc-above-wrapper-area .gsc-orderby-container .gsc-orderby-label {
          margin-right: 0.625rem; } }
    .cc--gs-component .gsc-control-cse .gsc-above-wrapper-area .gsc-orderby-container .gsc-selected-option-container {
      padding-left: 0;
      border: 0;
      background: none;
      box-shadow: none; }
    .cc--gs-component .gsc-control-cse .gsc-above-wrapper-area .gsc-orderby-container .gsc-option-selector {
      width: 0.75rem;
      height: 0.75rem;
      background-image: url("data:image/svg+xml;base64,PHN2ZyBoZWlnaHQ9IjgiIHZpZXdCb3g9IjAgMCAxNCA4IiB3aWR0aD0iMTQiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PHBhdGggZD0ibTE1IDE3LjMyNjUzMDYgNS4zMjY1MzA2LTUuMzI2NTMwNiAxLjEwMjA0MDggMS4xMDIwNDA4LTYuNDI4NTcxNCA2LjQyODU3MTQtNi40Mjg1NzE0My02LjQyODU3MTQgMS4xMDIwNDA4Mi0xLjEwMjA0MDh6IiBmaWxsLXJ1bGU9ImV2ZW5vZGQiIHRyYW5zZm9ybT0idHJhbnNsYXRlKC04IC0xMikiLz48L3N2Zz4=");
      background-repeat: no-repeat;
      background-position: center; }
    .cc--gs-component .gsc-control-cse .gsc-above-wrapper-area .gsc-orderby-container .gsc-selected-option {
      font-family: "IBM Plex Sans", sans-serif;
      font-weight: 700;
      font-style: normal;
      font-size: 1.125rem;
      line-height: 1.6667;
      padding-right: 1.125rem;
      color: #000; }
  .cc--gs-component .gsc-control-cse .gsc-wrapper {
    padding-top: 1.75rem; }
    @media screen and (min-width: 768px) {
      .cc--gs-component .gsc-control-cse .gsc-wrapper {
        padding-top: 2.375rem; } }
    .cc--gs-component .gsc-control-cse .gsc-wrapper .gsc-results {
      margin-bottom: 3.75rem;
      width: 100%; }
      @media screen and (min-width: 768px) {
        .cc--gs-component .gsc-control-cse .gsc-wrapper .gsc-results {
          margin-bottom: 4.6875rem;
          display: flex;
          flex-wrap: wrap;
          justify-content: space-between; } }
    .cc--gs-component .gsc-control-cse .gsc-wrapper .gsc-expansionArea {
      margin-bottom: 1.5625rem;
      width: 100%; }
      @media screen and (min-width: 1024px) {
        .cc--gs-component .gsc-control-cse .gsc-wrapper .gsc-expansionArea {
          margin-right: 3.33333%;
          margin-bottom: 2.1875rem;
          margin-left: 3.33333%; } }
    .cc--gs-component .gsc-control-cse .gsc-wrapper .gs-no-results-result .gs-snippet {
      border: 0;
      background: none;
      text-align: center; }
      .cc--gs-component .gsc-control-cse .gsc-wrapper .gs-no-results-result .gs-snippet,
      .cc--gs-component .gsc-control-cse .gsc-wrapper .gs-no-results-result .gs-snippet b,
      .cc--gs-component .gsc-control-cse .gsc-wrapper .gs-no-results-result .gs-snippet * {
        font-family: "IBM Plex Sans", sans-serif;
        font-weight: 700;
        font-style: normal;
        font-size: 1.25rem;
        line-height: 1.2;
        margin-bottom: 0.625rem;
        color: #000; }
        @media screen and (min-width: 768px) {
          .cc--gs-component .gsc-control-cse .gsc-wrapper .gs-no-results-result .gs-snippet,
          .cc--gs-component .gsc-control-cse .gsc-wrapper .gs-no-results-result .gs-snippet b,
          .cc--gs-component .gsc-control-cse .gsc-wrapper .gs-no-results-result .gs-snippet * {
            font-size: 1.625rem;
            line-height: 1.1539; } }
    .cc--gs-component .gsc-control-cse .gsc-wrapper .gsc-result {
      margin-top: 0;
      margin-right: 0;
      margin-bottom: 1.1875rem;
      margin-left: 0;
      padding-top: 0;
      padding-right: 0;
      padding-bottom: 0.875rem;
      padding-left: 0;
      width: 100%;
      border: 0;
      border-bottom: 0.0625rem solid #D9D9D6; }
      @media screen and (min-width: 768px) {
        .cc--gs-component .gsc-control-cse .gsc-wrapper .gsc-result {
          margin-top: 0;
          margin-right: 0;
          margin-bottom: 2.1875rem;
          margin-left: 0;
          padding-top: 0;
          padding-right: 0;
          padding-bottom: 1.25rem;
          padding-left: 0; } }
      .cc--gs-component .gsc-control-cse .gsc-wrapper .gsc-result:last-child {
        margin-bottom: 0; }
      .cc--gs-component .gsc-control-cse .gsc-wrapper .gsc-result .gs-result {
        display: flex;
        flex-direction: column; }
      .cc--gs-component .gsc-control-cse .gsc-wrapper .gsc-result .gsc-thumbnail-inside {
        padding-top: 0;
        padding-right: 0;
        padding-bottom: 0;
        padding-left: 0;
        order: 0; }
      .cc--gs-component .gsc-control-cse .gsc-wrapper .gsc-result .gs-title {
        margin-bottom: 0.625rem; }
        @media screen and (min-width: 768px) {
          .cc--gs-component .gsc-control-cse .gsc-wrapper .gsc-result .gs-title {
            margin-bottom: 0.75rem; } }
        .cc--gs-component .gsc-control-cse .gsc-wrapper .gsc-result .gs-title .gs-title {
          font-family: "IBM Plex Sans", sans-serif;
          font-weight: 700;
          font-style: normal;
          margin-top: 0;
          margin-right: 0;
          margin-bottom: 0;
          margin-left: 0;
          overflow: initial; }
        .cc--gs-component .gsc-control-cse .gsc-wrapper .gsc-result .gs-title,
        .cc--gs-component .gsc-control-cse .gsc-wrapper .gsc-result .gs-title a,
        .cc--gs-component .gsc-control-cse .gsc-wrapper .gsc-result .gs-title b,
        .cc--gs-component .gsc-control-cse .gsc-wrapper .gsc-result .gs-title * {
          font-size: 1.125rem;
          line-height: 1.4445;
          color: #000;
          text-decoration: none;
          overflow: initial; }
          @media screen and (min-width: 768px) {
            .cc--gs-component .gsc-control-cse .gsc-wrapper .gsc-result .gs-title,
            .cc--gs-component .gsc-control-cse .gsc-wrapper .gsc-result .gs-title a,
            .cc--gs-component .gsc-control-cse .gsc-wrapper .gsc-result .gs-title b,
            .cc--gs-component .gsc-control-cse .gsc-wrapper .gsc-result .gs-title * {
              font-size: 1.25rem;
              line-height: 1.4; } }
          html[data-whatintent="mouse"] .cc--gs-component .gsc-control-cse .gsc-wrapper .gsc-result .gs-title, html[data-whatintent="mouse"]
          .cc--gs-component .gsc-control-cse .gsc-wrapper .gsc-result .gs-title a, html[data-whatintent="mouse"]
          .cc--gs-component .gsc-control-cse .gsc-wrapper .gsc-result .gs-title b, html[data-whatintent="mouse"]
          .cc--gs-component .gsc-control-cse .gsc-wrapper .gsc-result .gs-title * {
            transition: all 0.1s; }
            html[data-whatintent="mouse"] .cc--gs-component .gsc-control-cse .gsc-wrapper .gsc-result .gs-title:hover, html[data-whatintent="mouse"]
            .cc--gs-component .gsc-control-cse .gsc-wrapper .gsc-result .gs-title a:hover, html[data-whatintent="mouse"]
            .cc--gs-component .gsc-control-cse .gsc-wrapper .gsc-result .gs-title b:hover, html[data-whatintent="mouse"]
            .cc--gs-component .gsc-control-cse .gsc-wrapper .gsc-result .gs-title *:hover {
              text-decoration: underline; }
        .cc--gs-component .gsc-control-cse .gsc-wrapper .gsc-result .gs-title b {
          font-weight: 600; }
      .cc--gs-component .gsc-control-cse .gsc-wrapper .gsc-result .gsc-url-top {
        margin-bottom: 0.3125rem;
        order: 1;
        padding: 0; }
        @media screen and (min-width: 768px) {
          .cc--gs-component .gsc-control-cse .gsc-wrapper .gsc-result .gsc-url-top {
            padding-right: 31.57895%; } }
        @media screen and (min-width: 1024px) {
          .cc--gs-component .gsc-control-cse .gsc-wrapper .gsc-result .gsc-url-top {
            padding-right: 32.14286%; } }
        .cc--gs-component .gsc-control-cse .gsc-wrapper .gsc-result .gsc-url-top .gs-visibleUrl {
          font-size: 0.9375rem;
          line-height: 1.6667;
          color: #25282A;
          font-style: italic;
          text-overflow: ellipsis;
          white-space: nowrap; }
          @media screen and (min-width: 768px) {
            .cc--gs-component .gsc-control-cse .gsc-wrapper .gsc-result .gsc-url-top .gs-visibleUrl {
              font-size: 1rem;
              line-height: 1.75; } }
        .cc--gs-component .gsc-control-cse .gsc-wrapper .gsc-result .gsc-url-top .gs-visibleUrl-long {
          font-family: "IBM Plex Sans", sans-serif;
          font-weight: 400;
          font-style: normal;
          font-size: 1.125rem;
          line-height: 1.4445;
          display: block; }
        .cc--gs-component .gsc-control-cse .gsc-wrapper .gsc-result .gsc-url-top .gs-visibleUrl-breadcrumb {
          display: none; }
      .cc--gs-component .gsc-control-cse .gsc-wrapper .gsc-result .gsc-table-result {
        display: none; }
    .cc--gs-component .gsc-control-cse .gsc-wrapper .gsc-cursor-box {
      display: flex;
      justify-content: center;
      width: 100%;
      margin: 0;
      border: 0; }
      .cc--gs-component .gsc-control-cse .gsc-wrapper .gsc-cursor-box .gsc-cursor .gsc-cursor-page {
        font-family: "IBM Plex Sans", sans-serif;
        font-weight: 700;
        font-style: normal;
        font-size: 1.125rem;
        line-height: 1.2778;
        margin-right: 0.5rem;
        margin-left: 0.4375rem;
        display: inline-block;
        width: 1.25rem;
        color: #000;
        text-align: center; }
        html[data-whatintent="mouse"] .cc--gs-component .gsc-control-cse .gsc-wrapper .gsc-cursor-box .gsc-cursor .gsc-cursor-page {
          transition: all 0.1s; }
          html[data-whatintent="mouse"] .cc--gs-component .gsc-control-cse .gsc-wrapper .gsc-cursor-box .gsc-cursor .gsc-cursor-page:hover {
            text-decoration: underline; }
      .cc--gs-component .gsc-control-cse .gsc-wrapper .gsc-cursor-box .gsc-cursor .gsc-cursor-current-page {
        color: #862633;
        font-weight: bold; }
    .cc--gs-component .gsc-control-cse .gsc-wrapper .gcsc-find-more-on-google-root,
    .cc--gs-component .gsc-control-cse .gsc-wrapper .gcsc-more-maybe-branding-root {
      display: none; }

.search .gssb_a,
.search .gssb_a td,
.search-results .gssb_a,
.search-results .gssb_a td {
  white-space: normal; }

.cc--header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  transition: transform 0.3s ease-in-out;
  z-index: 5; }
  .not-sticky .cc--header {
    position: relative;
    transition: none;
    transform: none !important; }
  @media screen and (min-width: 1024px) {
    .chaptered-page .cc--header::after {
      content: '';
      height: 1.875rem;
      width: 100%;
      display: block;
      background-color: transparent;
      transition: background-color 0.3s ease-in-out; }
    .not-sticky .cc--header::after {
      display: none; }
    .customize-support .cc--header {
      top: 2rem; } }
  .cc--header .header-outer {
    position: relative;
    background-color: #862633; }
    .transparent-header .cc--header .header-outer {
      background-color: transparent;
      transition: all .5s ease; }
      .transparent-header .cc--header .header-outer::before {
        position: absolute;
        top: 0;
        left: 0;
        content: '';
        width: 100%;
        height: 3.125rem;
        display: block;
        background-color: #862633; }
  .cc--header.scroll-down {
    transform: translate3d(0, -218%, 0);
    box-shadow: none; }
    @media screen and (min-width: 1024px) {
      .cc--header.scroll-down {
        transform: translate3d(0, -120%, 0);
        background-color: #862633; } }
    .cc--header.scroll-down .cc--main-menu .m--menu > li .submenus-wrapper {
      display: none; }
  .cc--header.scroll-up {
    transform: none;
    transition: all .5s ease; }
    @media screen and (min-width: 1024px) {
      .cc--header.scroll-up {
        background-color: #862633; }
        .chaptered-page .cc--header.scroll-up::after {
          content: '';
          height: 1.875rem;
          width: 100%;
          display: block;
          background-color: #862633; }
        .not-sticky .cc--header.scroll-up::after {
          display: none; } }
  .cc--header .c--header .header-wrapper {
    max-width: 1800px;
    margin: 0 auto;
    position: relative; }
  .cc--header .c--header .header-inner {
    padding-right: 4.16667%;
    padding-left: 4.16667%; }
    @media screen and (min-width: 768px) {
      .cc--header .c--header .header-inner {
        padding-right: 4.16667%;
        padding-left: 4.16667%; } }
    @media screen and (min-width: 1024px) {
      .cc--header .c--header .header-inner {
        padding-right: 0;
        padding-left: 4.16667%;
        height: 9.375rem; } }
  .cc--header .icon-search {
    background-color: #D6A461; }
    .cc--header .icon-search .search-close {
      display: none; }
    .cc--header .icon-search.is-active {
      background-color: #CEB888; }
      .cc--header .icon-search.is-active .search-open {
        display: none; }
      .cc--header .icon-search.is-active .search-close {
        display: inline-block; }
    .cc--header .icon-search:focus {
      outline-offset: -0.1875rem !important; }
      html[data-whatinput="keyboard"] .cc--header .icon-search:focus {
        outline: 0.125rem solid #862633;
        outline-offset: 0.125rem; }
      html[data-whatinput="mouse"] .cc--header .icon-search:focus {
        outline: none;
        outline-offset: 0.125rem; }
  .cc--header .desktop-nav {
    display: none; }
    @media screen and (min-width: 1024px) {
      .cc--header .desktop-nav {
        display: flex;
        justify-content: space-between;
        height: 9.375rem; } }
    .cc--header .desktop-nav .branding-container {
      position: absolute;
      top: 0;
      left: 4.16667%; }
    @media screen and (min-width: 1024px) {
      .cc--header .desktop-nav .nav-wrapper {
        width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: space-between; } }
    .cc--header .desktop-nav .utility-nav-container {
      padding-top: 1.5625rem;
      padding-bottom: 0.9375rem;
      display: flex;
      align-items: center; }
      @media screen and (min-width: 1024px) {
        .cc--header .desktop-nav .utility-nav-container {
          padding-top: 0;
          padding-bottom: 0;
          justify-content: flex-end; } }
      .cc--header .desktop-nav .utility-nav-container .cc--branding-header,
      .cc--header .desktop-nav .utility-nav-container .icon-search {
        flex: 0 0 auto; }
      .cc--header .desktop-nav .utility-nav-container .cc--utility-menu {
        flex: 0 0 auto; }
      .cc--header .desktop-nav .utility-nav-container .icon-search {
        margin-left: 0.0625rem;
        position: relative;
        padding: 0;
        border: 0;
        z-index: 5;
        cursor: pointer; }
        .cc--header .desktop-nav .utility-nav-container .icon-search svg.search-close {
          width: 1.875rem;
          height: 1.875rem; }
        .cc--header .desktop-nav .utility-nav-container .icon-search svg.search-open {
          width: 1.875rem;
          height: 1.875rem; }
  @media screen and (min-width: 1024px) {
    .cc--header .mobile-nav {
      display: none; } }
  .cc--header .mobile-nav-topbar-container {
    display: flex;
    justify-content: space-between;
    height: 3.125rem;
    position: relative;
    z-index: 2; }
    .not-sticky.mobile-menu-open .cc--header .mobile-nav-topbar-container {
      padding-right: 4.16667%;
      padding-left: 4.16667%;
      position: fixed;
      top: 0;
      left: 0;
      width: 100%; }
    .cc--header .mobile-nav-topbar-container .mobile-buttons {
      display: flex;
      align-items: center; }
    .cc--header .mobile-nav-topbar-container .icon-search {
      margin-right: 0.9375rem; }
    .cc--header .mobile-nav-topbar-container .mobile-menu-trigger {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 2.1875rem;
      height: 2.1875rem;
      padding: 0;
      background-color: transparent;
      border: 0;
      cursor: pointer; }
      .cc--header .mobile-nav-topbar-container .mobile-menu-trigger svg {
        fill: #FFF; }
        .cc--header .mobile-nav-topbar-container .mobile-menu-trigger svg.icon-hamburger {
          width: 2.1875rem;
          height: 2.1875rem; }
        .cc--header .mobile-nav-topbar-container .mobile-menu-trigger svg.icon-close {
          width: 1.17188rem;
          height: 1.17188rem; }
      .cc--header .mobile-nav-topbar-container .mobile-menu-trigger .search-close,
      .cc--header .mobile-nav-topbar-container .mobile-menu-trigger .icon-close {
        display: none; }
      .cc--header .mobile-nav-topbar-container .mobile-menu-trigger.is-active .icon-hamburger {
        display: none; }
      .cc--header .mobile-nav-topbar-container .mobile-menu-trigger.is-active .icon-close {
        display: block; }
  .cc--header .mobile-nav-menu-container {
    padding-bottom: 9.375rem;
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: #862633;
    overflow: auto;
    z-index: 1; }

.cc--home-hero {
  position: relative; }
  .cc--home-hero .hero-inner-wrapper {
    position: relative;
    background-color: #FFF; }
    @media screen and (min-width: 1024px) {
      .cc--home-hero .hero-inner-wrapper::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        height: 18.75rem;
        width: 100%;
        display: block;
        opacity: 0.55;
        background-image: linear-gradient(180deg, #000000 0%, rgba(0, 0, 0, 0) 100%);
        z-index: 2; } }
  .cc--home-hero .image-container {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden; }
    @media screen and (min-width: 1024px) {
      .cc--home-hero .image-container {
        aspect-ratio: none;
        height: 56.25rem;
        width: 100%; } }
    .cc--home-hero .image-container .f--image {
      height: 100%;
      width: 100%; }
      @media screen and (min-width: 1024px) {
        .cc--home-hero .image-container .f--image {
          position: absolute;
          top: 0;
          left: 0; } }
      .cc--home-hero .image-container .f--image img {
        height: 100%;
        -o-object-fit: cover;
           object-fit: cover; }
    .cc--home-hero .image-container .f--ambient-video {
      display: none;
      aspect-ratio: 4 / 3;
      position: relative;
      z-index: 1; }
      @media screen and (min-width: 1024px) {
        .cc--home-hero .image-container .f--ambient-video {
          display: block;
          aspect-ratio: none;
          height: 56.25rem;
          width: 100%; } }
      .cc--home-hero .image-container .f--ambient-video video {
        width: 100%;
        height: 100%;
        -o-object-fit: cover;
           object-fit: cover;
        display: block; }
    .cc--home-hero .image-container .cc--video-controls {
      z-index: 3; }

.cc--image-gallery {
  max-width: 1800px;
  margin: 0 auto; }
  .cc--image-gallery .text-container {
    padding-right: 8.33333%;
    padding-left: 8.33333%; }
    @media screen and (min-width: 768px) {
      .cc--image-gallery .text-container {
        padding-right: 0;
        padding-left: 0; } }
    @media screen and (min-width: 1024px) {
      .cc--image-gallery .text-container {
        padding-right: 0;
        padding-left: 0;
        display: flex;
        justify-content: space-between;
        align-items: flex-end; } }
    @media screen and (min-width: 768px) {
      .cc--image-gallery .text-container .f--section-title {
        flex: 0 0 47.5%; } }
    .cc--image-gallery .text-container .f--section-title h2 {
      font-size: 3.125rem;
      line-height: 1.04; }
      @media screen and (min-width: 768px) {
        .cc--image-gallery .text-container .f--section-title h2 {
          font-size: 4.375rem;
          line-height: 1.0858;
          letter-spacing: -0.0625rem; } }
    .cc--image-gallery .text-container .f--description {
      margin-top: 0.625rem; }
      @media screen and (min-width: 768px) {
        .cc--image-gallery .text-container .f--description {
          flex: 0 0 47.5%; } }
      .cc--image-gallery .text-container .f--description p {
        font-size: 0.9375rem;
        line-height: 1.8667; }
        @media screen and (min-width: 768px) {
          .cc--image-gallery .text-container .f--description p {
            font-size: 1rem;
            line-height: 2; } }
  .cc--image-gallery .c--image-gallery {
    padding-top: 1.875rem;
    padding-bottom: 1.875rem;
    position: relative; }
    @media screen and (min-width: 768px) {
      .cc--image-gallery .c--image-gallery {
        padding-top: 3.125rem;
        padding-right: 8.33333%;
        padding-bottom: 3.125rem;
        padding-left: 8.33333%; } }
    @media screen and (min-width: 1024px) {
      .cc--image-gallery .c--image-gallery {
        padding-top: 4.6875rem;
        padding-right: 12.5%;
        padding-bottom: 4.6875rem;
        padding-left: 12.5%; } }
    .cc--image-gallery .c--image-gallery .controls-container {
      display: flex;
      align-items: center;
      justify-content: center;
      -moz-column-gap: 0;
           column-gap: 0;
      position: absolute;
      width: calc(100% - 40px);
      padding-bottom: 56.25%;
      top: 0;
      right: 0;
      z-index: 2; }
      .cc--image-gallery .c--image-gallery .controls-container .innner-buttons {
        display: flex;
        position: absolute;
        bottom: -0.03125rem;
        right: 0;
        background-color: #FFF; }
        .cc--image-gallery .c--image-gallery .controls-container .innner-buttons::after {
          position: absolute;
          top: 50%;
          left: 50%;
          transform: translate(-50%, -50%);
          content: '';
          width: 0.0625rem;
          height: 1.5625rem;
          background-color: #D9D9D6; }
      .cc--image-gallery .c--image-gallery .controls-container button {
        display: flex;
        position: relative;
        align-items: center;
        justify-content: center;
        width: 3.125rem;
        height: 3.125rem;
        background: #FFF;
        text-align: left;
        border: 0;
        cursor: pointer; }
        .cc--image-gallery .c--image-gallery .controls-container button.swiper-button-disabled svg polygon {
          fill: rgba(0, 0, 0, 0.2); }
        .cc--image-gallery .c--image-gallery .controls-container button:not(:last-child) {
          margin-right: 0.1875rem; }
        .cc--image-gallery .c--image-gallery .controls-container button:focus {
          outline-offset: -1px; }
        .cc--image-gallery .c--image-gallery .controls-container button svg {
          width: 2.1875rem;
          height: 2.1875rem; }
        html[data-whatintent="mouse"] .cc--image-gallery .c--image-gallery .controls-container button {
          transition: all 0.1s; }
          html[data-whatintent="mouse"] .cc--image-gallery .c--image-gallery .controls-container button:hover:not(.swiper-button-disabled) svg polygon {
            fill: #862633; }
    .cc--image-gallery .c--image-gallery .image-container {
      position: relative; }
      .cc--image-gallery .c--image-gallery .image-container .f--image {
        aspect-ratio: 16 / 9; }
        .cc--image-gallery .c--image-gallery .image-container .f--image img {
          height: 100%;
          -o-object-fit: contain;
             object-fit: contain; }
    .cc--image-gallery .c--image-gallery .gallery-container {
      margin-top: 1.5625rem;
      position: relative; }
      @media screen and (min-width: 768px) {
        .cc--image-gallery .c--image-gallery .gallery-container {
          margin-top: 1.25rem; } }
      .cc--image-gallery .c--image-gallery .gallery-container.single .controls-container {
        display: none; }
    .cc--image-gallery .c--image-gallery .captions {
      margin-top: 0.9375rem;
      padding-right: 8.33333%;
      padding-left: 8.33333%; }
      @media screen and (min-width: 768px) {
        .cc--image-gallery .c--image-gallery .captions {
          margin-top: 0.625rem;
          padding-right: 0;
          padding-left: 0; } }
      .cc--image-gallery .c--image-gallery .captions span,
      .cc--image-gallery .c--image-gallery .captions div,
      .cc--image-gallery .c--image-gallery .captions p {
        display: inline; }
      .cc--image-gallery .c--image-gallery .captions span,
      .cc--image-gallery .c--image-gallery .captions p {
        padding-right: 0.1875rem; }
      .cc--image-gallery .c--image-gallery .captions span {
        font-family: "Oswald", sans-serif;
        font-optical-sizing: auto;
        font-weight: 500;
        font-style: normal;
        font-size: 0.875rem;
        line-height: 1.2858;
        text-transform: uppercase; }
      .cc--image-gallery .c--image-gallery .captions p {
        font-family: "IBM Plex Sans", sans-serif;
        font-weight: 400;
        font-style: normal;
        font-size: 0.875rem;
        line-height: 1.4286; }
      .cc--image-gallery .c--image-gallery .captions .credit p {
        font-family: "IBM Plex Sans", sans-serif;
        font-weight: 400;
        font-style: italic; }

.cc--inline-search-form {
  position: relative;
  background-color: #D6A461;
  z-index: 1; }
  @media screen and (min-width: 1024px) {
    .cc--inline-search-form .inner-wrapper {
      padding-top: 1.125rem;
      padding-right: 10.41667%;
      padding-bottom: 1.125rem;
      padding-left: 10.41667%; } }
  .cc--inline-search-form .c--inline-search-form {
    max-width: 1800px;
    margin: 0 auto;
    position: relative; }
    .cc--inline-search-form .c--inline-search-form .form-wrapper {
      padding-top: 0.9375rem;
      padding-right: 8.33333%;
      padding-bottom: 0.9375rem;
      padding-left: 8.33333%; }
      @media screen and (min-width: 768px) {
        .cc--inline-search-form .c--inline-search-form .form-wrapper {
          padding-right: 8.33333%;
          padding-left: 8.33333%; } }
      @media screen and (min-width: 1024px) {
        .cc--inline-search-form .c--inline-search-form .form-wrapper {
          padding-top: 0;
          padding-right: 0;
          padding-bottom: 0;
          padding-left: 0; } }
      @media screen and (min-width: 1024px) {
        .cc--inline-search-form .c--inline-search-form .form-wrapper form {
          display: flex;
          justify-content: center;
          margin: 0;
          -moz-column-gap: 0.625rem;
               column-gap: 0.625rem; } }
      .cc--inline-search-form .c--inline-search-form .form-wrapper form > .fi--form-item label {
        position: absolute;
        white-space: nowrap;
        width: 1px;
        height: 1px;
        overflow: hidden;
        border: 0;
        padding: 0;
        clip: rect(0 0 0 0);
        -webkit-clip-path: inset(50%);
                clip-path: inset(50%);
        margin: -1px; }
      .cc--inline-search-form .c--inline-search-form .form-wrapper form > .fi--form-item:not(:last-child) {
        margin-bottom: 0.625rem; }
        @media screen and (min-width: 1024px) {
          .cc--inline-search-form .c--inline-search-form .form-wrapper form > .fi--form-item:not(:last-child) {
            margin-bottom: 0;
            flex: 0 0 calc((100% - 23.68421%) - 10px); } }
      .cc--inline-search-form .c--inline-search-form .form-wrapper form > .fi--form-item.f--input-text {
        position: relative; }
        .cc--inline-search-form .c--inline-search-form .form-wrapper form > .fi--form-item.f--input-text input {
          height: 4.0625rem; }
          @media screen and (min-width: 1024px) {
            .cc--inline-search-form .c--inline-search-form .form-wrapper form > .fi--form-item.f--input-text input {
              padding-right: 3.50877%;
              padding-left: 3.50877%; } }
        .cc--inline-search-form .c--inline-search-form .form-wrapper form > .fi--form-item.f--input-text::after {
          position: absolute;
          top: 50%;
          transform: translateY(-50%);
          right: 0.9375rem;
          width: 1.5625rem;
          height: 1.5625rem;
          background-image: url("../images/icons/icon-search.svg");
          background-position: center center;
          background-size: cover;
          content: '';
          z-index: 1;
          pointer-events: none; }
      @media screen and (min-width: 1024px) {
        .cc--inline-search-form .c--inline-search-form .form-wrapper form > .fi--form-item.f--input-submit {
          flex: 0 0 23.68421%; } }
      .cc--inline-search-form .c--inline-search-form .form-wrapper form > .fi--form-item button {
        font-family: "Oswald", sans-serif;
        font-optical-sizing: auto;
        font-weight: 600;
        font-style: normal;
        font-size: 1.125rem;
        line-height: 1.4445;
        padding-right: 2.96875rem;
        padding-left: 2.96875rem;
        position: relative;
        display: inline-flex;
        justify-content: center;
        align-items: center;
        text-decoration: none;
        text-align: center;
        letter-spacing: 0.03125rem;
        width: auto;
        min-height: 3.125rem;
        border-radius: 0;
        color: #25282A;
        background-color: #D6A461;
        -webkit-appearance: none;
           -moz-appearance: none;
                appearance: none;
        text-transform: uppercase;
        background-color: #862633;
        color: #FFF;
        height: 3.125rem;
        border: 0;
        height: 4.0625rem;
        width: 100%; }
        @media screen and (min-width: 768px) {
          .cc--inline-search-form .c--inline-search-form .form-wrapper form > .fi--form-item button {
            min-height: 3.75rem; } }
        @media screen and (min-width: 1024px) {
          .cc--inline-search-form .c--inline-search-form .form-wrapper form > .fi--form-item button {
            padding-right: 1.25rem;
            padding-left: 1.25rem; } }
        .cc--inline-search-form .c--inline-search-form .form-wrapper form > .fi--form-item button:focus {
          transition: color 0.1s ease-in-out, background-color 0.1s ease-in-out;
          color: #25282A;
          background-color: #D6A461;
          text-decoration: none; }
        html[data-whatintent="mouse"] .cc--inline-search-form .c--inline-search-form .form-wrapper form > .fi--form-item button {
          transition: all 0.1s; }
          html[data-whatintent="mouse"] .cc--inline-search-form .c--inline-search-form .form-wrapper form > .fi--form-item button:hover {
            transition: color 0.1s ease-in-out, background-color 0.1s ease-in-out;
            color: #FFF;
            background-color: #862633;
            text-decoration: none; }
        @media screen and (min-width: 1024px) {
          .cc--inline-search-form .c--inline-search-form .form-wrapper form > .fi--form-item button {
            height: 100%;
            width: 100%; } }
        html[data-whatintent="mouse"] .cc--inline-search-form .c--inline-search-form .form-wrapper form > .fi--form-item button {
          transition: all 0.1s; }
          html[data-whatintent="mouse"] .cc--inline-search-form .c--inline-search-form .form-wrapper form > .fi--form-item button:hover {
            background-color: #25282A; }
        .cc--inline-search-form .c--inline-search-form .form-wrapper form > .fi--form-item button:focus {
          background-color: #862633;
          color: #FFF; }
      .cc--inline-search-form .c--inline-search-form .form-wrapper form .reset-button {
        font-family: "IBM Plex Sans", sans-serif;
        font-weight: 400;
        font-style: normal;
        font-size: 0.875rem;
        line-height: 1.5715;
        position: absolute;
        padding: 0;
        margin: 0;
        border: 0;
        text-decoration: underline;
        background: transparent;
        cursor: pointer;
        bottom: -2.5rem;
        left: 8.33333%;
        height: 1.625rem; }
        @media screen and (min-width: 1024px) {
          .cc--inline-search-form .c--inline-search-form .form-wrapper form .reset-button {
            bottom: -2.25rem;
            right: 4.16667%;
            left: auto; } }
        html[data-whatintent="mouse"] .cc--inline-search-form .c--inline-search-form .form-wrapper form .reset-button {
          transition: all 0.1s; }
          html[data-whatintent="mouse"] .cc--inline-search-form .c--inline-search-form .form-wrapper form .reset-button:hover {
            text-decoration: none; }
        @media screen and (min-width: 1024px) {
          .cc--inline-search-form .c--inline-search-form .form-wrapper form .reset-button {
            right: 10.41667%; } }

.cc--interactive-content-pane {
  position: relative;
  overflow: hidden; }
  .cc--interactive-content-pane .c--interactive-content-pane {
    max-width: 1800px;
    margin: 0 auto; }
    @media screen and (min-width: 1024px) {
      .cc--interactive-content-pane .c--interactive-content-pane .inner-wrapper {
        padding-top: 4.6875rem;
        padding-right: 8.33333%;
        padding-left: 6.25%;
        display: flex; } }
    .cc--interactive-content-pane .c--interactive-content-pane .header {
      padding-top: 2.1875rem;
      padding-right: 8.33333%;
      padding-left: 8.33333%; }
      @media screen and (min-width: 768px) {
        .cc--interactive-content-pane .c--interactive-content-pane .header {
          padding-top: 4.6875rem;
          padding-right: 8.33333%;
          padding-left: 8.33333%; } }
      @media screen and (min-width: 1024px) {
        .cc--interactive-content-pane .c--interactive-content-pane .header {
          padding-top: 0;
          padding-right: 9.52381%;
          padding-left: 4.7619%; } }
      .cc--interactive-content-pane .c--interactive-content-pane .header .f--section-title h2 {
        font-size: 3.125rem;
        line-height: 1.04;
        color: #FFF; }
        @media screen and (min-width: 768px) {
          .cc--interactive-content-pane .c--interactive-content-pane .header .f--section-title h2 {
            font-size: 4.375rem;
            line-height: 1.0858; } }
      .cc--interactive-content-pane .c--interactive-content-pane .header .f--description {
        margin-top: 0.625rem; }
        @media screen and (min-width: 768px) {
          .cc--interactive-content-pane .c--interactive-content-pane .header .f--description {
            margin-top: 0.9375rem; } }
        .cc--interactive-content-pane .c--interactive-content-pane .header .f--description p {
          color: #FFF; }
        .cc--interactive-content-pane .c--interactive-content-pane .header .f--description a {
          color: inherit; }
    .cc--interactive-content-pane .c--interactive-content-pane .left {
      position: relative;
      z-index: 3; }
      @media screen and (min-width: 1024px) {
        .cc--interactive-content-pane .c--interactive-content-pane .left {
          padding-right: 0;
          padding-left: 0;
          display: flex;
          flex-direction: column;
          justify-content: space-between;
          flex: 0 0 51.21951%;
          width: 51.21951%; } }
      .cc--interactive-content-pane .c--interactive-content-pane .left .interactive-content-pane-pagination {
        list-style: none;
        padding: 0;
        margin: 0;
        position: relative;
        bottom: auto;
        display: none; }
        @media screen and (min-width: 1024px) {
          .cc--interactive-content-pane .c--interactive-content-pane .left .interactive-content-pane-pagination {
            margin-top: 1.5625rem;
            padding-bottom: 3.125rem;
            display: block; } }
        .cc--interactive-content-pane .c--interactive-content-pane .left .interactive-content-pane-pagination li {
          position: relative; }
          @media screen and (min-width: 1024px) {
            .cc--interactive-content-pane .c--interactive-content-pane .left .interactive-content-pane-pagination li {
              margin-bottom: 0.53125rem;
              width: calc(100% + 4.7619%); } }
          .cc--interactive-content-pane .c--interactive-content-pane .left .interactive-content-pane-pagination li:last-child {
            margin-right: 0; }
            @media screen and (max-width: 767px) {
              .cc--interactive-content-pane .c--interactive-content-pane .left .interactive-content-pane-pagination li:last-child::after {
                display: inline-block;
                width: 3.125rem;
                content: ''; } }
            @media screen and (min-width: 768px) {
              .cc--interactive-content-pane .c--interactive-content-pane .left .interactive-content-pane-pagination li:last-child {
                margin-right: -0.15625rem;
                margin-bottom: 0; } }
          .cc--interactive-content-pane .c--interactive-content-pane .left .interactive-content-pane-pagination li span {
            padding-top: 0.8125rem;
            padding-right: 9.52381%;
            padding-bottom: 0.8125rem;
            padding-left: 4.7619%;
            font-family: "Oswald", sans-serif;
            font-optical-sizing: auto;
            font-weight: 400;
            font-style: normal;
            display: inline-block;
            background: none;
            cursor: pointer;
            font-size: 1.5rem;
            line-height: 1.4167;
            color: #FFF;
            width: 100%; }
          .cc--interactive-content-pane .c--interactive-content-pane .left .interactive-content-pane-pagination li.active span {
            color: #25282A;
            background-color: #D6A461; }
    .cc--interactive-content-pane .c--interactive-content-pane .right {
      position: relative;
      z-index: 1; }
      @media screen and (min-width: 1024px) {
        .cc--interactive-content-pane .c--interactive-content-pane .right {
          padding-right: 0;
          padding-left: 0;
          position: relative;
          flex: 0 0 48.78049%;
          width: 48.78049%;
          z-index: 2;
          background-color: #FFF; } }
      .cc--interactive-content-pane .c--interactive-content-pane .right .select-container {
        margin-top: 1.25rem;
        margin-right: 4.16667%;
        margin-bottom: 1.25rem;
        margin-left: 4.16667%;
        position: relative;
        z-index: 1; }
        @media screen and (min-width: 768px) {
          .cc--interactive-content-pane .c--interactive-content-pane .right .select-container {
            margin-top: 1.5625rem;
            margin-right: 8.33333%;
            margin-bottom: 1.5625rem;
            margin-left: 8.33333%; } }
        @media screen and (min-width: 1024px) {
          .cc--interactive-content-pane .c--interactive-content-pane .right .select-container {
            display: none; } }
        .cc--interactive-content-pane .c--interactive-content-pane .right .select-container select {
          font-family: "Oswald", sans-serif;
          font-optical-sizing: auto;
          font-weight: 400;
          font-style: normal;
          padding-top: 0.625rem;
          padding-right: 3.125rem;
          padding-bottom: 0.625rem;
          padding-left: 8.33333%;
          font-size: 1.25rem;
          line-height: 1.5;
          min-height: 3.125rem;
          width: 100%;
          border: 0;
          background: #D6A461;
          background-image: none;
          color: #25282A;
          box-shadow: none;
          -webkit-appearance: none;
          -moz-appearance: none;
          appearance: none;
          white-space: normal; }
          @media screen and (min-width: 768px) {
            .cc--interactive-content-pane .c--interactive-content-pane .right .select-container select {
              padding-right: 3.125rem;
              padding-bottom: 0.9375rem;
              padding-left: 5%;
              font-size: 1.5rem;
              line-height: 1.3334; } }
          .cc--interactive-content-pane .c--interactive-content-pane .right .select-container select::-ms-expand {
            display: none; }
        .cc--interactive-content-pane .c--interactive-content-pane .right .select-container svg {
          position: absolute;
          top: 50%;
          transform: translateY(-50%);
          right: 0.9375rem;
          width: 2.1875rem;
          height: 2.1875rem;
          pointer-events: none; }
      .cc--interactive-content-pane .c--interactive-content-pane .right .swiper {
        padding-right: 4.16667%;
        padding-left: 4.16667%;
        z-index: 3; }
        @media screen and (min-width: 768px) {
          .cc--interactive-content-pane .c--interactive-content-pane .right .swiper {
            padding-right: 8.33333%;
            padding-left: 8.33333%;
            width: 100%; } }
        @media screen and (min-width: 1024px) {
          .cc--interactive-content-pane .c--interactive-content-pane .right .swiper {
            padding-right: 0;
            padding-left: 0;
            height: 100%; } }
        .cc--interactive-content-pane .c--interactive-content-pane .right .swiper .swiper-wrapper .swiper-slide {
          width: 100%;
          height: 100%; }
          @media screen and (min-width: 1024px) {
            .cc--interactive-content-pane .c--interactive-content-pane .right .swiper .swiper-wrapper .swiper-slide {
              padding-left: 2px;
              margin-left: -2px; } }
          .cc--interactive-content-pane .c--interactive-content-pane .right .swiper .swiper-wrapper .swiper-slide .text-container {
            padding-top: 1.5625rem;
            padding-right: 9.09091%;
            padding-bottom: 1.5625rem;
            padding-left: 9.09091%;
            margin-top: 0;
            background-color: #FFF; }
            @media screen and (min-width: 768px) {
              .cc--interactive-content-pane .c--interactive-content-pane .right .swiper .swiper-wrapper .swiper-slide .text-container {
                padding-right: 5%;
                padding-left: 5%; } }
            @media screen and (min-width: 1024px) {
              .cc--interactive-content-pane .c--interactive-content-pane .right .swiper .swiper-wrapper .swiper-slide .text-container {
                padding-top: 3.125rem;
                padding-right: 15%;
                padding-left: 15%;
                height: 100%; } }
          .cc--interactive-content-pane .c--interactive-content-pane .right .swiper .swiper-wrapper .swiper-slide h3 {
            padding-bottom: 0.625rem;
            font-family: "Oswald", sans-serif;
            font-optical-sizing: auto;
            font-weight: 400;
            font-style: normal;
            font-size: 1.625rem;
            line-height: 1.3077;
            border-bottom: 0.0625rem solid #D9D9D6; }
            @media screen and (min-width: 768px) {
              .cc--interactive-content-pane .c--interactive-content-pane .right .swiper .swiper-wrapper .swiper-slide h3 {
                padding-bottom: 0.9375rem;
                font-size: 2rem;
                line-height: 1.1875; } }
          .cc--interactive-content-pane .c--interactive-content-pane .right .swiper .swiper-wrapper .swiper-slide .f--description {
            margin-top: 0.625rem; }
            @media screen and (min-width: 768px) {
              .cc--interactive-content-pane .c--interactive-content-pane .right .swiper .swiper-wrapper .swiper-slide .f--description {
                margin-top: 0.9375rem; } }
            .cc--interactive-content-pane .c--interactive-content-pane .right .swiper .swiper-wrapper .swiper-slide .f--description p {
              font-size: 0.9375rem;
              line-height: 1.8667; }
              @media screen and (min-width: 768px) {
                .cc--interactive-content-pane .c--interactive-content-pane .right .swiper .swiper-wrapper .swiper-slide .f--description p {
                  font-size: 1rem;
                  line-height: 2; } }
          .cc--interactive-content-pane .c--interactive-content-pane .right .swiper .swiper-wrapper .swiper-slide .link-container {
            margin-top: 0.9375rem; }
            @media screen and (min-width: 768px) {
              .cc--interactive-content-pane .c--interactive-content-pane .right .swiper .swiper-wrapper .swiper-slide .link-container {
                margin-top: 1.5625rem; } }
            .cc--interactive-content-pane .c--interactive-content-pane .right .swiper .swiper-wrapper .swiper-slide .link-container .f--link a {
              padding-top: 0.375rem;
              padding-bottom: 0.375rem;
              font-family: "Oswald", sans-serif;
              font-optical-sizing: auto;
              font-weight: 600;
              font-style: normal;
              font-size: 1.125rem;
              line-height: 1.2223;
              letter-spacing: 0.03125rem;
              color: #862633;
              text-decoration: none;
              text-transform: uppercase;
              display: flex;
              align-items: center;
              min-height: 1.375rem;
              display: inline-flex; }
              html[data-whatintent="mouse"] .cc--interactive-content-pane .c--interactive-content-pane .right .swiper .swiper-wrapper .swiper-slide .link-container .f--link a {
                transition: all 0.1s; }
                html[data-whatintent="mouse"] .cc--interactive-content-pane .c--interactive-content-pane .right .swiper .swiper-wrapper .swiper-slide .link-container .f--link a:hover {
                  text-decoration: underline;
                  color: #862633; }
              .cc--interactive-content-pane .c--interactive-content-pane .right .swiper .swiper-wrapper .swiper-slide .link-container .f--link a svg {
                fill: #862633; }
              .cc--interactive-content-pane .c--interactive-content-pane .right .swiper .swiper-wrapper .swiper-slide .link-container .f--link a:focus {
                outline-offset: -0.125rem; }
    .cc--interactive-content-pane .c--interactive-content-pane .image-container {
      width: 100%;
      height: 100%;
      overflow: hidden;
      position: absolute;
      top: 0;
      left: 0; }
      .cc--interactive-content-pane .c--interactive-content-pane .image-container::after {
        content: '';
        position: absolute;
        width: 100%;
        height: 100%;
        background-color: rgba(134, 38, 51, 0.85);
        display: block;
        top: 0;
        left: 0; }
      .cc--interactive-content-pane .c--interactive-content-pane .image-container .f--image {
        height: 100%;
        width: 100%; }
        .cc--interactive-content-pane .c--interactive-content-pane .image-container .f--image img {
          height: 100%;
          -o-object-fit: cover;
             object-fit: cover; }

.cc--landing-hero .c--landing-hero {
  position: relative; }

.cc--landing-hero .image-video-hero {
  background-color: #FFF; }
  .cc--landing-hero .image-video-hero .text-container {
    max-width: 1800px;
    margin: 0 auto;
    margin-top: -3.125rem;
    margin-right: auto;
    margin-left: auto;
    width: calc(100% - 8.33333%);
    background-color: #507F70;
    z-index: 2;
    position: relative; }
    @media screen and (min-width: 768px) {
      .cc--landing-hero .image-video-hero .text-container {
        width: calc(100% - 8.33333%); } }
    @media screen and (min-width: 1024px) {
      .cc--landing-hero .image-video-hero .text-container {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        max-width: 1800px;
        margin: 0 auto;
        width: auto;
        bottom: 0;
        left: 4.16667%;
        transform: none;
        max-width: calc(100% - 8.33333%); } }
    .cc--landing-hero .image-video-hero .text-container .inner-wrapper {
      padding-top: 1.25rem;
      padding-right: 4.54545%;
      padding-bottom: 1.25rem;
      padding-left: 4.54545%; }
      @media screen and (min-width: 768px) {
        .cc--landing-hero .image-video-hero .text-container .inner-wrapper {
          padding-top: 1.5625rem;
          padding-right: 3.125rem;
          padding-bottom: 1.5625rem;
          padding-left: 3.125rem; } }

.cc--landing-hero .basic-hero {
  background-color: #507F70; }
  .cc--landing-hero .basic-hero .text-container {
    max-width: 1800px;
    margin: 0 auto; }
  .cc--landing-hero .basic-hero .inner-wrapper {
    padding-top: 4.6875rem;
    padding-right: 8.33333%;
    padding-bottom: 1.25rem;
    padding-left: 8.33333%; }
    @media screen and (min-width: 768px) {
      .cc--landing-hero .basic-hero .inner-wrapper {
        padding-top: 7.1875rem;
        padding-right: 8.33333%;
        padding-bottom: 2.1875rem;
        padding-left: 8.33333%; } }
    @media screen and (min-width: 1024px) {
      .cc--landing-hero .basic-hero .inner-wrapper {
        padding-top: 4.0625rem;
        padding-right: 6.25%;
        padding-bottom: 4.0625rem;
        padding-left: 6.25%; } }

.cc--landing-hero .f--page-title {
  position: relative; }
  .cc--landing-hero .f--page-title h1 {
    color: #FFF;
    text-transform: uppercase; }

.cc--landing-hero .f--eyebrow {
  padding-top: 0.6875rem;
  padding-right: 0.625rem;
  padding-bottom: 0.6875rem;
  padding-left: 0.625rem;
  margin-bottom: 0.9375rem;
  background-color: #507F70;
  display: inline-flex;
  margin-bottom: 0.3125rem;
  padding-top: 0;
  padding-right: 0;
  padding-bottom: 0;
  padding-left: 0;
  background-color: transparent;
  position: relative;
  z-index: 2; }
  @media screen and (min-width: 768px) {
    .cc--landing-hero .f--eyebrow {
      margin-bottom: 1.5625rem; } }
  .cc--landing-hero .f--eyebrow span,
  .cc--landing-hero .f--eyebrow a {
    font-family: "Oswald", sans-serif;
    font-optical-sizing: auto;
    font-weight: 500;
    font-style: normal;
    font-size: 0.875rem;
    line-height: 1.2858;
    color: #FFF;
    text-transform: uppercase; }
  .cc--landing-hero .f--eyebrow a {
    text-decoration: none; }
    html[data-whatintent="mouse"] .cc--landing-hero .f--eyebrow a {
      transition: all 0.1s; }
      html[data-whatintent="mouse"] .cc--landing-hero .f--eyebrow a:hover {
        text-decoration: underline; }
  @media screen and (min-width: 768px) {
    .cc--landing-hero .f--eyebrow {
      margin-bottom: 0.625rem; } }
  .cc--landing-hero .f--eyebrow span,
  .cc--landing-hero .f--eyebrow a {
    color: #FFF; }
  .cc--landing-hero .f--eyebrow span {
    color: #FFF; }

.cc--landing-hero .image-container {
  position: relative;
  width: 100%;
  aspect-ratio: 3 / 2;
  overflow: hidden; }
  @media screen and (min-width: 768px) {
    .cc--landing-hero .image-container {
      aspect-ratio: 12 / 5; } }
  @media screen and (min-width: 1800px) {
    .cc--landing-hero .image-container {
      aspect-ratio: auto;
      height: 46.875rem; } }
  .cc--landing-hero .image-container .f--image {
    height: 100%;
    width: 100%; }
    @media screen and (min-width: 1024px) {
      .cc--landing-hero .image-container .f--image {
        position: absolute;
        top: 0;
        left: 0; } }
    .cc--landing-hero .image-container .f--image img {
      height: 100%;
      -o-object-fit: cover;
         object-fit: cover; }
  .cc--landing-hero .image-container .f--ambient-video {
    display: none;
    aspect-ratio: 3 / 2;
    position: relative;
    z-index: 1; }
    @media screen and (min-width: 1024px) {
      .cc--landing-hero .image-container .f--ambient-video {
        display: block;
        aspect-ratio: 12 / 5; } }
    @media screen and (min-width: 1800px) {
      .cc--landing-hero .image-container .f--ambient-video {
        aspect-ratio: auto;
        height: 46.875rem; } }
    .cc--landing-hero .image-container .f--ambient-video video {
      width: 100%;
      height: 100%;
      -o-object-fit: cover;
         object-fit: cover;
      display: block; }
  .cc--landing-hero .image-container .cc--video-controls {
    z-index: 3; }

.cc--link-list {
  position: relative;
  background-color: #D6A461; }
  .cc--link-list .c--link-list {
    max-width: 1800px;
    margin: 0 auto; }
  .cc--link-list .inner-wrapper {
    padding-top: 2.1875rem;
    padding-right: 8.33333%;
    padding-bottom: 2.1875rem;
    padding-left: 8.33333%; }
    @media screen and (min-width: 768px) {
      .cc--link-list .inner-wrapper {
        padding-top: 4.6875rem;
        padding-right: 8.33333%;
        padding-bottom: 4.6875rem;
        padding-left: 8.33333%; } }
    @media screen and (min-width: 1024px) {
      .cc--link-list .inner-wrapper {
        padding-right: 8.33333%;
        padding-left: 8.33333%;
        display: flex;
        justify-content: space-between; } }
  @media screen and (min-width: 768px) {
    .cc--link-list .text-container {
      flex: 0 0 45%; } }
  @media screen and (min-width: 1024px) {
    .cc--link-list .text-container {
      flex: 0 0 40%; } }
  @media screen and (min-width: 1024px) {
    .cc--link-list .f--section-title {
      max-width: 43.75rem;
      margin: 0 auto; } }
  .cc--link-list .f--section-title h2 {
    color: #25282A; }
  .cc--link-list .f--description {
    margin-top: 0.625rem; }
    @media screen and (min-width: 768px) {
      .cc--link-list .f--description {
        margin-top: 0.9375rem; } }
    .cc--link-list .f--description a {
      color: inherit; }
  .cc--link-list .links-container {
    margin-top: 1.5625rem; }
    @media screen and (min-width: 1024px) {
      .cc--link-list .links-container {
        flex: 0 0 45%; } }
  .cc--link-list .f--link {
    border-bottom: 0.0625rem solid #862633; }
    .cc--link-list .f--link:not(:last-child) {
      margin-bottom: 0.9375rem; }
      @media screen and (min-width: 768px) {
        .cc--link-list .f--link:not(:last-child) {
          margin-bottom: 1.5625rem; } }
    .cc--link-list .f--link a {
      padding-bottom: 0.625rem;
      font-family: "Oswald", sans-serif;
      font-optical-sizing: auto;
      font-weight: 400;
      font-style: normal;
      font-size: 1.625rem;
      line-height: 1.3077;
      text-transform: none;
      color: #25282A;
      letter-spacing: 0; }
      @media screen and (min-width: 768px) {
        .cc--link-list .f--link a {
          font-size: 2rem;
          line-height: 1.1875; } }

.cc--main-menu {
  padding-top: 8.125rem;
  background-color: #862633; }
  @media screen and (min-width: 768px) {
    .cc--main-menu {
      padding-top: 10rem; } }
  @media screen and (min-width: 1024px) {
    .cc--main-menu {
      padding-top: 0;
      padding-right: 2.08333%;
      margin-bottom: 1.25rem;
      background-color: transparent; } }
  .cc--main-menu .m--menu {
    list-style: none;
    padding: 0;
    margin: 0; }
    @media screen and (min-width: 1024px) {
      .cc--main-menu .m--menu {
        display: flex;
        justify-content: flex-end; } }
    .cc--main-menu .m--menu > li {
      margin-bottom: 1.5625rem;
      position: relative; }
      @media screen and (min-width: 1024px) {
        .cc--main-menu .m--menu > li {
          margin-bottom: 0; }
          html[data-whatintent="mouse"] .cc--main-menu .m--menu > li {
            transition: all 0.1s; }
            html[data-whatintent="mouse"] .cc--main-menu .m--menu > li:hover > .submenus-wrapper {
              display: flex; } }
      html[data-whatintent="mouse"] .cc--main-menu .m--menu > li {
        transition: all 0.1s; }
        @media screen and (min-width: 1024px) {
          html[data-whatintent="mouse"] .cc--main-menu .m--menu > li:hover {
            background-color: #D6A461; }
            html[data-whatintent="mouse"] .cc--main-menu .m--menu > li:hover > .no-link,
            html[data-whatintent="mouse"] .cc--main-menu .m--menu > li:hover > a {
              color: #000; }
            html[data-whatintent="mouse"] .cc--main-menu .m--menu > li:hover > .link-arrow-wrapper > .no-link,
            html[data-whatintent="mouse"] .cc--main-menu .m--menu > li:hover > .link-arrow-wrapper > a {
              color: #000; } }
      html[data-whatintent="mouse"] .transparent-header:not(.scroll-up) .cc--main-menu .m--menu > li {
        transition: all 0.1s; }
        @media screen and (min-width: 1024px) {
          html[data-whatintent="mouse"] .transparent-header:not(.scroll-up) .cc--main-menu .m--menu > li:hover {
            background-color: rgba(134, 38, 51, 0.8); }
            html[data-whatintent="mouse"] .transparent-header:not(.scroll-up) .cc--main-menu .m--menu > li:hover > .no-link,
            html[data-whatintent="mouse"] .transparent-header:not(.scroll-up) .cc--main-menu .m--menu > li:hover > a {
              color: #FFF; }
            html[data-whatintent="mouse"] .transparent-header:not(.scroll-up) .cc--main-menu .m--menu > li:hover > .link-arrow-wrapper > .no-link,
            html[data-whatintent="mouse"] .transparent-header:not(.scroll-up) .cc--main-menu .m--menu > li:hover > .link-arrow-wrapper > a {
              color: #FFF; } }
      @media screen and (min-width: 1024px) {
        .transparent-header:not(.scroll-up) .cc--main-menu .m--menu > li:focus-within, .transparent-header:not(.scroll-up) .cc--main-menu .m--menu > li.ally-focus-within {
          background-color: rgba(134, 38, 51, 0.8); }
          .transparent-header:not(.scroll-up) .cc--main-menu .m--menu > li:focus-within > .no-link,
          .transparent-header:not(.scroll-up) .cc--main-menu .m--menu > li:focus-within > a, .transparent-header:not(.scroll-up) .cc--main-menu .m--menu > li.ally-focus-within > .no-link,
          .transparent-header:not(.scroll-up) .cc--main-menu .m--menu > li.ally-focus-within > a {
            color: #FFF; }
          .transparent-header:not(.scroll-up) .cc--main-menu .m--menu > li:focus-within > .link-arrow-wrapper > .no-link,
          .transparent-header:not(.scroll-up) .cc--main-menu .m--menu > li:focus-within > .link-arrow-wrapper > a, .transparent-header:not(.scroll-up) .cc--main-menu .m--menu > li.ally-focus-within > .link-arrow-wrapper > .no-link,
          .transparent-header:not(.scroll-up) .cc--main-menu .m--menu > li.ally-focus-within > .link-arrow-wrapper > a {
            color: #FFF; } }
      .cc--main-menu .m--menu > li > .no-link {
        font-family: "Oswald", sans-serif;
        font-optical-sizing: auto;
        font-weight: 400;
        font-style: normal;
        font-size: 1.25rem;
        line-height: 1.7;
        padding-right: 8.33333%;
        padding-left: 8.33333%;
        display: block;
        position: relative;
        color: #FFF;
        background-color: transparent;
        border: 0;
        flex-grow: 1;
        text-align: left;
        text-transform: uppercase; }
        @media screen and (min-width: 768px) {
          .cc--main-menu .m--menu > li > .no-link {
            padding-right: 8.33333%;
            padding-left: 8.33333%; } }
        @media screen and (min-width: 1024px) {
          .cc--main-menu .m--menu > li > .no-link {
            padding-top: 0.9375rem;
            padding-right: 1.09375rem;
            padding-bottom: 0.9375rem;
            padding-left: 1.09375rem;
            font-size: 1.375rem;
            line-height: 1.1819; }
            .cc--main-menu .m--menu > li > .no-link:focus-within, .cc--main-menu .m--menu > li > .no-link.ally-focus-within {
              outline: 0.125rem solid #862633;
              outline-offset: -0.1875rem !important; }
            html[data-whatintent="mouse"] .cc--main-menu .m--menu > li > .no-link {
              transition: all 0.1s; }
              html[data-whatintent="mouse"] .cc--main-menu .m--menu > li > .no-link:hover {
                color: #25282A; } }
        @media screen and (min-width: 1200px) {
          .cc--main-menu .m--menu > li > .no-link {
            padding-right: 1.5625rem;
            padding-left: 1.5625rem; } }
        @media screen and (min-width: 1024px) {
          .transparent-header:not(.scroll-up) .cc--main-menu .m--menu > li > .no-link {
            color: #FFF; }
            .transparent-header:not(.scroll-up) .cc--main-menu .m--menu > li > .no-link:focus-within, .transparent-header:not(.scroll-up) .cc--main-menu .m--menu > li > .no-link.ally-focus-within {
              outline: 0.125rem solid #D6A461; }
            html[data-whatintent="mouse"] .transparent-header:not(.scroll-up) .cc--main-menu .m--menu > li > .no-link {
              transition: all 0.1s; }
              html[data-whatintent="mouse"] .transparent-header:not(.scroll-up) .cc--main-menu .m--menu > li > .no-link:hover {
                color: #FFF; } }
      .cc--main-menu .m--menu > li > a {
        font-family: "Oswald", sans-serif;
        font-optical-sizing: auto;
        font-weight: 400;
        font-style: normal;
        font-size: 1.25rem;
        line-height: 1.7;
        padding-right: 8.33333%;
        padding-left: 8.33333%;
        display: block;
        position: relative;
        color: #FFF;
        text-decoration: none;
        text-transform: uppercase; }
        @media screen and (min-width: 768px) {
          .cc--main-menu .m--menu > li > a {
            padding-right: 8.33333%;
            padding-left: 8.33333%; } }
        @media screen and (min-width: 1024px) {
          .cc--main-menu .m--menu > li > a {
            padding-top: 0.9375rem;
            padding-right: 1.09375rem;
            padding-bottom: 0.9375rem;
            padding-left: 1.09375rem;
            font-size: 1.375rem;
            line-height: 1.1819;
            border-color: transparent; }
            .cc--main-menu .m--menu > li > a:focus-within, .cc--main-menu .m--menu > li > a.ally-focus-within {
              outline: 0.125rem solid #862633;
              outline-offset: -0.1875rem !important; }
            html[data-whatintent="mouse"] .cc--main-menu .m--menu > li > a {
              transition: all 0.1s; }
              html[data-whatintent="mouse"] .cc--main-menu .m--menu > li > a:hover {
                color: #25282A; } }
        @media screen and (min-width: 1200px) {
          .cc--main-menu .m--menu > li > a {
            padding-right: 1.5625rem;
            padding-left: 1.5625rem; } }
        @media screen and (min-width: 1024px) {
          .transparent-header:not(.scroll-up) .cc--main-menu .m--menu > li > a {
            color: #FFF; }
            .transparent-header:not(.scroll-up) .cc--main-menu .m--menu > li > a:focus-within, .transparent-header:not(.scroll-up) .cc--main-menu .m--menu > li > a.ally-focus-within {
              outline: 0.125rem solid #D6A461; }
            html[data-whatintent="mouse"] .transparent-header:not(.scroll-up) .cc--main-menu .m--menu > li > a {
              transition: all 0.1s; }
              html[data-whatintent="mouse"] .transparent-header:not(.scroll-up) .cc--main-menu .m--menu > li > a:hover {
                color: #FFF; } }
      .cc--main-menu .m--menu > li > .link-arrow-wrapper {
        display: flex;
        align-items: center; }
        .cc--main-menu .m--menu > li > .link-arrow-wrapper > .no-link {
          font-family: "Oswald", sans-serif;
          font-optical-sizing: auto;
          font-weight: 400;
          font-style: normal;
          font-size: 1.25rem;
          line-height: 1.7;
          padding-right: 8.33333%;
          padding-left: 8.33333%;
          display: block;
          position: relative;
          color: #FFF;
          background-color: transparent;
          border: 0;
          flex-grow: 1;
          text-align: left;
          text-transform: uppercase; }
          @media screen and (min-width: 768px) {
            .cc--main-menu .m--menu > li > .link-arrow-wrapper > .no-link {
              padding-right: 8.33333%;
              padding-left: 8.33333%; } }
          @media screen and (min-width: 1024px) {
            .cc--main-menu .m--menu > li > .link-arrow-wrapper > .no-link {
              padding-top: 0.9375rem;
              padding-right: 1.09375rem;
              padding-bottom: 0.9375rem;
              padding-left: 1.09375rem;
              font-size: 1.375rem;
              line-height: 1.1819; }
              .cc--main-menu .m--menu > li > .link-arrow-wrapper > .no-link:focus-within, .cc--main-menu .m--menu > li > .link-arrow-wrapper > .no-link.ally-focus-within {
                outline: 0.125rem solid #862633;
                outline-offset: -0.1875rem !important; }
              html[data-whatintent="mouse"] .cc--main-menu .m--menu > li > .link-arrow-wrapper > .no-link {
                transition: all 0.1s; }
                html[data-whatintent="mouse"] .cc--main-menu .m--menu > li > .link-arrow-wrapper > .no-link:hover {
                  color: #25282A; } }
          @media screen and (min-width: 1200px) {
            .cc--main-menu .m--menu > li > .link-arrow-wrapper > .no-link {
              padding-right: 1.5625rem;
              padding-left: 1.5625rem; } }
          @media screen and (min-width: 1024px) {
            .transparent-header:not(.scroll-up) .cc--main-menu .m--menu > li > .link-arrow-wrapper > .no-link {
              color: #FFF; }
              .transparent-header:not(.scroll-up) .cc--main-menu .m--menu > li > .link-arrow-wrapper > .no-link:focus-within, .transparent-header:not(.scroll-up) .cc--main-menu .m--menu > li > .link-arrow-wrapper > .no-link.ally-focus-within {
                outline: 0.125rem solid #D6A461; }
              html[data-whatintent="mouse"] .transparent-header:not(.scroll-up) .cc--main-menu .m--menu > li > .link-arrow-wrapper > .no-link {
                transition: all 0.1s; }
                html[data-whatintent="mouse"] .transparent-header:not(.scroll-up) .cc--main-menu .m--menu > li > .link-arrow-wrapper > .no-link:hover {
                  color: #FFF; } }
        .cc--main-menu .m--menu > li > .link-arrow-wrapper > a {
          font-family: "Oswald", sans-serif;
          font-optical-sizing: auto;
          font-weight: 400;
          font-style: normal;
          font-size: 1.25rem;
          line-height: 1.7;
          padding-right: 8.33333%;
          padding-left: 8.33333%;
          display: block;
          position: relative;
          color: #FFF;
          text-decoration: none;
          text-transform: uppercase; }
          @media screen and (min-width: 768px) {
            .cc--main-menu .m--menu > li > .link-arrow-wrapper > a {
              padding-right: 8.33333%;
              padding-left: 8.33333%; } }
          @media screen and (min-width: 1024px) {
            .cc--main-menu .m--menu > li > .link-arrow-wrapper > a {
              padding-top: 0.9375rem;
              padding-right: 1.09375rem;
              padding-bottom: 0.9375rem;
              padding-left: 1.09375rem;
              font-size: 1.375rem;
              line-height: 1.1819;
              border-color: transparent; }
              .cc--main-menu .m--menu > li > .link-arrow-wrapper > a:focus-within, .cc--main-menu .m--menu > li > .link-arrow-wrapper > a.ally-focus-within {
                outline: 0.125rem solid #862633;
                outline-offset: -0.1875rem !important; }
              html[data-whatintent="mouse"] .cc--main-menu .m--menu > li > .link-arrow-wrapper > a {
                transition: all 0.1s; }
                html[data-whatintent="mouse"] .cc--main-menu .m--menu > li > .link-arrow-wrapper > a:hover {
                  color: #25282A; } }
          @media screen and (min-width: 1200px) {
            .cc--main-menu .m--menu > li > .link-arrow-wrapper > a {
              padding-right: 1.5625rem;
              padding-left: 1.5625rem; } }
          @media screen and (min-width: 1024px) {
            .transparent-header:not(.scroll-up) .cc--main-menu .m--menu > li > .link-arrow-wrapper > a {
              color: #FFF; }
              .transparent-header:not(.scroll-up) .cc--main-menu .m--menu > li > .link-arrow-wrapper > a:focus-within, .transparent-header:not(.scroll-up) .cc--main-menu .m--menu > li > .link-arrow-wrapper > a.ally-focus-within {
                outline: 0.125rem solid #D6A461; }
              html[data-whatintent="mouse"] .transparent-header:not(.scroll-up) .cc--main-menu .m--menu > li > .link-arrow-wrapper > a {
                transition: all 0.1s; }
                html[data-whatintent="mouse"] .transparent-header:not(.scroll-up) .cc--main-menu .m--menu > li > .link-arrow-wrapper > a:hover {
                  color: #FFF; } }
        @media screen and (max-width: 1023px) {
          .cc--main-menu .m--menu > li > .link-arrow-wrapper > .arrow-toggle {
            margin-right: calc(8.33333% - 0.125rem);
            width: 1.875rem;
            height: 1.875rem;
            border: 0;
            padding: 0;
            background-color: transparent; } }
        @media screen and (min-width: 1024px) {
          .cc--main-menu .m--menu > li > .link-arrow-wrapper > .arrow-toggle {
            display: none; } }
        .cc--main-menu .m--menu > li > .link-arrow-wrapper > .arrow-toggle svg {
          width: 1.5625rem;
          height: auto; }
          @media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
            .cc--main-menu .m--menu > li > .link-arrow-wrapper > .arrow-toggle svg {
              width: 1.5625rem; } }
        .cc--main-menu .m--menu > li > .link-arrow-wrapper a {
          flex-grow: 1; }
          @media screen and (min-width: 1024px) {
            .cc--main-menu .m--menu > li > .link-arrow-wrapper a {
              flex-grow: 0; } }
      .cc--main-menu .m--menu > li > .submenus-wrapper {
        padding-top: 8.125rem;
        padding-right: 8.33333%;
        padding-bottom: 6.25rem;
        padding-left: 8.33333%;
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        min-height: 100dvh;
        min-height: 100%;
        background-color: #862633;
        overflow: auto;
        z-index: 2; }
        @media screen and (min-width: 768px) {
          .cc--main-menu .m--menu > li > .submenus-wrapper {
            padding-top: 10rem; } }
        @media screen and (min-width: 1024px) {
          .cc--main-menu .m--menu > li > .submenus-wrapper {
            margin-top: 0;
            margin-bottom: 0;
            padding-top: 0;
            padding-right: 0;
            padding-bottom: 0;
            padding-left: 0;
            position: absolute;
            top: 100%;
            left: 0;
            height: auto;
            min-width: 18.75rem;
            background-color: #D6A461;
            z-index: 2;
            min-height: auto;
            overflow: visible; }
            .transparent-header:not(.scroll-up) .cc--main-menu .m--menu > li > .submenus-wrapper {
              background-color: rgba(134, 38, 51, 0.8); }
            .scroll-up .cc--main-menu .m--menu > li > .submenus-wrapper {
              background-color: #D6A461; } }
        @media screen and (min-width: 1024px) {
          .cc--main-menu .m--menu > li > .submenus-wrapper .submenus-wrapper-inner {
            padding-top: 1.25rem;
            padding-bottom: 1.25rem;
            margin-bottom: 0;
            width: 100%; } }
        .cc--main-menu .m--menu > li > .submenus-wrapper .submenus-wrapper-inner > span {
          position: absolute;
          white-space: nowrap;
          width: 1px;
          height: 1px;
          overflow: hidden;
          border: 0;
          padding: 0;
          clip: rect(0 0 0 0);
          -webkit-clip-path: inset(50%);
                  clip-path: inset(50%);
          margin: -1px; }
        .cc--main-menu .m--menu > li > .submenus-wrapper .submenus-wrapper-inner > ul > li {
          transition: padding 0.2s ease, margin 0.2s ease; }
          @media screen and (max-width: 1023px) {
            .cc--main-menu .m--menu > li > .submenus-wrapper .submenus-wrapper-inner > ul > li li.menu-item {
              padding-top: 0;
              padding-bottom: 0; } }
      .cc--main-menu .m--menu > li .submenus-title {
        margin-bottom: 1.5625rem; }
        @media screen and (min-width: 1024px) {
          .cc--main-menu .m--menu > li .submenus-title {
            display: none; } }
        .cc--main-menu .m--menu > li .submenus-title h3 {
          font-family: "Oswald", sans-serif;
          font-optical-sizing: auto;
          font-weight: 500;
          font-style: normal;
          font-size: 0.875rem;
          line-height: 1.2858;
          color: #FFF;
          text-transform: uppercase;
          letter-spacing: -0.03125rem;
          position: relative;
          display: flex;
          align-items: center; }
          .cc--main-menu .m--menu > li .submenus-title h3::before {
            margin-right: 0.9375rem;
            content: '';
            width: 0.89312rem;
            height: 0.53375rem;
            display: inline-flex;
            background-image: url("../images/icons/icon-arrowline-left-white.svg");
            background-repeat: no-repeat;
            background-position: center;
            background-size: cover; }
      @media screen and (min-width: 1024px) {
        .cc--main-menu .m--menu > li:last-child .submenus-wrapper {
          left: auto;
          right: 0; } }
      @media screen and (min-width: 1024px) {
        .cc--main-menu .m--menu > li:nth-last-child(3) .submenus-wrapper .submenus-wrapper, .cc--main-menu .m--menu > li:nth-last-child(2) .submenus-wrapper .submenus-wrapper, .cc--main-menu .m--menu > li:last-child .submenus-wrapper .submenus-wrapper {
          transform: translateX(-200%); } }
      @media screen and (min-width: 1024px) {
        .cc--main-menu .m--menu > li:focus-within, .cc--main-menu .m--menu > li.ally-focus-within {
          background-color: #D6A461; }
          .cc--main-menu .m--menu > li:focus-within > .no-link,
          .cc--main-menu .m--menu > li:focus-within > a, .cc--main-menu .m--menu > li.ally-focus-within > .no-link,
          .cc--main-menu .m--menu > li.ally-focus-within > a {
            color: #25282A; }
          .cc--main-menu .m--menu > li:focus-within > .link-arrow-wrapper > .no-link,
          .cc--main-menu .m--menu > li:focus-within > .link-arrow-wrapper > a, .cc--main-menu .m--menu > li.ally-focus-within > .link-arrow-wrapper > .no-link,
          .cc--main-menu .m--menu > li.ally-focus-within > .link-arrow-wrapper > a {
            color: #25282A; } }
      @media screen and (min-width: 1024px) {
        .cc--main-menu .m--menu > li:focus-within > .submenus-wrapper, .cc--main-menu .m--menu > li.ally-focus-within > .submenus-wrapper {
          display: flex; } }
      @media screen and (min-width: 1024px) {
        .cc--main-menu .m--menu > li:focus-within .link-arrow-wrapper > a, .cc--main-menu .m--menu > li.ally-focus-within .link-arrow-wrapper > a {
          pointer-events: auto; } }
      @media screen and (min-width: 1024px) {
        html[data-whatintent='touch'] .cc--main-menu .m--menu > li.menu-item--expanded:not(.ally-focus-within) a {
          pointer-events: none; } }
      .cc--main-menu .m--menu > li ul.submenu {
        list-style: none;
        padding: 0;
        margin: 0; }
        .cc--main-menu .m--menu > li ul.submenu > li {
          margin-bottom: 1.5625rem; }
          @media screen and (min-width: 1024px) {
            .cc--main-menu .m--menu > li ul.submenu > li {
              margin-bottom: 0.9375rem;
              position: static; }
              .cc--main-menu .m--menu > li ul.submenu > li:last-child {
                margin-bottom: 0; }
              html[data-whatintent="mouse"] .cc--main-menu .m--menu > li ul.submenu > li {
                transition: all 0.1s; }
                html[data-whatintent="mouse"] .cc--main-menu .m--menu > li ul.submenu > li:hover {
                  background-color: #D9D9D6; }
                  html[data-whatintent="mouse"] .cc--main-menu .m--menu > li ul.submenu > li:hover .submenus-wrapper {
                    display: flex;
                    min-height: 100%; }
                  html[data-whatintent="mouse"] .cc--main-menu .m--menu > li ul.submenu > li:hover > div.link-arrow-wrapper > a,
                  html[data-whatintent="mouse"] .cc--main-menu .m--menu > li ul.submenu > li:hover span,
                  html[data-whatintent="mouse"] .cc--main-menu .m--menu > li ul.submenu > li:hover a {
                    color: #000; }
              html[data-whatintent="mouse"] .transparent-header:not(.scroll-up) .cc--main-menu .m--menu > li ul.submenu > li {
                transition: all 0.1s; }
                html[data-whatintent="mouse"] .transparent-header:not(.scroll-up) .cc--main-menu .m--menu > li ul.submenu > li:hover > .link-arrow-wrapper::after {
                  background-image: url("../images/icons/icon-arrowright.svg"); }
              .cc--main-menu .m--menu > li ul.submenu > li:focus-within, .cc--main-menu .m--menu > li ul.submenu > li.ally-focus-within {
                background-color: #D9D9D6; }
                .cc--main-menu .m--menu > li ul.submenu > li:focus-within .submenus-wrapper, .cc--main-menu .m--menu > li ul.submenu > li.ally-focus-within .submenus-wrapper {
                  display: flex;
                  min-height: 100%; }
                .transparent-header:not(.scroll-up) .cc--main-menu .m--menu > li ul.submenu > li:focus-within > .link-arrow-wrapper::after, .transparent-header:not(.scroll-up) .cc--main-menu .m--menu > li ul.submenu > li.ally-focus-within > .link-arrow-wrapper::after {
                  background-image: url("../images/icons/icon-arrowright.svg"); }
                .cc--main-menu .m--menu > li ul.submenu > li:focus-within > div.link-arrow-wrapper > a,
                .cc--main-menu .m--menu > li ul.submenu > li:focus-within span,
                .cc--main-menu .m--menu > li ul.submenu > li:focus-within a, .cc--main-menu .m--menu > li ul.submenu > li.ally-focus-within > div.link-arrow-wrapper > a,
                .cc--main-menu .m--menu > li ul.submenu > li.ally-focus-within span,
                .cc--main-menu .m--menu > li ul.submenu > li.ally-focus-within a {
                  color: #000; }
                  .transparent-header:not(.scroll-up) .cc--main-menu .m--menu > li ul.submenu > li:focus-within > div.link-arrow-wrapper > a, .transparent-header:not(.scroll-up)
                  .cc--main-menu .m--menu > li ul.submenu > li:focus-within span, .transparent-header:not(.scroll-up)
                  .cc--main-menu .m--menu > li ul.submenu > li:focus-within a, .transparent-header:not(.scroll-up) .cc--main-menu .m--menu > li ul.submenu > li.ally-focus-within > div.link-arrow-wrapper > a, .transparent-header:not(.scroll-up)
                  .cc--main-menu .m--menu > li ul.submenu > li.ally-focus-within span, .transparent-header:not(.scroll-up)
                  .cc--main-menu .m--menu > li ul.submenu > li.ally-focus-within a {
                    color: #000; }
                    .transparent-header:not(.scroll-up) .cc--main-menu .m--menu > li ul.submenu > li:focus-within > div.link-arrow-wrapper > a:focus, .transparent-header:not(.scroll-up)
                    .cc--main-menu .m--menu > li ul.submenu > li:focus-within span:focus, .transparent-header:not(.scroll-up)
                    .cc--main-menu .m--menu > li ul.submenu > li:focus-within a:focus, .transparent-header:not(.scroll-up) .cc--main-menu .m--menu > li ul.submenu > li.ally-focus-within > div.link-arrow-wrapper > a:focus, .transparent-header:not(.scroll-up)
                    .cc--main-menu .m--menu > li ul.submenu > li.ally-focus-within span:focus, .transparent-header:not(.scroll-up)
                    .cc--main-menu .m--menu > li ul.submenu > li.ally-focus-within a:focus {
                      outline: 0.125rem solid #862633;
                      outline-offset: -0.1875rem !important; } }
          .cc--main-menu .m--menu > li ul.submenu > li > div.link-arrow-wrapper > a,
          .cc--main-menu .m--menu > li ul.submenu > li span,
          .cc--main-menu .m--menu > li ul.submenu > li a {
            font-family: "IBM Plex Sans", sans-serif;
            font-weight: 600;
            font-style: normal;
            font-size: 1rem;
            line-height: 2.125;
            display: flex;
            border-bottom: 0;
            color: #FFF;
            text-decoration: none; }
            @media screen and (min-width: 1024px) {
              .cc--main-menu .m--menu > li ul.submenu > li > div.link-arrow-wrapper > a,
              .cc--main-menu .m--menu > li ul.submenu > li span,
              .cc--main-menu .m--menu > li ul.submenu > li a {
                padding-top: 0;
                padding-right: 1.5625rem;
                padding-bottom: 0;
                padding-left: 1.5625rem;
                flex-grow: 1;
                color: #25282A; }
                html[data-whatintent="mouse"] .cc--main-menu .m--menu > li ul.submenu > li > div.link-arrow-wrapper > a, html[data-whatintent="mouse"]
                .cc--main-menu .m--menu > li ul.submenu > li span, html[data-whatintent="mouse"]
                .cc--main-menu .m--menu > li ul.submenu > li a {
                  transition: all 0.1s; }
                  html[data-whatintent="mouse"] .cc--main-menu .m--menu > li ul.submenu > li > div.link-arrow-wrapper > a:hover, html[data-whatintent="mouse"]
                  .cc--main-menu .m--menu > li ul.submenu > li span:hover, html[data-whatintent="mouse"]
                  .cc--main-menu .m--menu > li ul.submenu > li a:hover {
                    color: #000; }
                .cc--main-menu .m--menu > li ul.submenu > li > div.link-arrow-wrapper > a:focus,
                .cc--main-menu .m--menu > li ul.submenu > li span:focus,
                .cc--main-menu .m--menu > li ul.submenu > li a:focus {
                  outline-offset: -0.1875rem !important; }
                .transparent-header:not(.scroll-up) .cc--main-menu .m--menu > li ul.submenu > li > div.link-arrow-wrapper > a, .transparent-header:not(.scroll-up)
                .cc--main-menu .m--menu > li ul.submenu > li span, .transparent-header:not(.scroll-up)
                .cc--main-menu .m--menu > li ul.submenu > li a {
                  color: #FFF; }
                  .transparent-header:not(.scroll-up) .cc--main-menu .m--menu > li ul.submenu > li > div.link-arrow-wrapper > a:focus, .transparent-header:not(.scroll-up)
                  .cc--main-menu .m--menu > li ul.submenu > li span:focus, .transparent-header:not(.scroll-up)
                  .cc--main-menu .m--menu > li ul.submenu > li a:focus {
                    outline: 0.125rem solid #D6A461;
                    outline-offset: -0.1875rem !important; }
                .scroll-up .cc--main-menu .m--menu > li ul.submenu > li > div.link-arrow-wrapper > a, .scroll-up
                .cc--main-menu .m--menu > li ul.submenu > li span, .scroll-up
                .cc--main-menu .m--menu > li ul.submenu > li a {
                  color: #25282A; } }
          .cc--main-menu .m--menu > li ul.submenu > li > .link-arrow-wrapper {
            display: flex;
            align-items: center; }
            @media screen and (min-width: 1024px) {
              .cc--main-menu .m--menu > li ul.submenu > li > .link-arrow-wrapper {
                justify-content: space-between; }
                .cc--main-menu .m--menu > li ul.submenu > li > .link-arrow-wrapper::after {
                  margin-right: 1.25rem;
                  content: '';
                  width: 1.5625rem;
                  height: 1.5625rem;
                  display: flex;
                  background-image: url("../images/icons/icon-arrowright.svg");
                  background-position: center;
                  background-size: 1.5625rem;
                  background-repeat: no-repeat; }
                  .transparent-header:not(.scroll-up) .cc--main-menu .m--menu > li ul.submenu > li > .link-arrow-wrapper::after {
                    background-image: url("../images/icons/icon-arrowright-white.svg"); } }
            .cc--main-menu .m--menu > li ul.submenu > li > .link-arrow-wrapper > a {
              font-size: 1rem;
              line-height: 2.125;
              display: block;
              position: relative;
              color: #000;
              text-decoration: none; }
              @media screen and (min-width: 1024px) {
                .cc--main-menu .m--menu > li ul.submenu > li > .link-arrow-wrapper > a {
                  padding-right: 0;
                  padding-left: 1.5625rem;
                  font-size: 1rem;
                  line-height: 2.125;
                  width: calc(100% - 55px); }
                  html[data-whatintent="mouse"] .cc--main-menu .m--menu > li ul.submenu > li > .link-arrow-wrapper > a {
                    transition: all 0.1s; }
                    html[data-whatintent="mouse"] .cc--main-menu .m--menu > li ul.submenu > li > .link-arrow-wrapper > a:hover {
                      text-decoration: none; } }
            .cc--main-menu .m--menu > li ul.submenu > li > .link-arrow-wrapper > .arrow-toggle {
              width: 1.875rem;
              height: 1.875rem;
              border: 0;
              padding: 0;
              background-color: transparent;
              display: flex;
              justify-content: center;
              align-items: center; }
              @media screen and (min-width: 1024px) {
                .cc--main-menu .m--menu > li ul.submenu > li > .link-arrow-wrapper > .arrow-toggle {
                  display: none; } }
              .cc--main-menu .m--menu > li ul.submenu > li > .link-arrow-wrapper > .arrow-toggle svg {
                width: 1.5625rem;
                height: auto;
                fill: #FFF; }
                @media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
                  .cc--main-menu .m--menu > li ul.submenu > li > .link-arrow-wrapper > .arrow-toggle svg {
                    width: 1.5625rem; } }
            .cc--main-menu .m--menu > li ul.submenu > li > .link-arrow-wrapper a {
              flex-grow: 1; }
              @media screen and (min-width: 1024px) {
                .cc--main-menu .m--menu > li ul.submenu > li > .link-arrow-wrapper a {
                  flex-grow: 0; } }
          .cc--main-menu .m--menu > li ul.submenu > li > .submenus-wrapper {
            padding-top: 8.125rem;
            padding-right: 8.33333%;
            padding-bottom: 6.25rem;
            padding-left: 8.33333%;
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            min-height: 100dvh;
            min-height: 100%;
            background-color: #862633;
            overflow: auto;
            z-index: 2; }
            @media screen and (min-width: 768px) {
              .cc--main-menu .m--menu > li ul.submenu > li > .submenus-wrapper {
                padding-top: 10rem; } }
            @media screen and (min-width: 1024px) {
              .cc--main-menu .m--menu > li ul.submenu > li > .submenus-wrapper {
                margin-top: 0;
                margin-bottom: 0;
                padding-top: 0;
                padding-right: 0;
                padding-left: 0;
                position: absolute;
                top: 0;
                left: 100%;
                min-width: 12.5rem;
                background-color: #D9D9D6;
                z-index: 2; }
                .transparent-header:not(.scroll-up) .cc--main-menu .m--menu > li ul.submenu > li > .submenus-wrapper {
                  background-color: rgba(217, 217, 214, 0.8); }
                .scroll-up .cc--main-menu .m--menu > li ul.submenu > li > .submenus-wrapper {
                  background-color: #D9D9D6; } }
            .cc--main-menu .m--menu > li ul.submenu > li > .submenus-wrapper .submenus-wrapper-inner {
              padding-bottom: 0.625rem; }
              @media screen and (min-width: 768px) {
                .cc--main-menu .m--menu > li ul.submenu > li > .submenus-wrapper .submenus-wrapper-inner {
                  padding-bottom: 0.9375rem; } }
              @media screen and (min-width: 1024px) {
                .cc--main-menu .m--menu > li ul.submenu > li > .submenus-wrapper .submenus-wrapper-inner {
                  padding-top: 0.625rem;
                  padding-right: 0;
                  padding-bottom: 0.625rem;
                  padding-left: 0;
                  margin-bottom: 0;
                  width: 100%; } }
              .cc--main-menu .m--menu > li ul.submenu > li > .submenus-wrapper .submenus-wrapper-inner > span {
                position: absolute;
                white-space: nowrap;
                width: 1px;
                height: 1px;
                overflow: hidden;
                border: 0;
                padding: 0;
                clip: rect(0 0 0 0);
                -webkit-clip-path: inset(50%);
                        clip-path: inset(50%);
                margin: -1px; }
              @media screen and (min-width: 1024px) {
                .cc--main-menu .m--menu > li ul.submenu > li > .submenus-wrapper .submenus-wrapper-inner ul li {
                  margin-bottom: 0.9375rem; }
                  .transparent-header:not(.scroll-up) .cc--main-menu .m--menu > li ul.submenu > li > .submenus-wrapper .submenus-wrapper-inner ul li:focus-within, .transparent-header:not(.scroll-up) .cc--main-menu .m--menu > li ul.submenu > li > .submenus-wrapper .submenus-wrapper-inner ul li.ally-focus-within {
                    background-color: transparent; } }
              html[data-whatintent="mouse"] .cc--main-menu .m--menu > li ul.submenu > li > .submenus-wrapper .submenus-wrapper-inner ul li a {
                transition: all 0.1s; }
                html[data-whatintent="mouse"] .cc--main-menu .m--menu > li ul.submenu > li > .submenus-wrapper .submenus-wrapper-inner ul li a:hover {
                  text-decoration: underline; }
              @media screen and (min-width: 1024px) {
                .transparent-header:not(.scroll-up) .cc--main-menu .m--menu > li ul.submenu > li > .submenus-wrapper .submenus-wrapper-inner ul li a {
                  color: #25282A; }
                  .transparent-header:not(.scroll-up) .cc--main-menu .m--menu > li ul.submenu > li > .submenus-wrapper .submenus-wrapper-inner ul li a:focus {
                    outline: 0.125rem solid #862633;
                    outline-offset: -0.1875rem !important; }
                .scroll-up .cc--main-menu .m--menu > li ul.submenu > li > .submenus-wrapper .submenus-wrapper-inner ul li a {
                  color: #25282A; } }
          .cc--main-menu .m--menu > li ul.submenu > li.is-open {
            margin-bottom: 0.625rem;
            background-color: #D9D9D6 !important; }
            @media screen and (min-width: 768px) {
              .cc--main-menu .m--menu > li ul.submenu > li.is-open {
                margin-bottom: 0.9375rem; } }
            @media screen and (min-width: 1024px) {
              .cc--main-menu .m--menu > li ul.submenu > li.is-open {
                margin-bottom: 0; }
                .cc--main-menu .m--menu > li ul.submenu > li.is-open > div.link-arrow-wrapper > a,
                .cc--main-menu .m--menu > li ul.submenu > li.is-open span,
                .cc--main-menu .m--menu > li ul.submenu > li.is-open a {
                  color: #25282A !important; }
                .cc--main-menu .m--menu > li ul.submenu > li.is-open > div.link-arrow-wrapper .arrow-toggle svg {
                  fill: #25282A !important; }
                .cc--main-menu .m--menu > li ul.submenu > li.is-open > div.link-arrow-wrapper .arrow-toggle:focus-within, .cc--main-menu .m--menu > li ul.submenu > li.is-open > div.link-arrow-wrapper .arrow-toggle.ally-focus-within {
                  outline: 0.125rem solid #862633 !important; }
                  .cc--main-menu .m--menu > li ul.submenu > li.is-open > div.link-arrow-wrapper .arrow-toggle:focus-within svg, .cc--main-menu .m--menu > li ul.submenu > li.is-open > div.link-arrow-wrapper .arrow-toggle.ally-focus-within svg {
                    fill: #25282A !important; } }

.cc--news-cards .c--news-cards {
  max-width: 1800px;
  margin: 0 auto; }

.cc--news-cards .inner-wrapper {
  padding-top: 2.1875rem;
  padding-bottom: 2.1875rem; }
  @media screen and (min-width: 768px) {
    .cc--news-cards .inner-wrapper {
      padding-top: 4.6875rem;
      padding-bottom: 4.6875rem; } }
  @media screen and (min-width: 1024px) {
    .cc--news-cards .inner-wrapper {
      padding-right: 6.25%;
      padding-left: 8.33333%; } }

.cc--news-cards .header-container {
  padding-right: 8.33333%;
  padding-left: 8.33333%;
  position: relative;
  z-index: 1; }
  @media screen and (min-width: 768px) {
    .cc--news-cards .header-container {
      padding-right: 8.33333%;
      padding-left: 8.33333%; } }
  @media screen and (min-width: 1024px) {
    .cc--news-cards .header-container {
      padding-right: 0;
      padding-left: 0;
      display: flex;
      justify-content: space-between; } }

.cc--news-cards .link-container {
  padding-right: 8.33333%;
  padding-left: 8.33333%; }
  @media screen and (min-width: 1024px) {
    .cc--news-cards .link-container {
      padding-right: 0;
      padding-left: 0; } }
  .cc--news-cards .link-container.mobile {
    margin-top: 1.5625rem; }
    @media screen and (min-width: 1024px) {
      .cc--news-cards .link-container.mobile {
        display: none; } }
  .cc--news-cards .link-container.desktop {
    display: none; }
    @media screen and (min-width: 1024px) {
      .cc--news-cards .link-container.desktop {
        margin-top: 0.9375rem;
        display: block;
        flex: 0 0 21.95122%; } }
  .cc--news-cards .link-container .f--link a {
    font-family: "Oswald", sans-serif;
    font-optical-sizing: auto;
    font-weight: 600;
    font-style: normal;
    font-size: 1.125rem;
    line-height: 1.4445;
    padding-right: 2.96875rem;
    padding-left: 2.96875rem;
    position: relative;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    text-align: center;
    letter-spacing: 0.03125rem;
    width: auto;
    min-height: 3.125rem;
    border-radius: 0;
    color: #25282A;
    background-color: #D6A461;
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
    text-transform: uppercase; }
    @media screen and (min-width: 768px) {
      .cc--news-cards .link-container .f--link a {
        min-height: 3.75rem; } }
    @media screen and (min-width: 1024px) {
      .cc--news-cards .link-container .f--link a {
        padding-right: 1.25rem;
        padding-left: 1.25rem; } }
    .cc--news-cards .link-container .f--link a:focus {
      transition: color 0.1s ease-in-out, background-color 0.1s ease-in-out;
      color: #25282A;
      background-color: #D6A461;
      text-decoration: none; }
    html[data-whatintent="mouse"] .cc--news-cards .link-container .f--link a {
      transition: all 0.1s; }
      html[data-whatintent="mouse"] .cc--news-cards .link-container .f--link a:hover {
        transition: color 0.1s ease-in-out, background-color 0.1s ease-in-out;
        color: #FFF;
        background-color: #862633;
        text-decoration: none; }
    @media screen and (min-width: 1024px) {
      .cc--news-cards .link-container .f--link a {
        width: 100%; } }

.cc--news-cards .cards-container {
  margin-top: 1.5625rem; }
  @media screen and (min-width: 1024px) {
    .cc--news-cards .cards-container {
      display: flex;
      flex-wrap: wrap; } }

.cc--news-cards .article-card {
  margin-bottom: 1.5625rem;
  position: relative; }
  @media screen and (min-width: 1024px) {
    .cc--news-cards .article-card {
      margin-right: 2.43902%;
      margin-bottom: 0;
      flex: 0 0 34.14634%;
      display: block; } }
  @media screen and (min-width: 1024px) {
    .cc--news-cards .article-card:first-child {
      flex: 0 0 51.21951%; } }
  .cc--news-cards .article-card:first-child .f--eyebrow {
    margin-bottom: 0;
    position: absolute;
    top: 0;
    left: 0; }
  .cc--news-cards .article-card:first-child .text-container {
    padding-top: 0.9375rem;
    padding-right: 8.33333%;
    padding-left: 8.33333%; }
    @media screen and (min-width: 768px) {
      .cc--news-cards .article-card:first-child .text-container {
        padding-top: 0.9375rem; } }
    @media screen and (min-width: 1024px) {
      .cc--news-cards .article-card:first-child .text-container {
        padding-right: 0;
        padding-left: 0; } }
  .cc--news-cards .article-card:first-child .f--cta-title h3 {
    font-family: "Oswald", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    font-size: 2.25rem;
    line-height: 1.1667; }
    @media screen and (min-width: 768px) {
      .cc--news-cards .article-card:first-child .f--cta-title h3 {
        font-size: 2.875rem;
        line-height: 1.1305; } }
    .tc--chaptered-page .cc--news-cards .article-card:first-child .f--cta-title h3 {
      font-size: 1.625rem;
      line-height: 1.3077; }
      @media screen and (min-width: 768px) {
        .tc--chaptered-page .cc--news-cards .article-card:first-child .f--cta-title h3 {
          font-size: 2rem;
          line-height: 1.1875; } }
    .cc--news-cards .article-card:first-child .f--cta-title h3 a {
      color: inherit;
      text-decoration: none; }
      html[data-whatintent="mouse"] .cc--news-cards .article-card:first-child .f--cta-title h3 a {
        transition: all 0.1s; }
        html[data-whatintent="mouse"] .cc--news-cards .article-card:first-child .f--cta-title h3 a:hover {
          text-decoration: underline; }
  .cc--news-cards .article-card:not(:first-child) {
    padding-right: 8.33333%;
    padding-left: 8.33333%; }
    @media screen and (min-width: 1024px) {
      .cc--news-cards .article-card:not(:first-child) {
        padding-right: 0;
        padding-left: 0;
        flex: 0 0 21.95122%; } }
    .cc--news-cards .article-card:not(:first-child) .f--eyebrow {
      padding-top: 0.6875rem;
      padding-right: 0.625rem;
      padding-bottom: 0.6875rem;
      padding-left: 0.625rem;
      margin-bottom: 0.9375rem;
      background-color: #507F70;
      display: inline-flex;
      margin-bottom: 0.3125rem;
      padding-top: 0;
      padding-right: 0;
      padding-bottom: 0;
      padding-left: 0;
      background-color: transparent; }
      @media screen and (min-width: 768px) {
        .cc--news-cards .article-card:not(:first-child) .f--eyebrow {
          margin-bottom: 1.5625rem; } }
      .cc--news-cards .article-card:not(:first-child) .f--eyebrow span,
      .cc--news-cards .article-card:not(:first-child) .f--eyebrow a {
        font-family: "Oswald", sans-serif;
        font-optical-sizing: auto;
        font-weight: 500;
        font-style: normal;
        font-size: 0.875rem;
        line-height: 1.2858;
        color: #25282A;
        text-transform: uppercase; }
      .cc--news-cards .article-card:not(:first-child) .f--eyebrow a {
        text-decoration: none; }
        html[data-whatintent="mouse"] .cc--news-cards .article-card:not(:first-child) .f--eyebrow a {
          transition: all 0.1s; }
          html[data-whatintent="mouse"] .cc--news-cards .article-card:not(:first-child) .f--eyebrow a:hover {
            text-decoration: underline; }
      @media screen and (min-width: 768px) {
        .cc--news-cards .article-card:not(:first-child) .f--eyebrow {
          margin-bottom: 0.625rem; } }
      .cc--news-cards .article-card:not(:first-child) .f--eyebrow span,
      .cc--news-cards .article-card:not(:first-child) .f--eyebrow a {
        color: #25282A; }
      @media screen and (min-width: 1024px) {
        .cc--news-cards .article-card:not(:first-child) .f--eyebrow {
          margin-bottom: 0.625rem; } }
    .cc--news-cards .article-card:not(:first-child) .text-container {
      padding-top: 0.9375rem; }
    .cc--news-cards .article-card:not(:first-child) .f--cta-title h3 {
      font-family: "Oswald", sans-serif;
      font-optical-sizing: auto;
      font-weight: 400;
      font-style: normal;
      font-size: 1.625rem;
      line-height: 1.3077; }
      @media screen and (min-width: 768px) {
        .cc--news-cards .article-card:not(:first-child) .f--cta-title h3 {
          font-size: 2rem;
          line-height: 1.1875; } }
      .tc--chaptered-page .cc--news-cards .article-card:not(:first-child) .f--cta-title h3 {
        font-size: 1.25rem;
        line-height: 1.5; }
        @media screen and (min-width: 768px) {
          .tc--chaptered-page .cc--news-cards .article-card:not(:first-child) .f--cta-title h3 {
            font-size: 1.5rem;
            line-height: 1.4167; } }
      .cc--news-cards .article-card:not(:first-child) .f--cta-title h3 a {
        color: inherit;
        text-decoration: none; }
        html[data-whatintent="mouse"] .cc--news-cards .article-card:not(:first-child) .f--cta-title h3 a {
          transition: all 0.1s; }
          html[data-whatintent="mouse"] .cc--news-cards .article-card:not(:first-child) .f--cta-title h3 a:hover {
            text-decoration: underline; }
  .cc--news-cards .article-card:last-child {
    margin-right: 0;
    margin-bottom: 0;
    margin-left: 0; }

.cc--news-listing-filter {
  margin-bottom: 1.875rem;
  position: relative;
  background-color: #D6A461;
  z-index: 1; }
  @media screen and (min-width: 1024px) {
    .cc--news-listing-filter .inner-wrapper {
      padding-top: 1.125rem;
      padding-right: 4.16667%;
      padding-bottom: 1.125rem;
      padding-left: 4.16667%; } }
  .cc--news-listing-filter .c--news-listing-filter {
    max-width: 1800px;
    margin: 0 auto;
    position: relative; }
    .cc--news-listing-filter .c--news-listing-filter .form-wrapper {
      padding-top: 0.9375rem;
      padding-right: 8.33333%;
      padding-bottom: 0.9375rem;
      padding-left: 8.33333%; }
      @media screen and (min-width: 768px) {
        .cc--news-listing-filter .c--news-listing-filter .form-wrapper {
          padding-right: 8.33333%;
          padding-left: 8.33333%; } }
      @media screen and (min-width: 1024px) {
        .cc--news-listing-filter .c--news-listing-filter .form-wrapper {
          padding-top: 0;
          padding-right: 0;
          padding-bottom: 0;
          padding-left: 0; } }
      @media screen and (min-width: 1024px) {
        .cc--news-listing-filter .c--news-listing-filter .form-wrapper form {
          display: flex;
          margin: 0;
          -moz-column-gap: 0.625rem;
               column-gap: 0.625rem; } }
      .cc--news-listing-filter .c--news-listing-filter .form-wrapper form > .fi--form-item label {
        position: absolute;
        white-space: nowrap;
        width: 1px;
        height: 1px;
        overflow: hidden;
        border: 0;
        padding: 0;
        clip: rect(0 0 0 0);
        -webkit-clip-path: inset(50%);
                clip-path: inset(50%);
        margin: -1px; }
      .cc--news-listing-filter .c--news-listing-filter .form-wrapper form > .fi--form-item:not(:last-child) {
        margin-bottom: 0.625rem; }
        @media screen and (min-width: 1024px) {
          .cc--news-listing-filter .c--news-listing-filter .form-wrapper form > .fi--form-item:not(:last-child) {
            margin-bottom: 0;
            flex: 0 0 calc((100% - 200px) / 3); } }
      .cc--news-listing-filter .c--news-listing-filter .form-wrapper form > .fi--form-item.f--input-select .select-wrap {
        border: 0;
        background-color: #FFF; }
      .cc--news-listing-filter .c--news-listing-filter .form-wrapper form > .fi--form-item.f--input-select select {
        height: 4.0625rem; }
      .cc--news-listing-filter .c--news-listing-filter .form-wrapper form > .fi--form-item.f--input-text {
        position: relative; }
        .cc--news-listing-filter .c--news-listing-filter .form-wrapper form > .fi--form-item.f--input-text input {
          height: 4.0625rem; }
        .cc--news-listing-filter .c--news-listing-filter .form-wrapper form > .fi--form-item.f--input-text::after {
          position: absolute;
          top: 50%;
          transform: translateY(-50%);
          right: 0.9375rem;
          width: 1.5625rem;
          height: 1.5625rem;
          background-image: url("../images/icons/icon-search.svg");
          background-position: center center;
          background-size: cover;
          content: '';
          z-index: 1;
          pointer-events: none; }
      @media screen and (min-width: 1024px) {
        .cc--news-listing-filter .c--news-listing-filter .form-wrapper form > .fi--form-item.f--input-submit {
          flex: 0 0 10.625rem; } }
      .cc--news-listing-filter .c--news-listing-filter .form-wrapper form > .fi--form-item button {
        font-family: "Oswald", sans-serif;
        font-optical-sizing: auto;
        font-weight: 600;
        font-style: normal;
        font-size: 1.125rem;
        line-height: 1.4445;
        padding-right: 2.96875rem;
        padding-left: 2.96875rem;
        position: relative;
        display: inline-flex;
        justify-content: center;
        align-items: center;
        text-decoration: none;
        text-align: center;
        letter-spacing: 0.03125rem;
        width: auto;
        min-height: 3.125rem;
        border-radius: 0;
        color: #25282A;
        background-color: #D6A461;
        -webkit-appearance: none;
           -moz-appearance: none;
                appearance: none;
        text-transform: uppercase;
        background-color: #862633;
        color: #FFF;
        height: 3.125rem;
        border: 0;
        height: 4.0625rem;
        width: 100%; }
        @media screen and (min-width: 768px) {
          .cc--news-listing-filter .c--news-listing-filter .form-wrapper form > .fi--form-item button {
            min-height: 3.75rem; } }
        @media screen and (min-width: 1024px) {
          .cc--news-listing-filter .c--news-listing-filter .form-wrapper form > .fi--form-item button {
            padding-right: 1.25rem;
            padding-left: 1.25rem; } }
        .cc--news-listing-filter .c--news-listing-filter .form-wrapper form > .fi--form-item button:focus {
          transition: color 0.1s ease-in-out, background-color 0.1s ease-in-out;
          color: #25282A;
          background-color: #D6A461;
          text-decoration: none; }
        html[data-whatintent="mouse"] .cc--news-listing-filter .c--news-listing-filter .form-wrapper form > .fi--form-item button {
          transition: all 0.1s; }
          html[data-whatintent="mouse"] .cc--news-listing-filter .c--news-listing-filter .form-wrapper form > .fi--form-item button:hover {
            transition: color 0.1s ease-in-out, background-color 0.1s ease-in-out;
            color: #FFF;
            background-color: #862633;
            text-decoration: none; }
        @media screen and (min-width: 1024px) {
          .cc--news-listing-filter .c--news-listing-filter .form-wrapper form > .fi--form-item button {
            height: 100%;
            width: 100%; } }
        html[data-whatintent="mouse"] .cc--news-listing-filter .c--news-listing-filter .form-wrapper form > .fi--form-item button {
          transition: all 0.1s; }
          html[data-whatintent="mouse"] .cc--news-listing-filter .c--news-listing-filter .form-wrapper form > .fi--form-item button:hover {
            background-color: #25282A; }
        .cc--news-listing-filter .c--news-listing-filter .form-wrapper form > .fi--form-item button:focus {
          background-color: #862633;
          color: #FFF; }
      .cc--news-listing-filter .c--news-listing-filter .form-wrapper form .reset-button {
        font-family: "IBM Plex Sans", sans-serif;
        font-weight: 400;
        font-style: normal;
        font-size: 0.875rem;
        line-height: 1.5715;
        position: absolute;
        padding: 0;
        margin: 0;
        border: 0;
        text-decoration: underline;
        background: transparent;
        cursor: pointer;
        bottom: -2.5rem;
        left: 8.33333%;
        height: 1.625rem; }
        @media screen and (min-width: 1024px) {
          .cc--news-listing-filter .c--news-listing-filter .form-wrapper form .reset-button {
            bottom: -2.25rem;
            right: 4.16667%;
            left: auto; } }
        html[data-whatintent="mouse"] .cc--news-listing-filter .c--news-listing-filter .form-wrapper form .reset-button {
          transition: all 0.1s; }
          html[data-whatintent="mouse"] .cc--news-listing-filter .c--news-listing-filter .form-wrapper form .reset-button:hover {
            text-decoration: none; }

.cc--news-listing {
  max-width: 1800px;
  margin: 0 auto;
  position: relative;
  overflow: hidden; }
  .cc--news-listing .c--news-listing {
    padding-top: 2.1875rem;
    padding-right: 8.33333%;
    padding-bottom: 2.1875rem;
    padding-left: 8.33333%; }
    @media screen and (min-width: 768px) {
      .cc--news-listing .c--news-listing {
        padding-top: 4.6875rem;
        padding-right: 8.33333%;
        padding-bottom: 4.6875rem;
        padding-left: 8.33333%; } }
    @media screen and (min-width: 1024px) {
      .cc--news-listing .c--news-listing {
        padding-right: 16.66667%;
        padding-left: 16.66667%; } }
    .cc--news-listing .c--news-listing .article-card {
      padding-bottom: 1.5625rem;
      border-bottom: 0.0625rem solid #D9D9D6; }
      .cc--news-listing .c--news-listing .article-card:not(:last-child) {
        margin-bottom: 1.5625rem; }
      @media screen and (min-width: 768px) {
        .cc--news-listing .c--news-listing .article-card {
          display: flex;
          flex-direction: row-reverse;
          justify-content: space-between;
          gap: 5%; } }
      .cc--news-listing .c--news-listing .article-card .image-container {
        margin-bottom: 0.9375rem;
        position: relative; }
        @media screen and (min-width: 768px) {
          .cc--news-listing .c--news-listing .article-card .image-container {
            margin-bottom: 0;
            flex: 0 0 32.5%; } }
        @media screen and (min-width: 1024px) {
          .cc--news-listing .c--news-listing .article-card .image-container {
            flex: 0 0 37.5%; } }
        .cc--news-listing .c--news-listing .article-card .image-container .image-link:focus {
          display: block; }
          html[data-whatinput="keyboard"] .cc--news-listing .c--news-listing .article-card .image-container .image-link:focus {
            outline: 0.125rem solid #862633;
            outline-offset: 0.125rem; }
          html[data-whatinput="mouse"] .cc--news-listing .c--news-listing .article-card .image-container .image-link:focus {
            outline: none;
            outline-offset: 0.125rem; }
      @media screen and (min-width: 1024px) {
        .cc--news-listing .c--news-listing .article-card .image-container + .text-container {
          flex: 0 0 56.25%; } }
      .cc--news-listing .c--news-listing .article-card .text-container .f--eyebrow {
        padding-top: 0.6875rem;
        padding-right: 0.625rem;
        padding-bottom: 0.6875rem;
        padding-left: 0.625rem;
        margin-bottom: 0.9375rem;
        background-color: #507F70;
        display: inline-flex;
        margin-bottom: 0.3125rem;
        padding-top: 0;
        padding-right: 0;
        padding-bottom: 0;
        padding-left: 0;
        background-color: transparent;
        margin-bottom: 0.625rem;
        padding-top: 0;
        padding-right: 0;
        padding-bottom: 0;
        padding-left: 0; }
        @media screen and (min-width: 768px) {
          .cc--news-listing .c--news-listing .article-card .text-container .f--eyebrow {
            margin-bottom: 1.5625rem; } }
        .cc--news-listing .c--news-listing .article-card .text-container .f--eyebrow span,
        .cc--news-listing .c--news-listing .article-card .text-container .f--eyebrow a {
          font-family: "Oswald", sans-serif;
          font-optical-sizing: auto;
          font-weight: 500;
          font-style: normal;
          font-size: 0.875rem;
          line-height: 1.2858;
          color: #25282A;
          text-transform: uppercase; }
        .cc--news-listing .c--news-listing .article-card .text-container .f--eyebrow a {
          text-decoration: none; }
          html[data-whatintent="mouse"] .cc--news-listing .c--news-listing .article-card .text-container .f--eyebrow a {
            transition: all 0.1s; }
            html[data-whatintent="mouse"] .cc--news-listing .c--news-listing .article-card .text-container .f--eyebrow a:hover {
              text-decoration: underline; }
        @media screen and (min-width: 768px) {
          .cc--news-listing .c--news-listing .article-card .text-container .f--eyebrow {
            margin-bottom: 0.625rem; } }
        .cc--news-listing .c--news-listing .article-card .text-container .f--eyebrow span,
        .cc--news-listing .c--news-listing .article-card .text-container .f--eyebrow a {
          color: #25282A; }
        @media screen and (min-width: 768px) {
          .cc--news-listing .c--news-listing .article-card .text-container .f--eyebrow {
            padding-top: 0;
            padding-right: 0;
            padding-bottom: 0;
            padding-left: 0; } }
      @media screen and (min-width: 768px) {
        .cc--news-listing .c--news-listing .article-card .text-container .f--cta-title {
          flex: 0 0 62.5%; } }
      .cc--news-listing .c--news-listing .article-card .text-container .f--cta-title h3 {
        font-family: "Oswald", sans-serif;
        font-optical-sizing: auto;
        font-weight: 400;
        font-style: normal;
        font-size: 1.625rem;
        line-height: 1.3077;
        color: #25282A; }
        @media screen and (min-width: 768px) {
          .cc--news-listing .c--news-listing .article-card .text-container .f--cta-title h3 {
            font-size: 2rem;
            line-height: 1.1875; } }
        .cc--news-listing .c--news-listing .article-card .text-container .f--cta-title h3 a {
          color: inherit;
          text-decoration: none; }
          html[data-whatintent="mouse"] .cc--news-listing .c--news-listing .article-card .text-container .f--cta-title h3 a {
            transition: all 0.1s; }
            html[data-whatintent="mouse"] .cc--news-listing .c--news-listing .article-card .text-container .f--cta-title h3 a:hover {
              text-decoration: underline; }
      .cc--news-listing .c--news-listing .article-card .text-container .date {
        font-family: "IBM Plex Sans", sans-serif;
        font-weight: 400;
        font-style: normal;
        font-size: 0.875rem;
        line-height: 1.8572;
        margin-top: 0.625rem;
        display: block;
        color: #25282A; }
    .cc--news-listing .c--news-listing .cc--rich-text .c--rich-text .inner-wrapper {
      padding-top: 0;
      padding-right: 0;
      padding-bottom: 0;
      padding-left: 0; }

.cc--notification-banner {
  background-color: #CC8A00; }
  .mobile-menu-open .cc--notification-banner {
    display: none; }
  .cc--notification-banner .c--notification-banner {
    max-width: 1800px;
    margin: 0 auto; }
    .cc--notification-banner .c--notification-banner .notification-banner-inner {
      padding-top: 2.1875rem;
      padding-right: 8.33333%;
      padding-bottom: 2.1875rem;
      padding-left: 8.33333%; }
      @media screen and (min-width: 768px) {
        .cc--notification-banner .c--notification-banner .notification-banner-inner {
          padding-top: 2.5rem;
          padding-right: 8.33333%;
          padding-bottom: 2.5rem;
          padding-left: 8.33333%; } }
      @media screen and (min-width: 1024px) {
        .cc--notification-banner .c--notification-banner .notification-banner-inner {
          padding-right: 6.25%;
          padding-left: 6.25%;
          display: flex;
          justify-content: space-between; } }
    @media screen and (min-width: 1024px) {
      .cc--notification-banner .c--notification-banner .left {
        width: 34.88372%; } }
    @media screen and (min-width: 1024px) {
      .cc--notification-banner .c--notification-banner .right {
        padding-top: 0.0625rem;
        width: 60.46512%; } }
    .cc--notification-banner .c--notification-banner .notification-title {
      font-family: "Oswald", sans-serif;
      font-optical-sizing: auto;
      font-weight: 400;
      font-style: normal;
      font-size: 1.625rem;
      line-height: 1.3077;
      color: #25282A; }
      @media screen and (min-width: 768px) {
        .cc--notification-banner .c--notification-banner .notification-title {
          font-size: 2rem;
          line-height: 1.1875; } }
    .cc--notification-banner .c--notification-banner .notification-timestamp {
      margin-top: 0.625rem;
      font-family: "IBM Plex Sans", sans-serif;
      font-weight: 400;
      font-style: normal;
      font-size: 0.875rem;
      line-height: 1.8572;
      color: #25282A; }
      .cc--notification-banner .c--notification-banner .notification-timestamp span {
        display: inline-block;
        margin-right: 0.3125rem; }
      .cc--notification-banner .c--notification-banner .notification-timestamp .f--date {
        display: inline-block; }
    .cc--notification-banner .c--notification-banner .f--link {
      margin-top: 0.9375rem; }
      @media screen and (min-width: 768px) {
        .cc--notification-banner .c--notification-banner .f--link {
          margin-top: 0.625rem; } }
      .cc--notification-banner .c--notification-banner .f--link a {
        padding-top: 0.375rem;
        padding-bottom: 0.375rem;
        font-family: "Oswald", sans-serif;
        font-optical-sizing: auto;
        font-weight: 600;
        font-style: normal;
        font-size: 1.125rem;
        line-height: 1.2223;
        letter-spacing: 0.03125rem;
        color: #25282A;
        text-decoration: none;
        text-transform: uppercase;
        display: flex;
        align-items: center; }
        html[data-whatintent="mouse"] .cc--notification-banner .c--notification-banner .f--link a {
          transition: all 0.1s; }
          html[data-whatintent="mouse"] .cc--notification-banner .c--notification-banner .f--link a:hover {
            text-decoration: underline;
            color: #25282A; }
        .cc--notification-banner .c--notification-banner .f--link a svg {
          fill: #25282A; }
    .cc--notification-banner .c--notification-banner .f--wysiwyg {
      margin-top: 0.9375rem; }
      @media screen and (min-width: 768px) {
        .cc--notification-banner .c--notification-banner .f--wysiwyg {
          margin-top: 2.1875rem; } }
      @media screen and (min-width: 1024px) {
        .cc--notification-banner .c--notification-banner .f--wysiwyg {
          flex-basis: 66.66667%;
          flex-grow: 1;
          margin-top: 0; } }
      .cc--notification-banner .c--notification-banner .f--wysiwyg p {
        font-family: "IBM Plex Sans", sans-serif;
        font-weight: 600;
        font-style: normal;
        font-size: 1rem;
        line-height: 1.75; }
        .cc--notification-banner .c--notification-banner .f--wysiwyg p a {
          color: inherit;
          text-decoration: underline; }
          html[data-whatintent="mouse"] .cc--notification-banner .c--notification-banner .f--wysiwyg p a {
            transition: all 0.1s; }
            html[data-whatintent="mouse"] .cc--notification-banner .c--notification-banner .f--wysiwyg p a:hover {
              text-decoration: none;
              color: inherit; }
      .cc--notification-banner .c--notification-banner .f--wysiwyg ul,
      .cc--notification-banner .c--notification-banner .f--wysiwyg ol {
        font-size: 1rem;
        line-height: 1.75; }
        .cc--notification-banner .c--notification-banner .f--wysiwyg ul ::marker,
        .cc--notification-banner .c--notification-banner .f--wysiwyg ol ::marker {
          color: #25282A; }
        .cc--notification-banner .c--notification-banner .f--wysiwyg ul li,
        .cc--notification-banner .c--notification-banner .f--wysiwyg ol li {
          color: #25282A;
          font-size: inherit;
          line-height: inherit; }

.cc--office-listing {
  max-width: 1800px;
  margin: 0 auto;
  position: relative;
  overflow: hidden; }
  .cc--office-listing .c--office-listing {
    padding-top: 2.1875rem;
    padding-right: 8.33333%;
    padding-bottom: 2.1875rem;
    padding-left: 8.33333%; }
    @media screen and (min-width: 768px) {
      .cc--office-listing .c--office-listing {
        padding-top: 3.125rem;
        padding-right: 8.33333%;
        padding-bottom: 4.6875rem;
        padding-left: 8.33333%; } }
    @media screen and (min-width: 1024px) {
      .cc--office-listing .c--office-listing {
        padding-right: 16.66667%;
        padding-left: 16.66667%; } }
    .cc--office-listing .c--office-listing .office-card {
      padding-bottom: 1.5625rem;
      border-bottom: 0.0625rem solid #D9D9D6; }
      .cc--office-listing .c--office-listing .office-card:not(:last-child) {
        margin-bottom: 1.5625rem; }
      @media screen and (min-width: 768px) {
        .cc--office-listing .c--office-listing .office-card {
          display: flex;
          flex-direction: row-reverse;
          justify-content: space-between;
          gap: 5%; } }
      .cc--office-listing .c--office-listing .office-card .image-container {
        margin-bottom: 0.9375rem;
        position: relative; }
        @media screen and (min-width: 768px) {
          .cc--office-listing .c--office-listing .office-card .image-container {
            margin-bottom: 0;
            flex: 0 0 32.5%; } }
        @media screen and (min-width: 1024px) {
          .cc--office-listing .c--office-listing .office-card .image-container {
            flex: 0 0 25%; } }
        .cc--office-listing .c--office-listing .office-card .image-container .image-link:focus {
          display: block; }
          html[data-whatinput="keyboard"] .cc--office-listing .c--office-listing .office-card .image-container .image-link:focus {
            outline: 0.125rem solid #862633;
            outline-offset: 0.125rem; }
          html[data-whatinput="mouse"] .cc--office-listing .c--office-listing .office-card .image-container .image-link:focus {
            outline: none;
            outline-offset: 0.125rem; }
      .cc--office-listing .c--office-listing .office-card .text-container {
        width: 100%; }
        .cc--office-listing .c--office-listing .office-card .text-container .office-meta {
          font-family: "IBM Plex Sans", sans-serif;
          font-weight: 400;
          font-style: normal;
          font-size: 0.9375rem;
          line-height: 1.8667;
          color: #25282A; }
          @media screen and (min-width: 768px) {
            .cc--office-listing .c--office-listing .office-card .text-container .office-meta {
              font-size: 1rem;
              line-height: 2; } }
          .cc--office-listing .c--office-listing .office-card .text-container .office-meta a {
            color: inherit;
            text-decoration: none; }
            html[data-whatintent="mouse"] .cc--office-listing .c--office-listing .office-card .text-container .office-meta a {
              transition: all 0.1s; }
              html[data-whatintent="mouse"] .cc--office-listing .c--office-listing .office-card .text-container .office-meta a:hover {
                text-decoration: underline; }
        .cc--office-listing .c--office-listing .office-card .text-container .f--cta-title {
          margin-bottom: 0.9375rem; }
          @media screen and (min-width: 768px) {
            .cc--office-listing .c--office-listing .office-card .text-container .f--cta-title {
              flex: 0 0 62.5%; } }
          .cc--office-listing .c--office-listing .office-card .text-container .f--cta-title h3 {
            font-family: "Oswald", sans-serif;
            font-optical-sizing: auto;
            font-weight: 400;
            font-style: normal;
            font-size: 1.625rem;
            line-height: 1.3077;
            color: #25282A; }
            @media screen and (min-width: 768px) {
              .cc--office-listing .c--office-listing .office-card .text-container .f--cta-title h3 {
                font-size: 2rem;
                line-height: 1.1875; } }
            .cc--office-listing .c--office-listing .office-card .text-container .f--cta-title h3 a {
              color: inherit;
              text-decoration: none; }
              html[data-whatintent="mouse"] .cc--office-listing .c--office-listing .office-card .text-container .f--cta-title h3 a {
                transition: all 0.1s; }
                html[data-whatintent="mouse"] .cc--office-listing .c--office-listing .office-card .text-container .f--cta-title h3 a:hover {
                  text-decoration: underline; }
      @media screen and (min-width: 768px) {
        .cc--office-listing .c--office-listing .office-card .image-container + .text-container {
          flex: 0 0 62.5%;
          width: 62.5%; } }
      @media screen and (min-width: 1024px) {
        .cc--office-listing .c--office-listing .office-card .image-container + .text-container {
          flex: 0 0 56.25%;
          width: 56.25%; } }

.cc--pagination .c--pagination {
  max-width: 1800px;
  margin: 0 auto; }
  .cc--pagination .c--pagination .inner-wrapper {
    margin-top: 1.5625rem; }
    @media screen and (min-width: 768px) {
      .cc--pagination .c--pagination .inner-wrapper {
        margin-top: 2.1875rem; } }
  .cc--pagination .c--pagination ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center; }
    .cc--pagination .c--pagination ul li {
      margin-right: 0.9375rem;
      margin-left: 0.9375rem; }
      .cc--pagination .c--pagination ul li a {
        font-family: "Oswald", sans-serif;
        font-optical-sizing: auto;
        font-weight: 600;
        font-style: normal;
        font-size: 1.375rem;
        line-height: 1.4546;
        display: block;
        position: relative;
        color: #25282A;
        text-decoration: none; }
        html[data-whatintent="mouse"] .cc--pagination .c--pagination ul li a {
          transition: all 0.1s; }
          html[data-whatintent="mouse"] .cc--pagination .c--pagination ul li a:hover {
            text-decoration: underline; }
      .cc--pagination .c--pagination ul li span {
        font-family: "Oswald", sans-serif;
        font-optical-sizing: auto;
        font-weight: 600;
        font-style: normal;
        font-size: 1.375rem;
        line-height: 1.4546;
        display: block;
        color: #25282A;
        text-decoration: none; }
      .cc--pagination .c--pagination ul li.current {
        background-color: #862633; }
        .cc--pagination .c--pagination ul li.current span {
          padding-right: 0.8125rem;
          padding-left: 0.8125rem;
          position: relative;
          color: #FFF; }

.cc--program-accordion-content .c--program-accordion-content {
  padding-top: 0.625rem;
  padding-bottom: 1.5625rem;
  border-bottom: 0.0625rem solid #862633; }

.cc--program-accordion-content .links-container {
  margin-top: 1.25rem; }
  @media screen and (min-width: 768px) {
    .cc--program-accordion-content .links-container {
      margin-top: 0;
      flex: 0 0 45%;
      width: 45%; } }
  @media screen and (min-width: 1024px) {
    .cc--program-accordion-content .links-container {
      flex: 0 0 50%;
      width: 50%; } }
  .cc--program-accordion-content .links-container .f--link a {
    padding-top: 0.375rem;
    padding-bottom: 0.375rem;
    font-family: "Oswald", sans-serif;
    font-optical-sizing: auto;
    font-weight: 600;
    font-style: normal;
    font-size: 1.125rem;
    line-height: 1.2223;
    letter-spacing: 0.03125rem;
    color: #862633;
    text-decoration: none;
    text-transform: uppercase;
    display: flex;
    align-items: center; }
    html[data-whatintent="mouse"] .cc--program-accordion-content .links-container .f--link a {
      transition: all 0.1s; }
      html[data-whatintent="mouse"] .cc--program-accordion-content .links-container .f--link a:hover {
        text-decoration: underline;
        color: #862633; }
    .cc--program-accordion-content .links-container .f--link a svg {
      fill: #862633; }
  .cc--program-accordion-content .links-container .f--link:not(:first-child) {
    margin-top: 0.625rem; }

@media screen and (min-width: 768px) {
  .cc--program-accordion-content .supplementary-info {
    margin-top: 1.25rem;
    display: flex;
    justify-content: space-between; } }

.cc--program-accordion-content .about {
  padding-top: 0.9375rem;
  padding-right: 5%;
  padding-bottom: 0.9375rem;
  padding-left: 5%;
  margin-top: 0.9375rem;
  background-color: #D9D9D6; }
  @media screen and (min-width: 768px) {
    .cc--program-accordion-content .about {
      padding-right: 2.5%;
      padding-left: 2.5%;
      margin-top: 0;
      flex: 0 0 45%;
      width: 45%; } }
  @media screen and (min-width: 1024px) {
    .cc--program-accordion-content .about {
      padding-right: 3.125%;
      padding-left: 3.125%;
      flex: 0 0 43.75%;
      width: 43.75%;
      max-width: 21.875rem; } }
  .cc--program-accordion-content .about span {
    font-family: "Oswald", sans-serif;
    font-optical-sizing: auto;
    font-weight: 500;
    font-style: normal;
    font-size: 0.875rem;
    line-height: 1.2858;
    text-transform: uppercase; }
  .cc--program-accordion-content .about .f--link a {
    font-family: "IBM Plex Sans", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 1rem;
    line-height: 2;
    text-decoration: underline;
    color: #25282A; }
    html[data-whatintent="mouse"] .cc--program-accordion-content .about .f--link a {
      transition: all 0.1s; }
      html[data-whatintent="mouse"] .cc--program-accordion-content .about .f--link a:hover {
        text-decoration: none; }

.cc--program-interest-selector {
  position: relative; }
  @media screen and (min-width: 768px) {
    .cc--program-interest-selector {
      height: 25rem; } }
  @media screen and (min-width: 768px) {
    .cc--program-interest-selector .c--program-interest-selector {
      display: flex;
      justify-content: center;
      align-items: center;
      height: 100%; } }
  .cc--program-interest-selector .text-container {
    width: 100%;
    z-index: 1; }
    @media screen and (min-width: 768px) {
      .cc--program-interest-selector .text-container {
        position: relative; } }
    @media screen and (min-width: 1024px) {
      .cc--program-interest-selector .text-container {
        padding-right: 4.16667%;
        padding-left: 4.16667%;
        max-width: 1000px;
        margin: 0 auto; } }
    @media screen and (min-width: 1200px) {
      .cc--program-interest-selector .text-container {
        padding-right: 0;
        padding-left: 0; } }
    .cc--program-interest-selector .text-container .inner-wrapper {
      margin-top: -1.875rem;
      position: relative; }
      @media screen and (min-width: 768px) {
        .cc--program-interest-selector .text-container .inner-wrapper {
          margin-top: 0; } }
      @media screen and (min-width: 1024px) {
        .cc--program-interest-selector .text-container .inner-wrapper {
          display: flex;
          justify-content: space-between;
          align-items: center; } }
  .cc--program-interest-selector .f--section-title {
    padding-right: 8.33333%;
    padding-left: 8.33333%;
    position: relative; }
    @media screen and (min-width: 1024px) {
      .cc--program-interest-selector .f--section-title {
        padding-right: 0;
        padding-left: 0;
        flex: 0 0 42.5%; } }
    .cc--program-interest-selector .f--section-title::before {
      position: absolute;
      top: 0;
      left: 0;
      content: '';
      display: block;
      width: 100%;
      height: calc(50% + 15px);
      background-image: linear-gradient(180deg, rgba(134, 38, 51, 0) 0%, #862633 100%); }
      @media screen and (min-width: 768px) {
        .cc--program-interest-selector .f--section-title::before {
          display: none; } }
    .cc--program-interest-selector .f--section-title::after {
      position: absolute;
      bottom: 0;
      left: 0;
      content: '';
      display: block;
      width: 100%;
      height: 50%;
      background-color: #862633; }
      @media screen and (min-width: 768px) {
        .cc--program-interest-selector .f--section-title::after {
          display: none; } }
    .cc--program-interest-selector .f--section-title h2 {
      font-size: 2.25rem;
      line-height: 1.0556;
      color: #FFF;
      text-transform: uppercase; }
      @media screen and (min-width: 768px) {
        .cc--program-interest-selector .f--section-title h2 {
          font-size: 3.125rem;
          line-height: 1.48; } }
  .cc--program-interest-selector .image-container {
    position: relative;
    width: 100%;
    aspect-ratio: 3 / 1;
    overflow: hidden; }
    @media screen and (min-width: 768px) {
      .cc--program-interest-selector .image-container {
        position: absolute;
        aspect-ratio: 0;
        height: 25rem; } }
    .cc--program-interest-selector .image-container::before {
      content: '';
      position: absolute;
      width: 100%;
      height: 100%;
      background-color: rgba(134, 38, 51, 0.85);
      display: block;
      top: 0;
      left: 0;
      z-index: 1; }
    .cc--program-interest-selector .image-container .f--image {
      height: 100%;
      width: 100%; }
      @media screen and (min-width: 1024px) {
        .cc--program-interest-selector .image-container .f--image {
          position: absolute;
          top: 0;
          left: 0; } }
      .cc--program-interest-selector .image-container .f--image img {
        height: 100%;
        -o-object-fit: cover;
           object-fit: cover; }
  .cc--program-interest-selector .form-wrapper {
    padding-top: 0.9375rem;
    padding-right: 4.16667%;
    padding-bottom: 3.125rem;
    padding-left: 4.16667%;
    background-color: #862633; }
    @media screen and (min-width: 768px) {
      .cc--program-interest-selector .form-wrapper {
        padding-top: 1.5625rem;
        padding-right: 8.33333%;
        padding-bottom: 1.5625rem;
        padding-left: 8.33333%;
        background-color: transparent; } }
    @media screen and (min-width: 1024px) {
      .cc--program-interest-selector .form-wrapper {
        padding-top: 0;
        padding-right: 0;
        padding-bottom: 0;
        padding-left: 0;
        flex: 0 0 55%; } }
  .cc--program-interest-selector .interests-form {
    display: flex;
    -moz-column-gap: 0.625rem;
         column-gap: 0.625rem; }
    .cc--program-interest-selector .interests-form label {
      position: absolute;
      white-space: nowrap;
      width: 1px;
      height: 1px;
      overflow: hidden;
      border: 0;
      padding: 0;
      clip: rect(0 0 0 0);
      -webkit-clip-path: inset(50%);
              clip-path: inset(50%);
      margin: -1px; }
    .cc--program-interest-selector .interests-form .input-wrapper {
      flex: 0 0 calc(100% - 60px); }
    .cc--program-interest-selector .interests-form .f--input-submit {
      flex: 0 0 3.125rem; }
    .cc--program-interest-selector .interests-form .select-wrap {
      background-color: #CEB888;
      border: 0;
      height: 3.75rem;
      display: flex;
      align-items: center; }
      @media screen and (min-width: 768px) {
        .cc--program-interest-selector .interests-form .select-wrap {
          height: 4.6875rem; } }
      .cc--program-interest-selector .interests-form .select-wrap select {
        padding-top: 0;
        padding-right: 3.125rem;
        padding-bottom: 0;
        padding-left: 0.9375rem;
        font-family: "Oswald", sans-serif;
        font-optical-sizing: auto;
        font-weight: 400;
        font-style: normal;
        font-size: 1.875rem;
        line-height: 1.0667;
        color: #25282A; }
        @media screen and (min-width: 768px) {
          .cc--program-interest-selector .interests-form .select-wrap select {
            padding-left: 1.5625rem;
            font-size: 3.125rem;
            line-height: 1; } }
      .cc--program-interest-selector .interests-form .select-wrap svg {
        width: 2.1875rem;
        height: 2.1875rem; }
        @media screen and (min-width: 768px) {
          .cc--program-interest-selector .interests-form .select-wrap svg {
            width: 3.125rem;
            height: 3.125rem; } }
    .cc--program-interest-selector .interests-form button {
      font-family: "Oswald", sans-serif;
      font-optical-sizing: auto;
      font-weight: 500;
      font-style: normal;
      font-size: 1.5rem;
      line-height: 1.3334;
      background-color: #D6A461;
      height: 3.75rem;
      width: 100%;
      text-transform: uppercase; }
      @media screen and (min-width: 768px) {
        .cc--program-interest-selector .interests-form button {
          height: 4.6875rem; } }
      html[data-whatintent="mouse"] .cc--program-interest-selector .interests-form button {
        transition: all 0.1s; }
        html[data-whatintent="mouse"] .cc--program-interest-selector .interests-form button:hover {
          background-color: #25282A; }
          html[data-whatintent="mouse"] .cc--program-interest-selector .interests-form button:hover span {
            color: #FFF; }
      .cc--program-interest-selector .interests-form button span {
        color: #25282A; }
      .cc--program-interest-selector .interests-form button:focus {
        transition: color 0.1s ease-in-out, background-color 0.1s ease-in-out;
        outline-color: #D6A461; }

.cc--program-listing-filter {
  margin-bottom: 1.875rem;
  position: relative;
  background-color: #D6A461;
  z-index: 1; }
  @media screen and (min-width: 1024px) {
    .cc--program-listing-filter .inner-wrapper {
      padding-top: 1.125rem;
      padding-right: 4.16667%;
      padding-bottom: 1.125rem;
      padding-left: 4.16667%; } }
  .cc--program-listing-filter .c--program-listing-filter {
    max-width: 1800px;
    margin: 0 auto;
    position: relative; }
    .cc--program-listing-filter .c--program-listing-filter .form-wrapper {
      padding-top: 0.9375rem;
      padding-right: 8.33333%;
      padding-bottom: 0.9375rem;
      padding-left: 8.33333%; }
      @media screen and (min-width: 768px) {
        .cc--program-listing-filter .c--program-listing-filter .form-wrapper {
          padding-right: 8.33333%;
          padding-left: 8.33333%; } }
      @media screen and (min-width: 1024px) {
        .cc--program-listing-filter .c--program-listing-filter .form-wrapper {
          padding-top: 0;
          padding-right: 0;
          padding-bottom: 0;
          padding-left: 0; } }
      @media screen and (min-width: 1024px) {
        .cc--program-listing-filter .c--program-listing-filter .form-wrapper form {
          display: flex;
          margin: 0;
          -moz-column-gap: 0.625rem;
               column-gap: 0.625rem; } }
      .cc--program-listing-filter .c--program-listing-filter .form-wrapper form > .fi--form-item label {
        position: absolute;
        white-space: nowrap;
        width: 1px;
        height: 1px;
        overflow: hidden;
        border: 0;
        padding: 0;
        clip: rect(0 0 0 0);
        -webkit-clip-path: inset(50%);
                clip-path: inset(50%);
        margin: -1px; }
      .cc--program-listing-filter .c--program-listing-filter .form-wrapper form > .fi--form-item:not(:last-child) {
        margin-bottom: 0.625rem; }
        @media screen and (min-width: 1024px) {
          .cc--program-listing-filter .c--program-listing-filter .form-wrapper form > .fi--form-item:not(:last-child) {
            margin-bottom: 0;
            flex: 0 0 calc((100% - 200px) / 3); } }
      .cc--program-listing-filter .c--program-listing-filter .form-wrapper form > .fi--form-item.f--input-select .select-wrap {
        border: 0;
        background-color: #FFF; }
      .cc--program-listing-filter .c--program-listing-filter .form-wrapper form > .fi--form-item.f--input-select select {
        height: 4.0625rem; }
      .cc--program-listing-filter .c--program-listing-filter .form-wrapper form > .fi--form-item.f--input-text {
        position: relative; }
        .cc--program-listing-filter .c--program-listing-filter .form-wrapper form > .fi--form-item.f--input-text input {
          height: 4.0625rem; }
        .cc--program-listing-filter .c--program-listing-filter .form-wrapper form > .fi--form-item.f--input-text::after {
          position: absolute;
          top: 50%;
          transform: translateY(-50%);
          right: 0.9375rem;
          width: 1.5625rem;
          height: 1.5625rem;
          background-image: url("../images/icons/icon-search.svg");
          background-position: center center;
          background-size: cover;
          content: '';
          z-index: 1;
          pointer-events: none; }
      @media screen and (min-width: 1024px) {
        .cc--program-listing-filter .c--program-listing-filter .form-wrapper form > .fi--form-item.f--input-submit {
          flex: 0 0 10.625rem; } }
      .cc--program-listing-filter .c--program-listing-filter .form-wrapper form > .fi--form-item button {
        font-family: "Oswald", sans-serif;
        font-optical-sizing: auto;
        font-weight: 600;
        font-style: normal;
        font-size: 1.125rem;
        line-height: 1.4445;
        padding-right: 2.96875rem;
        padding-left: 2.96875rem;
        position: relative;
        display: inline-flex;
        justify-content: center;
        align-items: center;
        text-decoration: none;
        text-align: center;
        letter-spacing: 0.03125rem;
        width: auto;
        min-height: 3.125rem;
        border-radius: 0;
        color: #25282A;
        background-color: #D6A461;
        -webkit-appearance: none;
           -moz-appearance: none;
                appearance: none;
        text-transform: uppercase;
        background-color: #862633;
        color: #FFF;
        height: 3.125rem;
        border: 0;
        height: 4.0625rem;
        width: 100%; }
        @media screen and (min-width: 768px) {
          .cc--program-listing-filter .c--program-listing-filter .form-wrapper form > .fi--form-item button {
            min-height: 3.75rem; } }
        @media screen and (min-width: 1024px) {
          .cc--program-listing-filter .c--program-listing-filter .form-wrapper form > .fi--form-item button {
            padding-right: 1.25rem;
            padding-left: 1.25rem; } }
        .cc--program-listing-filter .c--program-listing-filter .form-wrapper form > .fi--form-item button:focus {
          transition: color 0.1s ease-in-out, background-color 0.1s ease-in-out;
          color: #25282A;
          background-color: #D6A461;
          text-decoration: none; }
        html[data-whatintent="mouse"] .cc--program-listing-filter .c--program-listing-filter .form-wrapper form > .fi--form-item button {
          transition: all 0.1s; }
          html[data-whatintent="mouse"] .cc--program-listing-filter .c--program-listing-filter .form-wrapper form > .fi--form-item button:hover {
            transition: color 0.1s ease-in-out, background-color 0.1s ease-in-out;
            color: #FFF;
            background-color: #862633;
            text-decoration: none; }
        @media screen and (min-width: 1024px) {
          .cc--program-listing-filter .c--program-listing-filter .form-wrapper form > .fi--form-item button {
            height: 100%;
            width: 100%; } }
        html[data-whatintent="mouse"] .cc--program-listing-filter .c--program-listing-filter .form-wrapper form > .fi--form-item button {
          transition: all 0.1s; }
          html[data-whatintent="mouse"] .cc--program-listing-filter .c--program-listing-filter .form-wrapper form > .fi--form-item button:hover {
            background-color: #25282A; }
        .cc--program-listing-filter .c--program-listing-filter .form-wrapper form > .fi--form-item button:focus {
          background-color: #862633;
          color: #FFF; }
      .cc--program-listing-filter .c--program-listing-filter .form-wrapper form .reset-button {
        font-family: "IBM Plex Sans", sans-serif;
        font-weight: 400;
        font-style: normal;
        font-size: 0.875rem;
        line-height: 1.5715;
        position: absolute;
        padding: 0;
        margin: 0;
        border: 0;
        text-decoration: underline;
        background: transparent;
        cursor: pointer;
        bottom: -2.5rem;
        left: 8.33333%;
        height: 1.625rem; }
        @media screen and (min-width: 1024px) {
          .cc--program-listing-filter .c--program-listing-filter .form-wrapper form .reset-button {
            bottom: -2.25rem;
            right: 4.16667%;
            left: auto; } }
        html[data-whatintent="mouse"] .cc--program-listing-filter .c--program-listing-filter .form-wrapper form .reset-button {
          transition: all 0.1s; }
          html[data-whatintent="mouse"] .cc--program-listing-filter .c--program-listing-filter .form-wrapper form .reset-button:hover {
            text-decoration: none; }

.cc--program-listing {
  padding-top: 0;
  padding-bottom: 0; }
  @media screen and (min-width: 768px) {
    .cc--program-listing .cc--accordions .c--accordions {
      padding-bottom: 4.6875rem; } }
  .cc--program-listing .cc--accordions .c--accordions ul {
    margin-top: 0; }
    .cc--program-listing .cc--accordions .c--accordions ul li:last-child {
      margin-bottom: 0; }
    .cc--program-listing .cc--accordions .c--accordions ul button .item-title {
      font-family: "Oswald", sans-serif;
      font-optical-sizing: auto;
      font-weight: 400;
      font-style: normal;
      font-size: 2.25rem;
      line-height: 1.1667; }
      @media screen and (min-width: 768px) {
        .cc--program-listing .cc--accordions .c--accordions ul button .item-title {
          font-size: 2.875rem;
          line-height: 1.1305; } }
    .cc--program-listing .cc--accordions .c--accordions ul button .description {
      margin-top: 0.9375rem; }
      .cc--program-listing .cc--accordions .c--accordions ul button .description span {
        font-size: 0.875rem;
        line-height: 1.5715; }
        @media screen and (min-width: 768px) {
          .cc--program-listing .cc--accordions .c--accordions ul button .description span {
            font-size: 0.875rem;
            line-height: 1.8572; } }
        .cc--program-listing .cc--accordions .c--accordions ul button .description span.prog-type {
          font-family: "IBM Plex Sans", sans-serif;
          font-weight: 600;
          font-style: normal; }
      .cc--program-listing .cc--accordions .c--accordions ul button .description span + span::before {
        padding-right: 0.91063rem;
        padding-left: 0.91063rem;
        font-size: 1.25rem;
        line-height: 1;
        display: inline-flex;
        content: '|';
        color: #D6A461; }

.cc--rich-text::after {
  display: block;
  clear: both;
  content: ""; }

.cc--rich-text .c--rich-text {
  max-width: 1800px;
  margin: 0 auto; }
  .cc--rich-text .c--rich-text .inner-wrapper {
    padding-top: 1.5625rem;
    padding-right: 8.33333%;
    padding-bottom: 1.5625rem;
    padding-left: 8.33333%; }
    @media screen and (min-width: 768px) {
      .cc--rich-text .c--rich-text .inner-wrapper {
        padding-top: 3.125rem;
        padding-right: 8.33333%;
        padding-bottom: 3.125rem;
        padding-left: 8.33333%; } }
    @media screen and (min-width: 1024px) {
      .cc--rich-text .c--rich-text .inner-wrapper {
        padding-right: 16.66667%;
        padding-left: 16.66667%; } }

.cc--search-form {
  margin-top: 1.875rem;
  position: relative;
  width: 100%; }
  @media screen and (min-width: 1024px) {
    .cc--search-form {
      margin-top: 0;
      position: absolute;
      display: none;
      top: 0;
      right: 3.1875rem;
      width: 31.25rem;
      z-index: 1; } }
  .cc--search-form .c--search-form > .inner-wrapper {
    padding-right: 8.33333%;
    padding-left: 8.33333%;
    background-color: #862633;
    position: relative; }
    @media screen and (min-width: 768px) {
      .cc--search-form .c--search-form > .inner-wrapper {
        padding-right: 8.33333%;
        padding-left: 8.33333%; } }
    @media screen and (min-width: 1024px) {
      .cc--search-form .c--search-form > .inner-wrapper {
        padding-right: 0;
        padding-left: 0; } }
  .cc--search-form form {
    display: flex;
    position: relative;
    align-items: center;
    justify-content: space-between; }
  .cc--search-form .input-wrapper {
    position: relative;
    width: 100%; }
  .cc--search-form .fi--form-item {
    margin: 0;
    background-color: #D9D9D6; }
    .cc--search-form .fi--form-item label {
      position: absolute;
      white-space: nowrap;
      width: 1px;
      height: 1px;
      overflow: hidden;
      border: 0;
      padding: 0;
      clip: rect(0 0 0 0);
      -webkit-clip-path: inset(50%);
              clip-path: inset(50%);
      margin: -1px; }
    .cc--search-form .fi--form-item input {
      font-family: "IBM Plex Sans", sans-serif;
      font-weight: 600;
      font-style: normal;
      font-size: 1rem;
      line-height: 1.25;
      padding-top: 0.9375rem;
      padding-right: 0;
      padding-bottom: 0.9375rem;
      padding-left: 5%;
      width: 98%;
      height: 3.125rem;
      border: 0;
      background: transparent;
      color: #000; }
      .cc--search-form .fi--form-item input:focus {
        outline: none; }
      .cc--search-form .fi--form-item input::-moz-placeholder {
        opacity: 1;
        font-family: "IBM Plex Sans", sans-serif;
        font-weight: 400;
        font-style: normal;
        color: #25282A; }
      .cc--search-form .fi--form-item input::placeholder {
        opacity: 1;
        font-family: "IBM Plex Sans", sans-serif;
        font-weight: 400;
        font-style: normal;
        color: #25282A; }
  .cc--search-form button {
    flex: 1 0 auto;
    width: 3.125rem;
    height: 3.125rem;
    min-height: 0;
    padding: 0;
    border: 0;
    background: #D6A461;
    background-image: url("../images/icons/icon-search.svg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 2.1875rem;
    font-size: 0;
    display: block; }
    html[data-whatintent="mouse"] .cc--search-form button {
      transition: all 0.1s; }
      html[data-whatintent="mouse"] .cc--search-form button:hover {
        border: 0;
        background-color: #25282A;
        background-image: url("../images/icons/icon-search-white.svg"); }
    .cc--search-form button:focus {
      outline-offset: -0.1875rem !important; }
      html[data-whatinput="keyboard"] .cc--search-form button:focus {
        outline: 0.125rem solid #862633;
        outline-offset: 0.125rem; }
      html[data-whatinput="mouse"] .cc--search-form button:focus {
        outline: none;
        outline-offset: 0.125rem; }

.cc--search-sidebar {
  margin-top: 3.125rem; }
  .cc--search-sidebar .searches {
    padding-top: 2.1875rem;
    padding-right: 10%;
    padding-bottom: 2.1875rem;
    padding-left: 10%;
    background-color: #D9D9D6; }
    @media screen and (min-width: 768px) {
      .cc--search-sidebar .searches {
        padding-right: 11.11111%;
        padding-left: 11.11111%; } }
  .cc--search-sidebar .f--section-title h2 {
    font-family: "Oswald", sans-serif;
    font-optical-sizing: auto;
    font-weight: 500;
    font-style: normal;
    font-size: 0.875rem;
    line-height: 1.2858;
    text-transform: uppercase;
    color: #25282A;
    letter-spacing: 0.03125rem; }
  .cc--search-sidebar .links {
    margin-top: 0.9375rem; }
    .cc--search-sidebar .links .f--link a {
      font-family: "IBM Plex Sans", sans-serif;
      font-weight: 400;
      font-style: normal;
      font-size: 1rem;
      line-height: 2; }
  .cc--search-sidebar .f--description {
    padding-top: 1.25rem;
    padding-right: 10%;
    padding-left: 10%; }
    @media screen and (min-width: 768px) {
      .cc--search-sidebar .f--description {
        padding-right: 11.11111%;
        padding-left: 11.11111%; } }
    .cc--search-sidebar .f--description p {
      font-size: 0.875rem;
      line-height: 1.7858; }
      .cc--search-sidebar .f--description p a {
        color: #862633; }

@media screen and (min-width: 1024px) {
  .cc--social-links {
    display: flex;
    flex-direction: column;
    justify-content: center; } }

.cc--social-links .c--social-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: center; }
  @media screen and (min-width: 1024px) {
    .cc--social-links .c--social-links ul {
      justify-content: flex-start; } }
  .cc--social-links .c--social-links ul li:not(:last-child) {
    margin-right: 0.9375rem; }
    @media screen and (min-width: 768px) {
      .cc--social-links .c--social-links ul li:not(:last-child) {
        margin-right: 1.5625rem; } }
  .cc--social-links .c--social-links ul li a {
    display: block; }
    .cc--social-links .c--social-links ul li a svg {
      display: block;
      width: 1.875rem;
      height: 1.875rem; }
    html[data-whatintent="mouse"] .cc--social-links .c--social-links ul li a {
      transition: all 0.1s; }
      html[data-whatintent="mouse"] .cc--social-links .c--social-links ul li a:hover svg path {
        fill: #862633; }

.cc--social-links.white .c--social-links ul li a svg path {
  fill: #FFF; }

html[data-whatintent="mouse"] .cc--social-links.white .c--social-links ul li a {
  transition: all 0.1s; }
  html[data-whatintent="mouse"] .cc--social-links.white .c--social-links ul li a:hover svg path {
    fill: #D6A461; }

.cc--social-links.black .c--social-links ul li a svg path {
  fill: #000; }

html[data-whatintent="mouse"] .cc--social-links.black .c--social-links ul li a {
  transition: all 0.1s; }
  html[data-whatintent="mouse"] .cc--social-links.black .c--social-links ul li a:hover svg path {
    fill: #862633; }

.cc--social-media-feed .c--social-media-feed {
  max-width: 1800px;
  margin: 0 auto; }

.cc--social-media-feed .content-container {
  padding-top: 2.1875rem;
  padding-right: 8.33333%;
  padding-bottom: 2.1875rem;
  padding-left: 8.33333%; }
  @media screen and (min-width: 768px) {
    .cc--social-media-feed .content-container {
      padding-top: 4.6875rem;
      padding-right: 8.33333%;
      padding-left: 8.33333%;
      display: flex;
      justify-content: space-between; } }
  @media screen and (min-width: 1024px) {
    .cc--social-media-feed .content-container {
      padding-right: 4.16667%;
      padding-left: 4.16667%; } }

.cc--social-media-feed .social-networks {
  margin-top: 1.5625rem;
  align-self: flex-end; }
  .cc--social-media-feed .social-networks ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex; }
    .cc--social-media-feed .social-networks ul svg {
      width: 1.1875rem;
      height: 1.1875rem;
      display: block; }
      html[data-whatintent="mouse"] .cc--social-media-feed .social-networks ul svg {
        transition: all 0.1s; }
        html[data-whatintent="mouse"] .cc--social-media-feed .social-networks ul svg:hover {
          fill: #862633; }
    .cc--social-media-feed .social-networks ul a {
      display: block; }
      .cc--social-media-feed .social-networks ul a.youtube svg {
        width: 1.75rem;
        height: 1.17375rem; }
    @media screen and (max-width: 767px) {
      .cc--social-media-feed .social-networks ul li {
        margin-right: 2.1875rem; }
        .cc--social-media-feed .social-networks ul li:last-child {
          margin-right: 0; } }
    @media screen and (min-width: 768px) {
      .cc--social-media-feed .social-networks ul li {
        margin-left: 2.1875rem; }
        .cc--social-media-feed .social-networks ul li:first-child {
          margin-left: 0; } }
    @media screen and (min-width: 1024px) {
      .cc--social-media-feed .social-networks ul li {
        margin-left: 2.8125rem; } }

.cc--social-media-feed .crt-widget.crt-widget-branded {
  padding-bottom: 2.1875rem; }
  @media screen and (min-width: 768px) {
    .cc--social-media-feed .crt-widget.crt-widget-branded {
      padding-bottom: 4.6875rem; } }

.cc--social-media-feed .crt-widget .crt-load-more {
  font-family: "Oswald", sans-serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
  font-size: 1.125rem;
  line-height: 1.4445;
  padding-right: 2.96875rem;
  padding-left: 2.96875rem;
  position: relative;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  text-align: center;
  letter-spacing: 0.03125rem;
  width: auto;
  min-height: 3.125rem;
  border-radius: 0;
  color: #25282A;
  background-color: #D6A461;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  text-transform: uppercase;
  padding-top: 0;
  padding-right: 2.96875rem;
  padding-bottom: 0;
  padding-left: 2.96875rem;
  border: 0; }
  @media screen and (min-width: 768px) {
    .cc--social-media-feed .crt-widget .crt-load-more {
      min-height: 3.75rem; } }
  @media screen and (min-width: 1024px) {
    .cc--social-media-feed .crt-widget .crt-load-more {
      padding-right: 1.25rem;
      padding-left: 1.25rem; } }
  .cc--social-media-feed .crt-widget .crt-load-more:focus {
    transition: color 0.1s ease-in-out, background-color 0.1s ease-in-out;
    color: #25282A;
    background-color: #D6A461;
    text-decoration: none; }
  html[data-whatintent="mouse"] .cc--social-media-feed .crt-widget .crt-load-more {
    transition: all 0.1s; }
    html[data-whatintent="mouse"] .cc--social-media-feed .crt-widget .crt-load-more:hover {
      transition: color 0.1s ease-in-out, background-color 0.1s ease-in-out;
      color: #FFF;
      background-color: #862633;
      text-decoration: none; }
  .cc--social-media-feed .crt-widget .crt-load-more:focus {
    background-color: #D6A461; }

.cc--social-media-feed .crt-widget-mosaic .crt-load-more-container {
  margin-top: 1.5625rem; }

.cc--social-media-feed .crt-post-userimage,
.cc--social-media-feed .crt-post-image {
  margin: 0; }

.cc--utility-menu {
  position: relative; }
  @media screen and (min-width: 1024px) {
    .cc--utility-menu {
      margin-right: 1.25rem;
      z-index: 1; } }
  .cc--utility-menu::before {
    margin-right: auto;
    margin-left: auto;
    content: '';
    display: block;
    width: calc(100% - 16.66667%);
    height: 0.0625rem;
    background-color: #25282A;
    opacity: 0.3; }
    @media screen and (min-width: 1024px) {
      .cc--utility-menu::before {
        display: none; } }
  .cc--utility-menu .c--utility-menu {
    padding-top: 1.5625rem;
    padding-right: 8.33333%;
    padding-bottom: 1.5625rem;
    padding-left: 8.33333%; }
    @media screen and (min-width: 1024px) {
      .cc--utility-menu .c--utility-menu {
        padding-top: 0;
        padding-right: 0;
        padding-bottom: 0;
        padding-left: 0; } }
    .cc--utility-menu .c--utility-menu nav > ul {
      list-style: none;
      padding: 0;
      margin: 0; }
      @media screen and (min-width: 1024px) {
        .cc--utility-menu .c--utility-menu nav > ul {
          display: flex;
          align-items: center;
          gap: 1.5625rem; } }
      @media screen and (min-width: 1024px) {
        .cc--utility-menu .c--utility-menu nav > ul > li {
          height: 3.125rem;
          display: flex;
          align-items: center; } }
      .cc--utility-menu .c--utility-menu nav > ul li {
        position: relative; }
        .cc--utility-menu .c--utility-menu nav > ul li:not(:last-child) {
          margin-bottom: 0.9375rem; }
          @media screen and (min-width: 1024px) {
            .cc--utility-menu .c--utility-menu nav > ul li:not(:last-child) {
              margin-bottom: 0; } }
        @media screen and (min-width: 1024px) {
          html[data-whatintent="mouse"] .cc--utility-menu .c--utility-menu nav > ul li {
            transition: all 0.1s; }
            html[data-whatintent="mouse"] .cc--utility-menu .c--utility-menu nav > ul li:hover .submenus-wrapper {
              display: block; }
            html[data-whatintent="mouse"] .cc--utility-menu .c--utility-menu nav > ul li:hover .link-arrow-wrapper::after {
              transform: rotate(180deg); }
          .cc--utility-menu .c--utility-menu nav > ul li:focus-within .submenus-wrapper, .cc--utility-menu .c--utility-menu nav > ul li.ally-focus-within .submenus-wrapper {
            display: block; }
          .cc--utility-menu .c--utility-menu nav > ul li:focus-within .link-arrow-wrapper::after, .cc--utility-menu .c--utility-menu nav > ul li.ally-focus-within .link-arrow-wrapper::after {
            transform: rotate(180deg); } }
    @media screen and (min-width: 1024px) {
      .cc--utility-menu .c--utility-menu .link-arrow-wrapper::after {
        margin-left: 0.3125rem;
        content: '';
        width: 1.25rem;
        height: 1.25rem;
        display: block;
        background-image: url("../images/icons/icon-arrow-down.svg");
        background-repeat: no-repeat;
        background-position: center;
        background-size: 0.53563rem 0.31375rem;
        transition: transform 200ms ease; } }
    .cc--utility-menu .c--utility-menu .link-arrow-wrapper,
    .cc--utility-menu .c--utility-menu .link-wrapper {
      display: flex;
      position: relative;
      align-items: center;
      justify-content: space-between; }
      .cc--utility-menu .c--utility-menu .link-arrow-wrapper span,
      .cc--utility-menu .c--utility-menu .link-arrow-wrapper a,
      .cc--utility-menu .c--utility-menu .link-wrapper span,
      .cc--utility-menu .c--utility-menu .link-wrapper a {
        font-family: "IBM Plex Sans", sans-serif;
        font-weight: 600;
        font-style: normal;
        font-size: 1rem;
        line-height: 2.125;
        color: #FFF;
        flex-grow: 1; }
        @media screen and (min-width: 1024px) {
          .cc--utility-menu .c--utility-menu .link-arrow-wrapper span,
          .cc--utility-menu .c--utility-menu .link-arrow-wrapper a,
          .cc--utility-menu .c--utility-menu .link-wrapper span,
          .cc--utility-menu .c--utility-menu .link-wrapper a {
            font-size: 0.875rem;
            line-height: 1.4286; } }
        html[data-whatintent="mouse"] .cc--utility-menu .c--utility-menu .link-arrow-wrapper span, html[data-whatintent="mouse"]
        .cc--utility-menu .c--utility-menu .link-arrow-wrapper a, html[data-whatintent="mouse"]
        .cc--utility-menu .c--utility-menu .link-wrapper span, html[data-whatintent="mouse"]
        .cc--utility-menu .c--utility-menu .link-wrapper a {
          transition: all 0.1s; }
          html[data-whatintent="mouse"] .cc--utility-menu .c--utility-menu .link-arrow-wrapper span:hover, html[data-whatintent="mouse"]
          .cc--utility-menu .c--utility-menu .link-arrow-wrapper a:hover, html[data-whatintent="mouse"]
          .cc--utility-menu .c--utility-menu .link-wrapper span:hover, html[data-whatintent="mouse"]
          .cc--utility-menu .c--utility-menu .link-wrapper a:hover {
            cursor: pointer; }
        html[data-whatinput="keyboard"] .cc--utility-menu .c--utility-menu .link-arrow-wrapper span:focus, html[data-whatinput="keyboard"]
        .cc--utility-menu .c--utility-menu .link-arrow-wrapper a:focus, html[data-whatinput="keyboard"]
        .cc--utility-menu .c--utility-menu .link-wrapper span:focus, html[data-whatinput="keyboard"]
        .cc--utility-menu .c--utility-menu .link-wrapper a:focus {
          outline: 0.125rem solid #D6A461;
          outline-offset: 0.125rem; }
        html[data-whatinput="mouse"] .cc--utility-menu .c--utility-menu .link-arrow-wrapper span:focus, html[data-whatinput="mouse"]
        .cc--utility-menu .c--utility-menu .link-arrow-wrapper a:focus, html[data-whatinput="mouse"]
        .cc--utility-menu .c--utility-menu .link-wrapper span:focus, html[data-whatinput="mouse"]
        .cc--utility-menu .c--utility-menu .link-wrapper a:focus {
          outline: none;
          outline-offset: 0.125rem; }
      .cc--utility-menu .c--utility-menu .link-arrow-wrapper a,
      .cc--utility-menu .c--utility-menu .link-wrapper a {
        text-decoration: none; }
        html[data-whatintent="mouse"] .cc--utility-menu .c--utility-menu .link-arrow-wrapper a, html[data-whatintent="mouse"]
        .cc--utility-menu .c--utility-menu .link-wrapper a {
          transition: all 0.1s; }
          html[data-whatintent="mouse"] .cc--utility-menu .c--utility-menu .link-arrow-wrapper a:hover, html[data-whatintent="mouse"]
          .cc--utility-menu .c--utility-menu .link-wrapper a:hover {
            text-decoration: underline; }
      .cc--utility-menu .c--utility-menu .link-arrow-wrapper > .arrow-toggle,
      .cc--utility-menu .c--utility-menu .link-wrapper > .arrow-toggle {
        padding-top: 0;
        padding-right: 0;
        padding-bottom: 0;
        padding-left: 0.3125rem;
        display: flex;
        align-items: center;
        justify-content: center;
        border: 0;
        background: transparent;
        text-align: right; }
        @media screen and (min-width: 1024px) {
          .cc--utility-menu .c--utility-menu .link-arrow-wrapper > .arrow-toggle,
          .cc--utility-menu .c--utility-menu .link-wrapper > .arrow-toggle {
            margin-top: -0.3125rem;
            transform: translateY(0) rotate(90deg);
            display: none; } }
        .cc--utility-menu .c--utility-menu .link-arrow-wrapper > .arrow-toggle svg,
        .cc--utility-menu .c--utility-menu .link-wrapper > .arrow-toggle svg {
          width: 1.5625rem;
          height: 1.5625rem; }
        html[data-whatinput="keyboard"] .cc--utility-menu .c--utility-menu .link-arrow-wrapper > .arrow-toggle:focus, html[data-whatinput="keyboard"]
        .cc--utility-menu .c--utility-menu .link-wrapper > .arrow-toggle:focus {
          outline: 0.125rem solid #D6A461;
          outline-offset: 0.125rem; }
        html[data-whatinput="mouse"] .cc--utility-menu .c--utility-menu .link-arrow-wrapper > .arrow-toggle:focus, html[data-whatinput="mouse"]
        .cc--utility-menu .c--utility-menu .link-wrapper > .arrow-toggle:focus {
          outline: none;
          outline-offset: 0.125rem; }
      @media screen and (min-width: 1024px) {
        .cc--utility-menu .c--utility-menu .link-arrow-wrapper.is-open > .arrow-toggle,
        .cc--utility-menu .c--utility-menu .link-wrapper.is-open > .arrow-toggle {
          margin-top: 0;
          margin-bottom: -0.3125rem;
          transform: translateY(0) rotate(270deg); } }
    .cc--utility-menu .c--utility-menu .submenus-wrapper {
      padding-top: 8.125rem;
      padding-right: 8.33333%;
      padding-left: 8.33333%;
      display: none;
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      min-height: 100dvh;
      min-height: 100vh;
      background-color: #862633;
      overflow: auto;
      z-index: 2; }
      @media screen and (min-width: 1024px) {
        .cc--utility-menu .c--utility-menu .submenus-wrapper {
          position: absolute;
          left: 50%;
          transform: translateX(-50%);
          margin-top: 2.8125rem;
          padding-top: 0;
          padding-right: 0;
          padding-left: 0;
          min-width: 12.5rem;
          min-height: 0;
          transition: left .2s ease-in-out;
          background-color: #D6A461; } }
      .cc--utility-menu .c--utility-menu .submenus-wrapper .submenus-title {
        margin-bottom: 1.5625rem;
        display: flex;
        align-items: center;
        -moz-column-gap: 0.3125rem;
             column-gap: 0.3125rem; }
        @media screen and (min-width: 1024px) {
          .cc--utility-menu .c--utility-menu .submenus-wrapper .submenus-title {
            display: none; } }
        .cc--utility-menu .c--utility-menu .submenus-wrapper .submenus-title h3 {
          font-family: "Oswald", sans-serif;
          font-optical-sizing: auto;
          font-weight: 500;
          font-style: normal;
          font-size: 0.875rem;
          line-height: 1.2858;
          color: #FFF;
          text-transform: uppercase;
          letter-spacing: -0.03125rem;
          position: relative;
          display: flex;
          align-items: center; }
          .cc--utility-menu .c--utility-menu .submenus-wrapper .submenus-title h3::before {
            margin-right: 0.9375rem;
            content: '';
            width: 0.89312rem;
            height: 0.53375rem;
            display: inline-flex;
            background-image: url("../images/icons/icon-arrowline-left-white.svg");
            background-repeat: no-repeat;
            background-position: center;
            background-size: cover; }
          html[data-whatintent="mouse"] .cc--utility-menu .c--utility-menu .submenus-wrapper .submenus-title h3 {
            transition: all 0.1s; }
            html[data-whatintent="mouse"] .cc--utility-menu .c--utility-menu .submenus-wrapper .submenus-title h3:hover {
              text-decoration: underline;
              cursor: pointer; }
        .cc--utility-menu .c--utility-menu .submenus-wrapper .submenus-title svg {
          width: 1.5625rem;
          height: 1.5625rem; }
      .cc--utility-menu .c--utility-menu .submenus-wrapper .submenus-wrapper-inner ul {
        list-style: none;
        padding: 0;
        margin: 0;
        text-align: left; }
        @media screen and (min-width: 1024px) {
          .cc--utility-menu .c--utility-menu .submenus-wrapper .submenus-wrapper-inner ul {
            padding-top: 1.5625rem;
            padding-right: 1.5625rem;
            padding-bottom: 1.5625rem;
            padding-left: 1.5625rem;
            width: auto; } }
        .cc--utility-menu .c--utility-menu .submenus-wrapper .submenus-wrapper-inner ul li:not(:last-child) {
          margin-bottom: 1.5625rem; }
        .cc--utility-menu .c--utility-menu .submenus-wrapper .submenus-wrapper-inner ul li a {
          font-family: "IBM Plex Sans", sans-serif;
          font-weight: 600;
          font-style: normal;
          font-size: 1rem;
          line-height: 2.125;
          display: block;
          transition: color .2s ease-in-out;
          color: #FFF;
          text-decoration: none; }
          @media screen and (min-width: 1024px) {
            .cc--utility-menu .c--utility-menu .submenus-wrapper .submenus-wrapper-inner ul li a {
              font-size: 0.875rem;
              line-height: 1.4286;
              color: #25282A; } }
          html[data-whatintent="mouse"] .cc--utility-menu .c--utility-menu .submenus-wrapper .submenus-wrapper-inner ul li a {
            transition: all 0.1s; }
            html[data-whatintent="mouse"] .cc--utility-menu .c--utility-menu .submenus-wrapper .submenus-wrapper-inner ul li a:hover {
              text-decoration: underline; }

.cc--video-controls {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 1; }
  .cc--video-controls .video-controls .video-controls-inner {
    display: flex; }
  .cc--video-controls .video-controls .video-button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.1875rem;
    height: 2.1875rem;
    padding: 0;
    border: 0;
    cursor: pointer;
    position: relative;
    background-color: #25282A;
    overflow: hidden; }
    .cc--video-controls .video-controls .video-button svg {
      fill: #FFF; }
    html[data-whatintent="mouse"] .cc--video-controls .video-controls .video-button {
      transition: all 0.1s; }
      html[data-whatintent="mouse"] .cc--video-controls .video-controls .video-button:hover {
        background-color: #862633; }
    .cc--video-controls .video-controls .video-button:focus {
      outline-offset: -0.125rem; }
      html[data-whatinput="keyboard"] .cc--video-controls .video-controls .video-button:focus {
        outline: 0.125rem solid #D6A461;
        outline-offset: 0.125rem; }
      html[data-whatinput="mouse"] .cc--video-controls .video-controls .video-button:focus {
        outline: none;
        outline-offset: 0.125rem; }
    .cc--video-controls .video-controls .video-button.video-pause-button {
      display: flex; }
      .cc--video-controls .video-controls .video-button.video-pause-button.hidden {
        display: none; }
      .cc--video-controls .video-controls .video-button.video-pause-button svg {
        width: 0.525rem;
        height: 0.65625rem; }
    .cc--video-controls .video-controls .video-button.video-play-button {
      display: none; }
      .cc--video-controls .video-controls .video-button.video-play-button.active {
        display: flex; }
      .cc--video-controls .video-controls .video-button.video-play-button svg {
        width: 0.9375rem;
        height: 0.6875rem; }
    .cc--video-controls .video-controls .video-button svg {
      position: relative; }

.cc--video-testimonial {
  position: relative;
  background-color: #D9D9D6;
  z-index: 1;
  overflow: hidden; }
  .cc--video-testimonial .c--video-testimonial {
    padding-top: 2.1875rem;
    padding-bottom: 2.1875rem; }
    @media screen and (min-width: 768px) {
      .cc--video-testimonial .c--video-testimonial {
        padding-top: 4.6875rem;
        padding-bottom: 4.6875rem; } }
    .cc--video-testimonial .c--video-testimonial .inner-wrapper {
      max-width: 1800px;
      margin: 0 auto; }
    .cc--video-testimonial .c--video-testimonial .header-container {
      margin-bottom: 1.25rem;
      padding-right: 8.33333%;
      padding-left: 8.33333%;
      position: relative; }
      @media screen and (min-width: 768px) {
        .cc--video-testimonial .c--video-testimonial .header-container {
          margin-bottom: 2.1875rem;
          padding-right: 8.33333%;
          padding-left: 8.33333%; } }
      @media screen and (min-width: 1024px) {
        .cc--video-testimonial .c--video-testimonial .header-container {
          padding-right: 16.66667%;
          padding-left: 16.66667%;
          height: auto;
          text-align: left; } }
      .cc--video-testimonial .c--video-testimonial .header-container .description-container {
        margin-top: 1.25rem;
        display: flex;
        justify-content: space-between; }
      .cc--video-testimonial .c--video-testimonial .header-container .f--section-title h2 {
        font-size: 3.125rem;
        line-height: 1.04; }
        @media screen and (min-width: 768px) {
          .cc--video-testimonial .c--video-testimonial .header-container .f--section-title h2 {
            font-size: 4.375rem;
            line-height: 1.0858; } }
        .cc--video-testimonial .c--video-testimonial .header-container .f--section-title h2 span {
          color: #862633; }
      .cc--video-testimonial .c--video-testimonial .header-container .f--description {
        flex: 1 0 70%; }
        @media screen and (min-width: 1024px) {
          .cc--video-testimonial .c--video-testimonial .header-container .f--description {
            width: 100%;
            flex: none; } }
        .cc--video-testimonial .c--video-testimonial .header-container .f--description p {
          font-size: 1.125rem;
          line-height: 1.6667; }
          @media screen and (min-width: 768px) {
            .cc--video-testimonial .c--video-testimonial .header-container .f--description p {
              font-size: 1.25rem;
              line-height: 1.7; } }
    .cc--video-testimonial .c--video-testimonial .videos-container {
      padding-right: 8.33333%;
      padding-left: 8.33333%;
      position: relative; }
      @media screen and (min-width: 768px) {
        .cc--video-testimonial .c--video-testimonial .videos-container {
          padding-right: 8.33333%;
          padding-left: 8.33333%; } }
      @media screen and (min-width: 1200px) {
        .cc--video-testimonial .c--video-testimonial .videos-container {
          padding-right: 4.16667%;
          padding-left: 4.16667%; } }
      .cc--video-testimonial .c--video-testimonial .videos-container .swiper {
        overflow: visible; }
      .cc--video-testimonial .c--video-testimonial .videos-container .swiper-slide {
        opacity: 0.5; }
        .cc--video-testimonial .c--video-testimonial .videos-container .swiper-slide:only-child {
          opacity: 1; }
        @media screen and (min-width: 768px) {
          .cc--video-testimonial .c--video-testimonial .videos-container .swiper-slide {
            opacity: 1;
            flex: 0 0 31.81818%; }
            .cc--video-testimonial .c--video-testimonial .videos-container .swiper-slide:not(:last-child) {
              margin-right: 2.27273%; } }
        .cc--video-testimonial .c--video-testimonial .videos-container .swiper-slide.swiper-slide-active {
          opacity: 1; }
        @media screen and (min-width: 1200px) {
          .cc--video-testimonial .c--video-testimonial .videos-container .swiper-slide {
            width: 31.81818%; } }
      .cc--video-testimonial .c--video-testimonial .videos-container .video-card {
        position: relative;
        width: 100%;
        overflow: hidden; }
        html[data-whatintent="mouse"] .cc--video-testimonial .c--video-testimonial .videos-container .video-card {
          transition: all 0.1s; }
          @media screen and (min-width: 768px) {
            html[data-whatintent="mouse"] .cc--video-testimonial .c--video-testimonial .videos-container .video-card:hover .video-controls-info .play-video-btn {
              cursor: pointer; }
              html[data-whatintent="mouse"] .cc--video-testimonial .c--video-testimonial .videos-container .video-card:hover .video-controls-info .play-video-btn svg rect {
                fill: #862633; }
              html[data-whatintent="mouse"] .cc--video-testimonial .c--video-testimonial .videos-container .video-card:hover .video-controls-info .play-video-btn svg polygon {
                fill: #FFF; } }
          @media screen and (min-width: 1200px) {
            html[data-whatintent="mouse"] .cc--video-testimonial .c--video-testimonial .videos-container .video-card:hover .text-container {
              opacity: 1;
              visibility: visible; } }
        .cc--video-testimonial .c--video-testimonial .videos-container .video-card .video-poster-container {
          position: relative; }
        .cc--video-testimonial .c--video-testimonial .videos-container .video-card .f--video-embed {
          padding-top: 178%;
          z-index: -1; }
          .cc--video-testimonial .c--video-testimonial .videos-container .video-card .f--video-embed.is-active {
            z-index: 1; }
          .cc--video-testimonial .c--video-testimonial .videos-container .video-card .f--video-embed.is-active + .video-controls-info {
            display: none; }
        .cc--video-testimonial .c--video-testimonial .videos-container .video-card .background-image {
          position: absolute;
          top: 0;
          left: 0;
          width: 100%;
          height: 100%;
          background-repeat: no-repeat;
          background-position: center;
          background-size: cover;
          z-index: 2; }
        .cc--video-testimonial .c--video-testimonial .videos-container .video-card .video-controls-info {
          position: absolute;
          top: 50%;
          left: 50%;
          transform: translate(-50%, -50%);
          z-index: 5; }
          @media screen and (min-width: 768px) {
            .cc--video-testimonial .c--video-testimonial .videos-container .video-card .video-controls-info {
              width: 4.6875rem;
              height: 4.6875rem; } }
          @media screen and (min-width: 1200px) {
            .cc--video-testimonial .c--video-testimonial .videos-container .video-card .video-controls-info {
              position: absolute;
              top: auto;
              left: auto;
              transform: none;
              right: 0;
              bottom: 0; } }
          .cc--video-testimonial .c--video-testimonial .videos-container .video-card .video-controls-info .play-video-btn {
            width: 3.125rem;
            height: 3.125rem;
            padding: 0;
            border: 0;
            background-color: #D6A461; }
            @media screen and (min-width: 768px) {
              .cc--video-testimonial .c--video-testimonial .videos-container .video-card .video-controls-info .play-video-btn {
                width: 4.6875rem;
                height: 4.6875rem; } }
            html[data-whatintent="mouse"] .cc--video-testimonial .c--video-testimonial .videos-container .video-card .video-controls-info .play-video-btn {
              transition: all 0.1s; }
              html[data-whatintent="mouse"] .cc--video-testimonial .c--video-testimonial .videos-container .video-card .video-controls-info .play-video-btn:hover {
                cursor: pointer; }
            .cc--video-testimonial .c--video-testimonial .videos-container .video-card .video-controls-info .play-video-btn svg rect {
              fill: #D6A461; }
            .cc--video-testimonial .c--video-testimonial .videos-container .video-card .video-controls-info .play-video-btn svg polygon {
              fill: #25282A; }
        .cc--video-testimonial .c--video-testimonial .videos-container .video-card .text-container {
          padding-top: 1.5625rem;
          padding-right: 10%;
          padding-bottom: 1.5625rem;
          padding-left: 10%;
          background-color: #D6A461;
          position: relative;
          bottom: 0;
          width: 100%;
          overflow: hidden;
          z-index: 3;
          transition: opacity 0.3s ease, visibility 0.3s ease; }
          @media screen and (min-width: 768px) {
            .cc--video-testimonial .c--video-testimonial .videos-container .video-card .text-container {
              padding-top: 1.5625rem;
              padding-right: 1.5625rem;
              padding-bottom: 1.5625rem;
              padding-left: 1.5625rem; } }
          @media screen and (min-width: 1200px) {
            .cc--video-testimonial .c--video-testimonial .videos-container .video-card .text-container {
              padding-top: 3.125rem;
              padding-right: 14.28571%;
              padding-bottom: 3.125rem;
              padding-left: 14.28571%;
              position: absolute;
              height: 100%;
              opacity: 0;
              visibility: hidden; } }
          @media screen and (min-width: 1200px) {
            .cc--video-testimonial .c--video-testimonial .videos-container .video-card .text-container.on-hover {
              opacity: 1;
              visibility: visible; } }
          @media screen and (min-width: 1200px) {
            .cc--video-testimonial .c--video-testimonial .videos-container .video-card .text-container .f--cta-title {
              margin-bottom: 1.5625rem; } }
          .cc--video-testimonial .c--video-testimonial .videos-container .video-card .text-container .f--cta-title h3 {
            font-family: "IBM Plex Serif", serif;
            font-weight: 400;
            font-style: italic;
            font-size: 1.5rem;
            line-height: 1.3334;
            position: relative;
            color: #25282A; }
            @media screen and (min-width: 1200px) {
              .cc--video-testimonial .c--video-testimonial .videos-container .video-card .text-container .f--cta-title h3 {
                font-size: 1.75rem;
                line-height: 1.5; } }
          .cc--video-testimonial .c--video-testimonial .videos-container .video-card .text-container .f--description {
            margin-top: 0.9375rem; }
            .cc--video-testimonial .c--video-testimonial .videos-container .video-card .text-container .f--description p {
              font-family: "Oswald", sans-serif;
              font-optical-sizing: auto;
              font-weight: 500;
              font-style: normal;
              font-size: 0.875rem;
              line-height: 1.2858;
              color: #25282A;
              text-transform: uppercase; }
    .cc--video-testimonial .c--video-testimonial .controls-container {
      margin-left: -0.625rem;
      position: relative;
      display: flex;
      justify-content: center;
      -moz-column-gap: 0.0625rem;
           column-gap: 0.0625rem; }
      @media screen and (min-width: 768px) {
        .cc--video-testimonial .c--video-testimonial .controls-container {
          display: none; } }
      .cc--video-testimonial .c--video-testimonial .controls-container button {
        display: flex;
        position: relative;
        align-items: center;
        justify-content: center;
        width: 2.1875rem;
        height: 2.1875rem;
        background: none;
        text-align: left;
        cursor: pointer;
        border: 0;
        padding: 0; }
        .cc--video-testimonial .c--video-testimonial .controls-container button:nth-child(1)::after {
          display: block;
          content: '';
          width: 0.0625rem;
          height: 1.5625rem;
          background-color: #97999B; }
        .cc--video-testimonial .c--video-testimonial .controls-container button.swiper-button-disabled polygon {
          opacity: .4; }
        .cc--video-testimonial .c--video-testimonial .controls-container button svg {
          width: 2.1875rem;
          height: 2.1875rem; }
    .cc--video-testimonial .c--video-testimonial .f--description + .controls-container {
      margin-left: 0; }

.f--description p {
  font-family: "IBM Plex Sans", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 1.125rem;
  line-height: 1.6667;
  color: #25282A; }
  @media screen and (min-width: 768px) {
    .f--description p {
      font-size: 1.25rem;
      line-height: 1.7; } }
  .f--description p strong {
    font-family: "IBM Plex Sans", sans-serif;
    font-weight: 700;
    font-style: normal; }
  .f--description p i,
  .f--description p em {
    font-style: italic; }
  .f--description p a {
    color: #862633;
    text-decoration: underline;
    overflow-wrap: anywhere; }
    html[data-whatintent="mouse"] .f--description p a {
      transition: all 0.1s; }
      html[data-whatintent="mouse"] .f--description p a:hover {
        text-decoration: none; }

.f--description ul,
.f--description ol {
  overflow: hidden; }
  .f--description ul ::marker,
  .f--description ol ::marker {
    font-family: "IBM Plex Sans", sans-serif;
    font-weight: 700;
    font-style: normal;
    color: #862633; }
  .f--description ul li,
  .f--description ol li {
    color: #25282A; }
    .f--description ul li::after,
    .f--description ol li::after {
      display: block;
      clear: both;
      content: ""; }
    .f--description ul li:not(:last-child),
    .f--description ol li:not(:last-child) {
      margin-bottom: 0.625rem; }
    .f--description ul li,
    .f--description ul li p,
    .f--description ol li,
    .f--description ol li p {
      font-family: "IBM Plex Sans", sans-serif;
      font-weight: 400;
      font-style: normal;
      font-size: 1.125rem;
      line-height: 1.6667;
      color: #25282A; }
      @media screen and (min-width: 768px) {
        .f--description ul li,
        .f--description ul li p,
        .f--description ol li,
        .f--description ol li p {
          font-size: 1.25rem;
          line-height: 1.7; } }
    .f--description ul li a,
    .f--description ol li a {
      color: #862633;
      text-decoration: underline;
      overflow-wrap: anywhere; }
      html[data-whatintent="mouse"] .f--description ul li a, html[data-whatintent="mouse"]
      .f--description ol li a {
        transition: all 0.1s; }
        html[data-whatintent="mouse"] .f--description ul li a:hover, html[data-whatintent="mouse"]
        .f--description ol li a:hover {
          text-decoration: none; }
  .f--description ul .book-cover,
  .f--description ol .book-cover {
    margin-right: 0.9375rem;
    margin-bottom: 0.9375rem;
    width: 3.125rem !important;
    float: left; }

.f--description.description-medium p {
  font-size: 1.125rem;
  line-height: 1.6667; }
  @media screen and (min-width: 768px) {
    .f--description.description-medium p {
      font-size: 1.25rem;
      line-height: 1.7; } }

.f--description.description-medium ul li,
.f--description.description-medium ul li p,
.f--description.description-medium ol li,
.f--description.description-medium ol li p {
  font-size: 1.125rem;
  line-height: 1.6667; }
  @media screen and (min-width: 768px) {
    .f--description.description-medium ul li,
    .f--description.description-medium ul li p,
    .f--description.description-medium ol li,
    .f--description.description-medium ol li p {
      font-size: 1.25rem;
      line-height: 1.7; } }

.f--eyebrow {
  padding-top: 0.6875rem;
  padding-right: 0.625rem;
  padding-bottom: 0.6875rem;
  padding-left: 0.625rem;
  margin-bottom: 0.9375rem;
  background-color: #507F70;
  display: inline-flex; }
  @media screen and (min-width: 768px) {
    .f--eyebrow {
      margin-bottom: 1.5625rem; } }
  .f--eyebrow span,
  .f--eyebrow a {
    font-family: "Oswald", sans-serif;
    font-optical-sizing: auto;
    font-weight: 500;
    font-style: normal;
    font-size: 0.875rem;
    line-height: 1.2858;
    color: #FFF;
    text-transform: uppercase; }
  .f--eyebrow a {
    text-decoration: none; }
    html[data-whatintent="mouse"] .f--eyebrow a {
      transition: all 0.1s; }
      html[data-whatintent="mouse"] .f--eyebrow a:hover {
        text-decoration: underline; }

.f--image figure {
  margin-top: 0;
  margin-right: 0;
  margin-bottom: 0;
  margin-left: 0; }

.f--image a {
  display: block; }

.f--link a {
  display: flex;
  align-items: flex-start;
  color: #000;
  text-decoration: none; }
  .f--link a svg {
    margin-right: 1.125rem;
    width: 1.25rem;
    height: 0.74687rem;
    background-color: transparent;
    vertical-align: middle;
    flex-shrink: 0; }
  html[data-whatintent="mouse"] .f--link a {
    transition: all 0.1s; }
    html[data-whatintent="mouse"] .f--link a:hover {
      text-decoration: underline; }

.f--page-title h1 {
  font-family: "Oswald", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-size: 3.75rem;
  line-height: 1.0334;
  position: relative;
  color: #000;
  z-index: 1;
  letter-spacing: -0.0625rem; }
  @media screen and (min-width: 768px) {
    .f--page-title h1 {
      font-size: 6.875rem;
      line-height: 1;
      letter-spacing: -0.03125rem; } }

.f--section-title h2 {
  font-family: "Oswald", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-size: 3.125rem;
  line-height: 1.1201;
  position: relative;
  color: #000;
  text-transform: uppercase;
  z-index: 1;
  overflow-wrap: break-word;
  letter-spacing: -0.0625rem; }
  @media screen and (min-width: 768px) {
    .f--section-title h2 {
      font-size: 4.375rem;
      line-height: 1.0858; } }

.f--video-embed {
  position: relative;
  padding-top: 56.25%; }
  .f--video-embed .video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100% !important;
    height: 100% !important; }

div .f--wysiwyg h1, .cc--rich-text .f--wysiwyg h1,
div .f--wysiwyg h2,
.cc--rich-text .f--wysiwyg h2,
div .f--wysiwyg h3,
.cc--rich-text .f--wysiwyg h3,
div .f--wysiwyg h4,
.cc--rich-text .f--wysiwyg h4,
div .f--wysiwyg h5,
.cc--rich-text .f--wysiwyg h5,
div .f--wysiwyg h6,
.cc--rich-text .f--wysiwyg h6 {
  font-family: "Oswald", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  margin-top: 0;
  margin-bottom: 0.625rem;
  color: #25282A; }
  @media screen and (min-width: 768px) {
    div .f--wysiwyg h1, .cc--rich-text .f--wysiwyg h1,
    div .f--wysiwyg h2,
    .cc--rich-text .f--wysiwyg h2,
    div .f--wysiwyg h3,
    .cc--rich-text .f--wysiwyg h3,
    div .f--wysiwyg h4,
    .cc--rich-text .f--wysiwyg h4,
    div .f--wysiwyg h5,
    .cc--rich-text .f--wysiwyg h5,
    div .f--wysiwyg h6,
    .cc--rich-text .f--wysiwyg h6 {
      margin-top: 0;
      margin-bottom: 0.9375rem; } }
  div .f--wysiwyg h1:not(:first-child), .cc--rich-text .f--wysiwyg h1:not(:first-child),
  div .f--wysiwyg h2:not(:first-child),
  .cc--rich-text .f--wysiwyg h2:not(:first-child),
  div .f--wysiwyg h3:not(:first-child),
  .cc--rich-text .f--wysiwyg h3:not(:first-child),
  div .f--wysiwyg h4:not(:first-child),
  .cc--rich-text .f--wysiwyg h4:not(:first-child),
  div .f--wysiwyg h5:not(:first-child),
  .cc--rich-text .f--wysiwyg h5:not(:first-child),
  div .f--wysiwyg h6:not(:first-child),
  .cc--rich-text .f--wysiwyg h6:not(:first-child) {
    margin-top: 2.1875rem; }
    @media screen and (min-width: 768px) {
      div .f--wysiwyg h1:not(:first-child), .cc--rich-text .f--wysiwyg h1:not(:first-child),
      div .f--wysiwyg h2:not(:first-child),
      .cc--rich-text .f--wysiwyg h2:not(:first-child),
      div .f--wysiwyg h3:not(:first-child),
      .cc--rich-text .f--wysiwyg h3:not(:first-child),
      div .f--wysiwyg h4:not(:first-child),
      .cc--rich-text .f--wysiwyg h4:not(:first-child),
      div .f--wysiwyg h5:not(:first-child),
      .cc--rich-text .f--wysiwyg h5:not(:first-child),
      div .f--wysiwyg h6:not(:first-child),
      .cc--rich-text .f--wysiwyg h6:not(:first-child) {
        margin-top: 3.125rem; } }

div .f--wysiwyg h1, .cc--rich-text .f--wysiwyg h1 {
  font-size: 3.75rem;
  line-height: 1.0334;
  text-transform: uppercase;
  letter-spacing: -0.0625rem; }
  @media screen and (min-width: 768px) {
    div .f--wysiwyg h1, .cc--rich-text .f--wysiwyg h1 {
      font-size: 6.875rem;
      line-height: 1; } }


div .f--wysiwyg h2,
.cc--rich-text .f--wysiwyg h2 {
  font-size: 3.125rem;
  line-height: 1.04;
  text-transform: uppercase;
  letter-spacing: -0.0625rem; }
  @media screen and (min-width: 768px) {
    
    div .f--wysiwyg h2,
    .cc--rich-text .f--wysiwyg h2 {
      font-size: 4.375rem;
      line-height: 1.0858; } }


div .f--wysiwyg h3,
.cc--rich-text .f--wysiwyg h3 {
  font-size: 2.25rem;
  line-height: 1.1667; }
  @media screen and (min-width: 768px) {
    
    div .f--wysiwyg h3,
    .cc--rich-text .f--wysiwyg h3 {
      font-size: 2.875rem;
      line-height: 1.1305; } }


div .f--wysiwyg h4,
.cc--rich-text .f--wysiwyg h4 {
  font-size: 1.625rem;
  line-height: 1.3077; }
  @media screen and (min-width: 768px) {
    
    div .f--wysiwyg h4,
    .cc--rich-text .f--wysiwyg h4 {
      font-size: 2rem;
      line-height: 1.1875; } }


div .f--wysiwyg h5,
.cc--rich-text .f--wysiwyg h5 {
  font-size: 1.25rem;
  line-height: 1.5; }
  @media screen and (min-width: 768px) {
    
    div .f--wysiwyg h5,
    .cc--rich-text .f--wysiwyg h5 {
      font-size: 1.5rem;
      line-height: 1.4167; } }


div .f--wysiwyg h6,
.cc--rich-text .f--wysiwyg h6 {
  font-size: 1rem;
  line-height: 1.5; }
  @media screen and (min-width: 768px) {
    
    div .f--wysiwyg h6,
    .cc--rich-text .f--wysiwyg h6 {
      font-size: 1.125rem;
      line-height: 1.4445; } }

div .f--wysiwyg p, .cc--rich-text .f--wysiwyg p {
  font-family: "IBM Plex Sans", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 1.125rem;
  line-height: 1.6667;
  color: #25282A; }
  @media screen and (min-width: 768px) {
    div .f--wysiwyg p, .cc--rich-text .f--wysiwyg p {
      font-size: 1.25rem;
      line-height: 1.7; } }
  div .f--wysiwyg p:not(:last-child), .cc--rich-text .f--wysiwyg p:not(:last-child) {
    margin-bottom: 0.625rem; }
    @media screen and (min-width: 768px) {
      div .f--wysiwyg p:not(:last-child), .cc--rich-text .f--wysiwyg p:not(:last-child) {
        margin-bottom: 0.9375rem; } }
  div .f--wysiwyg p strong, .cc--rich-text .f--wysiwyg p strong,
  div .f--wysiwyg p b,
  .cc--rich-text .f--wysiwyg p b {
    font-family: "IBM Plex Sans", sans-serif;
    font-weight: 700;
    font-style: normal; }
  div .f--wysiwyg p.large, .cc--rich-text .f--wysiwyg p.large {
    margin-bottom: 2.1875rem;
    font-family: "Tinos", serif;
    font-weight: 400;
    font-style: normal;
    font-size: 1.375rem;
    line-height: 1.6364;
    color: #000; }
    @media screen and (min-width: 768px) {
      div .f--wysiwyg p.large, .cc--rich-text .f--wysiwyg p.large {
        margin-bottom: 3.125rem;
        font-size: 1.625rem;
        line-height: 1.6924; } }
    div .f--wysiwyg p.large:last-child, .cc--rich-text .f--wysiwyg p.large:last-child {
      margin-bottom: 0; }
    div .f--wysiwyg p.large strong, .cc--rich-text .f--wysiwyg p.large strong,
    div .f--wysiwyg p.large b,
    .cc--rich-text .f--wysiwyg p.large b {
      font-family: "Tinos", serif;
      font-weight: 700;
      font-style: normal; }
  div .f--wysiwyg p.caption, .cc--rich-text .f--wysiwyg p.caption {
    font-family: "IBM Plex Sans", sans-serif;
    font-weight: 400;
    font-style: normal;
    margin-bottom: 2.5rem;
    font-size: 0.875rem;
    line-height: 1.4286; }
    @media screen and (min-width: 768px) {
      div .f--wysiwyg p.caption, .cc--rich-text .f--wysiwyg p.caption {
        margin-bottom: 0.625rem; } }

div .f--wysiwyg a, .cc--rich-text .f--wysiwyg a {
  color: #862633;
  text-decoration: underline; }
  html[data-whatintent="mouse"] div .f--wysiwyg a, div html[data-whatintent="mouse"] .f--wysiwyg a, html[data-whatintent="mouse"] .cc--rich-text .f--wysiwyg a, .cc--rich-text html[data-whatintent="mouse"] .f--wysiwyg a {
    transition: all 0.1s; }
    html[data-whatintent="mouse"] div .f--wysiwyg a:hover, div html[data-whatintent="mouse"] .f--wysiwyg a:hover, html[data-whatintent="mouse"] .cc--rich-text .f--wysiwyg a:hover, .cc--rich-text html[data-whatintent="mouse"] .f--wysiwyg a:hover {
      color: #25282A;
      text-decoration: none; }
  div .f--wysiwyg a.cta-link, .cc--rich-text .f--wysiwyg a.cta-link {
    padding-top: 0.375rem;
    padding-bottom: 0.375rem;
    font-family: "Oswald", sans-serif;
    font-optical-sizing: auto;
    font-weight: 600;
    font-style: normal;
    font-size: 1.125rem;
    line-height: 1.2223;
    letter-spacing: 0.03125rem;
    color: #862633;
    text-decoration: none;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    position: relative; }
    html[data-whatintent="mouse"] div .f--wysiwyg a.cta-link, div html[data-whatintent="mouse"] .f--wysiwyg a.cta-link, html[data-whatintent="mouse"] .cc--rich-text .f--wysiwyg a.cta-link, .cc--rich-text html[data-whatintent="mouse"] .f--wysiwyg a.cta-link {
      transition: all 0.1s; }
      html[data-whatintent="mouse"] div .f--wysiwyg a.cta-link:hover, div html[data-whatintent="mouse"] .f--wysiwyg a.cta-link:hover, html[data-whatintent="mouse"] .cc--rich-text .f--wysiwyg a.cta-link:hover, .cc--rich-text html[data-whatintent="mouse"] .f--wysiwyg a.cta-link:hover {
        text-decoration: underline;
        color: #862633; }
    div .f--wysiwyg a.cta-link svg, .cc--rich-text .f--wysiwyg a.cta-link svg {
      fill: #862633; }
    div .f--wysiwyg a.cta-link::before, .cc--rich-text .f--wysiwyg a.cta-link::before {
      margin-right: 1.125rem;
      content: '';
      width: 1.25rem;
      height: 0.74687rem;
      display: inline-flex;
      background-image: url("../images/icons/icon-arrowline-right.svg");
      background-repeat: no-repeat;
      background-position: center;
      background-size: cover; }

div .f--wysiwyg ul, .cc--rich-text .f--wysiwyg ul,
div .f--wysiwyg ol,
.cc--rich-text .f--wysiwyg ol {
  padding-right: 0;
  padding-left: 2.125rem;
  font-family: "IBM Plex Sans", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 1.25rem;
  line-height: 1.6;
  overflow: hidden; }
  div .f--wysiwyg ul ::marker, .cc--rich-text .f--wysiwyg ul ::marker,
  div .f--wysiwyg ol ::marker,
  .cc--rich-text .f--wysiwyg ol ::marker {
    font-family: "IBM Plex Sans", sans-serif;
    font-weight: 700;
    font-style: normal;
    color: #862633; }
  div .f--wysiwyg ul li, .cc--rich-text .f--wysiwyg ul li,
  div .f--wysiwyg ol li,
  .cc--rich-text .f--wysiwyg ol li {
    font-size: 1.125rem;
    line-height: 1.6667;
    color: #25282A; }
    div .f--wysiwyg ul li::after, .cc--rich-text .f--wysiwyg ul li::after,
    div .f--wysiwyg ol li::after,
    .cc--rich-text .f--wysiwyg ol li::after {
      display: block;
      clear: both;
      content: ""; }
    @media screen and (min-width: 768px) {
      div .f--wysiwyg ul li, .cc--rich-text .f--wysiwyg ul li,
      div .f--wysiwyg ol li,
      .cc--rich-text .f--wysiwyg ol li {
        font-size: 1.25rem;
        line-height: 1.7; } }
    div .f--wysiwyg ul li:not(:last-child), .cc--rich-text .f--wysiwyg ul li:not(:last-child),
    div .f--wysiwyg ol li:not(:last-child),
    .cc--rich-text .f--wysiwyg ol li:not(:last-child) {
      margin-bottom: 0.625rem; }
      @media screen and (min-width: 768px) {
        div .f--wysiwyg ul li:not(:last-child), .cc--rich-text .f--wysiwyg ul li:not(:last-child),
        div .f--wysiwyg ol li:not(:last-child),
        .cc--rich-text .f--wysiwyg ol li:not(:last-child) {
          margin-bottom: 0.9375rem; } }

div .f--wysiwyg ul, .cc--rich-text .f--wysiwyg ul {
  padding-right: 0;
  padding-left: 1.6875rem; }

div .f--wysiwyg small, .cc--rich-text .f--wysiwyg small {
  font-family: "IBM Plex Sans", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 0.875rem;
  line-height: 1.7143;
  color: #000; }

div .f--wysiwyg pre, .cc--rich-text .f--wysiwyg pre {
  white-space: pre-wrap; }

div .f--wysiwyg blockquote, .cc--rich-text .f--wysiwyg blockquote {
  margin-top: 2.1875rem;
  margin-right: 0;
  margin-bottom: 2.1875rem;
  margin-left: 0;
  position: relative; }
  @media screen and (min-width: 768px) {
    div .f--wysiwyg blockquote, .cc--rich-text .f--wysiwyg blockquote {
      margin-top: 3.125rem;
      margin-bottom: 3.125rem; } }
  div .f--wysiwyg blockquote p, .cc--rich-text .f--wysiwyg blockquote p {
    font-family: "IBM Plex Serif", serif;
    font-weight: 400;
    font-style: italic;
    font-size: 1.875rem;
    line-height: 1.3334;
    display: inline;
    color: #862633; }
    @media screen and (min-width: 768px) {
      div .f--wysiwyg blockquote p, .cc--rich-text .f--wysiwyg blockquote p {
        font-size: 2.625rem;
        line-height: 1.4286; } }
  div .f--wysiwyg blockquote::after, .cc--rich-text .f--wysiwyg blockquote::after, div .f--wysiwyg blockquote::before, .cc--rich-text .f--wysiwyg blockquote::before {
    font-family: "IBM Plex Serif", serif;
    font-weight: 400;
    font-style: italic;
    font-size: 1.875rem;
    line-height: 1.3334;
    color: #862633; }
    @media screen and (min-width: 768px) {
      div .f--wysiwyg blockquote::after, .cc--rich-text .f--wysiwyg blockquote::after, div .f--wysiwyg blockquote::before, .cc--rich-text .f--wysiwyg blockquote::before {
        font-size: 2.625rem;
        line-height: 1.4286; } }
  div .f--wysiwyg blockquote::after, .cc--rich-text .f--wysiwyg blockquote::after {
    content: '”'; }
  div .f--wysiwyg blockquote::before, .cc--rich-text .f--wysiwyg blockquote::before {
    margin-left: -0.875rem;
    content: '“'; }
    @media screen and (min-width: 768px) {
      div .f--wysiwyg blockquote::before, .cc--rich-text .f--wysiwyg blockquote::before {
        margin-left: -1.25rem; } }

div .f--wysiwyg figure, .cc--rich-text .f--wysiwyg figure,
div .f--wysiwyg img,
.cc--rich-text .f--wysiwyg img {
  margin-top: 1.5625rem;
  margin-right: 0;
  margin-bottom: 1.5625rem;
  margin-left: 0; }
  @media screen and (min-width: 768px) {
    div .f--wysiwyg figure, .cc--rich-text .f--wysiwyg figure,
    div .f--wysiwyg img,
    .cc--rich-text .f--wysiwyg img {
      margin-top: 1.125rem;
      margin-bottom: 1.125rem; } }

div .f--wysiwyg figure, .cc--rich-text .f--wysiwyg figure,
div .f--wysiwyg img,
.cc--rich-text .f--wysiwyg img {
  margin-bottom: 1.5625rem;
  max-width: 100%; }
  @media screen and (min-width: 768px) {
    div .f--wysiwyg figure, .cc--rich-text .f--wysiwyg figure,
    div .f--wysiwyg img,
    .cc--rich-text .f--wysiwyg img {
      margin-bottom: 1.125rem; } }
  div .f--wysiwyg figure figcaption, .cc--rich-text .f--wysiwyg figure figcaption,
  div .f--wysiwyg img figcaption,
  .cc--rich-text .f--wysiwyg img figcaption {
    font-family: "IBM Plex Sans", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 0.875rem;
    line-height: 1.4286;
    color: #25282A; }
  div .f--wysiwyg figure img, .cc--rich-text .f--wysiwyg figure img,
  div .f--wysiwyg img img,
  .cc--rich-text .f--wysiwyg img img {
    margin-bottom: 0.625rem; }
  div .f--wysiwyg figure.align-center, .cc--rich-text .f--wysiwyg figure.align-center, div .f--wysiwyg figure.aligncenter, .cc--rich-text .f--wysiwyg figure.aligncenter,
  div .f--wysiwyg img.align-center,
  .cc--rich-text .f--wysiwyg img.align-center,
  div .f--wysiwyg img.aligncenter,
  .cc--rich-text .f--wysiwyg img.aligncenter {
    width: 100% !important; }
  @media screen and (min-width: 768px) {
    div .f--wysiwyg figure.align-right, .cc--rich-text .f--wysiwyg figure.align-right, div .f--wysiwyg figure.alignright, .cc--rich-text .f--wysiwyg figure.alignright,
    div .f--wysiwyg img.align-right,
    .cc--rich-text .f--wysiwyg img.align-right,
    div .f--wysiwyg img.alignright,
    .cc--rich-text .f--wysiwyg img.alignright {
      margin-left: 5%;
      float: right; } }
  @media screen and (min-width: 1024px) {
    div .f--wysiwyg figure.align-right, .cc--rich-text .f--wysiwyg figure.align-right, div .f--wysiwyg figure.alignright, .cc--rich-text .f--wysiwyg figure.alignright,
    div .f--wysiwyg img.align-right,
    .cc--rich-text .f--wysiwyg img.align-right,
    div .f--wysiwyg img.alignright,
    .cc--rich-text .f--wysiwyg img.alignright {
      margin-left: 6.25%; } }
  @media screen and (min-width: 768px) {
    div .f--wysiwyg figure.align-left, .cc--rich-text .f--wysiwyg figure.align-left, div .f--wysiwyg figure.alignleft, .cc--rich-text .f--wysiwyg figure.alignleft,
    div .f--wysiwyg img.align-left,
    .cc--rich-text .f--wysiwyg img.align-left,
    div .f--wysiwyg img.alignleft,
    .cc--rich-text .f--wysiwyg img.alignleft {
      margin-right: 4.7619%;
      float: left; } }
  @media screen and (min-width: 1024px) {
    div .f--wysiwyg figure.align-left, .cc--rich-text .f--wysiwyg figure.align-left, div .f--wysiwyg figure.alignleft, .cc--rich-text .f--wysiwyg figure.alignleft,
    div .f--wysiwyg img.align-left,
    .cc--rich-text .f--wysiwyg img.align-left,
    div .f--wysiwyg img.alignleft,
    .cc--rich-text .f--wysiwyg img.alignleft {
      margin-right: 6.25%; } }
  @media screen and (min-width: 1024px) {
    .tc--article div .f--wysiwyg figure.align-left, div .tc--article .f--wysiwyg figure.align-left, .tc--article .cc--rich-text .f--wysiwyg figure.align-left, .cc--rich-text .tc--article .f--wysiwyg figure.align-left, .tc--article div .f--wysiwyg figure.alignleft, div .tc--article .f--wysiwyg figure.alignleft, .tc--article .cc--rich-text .f--wysiwyg figure.alignleft, .cc--rich-text .tc--article .f--wysiwyg figure.alignleft, .tc--article div .f--wysiwyg img.align-left, div .tc--article .f--wysiwyg img.align-left, .tc--article .cc--rich-text .f--wysiwyg img.align-left, .cc--rich-text .tc--article .f--wysiwyg img.align-left, .tc--article div .f--wysiwyg img.alignleft, div .tc--article .f--wysiwyg img.alignleft, .tc--article .cc--rich-text .f--wysiwyg img.alignleft, .cc--rich-text .tc--article .f--wysiwyg img.alignleft {
      margin-right: 6.25%;
      margin-left: -28.57143%; } }
  @media screen and (max-width: 767px) {
    div .f--wysiwyg figure.align-right, .cc--rich-text .f--wysiwyg figure.align-right, div .f--wysiwyg figure.alignright, .cc--rich-text .f--wysiwyg figure.alignright, div .f--wysiwyg figure.align-left, .cc--rich-text .f--wysiwyg figure.align-left, div .f--wysiwyg figure.alignleft, .cc--rich-text .f--wysiwyg figure.alignleft,
    div .f--wysiwyg img.align-right,
    .cc--rich-text .f--wysiwyg img.align-right,
    div .f--wysiwyg img.alignright,
    .cc--rich-text .f--wysiwyg img.alignright,
    div .f--wysiwyg img.align-left,
    .cc--rich-text .f--wysiwyg img.align-left,
    div .f--wysiwyg img.alignleft,
    .cc--rich-text .f--wysiwyg img.alignleft {
      width: 100% !important; } }
  div .f--wysiwyg figure.align-right:not([style*='width']):not([width]), .cc--rich-text .f--wysiwyg figure.align-right:not([style*='width']):not([width]), div .f--wysiwyg figure.alignright:not([style*='width']):not([width]), .cc--rich-text .f--wysiwyg figure.alignright:not([style*='width']):not([width]), div .f--wysiwyg figure.align-left:not([style*='width']):not([width]), .cc--rich-text .f--wysiwyg figure.align-left:not([style*='width']):not([width]), div .f--wysiwyg figure.alignleft:not([style*='width']):not([width]), .cc--rich-text .f--wysiwyg figure.alignleft:not([style*='width']):not([width]),
  div .f--wysiwyg img.align-right:not([style*='width']):not([width]),
  .cc--rich-text .f--wysiwyg img.align-right:not([style*='width']):not([width]),
  div .f--wysiwyg img.alignright:not([style*='width']):not([width]),
  .cc--rich-text .f--wysiwyg img.alignright:not([style*='width']):not([width]),
  div .f--wysiwyg img.align-left:not([style*='width']):not([width]),
  .cc--rich-text .f--wysiwyg img.align-left:not([style*='width']):not([width]),
  div .f--wysiwyg img.alignleft:not([style*='width']):not([width]),
  .cc--rich-text .f--wysiwyg img.alignleft:not([style*='width']):not([width]) {
    width: 100% !important; }
    @media screen and (min-width: 768px) {
      div .f--wysiwyg figure.align-right:not([style*='width']):not([width]), .cc--rich-text .f--wysiwyg figure.align-right:not([style*='width']):not([width]), div .f--wysiwyg figure.alignright:not([style*='width']):not([width]), .cc--rich-text .f--wysiwyg figure.alignright:not([style*='width']):not([width]), div .f--wysiwyg figure.align-left:not([style*='width']):not([width]), .cc--rich-text .f--wysiwyg figure.align-left:not([style*='width']):not([width]), div .f--wysiwyg figure.alignleft:not([style*='width']):not([width]), .cc--rich-text .f--wysiwyg figure.alignleft:not([style*='width']):not([width]),
      div .f--wysiwyg img.align-right:not([style*='width']):not([width]),
      .cc--rich-text .f--wysiwyg img.align-right:not([style*='width']):not([width]),
      div .f--wysiwyg img.alignright:not([style*='width']):not([width]),
      .cc--rich-text .f--wysiwyg img.alignright:not([style*='width']):not([width]),
      div .f--wysiwyg img.align-left:not([style*='width']):not([width]),
      .cc--rich-text .f--wysiwyg img.align-left:not([style*='width']):not([width]),
      div .f--wysiwyg img.alignleft:not([style*='width']):not([width]),
      .cc--rich-text .f--wysiwyg img.alignleft:not([style*='width']):not([width]) {
        width: 47.5% !important; } }
    @media screen and (min-width: 1024px) {
      div .f--wysiwyg figure.align-right:not([style*='width']):not([width]), .cc--rich-text .f--wysiwyg figure.align-right:not([style*='width']):not([width]), div .f--wysiwyg figure.alignright:not([style*='width']):not([width]), .cc--rich-text .f--wysiwyg figure.alignright:not([style*='width']):not([width]), div .f--wysiwyg figure.align-left:not([style*='width']):not([width]), .cc--rich-text .f--wysiwyg figure.align-left:not([style*='width']):not([width]), div .f--wysiwyg figure.alignleft:not([style*='width']):not([width]), .cc--rich-text .f--wysiwyg figure.alignleft:not([style*='width']):not([width]),
      div .f--wysiwyg img.align-right:not([style*='width']):not([width]),
      .cc--rich-text .f--wysiwyg img.align-right:not([style*='width']):not([width]),
      div .f--wysiwyg img.alignright:not([style*='width']):not([width]),
      .cc--rich-text .f--wysiwyg img.alignright:not([style*='width']):not([width]),
      div .f--wysiwyg img.align-left:not([style*='width']):not([width]),
      .cc--rich-text .f--wysiwyg img.align-left:not([style*='width']):not([width]),
      div .f--wysiwyg img.alignleft:not([style*='width']):not([width]),
      .cc--rich-text .f--wysiwyg img.alignleft:not([style*='width']):not([width]) {
        width: 43.75% !important; } }
  @media screen and (min-width: 768px) {
    div .f--wysiwyg figure.align-right[width], .cc--rich-text .f--wysiwyg figure.align-right[width], div .f--wysiwyg figure.alignright[width], .cc--rich-text .f--wysiwyg figure.alignright[width], div .f--wysiwyg figure.align-left[width], .cc--rich-text .f--wysiwyg figure.align-left[width], div .f--wysiwyg figure.alignleft[width], .cc--rich-text .f--wysiwyg figure.alignleft[width],
    div .f--wysiwyg img.align-right[width],
    .cc--rich-text .f--wysiwyg img.align-right[width],
    div .f--wysiwyg img.alignright[width],
    .cc--rich-text .f--wysiwyg img.alignright[width],
    div .f--wysiwyg img.align-left[width],
    .cc--rich-text .f--wysiwyg img.align-left[width],
    div .f--wysiwyg img.alignleft[width],
    .cc--rich-text .f--wysiwyg img.alignleft[width] {
      width: auto; } }

div .f--wysiwyg div.news-image-right, .cc--rich-text .f--wysiwyg div.news-image-right {
  width: auto;
  float: right; }

div .f--wysiwyg div.news-image-left, .cc--rich-text .f--wysiwyg div.news-image-left {
  width: auto;
  float: left; }

div .f--wysiwyg .wp-video, .cc--rich-text .f--wysiwyg .wp-video,
div .f--wysiwyg .video-embed,
.cc--rich-text .f--wysiwyg .video-embed {
  margin-top: 2.1875rem;
  margin-bottom: 2.1875rem;
  line-height: 1.2858;
  aspect-ratio: 16 / 9; }
  @media screen and (min-width: 768px) {
    div .f--wysiwyg .wp-video, .cc--rich-text .f--wysiwyg .wp-video,
    div .f--wysiwyg .video-embed,
    .cc--rich-text .f--wysiwyg .video-embed {
      margin-top: 3.125rem;
      margin-bottom: 3.125rem; } }
  div .f--wysiwyg .wp-video:first-child, .cc--rich-text .f--wysiwyg .wp-video:first-child,
  div .f--wysiwyg .video-embed:first-child,
  .cc--rich-text .f--wysiwyg .video-embed:first-child {
    margin-top: 0; }
  div .f--wysiwyg .wp-video iframe, .cc--rich-text .f--wysiwyg .wp-video iframe,
  div .f--wysiwyg .video-embed iframe,
  .cc--rich-text .f--wysiwyg .video-embed iframe {
    width: 100%;
    max-width: 100%;
    height: 100%;
    vertical-align: top; }
  @supports not (aspect-ratio: 16/9) {
    div .f--wysiwyg .wp-video, .cc--rich-text .f--wysiwyg .wp-video,
    div .f--wysiwyg .video-embed,
    .cc--rich-text .f--wysiwyg .video-embed {
      position: relative;
      height: 0;
      padding-bottom: 56.25%;
      overflow: hidden; }
      div .f--wysiwyg .wp-video iframe, .cc--rich-text .f--wysiwyg .wp-video iframe,
      div .f--wysiwyg .video-embed iframe,
      .cc--rich-text .f--wysiwyg .video-embed iframe {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%; } }

div .f--wysiwyg table:not(.gsc-search-box):not(.gsc-input):not(.gsc-above-wrapper-area-container), .cc--rich-text .f--wysiwyg table:not(.gsc-search-box):not(.gsc-input):not(.gsc-above-wrapper-area-container) {
  width: 100%;
  border: 0;
  border-spacing: 0;
  overflow: auto;
  table-layout: fixed;
  word-break: normal; }
  div .f--wysiwyg table:not(.gsc-search-box):not(.gsc-input):not(.gsc-above-wrapper-area-container) caption, .cc--rich-text .f--wysiwyg table:not(.gsc-search-box):not(.gsc-input):not(.gsc-above-wrapper-area-container) caption {
    font-family: "IBM Plex Sans", sans-serif;
    font-weight: 700;
    font-style: normal;
    font-size: 0.875rem;
    line-height: 1.4286;
    margin-top: 0.9375rem;
    margin-bottom: 0.9375rem;
    color: #25282A;
    text-align: left; }
  div .f--wysiwyg table:not(.gsc-search-box):not(.gsc-input):not(.gsc-above-wrapper-area-container) thead, .cc--rich-text .f--wysiwyg table:not(.gsc-search-box):not(.gsc-input):not(.gsc-above-wrapper-area-container) thead {
    background-color: #862633; }
    div .f--wysiwyg table:not(.gsc-search-box):not(.gsc-input):not(.gsc-above-wrapper-area-container) thead th, .cc--rich-text .f--wysiwyg table:not(.gsc-search-box):not(.gsc-input):not(.gsc-above-wrapper-area-container) thead th {
      font-family: "Oswald", sans-serif;
      font-optical-sizing: auto;
      font-weight: 500;
      font-style: normal;
      padding-top: 0.9375rem;
      padding-right: 0.75rem;
      padding-bottom: 0.9375rem;
      padding-left: 0.75rem;
      font-size: 0.875rem;
      line-height: 1.2858;
      border: 0;
      background-color: #862633;
      color: #FFF;
      text-align: left;
      letter-spacing: 0.03125rem;
      text-transform: uppercase; }
      div .f--wysiwyg table:not(.gsc-search-box):not(.gsc-input):not(.gsc-above-wrapper-area-container) thead th:not(:first-child), .cc--rich-text .f--wysiwyg table:not(.gsc-search-box):not(.gsc-input):not(.gsc-above-wrapper-area-container) thead th:not(:first-child) {
        border-left: 0.0625rem solid #25282A; }
      @media screen and (min-width: 768px) {
        div .f--wysiwyg table:not(.gsc-search-box):not(.gsc-input):not(.gsc-above-wrapper-area-container) thead th, .cc--rich-text .f--wysiwyg table:not(.gsc-search-box):not(.gsc-input):not(.gsc-above-wrapper-area-container) thead th {
          padding-right: 1.5625rem;
          padding-left: 1.5625rem; } }
  div .f--wysiwyg table:not(.gsc-search-box):not(.gsc-input):not(.gsc-above-wrapper-area-container) tbody th, .cc--rich-text .f--wysiwyg table:not(.gsc-search-box):not(.gsc-input):not(.gsc-above-wrapper-area-container) tbody th,
  div .f--wysiwyg table:not(.gsc-search-box):not(.gsc-input):not(.gsc-above-wrapper-area-container) tbody td,
  .cc--rich-text .f--wysiwyg table:not(.gsc-search-box):not(.gsc-input):not(.gsc-above-wrapper-area-container) tbody td {
    font-family: "IBM Plex Sans", sans-serif;
    font-weight: 400;
    font-style: normal;
    padding-top: 0.9375rem;
    padding-right: 0.75rem;
    padding-bottom: 0.9375rem;
    padding-left: 0.75rem;
    font-size: 0.875rem;
    line-height: 1.8572;
    border: 0;
    color: #25282A;
    font-weight: normal; }
    div .f--wysiwyg table:not(.gsc-search-box):not(.gsc-input):not(.gsc-above-wrapper-area-container) tbody th:not(:first-child), .cc--rich-text .f--wysiwyg table:not(.gsc-search-box):not(.gsc-input):not(.gsc-above-wrapper-area-container) tbody th:not(:first-child),
    div .f--wysiwyg table:not(.gsc-search-box):not(.gsc-input):not(.gsc-above-wrapper-area-container) tbody td:not(:first-child),
    .cc--rich-text .f--wysiwyg table:not(.gsc-search-box):not(.gsc-input):not(.gsc-above-wrapper-area-container) tbody td:not(:first-child) {
      border-left: 0.0625rem solid #97999B; }
    @media screen and (min-width: 768px) {
      div .f--wysiwyg table:not(.gsc-search-box):not(.gsc-input):not(.gsc-above-wrapper-area-container) tbody th, .cc--rich-text .f--wysiwyg table:not(.gsc-search-box):not(.gsc-input):not(.gsc-above-wrapper-area-container) tbody th,
      div .f--wysiwyg table:not(.gsc-search-box):not(.gsc-input):not(.gsc-above-wrapper-area-container) tbody td,
      .cc--rich-text .f--wysiwyg table:not(.gsc-search-box):not(.gsc-input):not(.gsc-above-wrapper-area-container) tbody td {
        padding-right: 1.5625rem;
        padding-left: 1.5625rem; } }
    div .f--wysiwyg table:not(.gsc-search-box):not(.gsc-input):not(.gsc-above-wrapper-area-container) tbody th strong, .cc--rich-text .f--wysiwyg table:not(.gsc-search-box):not(.gsc-input):not(.gsc-above-wrapper-area-container) tbody th strong,
    div .f--wysiwyg table:not(.gsc-search-box):not(.gsc-input):not(.gsc-above-wrapper-area-container) tbody td strong,
    .cc--rich-text .f--wysiwyg table:not(.gsc-search-box):not(.gsc-input):not(.gsc-above-wrapper-area-container) tbody td strong {
      font-family: "IBM Plex Sans", sans-serif;
      font-weight: 700;
      font-style: normal; }
    div .f--wysiwyg table:not(.gsc-search-box):not(.gsc-input):not(.gsc-above-wrapper-area-container) tbody th a, .cc--rich-text .f--wysiwyg table:not(.gsc-search-box):not(.gsc-input):not(.gsc-above-wrapper-area-container) tbody th a,
    div .f--wysiwyg table:not(.gsc-search-box):not(.gsc-input):not(.gsc-above-wrapper-area-container) tbody td a,
    .cc--rich-text .f--wysiwyg table:not(.gsc-search-box):not(.gsc-input):not(.gsc-above-wrapper-area-container) tbody td a {
      font-family: "IBM Plex Sans", sans-serif;
      font-weight: 400;
      font-style: normal;
      color: #862633;
      font-size: inherit;
      line-height: inherit; }
    div .f--wysiwyg table:not(.gsc-search-box):not(.gsc-input):not(.gsc-above-wrapper-area-container) tbody th p, .cc--rich-text .f--wysiwyg table:not(.gsc-search-box):not(.gsc-input):not(.gsc-above-wrapper-area-container) tbody th p,
    div .f--wysiwyg table:not(.gsc-search-box):not(.gsc-input):not(.gsc-above-wrapper-area-container) tbody td p,
    .cc--rich-text .f--wysiwyg table:not(.gsc-search-box):not(.gsc-input):not(.gsc-above-wrapper-area-container) tbody td p {
      font-size: inherit;
      line-height: inherit; }
    div .f--wysiwyg table:not(.gsc-search-box):not(.gsc-input):not(.gsc-above-wrapper-area-container) tbody th ul, .cc--rich-text .f--wysiwyg table:not(.gsc-search-box):not(.gsc-input):not(.gsc-above-wrapper-area-container) tbody th ul,
    div .f--wysiwyg table:not(.gsc-search-box):not(.gsc-input):not(.gsc-above-wrapper-area-container) tbody th ul li,
    .cc--rich-text .f--wysiwyg table:not(.gsc-search-box):not(.gsc-input):not(.gsc-above-wrapper-area-container) tbody th ul li,
    div .f--wysiwyg table:not(.gsc-search-box):not(.gsc-input):not(.gsc-above-wrapper-area-container) tbody th ol,
    .cc--rich-text .f--wysiwyg table:not(.gsc-search-box):not(.gsc-input):not(.gsc-above-wrapper-area-container) tbody th ol,
    div .f--wysiwyg table:not(.gsc-search-box):not(.gsc-input):not(.gsc-above-wrapper-area-container) tbody th ol li,
    .cc--rich-text .f--wysiwyg table:not(.gsc-search-box):not(.gsc-input):not(.gsc-above-wrapper-area-container) tbody th ol li,
    div .f--wysiwyg table:not(.gsc-search-box):not(.gsc-input):not(.gsc-above-wrapper-area-container) tbody td ul,
    .cc--rich-text .f--wysiwyg table:not(.gsc-search-box):not(.gsc-input):not(.gsc-above-wrapper-area-container) tbody td ul,
    div .f--wysiwyg table:not(.gsc-search-box):not(.gsc-input):not(.gsc-above-wrapper-area-container) tbody td ul li,
    .cc--rich-text .f--wysiwyg table:not(.gsc-search-box):not(.gsc-input):not(.gsc-above-wrapper-area-container) tbody td ul li,
    div .f--wysiwyg table:not(.gsc-search-box):not(.gsc-input):not(.gsc-above-wrapper-area-container) tbody td ol,
    .cc--rich-text .f--wysiwyg table:not(.gsc-search-box):not(.gsc-input):not(.gsc-above-wrapper-area-container) tbody td ol,
    div .f--wysiwyg table:not(.gsc-search-box):not(.gsc-input):not(.gsc-above-wrapper-area-container) tbody td ol li,
    .cc--rich-text .f--wysiwyg table:not(.gsc-search-box):not(.gsc-input):not(.gsc-above-wrapper-area-container) tbody td ol li {
      font-size: inherit;
      line-height: inherit; }
  div .f--wysiwyg table:not(.gsc-search-box):not(.gsc-input):not(.gsc-above-wrapper-area-container) tbody tr:nth-child(odd), .cc--rich-text .f--wysiwyg table:not(.gsc-search-box):not(.gsc-input):not(.gsc-above-wrapper-area-container) tbody tr:nth-child(odd) {
    background: #FFF; }
  div .f--wysiwyg table:not(.gsc-search-box):not(.gsc-input):not(.gsc-above-wrapper-area-container) tbody tr:nth-child(even), .cc--rich-text .f--wysiwyg table:not(.gsc-search-box):not(.gsc-input):not(.gsc-above-wrapper-area-container) tbody tr:nth-child(even) {
    background: #D9D9D6; }
  div .f--wysiwyg table:not(.gsc-search-box):not(.gsc-input):not(.gsc-above-wrapper-area-container) tr, .cc--rich-text .f--wysiwyg table:not(.gsc-search-box):not(.gsc-input):not(.gsc-above-wrapper-area-container) tr {
    background: none; }

div .f--wysiwyg .responsive-table, .cc--rich-text .f--wysiwyg .responsive-table {
  width: 100%;
  overflow-x: auto; }
  div .f--wysiwyg .responsive-table table, .cc--rich-text .f--wysiwyg .responsive-table table {
    width: auto;
    min-width: 38.4375rem; }

div .f--wysiwyg .quick-look-data, .cc--rich-text .f--wysiwyg .quick-look-data {
  padding-top: 0;
  padding-bottom: 3.125rem; }

div .f--wysiwyg .quick-look-data .cc--accordions, .cc--rich-text .f--wysiwyg .quick-look-data .cc--accordions {
  padding-bottom: 0; }

.tc--article .cc--rich-text .inner-wrapper {
  padding-top: 0; }
  @media screen and (min-width: 1024px) {
    .tc--article .cc--rich-text .inner-wrapper {
      padding-top: 0;
      padding-right: 12.5%;
      padding-left: 29.16667%; } }

.tc--article .cc--accordions .c--accordions {
  padding-top: 0;
  padding-bottom: 0; }
  @media screen and (min-width: 1024px) {
    .tc--article .cc--accordions .c--accordions {
      padding-right: 12.5%;
      padding-left: 29.16667%; } }
  .tc--article .cc--accordions .c--accordions .f--section-title h2 {
    font-size: 2.25rem;
    line-height: 1.1667;
    text-transform: none; }
    @media screen and (min-width: 768px) {
      .tc--article .cc--accordions .c--accordions .f--section-title h2 {
        font-size: 2.875rem;
        line-height: 1.1305; } }

.tc--article .lc--full {
  padding-bottom: 2.1875rem; }
  @media screen and (min-width: 1024px) {
    .tc--article .lc--full {
      padding-bottom: 4.6875rem; } }
  .tc--article .lc--full .cc--component-container:last-child .c--component {
    padding-bottom: 0; }
    @media screen and (min-width: 1024px) {
      .tc--article .lc--full .cc--component-container:last-child .c--component {
        padding-bottom: 0; } }
    .tc--article .lc--full .cc--component-container:last-child .c--component .inner-wrapper {
      padding-bottom: 0; }
      @media screen and (min-width: 1024px) {
        .tc--article .lc--full .cc--component-container:last-child .c--component .inner-wrapper {
          padding-bottom: 0; } }

@media screen and (max-width: 1023px) {
  .tc--chaptered-page .t--chaptered-page .content-main .lr--sidebar {
    margin-bottom: 2.5rem; } }

.tc--event .cc--rich-text .inner-wrapper {
  padding-top: 0; }
  @media screen and (min-width: 1024px) {
    .tc--event .cc--rich-text .inner-wrapper {
      padding-top: 0;
      padding-right: 12.5%;
      padding-left: 29.16667%; } }

.tc--event .cc--accordions .c--accordions {
  padding-top: 0;
  padding-bottom: 0; }
  @media screen and (min-width: 1024px) {
    .tc--event .cc--accordions .c--accordions {
      padding-right: 12.5%;
      padding-left: 29.16667%; } }
  .tc--event .cc--accordions .c--accordions .f--section-title h2 {
    font-size: 2.25rem;
    line-height: 1.1667;
    text-transform: none; }
    @media screen and (min-width: 768px) {
      .tc--event .cc--accordions .c--accordions .f--section-title h2 {
        font-size: 2.875rem;
        line-height: 1.1305; } }

.tc--event .lc--full {
  padding-bottom: 2.1875rem; }
  @media screen and (min-width: 1024px) {
    .tc--event .lc--full {
      padding-bottom: 4.6875rem; } }
  .tc--event .lc--full .cc--component-container:last-child .c--component {
    padding-bottom: 0; }
    @media screen and (min-width: 1024px) {
      .tc--event .lc--full .cc--component-container:last-child .c--component {
        padding-bottom: 0; } }
    .tc--event .lc--full .cc--component-container:last-child .c--component .inner-wrapper {
      padding-bottom: 0; }
      @media screen and (min-width: 1024px) {
        .tc--event .lc--full .cc--component-container:last-child .c--component .inner-wrapper {
          padding-bottom: 0; } }

.tc--search-results .content-top {
  margin-top: 3.125rem; }
  @media screen and (min-width: 1024px) {
    .tc--search-results .content-top {
      margin-top: 9.375rem; } }
  .not-sticky .tc--search-results .content-top {
    margin-top: 0; }
    @media screen and (min-width: 1024px) {
      .not-sticky .tc--search-results .content-top {
        margin-top: 0; } }

.tc--search-results .content-main {
  margin-top: 0; }
  @media screen and (min-width: 1024px) {
    .tc--search-results .content-main {
      margin-top: 0; } }
  .not-sticky .tc--search-results .content-main {
    margin-top: 0; }
    @media screen and (min-width: 1024px) {
      .not-sticky .tc--search-results .content-main {
        margin-top: 0; } }

.tc--search-results .cc--rich-text {
  max-width: 1800px;
  margin: 0 auto; }

.tc--search-results .c--rich-text {
  padding-top: 2.1875rem;
  padding-right: 8.33333%;
  padding-bottom: 2.1875rem;
  padding-left: 8.33333%; }
  @media screen and (min-width: 768px) {
    .tc--search-results .c--rich-text {
      padding-right: 8.33333%;
      padding-bottom: 4.6875rem;
      padding-left: 8.33333%; } }
  .tc--search-results .c--rich-text .gsc-refinementsArea {
    position: absolute;
    white-space: nowrap;
    width: 1px;
    height: 1px;
    overflow: hidden;
    border: 0;
    padding: 0;
    clip: rect(0 0 0 0);
    -webkit-clip-path: inset(50%);
            clip-path: inset(50%);
    margin: -1px; }
  .tc--search-results .c--rich-text .gs-per-result-labels {
    position: absolute;
    white-space: nowrap;
    width: 1px;
    height: 1px;
    overflow: hidden;
    border: 0;
    padding: 0;
    clip: rect(0 0 0 0);
    -webkit-clip-path: inset(50%);
            clip-path: inset(50%);
    margin: -1px; }
  .tc--search-results .c--rich-text .gsc-control-cse {
    max-width: 1800px;
    margin: 0 auto;
    padding-top: 0;
    padding-right: 0;
    padding-bottom: 0;
    padding-left: 0;
    border: 0;
    background: none; }
    .tc--search-results .c--rich-text .gsc-control-cse .gsc-control-wrapper-cse {
      padding-top: 0;
      padding-right: 0;
      padding-bottom: 0;
      padding-left: 0; }
    .tc--search-results .c--rich-text .gsc-control-cse .gsc-above-wrapper-area {
      padding-top: 0;
      padding-right: 0;
      padding-bottom: 0;
      padding-left: 0;
      border: 0; }
      .tc--search-results .c--rich-text .gsc-control-cse .gsc-above-wrapper-area .resp-table {
        margin-top: 0;
        margin-right: 0;
        margin-bottom: 0;
        margin-left: 0; }
      .tc--search-results .c--rich-text .gsc-control-cse .gsc-above-wrapper-area table {
        margin-top: 0;
        margin-right: 0;
        margin-bottom: 0;
        margin-left: 0;
        border: 0; }
        .tc--search-results .c--rich-text .gsc-control-cse .gsc-above-wrapper-area table td,
        .tc--search-results .c--rich-text .gsc-control-cse .gsc-above-wrapper-area table tr {
          padding-top: 0;
          padding-right: 0;
          padding-bottom: 0;
          padding-left: 0;
          border: 0; }
      .tc--search-results .c--rich-text .gsc-control-cse .gsc-above-wrapper-area .gsc-result-info {
        font-family: "IBM Plex Sans", sans-serif;
        font-weight: 700;
        font-style: normal;
        padding-top: 0;
        padding-right: 0;
        padding-bottom: 0;
        padding-left: 0;
        font-size: 1rem;
        line-height: 2;
        color: #25282A; }
        .tc--search-results .c--rich-text .gsc-control-cse .gsc-above-wrapper-area .gsc-result-info b,
        .tc--search-results .c--rich-text .gsc-control-cse .gsc-above-wrapper-area .gsc-result-info strong {
          font-family: "IBM Plex Sans", sans-serif;
          font-weight: 600;
          font-style: normal; }
    .tc--search-results .c--rich-text .gsc-control-cse .gsc-wrapper {
      padding-top: 1.5625rem; }
      @media screen and (min-width: 768px) {
        .tc--search-results .c--rich-text .gsc-control-cse .gsc-wrapper {
          padding-top: 1.5625rem; } }
      .tc--search-results .c--rich-text .gsc-control-cse .gsc-wrapper .gsc-results {
        margin-top: 0;
        margin-right: 0;
        margin-bottom: 0;
        margin-left: 0;
        width: 100%; }
        @media screen and (min-width: 768px) {
          .tc--search-results .c--rich-text .gsc-control-cse .gsc-wrapper .gsc-results {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between; } }
      .tc--search-results .c--rich-text .gsc-control-cse .gsc-wrapper .gsc-expansionArea {
        margin-bottom: 1.5625rem;
        width: 100%; }
        @media screen and (min-width: 1024px) {
          .tc--search-results .c--rich-text .gsc-control-cse .gsc-wrapper .gsc-expansionArea {
            margin-bottom: 2.1875rem; } }
      .tc--search-results .c--rich-text .gsc-control-cse .gsc-wrapper .gs-no-results-result .gs-snippet,
      .tc--search-results .c--rich-text .gsc-control-cse .gsc-wrapper .gs-no-results-result .gs-snippet b,
      .tc--search-results .c--rich-text .gsc-control-cse .gsc-wrapper .gs-no-results-result .gs-snippet * {
        font-family: "IBM Plex Sans", sans-serif;
        font-weight: 400;
        font-style: normal;
        font-size: 1rem;
        line-height: 1.5;
        color: #25282A; }
      .tc--search-results .c--rich-text .gsc-control-cse .gsc-wrapper .gs-no-results-result .gs-snippet b,
      .tc--search-results .c--rich-text .gsc-control-cse .gsc-wrapper .gs-no-results-result .gs-snippet strong {
        font-family: "IBM Plex Sans", sans-serif;
        font-weight: 700;
        font-style: normal; }
      .tc--search-results .c--rich-text .gsc-control-cse .gsc-wrapper .gsc-result {
        margin-top: 0;
        margin-right: 0;
        margin-bottom: 1.5625rem;
        margin-left: 0;
        padding-top: 0;
        padding-bottom: 1.5625rem;
        border-bottom: 0.0625rem solid #D9D9D6; }
        .tc--search-results .c--rich-text .gsc-control-cse .gsc-wrapper .gsc-result:last-child {
          margin-bottom: 0; }
        .tc--search-results .c--rich-text .gsc-control-cse .gsc-wrapper .gsc-result .gsc-thumbnail-inside {
          padding-top: 0;
          padding-right: 0;
          padding-bottom: 0;
          padding-left: 0; }
        .tc--search-results .c--rich-text .gsc-control-cse .gsc-wrapper .gsc-result .gs-title {
          margin-bottom: 0.625rem;
          overflow: initial; }
          .tc--search-results .c--rich-text .gsc-control-cse .gsc-wrapper .gsc-result .gs-title .gs-title {
            margin-top: 0;
            margin-right: 0;
            margin-bottom: 0;
            margin-left: 0;
            overflow: hidden; }
          .tc--search-results .c--rich-text .gsc-control-cse .gsc-wrapper .gsc-result .gs-title,
          .tc--search-results .c--rich-text .gsc-control-cse .gsc-wrapper .gsc-result .gs-title a,
          .tc--search-results .c--rich-text .gsc-control-cse .gsc-wrapper .gsc-result .gs-title b,
          .tc--search-results .c--rich-text .gsc-control-cse .gsc-wrapper .gsc-result .gs-title * {
            font-family: "Oswald", sans-serif;
            font-optical-sizing: auto;
            font-weight: 400;
            font-style: normal;
            font-size: 1.625rem;
            line-height: 1.3077;
            color: #25282A;
            text-decoration: none; }
            @media screen and (min-width: 768px) {
              .tc--search-results .c--rich-text .gsc-control-cse .gsc-wrapper .gsc-result .gs-title,
              .tc--search-results .c--rich-text .gsc-control-cse .gsc-wrapper .gsc-result .gs-title a,
              .tc--search-results .c--rich-text .gsc-control-cse .gsc-wrapper .gsc-result .gs-title b,
              .tc--search-results .c--rich-text .gsc-control-cse .gsc-wrapper .gsc-result .gs-title * {
                font-size: 2rem;
                line-height: 1.1875; } }
            html[data-whatintent="mouse"] .tc--search-results .c--rich-text .gsc-control-cse .gsc-wrapper .gsc-result .gs-title, html[data-whatintent="mouse"]
            .tc--search-results .c--rich-text .gsc-control-cse .gsc-wrapper .gsc-result .gs-title a, html[data-whatintent="mouse"]
            .tc--search-results .c--rich-text .gsc-control-cse .gsc-wrapper .gsc-result .gs-title b, html[data-whatintent="mouse"]
            .tc--search-results .c--rich-text .gsc-control-cse .gsc-wrapper .gsc-result .gs-title * {
              transition: all 0.1s; }
              html[data-whatintent="mouse"] .tc--search-results .c--rich-text .gsc-control-cse .gsc-wrapper .gsc-result .gs-title:hover, html[data-whatintent="mouse"]
              .tc--search-results .c--rich-text .gsc-control-cse .gsc-wrapper .gsc-result .gs-title a:hover, html[data-whatintent="mouse"]
              .tc--search-results .c--rich-text .gsc-control-cse .gsc-wrapper .gsc-result .gs-title b:hover, html[data-whatintent="mouse"]
              .tc--search-results .c--rich-text .gsc-control-cse .gsc-wrapper .gsc-result .gs-title *:hover {
                text-decoration: underline; }
        .tc--search-results .c--rich-text .gsc-control-cse .gsc-wrapper .gsc-result .gsc-url-top {
          display: none; }
        .tc--search-results .c--rich-text .gsc-control-cse .gsc-wrapper .gsc-result .gsc-url-bottom {
          display: none; }
        .tc--search-results .c--rich-text .gsc-control-cse .gsc-wrapper .gsc-result .gsc-table-result {
          padding-top: 0;
          padding-right: 0;
          padding-bottom: 0;
          padding-left: 0; }
          .tc--search-results .c--rich-text .gsc-control-cse .gsc-wrapper .gsc-result .gsc-table-result .gsc-thumbnail {
            display: none; }
          .tc--search-results .c--rich-text .gsc-control-cse .gsc-wrapper .gsc-result .gsc-table-result .gsc-table-cell-snippet-close {
            padding-top: 0;
            padding-right: 0;
            padding-bottom: 0;
            padding-left: 0; }
          .tc--search-results .c--rich-text .gsc-control-cse .gsc-wrapper .gsc-result .gsc-table-result .gs-snippet {
            margin-top: 0;
            margin-right: 0;
            margin-bottom: 0;
            margin-left: 0; }
            .tc--search-results .c--rich-text .gsc-control-cse .gsc-wrapper .gsc-result .gsc-table-result .gs-snippet,
            .tc--search-results .c--rich-text .gsc-control-cse .gsc-wrapper .gsc-result .gsc-table-result .gs-snippet b,
            .tc--search-results .c--rich-text .gsc-control-cse .gsc-wrapper .gsc-result .gsc-table-result .gs-snippet * {
              font-family: "IBM Plex Sans", sans-serif;
              font-weight: 400;
              font-style: normal;
              font-size: 0.9375rem;
              line-height: 1.8667;
              color: #25282A; }
              @media screen and (min-width: 768px) {
                .tc--search-results .c--rich-text .gsc-control-cse .gsc-wrapper .gsc-result .gsc-table-result .gs-snippet,
                .tc--search-results .c--rich-text .gsc-control-cse .gsc-wrapper .gsc-result .gsc-table-result .gs-snippet b,
                .tc--search-results .c--rich-text .gsc-control-cse .gsc-wrapper .gsc-result .gsc-table-result .gs-snippet * {
                  font-size: 1rem;
                  line-height: 2; } }
            .tc--search-results .c--rich-text .gsc-control-cse .gsc-wrapper .gsc-result .gsc-table-result .gs-snippet b,
            .tc--search-results .c--rich-text .gsc-control-cse .gsc-wrapper .gsc-result .gsc-table-result .gs-snippet strong {
              font-family: "IBM Plex Sans", sans-serif;
              font-weight: 700;
              font-style: normal; }
      .tc--search-results .c--rich-text .gsc-control-cse .gsc-wrapper .gsc-cursor-box {
        margin-top: 0;
        margin-right: 0;
        margin-bottom: 0;
        margin-left: 0;
        width: 100%;
        text-align: center; }
        .tc--search-results .c--rich-text .gsc-control-cse .gsc-wrapper .gsc-cursor-box .gsc-cursor {
          display: flex;
          flex-wrap: wrap;
          justify-content: center; }
        .tc--search-results .c--rich-text .gsc-control-cse .gsc-wrapper .gsc-cursor-box .gsc-cursor-page {
          font-family: "Oswald", sans-serif;
          font-optical-sizing: auto;
          font-weight: 600;
          font-style: normal;
          font-size: 1.375rem;
          line-height: 1.4546;
          display: block;
          position: relative;
          color: #25282A;
          text-decoration: none; }
          html[data-whatintent="mouse"] .tc--search-results .c--rich-text .gsc-control-cse .gsc-wrapper .gsc-cursor-box .gsc-cursor-page {
            transition: all 0.1s; }
            html[data-whatintent="mouse"] .tc--search-results .c--rich-text .gsc-control-cse .gsc-wrapper .gsc-cursor-box .gsc-cursor-page:hover {
              text-decoration: underline; }
          .tc--search-results .c--rich-text .gsc-control-cse .gsc-wrapper .gsc-cursor-box .gsc-cursor-page:not(:last-child) {
            margin-right: 1.25rem; }
            @media screen and (min-width: 1024px) {
              .tc--search-results .c--rich-text .gsc-control-cse .gsc-wrapper .gsc-cursor-box .gsc-cursor-page:not(:last-child) {
                margin-right: 1.875rem; } }
          html[data-whatintent="mouse"] .tc--search-results .c--rich-text .gsc-control-cse .gsc-wrapper .gsc-cursor-box .gsc-cursor-page {
            transition: all 0.1s; }
            html[data-whatintent="mouse"] .tc--search-results .c--rich-text .gsc-control-cse .gsc-wrapper .gsc-cursor-box .gsc-cursor-page:hover {
              text-decoration: underline; }
          .tc--search-results .c--rich-text .gsc-control-cse .gsc-wrapper .gsc-cursor-box .gsc-cursor-page.gsc-cursor-current-page {
            background-color: #862633;
            padding-right: 0.8125rem;
            padding-left: 0.8125rem;
            color: #FFF; }
            html[data-whatintent="mouse"] .tc--search-results .c--rich-text .gsc-control-cse .gsc-wrapper .gsc-cursor-box .gsc-cursor-page.gsc-cursor-current-page {
              transition: all 0.1s; }
              html[data-whatintent="mouse"] .tc--search-results .c--rich-text .gsc-control-cse .gsc-wrapper .gsc-cursor-box .gsc-cursor-page.gsc-cursor-current-page:hover {
                text-decoration: none; }
      .tc--search-results .c--rich-text .gsc-control-cse .gsc-wrapper .gcsc-more-maybe-branding-root {
        display: none; }

.lity {
  background: rgba(0, 0, 0, 0.9); }
  .lity .lity-wrap {
    padding-top: 4.6875rem;
    padding-bottom: 4.6875rem;
    overflow: auto; }
    .lity .lity-wrap .lity-container {
      position: relative;
      width: 100%;
      max-width: 1800px; }
      .lity .lity-wrap .lity-container .lity-close {
        top: 1.5625rem;
        right: 1.5625rem; }
        .lity .lity-wrap .lity-container .lity-close:focus {
          outline: 0.0625rem solid #FFF; }
  .lity.lity-youtube .lity-content, .lity.lity-vimeo .lity-content {
    margin-right: auto;
    margin-left: auto; }

.lity-active body {
  height: 100vw;
  overflow: hidden; }

.post-password-form {
  padding-top: 3.125rem;
  padding-right: 8.33333%;
  padding-bottom: 3.125rem;
  padding-left: 8.33333%; }
  @media screen and (min-width: 768px) {
    .post-password-form {
      padding-top: 4.6875rem;
      padding-bottom: 4.6875rem; } }
  @media screen and (min-width: 1024px) {
    .post-password-form {
      padding-top: 6.25rem;
      padding-right: 22.91667%;
      padding-bottom: 6.25rem;
      padding-left: 22.91667%; } }
  .post-password-form p {
    font-size: 1.875rem; }

/*# sourceMappingURL=maps/style.css.map */
