/* CSS RESET ++ */
html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var, p,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
    margin:0;
    padding:0;
    border:0;
    outline:0;
    font-size:100%;
    vertical-align:baseline;
    background:transparent;
}
/* CSS RESET -- */
/* ------------------------------*/
/* OVERAL STYLE ++*/

a { 
	text-decoration: none; 
	outline:none; 
	color:#000; 
}

.clear { clear:both; }
/* .left { float:left; } */
/* .right { float:right; } */
.green { color:green; }
.red { color:red; }
b,stong,.bold { 
	/* font-family: 'Roboto'; */
	font-weight:500;
}
img { display: block; }

/* tablets fix ++ */

:focus {outline:none;}
::-moz-focus-inner {border:0;}
a, a:visited, a:focus, a:active, a:hover{
	outline:0 none !important;
	-webkit-tap-highlight-color: rgba(255, 255, 255, 0);
}

/* tablets fix -- */
/* OVERAL STYLE -- */
/* ------------------------------*/

html, body {
	width:100%;
	height:100%;
}

body {
	/* font-family: 'Open Sans', sans-serif; */
	/* font-family: 'Quicksand', sans-serif; */
	font-family: 'Varta', sans-serif;

	font-size:16px;
}	


.global-wrapper {
	height:100%;
	position:relative;
}

	.width-wrapper {
		width:100%;
		max-width:1050px;
		position:relative;
		margin:0 auto;
		padding:0 30px;
		box-sizing:border-box;
	}

header {
	background-color:#;
	background-color:#c9e4ca;
	padding:45px 0 45px 0;
	/* color:#fff; */
	background-color:#fff;
	background-color:#f0f0f0;
	background-color:#EBEBEB;
	background-color:#e6ebe0;
	/* background-color:#e3f5c4; */
	/* border-bottom:1px solid rgba(0,0,0,0.2); */
}

	header div.table {
		display:table;
		width:100%;
	}
	
		header div.table-row {
			display:table-row;
		}
		
			header div.table-cell {
				display:table-cell;
				vertical-align:middle;
				position:relative;
				/* border:1px solid red; */
			}
			
			header div.table-cell:first-child{
				width:20%;
			}
			
			header div.table-cell:last-child{
				width:80%;
				text-align:right;
			}
			
			a.logo {
				width:100%;
				display:table;
				max-width:160px;
			}
				a.logo img {
					width:100%;
				}

	ul.menu-main {
		list-style:none;
		margin-right:-15px;
		margin-top:3px;
		display:inline-block;
		vertical-align:middle;
	}
	
	ul.menu-main.visible {
		display:block !important;
		margin-top:60px;
		margin-bottom:10px;
	}
	
		ul.menu-main li {
			display:inline-block;
			margin:15px 15px;
			letter-spacing: 0px;
			line-height: 0px;
			font-weight: normal;
			padding: 0;
		}
		
		ul.menu-main li::before {
			display:none;
		}
		
			ul.menu-main li a {
				display:inline-block;
				text-transform:uppercase;
				font-weight:bold;
				color:#68686a;
				font-size:17px;
				transition-duration:0.3s;
			}
			
			
			ul.menu-main li a:hover {
				color:#f8a45c;
			}


		a.toggle-menu {
			top: 0px;
			right: 0px;
			position: absolute;
			display: none;
			outline: none;
			width: 34px;
		
			/* border:1px solid red; */
		}
		
		a.toggle-menu div.nav-icon {
			width: 34px;
			height: 28px;
		}

		.nav-icon span.line_top, .nav-icon span.line_middle, .nav-icon span.line_bottom {
			display: block;
			content: '';
			height: 2px;
			background-color: #666666;
			transition: all .2s ease-in-out;
			-moz-transition: all .2s ease-in-out;
			-webkit-transition: all .2s ease-in-out;
			/* margin: 0px 0; */
		}
		
		.nav-icon span.line_middle, .nav-icon span.line_bottom {
			margin-top: 10px;
		}
		
		.opened .nav-icon span.line_top {
			transform: translateY(13px) rotate(135deg);
		}

		.opened .nav-icon span.line_middle {
			-webkit-transform: scale(0);
		}
				
				.opened .nav-icon span.line_bottom {
			transform: translateY(-11px) rotate(-135deg);
		}
		
		
