/* Base styles - html, body, container, global styles
-------------------------------------------------- */

/* disable transitions during page resizes - add/remove class in resize handler
-------------------------------------------------- */
#home-page{
	width: 100%;
	text-align: center;
}
.home-hero-image{
	position: relative;
}
.home-hero-copy{
	position: absolute;
	top: 50%;
	color: #ffffff;
	width: 100%;
	text-align: center;
	margin-top: -60px;
	
}
.home-hero-copy-inner{
	position: absolute;
	top: 50%;
	color: #ffffff;
	width: 100%;
	text-align: center;
	margin-top: -60px;
}
.home-hero-copy h1{
	font-size: 20px;
}
.home-hero-copy h2{
	font-size: 14px;
	font-weight: 300;
}
.home-hero-image img{
	width: 100%;
}
.home-about-holder{
	background-color: #f1f1f1;
    text-align: center;
    margin-left: -5px;
}
.home-about-header, .home-services-header{
	margin: 0px;
    padding: 35px 0px;
    color: #2a6098;
}
.home-about-paragraph{
	margin: 0px;
    padding: 0px 30px 65px;
    font-size: 14px;
    line-height: 1.5;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}
.home-services-holder{
	text-align: center;
	padding-top: 35px;
}
.home-services-list-holder{
	text-align: left;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
.home-services-item{
	max-width: 350px;
    padding: 20px;
}
.home-services-item-holder{
	max-height: 234px;
	overflow: hidden;
	height: 234px;
}
#home-services-image1{
	background-image: url("../img/consulting.jpg"); /* The image used */
  	background-position: center; /* Center the image */
  	background-repeat: no-repeat; /* Do not repeat the image */
  	background-size: cover; /* Resize the background image to cover the entire container */
}
#home-services-image2{
	background-image: url("../img/panels.jpg"); /* The image used */
  	background-position: center; /* Center the image */
  	background-repeat: no-repeat; /* Do not repeat the image */
  	background-size: cover; /* Resize the background image to cover the entire container */
}
#home-services-image3{
	background-image: url("../img/doors.jpg"); /* The image used */
  	background-position: center; /* Center the image */
  	background-repeat: no-repeat; /* Do not repeat the image */
  	background-size: cover; /* Resize the background image to cover the entire container */
}
#home-services-image4{
	background-image: url("../img/baseshoe.jpg"); /* The image used */
  	background-position: center; /* Center the image */
  	background-repeat: no-repeat; /* Do not repeat the image */
  	background-size: cover; /* Resize the background image to cover the entire container */
}
.home-services-item img{
	width: 100%;
	
}
.home-services-info{
	background-image: url(../img/home-service-info-bg.png);
    background-position: top;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 50px 20px 20px 20px;
    margin-top: -23px;
    z-index: 1;
    position: relative;
	
}
.home-services-info h2{
	margin: 0px;
    font-size: 16px;
    color: #2a6098;
}

.home-services-info p{
    font-size: 14px;
    padding: 5px 0px;
    line-height: 1.25;
}
.home-services-info a{
    text-decoration: none;
    color: #ffffff;
}
.home-services-button{
	background-color: #2a6098;
    width: 100%;
    text-align: center;
    padding: 9px 0px;
    font-size: 14px;
    font-weight: bold;
    letter-spacing: 1px;
}
.home-services-button:hover{
	background-color: #ffffff;
	color: #2a6098;
}





/*
.notransition {
	.transition (none) !important;
}
*/

/* Responsive
-------------------------------------------------- */

/* Tablet: >= 480px
------------------------- */
@media (min-width: 480px) {
	.home-hero-copy{
		top: 50%;
	}
	.home-hero-copy h1{
		font-size: 25px;
	}
	
}

/* Desktop (small): >= 768px
------------------------- */
@media (min-width: 768px) {
	.home-hero-copy{
		top: 45%;
	}
	.home-hero-copy h1{
		font-size: 30px;
	}
	.home-hero-copy h2{
		font-size: 18px;
	}
}

/* Desktop (medium): >= 992px 
------------------------- */
@media (min-width: 992px) {

}

/* Desktop (large): >= 1200px
------------------------- */
@media (min-width: 1200px) {
	.home-hero-copy{
		top: 40%;
	}
	.home-hero-copy h1{
		font-size: 35px;
	}
}