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

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

.himi-carrier-panel {
  background-color: #007F87;
}
.himi-carrier-panel .himi-carrier-wrapper {
  position: relative;
  color: white;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  padding: 4rem 0;
  margin: 0 4rem 0;
  width: calc(100% - 8rem);
  border-top: 1px solid rgba(255, 255, 255, 0.25);
}
.himi-carrier-panel .himi-carrier-wrapper .eyebrow {
  font-size: 0.8rem;
  font-weight: normal;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.08rem;
}
.himi-carrier-panel .himi-carrier-wrapper .title {
  font-size: 1.6rem;
  font-weight: normal;
  text-align: center;
  margin: 1.5rem 0 2.75rem;
}
.himi-carrier-panel .himi-carrier-wrapper .prev-btn,
.himi-carrier-panel .himi-carrier-wrapper .next-btn {
  color: white;
  top: calc(60% - 2.8rem - 1ch);
}
.himi-carrier-panel .himi-carrier-wrapper .prev-btn {
  left: -3.5rem;
}
.himi-carrier-panel .himi-carrier-wrapper .next-btn {
  right: -2rem;
}
.himi-carrier-panel .himi-carrier-wrapper .himi-carrier-cta {
  margin: 1.8rem 0 0;
}
.himi-carrier-panel .himi-carrier-wrapper .tns-item {
  text-align: center;
}
.himi-carrier-panel .himi-carrier-wrapper .single-item {
  list-style-type: none;
}

.intro-panel {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: #F8F6F2;
  padding: 4.375rem 4rem;
  z-index: 100;
}
.intro-panel.listing-panel-buffer {
  padding: 4.375rem 4rem 12.375rem;
}
.intro-panel .eyebrow {
  font-style: italic;
  font-weight: normal;
  font-size: 1.6rem;
  text-align: center;
}
.intro-panel .title {
  font-weight: normal;
  font-size: 2rem;
  text-align: center;
}
.intro-panel .synopsis {
  margin-top: 1rem;
  font-size: 1.2rem;
  line-height: 1.6;
  text-align: center;
}
.intro-panel .content-separator {
  display: block;
  margin-top: 1rem;
  border: 1px solid #537309;
  width: 100px;
}
.intro-panel .body-copy {
  margin-top: 1rem;
  text-align: center;
}
.intro-panel .body-copy p {
  margin: 1rem 0;
}
.intro-panel .kapa-bar {
  position: absolute;
  bottom: 0;
  width: 100%;
  display: none;
}

.intro-panel:after {
  content: "";
  background: #186060;
  height: 4px;
  width: 280px;
  display: block;
  margin: 0 auto;
  position: relative;
  top: 3em;
}
.intro-panel h1.eyebrow {
  font-style: normal;
  text-transform: uppercase;
  font-family: "Inter var", sans-serif;
  margin-bottom: 1.5em;
  font-size: 1.2em;
}
.intro-panel .title {
  font-size: 2rem;
  font-weight: 400;
  line-height: 1.3;
}
.intro-panel .synopsis {
  font-size: 1.5rem;
}

.info-box-panel {
  display: flex;
  flex-direction: column;
  justify-content: center;
  background-color: #F8F6F2;
  padding: 2rem 4rem;
  line-height: 1.6;
}
.info-box-panel p,
.info-box-panel ul li {
  font-size: 1.15rem;
  line-height: 1.4;
}
.info-box-panel p + p {
  margin-top: 1.25rem;
}
.info-box-panel .info-box-panel-title {
  font-size: 2em;
  font-family: "Crimson Pro", serif;
}
.info-box-panel .info-box-listing {
  display: grid;
  grid-template-columns: repeat(2, minmax(50%, 1fr));
  gap: 6rem 2rem;
  margin: 4rem 0;
}
@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: row;
  justify-content: flex-start;
  align-items: flex-start;
}
@media (max-width: 768px) {
  .info-box-panel .info-box-listing .info-box {
    flex-wrap: wrap;
  }
  .info-box-panel .info-box-listing .info-box .info-box-image {
    width: 100%;
  }
}
.info-box-panel .info-box-listing .info-box .info-box-content {
  margin-left: 3rem;
}
@media (max-width: 768px) {
  .info-box-panel .info-box-listing .info-box .info-box-content {
    margin-left: 0;
    margin-top: 3rem;
  }
}
.info-box-panel .info-box-listing .info-box .info-box-content .info-box-title {
  font-weight: normal;
}
.info-box-panel .info-box-listing .info-box .info-box-content .info-box-copy {
  margin-top: 1rem;
  margin-left: 0;
}
.info-box-panel .info-box-listing .info-box .info-box-content .info-box-copy li {
  padding-left: 2ch;
  list-style: none;
  position: relative;
}
.info-box-panel .info-box-listing .info-box .info-box-content .info-box-copy li span {
  font-size: 1.15rem;
}
.info-box-panel .info-box-listing .info-box .info-box-content .info-box-copy li:before {
  content: "R";
  font-family: "Hemic Icons";
  position: absolute;
  top: 3px;
  left: -15px;
  font-size: 0.9rem;
}
.info-box-panel .info-box-cta {
  margin-top: 2rem;
}

