.btn1 {
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: inherit;
  padding: 8px 12px;
  position: relative;
  overflow: hidden;
  border: 2px solid #324154;
  background: #324154;
  transition: color 0.5s, box-shadow 0.5s;
  z-index: 1;
  font-size: 17px;
  border-radius: 6px;
  font-weight: 500;
  color: #fff; }
  .btn1:before {
    content: "";
    position: absolute;
    z-index: -1;
    background: #fff;
    height: 150px;
    width: 200px;
    border-radius: 50%; }
  .btn1:hover {
    color: #324154;
    box-shadow: 0 0 12px 2px rgba(0, 0, 0, 0.5); }
  .btn1:before {
    top: 100%;
    left: 100%;
    transition: all 0.5s; }
  .btn1:hover:before {
    top: -30px;
    left: -30px; }
  .btn1:active:before {
    background: #f2f2f2;
    border: none;
    transition: background 0s, border 0s; }

.cta {
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: inherit;
  padding: 12px 18px;
  border: 2px solid #324154;
  background: #324154;
  color: #fff;
  border-radius: 6px;
  font-size: 17px;
  z-index: 1;
  transition: color 0.4s, background 0.4s, box-shadow 0.2s, transform 0.2s;
  width: max-content; }
  .cta:hover {
    color: #324154;
    background: transparent;
    box-shadow: 0 0 12px 1px rgba(0, 0, 0, 0.5);
    transform: translateY(-4%); }
  .cta:active {
    transform: translateY(4%); }
