body {
  background-image: linear-gradient(0deg, #5950f0 0%, #5950f0 100%),
    radial-gradient(
      74.01% 100.22% at 47.01% 2.28%,
      rgb(0 0 0) 80.95%,
      rgb(0 0 0 / 46%) 100%
    ),
    url(../images/blend.png);
}
p {
  font-size: 18px;
}
.hero-background {
  width: 100%;
  display: grid;
  grid-template-columns: 27.6% 36.8% 27.6%;
  grid-template-columns: 30.66% 30.66% 30.66%;
  gap: 40px;
}
.hero-background img {
  height: 100%;
  width: 100%;
  border-radius: 24px;
  object-fit: cover;
  object-position: center;
}
.hero-wrapper {
  overflow: hidden;
  height: 486px;
  border-radius: 24px;
}
.column {
  display: flex;
  justify-content: center;
}
.step {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hero-mobile {
  height: 500px;
  background-size: cover;
  border-radius: 24px;

  background-image: url("images/hero-2.jpeg");
}
.hero-mobile img {
  max-height: 100%;
    min-width: 100%;
    height: auto;
    width: auto;
    border-radius: 24px;
}

.next-step {
  width: auto;
}

@media screen and (max-width: 992px) {
  .next-step {
    width: 100%;
  }
  .hero-background {
    display: block;
  }
}

@media screen and (max-width: 768px) {
  .hero-mobile {
    /** height: 400px; */
  }
  h1 {
    font-size: 39px;
    line-height: 45px;
  }
}

@media screen and (max-width: 430px) {
  .hero-mobile {
    /** height: 284px; */
  }
}

.button_cta_continue {
  cursor: pointer;
  color: #000;
  background-color: #03E95A;
  border-color: #03E95A;
  display: block;
  width: 100%;
  max-width: 100%;
  padding: 6.25px 1rem;
  font-size: 19px;
  text-shadow: unset !important;
  line-height: 1.5;
  border-radius: .3rem;
  border: 0px;
  margin-bottom: 20px;
  padding: 8px, 16px, 8px, 16px;
  font-weight: 600;
  border-radius: 60px;
  max-width: 400px;
  margin: auto;
  margin-top: 20px;
  margin-bottom: 20px;
  text-decoration: none;
  text-align: center;
}

.button_cta_continue:hover {
  background-color: #00B728;
  border-color: #00B728;
}


.green-status {
  animation: blink 1s infinite;
  animation-delay: 1s;
}

@keyframes blink {
0%, 100% {
    opacity: 1;
}
50% {
    opacity: 0;
}
}

@media screen and (max-width: 768px) {
  .step iframe {
      width: 100%;
      max-width: 300px;
      display: block;
      margin: 0px auto;
  }
}

#signupIframe {
  transition: height 1s ease; /* Smooth transition for height changes */
}

.video-player {
  height: 100%;
  object-fit: cover;
  border-radius: 24px;
  filter: contrast(115%) brightness(105%) !important;
}

.video-player-mobile {
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
  filter: contrast(115%) brightness(105%) !important;
}


