@font-face {
  font-family: FS Humana;
  src: local("FS Humana"), url("../fonts/fs-humana.woff2") format("woff2"),
    url("../fonts/fs-humana.woff") format("woff"),
    url("../fonts/fs-humana.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: FS Humana;
  src: local("FS Humana Bold"),
    url("../fonts/fs-humana-bold.woff2") format("woff2"),
    url("../fonts/fs-humana-bold.woff") format("woff"),
    url("../fonts/fs-humana-bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: FS Humana;
  src: local("FS Humana Heavy"),
    url("../fonts/fs-humana-heavy.otf") format("opentype");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: FS Humana;
  src: local("FS Humana Light"),
    url("../fonts/fs-humana-light.woff2") format("woff2"),
    url("../fonts/fs-humana-light.woff") format("woff"),
    url("../fonts/fs-humana-light.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

:root {
  --white: #ffffff;
  --primary-1: #78be20;
  --primary-hover-1: #487815;
  --primary-2: #5c9a1b;
  --secondary-1: #114a21;
  --font-color: #3a3b3d;
  --font-color-secondary: #53575a;
  --action-link-default: #007481;
  --action-link-active: #005b68;
  --border-color: #c8c8c8;
  --hover-bg: #f8f8f8;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-size: 16px;
  font-family: FS Humana, Calibri, Helvetica, Arial, SF Pro Text, Roboto,
    sans-serif;
  font-weight: 400;
  line-height: 1.5;
}

*,
::after,
::before {
  box-sizing: border-box;
}

.container {
  max-width: 1440px;
  margin-left: auto;
  margin-right: auto;
}

.pad_container {
  padding-left: 2rem;
  padding-right: 2rem;
}

.menus {
  list-style-type: none;
  display: flex;
  align-items: center;
  margin: 0;
}

ul,
ul li {
  list-style-type: none;
}

/* body.modal-open {
  overflow: hidden;
} */

body.modal-open .show {
  display: block;
  /* height: 100%; */
}

.first-nav,
.second-nav {
  position: relative;
  z-index: 11;
  background-color: var(--white);
}

.first-nav {
  z-index: 12;
  border-top: solid 8px var(--primary-1);
  border-bottom: solid 1px var(--border-color);
}

.first-nav .container {
  position: relative;
}

.first-nav .container,
.second-nav .container {
  display: flex;
  height: 72px;
}

.first-nav .logos {
  display: flex;
  align-items: center;
}

.first-nav .logos .h-logo {
  padding: 0.75rem 1.25rem;
  background-color: var(--primary-1);
  display: inline-block;
  height: 72px;
}

.first-nav .logos .humana-logo {
  width: 185px;
  height: auto;
  margin-left: 2rem;
  margin-right: 2rem;
}

.first-nav .logos .humana-logo svg {
  width: 100%;
  /* max-width: 11.5625rem;
  margin-left: 2rem;
  margin-right: 2rem; */
}

.first-nav .logos .h-logo svg {
  width: 38px;
  height: auto;
  fill: var(--white);
}

.first-nav .menus {
  padding-left: 0;
}

.first-nav .menus li,
.second-nav .menus li {
  height: 100%;
}

.first-nav .menus li a,
.second-nav .menus li a {
  display: flex;
  align-items: center;
  padding: 0.75rem 1.5rem;
  color: var(--font-color);
  text-decoration: none;
  height: 100%; cursor: pointer;
}

.first-nav .menus li svg {
  width: 24px;
  height: auto;
  margin-right: 8px;
  fill: var(--primary-2);
  color: var(--primary-2);
}

.first-nav .menus.menu-right,
.second-nav .menus.menu-right {
  margin-left: auto;
}

.first-nav .menus .signin a {
  background: var(--primary-1);
  color: var(--secondary-1);
  font-family: FS Humana, Calibri, Helvetica, Arial, SF Pro Text, Roboto,
    sans-serif;
  font-weight: 700;
}

.first-nav .menus .signin svg {
  color: var(--secondary-1);
  fill: var(--secondary-1);
}

.first-nav .menus .signin a:hover {
  color: var(--white);
  background-color: var(--secondary-1);
}

.first-nav .menus .signin a:hover svg {
  color: var(--white);
  fill: var(--white);
}

.first-nav .menus .more-humana .more-menu {
  display: block;
}

.first-nav .menus .more-humana .x-menu {
  display: none;
}

.first-nav .menus .more-humana.open {
  border-bottom: solid 3px var(--primary-2);
  background-color: var(--hover-bg);
}

.first-nav .menus .more-humana.open .more-menu {
  display: none;
}

.first-nav .menus .more-humana.open .x-menu {
  display: block;
}

.second-nav {
  border-bottom: solid 1px var(--border-color);
}

.second-nav .menus {
  padding: 0;
}

.second-nav .menus li a {
  position: relative;
  width: 100%;
  height: 100%;
}

.second-nav .menus li a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 0;
  background-color: var(--primary-2);
}

.second-nav .menus li a svg.x-icon {
  display: none;
}

.second-nav .menus li a svg.v-icon {
  display: block;
}

.second-nav .menus li a.open svg.v-icon {
  display: none;
}

.second-nav .menus li a.open svg.x-icon {
  display: block;
}

.second-nav .menus li a.open {
  background-color: var(--hover-bg);
}

.second-nav .menus li a.open::after {
  height: 3px;
}

.second-nav .menus li a svg {
  width: 16px;
  margin-left: 12px;
  color: var(--font-color);
  fill: var(--font-color);
  transform: rotate(180deg);
}

.second-nav .menus.mobile {
  display: none;
}

.second-nav .menus.mobile li a svg {
  color: var(--primary-2);
  fill: var(--primary-2);
}

.second-nav .menus:not(.menu-right) li a.open svg {
  transform: rotate(0deg);
  color: var(--primary-2);
  fill: var(--primary-2);
}

.second-nav .menus.menu-right li svg,
.second-nav .menus.mobile li svg {
  width: 32px;
  height: 32px;
  margin-left: 0;
  transform: rotate(0deg);
}

.second-nav .menus.menu-right li a,
.second-nav .menus.mobile li a {
  flex-direction: column;
  padding: 0.5rem 1rem;
  background-color: #eff5e6;
  color: var(--secondary-1);
}

.second-nav .menus.menu-right li a {
  position: relative;
  width: 100%;
  height: 100%;
  justify-content: center;
  min-width: 130px;
}

.second-nav .menus.menu-right li a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 0;
  background-color: var(--primary-2);
}

.second-nav .menus.menu-right li a:hover {
  /* background-color: var(--hover-bg); */
}

.second-nav .menus.menu-right li a:hover::after {
  height: 3px;
}

.more-humana-menus,
.second-humana-menus {
  display: none;
  padding: 2rem 1rem;
  position: absolute;
  max-width: 1440px;
  left: auto;
  right: auto;
  top: 81px;
  /* width: 100%; */
  z-index: 10;
  filter: drop-shadow(rgba(17, 74, 33, 0.2) 0px 0.5rem 1rem);
  background-color: var(--white);
}

.second-humana-menus {
  display: block;
  top: 154px;
  width: 100%;
  padding: 0;
}

.more-humana-menus {
  z-index: 11;
}

.more-humana-menus .menus,
.more-humana-menus .menus.card-menus {
  flex-wrap: wrap;
}

.more-humana-menus .menus li {
  font-size: 19px;
  padding-bottom: 1.75rem;
  padding-right: 1.5rem;
}

.more-humana-menus .menus li a {
  color: var(--action-link-default);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 5px;
  display: flex;
  align-items: center;
}

.more-humana-menus .menus li a svg {
  margin-right: 0;
  margin-left: 8px;
  color: var(--action-link-default);
  fill: var(--action-link-default);
  width: 19px;
  height: 19px;
}

.more-humana-menus .menus li a:hover,
.more-humana-menus .menus li a:active {
  text-decoration: underline dashed var(--action-link-active);
  color: var(--action-link-active);
}

.more-humana-menus .menus li a:hover svg,
.more-humana-menus .menus li a:active svg {
  color: var(--action-link-active);
  fill: var(--action-link-active);
}

.more-humana-menus .menus.card-menus {
  padding: 0;
  align-items: normal;
}

.more-humana-menus .menus.card-menus li {
  width: calc(100% / 4);
  padding-bottom: 0;
}

.more-humana-menus .menus.card-menus li a.card {
  text-decoration: none;
  font-weight: 400;
  color: var(--font-color);
  border-radius: 0.25rem;
  border: solid 1px var(--border-color);
  flex-direction: column;
  height: 100%;
  transition-duration: 0.2s;
  transition-timing-function: ease-in-out;
  transition-property: box-shadow, transform;
  position: relative;
  flex-grow: 1;
}

.more-humana-menus .menus.card-menus li a.card:hover,
.more-humana-menus .menus.card-menus li a.card:active {
  box-shadow: rgba(17, 74, 33, 0.2) 0px 0.5rem 1rem;
  transform: translateY(-0.5rem);
}

.more-humana-menus .menus.card-menus li a.card:focus-visible,
.more-humana-menus .menus.card-menus li a.card:visited,
.more-humana-menus .menus.card-menus li a.card:focus {
  outline: 2px dashed #3a3b3d;
  outline-offset: -2px;
}

.more-humana-menus .menus.card-menus li .card .card-header {
  padding: 1.25rem 1.75rem;
}

.more-humana-menus .menus.card-menus li .card img {
  width: 100%;
  border-radius: 0.25rem;
}

.more-humana-menus .menus.card-menus li .card .card-content {
  padding: 2rem 1.75rem;
  border-top: solid 1px var(--border-color);
  font-size: 1.1875rem;
  width: 100%;
}

.more-humana-menus .menus.card-menus li .card .card-action {
  width: 100%;
  text-align: right;
  margin-top: auto;
}

.more-humana-menus .menus.card-menus li .card .card-action .action-btn {
  background-color: var(--primary-2);
  color: var(--white);
  padding: 0.75rem;
  display: inline-block;
  border-bottom-right-radius: 0.25rem;
  line-height: 0;
}

.more-humana-menus
  .menus.card-menus
  li
  a.card
  .card-action
  .action-btn
  .action-text {
  display: none;
  margin-right: 12px;
}

.more-humana-menus .menus.card-menus li a.card:hover .card-action .action-btn,
.more-humana-menus .menus.card-menus li a.card:active .card-action .action-btn {
  background-color: var(--primary-hover-1);
}

.more-humana-menus
  .menus.card-menus
  li
  a.card:hover
  .card-action
  .action-btn
  .action-text,
.more-humana-menus
  .menus.card-menus
  li
  a.card:active
  .card-action
  .action-btn
  .action-text {
  display: inline-block;
  font-size: 1rem;
}

.more-humana-menus .menus.card-menus li .card .card-action .action-btn svg {
  color: var(--white);
  fill: var(--white);
  margin-left: 0;
  width: 15px;
  height: 15px;
}

.second-humana-menus .menu-container {
  display: none;
  width: 100%;
  background-color: var(--white);
}

.second-humana-menus .menu-container.bg-grey {
  background-color: var(--hover-bg);
}

.second-humana-menus .menu-container.show {
  display: flex;
}

.second-humana-menus ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
  width: calc(100% / 3);
}

.second-humana-menus ul.main-menus,
.mobile-menus .dynamic-menus .main-menus {
  background-color: var(--white);
}

.second-humana-menus ul.main-menus li.border-right {
  border-right: solid 1px var(--border-color);
}

.second-humana-menus ul.main-menus li a.open {
  border-right: 0;
  background-color: var(--hover-bg);
  border-bottom: solid 1px var(--border-color);
  border-top: solid 1px var(--border-color);
}

.second-humana-menus ul.main-menus li a.open svg {
  color: var(--primary-2);
  fill: var(--primary-2);
}

.second-humana-menus ul.main-menus li:first-child a.open {
  border-top: 0;
}

.second-humana-menus ul.main-menus li .nav-spacer {
  height: 50px;
}

.second-humana-menus ul.sub-menus {
  display: block;
  padding-top: 0.25rem;
}

.mobile-menus .dynamic-menus {
  display: none;
  padding-bottom: 20px;
}

.mobile-menus .dynamic-menus ul {
  display: none;
}

.second-humana-menus ul li a,
.mobile-menus .dynamic-menus li a {
  padding: 0.5rem 1.5rem;
  text-decoration: none;
  color: var(--font-color);
  display: flex;
  align-items: center;
}

.second-humana-menus ul li a .content,
.mobile-menus .dynamic-menus .main-menus li a .content {
  width: calc(100% - 24px);
}

.second-humana-menus ul li a svg,
.mobile-menus .dynamic-menus .main-menus li a svg {
  width: 16px;
  height: 16px;
  color: var(--font-color);
  fill: var(--font-color);
  margin-left: 8px;
}

.second-humana-menus ul li a h4,
.second-humana-menus ul li a p,
.mobile-menus .dynamic-menus .main-menus li a p,
.mobile-menus .dynamic-menus .main-menus li a h4 {
  margin-top: 0;
  margin-bottom: 0;
}

.second-humana-menus ul li a h4,
.mobile-menus .dynamic-menus .main-menus li a h4 {
  font-weight: 700;
  font-size: 1.25rem;
}

.second-humana-menus ul.sub-menus li a:hover,
.mobile-menus .dynamic-menus .sub-menus li a:hover {
  color: var(--primary-hover-1);
  background-color: var(--hover-bg);
  text-decoration: underline;
  text-underline-offset: 0.35rem;
}

.mobile-menus {
  display: none;
}

.mobile-menus .menus {
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
}

.mobile-menus .menus.bottom {
  border-top: solid 1px var(--border-color);
  background-color: var(--hover-bg);
}

.mobile-menus .menus li {
  width: 100%;
}

.mobile-menus .menus li a {
  padding: 0.75rem 1.5rem;
  display: flex;
  width: 100%;
  justify-content: space-between;
  text-decoration: none; cursor: pointer;
  color: var(--font-color);
}

.mobile-menus .menus li a:hover {
  background-color: var(--hover-bg);
  color: var(--primary-2);
}

.mobile-menus .menus li a svg {
  width: 16px;
  height: 16px;
}

.mobile-menus .menus.bottom li a span {
  display: inline-flex;
}

.mobile-menus .menus.bottom li a span svg {
  width: 24px;
  height: 24px;
  color: var(--primary-2);
  fill: var(--primary-2);
  margin-right: 8px;
  vertical-align: baseline;
}

.back-menu {
  padding: 0.75rem 1.5rem;
  display: flex;
  align-items: center;
  text-decoration: none;
  color: var(--secondary-1);
}

.back-menu svg {
  width: 16px;
  height: 16px;
  margin-right: 8px;
}

h1.menu-title {
  font-size: 2rem;
  margin: 0;
  padding: 0.75rem 1.5rem;
}

.mob-bar {
  display: none;
}

/* .mobile-menus .dynamic-menus .main-menus {

} */

.backdrop {
  display: none;
}

body.modal-open .backdrop {
  display: block;
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 9;
}

/* header search bar */

.search_text:hover {
  color: #487815;
  border-bottom: 2px solid #487815;
  margin-top: 2px;
}

.header_search_bar {
  display: none;
}

.header_search_bar.intActive {
  position: absolute;
  top: 9px;
  right: 140px;
  width: 310px;
  background-color: var(--white);
}

.search_barLink svg.s-icon {
  display: block;
}

.search_barLink svg.x-icon {
  display: none;
}

.search_barLink.open svg.s-icon {
  display: none;
}

.search_barLink.open svg.x-icon {
  display: block;
}

.header_search_barSetup {
  display: flex !important;
  flex-direction: row;
  align-items: center;
  border: 0.125rem solid #114a21;
  height: fit-content;
  position: relative;
}

.search_bar_int {
  color: #67768b;
  text-align: left;
  padding: 0.75rem;
  text-indent: 0;
  font-size: 1rem;
  line-height: 1.5rem;
  width: 100%;
  height: 48px;
  white-space: pre;
  box-sizing: border-box;
  background: none;
  border: none;
  resize: none;
  outline: 0;
  font-family: FS Humana, Calibri, Helvetica, Arial, SF Pro Text, Roboto,
    sans-serif;
  font-weight: 400;
}

.intCloseMark,
.intCloseMark_main {
  width: 3rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  outline: none;
  border: none;
  background-color: transparent;
}

.intCloseMark .closeSvg,
.intCloseMark_main .closeSvg {
  position: absolute;
  right: -1.15rem;
  transition: ease 0.5s;
}

.intCloseMark.svgOpen .closeSvg,
.intCloseMark_main.svgOpen .closeSvg {
  position: absolute;
  right: 0.8rem;
  transition: ease 0.5s;
}

.intCloseMark svg.closeSvg,
.intCloseMark_main svg.closeSvg {
  width: 1.125rem;
  height: 1.125rem;
  color: #707373;
  margin: 0;
}

.search_icon {
  border: none;
  border-left: none;
  border-left: 1px solid #7e8c9a;
  text-decoration: none;
  text-align: center;
  cursor: pointer;
  line-height: 0;
  width: 3.75rem;
  height: 3.125rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.search_icon svg {
  height: 24px;
  width: 24px;
  margin: 0;
  color: #487815;
  fill: #487815;
  stroke: #487815;
}

.searchResults h1 {
  color: var(--primary-2);
  font-size: 2.625rem;
  font-weight: 300;
  line-height: 1.25;
  margin-bottom: 0.5rem;
}

.main_search {
  max-width: 50rem;
  /* margin: 20% auto 2.938rem; */
  margin: 7rem auto 2.938rem;
  padding: 0 0.625rem;
  display: flex;
  flex-direction: row;
  position: relative;
}

.main_search_int {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  width: calc(100% - 3.75rem);
  border: 0.0625rem solid #53575a;
  border-radius: 0.25rem 0 0 0.25rem;
  border-right: none;
  overflow: hidden;
}

.main_int {
  width: 100%;
  border: none;
  color: #67768b;
  border-right: none;
  outline: none;
  text-align: left;
  padding: 12px 49px 12px 12px;
  text-indent: 0;
  font-family: FS Humana, Calibri, Helvetica, Arial, SF Pro Text, Roboto,
    sans-serif;
  font-size: 1rem;
  line-height: 1.5rem;
  height: 3rem;
  white-space: pre;
  overflow: auto;
  box-sizing: border-box;
  display: block;
}

.main_search_btnn {
  background-color: #5c9a1b;
  border: none;
  outline: none;
  border-radius: 0 0.25rem 0.25rem 0;
  width: 3.75rem;
  cursor: pointer;
  position: relative;
}

.main_search_btnn svg {
  fill: var(--white);
  color: var(--white);
  width: 1.125rem;
  height: 1.125rem;
}

.search_results {
  display: flex;
  flex-direction: column;
}

.result_top {
  box-shadow: inset 0 -0.0625rem 0 0 #c8c8c8;
  padding-top: 10px;
  min-height: 35px;
  overflow: hidden;
  display: none;
  justify-content: space-between;
}

.result_viewSet {
  display: flex;
  margin-left: 10px;
}

@media all and (max-width: 497px) {
  .result_viewSet {
    display: none;
  }
}

.list_view,
.card_view {
  display: -moz-flex;
  display: flex;
  /* box-align: center; */
  -moz-align-items: center;
  -ms-align-items: center;
  -o-align-items: center;
  align-items: center;
  -ms-flex-align: center;
  font-size: 12px;
  font-weight: 700;
  padding: 0 5px 10px;
  text-transform: uppercase;
  border-bottom: 2px solid #bcc3ca;
  gap: 5px;
  cursor: pointer;
}

.list_view.active,
.card_view.active {
  border-bottom: 2px solid #007481;
}

.list_view_svg,
.card_view_svg {
  display: flex;
  align-items: center;
}

.list_view_svg svg,
.card_view_svg svg {
  width: 1rem;
  height: 1rem;
  color: #007481;
  font-size: 1rem;
}

.list_view_text,
.card_view_text {
  font-size: 1rem;
  color: #007481;
}

.list_view.active .list_view_text,
.card_view.active .card_view_text,
.list_view.active .list_view_svg svg,
.card_view.active .card_view_svg svg {
  color: #3a3b3d;
}

#output {
  /* margin: 1rem 0; */
  outline: none;
  display: flex;
  flex-direction: column;
}

#output.warp_class {
  flex-wrap: wrap;
  gap: 1.5rem;
  border: none;
  flex-direction: row;
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}

