.brand #hamburger {
  top: 0;
}

#modal-container {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  z-index: 10000;
  align-items: center;
  justify-content: center;
  -webkit-backdrop-filter: blur(10px) brightness(0.5);
          backdrop-filter: blur(10px) brightness(0.5);
  color: white;
}
#modal-container.open {
  display: flex;
}

.modal {
  display: none;
}
.modal.open {
  display: block;
}

video {
  border-radius: 30px;
  border: 0.2rem solid #fc1f78;
  max-width: 70vw !important;
  max-height: 80vh !important;
}

#close-modal {
  position: absolute;
  top: 2rem;
  left: 2rem;
  color: white;
  cursor: pointer;
  opacity: 0.5;
  transition: opacity 0.2s ease-out;
}
#close-modal span {
  font-size: 2rem;
}
#close-modal:hover {
  color: #fc1f78;
  opacity: 1;
}

#contact-success-modal {
  padding: 0 1rem;
}
#contact-success-modal h3 {
  color: #fc1f78;
}/*# sourceMappingURL=modal.css.map */