

::selection {
	background: #95b1e7; /* Safari */
	}
::-moz-selection {
	background: #95b1e7; /* Firefox */
}

html,
body {
   margin:0;
   padding:0;
   height:100%;
    -webkit-text-size-adjust: 100%; /* Prevent font scaling in landscape while allowing user zoom */
}

body {
	margin: 0px;
	padding: 0px;
	text-align: center;
	width: 100%;
	height: 100%;
	font-weight: normal;
	color: #222;
	font-size: 16px;
	background-color: #eff8ef;
}

.wrapper {
	width: 1100px;
	height: auto;
	text-align: left;
	margin: 0px auto;
}



.black-bg {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: 51;
	background-color: rgba(0,0,0,0.8);
	display: none;
}


.clear {
	clear: both;
}

b,strong {
	font-weight: bold;
}

i,em {
	font-style: italic;
}

input[type=text],
textarea {
	width: 94%;
	height: 20px;
	padding: 8px 10px;
	margin: 4px 0;
	border-radius: 2px;
	background-color: #fff;
	border: 1px solid #fff;
	box-shadow: 0 1px 2px rgba(0,0,0,0.2);
	font-weight: 400;
	color: rgba(0,0,0,0.5);
	font-size: 16px;
	outline: none;
	-webkit-appearance:none;
}

textarea {
	height: 160px;
	resize: none;
}

input[type=text]:focus {
	box-shadow: 0 1px 2px rgba(0,0,0,0.5);
}

.g-recaptcha {
    float: left;
}

input[type=text].error, textarea.error, .g-recaptcha-error {
	border: 1px solid rgba(196,57,65, 0.6);
}

input[type=submit],
a.button {
	outline: none;
	display: inline-block;
	width: auto;
	height: 38px;
	line-height: 38px;
	margin: 0px;
	padding: 0px 14px;
	border-radius: 3px;
	background-color: #29cb2a;
	font-size: 18px;
	font-weight: 400;
	color: #fff;
	text-shadow: 0px 1px 2px rgba(0,0,0,0.5);
	border: none;
	box-shadow: inset 0 -1px 0px rgba(0,0,0,0.25), /*bottom internal shadow*/ 
  	inset 0 1px 1px rgba(255,255,255,0.25); /*top internal highlight*/
  	cursor: pointer;
  	-webkit-appearance:none;
  	transition: background 0.15s ease;
}

input[type=submit],
a.button:hover {
	background-color: #29af00;
}

.red,
.error {
	color: #cc5600;
	font-weight: bold;
}

.message {
	display: block;
	width: auto;
	height: auto;
	background-color: #cc5600;
	border-radius: 3px;
	padding: 5px 10px;
	color: #fff;
	font-size: 18px;
	margin: 8px 0 16px 0;
}

.message-green {
	background-color: #29cb2b;
}



#container {
   min-height:100%;
   position:relative;
}



header {
	width: 100%;
	height: 90px;
	background-color: #111;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 100;
}

header .wrapper {
	width: 1160px;
}

header .logo-box {
	float: left;
	width: 288px;
	height: 85px;
}

header .logo-box img {
	width: 282px;
	height: 77px;
	padding: 4px 0 4px 6px;
}



header nav {
	float: right;
	display: inline-block;
}

header nav ul {
	display: inline-block;
	width: auto;
	height: auto;
}

header nav ul li {
	width: auto;
	height: auto;
	float: left;
}
header nav ul li.home {
	display: none;
}

header nav ul li a {
	display: inline-block;
	width: auto;
	height: 90px;
	line-height: 90px;
	padding: 0 12px;
	font-size: 24px;
	font-weight: normal;
	color: #eff8ef;
	text-transform: uppercase;
	text-decoration: none;
	transition: background 0.2s ease;
}

header nav ul li.active a,
header nav ul li a:hover {
	background-color: #eff8ef;
	color: #222;
}


.header-box {
	width: auto;
	height: 90px;
}





.main-box {
	height: auto;
	min-height: 100px;
	padding: 0 0 90px 0;
}

.main-box-home {
	padding: 0;
}




.photo-box {
	position: relative;
	overflow: auto;
	width: auto;
	height: 400px;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center center;
}

