* {
  box-sizing: border-box;
}

/* To make REM useful as measurement across the entire site for the fonts. */
html {
  font-size: 100%;
}

body {
  text-align: center;
}

h2,
h3,
h4,
h5,
h6 {
}

h1 {
  font-family: Helvetica, Arial, sans-serif;
  font-size: 3rem;
  line-height: 1.5;
  color: white;
}

h2 {
  font-family: Helvetica, Arial, sans-serif;
  font-size: 50px;
  line-height: 1.4;
  font-weight: bold;
}

p {
  font-family: Helvetica, Arial, sans-serif;
  font-weight: semibold;
  font-size: 20px;
  line-height: 1.4;
}

h3 {
  font-size: 1rem;
  font-weight: 700;
}

ul li {
  display: inline;
  text-decoration: none;
  font-family: Helvetica, Arial, sans-serif;
  font-weight: semi-bold;
  font-size: 17px/1.4em;
}

a {
  text-decoration: none;
  font-family: Helvetica, Arial, sans-serif;
  font-weight: semi-bold;
  font-size: 1.2rem;
  color: #204475;
}

header {
  background-color: black;
  padding: 1rem;
}

/* nav {
  font-family: Helvetica, Arial, sans-serif;
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.2);
  background-color: rgb(250, 250, 250);
  padding: 1rem 0 1rem;
  margin-bottom: 3rem;

  display: flex;
  justify-content: center;
  flex-direction: row;
  text-align: center;
}

nav a {
  color: black; 
  padding: 0 2rem;
}

nav a:hover{
  color: #204475;
} */

/* General styles for nav */
nav {
  font-family: Helvetica, Arial, sans-serif;
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.2);
  background-color: rgb(250, 250, 250);
  padding: 1rem 0 1rem;
  margin-bottom: 3rem;
}

/* Style links */
nav a {
  color: black; 
  padding: 0 2rem;
  text-decoration: none;
}

nav a:hover {
  color: #204475;
}

/* Large screen layout */
@media (min-width: 769px) {
  nav {
    display: flex;
    justify-content: center;
    flex-direction: row;
    text-align: center;
  }

  .menu-toggle {
    display: none; /* Hide toggle button */
  }

  .menu {
    display: flex; /* Show menu as a horizontal row */
    flex-direction: row;
  }

  .menu li {
    margin: 0; /* Adjust margin for inline display */
  }
}

/* Small screen layout for specific menu item - menu items with two words, to get them on top of each other */
@media (max-width: 1164px) {
  .split-text a {
    display: inline-flex; /* Enable flexible layout for text */
    flex-direction: column; /* Stack text vertically */
    text-align: center; /* Center align text */
  }
}


/* Small screen layout */
@media (max-width: 768px) {
  nav {
    position: relative; /* Make nav the positioning context */
    display: flex;
    justify-content: center; /* Center the button */
    align-items: center; /* Vertically center the button if needed */
    text-align: center;
  }

  .menu {
    display: none; /* Hide the menu by default */
    position: absolute; /* Position relative to nav */
    top: 100%; /* Position just below the button */
    left: 0;
    right: 0; /* Stretch the menu to the full width of the screen */
    background: white;
    border: 1px solid #ccc;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    padding: 1rem 0;
    z-index: 1000; /* Ensure the menu appears above other elements */
  }

  .menu.active {
    display: block; /* Show the menu when active */
  }

  .menu li {
    margin: 5px 0; /* Stack links vertically */
  }

  .menu a {
    display: block; /* Ensure links are block-level elements for full-width clicking */
    padding: 1rem; /* Add padding for better click targets */
    text-align: center; /* Center-align text */
  }

  .menu-toggle {
    display: inline-block;
    background: #007bff;
    color: white;
    border: none;
    padding: 10px 20px; /* Adjust padding for a better look */
    cursor: pointer;
    font-size: 16px;
    border-radius: 5px; /* Optional: Rounded corners for the button */
  }

  .menu-toggle:focus {
    outline: none;
  }
}




main {
  padding-top: 2rem;
}

footer {
  font-family: Helvetica, Arial, sans-serif;
  box-shadow: 0 -2px 4px 0 rgba(0, 0, 0, 0.2);
  background-color: rgb(250, 250, 250);
  padding: 1rem 0 1rem;
  padding-bottom: 3rem;
}

.emailFormWrapper {
  margin-top: 2rem;
  margin-bottom: 5rem;
}

.colored-section {
  background-color: #ff4c68;
  color: #000;
}

.white-section {
  background-color: white;
}

/* #middle, #right{
  display: flex;
  justify-content: center;
  align-items: center;

  text-align: center;
  
} */

.button {
  border: 2px solid #204475;
  border-radius: 30px;
  padding: 20px 40px;
  font-weight: bold;
}

/* .navbar {
  font-family: Helvetica, Arial, sans-serif;
  padding: 0 0 4.5rem;
  box-shadow: 0 2px 4px 0 rgba(0,0,0,.2);
  background-color: rgb(250, 250, 250);
} */

/* .navbar-brand {
  font-family: "Ubuntu";
  font-size: 2.5rem;
  font-weight: 900;
  color: #204475;
}

.nav-item {
  padding: 0 18px;
}

.nav-link {
  
  font-family: "Raleway", sans-serif;
  font-weight: semi-bold;
  font-size: 17px/1.4em;
  color: #204475;
} */

.title {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  border: solid black 1px;
  width: 100%;
}
