.border-w-btn {
  padding: 10px;
  border: 2.1627px solid var(--z-white);
  background: transparent;
  color: var(--z-white);
  font-family: 'avenir_lt_std45_book';
  font-size: 38.9286px;
  line-height: 150%;
  margin: 0 auto;
  outline: none;
  text-decoration: none;
}

.border-w-btn {
  position: relative;
  background: none;
}

/* .border-w-btn:before,
.border-w-btn:after {
  display: block;
  content: "";
  position: absolute;
  background: var(--z-green-900);
  z-index: -1;
} */

.border-w-btn:before {
  top: -0.1rem;
  bottom: 100%;
  left: -0.1rem;
  right: calc(100% + 0.1rem);
  transition: left 0.5s, right 0.5s, bottom 0.5s;
}

.border-w-btn:after {
  top: 100%;
  bottom: -0.1rem;
  left: calc(100% + 0.1rem);
  right: -0.1rem;
  transition: left 0.5s, right 0.5s, top 0.5s;
}

.border-w-btn:hover:before {
  top: -0.1rem;
  bottom: 0;
  left: -0.1rem;
  right: 0;
}

.border-w-btn:hover:after {
  top: 0;
  bottom: -0.1rem;
  left: 0;
  right: -0.1rem;
}

.border-g-btn {
  border-color: var(--z-green-900);
  color: var(--z-green-900);
}

.border-g-btn:hover {
  color: #ffff;
}

:focus {
  outline: none;
  box-shadow: none;
}

.effect-1 {
  border: 0;
  padding: 7px 0;
  border-bottom: 1px solid #ccc;
}

.effect-1~.focus-border {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--z-green-900);
  transition: 0.4s;
}

.effect-1:focus~.focus-border {
  width: 100%;
  transition: 0.4s;
}

.effect-9 {
  border: 1px solid #ccc;
  padding: 7px 14px 9px;
  transition: 0.4s;
}

.effect-9~.focus-border:before,
.effect-9~.focus-border:after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 0;
  height: 2px;
  background: var(--z-green-900);
  transition: 0.2s;
  transition-delay: 0.2s;
}

.effect-9~.focus-border:after {
  top: auto;
  bottom: 0;
  right: auto;
  left: 0;
  transition-delay: 0.6s;
}

.effect-9~.focus-border i:before,
.effect-9~.focus-border i:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 2px;
  height: 0;
  background: var(--z-green-900);
  transition: 0.2s;
}

.effect-9~.focus-border i:after {
  left: auto;
  right: 0;
  top: auto;
  bottom: 0;
  transition-delay: 0.4s;
}

.effect-9:focus~.focus-border:before,
.effect-9:focus~.focus-border:after {
  width: 100%;
  transition: 0.2s;
  transition-delay: 0.6s;
}

.effect-9:focus~.focus-border:after {
  transition-delay: 0.2s;
}

.effect-9:focus~.focus-border i:before,
.effect-9:focus~.focus-border i:after {
  height: 100%;
  transition: 0.2s;
}

.effect-9:focus~.focus-border i:after {
  transition-delay: 0.4s;
}

.green-btn {
  background-color: #257D82;
  font-family: 'Alexandria';
  font-weight: 300;
  font-size: 26px;
  line-height: 150%;
  text-align: center;
  color: #FFFFFF;
  padding: 10px 40px;
  transition: background-color 0.3s ease, color 0.3s ease; /* Smooth transition */
}
.green-btn:hover {
  background: #1d676c;
  transition: background-color 0.3s ease, color 0.3s ease; /* Smooth transition */
}