@charset "UTF-8";
html {
  overflow: -moz-scrollbars-vertical;
  overflow-y: scroll;
}
body {
  margin: 0 auto;
  font-family: "Roboto Condensed", sans-serif;
}
.announcement {
  background: #1b75bc;
  height: 24px;
}
a {
  text-decoration: none;
}
header ul {
  list-style: none;
  margin: 0;
  font-weight: 600;
  letter-spacing: 1px;
}
header span {
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: 28px;
  color: #939598;
  position: relative;
  bottom: 14px;
  left: 10px;
}

.header {
  position: sticky;
  top: 0;
  width: 100%;
  max-width: 1280px;
  padding: 10px 0;
  margin: 0 auto;
  background: #fff;
}

.logo {
  display: inline-block;
  margin-left: 10px;
}

.logo img {
  width: 50px;
}

/* Nav menu */
.nav {
  width: 100%;
  height: 100%;
  position: fixed;
  background-color: #fff;
  overflow: hidden;
}
.menu a {
  display: block;
  padding: 30px;
  color: var(--white);
}
.menu a:hover {
  background-color: var(--gray);
}
.nav {
  max-height: 0;
  transition: max-height 0.5s ease-out;
}

/* Menu Icon */
.hamb {
  cursor: pointer;
  float: right;
  padding: 40px 20px;
} /* Style label tag */

.hamb-line {
  background: #111;
  display: block;
  height: 2px;
  position: relative;
  width: 24px;
} /* Style span tag */

.hamb-line::before,
.hamb-line::after {
  background: #111;
  content: "";
  display: block;
  height: 100%;
  position: absolute;
  transition: all 0.2s ease-out;
  width: 100%;
}
.hamb-line::before {
  top: 5px;
}
.hamb-line::after {
  top: -5px;
}

.side-menu {
  display: none;
} /* Hide checkbox */

/* Toggle menu icon */
.side-menu:checked ~ nav {
  max-height: 100%;
}
.side-menu:checked ~ .hamb .hamb-line {
  background: transparent;
}
.side-menu:checked ~ .hamb .hamb-line::before {
  transform: rotate(-45deg);
  top: 0;
}
.side-menu:checked ~ .hamb .hamb-line::after {
  transform: rotate(45deg);
  top: 0;
}

section {
  margin: 0 auto;
  max-width: 1280px;
  display: block;
}

.hero-section {
  background: linear-gradient(
      90deg,
      rgba(0, 0, 0, 1) 0%,
      rgba(0, 0, 0, 0.8) 40%,
      rgba(0, 0, 0, 0.7) 65%,
      rgba(0, 0, 0, 0) 100%
    ),
    url(../../website/images/fingerprints.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  height: 400px;
}

.hero-content {
  color: #fff;
  display: flex;
  flex-direction: column;
  max-width: 605px;
  margin: 0 0 0 50px;
}

.hero-section h1 {
  font-size: 34px;
  margin: 80px 0 16px 0;
}

.hero-section h3,
.hero-section p {
  margin: 0 0 20px 0;
}
.hero-section button {
  width: 200px;
  padding: 10px;
  background: #1b75bc;
  border-radius: 4px;
  border: 1px solid #1b75bc;
  color: #fff;
  font-family: "Roboto Condensed", sans-serif;
  font-size: 16px;
  letter-spacing: 1px;
  cursor: pointer;
}

.row {
  display: flex;
  margin: 0 10px;
}

.col {
  display: flex;
  flex-direction: column;
  width: 350px;
  padding: 0 30px;
}

.main-content .col.middle {
  border-left: 1px solid;
  border-right: 1px solid;
}

.main-content h2 {
  text-align: center;
  margin: 50px 0;
}

.main-content h3 {
  color: #1b75bc;
  text-align: center;
}

.database {
  border: 1px solid #dcdcdc;
  border-radius: 4px;
  background-color: #eee;
  box-shadow: 2px 2px 10px 0px rgba(0, 0, 0, 0.2);
  padding: 10px 30px 20px 30px;
  margin: 50px 20px;
}

footer {
  background: #dcdcdc;
  height: 100px;
}

.footer {
  max-width: 1280px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0 auto;
  padding: 28px 0 0 0;
}

footer nav,
footer nav ul {
  display: flex;
}

footer nav ul li {
  list-style: none;
  font-size: 14px;
  margin-right: 30px;
}
footer nav ul li a {
  color: #111;
}

footer .copyright {
  margin: 0 0 0 20px;
}

.about-section,
.contact-section,
.license-section {
  margin: 50px 50px 115px 50px;
}

.contact-section a {
  text-decoration: none;
  color: #000;
}

.contact-section a:hover {
  text-decoration: underline;
  color: #1b75bc;
}

.contact footer {
  bottom: 0;
}

footer {
  position: absolute;
  width: 100%;
}

.container {
  position: relative;
  min-height: 100vh;
}

/* Responsiveness */
@media (min-width: 868px) {
  .nav {
    max-height: none;
    top: -10px;
    position: relative;
    float: right;
    width: fit-content;
    background-color: transparent;
  }
  .menu li {
    float: left;
  }
  .menu a:hover {
    background-color: transparent;
    color: var(--gray);
  }

  .hamb {
    display: none;
  }
  .about footer {
    bottom: 0;
  }
}

@media (max-width: 768px) {
  .hero-section h1 {
    font-size: 30px;
    margin: 50px 0 16px 0;
  }
  .row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
  .main-content .col.middle {
    border-left: none;
    border-right: none;
  }
  .footer {
    padding: 20px 0 0 0;
  }
  footer .copyright,
  footer nav ul li {
    font-size: 12px;
    margin-right: 10px;
  }
}
