.path {
  background-color: steelblue;
  text-align: center;
  margin-bottom: 32px;
  margin-left:32px;
  padding: 20px 20px;
}

.path h2 {
  font-family: 'Saira', sans-serif;
  text-decoration: underline;
  color: black;
}

.path li {
  font-family: 'Saira', sans-serif;
  color: white;
}

.path2 {
  background-color: steelblue;
  text-align: center;
  margin-bottom: 32px;
  margin-left:32px;
  padding: 20px 20px;
}

.path2 h2 {
  text-align: center;
  font-family: 'Saira', sans-serif;
  text-decoration: underline;
  color: black;
}

.path2 li {
  text-align: center;
  font-family: 'Saira', sans-serif;
  color: white;
}

.path2 ol {
  text-align: center;
}

$pri: 128CFC;
$sec: fffffe;
$dark-pri: 0B5AA2;
.wrapper {
  box-sizing: border-radius;
  font-family: 'Rubik', sans-serif;
}

.container {
  border: 1px solid black;
  position: absolute;
  top: 0; right: 0; bottom: 0; left: 0;
  margin: auto;
  display: grid;
  place-items: center;
  background-color: steelblue;
}

.items {
  width: 300px;
  background: white;
  box-shadow: 0 3px 6px rgba(black,0.16), 0 3px 6px rgba(black,0.23);
  border-top: 10px solid #0B5AA2;
}

.items-head p {
  padding: 5px 20px;
  margin: 10px;
  color: darkblue;
  font-weight: bold;
  font-size: 20px;
}

.items-head hr {
  width: 20%;
  margin: 0px 30px;
  border: 1px solid #0B5AA2;
}

.items-body {
  padding: 10px;
  margin: 10px;
  display: grid;
  grid-gap: 10px;
}

.items-body-content {
  color: darkblue;
  padding: 10px;
  padding-right: 0px;
  display: grid;
  grid-template-columns: 10fr 1fr;
  // background-color: lightblue;
  font-size: 13px;
  grid-gap: 10px;
  border: 1px solid transparent;
  cursor: pointer;
}

.items-body-content:hover {
  border-radius: 15px;
  border: 1px solid darkblue;
}

.items-body-content i {
  align-self: center;
  font-size: 15px;
  color: darkblue;
  font-weight: bold;
  animation: icon 1.5s infinite forwards;
}
