@charset "UTF-8";
/*!
* WS Starter
* Designed by LRS Web Solutions (http://lrswebsolutions.com)
* Visit http://lrswebsolutions.com
*/
/*
  Presets & Variables
*/
/*
  Additional Presets & Variables
*/
/*
  SCSS Variables
*/
/* Toggle for desktop navigation layout:
    true = enable desktop-specific nav styles (e.g., horizontal layout)
    false = keep mobile nav layout across all screen sizes */
/*
  Grid Settings
*/
/*
  Site Width
*/
/*
  Breakpoints
*/
/*
  Functions
*/
/*
  !!Important!!

  These classes should be used sparingly, and generally only in two instances:
    1) By the RTE so the user can modify the content of the site.
    2) Used in a script to be toggled on an element

  With the exception of sr-only (which has a very specific use-case), there is no reason to pile on a bunch of specificity to an element using !importants, or additional classes.

  Questions can be brought up with Senior Front-End Dev
*/
.sr-only {
  position: absolute !important;
  width: 1px !important;
  width: 0.05556rem !important;
  height: 1px !important;
  height: 0.05556rem !important;
  padding: 0 !important;
  margin: -1px !important;
  margin: -0.05556rem !important;
  overflow: hidden !important;
  clip: rect(1px, 1px, 1px, 1px) !important;
  clip: rect(0.05556rem, 0.05556rem, 0.05556rem, 0.05556rem) !important;
  color: transparent;
  white-space: nowrap !important;
  border: 0 !important;
  -webkit-clip-path: inset(50%) !important;
          clip-path: inset(50%) !important;
}
.sr-only:focus, .sr-only:active {
  width: auto !important;
  height: auto !important;
  margin: auto !important;
  overflow: visible !important;
  clip: auto !important;
  color: transparent;
  white-space: normal !important;
  -webkit-clip-path: none !important;
          clip-path: none !important;
}

.hide {
  display: none !important;
}

.show {
  display: initial;
}

.invisible {
  visibility: hidden;
}

.clear {
  display: block;
  clear: both;
}

.clear-after::after {
  content: "";
  display: table;
  clear: both;
}

/*  floats */
.float-center {
  display: block;
  margin-right: auto;
  margin-left: auto;
}

.float-left {
  float: left;
}

.float-right {
  float: right;
}

/*  alignment */
.text-left,
.align-left {
  text-align: left;
}

.text-right,
.align-right {
  text-align: right;
}

.text-center,
.align-center {
  text-align: center;
}

.text-justify,
.align-justify {
  text-align: justify;
}

/*  show only */
@media all and (min-width: 800px) {
  .show-small-only {
    display: none;
  }
}
.show-small-only[data-arx-type=image]::before {
  content: "Show Small Only";
}

@media all and (max-width: 374px) {
  .show-medium-only {
    display: none;
  }
}
@media all and (min-width: 1280px) {
  .show-medium-only {
    display: none;
  }
}
.show-medium-only[data-arx-type=image]::before {
  content: "Show Medium Only";
}

.show-small-only[data-arx-type=image],
.show-medium-only[data-arx-type=image],
.show-large-only[data-arx-type=image],
.show-xlarge-only[data-arx-type=image],
.show-xxlarge-only[data-arx-type=image] {
  position: relative;
  width: 100%;
  max-width: 100% !important;
  overflow: hidden;
  border: 1px dashed #d6e2ff;
  border: 0.05556rem dashed #d6e2ff;
  margin-bottom: 15px;
  margin-bottom: 0.83333rem;
  outline: 2px dashed rgba(0, 88, 251, 0.2);
  outline: 0.11111rem dashed rgba(0, 88, 251, 0.2);
}
.show-small-only[data-arx-type=image]::before,
.show-medium-only[data-arx-type=image]::before,
.show-large-only[data-arx-type=image]::before,
.show-xlarge-only[data-arx-type=image]::before,
.show-xxlarge-only[data-arx-type=image]::before {
  position: absolute;
  top: 0;
  right: 0;
  display: inline-block;
  width: auto;
  height: auto;
  padding: 2px;
  padding: 0.11111rem;
  font-size: 12px;
  font-size: 0.66667rem;
  font-weight: bold;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.5);
  border: 1px dashed rgba(0, 88, 251, 0.2);
  border: 0.05556rem dashed rgba(0, 88, 251, 0.2);
  border-top: 0;
  border-right: 0;
}

/*  show up */
.show-medium-up {
  display: none;
}
@media all and (min-width: 800px) {
  .show-medium-up {
    display: block;
  }
}
.show-medium-up[data-arx-type=image]::before {
  content: "Show Medium Up";
}

.show-large-up {
  display: none;
}
@media all and (min-width: 1280px) {
  .show-large-up {
    display: block;
  }
}
.show-large-up[data-arx-type=image]::before {
  content: "Show Large Up";
}

.show-xlarge-up {
  display: none;
}
@media all and (min-width: 1440px) {
  .show-xlarge-up {
    display: block;
  }
}
.show-xlarge-up[data-arx-type=image]::before {
  content: "Show X-Large Up";
}

.show-xxlarge-up {
  display: none;
}
@media all and (min-width: 1920px) {
  .show-xxlarge-up {
    display: block;
  }
}
.show-xxlarge-up[data-arx-type=image]::before {
  content: "Show XX-Large Up";
}

.show-medium-up[data-arx-type=image],
.show-large-up[data-arx-type=image],
.show-xlarge-up[data-arx-type=image],
.show-xxlarge-up[data-arx-type=image] {
  position: relative;
  width: 100%;
  max-width: 100% !important;
  overflow: hidden;
  border: 1px dashed #d6e2ff;
  border: 0.05556rem dashed #d6e2ff;
  margin-bottom: 15px;
  margin-bottom: 0.83333rem;
  outline: 2px dashed rgba(0, 88, 251, 0.2);
  outline: 0.11111rem dashed rgba(0, 88, 251, 0.2);
}
.show-medium-up[data-arx-type=image]::before,
.show-large-up[data-arx-type=image]::before,
.show-xlarge-up[data-arx-type=image]::before,
.show-xxlarge-up[data-arx-type=image]::before {
  position: absolute;
  top: 0;
  right: 0;
  display: inline-block;
  width: auto;
  height: auto;
  padding: 2px;
  padding: 0.11111rem;
  font-size: 12px;
  font-size: 0.66667rem;
  font-weight: bold;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.5);
  border: 1px dashed rgba(0, 88, 251, 0.2);
  border: 0.05556rem dashed rgba(0, 88, 251, 0.2);
  border-top: 0;
  border-right: 0;
}

/*  hide only */
@media all and (max-width: 374px) {
  .hide-small-only {
    display: none;
  }
}
.hide-small-only[data-arx-type=image]::before {
  content: "Hide Small Only";
}

@media all and (min-width: 1280px) {
  .center-vert {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    -webkit-align-content: center;
        -ms-flex-line-pack: center;
            align-content: center;
  }
}

@media all and (min-width: 1280px) {
  .orderFirst {
    -webkit-box-ordinal-group: 0;
    -webkit-order: -1;
        -ms-flex-order: -1;
            order: -1;
  }
}

@media all and (min-width: 1280px) {
  .order1 {
    -webkit-box-ordinal-group: 2;
    -webkit-order: 1;
        -ms-flex-order: 1;
            order: 1;
  }
}

@media all and (min-width: 1280px) {
  .order2 {
    -webkit-box-ordinal-group: 3;
    -webkit-order: 2;
        -ms-flex-order: 2;
            order: 2;
  }
}

@media all and (min-width: 1280px) {
  .order3 {
    -webkit-box-ordinal-group: 4;
    -webkit-order: 3;
        -ms-flex-order: 3;
            order: 3;
  }
}

@media all and (min-width: 1280px) {
  .order4 {
    -webkit-box-ordinal-group: 5;
    -webkit-order: 4;
        -ms-flex-order: 4;
            order: 4;
  }
}

@media all and (min-width: 1280px) {
  .order5 {
    -webkit-box-ordinal-group: 6;
    -webkit-order: 5;
        -ms-flex-order: 5;
            order: 5;
  }
}

@media all and (min-width: 1280px) {
  .order6 {
    -webkit-box-ordinal-group: 7;
    -webkit-order: 6;
        -ms-flex-order: 6;
            order: 6;
  }
}

@media all and (min-width: 1280px) {
  .orderLast {
    -webkit-box-ordinal-group: 101;
    -webkit-order: 100;
        -ms-flex-order: 100;
            order: 100;
  }
}