.output_box {
  padding: 1rem 0;
  width: 100%;
  border-bottom: 1px solid #bcc3ca;
}

.warp_class .output_box {
  width: calc(50% - 1rem);
  border: 1px solid #bcc3ca;
  padding: 1.25rem;
}

.breadCrumb_mob {
  display: none;
}

@media all and (max-width: 600px) {
  .warp_class .output_box {
    width: calc(100%);
  }
}

.output_box_head {
  margin: 0.25rem 0;
}

.output_box_head a {
  color: #007481;
  border-bottom: 0.125rem solid;
  text-decoration: none;
  font-size: 1.375rem;
  line-height: 2rem;
  cursor: pointer;
  word-wrap: break-word;
}

.output_box_head a:hover {
  border-bottom-style: dashed;
  color: #005b68;
}

.output_box_head a:visited {
  color: #612166;
}

.output_box_para {
  width: 100%;
  table-layout: fixed;
  margin: 0.25rem 0;
  padding: 0.75rem 0 0;
  color: #3a3b3d;
  font-size: 1.125rem;
  min-height: 5rem;
  max-height: 8rem;
  text-overflow: ellipsis;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  /* white-space: nowrap; */
}

.warp_class .output_box_para {
  min-height: 5rem;
  max-height: 15rem;
}

