header#masthead {
    padding: 20px 0;
    background-color: var(--Light);
    transition: all 0.3s ease;
  }
  
  header#masthead .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  header#masthead.sticky {
    background-color: #EBF3FF;
    z-index: 999;
    top: 0;
    position: sticky;
    padding: 20px 0;
    transition: all 0.3s ease;
}
  /* header#masthead.sticky .site-branding img,
  header#masthead .site-branding img {
    width: 289px;
    transition: all 0.3s ease;
  } */
#primary-menu {
  display: flex;
  gap: 20px;
}
#primary-menu .menu-item a,
.sticky .menu-item a {
    font-weight: 700;
    font-size: 20px;
    line-height: 100%;
    color: var(--Green);
}
a.btn_gradient {
    font-weight: 700;
    font-size: 26px;
    line-height: 100%;
    text-transform: uppercase;
    color: var(--Light);
    padding: 16.5px 20px;
    border-radius: 10px;
    background: linear-gradient(90deg, #00569C 0%, #3EBC08 100%);
    z-index: 99;
}

a.btn_gradient_org {
    font-weight: 700;
    font-size: 26px;
    line-height: 100%;
    text-transform: uppercase;
    color: var(--Light);
    padding: 16.5px 20px;
    border-radius: 10px;
    background: linear-gradient(90deg, #E17C00 0%, #FFAA43 100%);
    z-index: 99;
}