/* Transportation-specific styling for the "popular links" (aka homepage quicklinks) */
.ts-links {
  position: relative;
  margin-left: -15px;
  margin-top: 15px;
  background-color: #fff;
}
.ts-links ul {
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
}
.ts-links.five ul li a {
}
.ts-links ul li {
  flex: auto;
}
.ts-links ul li a {
  font-family: "Encode Sans Compressed", sans-serif;
  color: #4b2e83;
  font-weight: 800;
  text-align: center;
  display: block;
  margin: 5px auto;
  text-transform: uppercase;
  border-right: 1px solid #EBEBEB;
  line-height: 1.3;
  font-size: 17px;
  -webkit-box-shadow: 0 0 4px rgba(164, 164, 164, 0.5);
  box-shadow: 0 0 4px rgba(164, 164, 164, 0.5);
  border-radius: 50%;
  width: 150px;
  height: 150px;
  padding-top: 20px;
  text-decoration: none;
}
.ts-links ul li a:before {
  transition: all .1s ease-in-out;
  padding-bottom: 3px;
}
.ts-links ul li a:hover:before {
  transform: scale(1.125);
  color: #4b2e83;
  transform-origin: center center;
}