.photo-box li {
	list-style: none;
	width: auto;
	height: 400px;
	background-position: center top;
	background-repeat: no-repeat;
	background-size: cover;
}

.photo-box ul li {
	float: left;
}

.photo-box .unslider-arrow {
	position: absolute;
	z-index: 10;
	display: block;
	width: 80px;
	height: 400px;
	background-repeat: no-repeat;
	background-size: 40px 65px;
	background-position: center center;
	cursor: pointer;
	transition: opacity 0.15s ease;
	opacity: 0.9;
}

.photo-box .unslider-arrow:hover {
	opacity: 0.7;
}

.photo-box .unslider-arrow:active {
	opacity: 0.5;
}

.photo-box .prev {
	left: 0px;
	background-image: url('../img/header-prev.png');
}

.photo-box .next {
	right: 0px;
	background-image: url('../img/header-next.png');
}


.photo-box .dots {
	position: absolute;
	top: 20px;
	left: 0;
	right: 0;
	text-align: center;
	z-index: 10;
}

.photo-box .dots li {
	display: inline-block;
	width: 8px;
	height: 8px;
	margin: 0 5px;
	text-indent: -999em;
	border-radius: 4px;
	cursor: pointer;
	background-color: #eff8ef;
	opacity: 1;
	box-shadow: 0px 1px 0px rgba(0,0,0,0.3);
	-webkit-transition: background .5s, opacity .5s;
	-moz-transition: background .5s, opacity .5s;
	transition: background .5s, opacity .5s;
}

.photo-box .dots li.active {
	background-color: #29cb2a;
	opacity: 1;
}


.photo-box span.description {
	display: block;
	width: 100%;
	height: 400px;
	background-color: rgba(0,0,0,0.2);
	font-size: 40px;
	font-weight: 400;
	line-height: 46px;
	color: #fff;
	text-shadow: 2px 2px 3px rgba(0,0,0,0.7);
	position: relative;
	margin: 0;
	padding: 0;
}

.photo-box span.description span {
	display: inline-block;
	width: 700px;
	height: auto;
	top: 50%;
	padding: 0;
	margin: -46px auto 0 auto;
	text-align: center;
	position: relative;
}









.text-box {
	width: 700px;
	height: auto;
	float: left;
	text-align: left;
	font-size: 18px;
	font-weight: 300;
	line-height: 28px;
	padding: 20px 0 20px 0;
}

.text-box-small {
	width: 320px;
	padding: 20px 15px 20px 15px;
}

.text-box h1,
.text-box h2,
.text-box h3,
.text-box h4,
.text-box h5,
.text-box h6 {
	font-weight: 400;
	font-size: 20px;
	text-decoration: none;
	color: #000;
	margin: 0px;
	padding: 6px 0px 10px 0px;
}

.text-box h1 {
	font-size: 30px;
	text-decoration: underline;
	text-transform: uppercase;
	padding: 14px 0 10px 0;
}

.text-box h2 {
	font-size: 28px;
	text-transform: uppercase;
}

.text-box h3 {
	font-size: 24px;
	text-transform: uppercase;
}

.text-box h4 {
	color: #29cb2a;
}

.text-box a {
	color: #29cb2a;
	font-weight: bold;
	text-decoration: none;
}

.text-box a:hover {
	color: #1f1f1f;
}

.text-box a.button {
	color: #fff;
	font-weight: 300;
}

.text-box p {
	margin: 0px;
	padding: 12px 0px;
}

.text-box ol {
	padding-left: 20px;
}

.text-box ul {
	padding-left: 0px;
}

.text-box ul li {
	list-style: none;
	padding: 0 0 0 24px;
	background-image: url('../img/list-item.png');
	background-repeat: no-repeat;
	background-size: 16px 16px;
	background-position: 0 6px;
}


.text-box ol li {
	list-style: decimal;
}

.text-box hr {
	border: 0;
	border-top: 1px solid #c1cac1;
	height: 0px;
	width: 100%;
	margin: 16px 0;
	padding: 0 0;
}

.text-box table.form-table {
	width: 100%;
}

