.popup {
  position: fixed;
  width: 100%;
  height: 100vh;
  left: 0;
  top: 0;
  background-color: rgb(0, 0, 0, .5);
  z-index: 99999999999;
  display: flex;
  align-items: center;
  justify-content: center;
}

.popup img {
  max-width: 500px;
}

.popup .formulario {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 500px;
  border-radius: 20px;

  padding: 40px;
  height: auto;
  background-color: #fff;
  position: relative;
  height: auto;
}

@media (max-width:991.98px) {
  .popup .formulario {
    width: 90%;
    box-sizing: border-box;
    margin: 0 5% 0 0;

  }
}

.fechar-popup {
  font-size: 30px;
  color: #ffffff;
  position: absolute;
  top: 0;
  right: 15px;
  font-weight: bold;
  cursor: pointer;
  font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
}

.video-wrapper {
  position: relative;
  padding-bottom: 56.25%;
  /* 16:9 */
  padding-top: 25px;
  height: 0;
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}