/* Base CSS for Button*/

.text-button {
  border: 1px solid #ffffff;
  border-radius: 14px;
  font-size: 17px;
  display: inline-block;
  outline: none;
  padding: 15px 15px;
  color: white;
  text-decoration: none;
  margin-top: 30px;
  width: 170px;
  display: flex;
  align-items: center;
  transition: all 0.3s ease;
}
.text-button:hover {
  background-color: white;
  color: #154b7b;
}
.hover-arrow {
  height: 14px;
  width: 14px;
  stroke: white;
  stroke-width: 1px;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}
.text-button:hover .hover-arrow {
  stroke: #154b7b;
}
/* CTA Button - Right Arrow */

.hover-arrow.cta {
  margin: 0 0 0 25px;
}

.hover-arrow.cta .arrow-tip {
  transform: translateX(-4px);
  transition: 150ms cubic-bezier(0.215, 0.61, 0.355, 1);
}

.text-button:hover .hover-arrow.cta .arrow-tip {
  transform: translateX(0px);
}

.hover-arrow.cta .arrow-path {
  width: 14px;
  opacity: 0;
  transition: 150ms cubic-bezier(0.215, 0.61, 0.355, 1);
}

.text-button:hover .hover-arrow.cta .arrow-path {
  opacity: 1;
}

/* Back Button - Left Arrow*/

.hover-arrow.back {
  margin: 0 4px 0 0px;
}

.hover-arrow.back .arrow-tip {
  transform: translateX(4px);
  transition: 150ms cubic-bezier(0.215, 0.61, 0.355, 1);
}

.text-button:hover .hover-arrow.back .arrow-tip {
  transform: translateX(0px);
}

.hover-arrow.back .arrow-path {
  opacity: 0;
  transition: 150ms cubic-bezier(0.215, 0.61, 0.355, 1);
}

.text-button:hover .hover-arrow.back .arrow-path {
  opacity: 1;
}
@media (max-width: 472px) {
  .text-button {
    margin-top: 20px;
  }
}
