.cta-list {
  width: 100%;
}
.cta-list a {
  position: relative;
  float: left;
  width: 100%;
  padding: 20px;
  border-radius: 6px;
  background-color: #ffffff;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}
@media (max-width: 768px) {
  .cta-list a {
    padding: 20px 10px;
  }
}
.cta-list a h4 {
  width: 90%;
  font-weight: normal;
  color: #0060e0 !important;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.cta-list a h4:before {
  content: "\25CF";
  color: #fc852d;
  display: inline-block;
  width: 1em;
  margin-left: 0;
}
.cta-list a p {
  width: 90%;
  font-weight: 400;
  color: #04242F !important;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.cta-list a:hover {
  background-color: #0060e0;
}
.cta-list a:hover h4 {
  color: #fff !important;
}
.cta-list a:hover p {
  color: #fff !important;
}
.cta-list a:hover:after {
  opacity: 1;
  color: #fff !important;
}
