.btn {
    cursor: pointer;
    display: inline-block;
    color: #FFF;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 24px;
    position: relative;
    text-transform: capitalize;
    text-align: center;
    border-radius: 35px;
    box-shadow: 0px 4px 12px 0px rgba(241, 63, 63, 0.13);
    padding: 12px 24px;
    transition: all.4s;
    border: none;
}


.btn-header {
    color: var(--primary-green);
    background: var(--white);
    -webkit-transition: all 1250ms cubic-bezier(0.19, 1, 0.22, 1);
          transition: all 1250ms cubic-bezier(0.19, 1, 0.22, 1);
    outline-offset: 0px;
    border: 2px solid;

    &:hover {
        color: var(--white);
        background-color: var(--primary-green);
        border: 2px var(--white) solid;
    }
}

.btn_theme {
    color: #074C3E;
    background: transparent;
    position: relative;
    overflow: hidden;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 14px 24px;
    text-transform: capitalize;
    border: 1px solid var(--primary-green);
    font-size: 16px;
    border-radius: 5px;
    font-weight: 600;
    line-height: 1.2;
    min-width: -moz-max-content;
    min-width: max-content;
    transition: all 0.35s ease-in-out;
    position: relative;
    z-index: 1;
    box-shadow: 0px 4px 12px 0px rgba(14, 22, 129, 0.13)
}

.btn_theme:hover {
    box-shadow: none;
}

.btn_theme span {
    position: absolute;
    display: block;
    width: 0;
    height: 0;
    border-radius: 50%;
    background-color: var(--primary-green);
    transition: width 0.4s ease-in-out, height 0.4s ease-in-out;
    transform: translate(-50%, -50%);
    z-index: -1;
}


.btn_theme svg path {
    transition: all 0.35s ease-in-out;
}

.btn_theme:hover, .btn_theme:focus {
    border: 1px solid var(--primary-green);
    color: #fff;
}

.btn_theme:hover svg path, .btn_theme:focus svg path {
    fill: #fff;
}
.btn_theme:hover[disabled=disabled], .btn_theme:focus[disabled=disabled] {
    color: var(--primary-green);
    cursor: not-allowed;
}
.btn_theme:hover span, .btn_theme:focus span {
  width: 225%;
  height: 220px;
}

.btn_theme_active {
  color: white;
  position: relative;
  z-index: 0;
}

.btn_theme_active::after {
  content: "";
  position: absolute;
  display: flex;
  align-items: center;
  width: 100%;
  height: 100%;
  background: var(--primary-green);
  z-index: -3;
}

.btn_theme_active span {
  background-color: #fff;
}

.btn_theme_active:hover, .btn_theme_active:focus {
  color: var(--primary-green);
}

.btn_theme_active {
  color: white;
  position: relative;
  z-index: 0;
}

.btn_theme_active::after {
  content: "";
  position: absolute;
  display: flex;
  align-items: center;
  width: 100%;
  height: 100%;
  background: var(--primary-green);
  z-index: -3;
}

.btn_theme_active span {
  background: #fff;
}

.btn_theme_active:hover, .btn_theme_active:focus {
  color: var(--primary-green);
}
.btn_theme_active:hover, .btn_theme_active:focus {
    color: var(--primary-green);
}
