* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif, "Trebuchet MS", "Lucida Sans Unicode", "Lucida Grande", "Lucida Sans", Arial, sans-serif;
  cursor: default;
  transition: 0.2s ease;
  color: #333333;
  font-size: 14px;
}

body {
  background: #ffffff;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 600;
}

h1 {
  font-size: 22px;
}

h2 {
  font-size: 18px;
}

h3 {
  font-size: 16px;
}

h4 {
  font-size: 15px;
}

h5 {
  font-size: 14px;
}

h6 {
  font-size: 13px;
}

a {
  text-decoration: none;
  cursor: pointer;
  font-weight: 600;
}
a * {
  cursor: pointer;
}

.button {
  background: #f1f1f1;
  padding: 5px 20px;
  border-radius: 5px;
  box-shadow: 0 0 2px rgba(0, 0, 0, 0.2509803922);
  font-weight: normal;
}
.button:hover {
  box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2509803922);
}

header {
  background: #ffffff;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1450980392);
}
header .logo {
  display: flex;
  align-items: center;
  gap: 20px;
}
header .logo img {
  max-height: 50px;
}
header .logo h1 {
  font-weight: normal;
  color: #000000;
}
header input {
  padding: 5px 20px;
  border-radius: 5px;
  box-shadow: 0 0 2px rgba(0, 0, 0, 0.2509803922);
  border: none;
  width: 300px;
  outline: none;
}
header input:hover, header input:focus {
  box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2509803922);
}
header .iconsNav {
  display: none;
}
header .iconsNav i {
  font-size: 25px;
}
header .iconsNav #closeIcon {
  display: none;
}
@media screen and (max-width: 1090px) {
  header .iconsNav {
    display: block;
  }
}
header nav {
  display: flex;
  align-items: center;
  gap: 10px;
}
@media screen and (max-width: 1090px) {
  header nav {
    display: none;
    width: 100%;
    margin: 20px auto 10px;
    grid-template-columns: 1fr;
  }
  header nav button {
    width: 100%;
    display: flex;
  }
}

main {
  margin: 20px;
}
main #pageTitle {
  margin-bottom: 20px;
}
main #subMenu {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 20px;
}
main .documents-container {
  display: grid;
  grid-template-columns: 1fr;
  margin-bottom: 20px;
  gap: 20px;
}
main .documents-container .doc-link {
  display: flex;
  align-items: center;
  width: 100%;
  padding: 20px;
  background: #f1f1f1;
  border-radius: 5px;
  box-shadow: 0 0 2px rgba(0, 0, 0, 0.2509803922);
  font-weight: normal;
}
main .documents-container .doc-link:hover {
  box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2509803922);
}

footer {
  background: #ffffff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1450980392);
  padding: 10px 20px;
  text-align: center;
}
footer * {
  font-size: 12px;
}/*# sourceMappingURL=index.css.map */