learn-more {
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 0.375rem;
  width: fit-content;
  margin: auto;
  position: fixed;
  bottom: 1.25rem;
  right: 0;
  left: 0;
  @media (min-width: 993px) {
    display: flex;
  }
  >a {
    font-weight: 700;
    color: var(--pricefox-background-color);
    margin: 0;
    padding: 0.75rem 1rem;
    border: 1px var(--dark-blue-400) solid;
    border-radius: 12.5rem;
    @media (min-width: 1441px) {
      padding: 1rem 3rem;
    }
    &:hover {
      background: var(--dark-blue-600);
      +svg {
        transform: translateY(0.375rem);
      }
    }
  }
  >svg {
    width: 1.5rem;
    aspect-ratio: 1;
    color: var(--pricefox-background-color);
    transform: translateY(0);
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  }
}