#popup_wrapper {
	top: 0px;
	left: 0px;
	width: 100%;
	height: 100%;
	display: none;
	overflow: auto;
	position: fixed;
	background: rgba(49,49,49,0.7);
	-webkit-animation: fadein 2s;
	-moz-animation: fadein 2s;
	-ms-animation: fadein 2s;
	-o-animation: fadein 2s;
	animation: fadein 2s;
	z-index:99
}
@keyframes fadein {
 from {
opacity: 0;
}
to {
	opacity: 1;
}
}
@-moz-keyframes fadein {
 from {
opacity: 0;
}
to {
	opacity: 1;
}
}
@-webkit-keyframes fadein {
 from {
opacity: 0;
}
to {
	opacity: 1;
}
}
@-ms-keyframes fadein {
 from {
opacity: 0;
}
to {
	opacity: 1;
}
}
@-o-keyframes fadein {
 from {
opacity: 0;
}
to {
	opacity: 1;
}
}
#popup_wrapper img#close {
	top: -12px;
	right: -12px;
	cursor: pointer;
	position: absolute;
}
#popup_wrapper div#popupContact {
	width: 25%;
	position: relative;
	margin: 10% auto 0%;
}
#popup_wrapper form {
	background: white;
	padding: 30px;
	/*border-radius: 10px;
	border: 2px solid #ccc;*/
}
#popup_wrapper p {
	font-size: 14px;
	margin-top: 20px;
}
#popup_wrapper h2 {
	text-align: center;
	border-radius: 10px 10px 0px 0px;
	    font-size: 20px;
    font-weight: 500;
    font-family: Oswald, sans-serif;
    text-transform: uppercase;
    color: black;
    text-align: center;
    margin-top: 0px;
}
#popup_wrapper hr {
	border: 0px;
	border-top: 1px solid #ccc;
}
#popup_wrapper input[type=text], #popup_wrapper input[type=email] {
	width: 100%;
	padding: 10px;
	font-size: 14px;
	margin-top: 20px;
	padding-left: 0px;
	
	border-bottom: 1px solid #ccc;
	background: transparent;
}
#popup_wrapper #name {
	background-repeat: no-repeat;
	background-position: 8px 9px;
	background-image: url('../images/name.png');
    background-size: 7%;
}
#popup_wrapper #email {
	background-repeat: no-repeat;
	background-position: 8px 9px;
	background-image: url('../images/email.png');
	    margin-bottom: 20px;
    background-size: 7%;
}
#popup_wrapper #contact_no {
	background-repeat: no-repeat;
	background-position: 8px 9px;
	background-image: url('../images/download_call.png');
    background-size: 7%;
}
*/

#popup_wrapper textarea {
	width:100%;
	resize: none;
	height: 50px;
	padding: 10px;
	font-size: 14px;
	margin-top: 20px;
	border-radius: 5px;
	padding-left: 40px;
	margin-bottom: 20px;
	font-family: inherit;
	border: 1px solid #ccc;
	background-repeat: no-repeat;
	background-position: 8px 7px;
	background-image: url('../image/msg.png');
}
#popup_wrapper #submit {
	color: #fff;
    border: none;
    display: block;
    font-size: 14px;
    cursor: pointer;
    background: #ea5e20;
    text-align: center;
    border-radius: 5px;
    text-decoration: none;
    padding: 10px 10px 10px;
    letter-spacing: 0.5px;
}
#popup_wrapper span {
	color: #ea5e20;
	font-weight: 900;
}
@media screen and (max-width: 767px) {
#popup_wrapper div#popupContact {
	width: 90%;
}
}
@media screen and (max-width: 360px) {
#popup_wrapper input[type=text], #popup_wrapper input[type=email], #popup_wrapper textarea {
	width: 77%;
}
}
@media (min-width: 768px) and (max-width: 1023px) {
#popup_wrapper input[type=text], #popup_wrapper input[type=email], #popup_wrapper textarea {
	width: 77%;
}
#popup_wrapper div#popupContact {
	width: 50%;
}
}
@media (min-width: 1024px) and (max-width: 1279px) {
#popup_wrapper div#popupContact {
	width: 35%;
}
}
@media (min-width: 1280px) and (max-width: 1439px) {
#popup_wrapper div#popupContact {
	width: 28%;
}
}
@media (min-width: 1920px) and (max-width: 2000px) {
#popup_wrapper div#popupContact {
	width: 20%;
}
}
