/* Modal Styles */
#homepage-modal {
    display: none;
    position: fixed;
      z-index: 1000;
      left: 50%;
      top: 50vh;
      transform: translate(-50%, -50%);
      width: 70%;
      background: white;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  }
  
  #homepage-modal-header {
      background-color: #c9a76f;
      margin: 0;
      padding: 1px;
      text-transform: none;
      height: 30px;
  }
  
  #homepage-modal-closer {
    cursor: pointer;
      background: none;
      border: none;
      float: right;
      margin-right: 26px;
      font-size: 18px;
	  position: absolute;
	  background-color: white;
	  right: 2px;
  }
 
  body.modal-open {
      overflow-x: hidden;
      overflow-y: hidden;
  }
  
  .modal-filter-active {
      filter: brightness(50%) blur(2px);
  }
  