/* Footer up cta */
.cta-section-2 {
  padding: 0px;
  background-color: #0A0A0C;
  height: 400px;
}
.cta-block {
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.cta-2 {
  position: relative;
  display: inline-block;
  font-weight: bold;
  color: white !important;
  background-color: rgba(0, 112, 192, 0.7);
  border-radius: 5px;
  cursor: pointer;
  overflow: hidden;
  transition: color 0.3s ease;
  padding: 8px 32px;
  font-size: 14px;
  width: 503px;
}

.cta-2::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background-color: #ffd700;
  transition: left 0.3s ease;
  z-index: 0;
}

.cta-2:hover::before {
  left: 0;
}

.cta-2 span {
  position: relative;
  z-index: 1;
}
