

/*---------Sync Additions-------------*/
/*------adjust for flyouts------------*/

.nav--light .nav__list--flyout li:hover>a{
background-color: #fff;
color: #0076FF;

}

/*--------add divider after second nav element to match XD design------------*/
#navlink_header_nav_1_2::after {
content: "";
  border-inline-start-style: solid;
  border-inline-start-width: 1px;
  margin-inline-start: 1.2rem;
  border-inline-start-color: #7B8495;
  margin-inline-end: -28px;
  padding-inline-start: 1.2rem;
  pointer-events: none;
}


#fcta1 .header_cta {
display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    justify-content: space-between !important;
}

/*--------------------Dropdown chevron arrows incase not using theme settings-------------------*/
/* li.nav__item.nav__item--branch::after  {
  display: inline-block;
  content: "\f078"; 
  font-family: "FontAwesome";
  padding-left: 5px;
  white-space: nowrap;
  font-size: 12px;
  width: 1em;

} */

.go2-nav {
    display: flex;
/*     width: 100%; */
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: space-around;
    align-items: stretch;

}
.go2-nav_container {
    display: flex;
    width: 100%;
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: space-around;
    align-items: stretch;
  box-shadow: rgba(0, 17, 143, .1) 0 3px 6px 0 inset;
background: rgb(230,241,255);
background: -moz-linear-gradient(105deg, rgba(204,238,232,1) 0%, rgba(230,241,255,1) 80%);
background: -webkit-linear-gradient(105deg, rgba(204,238,232,1) 0%, rgba(230,241,255,1) 80%);
background: linear-gradient(105deg, rgba(204,238,232,1) 0%, rgba(230,241,255,1) 80%);
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=“#cceee8”,endColorstr=“#e6f1ff”,GradientType=1);

}
/* .go2-nav_container {
    display: flex;
    width: 100%;
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: space-around;
    align-items: stretch;
background: rgb(230,245,253);
background: -moz-linear-gradient(0deg, rgba(230,245,253,1) 83%, rgba(202,223,245,1) 100%);
background: -webkit-linear-gradient(0deg, rgba(230,245,253,1) 83%, rgba(202,223,245,1) 100%);
background: linear-gradient(0deg, rgba(230,245,253,1) 83%, rgba(202,223,245,1) 100%);
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#e6f5fd",endColorstr="#cadff5",GradientType=1);

} */

/* Animations */

@keyframes sticky_header_active {
  from {
    opacity: 0;
    transform: scale(1.1) translateY(-50%);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0%)
  }
}

@keyframes sticky_header_inactive {
  from {
    transform: translateY(20%);
  }
  to {
    transform: translateY(0%);
  }
}

/* Sticky element */

.header--sticky-active .header__sticky-element {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 6;
}

/* Fixes HS editor overlapping problem */

.hs-inline-edit .header--sticky-active .header__sticky-element {
  z-index: 2147483599;
}

/* Main section */

.header__section--main {
  padding-top: 0;
  padding-bottom: 0;
  background: #ffffff; /*-----------------Sync Adjust for consistant cover---------------*/
}

.header--sticky-inactive .header__section--main {
  animation: .2s ease-in-out sticky_header_inactive;
}

.header--sticky-active .header__section--main {
  box-shadow: 0px 8px 16px rgba(39, 47, 61, 0.05), 0px 4px 8px rgba(39, 47, 61, 0.05);
  animation: .2s ease-in-out sticky_header_active;
}

.header__section--main .header__center {
  position: relative;
  padding-top: 1rem;
  padding-bottom: 0rem;
  margin-bottom: 1rem; /*------Sync Adjust to XD design---------------*/
}

.header--sticky-active .header__section--main .header__center {
  padding-top: .5rem;
  padding-bottom: 0rem;
  margin-bottom: 1rem; /*------Sync Adjust to XD design---------------*/
}

/* Elements */

.header:not(.header--overlap) .header__logo__overlap,
.header--overlap .header__logo__static,
.header--sticky-active .header__logo__overlap,
.header--sticky-active .header__logo__static,
.header--sticky:not(.header--sticky-active) .header__logo__sticky {
  display: none;
}

.header .nav {
  position: static;
}

/*------------Disabled to match design------------- 
.header:not(.header--overlap) .nav__mega {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
} */

.header__search,
.header__lang {
  margin-inline-start: 1.2rem;
}

.header--wo-lang .header__lang {
  display: none;
}


/*-------------Sync Adjust to button in header------------*/
/* .header__search,
.header--wo-search .header__lang {
  padding-inline-start: 1.2rem;
  border-inline-start: 1px solid;
} */

/* .header:not(.header--overlap) .header__buttons__overlap,
.header--overlap .header__buttons__static,
.header--sticky-active .header__buttons__overlap,
.header--sticky-active .header__buttons__static,
.header--sticky:not(.header--sticky-active) .header__buttons__sticky {
  display: flex;
} */

/*-------------Sync Adjust to button in header------------*/
.header__buttons {
display: flex;
    flex-wrap: nowrap;
    align-content: center;
    align-items: center;
  padding-right: 20px;
}
.header__buttons .inline-items > *:first-child {
  margin-inline-start: 1.2rem;
 padding-left: 25px;
    padding-right: 25px;

}

.header__buttons .inline-items > *:first-child:hover {
  margin-inline-start: 1.45rem;


}

.header--wo-search.header--wo-lang .header__buttons .inline-items > *:first-child {
  margin-inline-start: 2rem;
}

.header__mobile-nav {
  display: none;
}

/* Responsive */

@media (max-width: 1139px) {
  .header__nav {
    display: none;
  }
  
  @media (max-width: 1139px) {
   .go2-nav_container {
    display: none;
  }
  
  .header__search,
  .header--wo-search .header__lang {
    margin-inline-start: 0;
    padding-inline-start: 0;
    border-inline-start: none;
  }
  
  .header__mobile-nav {
    display: block;
    margin-inline-start: 1.2rem;
    order: 3;
  }
  
  .mnav-active {
    overflow: hidden;
  }
}

@media (max-width: 767px) {

  .header__search,
  .header__lang {
    margin-inline-start: 0;
  }

  .header__search {
    order: 2;
  }
  
  .header__lang {
    order: 1;
  }
  
  .header--w-search .header__lang {
    margin-inline-end: 1.2rem;
  }
  
  .header__buttons {
    display: none;
  }
  /*---------------Adjust for logo on mobile----------------*/
  .header__logo__sticky {
  position: fixed;
  width: 150px;
  top: 1rem;
  left: 1.2rem;
  z-index: 6;
}
  .header__logo__static{
    position: fixed;
  width: 180px;
  top: 1rem;
  left: 1.2rem;
  z-index: 6;
  }
}

/* Color scheme */



  .header,
  .header__section--main {
    background: #fff;
  }
  
  .header__search,
  .header--wo-search .header__lang {
    border-inline-start-color: #84909A;
  }

  @media (max-width: 767px) {
    .header__lang {
      border-inline-end-color: #84909A;
    }
  }

