h1.medical-head {
  font-size: 18px;
  margin: 0;
  padding-top: 20px;
  padding-bottom: 5px;
  border-bottom: 3px solid #e5e5e5;
}

@media screen and (max-width: 768px) {
  h1.medical-head {
    padding-left: 20px;
    padding-right: 20px;
  }
}

.medical-list {
  list-style: none;
  margin-top: 0;
  padding: 20px 0;
}

@media screen and (max-width: 768px) {
  .medical-list {
    padding-left: 20px;
    padding-right: 20px;
  }
}

.medical-list li {
  display: block;
  padding: 10px 0;
  font-size: 16px;
}

.medical-list a {
  display: block;
  position: relative;
  color: #333;
  border: 1px solid #e5e5e5;
  border-radius: 4px;
  padding: 12px 14px 11px;
  transition: color .15s;
}

.medical-list a:hover {
  color: #999999;
}

.medical-list a:hover::after {
  right: 16px;
}

.medical-list a::after {
  content: '';
  position: absolute;
  top: 17px;
  right: 22px;
  width: 10px;
  height: 10px;
  border-left: 1px solid #b2b2b2;
  border-top: 1px solid #b2b2b2;
  -webkit-transform: rotate(135deg);
          transform: rotate(135deg);
  transition: right .15s;
}