.output_box .highlighted_text {
  font-weight: 700;
  color: #3a3b3d;
}

.output_box .output_box_head .highlighted_text {
  color: #007481;
}

.output_box .output_box_head a:visited .highlighted_text {
  color: #612166;
}

.search_Breadcrumb {
  display: flex;
  flex-direction: row;
  margin: 3rem 0;
}

.itemListElement01:after {
  content: "/";
  padding: 0 0.375rem;
}

.itemListElement01,
.itemListElement02 {
  font-size: 1rem;
  color: #3a3b3d;
}

.itemListElement01 a {
  color: #007481;
  text-underline-offset: 0.35rem;
  font-weight: bold;
  text-decoration: none;
  border-bottom: 0.125rem solid #005b68;
}

.itemListElement01 a:hover {
  border-bottom: 1px solid #005b68;
  border-bottom-style: dashed;
  color: #005b68;
}

.result_text span {
  color: #67768b;
  text-align: left;
  font-size: 1rem;
}

.searchResult_container {
  padding: 0 2rem;
}

@media all and (max-width: 767.98px) {
  .searchResult_container {
    padding: 0 1rem;
  }

  .main_search {
    margin: 2.938rem auto 2.938rem;
  }
}

/* no result summary */

.no_results_summary {
  font-size: 1rem;
  color: #67768b;
  text-align: left;
  display: flex;
  /* box-pack: justify; */
  flex-direction: column;
  justify-content: space-between;
  padding-top: 10px;
  min-height: 35px;
  width: 100%;
  max-width: 75%;
  margin: 15px auto 4.5rem;
  overflow: hidden;
  box-shadow: inset 0 -0.0625rem 0 0 #c8c8c8;
}

