/*
 * Contact Us Popup Overlay Styles
 */

.contact_us_overlay{
	display: none;
	width: 100%;
    height: 100%;
    background: #333;
    position: fixed;
    z-index: 999;
    background: rgba(51, 51, 51, 0.80);
    color: #fff;
}
.contact_us_overlay .inner{
    max-width: 1650px;
    margin: auto;
    text-align: center;
    width: 100%;
    height: 100%;
}
.contact_us_overlay .messsage{
	position: relative;
	top: 40%;
	
}
.contact_us_overlay .messsage .title{
	font-size: 200%;
	margin-bottom: 7px;
}
.contact_us_overlay .messsage .subtitle{
	font-size: 150%;
	margin-bottom: 10px;
}
.contact_us_overlay .messsage .icon{
	font-size: 200%;
}

/*active state*/
.contact_us_overlay.active{
	display: block;
}


@media screen and (max-width: 678px){
	.contact_us_overlay .messsage{
		top: 25%;
	}
}