ul.socials {
	list-style:none;
	padding-left:0;
	display:inline-block;
	vertical-align:middle;
	margin-left:40px;
}		
			
	ul.socials li {
		display: inline-block;
		vertical-align: middle;
		margin-right: 10px;
		/* display:none; */
		letter-spacing: 0px;
		line-height: 0px;
		font-weight: normal;
		padding: 0;
	}



ul.socials li a {
    width: 35px;
    height: 35px;
    display: block;
    background-size: 100%;
    opacity: 1;
    transition-duration: 0s;
    background-position: bottom;
}

ul.socials li a.fb {
    background-image: url(/assets/img/icon-fb.png);
}

ul.socials li a.in {
    background-image: url(/assets/img/icon-insta.png);
}

ul.socials li a:hover {
    background-position: top;
}

@media screen and (max-width:800px) {
	
	header div.table-cell:first-child,
	header div.table-cell:last-child {
		width:50%;
	}
	
	a.logo {
		max-width:100px;
	}
	
	header {
		padding:30px 0;
	}
		
	
	
	ul.socials {
		display:none;
		margin-top:25px;
		margin-bottom:15px;
	}
	
	ul.socials li {
		margin-right:0;
		margin-left:10px;
	}
	
	ul.socials.visible {
		display:block;	
	}
	
	ul.menu-main li a {
		line-height: 36px;		
	}
}
			

section {
	/* padding:60px 0; */
}



ul {
	padding-left:40px;
	list-style:none;
}

ul li,
p {
	color:#22577a;
	color:#22577a;
	color:#38a3a5;
	color:#6e6f71;
	color:#22577a;
	font-size:20px;
	font-size:38px;	
	font-size:25px;
	font-size:23px;
	line-height:44px;
	/* opacity:0.6; */
	color:#000;
	color:#23742f;
	color:#3bb24c;
	
	
	color:#666666;
}



p {	
	/* color:#3bb24c; */
	/* color:#6e6f71; */
}

h2 {
	color:#3bb24c;
	color:#000;
	
	
	color:#e98a15;
	
	font-size:25px;
	line-height:40px;
	margin-bottom:15px;
	text-transform:uppercase;
}

h2.green {
	color:#3bb24c;
	color:#f8a45c;
	
}


section.intro {
	/* background-color:#f8a45c; */
	/* background-blend-mode: multiply; */
	/* background-image:url('/assets/img/bg1.jpg'); */
	color:#e3f5c4;	
	color:#fff;	
	/* padding:40px 0; */
	padding:220px 0 40px 0;
	background-repeat:no-repeat;
	background-size:cover;
	background-position: center;
	/* background-position:center; */
	opacity:1;
	font-size:20px;
	letter-spacing: 0.9px;
	font-size: 16px;
}

	section.intro p.h1 {
	
		
		color:#e6ebe0;
		font-size: 25px;
		line-height:33px;
		opacity:0.95;
	}

	section.intro ul {
		list-style:none;
		margin:0;
		padding:0;
		margin-left:-5px;
		/* margin-top:-5px; */
	}
	
		section.intro ul li::before {
			display:none;
		}
		
		section.intro ul li {
			display:inline-block;
			color:#e6ebe0;
			font-size:16px;
			margin:0 5px;
			line-height:28px;
			opacity:0.95;
		}

section.about {
	padding-top:80px;
	padding-bottom:20px;
	/* background-color:#EBEBEB; */
	/* background-color:#fff; */
	background-color:#e6ebe0;
	
	/* background-color:#F0F0F0; */
	
}

	section.about p {
		font-size:18px;
		letter-spacing:0.5px;
		line-height:33px;
		padding-right:0px;
	}

section.service {
	background-color:#e6ebe0;
}

	section.service .width-wrapper {
		padding-top:20px;
		padding-bottom:60px;
	}
	
		section.service div.inline {
			display:inline-block;
			vertical-align:top;
			width:33.33%;
			box-sizing:border-box;
			padding-right:20px;
		}
	
		section.service div.inline.left {
		
		}
		
		section.service div.inline.middle {
			padding-left:0px;
		}
		
		section.service div.inline.right{
			padding-left:40px;
		
		}

