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

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

.graphic-info-panel .graphic-info-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  padding: 2rem 4rem;
}
@media only screen and (max-width: 768px) {
  .graphic-info-panel .graphic-info-wrapper {
    grid-template-columns: 100%;
    gap: 0;
  }
}
.graphic-info-panel .graphic-info-wrapper .info-box-copy {
  margin-block: 1.2rem 2rem;
  padding: 0;
}
.graphic-info-panel .graphic-info-wrapper .info-box-copy li {
  position: relative;
  list-style: none;
  line-height: 1.4;
  margin-left: 30px;
}
.graphic-info-panel .graphic-info-wrapper .info-box-copy li:not(:last-child) {
  margin-bottom: 1rem;
}
.graphic-info-panel .graphic-info-wrapper .info-box-copy li:before {
  content: "R";
  font-family: "Hemic Icons";
  position: absolute;
  top: 3px;
  left: -30px;
  font-size: 0.9rem;
}
.graphic-info-panel .content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  font-size: 1.14em;
}
.graphic-info-panel .content .title {
  font-size: 3.5rem;
  line-height: 1;
  margin-top: 1.8rem;
  margin-bottom: 0.75em;
  font-weight: 400;
}
.graphic-info-panel .content .subtitle {
  font-weight: normal;
  font-size: 1.4rem;
  margin-bottom: 1rem;
}
.graphic-info-panel .content .checklist li {
  padding-left: 0.5rem;
}
.graphic-info-panel .content .checklist li::marker {
  content: "R";
  font-family: "Hemic Icons";
  font-size: 0.7rem;
}
.graphic-info-panel .content .graphic-info-btn {
  margin-top: 4rem;
}
@media only screen and (max-width: 768px) {
  .graphic-info-panel .content .graphic-info-btn {
    text-align: center;
  }
}
.graphic-info-panel .image {
  position: relative;
  display: block;
  max-width: 400px;
  margin: 0 auto;
  top: -4rem;
}
.graphic-info-panel .image.no-overlap {
  top: 2rem;
  margin-bottom: 2rem;
}
@media only screen and (max-width: 768px) {
  .graphic-info-panel .image.no-overlap {
    top: 0;
    margin-bottom: 0;
  }
}
@media only screen and (max-width: 768px) {
  .graphic-info-panel .image {
    grid-row-start: 1;
    margin: auto;
    width: 100%;
  }
}

.testimonial-panel {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 4.5rem 15rem;
  color: white;
  background-color: #537309;
  text-align: center;
}
@media only screen and (max-width: 1075px) {
  .testimonial-panel {
    padding: 4.5rem 4rem;
  }
}
.testimonial-panel .testimonial {
  font-size: 1.4rem;
  font-family: "Crimson Pro";
}
.testimonial-panel .attribution {
  margin-top: 2rem;
}
.testimonial-panel .attribution .name {
  font-style: italic;
  font-weight: normal;
  font-size: 1.6rem;
}
.testimonial-panel .testimonial-cta {
  margin-top: 2.4rem;
}

