@font-face {
  font-family: "Inter var";
  src: url("../fonts/inter.woff2") format("woff2");
  font-weight: 1 999;
  font-style: normal;
  font-display: swap;
  -webkit-font-smoothing: antialiased;
}
@font-face {
  font-family: "Crimson Pro";
  src: url("../fonts/CrimsonPro-VariableFont_wght.woff2") format("woff2");
  font-weight: 1 999;
  font-style: normal;
  font-display: swap;
  -webkit-font-smoothing: antialiased;
}
@font-face {
  font-family: "Crimson Pro";
  src: url("../fonts/CrimsonPro-Italic-VariableFont_wght.woff2") format("woff2");
  font-weight: 1 999;
  font-style: italic;
  font-display: swap;
  -webkit-font-smoothing: antialiased;
}
@font-face {
  font-family: "Din Pro";
  src: url("../fonts/DINPro-Light.woff2") format("woff2");
  font-weight: 200;
  font-style: normal;
  font-display: swap;
  -webkit-font-smoothing: antialiased;
}
@font-face {
  font-family: "Din Pro";
  src: url("../fonts/DINPro-LightItalic.woff2") format("woff2");
  font-weight: 200;
  font-style: italic;
  font-display: swap;
  -webkit-font-smoothing: antialiased;
}
@font-face {
  font-family: "Din Pro";
  src: url("../fonts/DINPro.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
  -webkit-font-smoothing: antialiased;
}
@font-face {
  font-family: "Din Pro";
  src: url("../fonts/DINPro-Italic.woff2") format("woff2");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
  -webkit-font-smoothing: antialiased;
}
@font-face {
  font-family: "Din Pro";
  src: url("../fonts/DINPro-Bold.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
  -webkit-font-smoothing: antialiased;
}
@font-face {
  font-family: "Din Pro";
  src: url("../fonts/DINPro-BoldItalic.woff2") format("woff2");
  font-weight: 600;
  font-style: italic;
  font-display: swap;
  -webkit-font-smoothing: antialiased;
}
@font-face {
  font-family: "Hemic Icons";
  src: url("../fonts/Hemic-Icons.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
  -webkit-font-smoothing: antialiased;
}
[class*=icon-]:before {
  display: inline-block;
  vertical-align: middle;
  font-family: "Hemic Icons";
  font-style: normal;
  font-weight: normal;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.icon-arrow-down:before {
  content: "A";
}

.icon-arrow-left:before {
  content: "B";
}

.icon-arrow-right:before {
  content: "C";
}

.icon-arrow-up:before {
  content: "D";
}

.icon-lock:before {
  content: "E";
}

.icon-search:before {
  content: "F";
}

.icon-phone:before {
  content: "H";
}

.icon-facebook:before {
  content: "I";
}

.icon-twitter:before {
  content: "J";
}

.icon-youtube:before {
  content: "K";
}

.icon-linkedin:before {
  content: "L";
}

.icon-envelope-open:before {
  content: "M";
}

.icon-envelope-closed:before {
  content: "N";
}

.icon-location:before {
  content: "O";
}

.icon-menu:before {
  content: "P";
}

.icon-external-link:before {
  content: "Q";
}

.icon-checkmark:before {
  content: "R";
}

.icon-close:before {
  content: "S";
}

.icon-doc-icon:before {
  content: "T";
}

.icon-docx-icon:before {
  content: "T";
}

.icon-pdf-icon:before {
  content: "U";
}

.icon-link:before {
  content: "V";
}

.grid-item {
  border: 1px solid white;
  background-color: #717171;
  padding: 1rem;
  min-height: 300px;
}

.grid-item.tall {
  min-height: 600px;
}

.fixed-content {
  position: fixed;
}

.sticky-content {
  position: sticky;
  top: 0;
}

.text-center {
  text-align: center;
}

.sr-only {
  position: absolute;
  left: -10000px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.btn-dark-blue {
  border-radius: 9999px;
  padding: 0.5rem 1.5rem;
  cursor: pointer;
  text-decoration: none;
  font-family: "Din Pro";
  font-size: 1em;
  font-weight: 400;
  color: white;
  background-color: #0E1D6F;
  border: 1px solid #0E1D6F;
  transition: background-color 0.2s ease-in, color 0.2s ease-in;
}
.btn-dark-blue > i[class*=icon-]:first-child {
  margin-right: 0.4rem;
}
.btn-dark-blue:visited {
  color: white;
}
.btn-dark-blue:hover {
  color: #0E1D6F;
  background-color: transparent;
}
@media (max-width: 768px) {
  .btn-dark-blue:hover {
    color: white;
    background-color: #0E1D6F;
  }
}

.btn-white-outline {
  border-radius: 9999px;
  padding: 0.5rem 1.5rem;
  cursor: pointer;
  text-decoration: none;
  font-family: "Din Pro";
  font-size: 1em;
  font-weight: 400;
  color: white;
  border: 1px solid white;
  transition: background-color 0.2s ease-in, border-color 0.2s ease-in, color 0.2s ease-in;
}
.btn-white-outline > i[class*=icon-]:first-child {
  margin-right: 0.4rem;
}
.btn-white-outline:visited {
  color: white;
}
.btn-white-outline:hover {
  background-color: rgba(255, 255, 255, 0.1);
  color: white;
}
@media (max-width: 768px) {
  .btn-white-outline:hover {
    color: white;
    background-color: transparent;
  }
}

.btn-dark-blue-outline {
  border-radius: 9999px;
  padding: 0.5rem 1.5rem;
  cursor: pointer;
  text-decoration: none;
  font-family: "Din Pro";
  font-size: 1em;
  font-weight: 400;
  color: #0E1D6F;
  border: 1px solid #0E1D6F;
  background-color: transparent;
  transition: background-color 0.2s ease-in, color 0.2s ease-in;
}
.btn-dark-blue-outline > i[class*=icon-]:first-child {
  margin-right: 0.4rem;
}
.btn-dark-blue-outline:visited {
  color: #0E1D6F;
}
.btn-dark-blue-outline:hover {
  color: white;
  background-color: #0E1D6F;
  border: 1px solid #0E1D6F;
}
.btn-dark-blue-outline :checked {
  color: white;
  background-color: #0E1D6F;
  border: 1px solid #0E1D6F;
}
@media (max-width: 768px) {
  .btn-dark-blue-outline:hover {
    color: #0E1D6F;
    border: 1px solid #0E1D6F;
    background-color: transparent;
  }
}

ul.link-list {
  list-style-type: none;
}
ul.link-list li a {
  text-decoration: none;
}
ul.link-list li a:hover {
  text-decoration: underline;
}

.hero-panel {
  position: relative;
  min-height: 480px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
.hero-panel .hero-panel-info-wrapper {
  position: absolute;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: stretch;
  bottom: 0;
  left: 0;
  width: 60%;
  color: white;
  background-color: rgba(83, 115, 9, 0.96);
}
@media only screen and (max-width: 1075px) {
  .hero-panel .hero-panel-info-wrapper {
    width: 100%;
  }
}
.hero-panel .hero-panel-info-wrapper .hero-panel-info {
  padding: 2rem;
}
.hero-panel .hero-panel-info-wrapper .hero-panel-info .eyebrow {
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 0.05rem;
  margin-bottom: 2rem;
}
.hero-panel .hero-panel-info-wrapper .hero-panel-info h1 {
  font-size: 2.2rem;
  font-weight: 400;
  line-height: 1;
}
.hero-panel .hero-panel-info-wrapper .kapa-bar {
  position: relative;
  bottom: 0;
  width: 100%;
}

.related-news-panel {
  background-color: #F8F6F2;
}
.related-news-panel .related-news-wrapper {
  position: relative;
  padding: 5rem 4rem 2rem;
  z-index: 1;
}
.related-news-panel .related-news-wrapper .related-news-title {
  font-size: 1.8rem;
  font-style: italic;
  font-weight: normal;
  text-align: center;
}
@media only screen and (max-width: 1075px) {
  .related-news-panel .related-news-wrapper .related-news-title {
    margin-bottom: 2rem;
  }
}
.related-news-panel .related-news-wrapper .related-news-cta {
  display: block;
  color: #0E1D6F;
  text-decoration: none;
  text-align: center;
  margin: 0.5rem 0 3.25rem;
}
@media only screen and (max-width: 1075px) {
  .related-news-panel .related-news-wrapper .carousel,
  .related-news-panel .related-news-wrapper .tns-outer,
  .related-news-panel .related-news-wrapper .prev-btn,
  .related-news-panel .related-news-wrapper .next-btn,
  .related-news-panel .related-news-wrapper .carousel-dots {
    display: none;
  }
}
.related-news-panel .related-news-wrapper .tns-outer {
  height: 370px;
}
.related-news-panel .related-news-wrapper .tns-outer .tns-ovh {
  height: 100%;
}
.related-news-panel .related-news-wrapper .kapa-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 500;
}
.related-news-panel .related-news-wrapper .listing-grid {
  display: none;
  grid-template-columns: 100%;
  gap: 1rem;
  margin-bottom: 2rem;
}
@media only screen and (max-width: 1075px) {
  .related-news-panel .related-news-wrapper .listing-grid {
    display: grid;
  }
}
.related-news-panel .related-news-wrapper .listing-grid .card-item {
  display: flex;
  flex-direction: row;
  flex: auto;
  color: initial;
  border-radius: 12px;
  text-decoration: none;
  box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.1882352941);
}
@media only screen and (max-width: 1075px) {
  .related-news-panel .related-news-wrapper .listing-grid .card-item {
    align-items: stretch;
    display: grid;
    grid-template-columns: 33.333% auto;
  }
}
.related-news-panel .related-news-wrapper .listing-grid .card-item:hover {
  box-shadow: 5px 9px 15px 4px rgba(0, 0, 0, 0.1882352941);
}
.related-news-panel .related-news-wrapper .listing-grid .card-item.featured {
  grid-column: auto;
  flex-direction: row;
}
.related-news-panel .related-news-wrapper .listing-grid .card-item.featured .card-image {
  width: 33.3333%;
  display: inline-block;
}
.related-news-panel .related-news-wrapper .listing-grid .card-item.featured .card-info {
  flex: 1 1 auto;
  border-top-right-radius: 12px;
  border-bottom-right-radius: 12px;
}
.related-news-panel .related-news-wrapper .listing-grid .card-item.featured .card-info .title {
  font-size: 1.2rem;
}
@media only screen and (max-width: 500px) {
  .related-news-panel .related-news-wrapper .listing-grid .card-item.featured .card-info .title {
    font-size: 0.9rem;
  }
}
.related-news-panel .related-news-wrapper .listing-grid .card-item .card-image {
  object-fit: cover;
  width: 33.3333%;
  display: inline-block;
  border-top-left-radius: 12px;
  border-bottom-left-radius: 12px;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
@media only screen and (max-width: 1075px) {
  .related-news-panel .related-news-wrapper .listing-grid .card-item .card-image {
    width: auto;
    height: auto;
  }
}
.related-news-panel .related-news-wrapper .listing-grid .card-item .card-info {
  flex: auto;
  background-color: white;
  padding: 2rem;
  border-bottom-right-radius: 12px;
  border-top-right-radius: 12px;
}
@media only screen and (max-width: 500px) {
  .related-news-panel .related-news-wrapper .listing-grid .card-item .card-info {
    padding: 1rem;
  }
}
.related-news-panel .related-news-wrapper .listing-grid .card-item .card-info .category {
  color: #717171;
  text-transform: uppercase;
  font-size: 0.8rem;
}
.related-news-panel .related-news-wrapper .listing-grid .card-item .card-info .title {
  font-size: 1.2rem;
  font-weight: 600;
  margin-top: 1rem;
}
@media only screen and (max-width: 500px) {
  .related-news-panel .related-news-wrapper .listing-grid .card-item .card-info .title {
    margin-top: 0.5rem;
    font-size: 0.9rem;
  }
}
.related-news-panel.no-slider .news-listing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
@media only screen and (max-width: 1075px) {
  .related-news-panel.no-slider .news-listing-grid {
    display: none;
  }
}
.related-news-panel.no-slider .card-item {
  display: flex;
  flex-direction: column;
  color: initial;
  border-radius: 12px;
  text-decoration: none;
  box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.1882352941);
  flex: auto;
  background: white;
}
.related-news-panel.no-slider .card-item:hover {
  box-shadow: 5px 9px 15px 4px rgba(0, 0, 0, 0.1882352941);
  transition: box-shadow 0.3s ease-in-out;
}
.related-news-panel.no-slider .card-item:hover .title {
  text-decoration: underline;
}
.related-news-panel.no-slider .card-item a {
  text-decoration: none;
}
.related-news-panel.no-slider .card-item img {
  width: 100%;
  border-radius: 12px 12px 0 0;
}
.related-news-panel.no-slider .card-item .slide-info {
  color: #0A0909;
  background-color: white;
  width: 100%;
  padding: 1.2rem 1.2rem 3rem;
  border-bottom-right-radius: 12px;
  border-bottom-left-radius: 12px;
}
.related-news-panel.no-slider .card-item .slide-info .category {
  color: #717171;
  text-transform: uppercase;
  font-size: 0.8rem;
}
.related-news-panel.no-slider .card-item .slide-info .title {
  margin-top: 1rem;
  font-size: 1.2rem;
  font-weight: 600;
}
.related-news-panel.no-slider .kapa-bar {
  position: relative;
  top: -14em;
}
@media only screen and (max-width: 1075px) {
  .related-news-panel.no-slider .kapa-bar {
    top: auto;
  }
}
.related-news-panel.no-slider + .testimonial-panel {
  margin-top: -14em;
  padding-top: 9em;
}
@media only screen and (max-width: 1075px) {
  .related-news-panel.no-slider + .testimonial-panel {
    margin-top: 0;
    padding-top: 2em;
  }
}

.news-details {
  background-color: #F8F6F2;
  padding: 4rem 4rem 8rem;
  background-image: url("/images/kapa-bar-brown.png");
  background-repeat: repeat-x;
  background-size: auto 75px;
  background-position: center bottom;
}
.news-details .news-detail-title {
  font-size: 2rem;
  font-weight: 400;
}
.news-details .post-info {
  margin-top: 1rem;
}
.news-details .post-info,
.news-details .tag-info {
  color: #717171;
}
.news-details .post-info a,
.news-details .tag-info a {
  color: #717171;
}
.news-details .news-detail-subtitle {
  margin-top: 2rem;
  font-size: 1.6rem;
  font-weight: 400;
  font-style: italic;
}
.news-details .news-content {
  margin-top: 2rem;
  font-size: 1.1rem;
  line-height: 1.6;
}
.news-details .news-content > * + * {
  margin-top: 2rem;
}
.news-details .news-content .image-caption {
  max-width: 768px;
}
.news-details .news-content .image-caption small {
  display: block;
  font-size: 0.8rem;
  margin-top: 0.25rem;
}
.news-details .news-actions {
  margin-top: 4rem;
  max-width: 400px;
}
@media only screen and (max-width: 1075px) {
  .news-details .news-actions {
    width: 100%;
  }
  .news-details .news-actions .btn-dark-blue-outline {
    display: block;
    margin-top: 1rem;
    padding: 1rem;
    width: 100%;
    text-align: center;
  }
}
.news-details .news-actions > .btn-dark-blue-outline + .btn-dark-blue-outline {
  margin-left: 0.5rem;
}
@media only screen and (max-width: 1075px) {
  .news-details .news-actions > .btn-dark-blue-outline + .btn-dark-blue-outline {
    margin-left: 0;
  }
}

/*# sourceMappingURL=news-details.css.map */
