.ccm-ui .mega-nav-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-repeat: no-repeat;
  background-position: top center;
  background-size: cover;
  border-radius: 10px;
  color: $white;
  text-align: center;
  min-height: 300px;
  padding: 60px 40px;
}
.ccm-ui .mega-nav-card .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 10px;
}
.ccm-ui .mega-nav-card .overlay.teal {
      background-color: rgba(31, 163, 165, 0.85);
    }

.ccm-ui .mega-nav-card .overlay.blue {
      background-color: rgba(45, 87, 160, 0.85);
    }

.ccm-ui .mega-nav-card .overlay.purple {
      background-color: rgba(146, 39, 143, 0.85);
    }

.ccm-ui .mega-nav-card .overlay .card-title {
  position: relative;
  z-index: 1;
}
.ccm-ui .mega-nav-card .overlay.cta {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: row;
  gap: 20px;
  margin-top: 40px;
}

