summary {
  position: relative;
  display: inline-flex !important;
  align-items: center;
  cursor: pointer !important;
  outline: 0;
  border: 0;
  vertical-align: middle;
  text-decoration: none;
  background: 0 0;
  padding: 0;
  font-size: inherit;
  font-family: inherit;
}

summary.learn-more {
  min-width: 15rem;
  width: auto;
  height: 3rem;
  position: relative;
}

summary.learn-more .circle {
  transition: all .45s cubic-bezier(.65, 0, .076, 1);
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  display: block;
  margin: 0;
  width: 3rem;
  height: 3rem;
  background: #000a56;
  border-radius: 1.625rem;
}

summary.learn-more .circle .icon {
  transition: all .45s cubic-bezier(.65, 0, .076, 1);
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  background: #fff;
}

summary.learn-more .circle .icon.arrow {
  transition: all .45s cubic-bezier(.65, 0, .076, 1);
  left: .625rem;
  width: 1.125rem;
  height: .125rem;
  background: 0 0;
}

summary.learn-more .circle .icon.arrow::before {
  position: absolute;
  content: '';
  top: -.25rem;
  right: .0625rem;
  width: .625rem;
  height: .625rem;
  border-top: .125rem solid #fff;
  border-right: .125rem solid #fff;
  transform: rotate(45deg);
}

summary.learn-more .button-text {
  transition: all .45s cubic-bezier(.65, 0, .076, 1);
  position: relative;
  padding: .5rem 1rem .5rem 0;
  margin: 0 0 0 3.5rem;
  color: #000a56;
  font-weight: 700;
  line-height: 1.6;
  text-align: center;
  white-space: nowrap;
  z-index: 1;
}

summary:hover .circle {
  width: 100%;
  height: 100%;
  border-radius: 1.625rem;
}

summary:hover .circle .icon.arrow {
  background: #fff;
  transform: translate(1rem, 0);
}

summary:hover .button-text {
  color: #fff;
}