/*body*/
body {
  margin: 0;
  background: #005f7f;
}
/*nav bar*/
nav {
  background-color: #003d4d;
  padding: 30px 40px;
  display: flex;
  justify-content: flex-end;
}

.navbar {
  list-style: none;
  display: flex;
  gap: 30px;
  padding: 0;
  margin: 0;
}

.nav-item {
  margin: 0 15px;
  position: relative;
}

.nav-item a {
  color: white;
  text-decoration: none;
  font-weight: bold;
  padding: 10px 15px;
  font-size: 1.2rem;
}

.nav-item.active::before {
  content: "";
  position: absolute;
  top: -10px;
  left: 0;
  width: 100%;
  height: 4px;
  background-color: red;
  border-radius: 2px;
}

/*map*/
.cmm-usa {
  display: block;
  margin: 0 auto;
  margin-top: 10px;
  position: relative;
  padding: 20px;
}
.cmm-usa svg {
  width: 100%;
  z-index: 99;
}
.cmm-usa svg path {
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-miterlimit: 10;
}
.cmm-usa-hover-state-info {
  position: relative;
  margin: -40px auto 20px auto;
  display: none;
  box-sizing: border-box;
  padding: 0.75em;
  width: 300px;
  border-radius: 10px;
  box-shadow: 0 0 20px #999;
  font-size: 14px;
  z-index: 100;
}
.cmm-usa-hover-state-info span {
  display: block;
  line-height: 1.5em;
}
.cmm-usa-hover-state-info span:first-child {
  font-weight: bold;
  text-align: center;
}
.cmm-usa-listview {
  width: 100%;
  text-align: center;
  margin: 1em 0;
}
.cmm-usa-listview ul {
  vertical-align: top;
  list-style: none;
  display: inline-block;
  text-align: left;
  margin: 0;
  padding: 0;
}
.cmm-usa-listview ul li {
  padding: 0;
  margin: 0;
}
.cmm-usa-listview ul li span {
  display: inline-block;
  position: relative;
  height: 12px;
  width: 12px;
  border-radius: 12px;
  color: black;
  text-align: center;
  line-height: 12px;
  font-weight: bold;
  border: 1px solid #999;
  opacity: 1;
  margin-right: 0.5em;
}
.cmm-usa-listview ul li span::after {
  content: "\2B9E";
  position: relative;
  color: #333;
  font-size: 12px;
}
.cmm-usa-listview ul li a {
  display: inline-block;
  margin: 0.5em 1em 0.5em 0;
  color: #ccc;
  text-decoration: none;
}
.cmm-usa-listview ul li a.cmm-usa-live-link {
  color: #000;
  text-decoration: underline;
  cursor: pointer;
}
.cmm-usa-title {
  width: 100%;
  text-align: center;
  font-weight: bold;
}

/*footer*/
footer {
  width: 100%;
  text-align: center;
  padding: 30px 0;
}
