/* SASS variables generated from media-sizes.json */
.button-primary {
  background-color: #5ab52b;
  color: #000000;
}

.button-secondary {
  background-color: #c0e1b8;
  color: #000000;
}

.hover-background-primary-lightest:hover {
  background-color: #eff4fb;
  color: #162c40;
  transition: color 0.2s;
}

.theme-info {
  background-color: #294a71;
  color: #ebf9e8;
}

.theme-info-alt {
  background-color: #c0e1b8;
  color: #294a71;
}

.theme-header {
  color: #294a71;
}

.theme-icon {
  color: #294a71;
}
.theme-icon svg {
  fill: currentColor;
  stroke: currentColor;
}

.theme-link {
  color: #325989;
  transition: color 0.2s;
}
.theme-link:active {
  color: #294a71;
}
.theme-link:hover {
  color: #7090b5;
}

.theme-icon-alt {
  color: #c0e1b8;
}
.theme-icon-alt svg {
  fill: currentColor;
  stroke: currentColor;
}

.theme-section-header {
  background-color: #294a71;
  color: #ddf1d9;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  margin-bottom: 50px;
  padding: 40px 20px 40px 20px;
}
.theme-section-header p {
  color: #ddf1d9;
}

.theme-divider {
  height: 5px;
  width: 100%;
  background-color: #294a71;
  margin: 15px 0px;
}

.theme-cta {
  color: #325989;
}

.theme-section-alt-header {
  background-color: #eff4fb;
  color: #294a71;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.theme-section-alt-header p {
  color: #1f3b58;
  margin: 0px;
}

.theme-background {
  background-color: whitesmoke;
}

.theme-section {
  background-color: #eff4fb;
  color: #000000;
  margin-top: 50px;
}

.theme-subsection {
  background-color: #ddf1d9;
  color: #294a71;
}
.theme-subsection h1 h2 h3 {
  color: #294a71;
}
.theme-subsection p {
  color: #1f3b58;
  margin: 5px;
}
.theme-subsection p.profile-experience {
  margin-top: 20px;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  /* Ensure it stays above all other content */
  background-color: white;
  /* Solid background to avoid transparency issues */
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  /* Optional: Add a shadow for visual separation */
}

/* Base Styles */
.mobile-container {
  max-width: 100%;
  margin: 0 auto;
  padding: 0px 0px;
  background-color: white;
  height: auto;
  color: white;
  border-radius: 0;
}

.topnav {
  overflow: visible;
  /* Allow dropdown to be visible */
  background-color: white;
  position: relative;
  width: 100%;
  margin: 0;
  /* Remove margin */
  padding: 0;
  /* Remove padding */
  box-sizing: border-box;
  display: flex;
  justify-content: space-between;
  align-items: center;
  /* Vertically center the items */
  padding: 5px 10px 5px 0px;
}

.topnav #myLinks {
  display: none;
  flex-direction: column;
  /* Arrange links in a column */
  position: absolute;
  top: 100%;
  /* Position below the topnav */
  left: 0;
  width: 100%;
  /* Make sure the dropdown takes the full width */
  background-color: #294a71;
  /* Match the background color */
  z-index: 1;
  /* Ensure it appears above other content */
}

.topnav #myLinks a {
  padding: 14px 16px;
  text-decoration: none;
  font-size: 17px;
  display: block;
}

.topnav a {
  color: white;
  padding: 14px 16px;
  text-decoration: none;
  font-size: 17px;
  display: block;
}

.topnav a:visited {
  color: none;
}

button.nav-hamburger-icon {
  background: white;
  /* Change the background color of the icon */
  color: #294a71;
  /* Change the text (line) color of the icon */
  display: block;
  position: relative;
  /* Set to relative for proper alignment */
  cursor: pointer;
  padding: 5px 10px;
  /* Adjust padding for better click area */
  border: none;
  /* Remove default button border */
}

button.nav-hamburger-icon:hover {
  background-color: #eff4fb;
  /* Change the background color on hover */
  color: #294a71;
  border-radius: 2px;
  /* Keep the text (line) color on hover */
}

.active {
  background-color: #5ab52b;
  color: #eff4fb;
}

.logo {
  display: flex;
  align-items: center;
}

.logo a {
  padding: 0;
  /* Remove default padding */
  margin: 0;
  /* Remove default margin */
}

.logo img {
  max-width: 150px;
  /* Set a maximum width for mobile */
  height: auto;
}

.hamburger-icon {
  width: 25px;
  /* Adjust the size of the hamburger icon */
  height: auto;
}

.topnav .desktop-links {
  display: flex;
  /* Show desktop links by default */
  flex-grow: 1;
  /* Allow the links to grow and take up available space */
  justify-content: flex-end;
  /* Center links */
  align-items: center;
  margin-left: auto;
  margin-right: auto;
}

.topnav .desktop-links a {
  color: #294a71;
  /* Set desktop link text color */
  padding: 14px 20px;
  text-decoration: none;
  font-size: 17px;
  display: inline-block;
  /* Align desktop menu items horizontally */
}
.topnav .desktop-links a:hover {
  border-bottom: 3px solid #7090b5;
  margin-bottom: -3px;
}

.topnav .mobile-links {
  display: none;
  border-bottom: 2px solid #a2b7d5;
  /* Hide mobile links by default */
}

/* Mobile styles */
@media (max-width: 767px) {
  .topnav .desktop-links {
    display: none;
    /* Hide desktop links on mobile */
  }
  @supports (-webkit-touch-callout: none) {
    header {
      position: sticky;
      /* Ensure it's still fixed on mobile */
      top: 0;
      left: 0;
      width: 100%;
      z-index: 1000;
    }
    /* CSS specific to iOS devices */
  }
}
/* Tablet styles */
@media (min-width: 768px) {
  .logo img {
    max-width: 200px;
    /* Set a maximum width for tablet */
  }
  .topnav {
    justify-content: space-between;
    /* Distribute space between logo and links */
  }
  button.nav-hamburger-icon {
    display: none;
    /* Hide hamburger icon on tablet */
  }
  #myLinks {
    display: none;
    /* Ensure mobile links are hidden */
  }
}
/* Desktop styles */
@media (min-width: 1024px) {
  .logo img {
    max-width: 250px;
    /* Set a maximum width for desktop */
  }
  .mobile-container {
    display: flex;
    align-items: center;
    flex-direction: column;
  }
  .topnav {
    max-width: 1400px;
    padding: 5px 90px;
  }
  .topnav .desktop-links a {
    display: inline-block;
    /* Align desktop menu items horizontally */
    padding: 14px 20px;
  }
  button.nav-hamburger-icon {
    display: none;
    /* Hide hamburger icon on desktop */
  }
  .mobile-links {
    display: none;
    /* Ensure mobile links are hidden */
  }
}

/*# sourceMappingURL=header.css.map */