.select-faq-panel {
  position: relative;
  display: grid;
  grid-template-columns: 100%;
  background-color: #F8F6F2;
  padding: 2rem 4rem;
}
.select-faq-panel .select-faq-title {
  font-size: 1.5rem;
  font-style: italic;
  font-weight: normal;
  text-align: center;
}
.select-faq-panel .faq-listing {
  position: relative;
  bottom: -3rem;
  z-index: 600;
}
.select-faq-panel .faq-listing .faq-peek-box {
  cursor: pointer;
  background-color: white;
  border-radius: 12px;
  box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.1882352941);
  transition: height 0.25s ease-out;
  background-image: none;
  appearance: none;
}
.select-faq-panel .faq-listing .faq-peek-box + * {
  margin-top: 1rem;
}
.select-faq-panel .faq-listing .faq-peek-box summary {
  position: relative;
  padding: 2rem;
  background-image: none;
  appearance: none;
  font-size: 1.14rem;
  font-weight: 500;
}
.select-faq-panel .faq-listing .faq-peek-box summary::-webkit-details-marker, .select-faq-panel .faq-listing .faq-peek-box summary::marker {
  display: none;
  content: "";
}
.select-faq-panel .faq-listing .faq-peek-box summary .dropdown-icon {
  position: absolute;
  display: inline-block;
  font-size: 1.6rem;
  right: 2ch;
  transition: transform 0.25s ease-out;
}
.select-faq-panel .faq-listing .faq-peek-box .answer {
  padding: 0 2rem 2rem;
  font-size: 1.14rem;
  line-height: 1.6;
}
.select-faq-panel .faq-listing .faq-peek-box[open] summary .dropdown-icon {
  transform: rotate(90deg);
}
.select-faq-panel .kapa-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 500;
}

.select-resource-panel {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  padding: 4rem 4rem 2rem;
  background-color: #007F87;
}
@media only screen and (max-width: 1075px) {
  .select-resource-panel {
    padding: 4rem;
  }
}
.select-resource-panel .resource-cta {
  text-align: center;
}
.select-resource-panel .resource-menu-desktop {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  margin-top: 3rem;
  width: 100%;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
}
@media only screen and (max-width: 1075px) {
  .select-resource-panel .resource-menu-desktop {
    display: none;
  }
}
.select-resource-panel .resource-title {
  color: white;
  text-decoration: none;
  text-transform: uppercase;
  padding: 0.5rem;
  border-bottom: 2px solid transparent;
  align-self: flex-start;
}
.select-resource-panel .resource-title.active {
  border-bottom: 2px solid white;
}
.select-resource-panel .resource-title + a {
  margin-left: 2rem;
}
.select-resource-panel .resource-menu-mobile {
  display: none;
  width: 100%;
}
@media only screen and (max-width: 1075px) {
  .select-resource-panel .resource-menu-mobile {
    display: block;
  }
}
.select-resource-panel .resource-menu-mobile .resource-type-form {
  position: relative;
  width: 100%;
  margin-top: 1rem;
}
.select-resource-panel .resource-menu-mobile .resource-type-form .resource-type-select {
  appearance: none;
  border: none;
  color: white;
  background-color: transparent;
  width: 100%;
  padding: 1rem;
  border-bottom: 2px solid white;
  text-transform: uppercase;
  cursor: pointer;
}
.select-resource-panel .resource-menu-mobile .resource-type-form .dropdown-icon {
  position: absolute;
  color: white;
  top: calc(50% - 1ch);
  right: 2ch;
}
.select-resource-panel .resource-listing {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  width: 100%;
  margin-top: 2rem;
}
@media only screen and (max-width: 768px) {
  .select-resource-panel .resource-listing {
    grid-template-columns: 100%;
  }
}
.select-resource-panel .resource-listing .resource-card {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  background-color: white;
  padding: 1rem;
  border-radius: 8px;
  text-decoration: none;
  color: initial;
}
.select-resource-panel .resource-listing .resource-card .resource-info .category {
  color: #717171;
}
.select-resource-panel .resource-listing .resource-card .resource-info .title {
  margin-top: 0.5rem;
}
.select-resource-panel .resource-listing .resource-card .resource-type [class^=icon-] {
  font-size: 4rem;
}

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