.btn {
  padding: 16px 25px;
  border-radius: 8px;
  color: #fff;
  text-align: center;
  display: flex;
  align-items: center;
}
.btn svg {
  margin-right: 5px;
}
@media (max-width: 992px) {
  .btn {
    padding: 10px 16px;
  }
}

.btn-dark-blue {
  background: #253746;
  transition: 100ms linear all;
}
.btn-dark-blue:hover {
  opacity: 0.9;
}

.btn-light-green {
  background: #0099ab;
  transition: 100ms linear all;
}
.btn-light-green:hover {
  opacity: 0.9;
}

.btn-light-grey {
  background: #7C8790;
  transition: 100ms linear all;
}
.btn-light-grey:hover {
  opacity: 0.9;
}

button, input {
  border: none;
}

button, input, a {
  cursor: pointer;
}

.btn-link {
  color: #253746;
  text-decoration: underline;
  transition: 100ms linear color;
}

.btn-link:hover {
  text-decoration: none;
}