html,
body {
  height: 100%;
  margin: 0;
  padding: 0;
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
  line-height: 1.5;
  color: #ffffff;
  background-color: #ffffff;
  scroll-behavior: smooth;
}
h2 {
  margin: 0;
}
a:link {
  color: #ffffff;
  text-decoration: none;
}
a:visited {
  color: #ffffff;
  text-decoration: none;
}
a:hover {
  color: #ffffff;
  text-decoration: none;
  cursor: pointer;
}
a:active {
  color: #ffffff;
}
#container {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  -webkit-overflow-scrolling: touch;
  align-items: center;
}
#header {
  display: flex;
  width: 100%;
  height: 80px;
  background-color: #00162a;
  color: white;
  align-items: center;
  border-bottom: 1px solid #696969;
}
#logo {
  display: flex;
  width: 100px;
  height: 80px;
}
#header-title {
  display: flex;
  width: 350px;
  height: 60px;
  font-size: 32px;
  align-items: center;
}
/*-----NAVIGATION----------------------------*/
#nav {
  display: flex;
  width: 100%;
  height: 60px;
  font-size: 16px;
  font-weight: bold;
  align-items: center;
  justify-content: right;
  word-spacing: 1em;
  letter-spacing: 0.1em;
  padding-right: 50px;
}
#header-links-desktop {
  display: flex;
  width: 60%;
  height: 100px;
  justify-content: center;
  align-items: center;
  font-weight: bold;
  word-spacing: 5em;
}
#mobile-nav-toggle,
#mobile-nav-links {
  display: none;
}
/*-----END NAVIGATION----------------------*/
#hero {
  display: flex;
  width: 100%;
  height: 600px;
  background-color: #171b4f;
  justify-content: center;
  align-items: center;
}
#hero-text-wrap {
  display: flex;
  flex-direction: column;
  width: 40%;
  height: auto;
  margin-right: 50px;
}
#hero-text {
  display: flex;
  width: 100%;
  height: auto;
  font-size: 48px;
  font-weight: bold;
  line-height: 54px;
  margin-top: 50px;
}
#hero-byline {
  display: flex;
  width: 100%;
  height: auto;
  font-size: 18px;
  padding-top: 20px;
}
#hero-image {
  display: block;
  width: auto;
  height: 600px;
}
#body-container {
  display: flex;
  flex-direction: row;
  width: 69%;
  height: auto;
  background-color: #ffffff;
  color: #000000;
  padding-top: 100px;
}
#body-container-left {
  display: flex;
  flex-direction: column;
  width: 50%;
  height: auto;
}
#body-container-right {
  display: flex;
  flex-direction: column;
  width: 50%;
  height: auto;
  line-height: 28px;
  padding-left: 50px;
  border-left: 1px solid #cccccc;
}
#body-headline {
  display: flex;
  width: 90%;
  height: auto;
  margin: 0;
  color: #171b4f;
  font-weight: bold;
}
#body-text {
  display: flex;
  width: 90%;
  padding-bottom: 50px;
}
#footer {
  display: flex;
  position: relative;
  flex-direction: column;
  width: 100%;
  height: auto;
  align-items: center;
  background-color: #000000;
}
#footer-heading {
  display: flex;
  width: 69%;
  height: 100px;
  align-items: flex-end;
  font-size: 30px;
  padding-bottom: 20px;
  border-bottom: 1px solid white;
}
#footer-middle {
  display: flex;
  flex-direction: row;
  width: 69%;
  height: auto;
  font-size: 14px;
  align-items: center;
  padding-top: 50px;
}
#footer-mid-left-wrap {
  display: flex;
  width: 31%;
  height: 150px;
  align-items: center;
}
#footer-mid-lef-logo {
  display: flex;
  width: 150px;
  height: 150px;
  align-items: center;
  justify-content: center;
  border-radius: 100px;
  border: 1px solid white;
}
#footer-mid-left-text {
  display: flex;
  width: 200px;
  height: 100px;
  font-size: 28px;
  align-items: center;
  padding-left: 20px;
}
#footer-links-wrapper {
  display: flex;
  width: 75%;
  height: auto;
  justify-content: right;
}
.footer-links {
  display: flex;
  width: 200px;
  height: auto;
  line-height: 24px;
}
#footer-bottom {
  display: flex;
  width: 69%;
}
#footer-legal {
  display: flex;
  width: 100;
  height: 120px;
  font-size: 14px;
  margin-top: 50px;
  padding-top: 20px;
  border-top: 1px solid white;
}