.home-hero-panel .slide {
  position: relative;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
.home-hero-panel .slide .slide-wrapper {
  position: absolute;
  bottom: 0;
  left: 0;
  color: white;
}
.home-hero-panel .slide .slide-wrapper, .home-hero-panel .slide .slide-wrapper.dark-green {
  background-color: rgba(83, 115, 9, 0.96);
}
.home-hero-panel .slide .slide-wrapper.turquoise {
  background-color: rgba(0, 127, 135, 0.96);
}
.home-hero-panel .slide .slide-wrapper.gray {
  background-color: rgba(58, 65, 79, 0.96);
}
.home-hero-panel .slide .slide-wrapper .slide-info {
  padding: 2rem;
}
.home-hero-panel .slide .slide-wrapper .slide-info .eyebrow {
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 0.08rem;
}
.home-hero-panel .slide .slide-wrapper .slide-info .title {
  margin-top: 0.5rem;
  font-size: 1.5em;
}
.home-hero-panel .slide .slide-wrapper .slide-info .slide-cta {
  display: inline-block;
  color: white;
  text-decoration: none;
  margin-top: 0.5rem;
}
.home-hero-panel .slide .slide-wrapper .slide-info .slide-cta:hover {
  text-decoration: underline;
}
.home-hero-panel .slide .slide-wrapper .slide-info .slide-cta i {
  position: relative;
  font-size: 0.8rem;
  bottom: 0.2ch;
}
.home-hero-panel .slide .slide-wrapper .kapa-bar {
  position: absolute;
  width: 100%;
  bottom: 0;
}
.home-hero-panel .mobile-listing {
  display: none;
  min-height: 500px;
  grid-template-columns: 50% 50%;
  grid-template-rows: max(55vh, 360px) max(45vh, 585px);
  grid-template-areas: "featured featured" "secondary tertiary";
}
.home-hero-panel .mobile-listing .slide-wrapper {
  width: 100%;
  height: 50%;
}
.home-hero-panel .mobile-listing .slide:nth-child(1) {
  grid-area: featured;
}
.home-hero-panel .mobile-listing .slide:nth-child(1) .slide-info {
  padding: 1rem 2rem;
}
.home-hero-panel .mobile-listing .slide:nth-child(1) .title {
  font-size: 2rem;
}
.home-hero-panel .mobile-listing .slide:nth-child(2) {
  grid-area: secondary;
}
.home-hero-panel .mobile-listing .slide:nth-child(2) .slide-wrapper {
  background: #007F87;
}
.home-hero-panel .mobile-listing .slide:nth-child(2) .slide-info {
  padding: 1rem;
  font-size: 0.8rem;
}
.home-hero-panel .mobile-listing .slide:nth-child(2) .title {
  font-size: 1.6rem;
}
.home-hero-panel .mobile-listing .slide:nth-child(2) .kapa-bar {
  display: none;
}
.home-hero-panel .mobile-listing .slide:nth-child(3) {
  grid-area: tertiary;
}
.home-hero-panel .mobile-listing .slide:nth-child(3) .slide-wrapper {
  background: #0E1D6F;
}
.home-hero-panel .mobile-listing .slide:nth-child(3) .slide-info {
  padding: 1rem;
  font-size: 0.8rem;
}
.home-hero-panel .mobile-listing .slide:nth-child(3) .title {
  font-size: 1.6rem;
}
.home-hero-panel .mobile-listing .slide:nth-child(3) .kapa-bar {
  display: none;
}
.home-hero-panel .mobile-listing .slide:nth-child(4) {
  display: none;
}
@media only screen and (max-width: 1075px) {
  .home-hero-panel .mobile-listing {
    display: grid;
  }
}
.home-hero-panel .desktop-listing {
  display: block;
  position: relative;
}
@media only screen and (max-width: 1075px) {
  .home-hero-panel .desktop-listing {
    display: none;
  }
}
.home-hero-panel .desktop-listing .swiper-wrapper {
  padding-left: 0;
  max-height: 100%;
}
.home-hero-panel .desktop-listing .swiper-container {
  height: 625px;
  background-color: #49600c;
}
.home-hero-panel .desktop-listing .swiper-slide {
  display: block;
  overflow: hidden;
  width: 100%;
  pointer-events: none;
}
.home-hero-panel .desktop-listing .swiper-slide a {
  display: block;
}
.home-hero-panel .desktop-listing .swiper-slide.swiper-slide-active {
  pointer-events: all;
}
.home-hero-panel .desktop-listing .swiper-slide.swiper-slide-active .swiper-half-l {
  opacity: 1;
  transform: translateY(0);
}
.home-hero-panel .desktop-listing .swiper-slide.swiper-slide-active .swiper-half-r {
  opacity: 1;
  transform: translateY(0);
}
.home-hero-panel .desktop-listing .swiper-slide .swiper-half-l {
  float: left;
  height: 625px;
  opacity: 0;
  position: relative;
  transform: translateY(-100%);
  transition: 1s ease;
  width: 68%;
  font-size: 24px;
}
.home-hero-panel .desktop-listing .swiper-slide .swiper-half-l .slide-info {
  background-image: url(/images/kapa-bar-white.png);
  background-repeat: no-repeat;
  background-position: bottom;
  background-size: contain;
  padding: 1.5em 2em 4em;
}
.home-hero-panel .desktop-listing .swiper-slide .swiper-half-r {
  float: right;
  height: 625px;
  opacity: 0;
  position: relative;
  transition: 1s ease;
  transform: translateY(100%);
  width: 32%;
}
.home-hero-panel .desktop-listing .swiper-slide .swiper-half-r .slide-info {
  right: 4.9em;
  background-color: rgba(24, 96, 96, 0.8);
  padding: 2em 2em 3em;
}
.home-hero-panel .desktop-listing .swiper-slide img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: left center;
}
.home-hero-panel .desktop-listing .swiper-slide .slide-info {
  background-color: rgba(83, 115, 9, 0.8);
  border-radius: 0;
  bottom: 0;
  color: white;
  left: 0;
  right: 0;
  line-height: 1.1;
  padding: 2em 2em 5em;
  position: absolute;
}
.home-hero-panel .desktop-listing .swiper-slide .slide-info .category {
  color: white;
  font-size: 1.1rem;
  font-weight: 100;
  letter-spacing: 1;
  text-transform: uppercase;
  margin-bottom: 0.5em;
}
.home-hero-panel .desktop-listing .swiper-slide .slide-info .title {
  font-size: 2.6rem;
  font-family: "Crimson Pro", serif;
  margin-bottom: 0.25em;
}
.home-hero-panel .desktop-listing .swiper-slide .slide-info .link {
  font-size: 1.25rem;
  transition: color 0.3s;
}
.home-hero-panel .desktop-listing .swiper-slide .slide-info .link:after {
  content: "C";
  font-family: "Hemic Icons";
  border: 2px solid;
  border-radius: 50%;
  height: 0;
  width: 0;
  display: inline-block;
  padding: 4px 17px 18px 5px;
  font-size: 1rem;
  margin-left: 1em;
  position: relative;
  top: 2px;
  transition: margin 0.3s, border-color 0.3s;
}
.home-hero-panel .desktop-listing .swiper-slide .slide-info .link:hover {
  color: #d8d8d8;
}
.home-hero-panel .desktop-listing .swiper-slide .slide-info .link:hover:after {
  margin-left: 2em;
  border-color: transparent;
}
.home-hero-panel .desktop-listing .swiper-next {
  position: absolute;
  border: none;
  top: 0;
  bottom: 0;
  right: 0;
  z-index: 1;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  background-color: rgba(255, 255, 255, 0.333);
  padding: 0 2rem;
}

