@import url("https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,400;0,600;1,400;1,600&display=swap");
#hamburger-input {
  display: none;
}

#hamburger-wrapper {
  position: relative;
  width: 2rem;
  height: 2rem;
  cursor: pointer;
}

#hamburger-icon {
  position: absolute;
  top: 0;
  right: 0.2rem;
  left: 0.2rem;
  width: auto;
  height: 100%;
}

/* MENU ICON */
.hamburger-lines,
.hamburger-lines:before,
.hamburger-lines:after {
  position: absolute;
  display: block;
  width: 100%;
  left: 0;
  background: #FFFFFF;
  transition: 0.3s;
}

.hamburger-lines {
  height: 3px;
  margin-top: -2px;
  top: 50%;
}

.hamburger-lines:before,
.hamburger-lines:after {
  content: "";
  height: 100%;
  /* Try different values here: .25rem, .5rem, .2rem, 5rem, 10rem... */
  transform-origin: 5rem center;
}

.hamburger-lines:before {
  top: 8px;
}

.hamburger-lines:after {
  top: -8px;
}

/* CLOSE ICON */
#hamburger-input:checked ~ label .hamburger-lines {
  background: transparent;
}

#hamburger-input:checked ~ label .hamburger-lines:before,
#hamburger-input:checked ~ label .hamburger-lines:after {
  top: 0;
  transform-origin: 50% 50%;
}

#hamburger-input:checked ~ label .hamburger-lines:before {
  transform: rotate3d(0, 0, 1, 45deg);
}

#hamburger-input:checked ~ label .hamburger-lines:after {
  transform: rotate3d(0, 0, 1, -45deg);
}

#hamburger-input-label {
  display: none;
}

.menu {
  width: 100%;
  padding: 0;
  text-transform: uppercase;
  background-color: #232323;
  border-top: 3px #dd3333 solid;
  font-size: 14px;
  font-weight: 600;
}
.menu nav {
  width: 100%;
  padding: 0 40px 0 40px;
  max-width: 1220px;
  margin: auto;
}
.menu ul {
  display: flex;
  flex-direction: row;
  justify-content: start;
  width: 100%;
  padding: 0;
  gap: 0;
}
.menu ul li {
  margin: 0;
  list-style-type: none;
  list-style-position: inside;
}
.menu ul li a {
  padding: 10px 12px 10px 12px;
  color: white;
  text-decoration: none;
  display: inline-block;
}
.menu ul li a:hover, .menu ul li a.active {
  background-color: #dd3333;
  color: white;
}

@media screen and (max-width: 1000px) {
  #hamburger-input-label {
    display: block;
  }
  #menu-items {
    display: none;
  }
  #hamburger-input:checked ~ #menu-items {
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin-top: 5px;
    align-items: flex-start;
  }
  .menu-button {
    border: none;
    border-radius: 1.5rem;
  }
}
body {
  font-family: "Open sans", sans-serif;
}

.content-wrapper {
  margin: auto;
  max-width: 1220px;
  padding: 40px;
}

.branding-row {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 30px;
  padding-top: 20px;
  padding-bottom: 20px;
}
.branding-row h1 {
  color: #dd3333;
  font-size: 46px;
}

@media screen and (max-width: 600px) {
  .branding-row {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }
}
.btn-primary-color {
  background-color: #dd3333;
  border-color: #dd3333;
}
.btn-primary-color:hover {
  background-color: #bd2020;
  border-color: #a81c1c;
}

.my-card {
  margin-bottom: 40px;
  border: none;
  border-radius: 1px;
}

footer {
  background-color: #232323;
  color: white;
}

main table {
  margin-top: 1em;
  width: 100%;
  text-align: left;
  background-color: rgba(0, 0, 0, 0.02);
}
main table th {
  border-bottom: #dd3333 3px solid;
}
main table tr:hover {
  background-color: rgba(0, 0, 0, 0.05);
}
main table td, main table th {
  padding: 0.5em;
}
main table td p, main table th p {
  margin-bottom: 0;
}

a {
  color: #dd3333;
  text-decoration: none;
}
a:hover {
  color: #bd2020;
}

/*# sourceMappingURL=hasici.css.map */