.text-box table.form-table td.column-left {
	width: 200px;
	vertical-align: top;
	padding-top: 10px;
}

.text-box table.form-table input[type=text],
.text-box table.form-table textarea {
	margin: 5px 0;
}

.text-box table.form-table input[type=submit] {
	margin: 12px 0;
}

.text-box table.add-review i {
	display: inline-block;
	padding: 0 8px;
	font-style: italic;
	font-weight: 200;
	font-size: 16px;
}

.text-box table.add-review tr td:first-child {
	vertical-align: top;
	padding-top: 8px;
}


.pagination-box {
	padding: 20px 0 20px 0px;
	text-align: center;
}

.pagination-box span {
	display: inline-block;
	width: auto;
	height: 32px;
	line-height: 32px;
	border-radius: 2px;
	margin: 4px 4px;
	padding: 0 8px;
	font-weight: 500;
}

.pagination-box a {
	display: inline-block;
	width: auto;
	height: auto;
	line-height: 28px;
	background-color: #29cb2a;
	color: #fff;
	padding: 0 6px;
	border-radius: 2px;
	margin: 2px 2px;
	transition: background 0.15s ease;
}

.pagination-box a.active,
.pagination-box a:hover {
	background-color: #000;
	color: #fff;
}


.guestbook-box {
	
}

.guestbook-box .item {
	margin: 10px 0 26px 0;
	box-shadow: 0 1px 2px rgba(0,0,0,0.2);
	background-color: #fff;
}

.guestbook-box .item h3 {
	display: block;
	background-color: #000;
	width: auto;
	height: 40px;
	line-height: 40px;
	color: #fff;
	padding: 0 12px;
	border-top-left-radius: 4px;
	border-top-right-radius: 4px;
}

.guestbook-box .item p {
	display: block;
	width: auto;
	height: auto;
	margin: 0;
	padding: 14px;
	border-bottom-left-radius: 4px;
	border-bottom-right-radius: 4px;
}




.review-box {
	width: auto;
	height: 300px;
	background-image: url('/uploads/headers/reviews-bg.jpg');
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	padding-bottom: 90px;
}

.review-box .inner {
	width: auto;
	height: 100%;
	background-color: rgba(0,0,0,0.5);
}

.review-box .wrapper {
	position: relative;
	overflow: auto;
	z-index: 100;
}

.review-box li {
	list-style: none;
	width: auto;
	height: 230px;
	background-position: center top;
	background-repeat: no-repeat;
	background-size: cover;
}

.review-box ul li {
	float: left;
}

.review-box li h3 {
	display: block;
	text-transform: uppercase;
	text-align: center;
	color: #fff;
	font-size: 32px;
	text-shadow: 0 2px 2px rgba(0,0,0,0.6);
	padding: 66px 8px 10px 8px;
	font-weight: 400;
}

.review-box li h3:before {
	content: '--- ';
}

.review-box li h3:after {
	content: ' ---';
}

.review-box li p {
	display: block;
	max-width: 900px;
	text-align: center;
	color: #fff;
	font-size: 28px;
	text-shadow: 0 2px 2px rgba(0,0,0,0.6);
	margin: 0 auto;
	padding: 0 8px;
	font-weight: 300;
	line-height: 32px;
}

.review-box .dots {
	position: absolute;
	top: 20px;
	left: 0;
	right: 0;
	text-align: center;
	z-index: 100;
}

.review-box .dots li {
	display: inline-block;
	width: 8px;
	height: 8px;
	margin: 0 5px;
	text-indent: -999em;
	border-radius: 4px;
	cursor: pointer;
	background-color: #eff8ef;
	opacity: 1;
	box-shadow: 0px 1px 0px rgba(0,0,0,0.3);
	-webkit-transition: background .5s, opacity .5s;
	-moz-transition: background .5s, opacity .5s;
	transition: background .5s, opacity .5s;
}

.review-box .dots li.active {
	background-color: #29cb2a;
	opacity: 1;
}

