

/* Contact Form Popup */

.popup_window{
    background-color: #1f2224;
    width: 420px;
    padding: 30px 40px;
    position: fixed;
    transform: translate(-50%,-50%);
    left: 50%;
    top: 50%;
    border-radius: 8px;
    display: block;
    font-family: "Poppins",sans-serif;
    text-align: center;
    z-index: 10;
}
	
.modal_x{
	
	float:right;
	
}
.popup_window:hover span {
   color: red; 
   
}

.popup_window span{
color: white;
}
.popup_window h2{
   margin-top: -20px;
   color: white;
}
.popup_window p{
    font-size: 14px;
    color: white;
    text-align: justify;
    margin: 20px 0;
    line-height: 25px;
}	
