
.responsive-embed {
  position: relative;
  overflow: hidden;
  max-width: 50vw;
  margin: 0 auto;
}

.responsive-embed::before {
  content: '';
  display: block;
  width: 100%;
  padding-top: 56.25%; /* 16:9 Aspect Ratio (divide 9 by 16 = 0.5625) */
}
/* Then style the iframe to fit in the container div with full height and width */
.responsive-embed iframe {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
}

#mindfall-modal {
    max-width: none;
    text-align: center;
    padding: 3rem 4rem;
}

#mindfall-modal h2 {
  margin-bottom: 2rem;
}
#mindfall-modal h2 span {
  font-weight: 900;
}

#mindfall-modal p {
  margin-bottom: 2rem;
}

.contact-link {
  display: inline-block;
  font-family: "Roboto Slab", serif;
  font-weight: 700;
  font-size: 1.6rem;
  padding: 15px 35px;
  border: 2px solid #1fa7c3;
  background-color: #1fa7c3;
  border-radius: 11px;
  color: #fff;
  transition: all 0.3s ease-in-out;
  margin-top: 2rem;
}

.contact-link:hover {
  background-color: #fff;
  color:#1fa7c3;
}

@media (max-width:480px) {
  #mindfall-modal {
    padding: 2rem;
  }

  #mindfall-modal h2 {
    font-size: 2.1rem;
    margin-bottom: 1rem;
  }

  .responsive-embed {
    max-width: none;
  }
}