html, body {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
}

body {

  background-position: center center;
  background-attachment: fixed;
  background-repeat: repeat;
  background-size: cover;

}

hr {
    display: block;
    height: 2px;
    border: 0;
    border-top: 2px solid #ccc;
    margin: 1em auto;
    padding: 0;
	width: 100px;
}

hr2 {
    display: block;
    height: 2px;
    border: 0;
    border-top: 2px solid #ccc;
    margin: 1em auto;
    padding: 0;
	width: 100px;
	left:0px;
}

.line2 {
    display: block;
    height: 2px;
    border: 0;
    border-top: 2px solid #3d5c65;
    margin: 1em auto;
    padding: 0;
	width: 100px;
}

holder {
		position:relative;
	
}

a {
	color: #FFF;
}

a:focus {
	text-decoration: none;
}

a:hover {
	text-decoration: none;
}



.navbar-text {
	letter-spacing: 3px;
	font-size: 10px
}

navbar-color {
	background-color: #3d5c65!important;
}

.navbar-default .navbar-toggle:hover {
    background-color: #243335;
}

.navbar-default .navbar-toggle:focus {
    background-color: #243335;
}

.fixed-top-info {
	position: fixed;
  	top: 0;
  	left: 5px;

  	z-index: 9999;
  	width: 100%;
 	height: 13px;
  	
	color: #FFF;
	a:color: #FFF;
	letter-spacing: 2px;
	font-size: 10px
}

.cover {
	position:relative;

/*background: url(../img/carpenter2.jpg) no-repeat center center fixed; 
	-webkit-background-size: cover;
	-moz-background-size: cover;
	-o-background-size: cover;
	background-size: cover;*/
	width:auto;
	height:100%;
	right:0px;

}

.cover-2 {
	position:relative;
	background-image: url(../img/carousel/carousel2.jpeg);
	background-position: center center;
	background-repeat: no-repeat;
	background-attachment: fixed;
	background-size: cover;
	background-color: #3d5c65;
/*background: url(../img/carpenter2.jpg) no-repeat center center fixed; 
	-webkit-background-size: cover;
	-moz-background-size: cover;
	-o-background-size: cover;
	background-size: cover;*/
	width:auto;
	height:100vh;
	right:0px;
}



.cover2 {
		position:relative;
background: url(../img/sketchtorealfinal1.jpg) no-repeat center center fixed; 
	-webkit-background-size: cover;
	-moz-background-size: cover;
	-o-background-size: cover;
	background-size: cover;
	width:auto;
	height:100vh;
	right:0px;
	
}

.cover3 {
	height:100vh;
}

.img-center {
	padding-top: 30vh;
}

.higher-center {
	padding-top: 20%;
}

.img-arrow {
	position:absolute;
	bottom: 150px;
	left:0%;
	width:100%;
}

.font-style {
	font-family:Constantia, "Lucida Bright", "DejaVu Serif", Georgia, serif;
	letter-spacing: 3px;
	text-transform: uppercase;
}



.font-footer {
	text-transform: uppercase;
	font-size: 10px;
	letter-spacing: 3px;
}

.font-uppercase {
	text-transform: uppercase;
}

.font-color {
	color: #ecf0f0!important;
}

.font-main {
	color: #ecf0f0!important;
	letter-spacing: 3px;
	text-transform: uppercase;
}

.style-footer2 {
	background-color: #243335;
	padding-top:0.4em;
}

.stylewhite {
	color: #ecf0f1;
}

.textright {
	text-align: right;
}

.textleft {
	text-align: left;
}

.stylered {
	color: #3d5c65;
}

.stylebackred {
	background-color: #3d5c65;
	padding-top:0.4em;
}

.main-style {
	padding-top: 4em;
	background-color: #243335;
}

.service-style {
	background-color: #3d5c65;
	padding:0.8em;
	color: #ecf0f0!important;
	margin:0.8em;
}

.service-image {
	padding-top:0.8em;
	padding-bottom:0.8em;
}

.colour-light {
	background-color: #bec4c6;
}

.colour-medium {
	background-color: #3d5c65;
}

.colour-high {
	background-color: #243335;
}

.colour-grey {
	background-color: #333333;
}

.nopadding {
   padding: 0 !important;
   margin: 0 !important;
}

.image-padding {
	padding:0.8em;
}

.quotepadding {
	padding-left: 15px;
}

.quotemarks {
	font-size:250%;
}

.text-right {
	text-align: right!important;
}

.border-style {
	padding: 2px;
	border-style: solid;
	border-color: #FFF;
	border-width: thin;	
}

.border-style-image {
	padding:10px;
	margin:10px;
	border-style: solid;
	border-color: #FFF;
	border-width: thin;
}


.row-height {
	height: 150px;	
}

.side-padding {
	margin-left:10px;
	margin-right:10px;
}

.width-100 {
	width:100%;
}


/*ANIMATION*/

/* make keyframes that tell the start state and the end state of our object */
@-webkit-keyframes fadeIn { from { opacity:0; } to { opacity:1; } }
@-moz-keyframes fadeIn { from { opacity:0; } to { opacity:1; } }
@keyframes fadeIn { from { opacity:0; } to { opacity:1; } }

.fade-in {
  opacity:0;  /* make things invisible upon start */
  -webkit-animation:fadeIn ease-in 1;  /* call our keyframe named fadeIn, use animattion ease-in and repeat it only 1 time */
  -moz-animation:fadeIn ease-in 1;
  animation:fadeIn ease-in 1;

  -webkit-animation-fill-mode:forwards;  /* this makes sure that after animation is done we remain at the last keyframe value (opacity: 1)*/
  -moz-animation-fill-mode:forwards;
  animation-fill-mode:forwards;

  -webkit-animation-duration:1s;
  -moz-animation-duration:1s;
  animation-duration:1s;
}

.fade-in.one {
  -webkit-animation-delay: 0.7s;
  -moz-animation-delay: 0.7s;
  animation-delay: 0.7s;
}

.fade-in.two {
  -webkit-animation-delay: 1.2s;
  -moz-animation-delay:1.2s;
  animation-delay: 1.2s;
}

.fade-in.three {
  -webkit-animation-delay: 1.6s;
  -moz-animation-delay: 1.6s;
  animation-delay: 1.6s;
}

/*ANIMATION*/

/*GOOGLEMAPS AP*/
#googlemaps { 
 	height:37em;
 	width: 100%; 
	opacity:0.50;
	position: absolute;
	left: 0; 
	z-index: -999; /* Set z-index to 0 as it will be on a layer below the contact form */
	background: #080808;
}

/*BUTTON ARROW*/

.btn-arrow {
	position: absolute;
    bottom: 5%;
	left:50%;
    margin-left:-50px;
	right:50%;
	margin-right:-50px;
}

.btn-arrow:hover {
	color: #e71f63;
}

.btn-arrow:active {
	color: #e71f63;
}


/*IMAGE FADER*/
#background_cycler {
	padding:0;
	margin:0;
	width:100%;
	height:100%;
	position:absolute;
	top:0;
	left:0;
	z-index:-1;
	}
#background_cycler div {
	position:absolute;
	left:0;
	top:0;
	width:100%;
	height:100%;
	z-index:1;
	background-color:black;
	background-size:cover;
	background-position:center center;
	}
#background_cycler div.active {
	z-index:3;
	}

