.btn-hover-animate {
  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;
  margin-top: 24px;
}

:root {
  --color-cta-passive: #EFDA5E;
  --color-cta-hover: #E2C84B;
  --color-cta-active: #EFDA5E;
  --transition-cta: 0.25s ease-in-out;
}

.btn-pulse-2 {
  background-color: var(--color-cta-passive);
  position: relative;
  display: inline-block;
  vertical-align: middle;
  padding: 0 32px;
  border-radius: 6px;
  line-height: 46px;
  overflow: hidden;
  color: #1a1a1a !important;
  font-size: 14px;
  text-transform: uppercase;
  font-weight: 700;
  text-align: center;
  text-overflow: ellipsis;
  white-space: normal;
  overflow: hidden;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  text-align: center;
  text-decoration: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-tap-highlight-color: transparent;
  -webkit-box-shadow: 0 0 0 0 rgba(251, 255, 70, 0.35);
  box-shadow: 0 0 0 0 rgba(251, 255, 70, 0.35);
  -webkit-animation: pulse 1.5s infinite;
  animation: pulse 1.5s infinite;
}

.btn-pulse-2:hover {
  color: #1a1a1a !important;
}

@media screen and (max-width: 960px) {
  .btn-pulse-2 {
    font-size: 10px;
    padding: 0 14px;
    margin-right: 0 !important;
  }
  .logo {
    margin: 0 !important;
  }
}

.btn-pulse-2:before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
  background-color: var(--color-cta-passive) !important;
  -webkit-transition: background-color 400ms;
  transition: background-color 400ms;
}

.btn-pulse-2:after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  background: var(--color-cta-active) !important;
  z-index: -1;
  width: 100%;
  padding-top: 120%;
  border-radius: 100%;
  opacity: 0;
  -webkit-transform: translateX(-50%) translateY(-50%) scale(0.2);
  transform: translateX(-50%) translateY(-50%) scale(0.2);
  transition: opacity 500ms, -webkit-transform 500ms;
  -webkit-transition: opacity 500ms, -webkit-transform 500ms;
  transition: opacity 500ms, transform 500ms;
  transition: opacity 500ms, transform 500ms, -webkit-transform 500ms;
  -webkit-transition-delay: 0, 100ms;
  transition-delay: 0, 100ms;
}

.btn-pulse-2:hover {
  background-color: var(--color-cta-hover);
}

.btn-pulse-2:active {
  color: #fff;
}

.btn-pulse-2:active:after {
  -webkit-transform: translateX(-50%) translateY(-50%) scale(1.1);
  transform: translateX(-50%) translateY(-50%) scale(1.1);
  transition: opacity 100ms, -webkit-transform 100ms;
  -webkit-transition: opacity 100ms, -webkit-transform 100ms;
  transition: opacity 100ms, transform 100ms;
  transition: opacity 100ms, transform 100ms, -webkit-transform 100ms;
  -webkit-transition-delay: 0s;
  transition-delay: 0s;
  opacity: 1;
}

@-webkit-keyframes pulse {
  0% {
  }
  70% {
    -webkit-box-shadow: 0 0 0 50px rgba(90, 153, 212, 0);
    box-shadow: 0 0 0 50px rgba(90, 153, 212, 0);
  }
  100% {
    -webkit-box-shadow: 0 0 0 0 rgba(90, 153, 212, 0);
    box-shadow: 0 0 0 0 rgba(90, 153, 212, 0);
  }
}

@keyframes pulse {
  0% {
  }
  70% {
    -webkit-box-shadow: 0 0 0 50px rgba(90, 153, 212, 0);
    box-shadow: 0 0 0 50px rgba(90, 153, 212, 0);
  }
  100% {
    -webkit-box-shadow: 0 0 0 0 rgba(90, 153, 212, 0);
    box-shadow: 0 0 0 0 rgba(90, 153, 212, 0);
  }
}
/*# sourceMappingURL=css.css.map */