.modal {
    position: fixed;
    z-index: 1;

    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgba(0, 0, 0, 0.5);
  }
  
  .modal-content {
    background-color: #ffffff;
    padding: 20px;
    border-radius: 4px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
    max-width: 52em;
    width: 52%;
  }
  
  .close-img{
    width: 1.5rem;
  }

  .iframe-header{
    text-align: center;
    font: 500 20px Poppins;
    /* padding: 0px 13px; */
    color: #000;
  }
  .close {
    float: right;
    font-size: 24px;
    cursor: pointer;
    transition: color 0.3s ease;
  }
  
  .close:hover,
  .close:focus {
    color: #555;
  }
  
  iframe {
    width: 100%;
    height: 500px;
  }
  
  @media screen and (max-width: 600px) {
    .modal-content {
      width: 95%;
    }
  }
  