@charset "utf-8";
/* CSS Document */

html {
	position: relative;
	min-height: 100%;
}

body {
	font-family: 'Muli', sans-serif;
	font-display: auto;
}

#carousel-gallery {
	position: fixed;
	top: 0;
	width: 100%;
	height: 100%;
	z-index: -99;
}

#carousel-gallery .item {
  height: 100vh;
  min-height: 300px;
  background: no-repeat center top scroll;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
	background-position: center;
}


.navbar-default {
	background: none;
	border: none;
	margin-top: 40px;
}

.navbar-brand img {
	max-width: 450px;
	height: auto;
}

.btn-contact {
	color: #fff !important;
}

.btn-contact:hover {
	background: #AAAE8B !important;
	border-color: #AAAE8B !important;
}

.btn-gallery:active {
	background: #ccc !important;
}

.navbar-nav .open .dropdown-menu {
	position: absolute;
	z-index: 99;
	background: #fff;
}

.dropdown {
		margin-left: 20px;
	}

h1, h2 {
	color: #FFF;
}

.main-content {
	margin-top: 25%;
}

.main-content .welcome {
	background: rgba(145,163,163,0.8);
	padding: 40px;
}

.main-content .testimonials {
	background: rgba(170,174,139,0.8);
	text-align: right;
	padding: 40px;
}

.main-content p, .main-content li {
	color: #FFF;
	font-size: 16px;
}

.main-content a,
.main-content a:link,
.main-content a:active,
.main-content a:focus {
	color: #FFF;
	text-decoration: underline;
}

.main-content a:hover {
	color: #CCCCCC;
}

blockquote {
	border: none;
}

blockquote p:before {
	content: "\201C";
	color: #FFF;
	font-size: 3em;
	line-height: 0em;
	vertical-align: -0.4em;
	margin-right: 0.1em;
}

blockquote p:after {
	content: "\201D";
	color: #FFF;
	font-size: 3em;
	line-height: 0em;
	vertical-align: -0.4em;
	margin-left: 0.1em;
}

blockquote p {
	display: inline;
}

#contact {
	background: rgba(255,255,255,0.9);
	margin-top: 80px;
	padding: 80px 0px 120px 0px;
	font-size: 16px;
}

#contact h2 {
	padding: 0;
	margin: 0;
	color: #333333;
}

#contact .phone {
	font-size: 18px;
}

#contact a {
	color: #789E6D;
	font-weight: bold;
}

.grass {
	position: fixed;
	bottom: 50px;
	background: url(../images/grass.png) repeat-x;
	background-size: 208px 75px;
	width: 100%;
	height: 75px;
	border: none;
	outline: none;
}

.footer {
	position: fixed;
	bottom: 0;
	width: 100%;
	height: auto;
	background: rgba(120,158,109,1.00);
	color: #FFF;
}

.footer p {
	padding: 10px 0px;
}

.footer a {
	color: #FFF;
}

@media (max-width: 1200px) {

	.main-content .welcome {
		padding: 20px;
	}

	.main-content .testimonials {
		padding: 20px;
	}

}

@media (max-width: 768px) {

	.navbar {
		text-align: center;
	}

	.navbar-brand {
		float: none;
	}

	.navbar-brand img {
		width: 70%;
		text-align: center;
		margin: 0 auto;
	}

	.dropdown {
		margin-top: 20px;
		margin-left: 0px;
	}

	.navbar-nav .open .dropdown-menu {
		width: 100%;
	}

	.navbar-right {
		width: 100%;
		margin: 100px 0px 0px 0px;
	}

	.main-content {
		margin-top: 40%;
	}

	.main-content .welcome {
		background: rgba(145,163,163,1);
	}

	.main-content .testimonials {
		background: rgba(170,174,139,1);
	}

	#contact {
		margin-top: 0;
		background: rgba(255,255,255,1);
	}

	#carousel-gallery {
		position: absolute;
	}

	.grass, .footer, .footer p {
		position: relative;
		bottom: 0;
	}

	.grass {
		background-color: #FFF;
	}
}

@media (max-width: 480px) {

}

/*
  Bootstrap Carousel Fade Transition (for Bootstrap 3.3.x)
  CSS from:       http://codepen.io/transportedman/pen/NPWRGq
  and:            http://stackoverflow.com/questions/18548731/bootstrap-3-carousel-fading-to-new-slide-instead-of-sliding-to-new-slide
  Inspired from:  http://codepen.io/Rowno/pen/Afykb
*/
.carousel-fade .carousel-inner .item {
  opacity: 0;
  transition-property: opacity;
}

.carousel-fade .carousel-inner .active {
  opacity: 1;
}

.carousel-fade .carousel-inner .active.left,
.carousel-fade .carousel-inner .active.right {
  left: 0;
  opacity: 0;
  z-index: 1;
}

.carousel-fade .carousel-inner .next.left,
.carousel-fade .carousel-inner .prev.right {
  opacity: 1;
}

.carousel-fade .carousel-control {
  z-index: 2;
}

/*
  WHAT IS NEW IN 3.3: "Added transforms to improve carousel performance in modern browsers."
  Need to override the 3.3 new styles for modern browsers & apply opacity
*/
@media all and (transform-3d), (-webkit-transform-3d) {
    .carousel-fade .carousel-inner > .item.next,
    .carousel-fade .carousel-inner > .item.active.right {
      opacity: 0;
      -webkit-transform: translate3d(0, 0, 0);
              transform: translate3d(0, 0, 0);
    }
    .carousel-fade .carousel-inner > .item.prev,
    .carousel-fade .carousel-inner > .item.active.left {
      opacity: 0;
      -webkit-transform: translate3d(0, 0, 0);
              transform: translate3d(0, 0, 0);
    }
    .carousel-fade .carousel-inner > .item.next.left,
    .carousel-fade .carousel-inner > .item.prev.right,
    .carousel-fade .carousel-inner > .item.active {
      opacity: 1;
      -webkit-transform: translate3d(0, 0, 0);
              transform: translate3d(0, 0, 0);
    }
}
