<style>
body {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 16px;
    background-color: #131351;
    color: #F6F6FD;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  color: #131351;
  font-family: 'Exo 2', sans-serif;
}
h1 {
  font-size: 36px;
}
h2 {
  font-size: 26px;
}
h3 {
  font-size: 23px;
}
h4 {
  font-size: 20px;
}
h5 {
  font-size: 18px;
}
h6 {
  font-size: 16px;
}

a {
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  font-size: 16px;
  color: #2081C3;
  text-decoration: none;
}

a:hover {
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  color: #F6F6FD;
}

p {
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  font-size: 16px;
  color: #131351;
}

table, th, td {
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  font-size: 16px;
  color: #131351;
}
ul, ol, li {
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  font-size: 16px;
  color: #131351;
}





header {
    display: flex;
    justify-content: space-between;
    padding: 1em;
    max-width: 100%;
}
.logo {
    width: 576px;
}
.call {
    display: flex;
    align-items: center;
}





nav {
    display: flex;
    flex-wrap: nowrap;
    max-width: 100%;
}

.nav-container.active {
  display: block;
}

nav a {
    flex-grow: 1;
    text-align: center;
    font-family: 'Exo 2', sans-serif;
    font-weight: 700;
    font-size: 18px;
    color: #131351;
    float: left;
    display: block;
    padding: 14px 10px;
    text-decoration: none;
    border-radius: 0px;
    margin: 0 0px;
    background: linear-gradient(to bottom, #ffffff 0%, #e0e0e0 25%, #c0c0c0 50%, #a0a0a0 100%);
    box-shadow: 0px 0px 5px rgba(0,0,0,0.2);
}

nav a.active {
  font-family: 'Exo 2', sans-serif;
  font-weight: 700;
    color: #3A7CA5;
}
nav a:hover {
  font-family: 'Exo 2', sans-serif;
  font-weight: 700;
    color: #3A7CA5;
    box-shadow: 0px 0px 5px rgba(0,0,0,0.5);
}





.hamburger-menu {
    align-self: flex-end;
    display: block;
    cursor: pointer;
    z-index: 3;
}
.bar {
    background-color: #F6F6FD;
    height: 3px;
    margin: 3px 0;
    width: 30px;
    transition: transform 0.2s ease;
}
.mobile-nav-container.active + .hamburger-menu .bar:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
}

.mobile-nav-container.active + .hamburger-menu .bar:nth-child(2) {
    opacity: 0;
}

.mobile-nav-container.active + .hamburger-menu .bar:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
}





.banner img {
    width: 100%;
    height: 375px;
    object-fit: cover;
}
main {
    margin: 1in;
    background-color: #f6f6fd;
    padding: 1em;
}
.content img {
    width: 100%;
}
.first-section,
.second-section {
    display: flex;
    justify-content: space-between;
}
.second-section div,
.first-section img {
    flex: 1;
}
.first-section div,
.second-section img {
    flex: 2;
}
table {
    width: 100%;
    border-collapse: collapse;
}
table, th, td {
    border: 2px solid black;
}
th, td {
    padding: 8px;
    text-align: left;
}




footer {
    background-color: black;
    color: #F6F6FD;
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 16px;
    padding: 20px;
    width: 100%;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.footer-col {
    flex-basis: calc(25% - 10px);
    margin: 5px;
}

.footer-logo {
    width: 250px;
}

.map iframe {
    width: 250px;
    height: 150px;
}

#footer-menu,
#footer-resource-menu {
    display: flex;
    flex-direction: column;
}

.footer-bottom {
    margin-top: 20px;
}

footer h1, footer h2, footer h3, footer h4, footer h5, footer h6, footer p, footer body, footer li, footer ol, footer ul, footer tr, footer td, footer th {
  color: #F6F6FD !important;
}

footer a {
  color: #2081C3 !important;
}

footer a:hover {
  color: #F6F6FD !important;
}






.contact-form {
  width: 100%;
  max-width: 600px;
  padding: 20px;
  border: 1px solid #ccc;
  border-radius: 5px;
  box-shadow: 0px 0px 10px #aaa;
}
label {
  font-weight: bold;
  display: inline-block;
  width: 100px;
  margin-bottom: 10px;
}
input[type="text"],
input[type="email"],
textarea {
  width: 100%;
  padding: 10px;
  margin: 5px 0 20px 0;
  border: 1px solid #ccc;
  border-radius: 4px;
}
textarea {
  resize: vertical;
}
.submit-button {
  background-color: #4CAF50;
  color: white;
  padding: 14px 20px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}





@media (max-width: 768px) {
    header {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .logo {
        width: 80%;
    }

    .call p {
        font-size: 14px;
        text-align: center;
    }

    nav {
        flex-wrap: wrap;
        display: none;
    }
    nav a {
        font-size: 14px;
        padding: 10px 5px;
    }
    .nav-container.active {
        display: flex;
        flex-direction: column;
    }

  .hamburger-menu {
    z-index: 3;
  }

  .mobile-nav-container.active {
    display: flex;
  }

.mobile-nav-container {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 40px;
    width: 100%;
    left: 0;
    right: 0;
    background-color: #F6F6FD;
    z-index: 2;
}
.mobile-nav-container.active {
  display: flex;
}
.mobile-nav-item {
    width: 100%;
    text-align: left;
    padding: 14px 20px;
    background: linear-gradient(to bottom, #ffffff 0%, #e0e0e0 25%, #c0c0c0 50%, #a0a0a0 100%);
    color: #131351;
    font-size: 18px;
    font-weight: 700;
    text-decoration: none;
    border-radius: 0px;
    margin: 0 0px;
    box-shadow: 0px 0px 5px rgba(0,0,0,0.2);
}
.mobile-nav-item a {
  text-decoration: none;
  color: #131351;
}
.mobile-nav-item:hover {
    background: #3A7CA5;
    color: #F6F6FD;
}
    .banner {
        display: none;
    }
    main {
        margin: 16px;
    }
    .first-section,
    .second-section {
        flex-direction: column;
    }
    .first-section img,
    .second-section img {
        margin-bottom: 16px;
    }
    table, th, td {
        font-size: 14px;
    }
    .first-section,
    .second-section {
        padding-bottom: 20px;
    }
    .footer-col {
        flex-basis: 100%;
    }
  .contact-form {
    width: 80%;
    max-width: 90%;
    padding: 15px;
    box-shadow: none;
  }
  label {
    display: block;
    width: auto;
    margin-bottom: 5px;
  }

  input[type="text"],
  input[type="email"],
  textarea {
    width: 100%;
  }
}





@media (min-width: 768px) {
    .hamburger-menu {
        display: none;
    }
  .mobile-nav-container {
    display: none;
  }
    main {
        padding-left: 90px;
        padding-right: 90px;
    }
    .first-section,
    .second-section {
        padding-bottom: 50px;
        padding-right: 30px;
    }
    .image1-desktop-padding {
        padding-right: 30px;
    }
    .image2-desktop-padding {
        padding-left: 30px;
    }
    .footer-logo {
        margin-top: -35px;
        margin-left: -25px;
       }
    .footer-bottom {
        min-width: 100%;
        border-top-width: 1px;
        border-bottom-width: 0px;
        border-left-width: 0px;
        border-right-width: 0px;
        border-color: #F6F6FD;
        border-style: solid;
       }
}
.submit-button:hover {
  background-color: #45a049;
}
</style>