.button {
  align-items: center;
  background-color: var(--black);
  border-radius: 24px;
  border: none;
  color: var(--white);
  cursor: pointer;
  display: inline-flex;
  font-size: 19px;
  font-weight: 600 !important;
  height: 48px;
  outline: none;
  padding-left: 20px;
  padding-right: 20px;
  text-decoration: none;
  transition: background-color 0.3s;
  white-space: nowrap;
}

@media (min-width: 992px) {
  .button {
    font-size: 20px;
    height: 48px;
  }
}

.button-primary {
  background-color: var(--blue);
}

.button-primary:hover {
  background-color: var(--dark-blue);
}

.button-primary-outline {
  background-color: var(--white);
  border-radius: 24px;
  border: 1px solid #707070;
  color: var(--blue);
  font-size: 19px;
  font-weight: 600 !important;
  height: 48px;
  padding-left: 20px;
  padding-right: 20px;
}

.button-primary-outline:hover {
  background-color: var(--blue);
  border-color: var(--blue);
  color: var(--white);
}

.button-small {
  font-size: 16px;
  height: 40px;
}

.button-special {
  background: rgb(0, 82, 153);
  background: linear-gradient(
    90deg,
    rgba(0, 82, 153, 1) 0%,
    rgba(47, 126, 217, 1) 50%,
    rgba(0, 168, 185, 1) 100%
  );
  border-radius: 8px;
  font-size: 14px;
  height: 40px;
  justify-content: center;
  min-width: 180px;
  text-align: center;
}

@media (min-width: 1200px) {
  .button-special {
    font-size: 24px;
    height: 50px;
    min-width: 240px;
  }

  .button-special:hover {
    background: rgb(0, 168, 185);
    background: linear-gradient(
      90deg,
      rgba(0, 168, 185, 1) 0%,
      rgba(47, 126, 217, 1) 50%,
      rgba(0, 82, 153, 1) 100%
    );
    color:var(--white) !important;
  }
}

.button-block {
  border-radius: 20px;
  height: 55px;
  width: 100%;
}

.button-outline {
  background-color: transparent;
  border-radius: 25px;
  border: 1px solid var(--black);
  color: var(--black);
  font-size: 16px;
  font-weight: 700;
  height: 42px;
  justify-content: center;
  min-width: 120px;
}

@media (min-width: 1200px) {
  .button-outline {
    font-size: 18px;
    height: 46px;
    min-width: 180px;
  }
}

.button-outline:hover {
  background-color: var(--black);
  color: var(--white);
}

.button-medium {
  border-radius: 25px;
  font-size: 16px;
  font-weight: 700;
  height: 42px;
  min-width: 120px;
}

@media (min-width: 1200px) {
  .button-medium {
    font-size: 18px;
    height: 46px;
    min-width: 180px;
  }
}