.graphic-info-panel .content {
  display: block;
}

.product-solution-portal-panel {
  background-color: #F8F6F2;
}
.product-solution-portal-panel .portal-wrapper {
  display: flex;
  flex-direction: column;
  padding: 2rem 6rem;
  align-content: center;
  align-items: center;
}
@media only screen and (max-width: 768px) {
  .product-solution-portal-panel .portal-wrapper {
    padding: 2rem 4rem;
  }
}
.product-solution-portal-panel .portal-wrapper .portal-title {
  position: relative;
  top: 2rem;
  font-size: 2.8rem;
  font-weight: normal;
  text-align: center;
  line-height: 1.2;
}
.product-solution-portal-panel .portal-wrapper .listing-grid {
  position: relative;
  top: 5rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}
@media only screen and (max-width: 1075px) {
  .product-solution-portal-panel .portal-wrapper .listing-grid {
    grid-template-columns: 100%;
    gap: 1rem;
  }
}
.product-solution-portal-panel .portal-wrapper .listing-grid .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);
  text-align: center;
  max-width: 400px;
  flex: auto;
  margin: 0 auto;
  height: intrinsic;
}
.product-solution-portal-panel .portal-wrapper .listing-grid .card-item:hover {
  box-shadow: 5px 9px 15px 4px rgba(0, 0, 0, 0.1882352941);
  transition: box-shadow 0.3s ease-in-out;
}
@media only screen and (max-width: 1075px) {
  .product-solution-portal-panel .portal-wrapper .listing-grid .card-item {
    flex: auto;
    max-width: 360px;
    margin: 0 auto;
  }
}
.product-solution-portal-panel .portal-wrapper .listing-grid .card-item .card-image {
  object-fit: cover;
  height: 250px;
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
}
.product-solution-portal-panel .portal-wrapper .listing-grid .card-item .card-info {
  flex: auto;
  background-color: white;
  justify-content: stretch;
  align-items: center;
  padding: 2rem;
  border-bottom-left-radius: 12px;
  border-bottom-right-radius: 12px;
}
@media only screen and (max-width: 768px) {
  .product-solution-portal-panel .portal-wrapper .listing-grid .card-item .card-info {
    padding: 1rem;
  }
}
.product-solution-portal-panel .portal-wrapper .listing-grid .card-item .card-info .category {
  color: #717171;
  text-transform: uppercase;
  font-size: 0.8rem;
}
.product-solution-portal-panel .portal-wrapper .listing-grid .card-item .card-info .title {
  font-size: 1.2rem;
  font-weight: 600;
  margin-top: 1rem;
}
@media only screen and (max-width: 768px) {
  .product-solution-portal-panel .portal-wrapper .listing-grid .card-item .card-info .title {
    margin-top: 0.5rem;
    font-size: 0.9rem;
  }
}
.product-solution-portal-panel .portal-wrapper .listing-grid .card-item .card-info .synopsis {
  margin: 1rem auto;
  font-weight: 300;
}
.product-solution-portal-panel .portal-wrapper .listing-grid .card-item .card-info .card-cta {
  display: inline-block;
  margin-top: 2rem;
}

