/* Buttons
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.button,
.btn,
button,
input[type="submit"],
input[type="reset"],
input[type="button"] {
  display: inline-block;
  -webkit-font-smoothing: antialiased;
  padding: 15px 30px;
  color: #fff !important;
  background-color: #eb0f8b;
  font-weight: 700;
  letter-spacing: .09rem;
  text-transform: uppercase;
  text-align: center;
  text-decoration: none;
  /*white-space: nowrap;*/
  border-radius: 0px;
  cursor: pointer;
  font-size: 1.6rem;
  -moz-transition: all 0.2s ease-in,all 0.25s ease-out;
  -o-transition: all 0.2s ease-in,all 0.25s ease-out;
  -webkit-transition: all 0.2s ease-in,all 0.25s ease-out;
  transition: all 0.2s ease-in,all 0.25s ease-out;
 }

 @media screen and (min-width: 768px) {
    .button,
    .btn,
    button,
    input[type="submit"],
    input[type="reset"],
    input[type="button"] {
      font-size: 1.8rem;
    }
  }

.hvr-underline-from-left {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px transparent;
  position: relative;
  overflow: hidden;
}

.hvr-underline-from-left p:before {
  content: "";
  position: absolute;
  z-index: -1;
  left: 0;
  right: 100%;
  bottom: 7px;
  height: 2px;
  -webkit-transition-property: right;
  transition-property: right;
  -webkit-transition-duration: 0.2s;
  transition-duration: 0.2s;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}

.hvr-underline-from-left p:hover:before, .hvr-underline-from-left p:focus:before, .hvr-underline-from-left p:active:before {
  right: 0;
}




.hvr-underline-reveal {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  position: relative;
  overflow: hidden;
}
.hvr-underline-reveal p:before {
  content: "";
  position: absolute;
  z-index: -1;
  left: 0;
  right: 0;
  bottom: 0;
  height: 4px;
  -webkit-transform: translateY(4px);
  transform: translateY(4px);
  -webkit-transition-property: transform;
  transition-property: transform;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}
.hvr-underline-reveal p:hover:before, .hvr-underline-reveal p:focus:before, .hvr-underline-reveal p:active:before {
  -webkit-transform: translateY(0);
  transform: translateY(0);
}


p a.btn, .nine a.button {
  margin-top: 20px;
}

.copy-and-image a.btn {
  margin-top: 15px;
}



  @media (min-width: 0px) and (max-width: 599px) {
    .btn-performing-landing {
      width: 100%;
    }
    .btn-performing-landing-right {
      margin-top: -10px;
    }
  }
  @media (min-width: 600px) and (max-width: 767px) {
    .btn-performing-landing {
      width: 48%;
    }
    .btn-performing-landing-right {
      float: right;
    }
  }
  @media (min-width: 768px) and (max-width: 950px) {
    .btn-performing-landing {
      width: 80%;
    }
    .btn-performing-landing-right {
      margin-top: -10px;
    }
  }
  @media (min-width: 1024px) and (max-width: 1099px) {
    .btn-performing-landing {
      width: 80%;
    }
    .btn-performing-landing-right {
      margin-top: -10px;
    }
  }
  @media (min-width: 1100px) {
    .btn-performing-landing-right {
      margin-left: 10px;
    }
  }
