#iframeContainer {
  position: fixed;
  top: 50%;
  left: 50%;
  width: 95vw;
  height: 65vh;
  z-index: 9999;
  transform: translate(-50%, -50%);
  flex-direction: column;
  display: none;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

#iframeContainer iframe {
  width: 100%;
  height: 100%;
  border: 3px solid darkgrey;
  margin: auto;
}

#backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.5);
  z-index: 9998;
  display: none;
}

#iframeCloseBtn {
  position: absolute;
  top: 10px;
  right: 10px;
  background-color: #2b4162;
  color: #fff;
  border: none;
  padding: 12px 16px;
  font-size: 18px;
  cursor: pointer;
  border-radius: 4px;
}

.paragraph-10{
    margin-bottom: 10px;
}

@media (max-width: 498px) {
    #iframeContainer {
        width: 90vw;
        height: 94vh;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        display: none;
    }
    #hero-text{
        padding: 0;
    }
    #iframeCloseBtn {
      position: absolute;
      top: 5px;
      right: 8px;
      background-color: #2b4162;
      color: #fff;
      border: none;
      padding: 6px 10px;
      font-size: 18px;
      cursor: pointer;
      border-radius: 4px;
    }
    #mobile-H1{
        margin-top:30px;
    }
}