/* --- Object: Components --- */

/* Button */
.c-btn {
  display: inline-block;
  padding: 12px 40px;
  background-color: var(--primary-blue);
  color: #fff;
  font-size: 0.9rem;
  font-weight: 700;
  margin-top: 30px;
  border-radius: 2px;
  position: relative;
  overflow: hidden;
  z-index: 1;
  transition: color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.c-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0%;
  height: 100%;
  background-color: #fff;
  z-index: -1;
  transition: width 0.4s var(--easing-entrance);
}

.c-btn:hover {
  color: var(--primary-blue);
  opacity: 1;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px -10px rgba(230, 0, 18, 0.5);
}
.c-btn:hover::before {
  width: 100%;
}

.c-btn.btn-inverse {
  background-color: #fff;
  color: var(--primary-blue);
}
.c-btn.btn-inverse::before {
  background-color: #333;
}
.c-btn.btn-inverse:hover {
  color: #fff;
}