section.album {
	padding:80px 0 100px 0;
	background-color:#e6ebe0;
	background-color:#fff;
	background-color:#f4f8ef;
}

section.contacts {
	/* background-color:#c9e4ca; */
	/* padding:80px 0; */
	padding-bottom:80px;
	/* border-top:1px solid rgba(59,178,76,0.3); */
	/* background-color:#f0f0f0; */
	background-color:#F0F0F0;
	background-color:#e6ebe0;
	/* border-top:1px solid rgba(59,178,76,0.3); */
		/* border-bottom:1px solid rgba(59,178,76,0.3); */
		display:table;
		width:100%;
	
}
	section.contacts div.inline {
		box-sizing:border-box;
		width:33.33%;
		display:inline-block;
		vertical-align:top;
		box-sizing:border-box;
		text-align:left;
	}
	
	section.contacts div.inline.left {
		/* padding-right:40px; */
	}
	
	section.contacts div.inline.right {
		/* width:30%; */
		/* text-align:right; */
	}
	
		section.contacts div.inline.right img {
			float:right;
			width:100%;
			margin-top:4px;
		}	
	
	section.contacts .width-wrapper {
		padding-top:80px;
		/* border-top:1px solid rgba(59,178,76,0.3); */
	}

	section.contacts p {	
		line-height:28px;
		font-size:17px;		
		line-height:28px;
		color:#666666;
	}
	
	@media screen and (max-width:800px) {
		
		section.service div.inline {
			
			width:50%;
			
		}
		
		
		
		
		section.service div.inline.right{
			padding-left:0px;
			margin-top:-25px;
		
		}
		
	}
	
	@media screen and (max-width:620px) {
		section.contacts div.inline {
			width:100%;
		}
		
		section.service div.inline {
			width:100%;
		}
		section.service div.inline.middle {
			padding-left:0px;
			margin-top:-25px;
		}
		
	}



footer {
	background-color:#f8a45c;
	padding:50px 0;
	color:#fff;
	font-size:15px;
}

	
	footer a {
		color:#fff;
		transition-duration:0.3s;
	}
	
	footer div.inline.right a {
		margin-bottom:10px;
		border-bottom:1px dotted #fff;
		display:inline-block;
		font-size:15px;
		line-height:20px;
		
	}
	
	footer div.inline.right a:hover {
		border-bottom:1px solid transparent;
	}
	
	footer a.logo {
		width:100%;
		max-width:100px;
		margin-bottom:15px;
	}

	footer div.inline {
		width:50%;
		display:inline-block;
		box-sizing:border-box;
		vertical-align:top;
	}
	
	footer div.inline:last-child {
		text-align:right;
	}



.service ul {
	margin-left:-35px;
}

.service  ul li {
	margin:30px 0;
	letter-spacing:0.5px;
	font-size:20px;
	font-size:18px;
	line-height: 28px;	
	padding:0;
	font-weight:bold;
	padding-left:60px;
	position:relative;
	padding:7px 0 5px 60px;
}


	ul li img {
		/* margin:15px 0; */
		display:inline-block;
		vertical-align:middle;
		margin-right:20px;
		position:absolute;
		left:0;
		top:0;
		width:40px;
		height:auto;
	}
/*
.service ul li::before {
	content: "\2022"; 
	  color: #f8a45c; 
	  font-weight: bold; 
	  display: inline-block;
	  width: 1em;
	  margin-left: -0.9em; 
	  font-size:30px;
}
*/
	


/* ------------------------------*/
/* MAIN LAYOUT ++ */

.float-right {
	float:right;
}

.float-left {
	float:left;
}


.bold { font-weight:700; }


p.title {
	font-size:18px;
	font-weight:700;
	margin-bottom:5px;
}



.h1,
h1{
	font-size:25px;
	font-size:20px;
	letter-spacing:0.9px;
	margin-bottom:6px;
	text-transform:uppercase;
	font-weight:400;
	font-weight:700;
	margin-top:3px;
	margin-top:10px;
	white-space:wrap;
	/* color:#d6f283; */
	/* color:#e9d758; */
	
}

.h1 {
	/* font-size:20px; */
	margin-bottom:0px;
}

