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

/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/

html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after, q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
.clearfix:before, .clearfix:after, .container_12:before, .container_12:after {
	content: '.';
	display: block;
	overflow: hidden;
	visibility: hidden;
	font-size: 0;
	line-height: 0;
	width: 0;
	height: 0;
}
.clearfix:after, .container_12:after {
	clear: both;
}
/*
  The following zoom:1 rule is specifically for IE6 + IE7.
  Move to separate stylesheet if invalid CSS is a problem.
*/

.clearfix, .container_12 {
	zoom: 1;
}
/* ---------- Global ---------- */

.wrap {
	position: relative;
	width: 100%;
	display: block;
	clear: both;
}
.wrapper {
	width: 1000px;
	display: block;
	margin: 0 auto;
	clear: both;
}
* html .clearfix {
	height: 1%;
}
html {
	width: 100%;
	height: 100%;
}
* {
	padding: 0;
	margin: 0;
	outline: 0 none;
}
body {
	font-family: 'Open Sans', Helvetica, Arial, sans-serif;
	font-weight: 300;
	color: #333333;
	line-height: 30px;
	font-size: 18px;
	background:url(images/bg.jpg) repeat;
}
p {
	margin-bottom: 20px;
	font-weight: 300;
}
a {
	color: #0075a2;
	text-decoration: none;
}
a:hover {
	text-decoration: none;
}
strong, b {
	font-weight: 600;
}
em, i {
	font-weight: 300;
	font-style: italic;
}

h2{
	font-size:40px;
	font-family: 'Lobster', Helvetica, Arial, sans-serif;
	color:#56443d;
}

/* ---------- Home ---------- */
.home {
	background: url(images/front-page-banner.jpg) 50% 0 no-repeat fixed;
	-webkit-background-size: cover;
	-moz-background-size: cover;
	-o-background-size: cover;
	background-size: cover;
	min-height: 750px;
}
#home h1 {
	
	text-align: center;
	margin-top: 100px;
}
#home h1 img{display:inline-block;}
nav{
	width:60%;
	float:left;	
}
.newlogo{width:40%;
	float:left;
	text-align:right;
	
}
nav ul {
	display: block;
	width: 520px;
	padding-top: 30px;
}
nav ul li {
	display: inline-block;
	text-align: center;
	width: 100px;
	position:relative;
	margin:0;
	padding-bottom:10px;
}
nav ul li a {
	color: #ffffff;
	font-family: 'Lobster', Helvetica, Arial, sans-serif;
	font-size: 30px;
	line-height: 100%;
	-webkit-transition: color .5s ease;
	-moz-transition: color .5s ease;
	-ms-transition: color .5s ease;
	-o-transition: color .5s ease;
	transition: color .5s ease;
	
}
nav ul li a:hover {
	color: #00a39c;
	
}	

/*DROPDOWN MENU*/	

nav ul li:hover
{
	color:#f6f6f6;
	
}
nav ul ul
{
	display:none;
	position:absolute;
	top:100%;
	left:0;
	background:#009f98;
	padding:0;
	width:250px;
}
nav ul ul li
{
	float:none;
	text-align:left;
	padding: 10px 0px 8px 10px;
    width: 241px;
	border-bottom:1px solid #008781;
}
nav ul ul li a{
font-size:24px;
}
nav ul ul li a:hover {
    color: #fff;
	
	
}
nav ul ul li:hover {
    background: #3f322d;
}
nav ul ul a
{
	line-height:100%;
}
nav ul li:hover > ul
{
	display:block
}

/* ---------- about ---------- */
.about,.menu, .contact{
	margin:30px 0 50px;
	text-align:center;
}

