.cta-btn-slider {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.cta-slider {
  text-align: center;
  border-radius: 6px;
  position: relative;
  padding: 16px 32px;
  color: #232323 !important;
  border: none;
  font-weight: bold;
  font-size: 1.6rem;
  background-color: #dfe6e9;
}

@media screen and (max-width: 960px) {
  .cta-slider {
    font-size: 1.4rem;
    padding: 8px 16px;
  }
}

.cta-slider:hover {
  color: #fff !important;
  background-color: #fc427b;
  border-radius: 6px;
}

.cta-slider::before, .cta-slider::after {
  content: '';
  position: absolute;
  right: 0;
  border-radius: 6px;
}

.cta-slider::before {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 4px;
  background: #fc427b;
  -webkit-transform-style: linear;
          transform-style: linear;
  -webkit-transition-property: width;
  transition-property: width;
  -webkit-transition-delay: 0s, .5s;
          transition-delay: 0s, .5s;
  -webkit-transition-duration: .5s;
          transition-duration: .5s;
}

.cta-slider:hover::before {
  width: 4px;
  height: 100%;
  -webkit-transition-property: width, height;
  transition-property: width, height;
  background: #fff;
}

.cta-slider::after {
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: #fc427b;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transition: .5s;
  transition: .5s;
  -webkit-transition-delay: 0s;
          transition-delay: 0s;
  -webkit-transform-origin: right;
          transform-origin: right;
  z-index: -1;
}

.cta-slider:hover::after {
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
}
/*# sourceMappingURL=css.css.map */