.wide-cta {
  position: relative;
  min-height: 629px;
  overflow: hidden;
}
.wide-cta-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 1;
  max-width: none;
}
.wide-cta-bar {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.8);
  border-bottom: 1px solid #fff;
  padding: 2rem 0;
  z-index: 2;
}
.wide-cta-bar-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.wide-cta-bar-left, .wide-cta-bar-right {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: #fff;
}
.wide-cta-bar-left {
  flex: 0 1 400px;
}
.wide-cta-bar-right {
  width: 100%;
  flex: 1 1 400px;
  justify-content: flex-end;
  text-align: left;
}
.wide-cta-bar-right-content {
  display: flex;
  flex-wrap: nowrap;
  gap: 1rem;
  align-items: center;
}
.wide-cta-bar-right-description {
  margin: 0;
  color: #fff;
  font-size: var(--step-1) !important;
}
.wide-cta-bar-right-button {
  margin-left: 2rem;
}
@media (max-width: 1000px) {
  .wide-cta-bar-right {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
  }
  .wide-cta-bar-right-icon {
    display: none;
  }
  .wide-cta-bar-right-button {
    margin-left: 0;
  }
}
