:root {
  --bodyFont: "DM Sans", sans-serif;
  --titleFont: "Baloo 2", sans-serif;
  --primaryColor: #9C29B2;
  --secondaryColor: #2EBDAE;
  --secondaryColor2: #7061CC;
  --secondaryColor3: #CE9103;
  --secondaryColor4: #FE5D37;
  --hoverColor: #2EBDAE;
  --bodyColor: #404A60;
  --whiteColor: #FFFFFF;
  --blackColor: #000000;
  --titleColor: #222E48;
  --borderColor: #DFE0E4;
  --inputbgColor: #ffffff;
  --softbgColor: #F9F6EF;
  --transition: 0.4s all ease;
}

.themephi-button {
  line-height: 0;
}
.themephi-button a {
  display: inline-block;
  color: var(--titleColor);
  padding: 12px 33px;
  font-size: 16px;
  font-weight: 700;
  font-family: var(--titleFont);
  line-height: 1.6;
  text-align: center;
  text-transform: capitalize;
  background: var(--primaryColor);
  border-radius: 100px;
  position: relative;
  transition: 0.3s;
  z-index: 1;
  border: 1px solid;
  border-color: var(--primaryColor);
  overflow: hidden;
}
.themephi-button a::before {
  position: absolute;
  content: "";
  top: 50%;
  transform: translate(-50%, -50%);
  left: 50%;
  width: 0px;
  height: 0px;
  background: var(--secondaryColor);
  transition: all 0.5s;
  z-index: -1;
}
.themephi-button a:hover::before {
  width: 100%;
  height: 100%;
}
.themephi-button a svg {
  width: 20px;
  position: relative;
}
.themephi-button a::after {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: var(--secondaryColor);
  transform: translateY(110%);
  transition: 0.3s;
  z-index: -1;
}
.themephi-button a:hover::after {
  transform: translateY(0%);
}
.themephi-button a:hover {
  border-color: var(--secondaryColor);
}
.themephi-button.secondary_btn a {
  background: var(--secondaryColor);
  border-color: var(--secondaryColor);
}
.themephi-button.secondary_btn a:after {
  background: var(--primaryColor);
}/*# sourceMappingURL=button.css.map */