/*--
	Define color for element below :
	1. Gradient overlay color
	2. Close info link hover color
	3. Service icon hover color
	4. Contact icon hover color
	5. Back to top link hover color
	6. Form and button hover color
--*/

/*-- ========== IMAGE OVERLAY ============ --*/
.overlay{
        background:  url(../img/Webpix_opptyrunway.jpg);
        background-size: cover;
        background-position: bottom;
        background-blend-mode: multiply;
}
/*-- ========== CLOSE INFO & BACK TO TOP ============ --*/
.info-container .hover-effect-1 a:hover:after,
.info-container .hover-effect-1 a:hover:before{
	background:#d96459;
}
.info-container .close-link a:hover,
.info-container .backtop-link a:hover
{
	color:#d96459;
}
/*-- ========== SERVICE & CONTACT ICON ============ --*/
.about .about-services .service-container:hover .services .name,
.about .about-services .service-container:hover .services .icon,
.contact-location .location-container:hover .location .icon,
.contact-location .location-container:hover .location .name
{
	color:#d96459;
}
/*-- ========== FORM & BUTTON ============ --*/
button[type="submit"].submit-subscribe:hover{
	background:#d96459;
	color:white;
}
button[type="submit"].submit-message:hover{
	background:#d96459;
	color:white;
	border:1px solid #d96459;
}
input[type="text"]:focus, textarea:focus{
	border-bottom:1px solid #d96459;
}

