:root {
  --bodyFont: "Inter", sans-serif;
  --titleFont: "Hind", sans-serif;
  --transition: 0.3s;
  --primaryColor: #553CDF;
  --secondaryColor: #1F1F25;
  --thirdColor: #09a24f;
  --whiteColor: #ffffff;
  --titleColor: #110C2D;
  --hoverColor: #553CDF;
  --bodyColor: #737477;
  --btnColor: #553CDF;
  --blackColor2: #191B1E;
  --darkdeep4: #949392;
  --darkblack: #0C0E2B;
  --naveBlue: #17093e;
}

.react-button {
  display: flex;
}
.react-button a {
  display: inline-block;
  color: #fff;
  padding: 6px 20px;
  font-size: 16px;
  font-weight: 400;
  font-family: var(--bodyFont);
  line-height: 26px;
  text-align: center;
  text-transform: capitalize;
  border-radius: 4px;
  border: 1px solid var(--primaryColor);
  background: var(--primaryColor);
  transition: var(--transition) all;
  overflow: hidden;
}
.react-button a:hover {
  background: var(--whiteColor);
  color: var(--primaryColor);
}
.react-button a i {
  display: inline-block;
}
.react-button.secondary_btn a {
  border: 1px solid #fff;
  box-sizing: border-box;
}
.react-button.secondary_btn a:hover {
  color: #fff;
  background: var(--primaryColor);
  border: 1px solid #fff;
}
.react-button.third_btn a, .react-button.fourth_btn a {
  border: none;
  box-sizing: border-box;
  padding: 17px 30px;
  line-height: 26px;
  background: var(--primaryColor);
  position: relative;
}
.react-button.third_btn a .btn_text, .react-button.third_btn a i, .react-button.third_btn a svg, .react-button.fourth_btn a .btn_text, .react-button.fourth_btn a i, .react-button.fourth_btn a svg {
  position: relative;
  z-index: 2;
}
.react-button.third_btn a::before, .react-button.fourth_btn a::before {
  position: absolute;
  height: 100%;
  width: 100%;
  content: "";
  top: 0;
  left: -70%;
  background: var(--thirdColor);
  z-index: 1;
  transition: var(--transition);
  opacity: 0;
}
.react-button.third_btn a:hover, .react-button.fourth_btn a:hover {
  color: #fff;
}
.react-button.third_btn a:hover::before, .react-button.fourth_btn a:hover::before {
  background: var(--thirdColor);
  left: 0;
  opacity: 1;
}
.react-button.fourth_btn a {
  background: var(--thirdColor);
}
.react-button.fourth_btn a::before {
  background: var(--primaryColor);
}
.react-button.fourth_btn a:hover::before {
  background: var(--primaryColor);
}/*# sourceMappingURL=button.css.map */