p {
	margin-bottom:15px;
    font-size: 18px;
    /* letter-spacing: 0.5px; */
    line-height: 30px;  
}

a {
	color:#f8a45c;
}

div.content {
	max-width:860px;
	max-width:1100px;
	/* width:80%; */
	min-height:700px;
	display:table;
	margin:0px auto;
	/* text-align:justify; */
}



div.content div.inner {
	padding:50px 20px;
}

/*
	div.content div.inner img {
		float:right;
		margin-right:10px;
		margin-bottom:10px;
	}
*/
	
	img.portrait {
		max-width:240px;
	}
	

ul.list {
	margin-top:15px;
	margin-left:-5px;
	margin-bottom:20px;
}

	ul.list li {
		margin-bottom:5px;
	}

img {
	max-width:100%;
	height:auto;
}

span.line.top {
	margin-top:0px;	
}

span.line {
	height:1px;
	width:100%;
	display:block;
	/* background:#3db750; */
	margin-top:-20px;
	margin-bottom:40px;
	/* border-bottom:1px solid rgba(59,178,76,0.3); */
	border-bottom:1px solid rgba(248,164,92,0.4);
}





.clear { clear:both; }

@media screen and (max-width:800px) {
	div.content {
		text-align:left;
	}
}

.logo {
}

/* gallery slideshow ++ */

.slideshow-container {
	position:relative;
	padding-bottom:60px;
}

	.slideshow-container ul.slideshow-blocks {
		list-style:none;
		position:relative;
		display:block;
		margin:0;
	}
	
		.slideshow-container ul.slideshow-blocks li {
			left:0;
			top:0;
			display:none;
		}
		
			.slideshow-container ul.slideshow-blocks li img {
				width:100%;
				height:auto;
			}
		
	
	.slider-intro {
		position: relative;
		width: 100%;
	}
	
		.slider-intro img.layout {
			opacity: 0;
			height: auto;
		}
		
		.slider-intro ul {
			list-style: none;
		}
		
		.slider-intro ul li {
			position: absolute;
			width: 100%;
			height: 100%;
			display: block;
			top: 0;
			left: 0;
			background-position: center center;
			background-repeat: no-repeat;
			background-size: cover;
			box-sizing: border-box;
			display: none;
			margin:0;
		}
		
		.slider-intro a.slidenext {
			display: block;
			position: absolute;
			top: 0;
			bottom: 0;
			left: 0;
			right: 0;
		}
		
		div.slide-controls {
			position: absolute;
			left: 0px;
			top: 20px;
			bottom: 0px;
			width: 100%;
			text-align:center;
		}
		
			div.slide-controls div.inner {
				position: absolute;
				bottom: 0;
				
				width:100%;
			}
			
			div.slide-controls a {
				width: 13px;
				height: 13px;
				margin: 5px 10px;
				display: inline-block;
				position: relative;
				border: 1px solid #f8a45c;
				background-color:#f8a45c;
				border-radius: 50%;
				transition-duration: 0.3s;
			}
			
			div.slide-controls a:hover,
			div.slide-controls a.active {
				border: 1px solid #f8a45c;
				background-color:transparent;
			}
			
			
/* gallery slideshow -- */

.fancy {
	display:inline-block;
}

ul.gallery {
		list-style:none;
		width:103%;
		margin-left:-1.5%;
		margin-top:10px;
		padding:0;
		box-sizing:border-box;
		list-style:none;
}
	
	ul.gallery li::before {
		display:none;
	}
	
	ul.gallery li {
		display:inline-block;
		padding:0;
		width:22%;
		height:160px;
		margin:10px 1.5%;
		padding:0;
		box-sizing:border-box;
		background-size:cover;
		background-repeat:no-repeat;
		line-height:0;
		font-size:0;
		transition-duration:0.3s;
		opacity:1;	
	}
	
	ul.gallery li:hover {
		opacity:0.8;
	}
	
		ul.gallery li img {
			line-height:0;
			width:100%;
			display:none;
		}
		
			ul.gallery li a {
				display:table;
				height:100%;
				width:100%;
				line-height:0;
			}
		
		
