.content-div {
    display: flex;
}
input, textarea{
	outline: none;
	border: navajowhite;
}
.contact-form-div{
	display: block;
	padding: 10px;
	background: darkgray;
	border-radius: 5px;
	box-shadow: 5px 5px 36px 2px #000;
}
.contact-form-div h2{
	text-align: center;
	font-size: 20px;
}
.contact-form-div label{
	display: block;
	margin-bottom: 20px;
}
.contact-form-div input[type='text'], .contact-form-div input[type='email']{
	    font-size: 17px;
	    border-radius: 3px;
	    padding: 6px;
	    width: 100%;
}
.contact-form-div textarea{
	width: 100%;
	padding: 5px;
	height: 170px;
	resize: none;
	border-radius: 3px;
	font-size: 16px;
}
input[type="submit"] {
    padding: 7px 20px;
    background: var(--theme-color);
    border-radius: 3px;
    float: right;
    color: #fff;
    cursor: pointer;
}
.blur-div {
    width: 100%;
    height: 100vh;
    top: 0;
    position: fixed;
    background: rgba(0, 0, 0, 0.01);
    backdrop-filter: blur(10px);
    z-index: 99999999;
    opacity: 0.3;
}
.popup-window-container {
    position: fixed;
    width: 505px;
    height: 250px;
    background-image: linear-gradient(to bottom right, #625cc7, #448729);
    border-radius: 5px;
    box-shadow: 6px 6px 45px 4px black;
    padding: 5px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 99999999;
}
.heading-popup-window-container {
    display: flex;
    width: 100%;
    line-height: 40px;
    margin-bottom: 25px;
}
.heading-popup-window-container h2 {
    width: 100%;
    font-size: 25px !important;
    background: -webkit-linear-gradient(#fff, #42ff00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-align: center;
}
.heading-popup-window-container i.fa.fa-close {
    font-size: 20px;
    cursor: pointer;
    padding: 5px;
    color: #fff;
    background: none;
    display: block;
    float: right;
}
.popup-window-message-text-div {
    padding: 10px;
}
.popup-window-message-text-div p {
    font-size: 20px !important;
    color: #0e0b0b !important;
    text-align: center;
}
@media screen and (max-width: 600px) {
	.popup-window-container {
		width: 90%;
		height: auto;
	}
}
.mobile-screen-footer a{
	padding: 5px;
	display: block;
	background: var(--theme-color);
	text-decoration: none;
	color: #fff;
	text-align: center;
	margin-bottom: 3px;
}
@media screen and (max-width: 700px) {
	.mobile-screen-footer{
		display: block !important;
	}
}