/*--MOBILE DEVICES--------------------------------*/
@media (max-width: 768px) {
  #nav {
    display: flex;
    width: 100%;
    height: 60px;
    font-size: 16px;
    font-weight: bold;
    align-items: center;
    justify-content: right;
    word-spacing: 1em;
    letter-spacing: 0.1em;
    padding-right: 0;
  }
  #hero {
    display: flex;
    flex-direction: column-reverse;
    width: 100%;
    height: auto;
    background-color: #171b4f;
    justify-content: center;
    align-items: center;
  }
  #hero-text-wrap {
    display: flex;
    flex-direction: column;
    width: 80%;
    height: auto;
    margin-right: 0;
    padding-bottom: 50px;
    justify-content: center;
    align-items: center;
  }
  #hero-text {
    font-size: 32px;
    line-height: 40px;
  }
  @supports (-moz-appearance: none) {
    #hero-text {
      font-size: 28px;
      line-height: 40px;
    }
  }
  #hero-byline {
    display: flex;
    width: 100%;
    height: auto;
    font-size: 18px;
    padding-top: 20px;
  }
  #hero-image {
    display: block;
    width: 100%;
    height: auto;
  }
  #hero-image img {
    width: 100%;
  }
  #body-container {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: auto;
    justify-content: center;
    align-items: center;
    margin-top: 0;
  }
  #body-container-left {
    display: flex;
    flex-direction: column;
    width: 90%;
    height: auto;
    justify-content: center;
    align-items: center;
    margin-top: 0;
  }
  #body-container-right {
    display: flex;
    flex-direction: column;
    width: 80%;
    height: auto;
    line-height: 28px;
    padding-left: 0;
    border-left: 0;
  }
  #footer {
    margin-bottom: 20px;
  }
  #footer-heading {
    font-size: 24px;
  }
  #footer-middle {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: auto;
    font-size: 14px;
    align-items: center;
    padding-top: 50px;
  }
  #footer-mid-left-wrap {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 250px;
    align-items: center;
  }
  #footer-mid-lef-logo {
    display: flex;
    width: 150px;
    height: 150px;
    align-items: center;
    justify-content: center;
    border-radius: 100px;
    border: 1px solid white;
  }
  #footer-mid-left-text {
    display: flex;
    width: 200px;
    height: 100px;
    font-size: 28px;
    align-items: center;
    justify-content: center;
    padding-left: 20px;
  }
  #footer-links-wrapper {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: auto;
    align-items: center;
  }
  .footer-links {
    display: flex;
    width: 200px;
    height: auto;
    line-height: 24px;
    justify-content: center;
    margin-bottom: 10px;
  }
  #footer-bottom {
    display: flex;
    width: 75%;
    padding-bottom: 20px;
  }
  #footer-legal {
    display: flex;
    width: 100%;
    height: auto;
    font-size: 14px;
    margin-top: 50px;
    padding-top: 20px;
    border-top: 1px solid #3b3b3b;
  }
  /*NAVIGATION----------------------*/
  #desktop-nav-links {
    display: none;
  }
  #mobile-nav-toggle {
    display: flex;
    width: 50px;
    justify-content: center;
    align-items: center;
    padding: 12px 0;
    margin-top: 0;
    font-size: 18px;
    font-weight: bold;
    border-radius: 6px;
    cursor: pointer;
  }
  #mobile-nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 60px;
    right: 0;
    z-index: 9999;
    width: 100%;
    gap: 0;
    padding: 0;
    align-items: center;
    margin-top: 10px;
    padding-top: 20px;
    padding-bottom: 30px;
    background-color: #00162a;
    justify-content: center;
  }
  #mobile-nav-links.active {
    display: flex;
  }
  #header-links-desktop {
    display: none;
  }
  #header-links {
    display: none;
  }
  #header-links.active {
    display: flex;
  }
}