.flex {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.align-center {
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}

.justify-center {
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
}

.justify-between {
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.justify-start {
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  width: 100%;
}

.justify-end {
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  width: 100%;
}

.flex-column {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
}

.flex-row {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
      -ms-flex-direction: row;
          flex-direction: row;
}

.flex-column-reverse {
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
  -webkit-flex-direction: column-reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
}

.flex-row-reverse {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -webkit-flex-direction: row-reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}

.p-0 {
  padding: 0 !important;
}

.pt-0 {
  padding-top: 0 !important;
}

.pr-0 {
  padding-right: 0 !important;
}

.pb-0 {
  padding-bottom: 0 !important;
}

.pl-0 {
  padding-left: 0 !important;
}

.m-0 {
  margin: 0 !important;
}

.mt-0 {
  margin-top: 0 !important;
}

.mr-0 {
  margin-right: 0 !important;
}

.mb-0 {
  margin-bottom: 0 !important;
}

.ml-0 {
  margin-left: 0 !important;
}

/*
  Components & Variables
*/
:root {
  /*
    Fonts
      - Default font size is generally set to the standard body text font size
  */
  --font_primary: "Montserrat", sans-serif;
  --font_secondary: "source-sans-3", sans-serif;
  --default_line-height: 1.55em;
  --default_text-shadow: 0px 0px 30px 0px rgb(0 0 0 / 15%);
  --default_text-shadow: 0 0 1.66667rem 0 rgb(0 0 0 / 15%);
  /*  !! IF YOU UPDATE THIS, ALSO UPDATE IN GULP FILE - LINE 57 */
  --default_font-size: 18PX;
  /*
    Site Standard Colors
      - Add additional colors according to style guide
  */
  --color_primary: rgb(18 36 58 / 100%);
  --color_secondary: rgb(244 183 58 / 100%);
  --color_tertiary: rgb(210 113 42 / 100%);
  --color_gray: rgb(232 232 232 / 100%);
  --color_gray-medium: rgb(140 140 140 / 100%);
  --color_gray-dark:rgb(96 98 97 / 100%);
  --color_link: rgb(42 73 111 / 100%);
  --color_bg-light: rgb(232 232 232 / 100%);
  --color_bg-dark:rgb(18 36 58 / 100%);
  --color_gradient: linear-gradient(98deg, rgb(18 36 58 / 100%) 2.73%, rgb(63 109 167 / 100%) 100%);
  /*
    Border Settings
      - buttons, boxes, etc..
      - border-width should have caps PX to prevent conversion to REM
  */
  --default_border-radius: 0;
  --default_border-width: 2PX;
  --default_active-border-width: 4px;
  --default_active-border-width: 0.22222rem;
  /*
    Other Default Settings
  */
  --default_box-shadow: 0px 0px 30px 0px rgb(0 0 0 / 15%);
  --default_box-shadow: 0 0 1.66667rem 0 rgb(0 0 0 / 15%);
  --default_active-box-shadow: 0px 0px 60px 0px rgb(0 0 0 / 25%);
  --default_active-box-shadow: 0 0 3.33333rem 0 rgb(0 0 0 / 25%);
  --default_site-width: calc(1920 * 1PX);
  --default_content-width: calc(1200 * 1PX);
  --default_gutter: calc(30px * 1PX);
  --default_gutter: calc(1.66667rem * 1PX);
  --default_button-height: 50px;
  --default_button-height: 2.77778rem;
  --default_site-margin-lg-one-side: calc(120);
  --default_site-margin-sm-one-side: calc(35);
  --default_site-margin-lg: calc(120 * 2PX);
  --default_site-margin-sm: calc(35 * 2PX);
}

:root {
  --pager-item-bg-color: #ccc;
  --pager-item-bg-color-hover: #1a1a1a;
  --pager-item-bg-color-active: #1a1a1a;
  --pager-item-text-color: #1a1a1a;
  --pager-item-text-color-hover: #fff;
  --pager-item-text-color-active: #fff;
}
:root .dark-mode {
  --pager-item-bg-color: #1782c5;
}

.cycle-pager,
.dots,
.splide__pagination {
  position: relative;
  z-index: 1;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  width: 100%;
  padding: 0;
  padding: 20px 0 10px;
  padding: 1.11111rem 0 0.55556rem;
  text-align: right;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
.cycle-pager span,
.cycle-pager .splide__pagination__page,
.dots span,
.dots .splide__pagination__page,
.splide__pagination span,
.splide__pagination .splide__pagination__page {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  width: 17px;
  width: 0.94444rem;
  height: 17px;
  height: 0.94444rem;
  margin: 0 7px 0 0;
  margin: 0 0.38889rem 0 0;
  font-size: 0;
  text-decoration: none;
  cursor: pointer;
  background: var(--pager-item-bg-color);
  border-radius: 50%;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cycle-pager span.cycle-pager-active, .cycle-pager span.active, .cycle-pager span.is-active,
.cycle-pager .splide__pagination__page.cycle-pager-active,
.cycle-pager .splide__pagination__page.active,
.cycle-pager .splide__pagination__page.is-active,
.dots span.cycle-pager-active,
.dots span.active,
.dots span.is-active,
.dots .splide__pagination__page.cycle-pager-active,
.dots .splide__pagination__page.active,
.dots .splide__pagination__page.is-active,
.splide__pagination span.cycle-pager-active,
.splide__pagination span.active,
.splide__pagination span.is-active,
.splide__pagination .splide__pagination__page.cycle-pager-active,
.splide__pagination .splide__pagination__page.active,
.splide__pagination .splide__pagination__page.is-active {
  font-size: 0;
  color: transparent;
  background: var(--pager-item-bg-color-active);
  opacity: 1;
  -webkit-transform: none;
      -ms-transform: none;
          transform: none;
}

.cycle-carousel-wrap {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
}

.pager {
  position: relative;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  width: 100%;
}
.pager span,
.pager a {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  width: 30px;
  width: 1.66667rem;
  height: 30px;
  height: 1.66667rem;
  font-family: var(--font_primary);
  font-size: 18px;
  font-size: 1rem;
  font-weight: 700;
  color: var(--pager-item-text-color);
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  background: var(--pager-item-bg-color);
  border: 0;
  border-radius: 50px;
  border-radius: 2.77778rem;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  margin-right: 5px;
  margin-right: 0.27778rem;
  -webkit-transition: all 0.33s ease-in-out;
  transition: all 0.33s ease-in-out;
}
.pager span:last-child,
.pager a:last-child {
  margin-right: 0;
}
.pager span::before,
.pager a::before {
  content: none !important;
}
.pager a:not(.next-prev) {
  color: var(--pager-item-text-color);
}
.pager a:not(.next-prev):hover, .pager a:not(.next-prev):focus {
  color: var(--pager-item-text-color-hover);
  background: var(--pager-item-bg-color-hover);
}
.pager span:not(.next, .prev) {
  color: var(--pager-item-text-color-active);
  background: var(--pager-item-bg-color-hover);
}
.pager .next-prev {
  position: relative;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  width: auto;
  background: transparent;
}
.pager .next-prev .next,
.pager .next-prev .prev {
  position: relative;
  width: 30px;
  width: 1.66667rem;
  height: 30px;
  height: 1.66667rem;
  margin: 0;
}
.pager .next-prev .next::before,
.pager .next-prev .prev::before {
  content: "";
  position: absolute;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  width: 30px;
  width: 1.66667rem;
  height: 30px;
  height: 1.66667rem;
  /*
  REPLACE WITH SVG ICON


  font-family: atlas.$fontawesome;
  */
  font-size: 18px;
  font-size: 1rem;
  text-align: center;
  text-decoration: none;
  border-radius: 50px;
  border-radius: 2.77778rem;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.pager .next-prev .next::before {
  content: "\f054";
}
.pager .next-prev .prev::before {
  content: "\f053";
}
.pager .next-prev:hover .next, .pager .next-prev:focus .next {
  background: var(--pager-item-bg-color-hover);
}
.pager .next-prev:hover .next::before, .pager .next-prev:focus .next::before {
  color: var(--pager-item-text-color-hover);
}
.pager .next-prev:hover .prev, .pager .next-prev:focus .prev {
  background: var(--pager-item-bg-color-hover);
}
.pager .next-prev:hover .prev::before, .pager .next-prev:focus .prev::before {
  color: var(--pager-item-text-color-hover);
}

:root {
  --sp-banner-background-color: #414141;
  --sp-banner-title-color: #fff;
}

.sp-banner-wrapper {
  position: relative;
  min-height: 15px;
  min-height: 0.83333rem;
  background-color: var(--sp-banner-background-color);
}
.sp-banner-wrapper h1 {
  position: relative;
  z-index: 1;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  min-height: 150px;
  min-height: 8.33333rem;
  padding: 0;
  margin: 0 auto;
  font-family: var(--font_primary);
  font-size: 36px;
  font-size: 2rem;
  font-weight: 700;
  line-height: 40px;
  line-height: 2.22222rem;
  color: var(--sp-banner-title-color);
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  inset: 0;
}
@media all and (min-width: 800px) {
  .sp-banner-wrapper h1 {
    max-width: calc(100% - 240px);
    max-width: calc(100% - 13.33333rem);
  }
}
.sp-banner-wrapper h1 {
  max-width: calc(100% - 70px);
  max-width: calc(100% - 3.88889rem);
  margin: 0 auto;
  width: 1200px;
  width: 66.66667rem;
}
.sp-banner-wrapper--center-text * {
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}

:root {
  --breadcrumb-item-color: var(--color_gray-dark);
  --breadcrumb-link-color: var(--color_primary);
  --breadcrumb-link-color-hover: var(--color_gray-dark);
  --breadcrumb-link-color-active: var(--color_primary);
  --breadcrumb-link-divider: var(--color_gray-medium);
}

.breadcrumbs-container {
  position: relative;
  margin-top: 20px;
  margin-top: 1.11111rem;
}
@media all and (min-width: 800px) {
  .breadcrumbs-container {
    max-width: calc(100% - 240px);
    max-width: calc(100% - 13.33333rem);
  }
}
.breadcrumbs-container {
  max-width: calc(100% - 70px);
  max-width: calc(100% - 3.88889rem);
  margin: 0 auto;
  width: 1200px;
  width: 66.66667rem;
}
@media all and (min-width: 800px) {
  .breadcrumbs-container {
    margin-top: 40px;
    margin-top: 2.22222rem;
  }
}

.breadcrumb-trail {
  position: relative;
  padding: 0;
}
.breadcrumb-trail__item {
  position: relative;
  display: inline-block;
}
.breadcrumb-trail__item::after {
  content: "/";
  position: relative;
  display: inline-block;
  margin: 0 5px;
  margin: 0 0.27778rem;
  font-family: var(--primary-font);
  font-size: 16px;
  font-size: 0.88889rem;
  font-weight: 400;
  line-height: 30px;
  line-height: 1.66667rem;
  color: var(--breadcrumb-link-divider);
}
.breadcrumb-trail__item:last-of-type {
  margin-right: 0;
}
.breadcrumb-trail__item:last-of-type::after {
  content: none;
}
.breadcrumb-trail__text {
  font-family: var(--primary-font);
  font-size: 16px;
  font-size: 0.88889rem;
  font-weight: 500;
  line-height: 30px;
  line-height: 1.66667rem;
  color: var(--breadcrumb-item-color);
}
.breadcrumb-trail__link {
  font-family: var(--primary-font);
  font-weight: 600;
  color: var(--breadcrumb-link-color);
  text-decoration: none;
  border-color: var(--breadcrumb-link-color);
}
.breadcrumb-trail__link:hover, .breadcrumb-trail__link:focus {
  color: var(--breadcrumb-link-color-hover);
  text-decoration: none;
  border-color: var(--breadcrumb-link-color-hover);
}

/* Subnavigation Styles */
:root {
  /* Subnavigation General Text */
  --subnavigation-caption-color: var(--color_gray-dark);
  /* Subnavigation Title */
  --subnavigation-title-color: #000;
  /* Subnavigation Default Styling */
  --subnavigation-link-color: var(--color_link);
  --subnavigation-link-color-hover: var(--color_gray-dark);
  --subnavigation-link-color-active: var(--color_link);
  --subnavigation-more-toggle-color: var(--color_link);
  --subnavigation-bg-color-desktop: transparent;
  --subnavigation-bg-color-mobile: var(--color_bg-light);
  --subnavigation-border-color: var(--color_gray-medium);
  --subnavigation-gradient: linear-gradient(to left,
      rgb(255 255 255 / 100%) 110px,
      rgb(255 255 255 / 0%) 75%);
  --subnavigation-gradient: linear-gradient(to left,
      rgb(255 255 255 / 100%) 6.11111rem,
      rgb(255 255 255 / 0%) 75%);
  /* Subnavigation Solid Style */
  --subnavigation-solid-background: var(--color_bg-light);
  --subnavigation-solid-border-radius: var(--default_border-radius);
  --subnavigation-solid-gradient: linear-gradient(to left,
      rgb(238 240 242 / 100%) 110px,
      rgb(238 240 242 / 0%) 75%);
  --subnavigation-solid-gradient: linear-gradient(to left,
      rgb(238 240 242 / 100%) 6.11111rem,
      rgb(238 240 242 / 0%) 75%);
}

.subnavigation {
  position: relative;
  margin: 0 auto;
  /*
     Solid Theme for Subnavigation
  */
}
@media all and (min-width: 800px) {
  .subnavigation {
    max-width: calc(100% - 240px);
    max-width: calc(100% - 13.33333rem);
  }
}
.subnavigation {
  max-width: calc(100% - 70px);
  max-width: calc(100% - 3.88889rem);
  margin: 0 auto;
  width: 1200px;
  width: 66.66667rem;
}
@media screen and (width >= 1280px) {
  .subnavigation {
    margin: 0 auto 60px;
    margin: 0 auto 3.33333rem;
  }
}
@media screen and (width >= 1280px) {
  .subnavigation__container {
    position: relative;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    padding: 20px 0 5px;
    padding: 1.11111rem 0 0.27778rem;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .subnavigation__container::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 100vw;
    height: 1px;
    height: 0.05556rem;
    background: var(--subnavigation-border-color);
    -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}
.subnavigation__title {
  position: relative;
  display: block;
  padding: 18px 20px;
  padding: 1rem 1.11111rem;
  font-family: var(--font_primary);
  font-size: 16px;
  font-size: 0.88889rem;
  font-weight: 700;
  line-height: 30px;
  line-height: 1.66667rem;
  color: var(--subnavigation-title-color);
  text-transform: uppercase;
  white-space: nowrap;
  -webkit-align-self: flex-start;
      -ms-flex-item-align: start;
          align-self: flex-start;
  margin-bottom: 25px;
  margin-bottom: 1.38889rem;
}
@media screen and (width >= 1280px) {
  .subnavigation__title {
    display: inline-block;
    min-width: 125px;
    min-width: 6.94444rem;
    padding: 0;
    margin: 0 30px 0 0;
    margin: 0 1.66667rem 0 0;
    -webkit-box-shadow: none;
            box-shadow: none;
  }
}
.subnavigation__title::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 100vw;
  height: 1px;
  height: 0.05556rem;
  background: var(--subnavigation-border-color);
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media screen and (width >= 1280px) {
  .subnavigation__title::before {
    content: none;
  }
}
.subnavigation__list {
  display: none;
  padding: 50px 20px 20px;
  padding: 2.77778rem 1.11111rem 1.11111rem;
  margin: -50px 0 0;
  margin: -2.77778rem 0 0;
  background: transparent;
  -webkit-box-shadow: none;
          box-shadow: none;
}
@media screen and (width >= 1280px) {
  .subnavigation__list {
    display: -webkit-inline-box;
    display: -webkit-inline-flex;
    display: -ms-inline-flexbox;
    display: inline-flex;
    padding: 0 120px 0 0;
    padding: 0 6.66667rem 0 0;
    margin: 0;
    overflow: hidden;
    background: var(--subnavigation-bg-color-desktop);
    -webkit-box-shadow: none;
            box-shadow: none;
  }
}
.subnavigation__item {
  display: block;
  margin-right: 25px;
  margin-right: 1.38889rem;
  margin-bottom: 25px;
  margin-bottom: 1.38889rem;
}
@media screen and (width >= 1280px) {
  .subnavigation__item {
    display: inline-block;
    margin-bottom: 15px;
    margin-bottom: 0.83333rem;
  }
}
.subnavigation__item:last-of-type {
  margin-right: 0;
}
.subnavigation__item--active a {
  color: var(--subnavigation-link-color-active);
}
.subnavigation__link {
  font-family: var(--font_primary);
  font-size: 16px;
  font-size: 0.88889rem;
  font-weight: 700;
  line-height: 30px;
  line-height: 1.66667rem;
  color: var(--subnavigation-link-color);
  text-decoration: none;
  text-transform: uppercase;
  border: 0;
}
@media screen and (width >= 1280px) {
  .subnavigation__link {
    width: 100%;
    text-wrap: nowrap;
  }
}
.subnavigation__link:hover, .subnavigation__link:focus {
  color: var(--subnavigation-link-color-hover);
}
.subnavigation__toggle {
  position: absolute;
  top: 0;
  right: 0;
  display: block;
  width: 100px;
  width: 5.55556rem;
  height: 66px;
  height: 3.66667rem;
  padding: 10px;
  padding: 0.55556rem;
  font-family: var(--font_primary);
  font-size: 16px;
  font-size: 0.88889rem;
  font-weight: 600;
  line-height: 30px;
  line-height: 1.66667rem;
  letter-spacing: 6%;
  color: var(--subnavigation-title-color);
  text-align: right;
  cursor: pointer;
  background: none;
  border: none;
}
@media screen and (width >= 1280px) {
  .subnavigation__toggle {
    top: 10px;
    top: 0.55556rem;
    z-index: 1;
    display: none;
    height: calc(100% - 20px);
    height: calc(100% - 1.11111rem);
    padding: 10px 20px;
    padding: 0.55556rem 1.11111rem;
    border-left: 1px solid #C6C6CC;
    border-left: 0.05556rem solid #C6C6CC;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
  .subnavigation__toggle.show-more {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }
}
.subnavigation__toggle__text {
  display: none;
}
@media screen and (width >= 1280px) {
  .subnavigation__toggle__text {
    display: inline-block;
    font-family: var(--font_primary);
    font-size: 16px;
    font-size: 0.88889rem;
    font-weight: 700;
    line-height: 30px;
    line-height: 1.66667rem;
    text-transform: uppercase;
  }
}
.subnavigation__toggle::after {
  content: "";
  position: relative;
  top: -6px;
  top: -0.33333rem;
  right: -5px;
  right: -0.27778rem;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  width: 16px;
  width: 0.88889rem;
  height: 16px;
  height: 0.88889rem;
  background-color: var(--subnavigation-more-toggle-color);
  background-repeat: no-repeat;
  background-size: contain;
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 5v14m-7-7h14' fill='%23000000' stroke='%23000000' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
          mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 5v14m-7-7h14' fill='%23000000' stroke='%23000000' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (width >= 1280px) {
  .subnavigation__toggle::after {
    position: absolute;
    top: 15px;
    top: 0.83333rem;
    width: 20px;
    width: 1.11111rem;
    height: 20px;
    height: 1.11111rem;
    background-color: var(--subnavigation-more-toggle-color);
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 5v14m-7-7h14' fill='%23000000' stroke='%23000000' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
            mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 5v14m-7-7h14' fill='%23000000' stroke='%23000000' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
  }
}
.subnavigation--show-more .subnavigation__toggle {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.subnavigation--show-more::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 300px;
  width: 16.66667rem;
  height: calc(100% - 1px);
  height: calc(100% - 0.05556rem);
  background: var(--subnavigation-gradient);
  pointer-events: none;
}
.subnavigation--active .subnavigation__list {
  display: block;
}
@media screen and (width >= 1280px) {
  .subnavigation--active .subnavigation__list {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
  }
}
.subnavigation--active .subnavigation__toggle::after {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M5 12h14' fill='%23000000' stroke='%23000000' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
          mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M5 12h14' fill='%23000000' stroke='%23000000' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
}
@media screen and (width >= 1280px) {
  .subnavigation--active .subnavigation__toggle::after {
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M5 12h14' fill='%23000000' stroke='%23000000' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
            mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M5 12h14' fill='%23000000' stroke='%23000000' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
  }
}
@media all and (width >= 1280px) {
  .subnavigation--solid .subnavigation__container {
    padding: 20px 40px 5px;
    padding: 1.11111rem 2.22222rem 0.27778rem;
    background: var(--subnavigation-solid-background);
    border-radius: var(--subnavigation-solid-border-radius);
    margin-top: 50px;
    margin-top: 2.77778rem;
    margin-bottom: 20px;
    margin-bottom: 1.11111rem;
  }
}
.subnavigation--solid .subnavigation__container::before {
  content: none;
}
.subnavigation--solid .subnavigation__title {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  height: 50px;
  height: 2.77778rem;
  padding: 2px 35px 3px 70px;
  padding: 0.11111rem 1.94444rem 0.16667rem 3.88889rem;
  font-size: 18px;
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  text-transform: capitalize;
  background-color: var(--color_primary);
  background-image: url("/themes/atlas/assets/dist/images/icons/subnav-icon.svg");
  background-position: 20px center;
  background-position: 1.11111rem center;
  background-repeat: no-repeat;
  background-size: 35px 20px;
  background-size: 1.94444rem 1.11111rem;
  border-radius: var(--subnavigation-solid-border-radius);
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  padding-left: 70px;
  padding-left: 3.88889rem;
  margin-top: 20px;
  margin-top: 1.11111rem;
}
@media all and (width >= 1280px) {
  .subnavigation--solid .subnavigation__title {
    position: absolute;
    top: -55px;
    top: -3.05556rem;
    left: 15px;
    left: 0.83333rem;
    height: auto;
    font-size: 14px;
    font-size: 0.77778rem;
    background-size: 23px 13px;
    background-size: 1.27778rem 0.72222rem;
    border-radius: var(--subnavigation-solid-border-radius) var(--subnavigation-solid-border-radius) 0 0;
    padding-left: 55px;
    padding-left: 3.05556rem;
  }
}
.subnavigation--solid .subnavigation__title::before {
  content: none;
}
.subnavigation--solid .subnavigation__toggle {
  width: 120px;
  width: 6.66667rem;
  height: 50px;
  height: 2.77778rem;
  font-size: 0;
  background-color: transparent;
  border: 0;
  border-radius: 10px;
  border-radius: 0.55556rem;
  margin-right: 10px;
  margin-right: 0.55556rem;
  -webkit-box-pack: right;
  -webkit-justify-content: right;
      -ms-flex-pack: right;
          justify-content: right;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
@media all and (width >= 1280px) {
  .subnavigation--solid .subnavigation__toggle {
    height: calc(100% - 20px);
    height: calc(100% - 1.11111rem);
    font-size: 16px;
    font-size: 0.88889rem;
    background-color: #D3D3D9;
    -webkit-box-pack: left;
    -webkit-justify-content: left;
        -ms-flex-pack: left;
            justify-content: left;
  }
}
.subnavigation--solid .subnavigation__toggle::after {
  top: auto;
  right: auto;
  width: 30px;
  width: 1.66667rem;
  height: 30px;
  height: 1.66667rem;
  background-repeat: no-repeat;
  background-size: cover;
}
@media all and (width >= 1280px) {
  .subnavigation--solid .subnavigation__toggle::after {
    top: 50%;
    -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%);
    right: 20px;
    right: 1.11111rem;
    width: 15px;
    width: 0.83333rem;
    height: 15px;
    height: 0.83333rem;
  }
}
.subnavigation--solid.subnavigation--active .subnavigation__title {
  border-radius: var(--subnavigation-solid-border-radius) var(--subnavigation-solid-border-radius) 0 0;
}
.subnavigation--solid.subnavigation--active .subnavigation__list {
  background: var(--subnavigation-solid-background);
  border-radius: 0 0 var(--subnavigation-solid-border-radius) var(--subnavigation-solid-border-radius);
  margin-bottom: 30px;
  margin-bottom: 1.66667rem;
}
@media all and (width >= 1280px) {
  .subnavigation--solid.subnavigation--active .subnavigation__list {
    margin-bottom: 0;
  }
}
.subnavigation--solid.subnavigation--active::after {
  content: none;
}
.subnavigation--solid.subnavigation--show-more::after {
  background: var(--subnavigation-solid-gradient);
  border-radius: 0 var(--subnavigation-solid-border-radius) var(--subnavigation-solid-border-radius) 0;
}

:root {
  --team-name-color: #1a1a1a;
  --team-title-color: #1a1a1a;
  --team-link-color: #1a1a1a;
  --team-link-color-hover: #ccc;
}

.employees__employee {
  width: 100%;
}
.employees__employee figure::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0 solid rgba(255, 255, 255, 0.5);
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.employees__employee::before {
  content: none;
}
.employees__employee:hover figure::before, .employees__employee:focus figure::before {
  border: 15px solid rgba(255, 255, 255, 0.35);
  border: 0.83333rem solid rgba(255, 255, 255, 0.35);
}
.employees__employee:hover .employees__employee--link::after, .employees__employee:focus .employees__employee--link::after {
  width: 100%;
}
.employees__employee--name {
  color: var(--team-name-color) !important;
  margin-bottom: 0 !important;
}
.employees__employee--name::after {
  display: none !important;
}
.employees__employee--title {
  font-family: var(--font_primary);
  font-size: 18px;
  font-size: 1rem;
  font-weight: 500;
  line-height: 24px;
  line-height: 1.33333rem;
  color: var(--team-title-color);
  margin-bottom: 7px;
  margin-bottom: 0.38889rem;
}
.employees__employee--link {
  position: relative;
  font-family: var(--font_primary);
  font-size: 16px;
  font-size: 0.88889rem;
  font-weight: 700;
  line-height: 24px;
  line-height: 1.33333rem;
  letter-spacing: 1px;
  letter-spacing: 0.05556rem;
  color: var(--team-link-color);
  text-transform: uppercase;
}
.employees__employee--link::before {
  content: none;
}
.employees__employee--link::after {
  content: "";
  position: absolute;
  bottom: 5px;
  bottom: 0.27778rem;
  left: 0;
  width: 0;
  height: 2px;
  height: 0.11111rem;
  background: #000;
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}

.employee-modal {
  text-align: left;
}
.employee-modal .employees__employee--image {
  overflow: hidden;
  border-radius: 10px;
  border-radius: 0.55556rem;
}
@media all and (min-width: 1280px) {
  .employee-modal .employees__employee--image {
    min-width: 240px;
    min-width: 13.33333rem;
    margin-right: 25px !important;
    margin-right: 1.38889rem !important;
  }
}
.employee-modal .employees__employee--name {
  font-family: var(--font_primary);
  font-size: 30px;
  font-size: 1.66667rem;
  font-weight: 700;
  line-height: 36px;
  line-height: 2rem;
}
.employee-modal .employees__employee--title {
  font-family: var(--font_primary);
  font-size: 24px;
  font-size: 1.33333rem;
  font-weight: 400;
  line-height: 30px;
  line-height: 1.66667rem;
}
.employee-modal .summary {
  font-family: var(--font_primary);
  font-size: 18px;
  font-size: 1rem;
  font-weight: 400;
  line-height: 28px;
  line-height: 1.55556rem;
}
.employee-modal a.btn-connect {
  font-size: 30px;
  font-size: 1.66667rem;
  line-height: 40px;
  line-height: 2.22222rem;
  color: #009696;
}
.employee-modal a.btn-connect:hover, .employee-modal a.btn-connect:focus {
  color: var(--team-link-color-hover);
}

.employee-info {
  padding: 60px 40px 80px;
  padding: 3.33333rem 2.22222rem 4.44444rem;
  text-align: left !important;
}
@media all and (min-width: 1280px) {
  .employee-info {
    display: -webkit-inline-box;
    display: -webkit-inline-flex;
    display: -ms-inline-flexbox;
    display: inline-flex;
    width: 100%;
  }
}

:root {
  --news-item-border: #1a1a1a;
  --news-item-heading-color: #1a1a1a;
  --news-item-text-color: #1a1a1a;
  --news-item-link-color: #1a1a1a;
  --news-item-link-color-hover: #ccc;
  --news-view-all-link-color: #1a1a1a;
  --news-view-all-link-color-hover: #ccc;
  --news-post-date-color: #595959;
}

.news-posts {
  width: 100%;
  max-width: 1588px;
  max-width: 88.22222rem;
  padding: 0 50px 55px;
  padding: 0 2.77778rem 3.05556rem;
  margin: 58px auto 0;
  margin: 3.22222rem auto 0;
}
.news-posts .news-items .news-item .news-item-info .date-title {
  width: 100%;
}
.news-posts .news-items .news-item .news-item-info .date-title .news-item-date {
  margin-bottom: 20px;
  margin-bottom: 1.11111rem;
}
.news-posts .news-items .news-item .news-item-info .date-title h2 {
  min-height: auto !important;
  margin-bottom: 10px;
  margin-bottom: 0.55556rem;
}
@media (width >= 768px) {
  .news-posts .news-items .news-item {
    width: calc(33% - 30px) !important;
    width: calc(33% - 1.66667rem) !important;
  }
}
.news-posts .news-items .news-item:last-of-type {
  margin-right: 30px !important;
  margin-right: 1.66667rem !important;
}
.news-posts h2 {
  margin-bottom: 0;
}
.news-posts__news-item {
  width: 100%;
}
.news-posts__news-item .card {
  padding: 20px 40px 80px;
  padding: 1.11111rem 2.22222rem 4.44444rem;
}
@media all and (min-width: 1280px) {
  .news-posts__news-item .card {
    padding: 20px 40px 40px;
    padding: 1.11111rem 2.22222rem 2.22222rem;
  }
}
@media (width >= 768px) {
  .news-posts__news-item {
    width: calc(33% - 20px);
    width: calc(33% - 1.11111rem);
  }
}
.news-posts .news-items .news-item {
  padding-bottom: 40px;
  padding-bottom: 2.22222rem;
  margin-bottom: 40px;
  margin-bottom: 2.22222rem;
  border-bottom: 1px solid var(--news-item-border);
  border-bottom: 0.05556rem solid var(--news-item-border);
}

.news-posts__news-item-info {
  text-align: center;
}
.news-posts__news-item-info h2,
.news-posts__news-item-info h3 {
  font-family: var(--font_primary);
  font-size: 18px;
  font-size: 1rem;
  font-weight: 700;
  line-height: 28px;
  line-height: 1.55556rem;
  color: var(--news-heading-text-color);
}
@media all and (min-width: 1280px) {
  .news-posts__news-item-info h2,
  .news-posts__news-item-info h3 {
    font-size: 24px;
    font-size: 1.33333rem;
    line-height: 28px;
    line-height: 1.55556rem;
  }
}
@media all and (min-width: 1280px) {
  .news-posts__news-item-info {
    text-align: left;
  }
}
.news-posts__news-item-blurb {
  margin: 10px 0 23px;
  margin: 0.55556rem 0 1.27778rem;
}
.news-posts__news-item-blurb p {
  font-family: var(--font_primary);
  font-size: 16px;
  font-size: 0.88889rem;
  font-weight: 400;
  line-height: 28px;
  line-height: 1.55556rem;
  color: var(--news-item-text-color);
}
@media all and (min-width: 1280px) {
  .news-posts__news-item-blurb p {
    font-size: 20px;
    font-size: 1.11111rem;
    line-height: 28px;
    line-height: 1.55556rem;
  }
}
.news-posts__news-item-date {
  font-family: var(--font_primary);
  font-size: 14px;
  font-size: 0.77778rem;
  font-weight: 300;
  line-height: 12px;
  line-height: 0.66667rem;
  margin-top: 10px;
  margin-top: 0.55556rem;
}
.news-posts__view-all-news {
  position: relative;
  top: -80px;
  top: -4.44444rem;
  width: 100%;
  padding: 0 35px;
  padding: 0 1.94444rem;
  text-align: right;
}
.news-posts__view-all-news a {
  font-family: var(--font_primary);
  font-size: 14px;
  font-size: 0.77778rem;
  font-weight: 700;
  line-height: 24px;
  line-height: 1.33333rem;
  color: var(--news-view-all-link-color);
}
@media all and (min-width: 1280px) {
  .news-posts__view-all-news {
    top: -100px;
    top: -5.55556rem;
    width: calc(100% - 360px);
    width: calc(100% - 20rem);
    padding: 0 15%;
    margin-left: 360px;
    margin-left: 20rem;
  }
}

.news-detail__image {
  width: 100%;
  margin-bottom: 30px;
  margin-bottom: 1.66667rem;
}
.news-detail__image img {
  width: 100%;
}
.news-detail__date {
  font-family: var(--font_primary);
  font-size: 14px;
  font-size: 0.77778rem;
  font-weight: 700;
  line-height: 18px;
  line-height: 1rem;
  color: var(--news-post-date-color);
  text-transform: none;
  margin-bottom: 15px;
  margin-bottom: 0.83333rem;
}

.news-posts-listing__news-item {
  width: 100%;
}
.news-posts-listing__news-headline {
  font-family: var(--font_primary);
  font-size: 24px;
  font-size: 1.33333rem;
  font-weight: 700;
  line-height: 28px;
  line-height: 1.55556rem;
  color: var(--news-heading-text-color);
}
.news-posts-listing__news-date {
  font-family: var(--font_primary);
  font-size: 14px;
  font-size: 0.77778rem;
  font-weight: 700;
  line-height: 18px;
  line-height: 1rem;
  color: var(--news-post-date-color);
  text-transform: none;
  margin-bottom: 15px;
  margin-bottom: 0.83333rem;
}
.news-posts-listing__news-blurb {
  margin-bottom: 30px;
  margin-bottom: 1.66667rem;
}

.news-search {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  margin-bottom: 60px;
  margin-bottom: 3.33333rem;
}
.news-search input[type=text] {
  margin: 0 15px 0 0;
  margin: 0 0.83333rem 0 0;
}

.featured-news__news-items {
  display: block;
  width: 100%;
}
@media all and (min-width: 800px) {
  .featured-news__news-items {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: nowrap;
        -ms-flex-wrap: nowrap;
            flex-wrap: nowrap;
  }
}
.featured-news__news-item {
  width: 100%;
  margin-bottom: 30px;
  margin-bottom: 1.66667rem;
}
@media all and (min-width: 800px) {
  .featured-news__news-item {
    margin-right: 30px;
    margin-right: 1.66667rem;
    margin-bottom: 0;
  }
}
.featured-news__news-item:last-of-type {
  margin-right: 0;
}
.featured-news__news-item-date {
  display: block;
  font-family: var(--font_primary);
  font-size: 14px;
  font-size: 0.77778rem;
  font-weight: 700;
  line-height: 18px;
  line-height: 1rem;
  color: var(--news-post-date-color);
  text-transform: none;
  margin-bottom: 15px;
  margin-bottom: 0.83333rem;
}
.featured-news__view-all-news {
  margin-top: 30px;
  margin-top: 1.66667rem;
}
@media all and (min-width: 800px) {
  .featured-news__view-all-news {
    margin-top: 50px;
    margin-top: 2.77778rem;
  }
}

:root {
  --calendar-prev-next-color: #464646;
  --calendar-prev-next-color-hover: #1a1a1a;
  --calendar-text-color: #1a1a1a;
  --calendar-other-month-bg: #f5f5f5;
  --calendar-other-month-text-color: #a7a7a7;
  --calendar-link-color: #464646;
  --calendar-link-color-hover: #1a1a1a;
}

:root {
  --location-name: #aa4492;
  --location-icon-color: #aa4492;
  --location-category-name: #595959;
  --location-caption-text: #595959;
  --location-section-title: #1a1a1a;
  --location-directions-underline: #aa4492;
  --location-link-color: #aa4492;
  --location-link-color-hover: #262626;
}

.locations-map {
  max-height: 350px;
  max-height: 19.44444rem;
  overflow: hidden;
  border: 20px solid #fff;
  border: 1.11111rem solid #fff;
  border-radius: 10px;
  border-radius: 0.55556rem;
  -webkit-box-shadow: 0 0 35px 0 rgba(0, 0, 0, 0.25);
          box-shadow: 0 0 35px 0 rgba(0, 0, 0, 0.25);
  -webkit-box-shadow: 0 0 1.94444rem 0 rgba(0, 0, 0, 0.25);
          box-shadow: 0 0 1.94444rem 0 rgba(0, 0, 0, 0.25);
  margin-bottom: 45px;
  margin-bottom: 2.5rem;
}
.locations-map #map_canvas {
  margin-bottom: 0;
  height: 310px;
  height: 17.22222rem;
  max-height: 310px;
  max-height: 17.22222rem;
}

.locations-list__category-name {
  color: var(--location-category-name);
}
.locations-list__location-name {
  color: var(--location-name) !important;
}
.locations-list__location-caption p {
  display: block;
  font-family: var(--font_primary);
  font-size: 12px;
  font-size: 0.66667rem;
  font-weight: 300;
  line-height: 18px;
  line-height: 1rem;
  color: var(--location-caption-text);
  text-transform: uppercase;
  margin-bottom: 15px;
  margin-bottom: 0.83333rem;
}
.locations-list__location-information {
  padding-top: 0;
}
.locations-list__location-phone {
  position: relative;
  display: block;
  margin: 15px 0;
  margin: 0.83333rem 0;
  font-size: 18px;
  font-size: 1rem;
  padding-left: 30px;
  padding-left: 1.66667rem;
}
.locations-list__location-phone svg {
  width: 30px;
  width: 1.66667rem;
  height: 30px;
  height: 1.66667rem;
  padding: 7px;
  padding: 0.38889rem;
  background: #e6e6e6;
  border-radius: 5px;
  border-radius: 0.27778rem;
  margin-right: 7px;
  margin-right: 0.38889rem;
}
.locations-list__location-phone a {
  color: var(--location-link-color) !important;
  border-bottom: 0 !important;
}
.locations-list__location-phone a:hover, .locations-list__location-phone a:focus {
  color: var(--location-link-color-hover) !important;
}
.locations-list__location-description {
  position: relative;
  display: block;
  padding-left: 30px;
  padding-left: 1.66667rem;
  margin: 0 0 15px;
  margin: 0 0 0.83333rem;
}
.locations-list__location-description svg {
  top: 5px;
  top: 0.27778rem;
}
.locations-list__location-direction::after {
  content: "";
  position: relative;
  display: block;
  width: 60px;
  width: 3.33333rem;
  height: 3px;
  height: 0.16667rem;
  margin: 30px 0;
  margin: 1.66667rem 0;
  background: var(--location-directions-underline);
  border-radius: 50px;
  border-radius: 2.77778rem;
}
.locations-list__location-details-link {
  text-align: center;
  margin-top: 15px;
  margin-top: 0.83333rem;
}

:root {
  --error-background-color: #172446;
  --error-transition-color: rgb(23 36 70 / 75%);
  --error-font-color: #fff;
}

.subpage--error-page .sp-banner-wrapper {
  display: none;
}
.subpage--error-page .main-content.content-section {
  padding: 0;
}
.subpage--error-page .footer {
  margin: 0;
}
.subpage--error-page p:empty {
  display: none;
}

.error {
  position: relative;
  left: 50%;
  width: 100vw;
  height: auto;
  min-height: calc(100vh - 497px);
  min-height: calc(100vh - 27.61111rem);
  margin: 0;
  color: var(--error-font-color);
  background: var(--error-background-color);
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
@media all and (min-width: 800px) {
  .error {
    -webkit-flex-wrap: nowrap;
        -ms-flex-wrap: nowrap;
            flex-wrap: nowrap;
  }
}
.error__image {
  height: auto;
  min-width: 50%;
  -webkit-align-self: stretch;
      -ms-flex-item-align: stretch;
          align-self: stretch;
}
.error__image figure {
  height: 100%;
}
.error__image figure img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.error__image::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 55;
  display: block;
  width: 100%;
  height: 21px;
  height: 1.16667rem;
  background: var(--error-transition-color);
}
@media all and (min-width: 800px) {
  .error__image::after {
    width: 21px;
    width: 1.16667rem;
    height: 100%;
    inset: 0 -1px auto auto;
    inset: 0 -0.05556rem auto auto;
  }
}
.error__content {
  padding: 80px;
  padding: 4.44444rem;
}
@media all and (min-width: 1280px) {
  .error__content {
    padding: 0 160px;
    padding: 0 8.88889rem;
  }
}
.error__title, .error__text {
  color: #fff;
}

#map_canvas {
  width: 100%;
  height: 600px;
  height: 33.33333rem;
  margin-bottom: 50px;
  margin-bottom: 2.77778rem;
}

:root {
  --login-bg: var(--color_gray-dark);
  --login-link-color: #fff;
  --login-link-color-hover: var(--color_secondary);
  --login-text-color: #fff;
  --login-input-border: #b3b3b3;
  --login-input-border-hover: var(--color_gray-dark);
  --login-placeholder-color: #333;
  --login-submit-button-bg: var(--color_primary);
  --login-submit-button-bg-hover: var(--color_gray-dark);
  --login-submit-button-text-color: #fff;
  --login-submit-button-text-color-hover: #fff;
  --login-card-bg: #484B4E;
  --login-alert-bg: #fff;
  --login-logo-bg: transparent;
}

.authenticate {
  width: 100%;
  max-width: 100%;
  margin: 0;
  background-color: var(--login-bg);
}
.authenticate::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  background-color: var(--login-bg);
}

/*  ========================================
 Login Form
 ======================================== */
.login-form {
  position: relative;
  z-index: 1;
}
.login-form__logo {
  max-width: 450px;
  max-width: 25rem;
  padding: 40px;
  padding: 2.22222rem;
  margin: 0 auto 30px;
  margin: 0 auto 1.66667rem;
  text-align: center;
}
.login-form__container {
  width: 100%;
  max-width: 450px;
  max-width: 25rem;
  padding: 32px 26px 24px;
  padding: 1.77778rem 1.44444rem 1.33333rem;
  margin: 0 auto 30px;
  margin: 0 auto 1.66667rem;
  overflow: hidden;
  background: var(--login-card-bg);
  border: 5px solid var(--login-input-border);
  border: 0.27778rem solid var(--login-input-border);
}
.login-form__logi-img {
  height: auto;
  max-width: 251px;
  max-width: 13.94444rem;
  margin: auto;
}
.login-form__alert {
  width: 100%;
  max-width: 450px;
  max-width: 25rem;
  padding: 10px 20px;
  padding: 0.55556rem 1.11111rem;
  margin: 0 auto 10px;
  margin: 0 auto 0.55556rem;
  overflow: hidden;
  background: var(--login-alert-bg);
}
.login-form__group {
  margin-bottom: 10px;
  margin-bottom: 0.55556rem;
}
.login-form__input {
  width: 100%;
  height: auto;
  padding: 15px 22px;
  padding: 0.83333rem 1.22222rem;
  font-size: 24px;
  font-size: 1.33333rem;
  border: 2px solid var(--login-input-border);
  border: 0.11111rem solid var(--login-input-border);
}
.login-form__input::-webkit-input-placeholder {
  font-size: 24px;
  font-size: 1.33333rem;
  font-weight: 700;
  color: var(--login-placeholder-color);
  opacity: 0.5;
}
.login-form__input::-moz-placeholder {
  font-size: 24px;
  font-size: 1.33333rem;
  font-weight: 700;
  color: var(--login-placeholder-color);
  opacity: 0.5;
}
.login-form__input:-ms-input-placeholder {
  font-size: 24px;
  font-size: 1.33333rem;
  font-weight: 700;
  color: var(--login-placeholder-color);
  opacity: 0.5;
}
.login-form__input::-ms-input-placeholder {
  font-size: 24px;
  font-size: 1.33333rem;
  font-weight: 700;
  color: var(--login-placeholder-color);
  opacity: 0.5;
}
.login-form__input::placeholder {
  font-size: 24px;
  font-size: 1.33333rem;
  font-weight: 700;
  color: var(--login-placeholder-color);
  opacity: 0.5;
}
.login-form__input:hover, .login-form__input:focus {
  outline: 0;
  border-color: var(--login-input-border-hover);
}
.login-form__input:focus::-webkit-input-placeholder {
  opacity: 0.25;
}
.login-form__input:focus::-moz-placeholder {
  opacity: 0.25;
}
.login-form__input:focus:-ms-input-placeholder {
  opacity: 0.25;
}
.login-form__input:focus::-ms-input-placeholder {
  opacity: 0.25;
}
.login-form__input:focus::placeholder {
  opacity: 0.25;
}
.login-form__label {
  display: inline-block;
  font-size: 13px;
  font-size: 0.72222rem;
  font-weight: 700;
  line-height: 24px;
  line-height: 1.33333rem;
  color: var(--login-text-color);
}
.login-form__label--hidden {
  position: absolute;
  font-size: 0;
}
.login-form__checkbox input {
  width: 20px;
  width: 1.11111rem;
  height: 20px;
  height: 1.11111rem;
  cursor: pointer;
  background: #fff;
  border: 2px solid var(--login-input-border);
  border: 0.11111rem solid var(--login-input-border);
  vertical-align: middle;
  margin-right: 5px;
  margin-right: 0.27778rem;
}
.login-form__checkbox input:checked::before {
  content: "✓";
  position: relative;
  top: -2px;
  top: -0.11111rem;
  font-size: 19px;
  font-size: 1.05556rem;
  font-weight: bold;
  color: var(--color_primary);
}
.login-form__button {
  width: 100%;
  height: auto;
  padding: 13px 35px;
  padding: 0.72222rem 1.94444rem;
  font-size: 16px;
  font-size: 0.88889rem;
  letter-spacing: 1px;
  letter-spacing: 0.05556rem;
  color: var(--login-submit-button-text-color);
  text-transform: uppercase;
  cursor: pointer;
  background: var(--login-submit-button-bg);
  border: 0;
  margin-left: 0;
}
.login-form__button:hover, .login-form__button:focus {
  color: var(--login-submit-button-text-color-hover);
  background: var(--login-submit-button-bg-hover);
}
.login-form__cta {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  font-size: 18px;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 10px;
  margin-bottom: 0.55556rem;
}
.login-form__link {
  font-size: 13px;
  font-size: 0.72222rem;
  color: var(--login-link-color);
  text-decoration: underline;
  text-decoration: none;
  border: 0;
}
.login-form__link:visited {
  color: var(--login-link-color);
}
.login-form__link:hover, .login-form__link:focus {
  color: var(--login-link-color-hover);
}

/*
 ========================================
 Messages (Alerts)
 ======================================== */
/*
 ========================================
 Two-Factor Authentication
 ======================================== */
/*
 ========================================
 Password Reset
 ======================================== */
/*
 ========================================
 Password Update
 ======================================== */
/*
 ========================================
 Version Info
 ======================================== */
.version-info {
  display: block;
  text-align: center;
}
.version-info__link {
  font-size: 13px;
  font-size: 0.72222rem;
  color: var(--login-link-color);
  text-decoration: underline;
  text-decoration: none;
  border: 0;
}
.version-info__link:visited {
  color: var(--login-link-color);
}
.version-info__link:hover, .version-info__link:focus {
  color: var(--login-link-color-hover);
}

/*
 ========================================
 GDPR Overrides
 ======================================== */
.antilles-gdpr {
  position: relative;
  top: 10px;
  top: 0.55556rem;
  left: 50%;
  margin: 10px 0;
  margin: 0.55556rem 0;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
}

/*
  Overrides
*/
.il-courts #map_canvas {
  position: relative;
  display: none;
  left: 50%;
  width: 100vw;
  height: 800px !important;
  height: 44.44444rem !important;
  overflow: hidden;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media all and (width >= 800px) {
  .il-courts #map_canvas {
    display: block;
  }
}

.courts-modules-search {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.court-search {
  display: block;
  margin-bottom: 65px;
  margin-bottom: 3.61111rem;
}
@media all and (width >= 1280px) {
  .court-search {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }
}
.court-search .search {
  width: 100%;
  margin-bottom: 10px;
  margin-bottom: 0.55556rem;
}
@media all and (width >= 1280px) {
  .court-search .search {
    width: calc(50% - 10px);
    width: calc(50% - 0.55556rem);
    margin-right: 20px;
    margin-right: 1.11111rem;
    margin-bottom: 0;
  }
}
.court-search__input-group {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  background: var(--color_primary);
  border: 1px solid var(--color_gray-medium);
  border: 0.05556rem solid var(--color_gray-medium);
  border-radius: 5px;
  border-radius: 0.27778rem;
}
.court-search__input-group .court-details__button {
  width: 100%;
  padding: 0;
  text-align: center;
  font-size: 16px;
  font-size: 0.88889rem;
  text-transform: none;
  font-weight: 400;
}
.court-search__label {
  font-size: 14px;
  font-size: 0.77778rem;
  font-weight: bold;
}
.court-search__input, .court-search__select {
  width: 100%;
  padding: 12px 25px;
  padding: 0.66667rem 1.38889rem;
  font-size: 16px;
  font-size: 0.88889rem;
  line-height: 28px;
  line-height: 1.55556rem;
  color: #fff;
  background: transparent;
  border: 0;
}
.court-search__input::-webkit-input-placeholder, .court-search__select::-webkit-input-placeholder {
  font-size: 16px;
  font-size: 0.88889rem;
  font-weight: 400;
  line-height: 28px;
  line-height: 1.55556rem;
  color: #fff;
}
.court-search__input::-moz-placeholder, .court-search__select::-moz-placeholder {
  font-size: 16px;
  font-size: 0.88889rem;
  font-weight: 400;
  line-height: 28px;
  line-height: 1.55556rem;
  color: #fff;
}
.court-search__input:-ms-input-placeholder, .court-search__select:-ms-input-placeholder {
  font-size: 16px;
  font-size: 0.88889rem;
  font-weight: 400;
  line-height: 28px;
  line-height: 1.55556rem;
  color: #fff;
}
.court-search__input::-ms-input-placeholder, .court-search__select::-ms-input-placeholder {
  font-size: 16px;
  font-size: 0.88889rem;
  font-weight: 400;
  line-height: 28px;
  line-height: 1.55556rem;
  color: #fff;
}
.court-search__input::placeholder, .court-search__select::placeholder {
  font-size: 16px;
  font-size: 0.88889rem;
  font-weight: 400;
  line-height: 28px;
  line-height: 1.55556rem;
  color: #fff;
}
.court-search__select {
  padding: 12px 11px;
  padding: 0.66667rem 0.61111rem;
  cursor: pointer;
  background-image: url("/themes/atlas/assets/dist/images/_OSPS/svgs/icn-dd-select.svg");
  background-position: calc(100% - 11px) center;
  background-position: calc(100% - 0.61111rem) center;
  background-repeat: no-repeat;
  background-size: 18px 8px;
  background-size: 1rem 0.44444rem;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
@media all and (width >= 1280px) {
  .court-search__select {
    padding: 12px 25px;
    padding: 0.66667rem 1.38889rem;
    background-position: calc(100% - 20px) center;
    background-position: calc(100% - 1.11111rem) center;
  }
}
.court-search__select option {
  color: #000;
}
.court-search__button {
  display: inline-block;
  padding: 8px 12px;
  padding: 0.44444rem 0.66667rem;
  text-decoration: none;
  cursor: pointer;
  border-radius: 4px;
  border-radius: 0.22222rem;
}
.court-search__button--search {
  display: block;
  width: 45px;
  width: 2.5rem;
  height: 100%;
  font-size: 0;
  cursor: pointer;
  background: transparent url("/themes/Atlas/assets/dist/images/_OSPS/svgs/icn-court-search.svg") no-repeat center;
  border: 0;
}
.court-search__button--clear {
  display: block;
  width: 45px;
  width: 2.5rem;
  background: transparent url("/themes/Atlas/assets/dist/images/_OSPS/svgs/icn-clear.svg") no-repeat center;
  border: 0;
}
.court-search__filters {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 10px;
  gap: 0.55556rem;
}
@media all and (width >= 1280px) {
  .court-search__filters {
    -webkit-box-flex: 1;
    -webkit-flex: 1;
        -ms-flex: 1;
            flex: 1;
    gap: 20px;
    gap: 1.11111rem;
  }
}

.court-filters__type, .court-filters__filter {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
@media all and (width >= 1280px) {
  .court-filters__clear {
    max-width: 160px;
    max-width: 8.88889rem;
  }
}

.court-details__heading {
  font-size: 24px;
  font-size: 1.33333rem;
  font-weight: 500;
  line-height: 32px;
  line-height: 1.77778rem;
  color: #262626;
  margin-bottom: 20px;
  margin-bottom: 1.11111rem;
  text-transform: capitalize;
}
.court-details__location {
  padding: 0;
  margin: 0;
  list-style: none;
}
.court-details__location li {
  margin-bottom: 20px;
  margin-bottom: 1.11111rem;
}
.court-details__location li::before {
  content: none;
}
.court-details__phone {
  font-size: 18px;
  font-size: 1rem;
  font-weight: 600;
  line-height: 28px;
  line-height: 1.55556rem;
  color: #262626;
  text-decoration: none;
  cursor: pointer;
  border: 0;
}

.page-wrapper .emp-search .form-builder-section {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}
.page-wrapper .emp-search .form-builder-section input[type=text].emp-search__input {
  width: calc(100% - 80px);
  width: calc(100% - 4.44444rem);
  margin-right: 20px;
  margin-right: 1.11111rem;
}
.page-wrapper .emp-search__button {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 60px;
  width: 3.33333rem;
  height: 46px;
  height: 2.55556rem;
  color: var(--color_gray-dark);
  text-align: center;
  border: 2px solid var(--color_gray-dark);
  border: 0.11111rem solid var(--color_gray-dark);
  border-radius: 5px;
  border-radius: 0.27778rem;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 6px;
  margin-top: 0.33333rem;
}
.page-wrapper .emp-search__button:hover, .page-wrapper .emp-search__button:focus {
  color: #fff;
  background: var(--color_gray-dark);
}

.employees .employee .cta-card__image img {
  max-height: 350px;
  max-height: 19.44444rem;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top center;
     object-position: top center;
}

.employee-details .employee-banner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  max-height: 350px;
  max-height: 19.44444rem;
  overflow: hidden;
  background: var(--color_bg-light);
  border-radius: 5px;
  border-radius: 0.27778rem;
  margin-bottom: 40px;
  margin-bottom: 2.22222rem;
}
.employee-details .employee-banner img {
  height: 350px;
  height: 19.44444rem;
  margin-right: 50px;
  margin-right: 2.77778rem;
}
.employee-details .employee-banner__details {
  width: 100%;
  padding: 60px 0 80px;
  padding: 3.33333rem 0 4.44444rem;
}
.employee-details .employee-banner__details h2 {
  font-size: 45px;
  font-size: 2.5rem;
  margin-bottom: 15px;
  margin-bottom: 0.83333rem;
}
.employee-details .employee-banner__details .title {
  display: block;
  font-size: 24px;
  font-size: 1.33333rem;
  font-style: italic;
  margin-bottom: 10px;
  margin-bottom: 0.55556rem;
}
.employee-details .employee-banner__details .email,
.employee-details .employee-banner__details .phone {
  display: inline-block;
  margin-top: 5px;
  margin-top: 0.27778rem;
}

.procurement-opportunities {
  margin-bottom: 50px;
  margin-bottom: 2.77778rem;
}
@media all and (width >= 800px) {
  .procurement-opportunities {
    padding: 50px 56px;
    padding: 2.77778rem 3.11111rem;
    -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    -webkit-box-shadow: 0 0 0.55556rem rgba(0, 0, 0, 0.1);
            box-shadow: 0 0 0.55556rem rgba(0, 0, 0, 0.1);
  }
}

.procurement-filters__list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: auto;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  white-space: nowrap;
}
@media all and (width >= 800px) {
  .procurement-filters__list {
    width: 40%;
  }
}

main .block-container--error-page {
  position: absolute;
  top: 30px;
  top: 1.66667rem;
  padding: 0 20px;
  padding: 0 1.11111rem;
  font-stretch: condensed;
}
@media all and (width >= 1280px) {
  main .block-container--error-page {
    top: 67px;
    top: 3.72222rem;
  }
}
main .block-container--error-page h2.large {
  font-size: 42px;
  font-size: 2.33333rem;
  font-weight: 250;
  line-height: 44px;
  line-height: 2.44444rem;
  color: #FFF;
  text-align: center;
}
@media all and (width >= 1280px) {
  main .block-container--error-page h2.large {
    font-size: 83px;
    font-size: 4.61111rem;
    line-height: 85px;
    line-height: 4.72222rem;
  }
}
main .block-container--error-page p.large-text {
  font-size: 18px;
  font-size: 1rem;
  font-weight: 500;
  line-height: 20px;
  line-height: 1.11111rem;
  color: #FFF;
}
@media all and (width >= 1280px) {
  main .block-container--error-page p.large-text {
    font-size: 34px;
    font-size: 1.88889rem;
    line-height: 50px;
    line-height: 2.77778rem;
  }
}
@media all and (min-width: 800px) {
  body.page-not-found main {
    max-width: calc(100% - 240px);
    max-width: calc(100% - 13.33333rem);
  }
}
body.page-not-found main {
  max-width: calc(100% - 30px);
  max-width: calc(100% - 1.66667rem);
  margin: 0 auto;
}
body.page-not-found main .content-section {
  padding: 15px 0;
  padding: 0.83333rem 0;
}
@media all and (width >= 1280px) {
  body.page-not-found main .content-section {
    padding: 40px 0 100px;
    padding: 2.22222rem 0 5.55556rem;
  }
}

body.page-not-found h1 {
  display: none;
}

.il-courts.map .pin-description {
  padding-right: 70px;
  padding-right: 3.88889rem;
}
.il-courts.map .pin-description h2 {
  display: inline-block;
  font-family: var(--font_primary);
  font-size: 20px;
  font-size: 1.11111rem;
  font-weight: 600;
  line-height: 28px;
  line-height: 1.55556rem;
  color: #262626;
  text-transform: capitalize;
  margin-top: 0;
  margin-bottom: 15px;
  margin-bottom: 0.83333rem;
  border-bottom: 0;
  white-space: normal;
}
.il-courts.map .pin-description div div {
  font-family: var(--font_primary);
  font-size: 16px;
  font-size: 0.88889rem;
  font-weight: 400;
  line-height: 24px;
  line-height: 1.33333rem;
  color: var(--color_primary);
  margin-bottom: 10px;
  margin-bottom: 0.55556rem;
}
.il-courts.map .pin-description .level {
  font-family: var(--font_primary);
  font-weight: 500;
  color: #1a1818;
  padding-left: 0;
}
.il-courts.map .pin-description address {
  font-family: var(--font_primary);
  font-size: 16px;
  font-size: 0.88889rem;
  font-weight: 400;
  font-style: normal;
  line-height: 24px;
  line-height: 1.33333rem;
  color: #1a1a1a;
  color: var(--color_primary);
  margin-bottom: 20px;
  margin-bottom: 1.11111rem;
}
.il-courts.map .pin-description .phone {
  margin-bottom: 20px;
  margin-bottom: 1.11111rem;
}
.il-courts.map .pin-description .phone a {
  font-weight: 600;
  color: #1a1a1a;
  border: 0;
}
.il-courts.map .pin-description .website {
  margin-bottom: 30px;
  margin-bottom: 1.66667rem;
}
.il-courts.map .pin-description .website a {
  color: #1a1a1a;
}
.il-courts.map .pin-description .hours {
  display: none;
}
.il-courts.map .pin-description .btn-primary {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 180px;
  width: 10rem;
  height: 50px;
  height: 2.77778rem;
  font-family: var(--font_primary);
  font-size: 16px;
  font-size: 0.88889rem;
  font-weight: 400;
  line-height: 28px;
  line-height: 1.55556rem;
  letter-spacing: 0.8px;
  letter-spacing: 0.04444rem;
  color: #FFF;
  text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.5);
  text-shadow: 0.05556rem 0.05556rem 0.27778rem rgba(0, 0, 0, 0.5);
  text-transform: uppercase;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
}
.il-courts.map .courts-modules-search {
  margin-bottom: 0;
}
.il-courts.map .courts-list {
  margin-top: 40px;
  margin-top: 2.22222rem;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.il-courts.map .courts-list h2,
.il-courts.map .courts-list h2 a {
  font-family: var(--font_primary);
  font-weight: 500;
}
.il-courts.map ul.location .address strong {
  display: block;
}
.il-courts.map ul.location i {
  color: var(--color_gray-dark);
}
.il-courts.map .details-target__link {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 180px;
  width: 10rem;
  height: 50px;
  height: 2.77778rem;
  font-family: var(--font_primary);
  font-size: 16px;
  font-size: 0.88889rem;
  font-weight: 400;
  line-height: 28px;
  line-height: 1.55556rem;
  letter-spacing: 0.8px;
  letter-spacing: 0.04444rem;
  color: #FFF;
  text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.5);
  text-shadow: 0.05556rem 0.05556rem 0.27778rem rgba(0, 0, 0, 0.5);
  text-transform: uppercase;
  background: var(--color_primary);
  border-radius: 5px;
  border-radius: 0.27778rem;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
}
.il-courts.map .details-target__link:hover, .il-courts.map .details-target__link:focus {
  background: #1a1a1a;
}
.il-courts.map .gm-style-iw-chr {
  width: calc(100% + 80px);
  width: calc(100% + 4.44444rem);
  background: linear-gradient(98deg, #12243A 2.73%, #3F6DA7 100%);
  border-radius: 0 0 5px 5px;
  border-radius: 0 0 0.27778rem 0.27778rem;
  padding-right: 10px;
  padding-right: 0.55556rem;
  margin-left: -40px;
  margin-left: -2.22222rem;
  margin-bottom: 30px;
  margin-bottom: 1.66667rem;
}
.il-courts.map .gm-style-iw.gm-style-iw-c {
  width: 360px;
  width: 20rem;
  padding: 0 40px 20px !important;
  padding: 0 2.22222rem 1.11111rem !important;
  border-radius: 5px;
  border-radius: 0.27778rem;
}
.il-courts.map .gm-ui-hover-effect[type=button] {
  display: -webkit-box !important;
  display: -webkit-flex !important;
  display: -ms-flexbox !important;
  display: flex !important;
  background: transparent !important;
  opacity: 1;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.il-courts.map .gm-ui-hover-effect[type=button] > span {
  position: relative;
  top: 2px;
  top: 0.11111rem;
  right: 2px;
  right: 0.11111rem;
  width: 19px !important;
  width: 1.05556rem !important;
  height: 19px !important;
  height: 1.05556rem !important;
  margin: 0 !important;
  background-color: #fff;
  -webkit-mask-image: url('data:image/svg+xml,<svg width="19" height="19" viewBox="0 0 19 19" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M11.3689 9.50023L18.6133 2.25776C19.1289 1.742 19.1289 0.904503 18.6133 0.388853C18.0975 -0.126901 17.26 -0.126901 16.7444 0.388853L9.50023 7.63112L2.25776 0.386738C1.742 -0.128913 0.904503 -0.128913 0.388853 0.386738C-0.126901 0.902492 -0.126901 1.73999 0.388853 2.25564L7.63112 9.49977L0.386738 16.7422C-0.128913 17.258 -0.128913 18.0955 0.386738 18.6111C0.902492 19.1269 1.73999 19.1269 2.25564 18.6111L9.49977 11.3689L16.7422 18.6133C17.258 19.1289 18.0955 19.1289 18.6111 18.6133C19.1269 18.0975 19.1269 17.26 18.6111 16.7444L11.3689 9.50023Z" fill="white"/></svg>') !important;
          mask-image: url('data:image/svg+xml,<svg width="19" height="19" viewBox="0 0 19 19" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M11.3689 9.50023L18.6133 2.25776C19.1289 1.742 19.1289 0.904503 18.6133 0.388853C18.0975 -0.126901 17.26 -0.126901 16.7444 0.388853L9.50023 7.63112L2.25776 0.386738C1.742 -0.128913 0.904503 -0.128913 0.388853 0.386738C-0.126901 0.902492 -0.126901 1.73999 0.388853 2.25564L7.63112 9.49977L0.386738 16.7422C-0.128913 17.258 -0.128913 18.0955 0.386738 18.6111C0.902492 19.1269 1.73999 19.1269 2.25564 18.6111L9.49977 11.3689L16.7422 18.6133C17.258 19.1289 18.0955 19.1289 18.6111 18.6133C19.1269 18.0975 19.1269 17.26 18.6111 16.7444L11.3689 9.50023Z" fill="white"/></svg>') !important;
}
.il-courts.map .gm-ui-hover-effect[type=button]:hover > span, .il-courts.map .gm-ui-hover-effect[type=button]:focus > span {
  background-color: #fff;
}

@media all and (width >= 800px) {
  .courts-detail {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
  }
}
.courts-detail__image {
  width: 100%;
  margin-bottom: 30px;
  margin-bottom: 1.66667rem;
}
@media all and (width >= 800px) {
  .courts-detail__image {
    width: 360px;
    width: 20rem;
    min-width: 360px;
    min-width: 20rem;
    margin-right: 50px;
    margin-right: 2.77778rem;
  }
}
.courts-detail__image img {
  width: 100%;
}
.courts-detail__left {
  line-height: 26px;
  line-height: 1.44444rem;
}
.courts-detail__info {
  margin-bottom: 50px;
  margin-bottom: 2.77778rem;
}
@media all and (width >= 800px) {
  .courts-detail__info {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    gap: 100px;
    gap: 5.55556rem;
    width: calc(100% - 410px);
    width: calc(100% - 22.77778rem);
  }
}
.courts-detail__info strong {
  display: block;
  margin-top: 20px;
  margin-top: 1.11111rem;
}
.courts-detail__info strong:first-child {
  margin-top: 0;
}

.website {
  display: block;
  margin-bottom: 20px;
  margin-bottom: 1.11111rem;
}

.resources {
  margin: 0;
}

.resource-info {
  display: inline-block;
  vertical-align: top;
  width: calc(100% - 17px);
  width: calc(100% - 0.94444rem);
}