.top-menu {
  background-color: #082c4b;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 1000;
  position: relative;
  opacity: 1;
}
.top-menu .brand {
  font-size: 14px;
  display: flex;
  align-items: center;
  text-decoration: none;
  background-color: #082c4b;
  padding-top: 20px;
  padding-bottom: 20px;
  padding-left: 20px;
  padding-right: 20px;
}
.top-menu .brand .logo {
  height: 30px;
  margin-right: 8px;
}
.top-menu .brand .name {
  color: #ffffff;
  font-weight: 600;
  font-size: 15.4px;
}
.top-menu .navigation {
  list-style: none;
  display: flex;
  margin: 0;
  padding: 0;
  justify-content: space-between;
  gap: 20px;
  background-color: #082c4b;
  padding-top: 20px;
  padding-bottom: 20px;
  padding-left: 20px;
  padding-right: 20px;
}
.top-menu .navigation a {
  color: #ffffff;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.4s;
}
.top-menu .navigation a:hover, .top-menu .navigation a.active {
  color: #ee212b;
}
.top-menu .toggle {
  display: none;
}
.top-menu .toggle a.toggle-button {
  cursor: pointer;
  margin-right: 20px;
  padding: 20px;
}
.top-menu .toggle a.toggle-button span {
  vertical-align: middle;
}

.home.top-menu {
  background-color: transparent;
}
.home.top-menu .brand {
  background-color: transparent;
}
.home.top-menu .navigation {
  background-color: transparent;
}

.nav-backdrop {
  display: block;
  position: fixed;
  top: 0;
  left: -100vw;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 900;
  transition: left 0.4s ease-in-out;
}

footer {
  text-align: center;
  background-color: #082c4b;
  color: #ffffff;
  font-size: 14px;
}
footer .section {
  padding: 20px 20px;
}
footer .section .cards {
  display: flex;
  gap: 20px;
  margin-top: 0;
}
footer .section .cards .icon {
  margin-bottom: 10px;
}
footer .section .cards .icon span {
  padding: 20px;
  background-color: #315575;
  border-radius: 15px;
  display: inline-block;
  font-size: 35px;
}
footer .section .cards .info .label {
  margin-top: 20px;
  font-weight: 600;
  font-size: 16.8px;
}
footer .section .cards .info .value {
  font-size: 14px;
  color: #ffffff;
  font-weight: 400;
  margin-top: 10px;
}
footer .section .copyright {
  margin-bottom: 0;
}

@media screen and (max-width: 768px) {
  .top-menu {
    position: fixed;
    top: 0;
    left: -370px;
    height: 100vh;
    flex-direction: column;
    align-items: flex-start;
    box-shadow: rgba(0, 0, 0, 0.45) 0px 5px 2px;
    width: 370px;
    justify-content: flex-start;
    transition: left 0.2s ease-in-out;
  }
  .top-menu > .brand {
    z-index: 1000;
    opacity: 0.5;
    transition: opacity 0.2s ease-in-out;
  }
  .top-menu > .navigation {
    z-index: 1000;
    flex-direction: column;
    justify-content: flex-start;
    padding-top: 40px;
    gap: 30px;
    opacity: 0.5;
    transition: opacity 0.2s ease-in-out;
  }
  .top-menu > .navigation a {
    padding: 10px 0;
  }
  .top-menu .toggle {
    z-index: 500;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #082c4b;
    color: #ffffff;
    opacity: 1;
  }
  .top-menu .backdrop {
    left: -100vw;
    transition: left 0.4s ease-in-out;
  }
  .top-menu.expanded {
    left: 0;
    transition: left 0.4s ease-in-out;
  }
  .top-menu.expanded > .brand {
    opacity: 1;
    transition: opacity 0.4s ease-in-out;
  }
  .top-menu.expanded > .navigation {
    opacity: 1;
    transition: opacity 0.4s ease-in-out;
  }
  .nav-backdrop.expanded {
    display: block;
    left: 0;
    transition: left 0.2s ease-in-out;
  }
  .home.top-menu {
    background-color: #082c4b;
  }
  .home.top-menu .brand {
    background-color: #082c4b;
  }
  .home.top-menu .navigation {
    background-color: #082c4b;
  }
  footer .section .cards .card {
    padding-bottom: 0;
  }
  footer .section .copyright {
    margin-top: 40px;
  }
}