.divider{
	border-radius:2px;
	height:5px;
	opacity:0.1;
	background:#000000;
	margin:30px auto 40px;
	width:90%;
}
.divider2{
	background:#ededed;
	height:1px; 
	line-height:1px; 
	width:100%;
	display:inline-block;
	clear:both;
}
.btncontact{
	background:#00b2aa;
	text-transform:uppercase;
	color:#ffffff;
	font-family: 'Open Sans', Helvetica, Arial, sans-serif;
	font-weight: 600;
	font-size:22px;
	margin:20px auto 0;
	display:inline-block;
	padding:10px 30px 15px;
	border-radius:5px;
	background: #00b2aa; /* Old browsers */
	background: -moz-linear-gradient(top,  #00b2aa 0%, #00938d 100%); /* FF3.6+ */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#00b2aa), color-stop(100%,#00938d)); /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(top,  #00b2aa 0%,#00938d 100%); /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(top,  #00b2aa 0%,#00938d 100%); /* Opera 11.10+ */
	background: -ms-linear-gradient(top,  #00b2aa 0%,#00938d 100%); /* IE10+ */
	background: linear-gradient(to bottom,  #00b2aa 0%,#00938d 100%); /* W3C */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00b2aa', endColorstr='#00938d',GradientType=0 ); /* IE6-9 */

}

.footer{text-align:center; font-size:14px; padding-bottom:20px; line-height:24px;}
.facebook{background:url(images/icon-facebook.png) no-repeat 0 0; width:45px; height:45px; display:inline-block; text-indent:-999em;	-webkit-transition: all .5s ease;
	-moz-transition: all .5s ease;
	-ms-transition: all .5s ease;
	-o-transition: all .5s ease;
	transition: all .5s ease; margin-right:10px;}
.facebook:hover{background:url(images/icon-facebook-h.png) no-repeat 0 0; }
.twitter{background:url(images/icon-twitter.png) no-repeat 0 0; width:45px; height:45px; display:inline-block; text-indent:-999em;	-webkit-transition: all .5s ease;
	-moz-transition: all .5s ease;
	-ms-transition: all .5s ease;
	-o-transition: all .5s ease;
	transition: all .5s ease;}
.twitter:hover{background:url(images/icon-twitter-h.png) no-repeat 0 0; }

.form{
	display:block; 
	clear:both;
}
.form .inputwrap{
	margin-bottom:10px;
}

.form input{
	color:#333333;
	background-color:transparent;
	border:none;
	background:url(images/textbg.png) no-repeat left bottom;
	width:540px;
	padding:10px 0;
	text-indent:15px;
	font-size:16px;
	line-height:20px;
	font-family: 'Open Sans', Helvetica, Arial, sans-serif;
	font-weight: 300;
}
.form textarea{
	color:#333333;
	background-color:transparent;
	border:none;
	background:url(images/textbg.png) no-repeat left bottom;
	width:540px;
	padding:10px 0;
	text-indent:15px;
	font-size:16px;
	line-height:20px;
	font-family: 'Open Sans', Helvetica, Arial, sans-serif;
	font-weight: 300;
}

.form .submit{
	color:#56443d;
	background-color:transparent;
	border:none;
	background:none;
	width:100px;
	padding:10px 0;	
	font-size:18px;
	line-height:20px;
	font-family: 'Open Sans', Helvetica, Arial, sans-serif;
	font-weight: 600;	
	cursor:pointer;
	margin:0 49% 0 0;
}
.or{margin:20px 0;}

.has-error {
color: #A94442;
font-size: 17px;
}


.alert-success {
    color: #3C763D;
    background-color: #DFF0D8;
    border-color: #D6E9C6;
}
.alert {
    padding: 15px;
    margin-bottom: 20px;
    border: 1px solid transparent;
    border-radius: 4px;
}
.gallery{margin:0 0 200px;
	text-align:center;}
.download{text-align:center !important;}
.fancybox{margin:5px;}
.thumb li{display:block; float:left; width:235px; text-align:center; margin-bottom:20px;}
.thumb li a img{border:10px solid #ffffff;-webkit-box-shadow: 0 0 5px 0 rgba(0,0,0,0.1);
box-shadow: 0 0 5px 0 rgba(0,0,0,0.1);}

.price13{
    background: url(images/13.jpg) no-repeat 80% 40%;
}
.price15{
    background: url(images/15.jpg) no-repeat 80% 40%;
}
.price16{
    background: url(images/16.jpg) no-repeat 80% 40%;
}
.price17{
    background: url(images/17.jpg) no-repeat 80% 40%;
}.price19{
    background: url(images/19.jpg) no-repeat 80% 40%;
}
.price10{
    background: url(images/10.jpg) no-repeat 80% 40%;
}
.price20{
    background: url(images/20.jpg) no-repeat 80% 40%;
}
.price29{
    background: url(images/29.jpg) no-repeat 80% 40%;
}
.price22{
    background: url(images/22.jpg) no-repeat 80% 40%;
}
.price24{
    background: url(images/24.jpg) no-repeat 80% 40%;
}
.price31{
    background: url(images/31.jpg) no-repeat 80% 40%;
}

.price18{
    background: url(images/18.jpg) no-repeat 80% 40%;
}
.price11{
    background: url(images/11.jpg) no-repeat 80% 40%;
}
.price21{
    background: url(images/21.jpg) no-repeat 80% 40%;
}
.price4350{
    background: url(images/4350.jpg) no-repeat 80% 40%;
}
.menuthumbgallery{padding-top:35px;}
.menuthumbgallery ul li{
	width:31%;
	float:left;	
	margin:10px;
	position:relative;
}
.menuthumbgallery ul li a img{
	width:100%;
	display:block;	
}
.menuthumbs1{position:absolute; top:35%;
left:0;
right:0;
text-align:center;
text-shadow: 1px 2px 2px rgba(0, 0, 0, 0.15);
  font-family: 'Lobster', Helvetica, Arial, sans-serif;
  color: #ffffff;
font-size:30px;
line-height:50px;
}
.menuthumbgallery ul li:hover .menuthumbs1{
	color:#00a39c;		
}
.leftrightarrow .fa-quote-left{
	float:left;	
	color:#00a39c;
	font-size:19px;
}
.leftrightarrow .fa-quote-right{
	float:right;
	color:#00a39c;
	font-size:19px;	
}

#testimonilas p{
	font-size:19px;
	line-height:36px;
	color:#56443d;
	font-style:italic;
	font-weight:600;	
	font-family: 'Open Sans', Helvetica, Arial, sans-serif;
	padding: 0 35px;
}
#testimonilas p.textbottm{
	font-size:20px;
	padding-top:70px;
		font-family: 'Open Sans', Helvetica, Arial, sans-serif;
		color:#00a39c;
		line-height:30px;
}
#testimonilas p.textbottm span{
	font-size:13px;
	color:#393939;	
}
.newheader{padding-top:25px;}

