/*--
	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
--*/

/*-- ========== GRADIENT OVERLAY ============ --*/
.overlay{
	background: -webkit-linear-gradient(60deg, #48666f 10%, #31376d 70%); /* Chrome 10+, Saf5.1+ */
  	background:    -moz-linear-gradient(60deg, #48666f 10%, #31376d 70%); /* FF3.6+ */
  	background:     -ms-linear-gradient(60deg, #48666f 10%, #31376d 70%); /* IE10 */
  	background:      -o-linear-gradient(60deg, #48666f 10%, #31376d 70%); /* Opera 11.10+ */
  	background:         linear-gradient(60deg, #48666f 10%, #31376d 70%); /* W3C */  
}
/*-- ========== CLOSE INFO & BACK TO TOP ============ --*/
.info-container .hover-effect-1 a:hover:after,
.info-container .hover-effect-1 a:hover:before{
	background:#f07818;
}
.info-container .close-link a:hover,
.info-container .backtop-link a:hover
{
	color:#f07818;
}
/*-- ========== 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:#f07818;
}
/*-- ========== FORM & BUTTON ============ --*/
button[type="submit"].submit-subscribe:hover{
	background:#f07818;
	color:white;
}
button[type="submit"].submit-message:hover{
	background:#f07818;
	color:white;
	border:1px solid #f07818;
}
input[type="text"]:focus, textarea:focus{
	border-bottom:1px solid #f07818;
}

