html, body {
  height: 100%;
}

.hero__logo, .hero__text, .page-header__content h1 {
  filter: drop-shadow( 2px 1px 3px rgba(0, 0, 0, .9));
  text-shadow: 2px 1px 3px rgba(0, 0, 0, 0.9);
}

body {
  display: flex;
  flex-direction: column;
  margin-bottom: 0 !important;
}
body > * {
  flex-shrink: 0;
}

a {
  color: #003DA5;
  color: var(--primary);
}
a:focus, a:hover {
  color: #001f53;
  color: var(--primary-hover);
}

details {
  margin-bottom: 1.5rem;
  padding: 15px;
  border: 1px solid rgba(0, 61, 165, 0.5);
  border-color: var(--primary);
}
details summary {
  color: #003DA5;
  color: var(--primary);
  font-family: Arial, sans-serif;
  font-size: 1.25rem;
  font-weight: bold;
}
details summary:focus, details summary:hover {
  color: var(--primary-hover);
}
details[open] summary {
  margin-bottom: 1.5rem;
}
details p:last-child, details ul:last-child, details ol:last-child {
  margin-bottom: 0.75rem;
}

.main-content {
  margin-top: 3rem;
}
.main-content > .container > :first-child {
  margin-top: 0;
}

/* Navigation Bar */
.navbar-light .navbar-nav .active > .nav-link,
.navbar-light .navbar-nav .nav-link {
  color: black;
}
.navbar-brand {
  padding-top: 7px;
  padding-bottom: 7px;
}
.navbar-brand--with-title {
  display: flex;
  align-items: center;
}
.navbar-brand__title {
  margin-left: 0.6rem;
  line-height: 1.1;
}
.navbar-brand__title:first-child {
  margin-left: 0;
}
.navbar-brand img {
  display: block;
  width: auto;
  height: 45px;
  max-width: 200px;
}

.dropdown:hover .dropdown-menu {
  display: block;
}

.dropdown-menu {
  margin-top: 0;
}

.overflow-right .dropdown-menu{
  right: .5rem;
  left: unset;
}

#site-footer {
  position: unset;
  flex: 1;
  height: unset;
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #5392ff;
  background-color: var(--primary-light);
  font-size: 0.875rem;
}
#site-footer a {
  font-weight: 600;
}
#site-footer .nav {
  flex-direction: column;
}
#site-footer .nav-link {
  margin-left: -1rem;
}
@media (min-width: 767px) {
  #site-footer .nav-link {
    margin-left: unset;
  }
}
#site-footer .nav-link:focus, #site-footer .nav-link:hover {
  background-color: rgba(0, 0, 0, 0.1);
  background-color: rgba(var(--primary-rgb), 0.1);
}
#site-footer .footer-logo img {
  width: 200px;
}
#site-footer .footer-logo--tribe {
  padding-top: 1.5rem;
  border-top: 1px solid rgba(0, 0, 0, 0.5);
}
@media (min-width: 767px) {
  #site-footer .footer-logo--tribe {
    padding-top: unset;
    border-top: unset;
    border-left: 1px solid rgba(0, 0, 0, 0.5);
    text-align: center;
  }
  #site-footer .footer-logo--tribe.border-right {
    border-right: 1px solid rgba(0, 0, 0, 0.5) !important;
  }
}
@media (min-width: 992px) {
  #site-footer .footer-logo {
    text-align: center;
  }
  #site-footer .footer-logo img {
    width: auto;
    max-height: 160px;
  }
  #site-footer .footer-logo--tribe img {
    width: 200px;
    max-height: unset;
  }
}
#site-footer .footer-text--fine-print {
  font-style: italic;
}
@media (min-width: 767px) {
  #site-footer .footer-text--fine-print {
    text-align: center;
  }
}
#site-footer.footer-dark {
  background-color: #001f53;
  background-color: var(--primary-dark);
  color: white;
  font-weight: 300;
}
#site-footer.footer-dark a {
  color: white;
  font-weight: 500;
}
#site-footer.footer-dark .nav-link:focus,
#site-footer.footer-dark .nav-link:hover {
  background-color: rgba(255, 255, 255, 0.1);
}
#site-footer.footer-dark .footer-logo--tribe {
  border-color: rgba(255, 255, 255, 0.5);
}
#site-footer.footer-dark .footer-logo--tribe.border-right {
  border-right-color: rgba(255, 255, 255, 0.5) !important;
}
#site-footer .social-links a {
  display: inline-block;
  margin-right: 0.5rem;
}

