.cta-card {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem 0rem;
  background: #ffffff;
  border-radius: 10px;
  overflow: hidden;
  border: 2px solid black;

}
.cta-card-icon:before {
  content:"";
  border: 1px solid #242424;
  position: absolute;
  top:50%;
  right:0rem;
  height: 200%;
  width: 2px;
  transform: translateY(-50%);
}

.cta-card-icon:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 70px;
  height: 70px;
  background: #000000;
  z-index: 0;
  transform: translate(-50%, -50%);
  border-radius: 100px;
}

.cta-card-icon svg {
  z-index: 1;
}

.cta-card-icon {
  flex 0 1 300px;
  position: relative;
  padding: 3rem;
}

.cta-card-icon svg{
  height:50px;
  width: 50px;
  stroke-width: 30px;
  stroke-linejoin: round;
  fill: none;
  position: relative;
}

.cta-card-icon svg>* {
  transform: scale(.9);
  transform-origin: center;
}

.cta-card-content {
  flex: 1 1 300px;
  color: black;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 2rem;
  justify-content: center;
  padding: 2rem;
}

.cta-card-content-text {
  flex: 1 1 300px;
  max-width: 500px;
  text-align: center;
  font-family: din-2014;
  line-height: 1.3;
  font-weight: 600;
  margin: 0;
}

.cta-card-content-text p {
  margin: 0;
}

.cta-card-content-button {
  white-space: nowrap;
  flex: 0 1 100px;
}

.cta-card-content-button a {
  color: black;
  text-transform: uppercase;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: .8px;
  padding: .75rem 2rem;
  height: fit-content;
  background: #ffd800;
  border-radius: 50px;
}

.cta-card-content-button a:hover {
  background: black;
  border: 2px solid black;
  color: white;
}

@media screen and (max-width: 556px) {
  .cta-card-icon:before {
    border: none;
  }
  .cta-card {
    justify-content: center;
  }
}



.cta-card-modal {
  width: 100%;
  max-width: 800px;
  border-radius: 1rem;
  padding: 0;
  position: fixed;
  background: black;
}
.cta-card-modal::backdrop {
  background: var(--light-blue);
  opacity: 0.9;
}
.cta-card-modal-close {
  right: 0;
  top: 0;
  border: 0 none;
  background: none;
  margin-top: 1rem;
  margin-right: 1rem;
  cursor: pointer;
  position: absolute;
}