.review-box input[type="button"] {
	width: auto;
	height: auto;
	padding: 6px 12px;
	margin: 10px auto 10px auto;
	background-color: rgba(255,255,255,0.9);
	border: none;
	border-radius: 4px;
	box-shadow: 0 1px 6px rgba(0,0,0,0.2);
	color: #000;
	font-size: 28px;
	font-weight: 400;
	text-transform: uppercase;
	cursor: pointer;
	transition: background 0.15s ease;
	outline: none;
}

.review-box input[type="button"]:hover {
	background-color: rgba(255,255,255,0.7);
}

.review-box input[type="button"]:active {
	background-color: rgba(255,255,255,0.5);
}





.facebook-box {
	width: 360px;
	height: auto;
	float: right;
	background-color: #eff8ef;
	padding: 10px;
}




.sidebar-box {
	width: 360px;
	height: auto;
	float: right;
	font-size: 23px;
	font-weight: 300;
	color: #fff;
	line-height: 34px;
	background-color: #29cb2a;
}

.sidebar-box .row {
	width: auto;
	height: auto;
	padding: 10px 30px;
	color: #fff;
}

.sidebar-box .row-green {
	background-color: #29cb2a;
}

.sidebar-box .row-black {
	background-color: #111;
}

.sidebar-box .row h2 {
	display: inline-block;
	width: auto;
	height: auto;
	margin: 0px;
	padding: 6px 0px 10px 0px;
	font-weight: 300;
	font-size: 32px;
	text-transform: uppercase;
	text-decoration: underline;
	color: #fff;
}

.sidebar-box a.phone,
.sidebar-box a.email {
	display: block;
	width: auto;
	height: auto;
	line-height: 30px;
	padding: 5px 0 5px 40px;
	background-size: 30px 30px;
	background-repeat: no-repeat;
	background-position: 0 6px;
	text-decoration: none;
	color: #fff;
	transition: color 0.2s ease;
}

.sidebar-box a.phone {
	background-image: url('../img/icon-phone.png');
}
.sidebar-box a.email {
	background-image: url('../img/icon-email.png');
	padding-bottom: 24px;
}

.sidebar-box a.phone:hover,
.sidebar-box a.email:hover {
	color: #ccc;
}

.sidebar-box a.phone:active,
.sidebar-box a.email:active {
	color: #aaa;
}

.sidebar-box p {
	padding: 14px 0;
}

.sidebar-box a.offer {
	float: right;
	display: inline-block;
	width: auto;
	padding: 0 0 0 54px;
	margin: 3px 0 0 0;
	height: 45px;
	font-size: 40px;
	font-weight: 500;
	background-image: url('../img/offer-bg.png');
	background-repeat: no-repeat;
	background-size: 45px 45px;
	background-position: 0 0;
}

.sidebar-box ul li {
	text-transform: uppercase;
	font-size: 26px;
}

.sidebar-box ul li:before {
	content: '* ';
}

.sidebar-box input[type="button"] {
	width: auto;
	height: auto;
	float: right;
	padding: 6px 12px;
	margin: 10px 0;
	background-color: #fff;
	border: none;
	border-radius: 4px;
	box-shadow: 0 1px 6px rgba(0,0,0,0.2);
	color: #29cb2a;
	font-size: 28px;
	font-weight: 300;
	text-transform: uppercase;
	cursor: pointer;
}



.review-box {
}




footer {
	width: 100%;
	height: 90px;
	background-color: #111;
	position: absolute;
	bottom: 0;
	left: 0;
	z-index: 100;
}

footer .logo-box {
	float: left;
	width: 352px;
	height: 85px;
}

footer .logo-box img {
	width: 300px;
	height: 77px;
	padding: 4px 26px;
}

footer ul {
	float: right;
	width: auto;
	height: auto;
}

footer ul li {
	width: auto;
	height: auto;
	float: left;
	margin: 0;
	padding: 0 16px;
	display: inline-block;
	margin-top: 35px;
	height: 20px;
	line-height: 20px;
	color: #eff8ef;
	font-weight: 200;
	font-size: 16px;
}
footer ul li:first-child {
    border-right: 1px solid #fff;
}

footer ul li.responsive {
	display: none;
}

footer ul li a {
	color: #eff8ef;
	text-decoration: none;
	transition: color 0.2s ease;
}

footer ul li a:hover {
	color: #29cb2a;
}




