html,
body {
  height: 100%;
  margin: 0;
  padding: 0;
  font-family: "Ubuntu", sans-serif;
  font-size: 18px;
  line-height: 1.5;
  color: #ffffff;
  background-color: #00162a;
  scroll-behavior: smooth;
}
.ubuntu-light {
  font-family: "Ubuntu", sans-serif;
  font-weight: 300;
  font-style: normal;
}
.ubuntu-regular {
  font-family: "Ubuntu", sans-serif;
  font-weight: 400;
  font-style: normal;
}
.ubuntu-medium {
  font-family: "Ubuntu", sans-serif;
  font-weight: 500;
  font-style: normal;
}
.ubuntu-bold {
  font-family: "Ubuntu", sans-serif;
  font-weight: 700;
  font-style: normal;
}
.ubuntu-light-italic {
  font-family: "Ubuntu", sans-serif;
  font-weight: 300;
  font-style: italic;
}
.ubuntu-regular-italic {
  font-family: "Ubuntu", sans-serif;
  font-weight: 400;
  font-style: italic;
}
.ubuntu-medium-italic {
  font-family: "Ubuntu", sans-serif;
  font-weight: 500;
  font-style: italic;
}
.ubuntu-bold-italic {
  font-family: "Ubuntu", sans-serif;
  font-weight: 700;
  font-style: italic;
}
h1 {
  margin-bottom: 0;
}
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;
}
#nav {
  display: flex;
  position: absolute;
  top: 0;
  flex-direction: row;
  width: 100%;
  height: 65px;
  font-family: Georgia, "Times New Roman", Times, serif;
  justify-content: right;
  align-items: center;
  background-color: transparent;
  transition: 0.8s;
}
#nav:hover {
  background-color: #00162a;
  transition: 0.3s;
}
#nav-bottom {
  display: flex;
  position: absolute;
  top: 0;
  width: 100%;
  height: 65px;
  opacity: 0.2;
  border-bottom: 1px solid #ffffff;
}
#header-title {
  display: flex;
  width: 48%;
  height: 50px;
  font-size: 24px;
  align-items: center;
}
#links-top {
  display: flex;
  width: 700px;
  height: 50px;
  font-family: "Ubuntu", sans-serif;
  font-size: 14px;
  gap: 1.5em;
  align-items: center;
  position: relative;
}
#links-top a {
  color: white;
  text-decoration: none;
  padding: 5px 0;
}
#links-top a:hover {
  color: #ffffff;
  text-decoration: none;
}
#links-top a:active {
  color: #ffffff;
}
#links-top a:visited {
  color: #ffffff;
}
/*--DROPDOWN MENU------------------------*/
.dropdown {
  position: relative;
}
.dropdown-menu {
  display: none;
  position: absolute;
  top: 20px;
  left: 0;
  background-color: #00162a;
  /*--BLUR BG
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  */
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
  /*--BORDER WITH OPACITY
  border: 1px solid rgba(255, 255, 255, 0.2);
  */
  min-width: 150px;
  padding: 10px;
  flex-direction: column;
  z-index: 1000;
}
.dropdown-menu a {
  display: block;
  padding: 8px 12px;
  white-space: nowrap;
}
.dropdown-menu a:hover {
  background: transparent;
}
.dropdown:hover .dropdown-menu {
  display: flex;
}
/*--END DROPDOWN MENU--------------------*/
#searchbar {
  display: flex;
  width: 200px;
  height: 30px;
  font-size: 18px;
  justify-content: right;
  align-items: center;
  border-radius: 30px;
  border: 1px solid #ffffff;
  opacity: 0.2;
  padding-right: 10px;
  margin-right: 20px;
}
#hero {
  display: flex;
  width: 100%;
  height: 600px;
  min-height: 595px;
  background-image: url(../images/hero01b.jpg);
  background-size: contain;
  background-color: #000000;
}
#body-section01 {
  display: flex;
  flex-direction: column;
  width: 80%;
  height: 1000px;
  font-family: Georgia, "Times New Roman", Times, serif;
  margin-top: 50px;
}
.body-heading {
  display: flex;
  width: 100%;
  height: auto;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
@media (min-width: 769px) {
  #mobile-nav-toggle {
    display: none;
  }
  #mobile-nav-links {
    display: none;
  }
}
/*--MOBILE DEVICES------------------------------------------*/
@media (max-width: 768px) {
  #hero {
    display: flex;
    width: 100%;
    height: 150px;
    min-height: 150px;
    margin-top: 65px;
    background-image: url(../images/hero01b.jpg);
    background-size: cover;
    background-position: top center;
    background-repeat: no-repeat;
    background-color: #000000;
  }
  #links-top {
    display: none;
  }
  #searchbar {
    display: none;
  }
  #nav {
    justify-content: left;
  }
  #header-title {
    width: 100%;
    padding-left: 20px;
  }
  #mobile-nav-toggle {
    display: flex;
    width: 50px;
    justify-content: center;
    align-items: center;
    padding: 12px 0;
    margin-top: 0;
    margin-right: 20px;
    font-size: 18px;
    font-weight: bold;
    border-radius: 6px;
    cursor: pointer;
  }
  #mobile-nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 55px;
    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;
    color: #ffffff;
  }
  #mobile-nav-links.active {
    display: flex;
    color: #ffffff;
  }
}