@media screen and (max-width:820px) {
	ul.menu-main li {
		display:block;
		margin:0px 15px;
	}
	
	header div.table-cell {
		vertical-align:top;
	}
	
	section.about p {
		padding-left:0;
	}
	
	section.album,
	section.contacts {
		padding-top:60px;
		padding-bottom:60px;
	}
	
	section.contacts {
		
		padding-top:40px;
		padding-bottom:10px;
	}
	
	section.contacts .width-wrapper {
			padding-top:0px;
	}
	
	section.about {
		padding-top:60px;
	}
	
	section.service .width-wrapper {
		/* padding-top:60px; */
		padding-bottom:40px;
	}
	
	ul.gallery li {
	
		width:48%;
		margin:5px 1%;
	
	}
}



			
			
@media screen and (max-width:820px){
	.width-wrapper {
		padding:0px 20px;
	}	
	

	
	
	ul.menu-main { display:none;}
	
	section.about p { 
		text-align:left;
		font-size:18px;
		line-height:34px;
	}
	
	h2 {
		margin-bottom:10px;
	}
	
	section.about {
		padding-top: 50px;	
	}
	
	section.intro {
		/* padding-top:160px; */
	}
	
	
	section.intro ul.slogan {
		margin-top:10px;
		max-width:300px;
	}
	
	section.intro ul.slogan li {
		/* display:block; */
	}
	
	ul li {
		font-size:20px;
		font-size:18px;
	}

	span.line {
		margin-top:-50px;
		margin-bottom:40px;
	}
	
	a.toggle-menu { 
		display:block;
	}
	
}



.map {
    height: 40vh;
    min-height: 400px;
}

#map {
    height: 100%;
    width: 100%;
}


/* rooms ++ */

section.rooms {
	background-color:#f4f8ef;
	background-color:#e6ebe0;
	padding:80px 0;
}

	section.rooms div.inline {
		display:inline-block;
		vertical-align:top;
		width:50%;
		/* border:1px solid red; */
		box-sizing:border-box;
	}
	
	section.rooms div.inline.left {
		padding-right:20px;
	}
	section.rooms div.inline.right {
		padding-left:10px;
	}
	

				
	@media screen and (max-width:800px) {
		section.rooms div.inline {
			width:100%;
			margin-bottom:30px;
		}
		
		section.rooms div.inline.left {
			padding-right:0;
		}
		
		section.rooms div.inline.right {
			padding-left:0;
			margin-top:40px;
		}
	}
				
				
/* rooms -- */
	

section.rent {
	background-color:#e6ebe0;
	background-color:#f4f8ef;
	padding:80px 0;
}

table {
    border-collapse: collapse;
    border: 1px solid #000;
	margin-top:30px;
	
}

table th, table td {
	border: 1px solid rgba(248,164,92,0.4);
    padding: 15px;
    text-align: left;
	font-size:18px;
}

div.reservation-layer {
	box-sizing:border-box;
	
	display:table;
	position:relative;
}


	a.reserve {
		padding:13px 30px 10px 30px;
		border: 1px solid rgba(248,164,92,1);
		background-color: rgba(248,164,92,1);
		color:#fff;
		box-sizing:border-box;
		font-size:18px;
		line-height:20px;
		transition-duration:0.3s;
		position:relative;
	}
	
	a.reserve:hover {
		/* background-color:#e6ebe0; */
		/* color:rgba(248,164,92,1); */
	}
	
	div.reservation-layer div.buttons {
		position:absolute;
		background-color:#fff;
		background-color:rgba(248,164,92,0.8);
		padding:10px 30px;
		color:#fff;
		bottom:-139px;
		border:1px solid rgba(248,164,92,1);
		display:none;
		/* border-top:1px solid #e6ebe0; */
		z-index:2;
	}
	
	
	div.reservation-layer:hover div.buttons {
		/* display:block; */
	}
	
		div.reservation-layer div.buttons a {
			display:table;
			margin:20px 0;
			/* text-transform:uppercase; */
			color:#fff;
			font-size: 18px;
			line-height: 25px;
			transition-duration: 0.3s;
			transition-duration:0.3s;
			border-bottom:1px dotted #fff;
		}
		
		div.reservation-layer div.buttons a:hover {
			border-bottom:1px solid transparent;
		}

	