.no_results_string {
  margin-bottom: 5px;
}

.coveo_highlight {
  font-weight: 700;
}

.summary_cancel_last {
  margin-bottom: 5px;
  font-size: 14px;
  color: #0059b3;
  text-decoration: none;
  cursor: pointer;
}

.summary_search_tips_info {
  margin-bottom: 5px;
}

._tips_info {
  margin-top: 0;
  padding-left: 40px;
  margin-bottom: 1rem;
}

.searchInput_options,
.searchInput_options_main {
  position: absolute;
  top: 50px;
  width: 100%;
  max-height: 25rem;
  border: 1px solid #7e8c9a;
  filter: drop-shadow(0 0.125rem 0.25rem rgba(0, 0, 0, 0.25));
  background: #fff;
  display: none;
}

.searchInput_options_main {
  width: calc(100% - 4.8rem);
}

.search_int_option {
  padding: 0.5rem;
  font-size: 1rem;
  cursor: pointer;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.search_int_option:hover {
  background-color: #487815;
  color: #fff;
}

.search_int_option:hover .highlighted_text {
  color: #fff;
}

@media (max-width: 1199.98px) {
  .more-humana-menus .menus:not(.card-menus) li:first-child {
    width: 100%;
  }
}

@media (max-width: 1023.98px) {
  .first-nav .menus .signin a {
    flex-direction: column;
  }

  .second-nav .menus.menu-right li a {
    min-width: 98px;
  }

  .first-nav .menus .signin a svg {
    flex-grow: 1;
    margin-right: 0;
  }

  .header_search_bar.intActive {
    right: 108px;
  }
}

@media (max-width: 991.98px) {
  .pad_container {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  .mobile-menus.show {
    display: block;
    position: relative;
    width: 100%;
    background-color: var(--white);
    z-index: 12;
  }

  .more-humana-menus.show {
    z-index: 13;
  }

  .more-humana-menus {
    top: 154px;
  }

  .mob-bar {
    display: block;
    margin-bottom: 30px;
  }

  .more-humana-menus .back-menu,
  .more-humana-menus h1.menu-title {
    padding-left: 0;
    padding-right: 0;
  }

  .first-nav .menus:not(.menu-right) {
    display: none;
  }

  .second-nav .menus.mobile {
    display: block;
  }

  .second-nav .menus:not(.menu-right, .mobile) {
    display: none;
  }

  .more-humana-menus .menus.card-menus li {
    width: calc(100% / 3);
  }
}

@media (max-width: 767.98px) {
  .first-nav .logos .h-logo {
    display: none;
  }

  .second-nav .menus.menu-right li a {
    min-width: 82px;
  }

  .first-nav .menus li a {
    padding: 0.5rem 1rem;
  }

  .first-nav .menus.menu-right li a {
    flex-direction: column;
  }

  .first-nav .menus.menu-right li a svg {
    flex-grow: 1;
    margin-right: 0;
  }

  .first-nav .logos .humana-logo {
    margin-right: 0;
    margin-left: 1rem;
    width: 128px;
  }

  .more-humana-menus .menus li,
  .more-humana-menus .menus.card-menus li {
    width: 100%;
  }

  .more-humana-menus .menus.card-menus li {
    margin-bottom: 20px;
  }

  .header_search_bar.intActive {
    top: 74px;
    width: 100%;
    left: 0;
    right: 0;
    border: none;
  }

  .header_search_bar.intActive .search_bar_int {
    height: 69px;
    padding-left: 1rem;
  }

  .search_int_option {
    padding-left: 1rem;
  }

  .header_search_bar.intActive .header_search_barSetup {
    border: 0;
    border-bottom: 0.125rem solid var(--secondary-1);
  }

  .first-nav .menus li.search-menu a {
    position: relative;
    width: 100%;
    height: 100%;
  }

  .first-nav .menus li.search-menu a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 0;
    background-color: var(--primary-2);
  }

  .first-nav .menus li.search-menu a:hover {
    background-color: var(--hover-bg);
  }

  .first-nav .menus li.search-menu a:hover::after {
    height: 3px;
  }

  .first-nav .menus li.search-menu a:hover span {
    text-decoration: none;
    border: none;
  }

  .searchInput_options {
    top: 70px;
  }

  .more-humana-menus .menus li {
    padding-right: 0;
  }

  .breadCrumb_desktop_text,
  .itemListElement02,
  .itemListElement01:after {
    display: none;
  }

  .breadCrumb_mob {
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }

  .breadCrumb_mob svg {
    width: 1rem;
    height: 1rem;
    fill: #007481;
  }

  .breadCrumb_mob_text {
    display: flex;
    border-bottom: 2px solid #005b68;
  }

  .breadCrumb_mob_text:hover {
    display: flex;
    border-bottom-style: dashed;
  }

  .output_box_para {
    -webkit-line-clamp: 4;
  }
}

@media (min-width: 768px) {
  .banner_section .img-container {
    /* height: 340px; */
    height: 390px;
  }

  .banner_section .img-container img {
    height: 100%;
    object-fit: cover;
  }
}

@media (min-width: 992px) {
  .first-nav .menus li:not(.search-menu) a:hover span {
    border-bottom: solid 1px var(--primary-2);
  }

  .second-humana-menus .menu-container {
    min-height: 300px;
  }
}

@media (min-width: 992px) and (max-width: 1500px) {
  .tab_section .container {
    padding-right: 2rem;
  }

  .tab_section .navigation_text {
    padding-left: 2rem;
  }
}
.more-humana{cursor: pointer;}
