html, body {
  height: 100%;
}

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

a {
  color: #bf2f38;
  color: var(--bs-primary);
}
a:focus, a:hover {
  color: #96252c;
  color: var(--pcifs-primary-hover);
}

.text-light a, .text-white a {
  color: #fff;
}
.text-light a:focus, .text-light a:hover, .text-white a:focus, .text-white a:hover {
  color: #fff;
}

.modular-hero__content img {
    filter: drop-shadow(2px 1px 3px rgba(0,0,0,.9));
    text-shadow: 2px 1px 3px rgba(0,0,0,.9);
}

details {
  margin-bottom: 1.5rem;
  padding: 15px;
  border: 1px solid #d34e56;
  border-color: var(--pcifs-primary-outline);
}

details summary {
  color: #bf2f38;
  color: var(--bs-primary);
  font-family: Arial, sans-serif;
  font-size: 1.25rem;
  font-weight: bold;
}

details summary:focus, details summary:hover {
  color: var(--pcifs-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;
}

.navbar-light {
  background-color: white;
}

.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 img {
  display: block;
  width: auto;
  height: 45px;
  max-width: 240px;
}

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

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

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

.company-logo {
  max-width: 30%;
  margin-top: 1rem;
  margin-bottom: 2rem;
}

#body-container {
  padding-bottom: 2rem;
}
#body-container h3 {
  font-family: Arial, sans-serif;
  font-weight: bold;
  text-transform: uppercase;
  color: #bb7432;
}
#body-container a {
  color: #007bff;
  text-decoration: none;
  background-color: transparent;
}

#contact-container {
  max-width: 90ch;
  padding-top: 3rem;
  padding-bottom: 3rem;
  padding-left: 2rem;
  padding-right: 2rem;
}
#contact-container .row {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  padding-bottom: 3rem;
}

.contact-logo {
  width: 70%;
  margin-top: 2rem;
  margin-bottom: 2rem;
  padding-left: 1rem;
  padding-right: 3rem;
}

.line-contact {
  border-left: 1px solid;
  height: 90%;
  margin-left: 1rem;
}

.company-page #body-container ul {
  padding-bottom: 2rem;
}

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

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

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

.h4, h4 {
  color: #bb7432;
  color: var(--bs-secondary);
}

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;
}

.btn-primary {
  background-color: #bf2f38;
  background-color: var(--bs-primary);
  border-color: #bf2f38;
  border-color: var(--bs-primary);
}
.btn-primary:focus, .btn-primary:hover {
  background-color: #96252c;
  background-color: var(--pcifs-primary-hover);
  border-color: #96252c;
  border-color: var(--pcifs-primary-hover);
}
.btn-primary:focus {
  box-shadow: 0 0 0 0.25rem #dd777d;
  box-shadow: 0 0 0 0.25rem var(--pcifs-primary-outline);
}

.text-white .btn-outline-light:hover,
.text-light .btn-outline-light:hover,
.btn-outline-light:hover {
  color: #bf2f38;
  color: var(--bs-primary);
}

.modular-hero {
  position: relative;
  padding-top: 2rem;
  padding-bottom: 2rem;
}
.modular-hero::before {
  content: "";
  position: absolute;
  z-index: 1;
  top: 2rem;
  bottom: 2rem;
  width: 100%;
  background-color: inherit;
  opacity: 0.7;
}
.modular-hero__background-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;
}
.modular-hero__background-image img {
  width: 100%;
  height: auto;
  min-height: 105%;
  object-fit: cover;
}
.modular-hero__content > :first-child {
  position: relative;
  z-index: 2;
  padding-top: 2rem;
  padding-bottom: 2rem;
}
.modular-hero__content > :first-child img {
  max-height: 120px;
}
.modular-hero--cover {
  padding-top: 0;
  padding-bottom: 0;
}
.modular-hero--cover::before {
  top: 0;
  bottom: 0;
}
@media (min-width: 576px) {
  .modular-hero {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }
  .modular-hero::before {
    top: 4rem;
    bottom: 4rem;
  }
  .modular-hero__content > :first-child {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }
  .modular-hero__content > :first-child img {
    max-height: 200px;
  }
  .modular-hero--cover {
    padding-top: 0;
    padding-bottom: 0;
  }
  .modular-hero--cover::before {
    top: 0;
    bottom: 0;
  }
}
@media (min-width: 1200px) {
  .modular-hero__content > :first-child {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }
  .modular-hero .btn-primary {
    margin-bottom: -2rem;
  }
}

.page-header__image img {
  object-fit: cover;
  height: 15vh;
  width: 100%;
}
.page-header__content {
  padding-top: 1rem;
  padding-bottom: 1rem;
  border-bottom: 10px solid #bb7432;
}
.page-header h1 {
  margin: 0;
  text-transform: uppercase;
}

.page-home .modular-logos {
  padding-top: 2rem;
  padding-bottom: 1rem;
}
.page-home .modular-logos img {
  max-height: 45px;
}
.page-home .modular-logos__list {
  align-items: center;
}
.page-home .modular-logos__list-item {
  margin-bottom: 1rem;
  text-align: center;
}
@media (min-width: 1200px) {
  .page-home .modular-logos {
    padding-top: 1rem;
  }
  .page-home .modular-logos__list-item {
    margin-bottom: 0;
  }
  .page-home .modular-logos__list-item--wide {
    flex-grow: 1.75;
    max-width: 14.5833333275%;
  }
}
.page-home .logo-lead-text {
  padding-top: 2rem;
  padding-bottom: 2rem;
  border-bottom: 10px solid #bb7432;
  border-bottom: 10px solid var(--bs-secondary);
  font-size: x-large;
  text-align: center;
}
.page-home .watermark > .container {
  max-width: 90ch;
  padding: 3rem 2rem 4.5rem;
}

.blog-item {
  padding-bottom: 3rem;
}

.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: #bf2f38 !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;
}

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