.address-location {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  width: fit-content;
  max-width: 620px;
  margin: 18px 0 0;
  color: #10251d;
  text-decoration: none;
  font-size: 14px;
  line-height: 1.45;
}
.address-location span {
  display: grid;
  place-items: center;
  flex: 0 0 28px;
  height: 28px;
  border-radius: 50%;
  background: #2c56a3;
  color: #fff;
  font-size: 13px;
  transition: .25s;
}
.address-location:hover { text-decoration: underline; text-underline-offset: 4px; }
.address-location:hover span { background: #d88422; transform: translateY(-2px); }
