/* The Modal (background) */
.ModalContact {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 12000; /* Sit on top */
    padding-top: 100px; /* Location of the box */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
     /* Fallback color */
    background-color: rgba(0,0,0,0.7); /* Black w/ opacity */
  }
  
  /* Modal Content */
  .modal-content-contact {
    background: transparent;
    margin: auto;
    padding: 20px;
    border: 0px solid #888;
    width: 80%;
  }

  .modal-content-contact .contact{
    background: rgba(255,255,255,0.8);
  }
  
  /* The Close Button */
  .close-contact {
    color: #fcfafa;
    float: right;
    font-size: 48px;
    font-weight: bold;
    text-align: right;
    width: 100%;
  }
  
  .close-contact:hover,
  .close-contact:focus {
    color: rgb(252, 9, 9);
    text-decoration: none;
    cursor: pointer;
  }




  @media (max-width:1120px){
    .ModalContact {
      padding-top: 20px;
    }
    .modal-content-contact {
      padding: 10px;
      width: 90%;
    }
  }