.h1, .h2, .h3, .h4, .h5, .h6,
h1, h2, h3, h4, h5, h6 {
  font-family: "Montserrat", Arial, sans-serif;
  font-weight: bold;
  margin-bottom: 1.5rem;
  letter-spacing: -0.0125em;
}

.h2, h2 {
  margin-top: 3rem;
}

.h3, h3 {
  font-size: 1.5rem;
  font-weight: bold;
}

p, address, blockquote, ul, ol {
  margin-bottom: 1.5rem;
}
p:last-child, address:last-child, blockquote:last-child, ul:last-child, ol:last-child {
  margin-bottom: 0;
}

.modular-row > .container > p:first-child {
  margin-top: 3rem;
}

.btn-primary {
  background-color: #003DA5;
  background-color: var(--primary);
  border-color: #003DA5;
  border-color: var(--primary);
}
.btn-primary:focus, .btn-primary:hover {
  background-color: #002a72;
  background-color: var(--primary-hover);
  border-color: #002a72;
  border-color: var(--primary-hover);
}

.btn-outline-light:hover {
  color: #003DA5;
  color: var(--primary);
}

.header .btn:focus {
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

.header .btn-outline-light {
  border: 1px solid #f8f9fa;
}
.header .btn-outline-light:focus {
  box-shadow: 0 0 0 0.2rem rgba(248, 249, 250, 0.5);
  color: #f8f9fa;
}

.callout {
  padding: 0;
  background-color: transparent;
}
.callout .container h2 {
  padding-top: 0;
}
.callout .container :last-child {
  margin-bottom: 0;
}

.client-showcase__list {
  padding-left: 0;
  list-style-type: none;
}
.client-showcase__list-item {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 1.5rem;
}

.features {
  position: relative;
  padding: 1rem;
  background-color: #003DA5;
  background-color: var(--primary);
  color: white;
}
.features .row {
  flex-direction: column;
}
@media (min-width: 576px) {
  .features .row {
    flex-direction: row;
  }
}
.features .feature-items--grid .row {
  flex-direction: row;
}
@media (min-width: 576px) and (max-width: 767px) {
  .features .feature-items--grid .feature {
    flex-direction: row;
    text-align: left;
  }
  .features .feature-items--grid .feature__content {
    margin-top: 0;
  }
  .features .feature-items--grid .feature .las {
    margin-right: 0.5rem;
  }
}

.feature {
  color: white;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 15px;
  padding-bottom: 15px;
  text-align: center;
}
.feature .las {
  font-size: 3rem;
}
.feature__content {
  margin-top: 0.5rem;
}
.feature--linked:focus, .feature--linked:hover {
  background-color: rgba(255, 255, 255, 0.1);
  color: white;
  text-decoration: none;
}
.feature :last-child {
  margin-bottom: 0;
}

.gallery .nav {
  margin-bottom: 1.5rem;
}
.gallery .nav-item {
  margin-bottom: 1rem;
}
.gallery .nav-link {
  height: 100%;
  padding: 0;
  padding-bottom: 1rem;
  border-bottom: 1px solid #ccc;
}
.gallery .nav-link.active {
  border-color: #001f53;
  border-color: var(--primary-dark);
  color: #001f53;
  color: var(--primary-dark);
}
.gallery .nav-link img, .gallery .nav-link svg {
  display: block;
}
.gallery .nav-link h3 {
  margin-bottom: 0;
}
.gallery .nav-link p {
  font-style: italic;
}
@media (max-width: 575px) {
  .gallery .nav-link img, .gallery .nav-link svg {
    display: none;
  }
  .gallery .nav-link h3 {
    font-size: 1.25rem;
  }
  .gallery .nav-link p {
    font-size: 0.875rem;
  }
}
@media (min-width: 576px) {
  .gallery .nav-item {
    margin-bottom: unset;
  }
  .gallery .nav-link {
    padding-bottom: 1.5rem;
  }
  .gallery .nav-link img, .gallery .nav-link svg {
    margin-bottom: 1.5rem;
  }
}

.hero {
  position: relative;
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #001f53;
  background-color: var(--primary-dark);
  background-image: none;
  color: white;
}
.hero .image-box {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.hero .image-box img {
  width: 100%;
  height: auto;
  min-height: 105%;
  object-fit: cover;
}
.hero::before {
  content: "";
  position: absolute;
  z-index: 1;
  top: 2rem;
  bottom: 2rem;
  width: 100%;
  background-color: inherit;
  opacity: 0.7;
}
.hero .overlay-box > :first-child {
  position: relative;
  z-index: 2;
  padding-top: 2rem;
  padding-bottom: 2rem;
}
.hero .overlay-box > :first-child img {
  max-height: 120px;
}
.hero .overlay-box > :first-child .hero__inline-image img {
  max-height: none;
}
@media (min-width: 576px) {
  .hero {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }
  .hero::before {
    top: 4rem;
    bottom: 4rem;
  }
  .hero .overlay-box > :first-child {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }
  .hero .overlay-box > :first-child img {
    max-height: 200px;
  }
}
@media (min-width: 1200px) {
  .hero .overlay-box > :first-child {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }
  .hero .btn-primary {
    margin-bottom: -2rem;
  }
}
.hero.hero-fullscreen,
.hero.hero-large,
.hero.hero-medium,
.hero.hero-small,
.hero.hero-tiny {
  height: auto;
}
.hero.hero-fullscreen .overlay-box > :first-child,
.hero.hero-large .overlay-box > :first-child,
.hero.hero-medium .overlay-box > :first-child,
.hero.hero-small .overlay-box > :first-child,
.hero.hero-tiny .overlay-box > :first-child {
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.hero.hero-fullscreen {
  min-height: 100vh;
}
.hero.hero-large {
  min-height: 500px;
}
.hero.hero-medium {
  min-height: 400px;
}
.hero.hero-small {
  min-height: 110px;
}
.hero.hero-tiny {
  min-height: 8rem;
}

.page-header {
  position: relative;
  width: 100%;
  background-color: #001f53;
  background-color: var(--primary-dark);
}
.page-header::before {
  content: "";
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background-color: inherit;
  opacity: 0.7;
}
.page-header__image {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.page-header__image img {
  width: 100%;
  height: auto;
  min-height: 105%;
  object-fit: cover;
}
.page-header__content {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding-top: 2rem;
  padding-bottom: 2rem;
  color: white;
  text-align: center;
  z-index: 2;
}
.page-header__content > * {
  position: relative;
  z-index: 1;
}
@media (min-width: 576px) {
  .page-header__content {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }
}
.page-header h1 {
  font-size: 2.75rem;
  color: white;
  margin-bottom: 0;
}
@media (min-width: 576px) {
  .page-header h1 {
    font-size: 3.75rem;
  }
}

.home-page .hero__logo {
  border-bottom: 1px solid white;
  padding-bottom: 2rem;
}
@media (min-width: 992px) {
  .home-page .hero__logo {
    display: flex;
    align-items: center;
    padding-right: 30px;
    margin-bottom: unset;
    padding-bottom: unset;
    border-right: 1px solid white;
    border-bottom: unset;
  }
}
.home-page .hero__text {
  align-items: center;
  padding-top: 2rem;
  padding-bottom: 1rem;
}
.home-page .hero__text p {
  margin-bottom: 0.5rem;
  font-size: 1.25rem;
  font-weight: 400;
}
.home-page .hero__text--short p {
  font-size: 1.5rem;
  font-family: Arial, sans-serif;
  font-weight: bold;
  letter-spacing: -0.0125em;
  line-height: 1.2;
}
.home-page .hero__text--short p:last-child {
  margin-top: 0;
  margin-bottom: 0 !important;
  color: #f0f0f0;
  font-size: 2.5rem;
  line-height: 1;
}
.leadership__name {
  font-size: .92rem;
}
.leadership__title {
  font-size: .72rem;
  font-style: normal;
}

@media (min-width: 992px) {
  .leadership__name {
    font-size: 1.15rem;
  }
  .leadership__title {
    font-size: .90rem;
    font-style: italic;
  }
  
  .home-page .hero__text {
    padding-left: 30px;
    padding-right: 30px;
  }
  .home-page .hero__text p {
    text-align: left;
  }
  .home-page .hero__text--short {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .home-page .hero__text--short p {
    text-align: center;
  }
  .home-page .hero__text--short p:last-child {
    font-size: 3.75rem;
  }
}
@media (min-width: 1200px) {
  .home-page .hero__text p {
    font-size: 1.5rem;
  }
}
.home-page .hero h1 {
  width: 100%;
  margin-bottom: 0;
}

.news-item .content {
  padding: 3rem;
}

.blog-image img {
  width: 100%;
}

.news-item-list img {
  width: 100%;
}

.cta-btn {
  background-color: #0A2B56 !important;
  color: #fff;
  text-transform: uppercase;
  font-size: 14px;
  padding: 6px 10px;
  line-height: 40px;
  font-weight: bold;
}

.cta-btn:hover {
  background-color: #DB363D !important;
  color: #fff;
  text-decoration: none;
}

.news-article__image {
  float: right;
  max-width: 30%;
}
.news-article__image img {
  width: 100%;
  padding: 1.5rem;
}

.list-blog-date {
  color: grey;
}

.news-article {
  padding: 1.5rem;
}

.news-article__content img:nth-of-type(odd) {
  max-width: 30%;
  float: left;
  padding: 1.5rem;
}

.news-article__content img:nth-of-type(even) {
  max-width: 30%;
  float: right;
  padding: 1.5rem;
}

.wide-logo img {
  max-width: none !important;
}

/*# sourceMappingURL=pci.css.map */

/* ---- EMPLOYEE HUB ---- */

.grav-video {
  position: relative;
    overflow: hidden;
    height: 0;
    padding-top: 30px;
    padding-bottom: 60%;
    margin-bottom: 10px;
    max-width: 1920px;
    max-height: 1080px;
}

.grav-video iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.merchCode {
  margin-bottom: 10px;
}

.merchCode h3 {
  margin: 0;
}

.hubLinksContainer .media img {
  /*max-width: 40px;*/
}

.hub h1, .hub h2, .hub h3, .hub h4 {
  font-family: "Montserrat", sans-serif;
}


.hub h1 {  
  font-optical-sizing: auto;
  color: black;
  text-transform: uppercase;
  font-size: 1.3rem;
  font-weight: 300;
  font-style: normal;
}
.hub h2 {
  font-size: 1.2rem;
  font-weight: 500;
}

.hub h3 {

}


.line-heading {
  position: relative;
  text-align: center;
}

.line-heading:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0px;
  width: 100%;
  height: 1px;
  background: #222;
}
.line-heading h1 {
  position: relative;
  display: inline-block;
  padding: 10px 20px;
  z-index: 9;
}

.hubNewsItem h3 {
  font-weight: 400;
}

.hubNewsItem .date, .hubNewsItem .link {
  font-size: 0.85rem;
  color: #555555
}

/* --- HERO (VIDEO) --- */

.hero-video::before {
  content: "";
  position: absolute;
  z-index: 1;
  top: 0rem;
  bottom: 0rem;
  width: 100%;
  background-color: black;
  opacity: 0.0;
}


.video-background-holder {
  position: relative;
  background-color: black;
  height: 17rem;
  width: 100%;
  overflow: hidden;
}
@media (min-width: 767px) {
  .video-background-holder {
    height: 30rem;
  } 
  
}

@media (min-width: 1200px) {
  .video-background-holder {
    height: 40rem;
  }
}
.video-background {
  width: 100%
}

.video-background video {
  width: 100%;
  height: auto;
}

.video-background-holder video {
  position: absolute;
  top: 50%;
  left: 0%;
  min-width: 100%;
  min-height: 100%;
  width: 100%;
  height: auto;
  z-index: 0;
  -ms-transform: translateX(0%) translateY(-50%);
  -moz-transform: translateX(0%) translateY(-50%);
  -webkit-transform: translateX(0%) translateY(-50%);
  transform: translateX(0%) translateY(-50%);
}

.video-background-content {
  position: relative;
  z-index: 2;
}

.video-background-overlay {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: black;
  opacity: 0;
  z-index: 1;
}

@media (max-width: 767px) {
  h1.hero-text {
      font-size: 1.1em;
  }
}
h1.hero-text {
    position: absolute;
    bottom: 0;
    margin: 0;
    width: 100%;
    padding: 20px;
    background: black;
    opacity: 0.7;
}

/* --- (MOD) CLIENT QUOTES -- */
.z2 {
  z-index: 2;
}
#quotes-carousel {
  min-height: 230px;
}
.modular-row.client-quotes .carousel-indicators li {
  background-color: #fff !important;
}
.modular-row.client-quotes .carousel-indicators li.active {
  background-color: #000 !important;
}

.modular-row.client-quotes .cqb {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: -8em center;
    height: 100%;
    position: relative;
    top: -100%;
    width: 68%;
}

.mini-list li {
  font-size: .85em;
  font-weight: 300
}



  .benefits-table { 
    border: none;
    margin: 0 auto;
    border-spacing: 10px;
    overflow: visible;
  }
  @media all and (max-width: 991px) {
    .benefits-table {
      max-width: 100% !important;
    }
  }
  .benefits-table thead{
    width: 105%;
  }
  .benefits-table td {
    height: inherit;
    position: relative;
  }
  .benefits-table ul {
    margin-bottom: 0 !important;
    padding: 0px;
  }
  .benefits-table tr td:nth-of-type(2) {
    padding-left: 30px;
    font-size: .87rem;
  }
  .benefits-table td:nth-of-type(2) hr {
    background-color: var(--primary);
  }
  .benefits-table hr {
    border-top: none;
    position: absolute;
    height: 2px;
    width: 98%;
    bottom: 0px;
    left: 0px;
    margin: 0 auto !important;
    background-color: #3c3c3c;
    border-width: 2px;
    opacity: 100% !important;
  }
  .benefits-table p {
    margin-bottom: 0 !important;
    margin: 0 auto;
  }
  .benefits-table th {
    color: #fff;
    text-transform: uppercase;
    background-color: #3c3c3c;
    border: none !important;
    font-size: 1.8rem;
    line-height: 2.5rem;
    font-weight: 900;
    letter-spacing: 2px;
    padding: 12px;
    text-shadow: 2px 1px 3px rgba(0, 0, 0, 0.9);
  }
  .benefits-table th:nth-of-type(2) {
    position: relative;
    background-color: var(--primary);
  }
  .benefits-table th:nth-of-type(2)::before {
    width: 30px;
    height: 100%;
    clip-path: polygon(100% 0, 0% 100%, 100% 100%);
    position: absolute;
    top: 0;
    left: -29px;
    content:" ";
    background-color: var(--primary);
  }
  .benefits-table td, .benefits-table th {  
    text-align:center;
    width: 50%;
    border: 0;
  }
  /* [benefits-table align="left" /]. Used by /capabilities/oasis, which
     previously carried its own copy of this whole block inline just to flip
     this one declaration. */
  .benefits-table--left td, .benefits-table--left th {
    text-align: left;
  }
  .benefits-table tr td:nth-of-type(2) {  
    text-align:left;
  }
  .benefits-table td:first-of-type {
    font-size: 1.4rem;
    font-weight: 400;
  }
#benefits h2, #benefits h3 {
    font-size: 11px;
    background: rgba(0,0,0, 0.050);
    text-shadow: 2px 1px 3px rgba(0, 0, 0, 0.30);
    vertical-align: middle;
    color: #fff;
    line-height: 25px;
    margin: 0;
    margin-top: 0;
    margin-bottom: 0;
    text-transform: uppercase;
    border-radius: 10px 10px 0 0;
    padding: 5px 10px;
}
#benefits .heading-container {
  background-color: #3c3c3c; 
  position: absolute;
  top: -25px;
  height: 25px;
  border-bottom: 0;
  border-radius: 10px 10px 0 0;
}
#benefits ul {
  list-style-type: circle;
}
div#benefits {
  margin-top: 10px;
  margin-bottom: 10px;
}
div#benefits.tabbed {
  margin-top: 35px;
}

.border-primary {
    border-color: var(--primary) !important;
}
.border-primary-dark {
    border-color: var(--primary-dark) !important;
}

/* Reduced motion (WCAG 2.2.2 / 2.3.3). Mirrors scss/base/_base.scss — see the
   note there. Rellax is gated in JS instead, since it writes inline transforms.
   pci.css loads after theme.css, so this block wins without extra specificity
   beyond the !important each declaration needs to beat inline styles. */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-delay: 0s !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    transition-delay: 0s !important;
    scroll-behavior: auto !important;
  }
}
