/* BANNER */
header.header{
    position: relative;
    z-index: 300;
  }
  .header .header__banner-wrapper{
    justify-content: space-between;
    padding-top: 6px;
    padding-bottom: 6px;
  }
  .header .header__banner {
      padding: 2px 0;
  }
  .header a:hover{
      text-decoration: none;
  }
  /* BACKDROP OVERLAY */
  .header .header__nav--item ~ .backdrop-overlay {
      width: 100%;
      height: 100vh;
      display: none;
      position: fixed;
      top: 100px;
      left: 0;
      background: rgba(0,0,0,.3);
      z-index: 0;
  }
  .header .header__nav--item.have-child-menu:hover ~ .backdrop-overlay {
      display: block;
  }
  /* LEFT CONTENT */
  .header .header__banner--content{
    display: flex;
    flex-direction: row;
    gap: 30px;
    align-items: center;
  }
  .header .header__banner--content p,
  .header .header__banner--content a {
    line-height: 1.3;
    margin: unset;
  }
  .header .header__banner--content p {
    font-size: 14px;
    font-weight: 500;
  }
  .header .header__banner--content a {
    font-size: 14px;
    text-transform: uppercase;
    text-decoration: underline;
    font-weight: 700;
  } 
  /* RIGHT CONTENT */ 
  .header .header__banner--btns {
    display: flex;
    flex-direction: row;
    gap: 20px;
    // margin-left: 20px;
  }
  .header .header__banner--btns a {
    font-size: 14px;
      font-weight: 400;
  }
  .header .header__banner--btns a:hover {
    text-decoration: underline;
  }
  @media (max-width: 991px){
    .header .header__banner--btns {
        display: none;
    }
    .header .header__banner-wrapper{
    justify-content: center;
    padding: 10px;
    }
    .header .header__banner-wrapper .header__banner--content {
        justify-content: center;
        flex-wrap: wrap;
        row-gap: 5px;
        text-align: center;
    }
  }
  
  /* NAVBAR BUTTONS */
  .header .header__nav--btns {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 10px;
  }
  .header .header__nav--btns .btn-primary {
    font-size: 16px;
    padding: 6px 28px;
  }
  .header .header__nav--btns .btn-secondary {
    font-size: 16px;
    padding: 6px 28px;
  }
  
  /* DESKTOP VIEW */
  /* CENTER LOGO VERTICALLY */
  .header .header__nav--logo-link {
  display: flex;
  flex-direction: column;
  justify-content: center;
  }
  /* NAVIGATION  */
  .header .header__nav--wrapper {
  display: flex;
  flex-direction: row;
  column-gap: 30px;
  align-items: stretch;
  justify-content: flex-start;
  height: 64px;
  align-items: center;
  }
  .header .header__nav--btns {
  margin-left: auto;
  }
  .header .header__nav--logo {
  max-width: 100px;
  }
  .header .header__nav {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  }
  .header .header__nav .header__nav--list {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  margin-bottom: unset;
  gap: 20px;
  height: 64px;
  justify-content: center;
      margin-top: 0;
  }
  .header .header__nav .header__nav--list li {
      margin-bottom: 0;
  }
  .header .header__nav--item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  z-index: 1;
  }
  .header .header__nav--item:hover > .header__nav--menu-title,
  .header .header__nav--item:hover > a {
  border-radius: 8px;
  background-color: #f8f8f8;
  }
  .header .header__nav--item > .header__nav--menu-title,
  .header .header__nav--item > a {
  font-size: 14px;
  font-family: 'Inter';
  color: #000;
  font-weight: 400;
  position: relative;
  padding: 10px 30px 10px 20px;
  border-radius: 8px;
  }
  .header .header__nav--item a {
  padding: 10px 20px;
  }
  
  .header .header__nav--item.have-child-menu .header__nav--menu-title::after {
  content: '>';
  position: absolute;
  right: 10px;
  transform: rotate(90deg) scaleY(1.4);
  transition: transform 0.3s ease;
  }
  .header .header__nav--item:hover .header__nav--menu-title::after {
  transform: rotate(270deg) scaleY(1.4);
  }
  /* SUB MENU*/
  .header .header__nav .header__nav--item.have-child-menu {
  cursor: pointer;
  user-select: none;
  }
  .header .header__nav .header__nav--item.have-child-menu .header__nav--menu-content {
  display: none;
  position: absolute;
  top: 100px; 
  left: 0;
  background: #fff;
  padding: 50px;
  width: 100%;
  cursor: default;
  }
  .header .header__nav--main.header__mobile--wrapper-sticky .header__nav--item.have-child-menu:hover .header__nav--menu-content {
    top: 60px;
  }
  .header .header__nav .header__nav--item.have-child-menu:hover .header__nav--menu-content {
  display: flex;
  flex-direction: row;
  }
  .header .header__nav .header__nav--item.have-child-menu .header__nav--menu-wrapper {
  margin-left: auto;
  margin-right: auto;
  max-width: 1140px;
  }
  
  /* BOX LINK STYLING */
  
  .header .header__nav--menu-content .header__nav--box-link {
  display: block;
  padding: 10px;
  margin-left: -10px;
  color: #000;
  }
  .header .header__nav--menu-content .header__nav--box-link:hover {
  background-color: #f8f8f8;
  border-radius: 8px;
  }
  
  .header .header__nav--menu-content .header__nav--box-link i {
  opacity: 0;
   margin-left: 10px;
  }
  .header .header__nav--menu-content .header__nav--box-link:hover i {
  opacity: 1;
  }
  .header .header__nav--box-link > p{
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    white-space: nowrap;
    align-items: center;
  }
  /* TITLES */
  .header .header__nav--box-title {
  font-weight: 600;
  font-size: 16px;
  }
  .header .header__nav--highlighted-link .header__nav--box-title {
  font-size: 32px;
  font-weight: 700;
  }
  
  .header .header__nav--title-2 {
  font-size: 27px;
  font-weight: 700;
  line-height: 1.2;
  }
  .header .header__nav--category-title {
  color: #43509b;
  text-transform: uppercase;
  font-weight: 500;
  font-size: 14px;
  margin-bottom: unset;
  }
  @media (max-width: 1022px) {
    .header .header__nav--category-title {
      font-weight: 600; 
    }
  }
  /* SPACER */
  .header__nav--col-2,
  .header__nav--col-3 {
  border-left: 1px solid #000;
  align-self: start;
  padding-left: 60px;
  margin-left: 60px;
  }
  /* NAVBAR - FEATURED HIGHLIGHTED */
  .header .header__nav--col-highlighted .header__nav--highlighted-link {
  margin-bottom: 20px;
  }
  
  .header .header__nav--col-highlighted .header__nav--content-btns {
  display: flex;
  flex-direction: row;
  align-items:flex-start;
  gap: 15px;
  }
  .header .header__nav--col-highlighted .btn-primary {
      width: 145px;
      display: block;
      padding: 6px 0;
      text-align: center;
      border-radius: 4px;
      font-family: Inter;
      font-size: 16px;
      font-style: normal;
      font-weight: 400;
      line-height: 24px;
  }
  .header .header__nav--col-highlighted .btn-secondary {
      width: 150px;
      border-radius: 4px;
      display: block;
      padding: 6px 0;
      text-align: center;
      font-family: Inter;
      font-size: 16px;
      font-style: normal;
      font-weight: 400;
      line-height: 24px;
  }
  /* NAVBAR - GRIDS */
  .header .header__nav .header__nav--col-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    row-gap: 10px;
    column-gap: 20px;
    width: 60%;
  }
  /* .header .header__nav .header__nav--col-grid > div {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  row-gap: 10px;
  column-gap: 20px;
  } */
  .header .header__nav .header__nav--col-grid > p.header__nav--category-title,
  .header .header__nav .header__nav--col-grid > p.header__nav--title-2{     
    grid-column: 1 / -1;
    margin-bottom: 0;
  }
  
  .header .header__nav .header__nav--col-grid > p.header__nav--category-title:not(:first-child) {
    margin-top: 15px;
  }
  
  .header .header__nav .header__nav--col-grid > a .header__navbar--box-description {
      font-family: Inter;
      font-size: 14px;
      font-style: normal;
      font-weight: 300;
      line-height: 24px;
  }
  .header .header__nav .header__nav--col-grid > a .header__navbar--box-description.text-gray span {
      color: #6a6a6a !important;
  }
  .header__nav--col-highlighted .header__navbar--box-description,
  .header__nav--col-highlighted .header__navbar--box-description span {
      color: #000 !important;
      font-family: Inter;
      font-size: 16px;
      font-style: normal;
      font-weight: 300;
      line-height: 28px;
  }
  /* NAVBAR - LIST */
  .header .header__nav--2-cols .header__nav--col-list > div {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  }
  .header .header__nav--3-cols .header__nav--col-list > div {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  }
  .header .header__nav--2-cols .header__nav--col-list .header__nav--category-title {
  grid-column: 1 / -1;
  }
  .header .header__nav--col-list .header__nav--box-link {
  background: transparent !important;
  font-size: 14px;
  font-weight: 700;
  padding: unset;
  padding-left: 10px;
  }
  .header .header__nav--col-list .header__nav--box-link i {
  margin-left: 10px;
  }
  .header .header__nav--col-list .header__nav--box-link:hover {
  color: #5959eb;
  }
  /* HEADER VIEW */
  @media (max-width: 1022px) {
  .header .header__nav--wrapper {
    display: none;
  }
  .header .mobile__header {
    display: block;
  }
  }
  @media (min-width: 1023px){
    .header .header__mobile--wrapper {
        display: none;
    }
  }
  /* MOBILE VIEW */
  .header .header__mobile--menu {
    transform: translateX(0);
    transition: .4s ease-in-out;
  }
  .header .header__mobile--menu.mobile__menu--hidden {
    transform: translateX(calc(-120vw - 100px));
  }
  .header .header__mobile--wrapper {
    padding: 20px;
    background: #FFF;
  }
  .header .header__mobile--wrapper-sticky {
    position: fixed;
    top: 0;
    width: 100%;
  }
  .header .header__mobile--bar {
    display: flex;
    flex-direction: row;
    gap: 30px;
    justify-content: space-between;
  }
  .header .header__mobile--bar .header__mobile--hamburger{
    cursor: pointer;
  }
  .header .header__mobile--menu {
    display: flex;
    flex-direction: column;
    gap: 20px;
    background: #FFF;
    padding: 20px 10px;
    width: 100%;
    height: 100vh;
    position: fixed;
    left: 0;
    top: 0;
    overflow-y: scroll;
  }
  .header .header__mobile--menu .mobile__menu--top{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    
  }
  .header .mobile__menu--cta-wrapper {
    display: flex; 
    width: 100%;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 20px;
    align-items: center;
  }
  .header .mobile__menu--cta-wrapper .header__mobile--btn  {
    padding: 6px 20px;
    font-size: 14px;
    font-family: 'Inter';
  }
  .header .mobile__menu--cta-wrapper .header__mobile--link {
    color: #000;
    font-family: 'Inter';
    font-size: 14px;
    font-weight: 500;
  }
  .header .mobile__menu--cta-wrapper .header__mobile--link:hover {
    text-decoration: underline;
  }
  @media (max-width: 560px){
    .header .mobile__menu--cta-wrapper {
        max-width: 300px;
    }
  }
  /* MOBILE ACCORDION */ 
  .header .mobile-nav.accordion-js {
    margin: unset;
    border: unset; 
  }
  .header .mobile-nav.accordion-js .acc_section,
  .header .mobile-nav.accordion-js .acc_head {
    border: unset;
    background: unset;
    color: #000;
  }
  .header .mobile-nav.accordion-js .acc_section {
    border-bottom: 1px solid #d6d6d6;
    
  }
  .header .mobile-nav.accordion-js .acc_head {
    font-weight: 600;
    font-size: 16px;
    padding: 15px 0;
  }
  .header .mobile-nav.accordion-js .acc_content {
    padding: unset;
    display: flex;
    flex-direction: column;
  }
  .header .mobile-nav.accordion-js .mobile__menu--tab-item{
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 10px;   
    margin-bottom: 20px;
  }
  
  .header .mobile-nav.accordion-js .mobile__menu--tab-item .mobile__menu--link {
    color: #000;
  }
  @media (max-width: 1022px){
      .header .mobile__menu--nav .header__nav--category-title:not(:first-child) {
          margin-top: 20px;
      }    
  }
  
  /* CHEVRON ARROW */
  .header .mobile-nav.accordion-js .acc_head:not(.mobile__menu--tab-link)::after {
    content: "";
    display: block;
    border-right: 1px solid #000;
    border-bottom: 1px solid #000;
    width: 4px;
    height: 4px;
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
    transition: transform .3s ease;
  }
  .header .acc_section.acc_active .acc_head:not(.mobile__menu--tab-link)::after {
    transform: translateY(-50%) rotate(225deg);
  }
  
  /* NAVBAR BUTTONS  */
  @media (min-width: 1023px) and (max-width: 1300px){
      .header .header__nav--logo-link{
          width: 100px;
      }
      .header .header__nav .header__nav--list {
          gap: 40px;
      }
      .header .header__nav--btns {
          gap: 12px;
      }
      .header .header__nav--btns .btn-primary {
          padding: 6px;
          font-size: 13px;
      }
      .header .header__nav--btns .btn-secondary {
          padding: 6px 20px;
          font-size: 13px;
      }
  }
  
  
  
  header.header .header__nav--main-wrapper {
      height: 64px;
      display: flex;
      flex-direction: column;
      justify-content: center;
  }
  @media (max-width: 1022px){
   header.header .header__nav--main-wrapper {
       display: none;
      }   
      header.header .header__mobile {
          height: 64px;
      }
  }
  .header__mobile--wrapper-sticky {
      animation: headerFixedTop .3s ease;
      top: 0;
  }
  
  @keyframes headerFixedTop {
      from {
          opacity: 0;
          transform: translatey(-100px);
      }
      top {
          opacity: 1;
          transform: translatey(0);
      }
  }
  
  @media (min-width: 1023px) and (max-width: 1300px){
      .header .header__nav{
          width: 47%;
      }
      .header .header__nav .header__nav--list {
          gap: unset;
          justify-content: space-between;
          width: 100%;
          padding-left: unset;
      }
  }
  
  /* new list and text codes*/
  .header__nav--col-list-text .list_text__container {
          display: grid;
      grid-template-columns: repeat(3, 1fr);
      border-top: 1px solid;
      padding-top: 30px;
  }
  .header__nav--col-list-text {
      width: 50%
  }
  .header__nav--col-list-text .list_text__container a p {
      margin-bottom: 0;
  }
  .header__nav--col-list-text .list-text__text-container {
      margin-bottom: 20px;
  }
  .header__nav--col-list-text .list-text__text-container p {
      gap: 10px;
  }
  .header__nav--col-list-text .list-text__text-container p i {
     font-size: 20px;
  }
  .header__nav--col-list-text .list_text__container .header__nav--category-title {
          grid-column: 1 / -1;
  }
  
  /*Submenu color*/
  header .list_text__container .header__nav--box-link:hover .text-black {
      
      color: #5959eb!important;
  }
  .header__nav--col-list-text .list_text__container .header__nav--box-link i {
      margin-left: 8px;
  }
  .header__nav--col-2.header__nav--col-list .header__nav--box-link:hover {
       color: #5959eb;
  }
  .list_text__container .header__nav--box-link:hover {
      background: transparent!important;
      color: #5959eb;
  }
  .header__nav--col-2.header__nav--col-list .header__nav--box-link:hover .text-black{
          color: #5959eb;
  
  }
  .header__nav--col-3 .header__nav--box-link:hover .text-black {
       color: #5959eb;
  }
  
  /* PF header */
  .custom_header_for_pf {
    width: 100%;
    max-width: 1250px;
    margin: 0 auto;
    padding: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 64px;
  }
  @media screen and (max-width: 1300px) {
    .custom_header_for_pf {
      width: 100%;
      padding: 20px;
    }
  }
   
  .btn-mobile-primary {
    padding: 5px 28px;
    color: #ffffff;
    background-color: #0F8461;
    border: 2px solid #0F8461;
    border-radius: 4px;
  }

  .btn-mobile-secondary {
    padding: 5px 28px;
    color: #0F8461;
    background-color: #ffffff;
    border: 2px solid #0F8461;
    border-radius: 4px;
  }

  .btn-mobile-text {
    padding: 5px 0;
    color: #000000;
    border: 2px solid transparent;
    border-radius: 4px;
  }
  