.info-box-panel {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: white;
  background-color: #007F87;
  padding: 3rem 4rem 6rem;
}
.info-box-panel .info-box-panel-eyebrow {
  font-size: 1em;
  font-weight: 400;
  letter-spacing: 1;
  text-transform: uppercase;
  margin-bottom: 1em;
  display: inline-block;
}
.info-box-panel .info-box-panel-title {
  display: block;
  font-size: 2.8rem;
  font-family: "Crimson Pro", serif;
  line-height: 1.2;
  text-align: center;
  margin-bottom: 1.8rem;
}
.info-box-panel .info-box-listing {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 2rem;
}
@media only screen and (max-width: 1075px) {
  .info-box-panel .info-box-listing {
    grid-template-columns: 100%;
    gap: 4rem;
  }
}
.info-box-panel .info-box-listing .info-box {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
}
.info-box-panel .info-box-listing .info-box .info-box-image {
  max-width: 80px;
  margin-bottom: 2rem;
}
.info-box-panel .info-box-listing .info-box .info-box-content {
  text-align: center;
}
.info-box-panel .info-box-listing .info-box .info-box-content .info-box-title {
  font-size: 1.4rem;
  font-weight: 400;
  margin-bottom: 1em;
}
.info-box-panel .info-box-listing .info-box .info-box-content .info-box-title + p {
  font-weight: 300;
}
.info-box-panel .info-box-listing .info-box .info-box-content .info-box-copy {
  margin-top: 1rem;
}
.info-box-panel .info-box-cta {
  margin-top: 2rem;
}

/*# sourceMappingURL=home-page.css.map */