/*MENU ITEAMS CSS*/
header{
	background:url(images/menubanner.jpg) no-repeat center center;
	min-height:170px;
	display:block;
	background-size:cover;
	width:100%;	
}
header h1{text-align:right; padding-top:10px;}
header h1 a img{display:block; float:right;}
.logo{
	width:40%;
	float:left;
	display:block;
	    padding-top: 60px;
}
header nav ul {
    width: 565px;
}
header nav ul li {
    width: 108px;
}
header nav ul ul li{
        width: 240px;
    text-align: left;
}
header nav ul ul {width:250px;z-index: 9999;}
h3.menutitle{
font-family: 'Lobster', Helvetica, Arial, sans-serif;
    font-size: 30px;
    line-height: 100%;
    display: inline-block;
    padding: 13px 15px;
    margin-bottom: 40px;
    list-style: none;
    color: #00a39c;
    background: url(images/bg2.png) no-repeat center bottom;
}
/*RESPOSIVETABCSS*/
.resp-tabs-container {
	padding: 0px;
	background-color: #fff;
	clear: left;
	border-radius: 5px;
}
.resp-tab-content {
	padding: 60px;
	text-align: left;
}
.resp-tab-content h2 {
	font-size: 24px;
	margin-bottom: 10px;
	font-family: 'Lobster', Helvetica, Arial, sans-serif;
	color: #56443d;
}
.resp-tab-content h3 {
	font-size: 22px;
	margin-bottom: 10px;
	font-family: 'Lobster', Helvetica, Arial, sans-serif;
	color: #56443d;
}
.resp-tab-content ul li {
	font-size: 15px;
	font-style: italic;
	font-weight: 300;
	background: url(images/dot.png) no-repeat 0 12px;
	padding-left: 20px;
}
.resp-tab-content p {
	font-size: 15px;
	font-style: italic;
	font-weight: 300;
}
.lst, .nolist {
	background: none !important;
}
.price1 {
	background: url(images/price1.png) no-repeat 80% 40%;
}
.price2 {
	background: url(images/price2.png) no-repeat 80% 40%;
}
.list2 li {
	width: 30%;
	display: inline-block;
}

/*Here your can change the breakpoint to set the accordion, when screen resolution changed*/
@media only screen and (max-width: 768px) {
ul.resp-tabs-list {
	display: none;
}
h2.resp-accordion {
	display: block;
	background-color: #e1dfd4 !important;
}
.resp-vtabs .resp-tab-content {
	border: 1px solid #C1C1C1;
}
.resp-vtabs .resp-tabs-container {
	border: none;
	float: none;
	width: 100%;
	min-height: initial;
	clear: none;
}
.resp-accordion-closed {
	display: none !important;
}
.resp-vtabs .resp-tab-content:last-child {
	border-bottom: 1px solid #c1c1c1 !important;
}
}
