/* GLOBAL */
/*html {
  scroll-behavior: smooth;
}*/
/* Preloader */
#preloader {
	position: fixed;
	top:0;
	left:0;
	right:0;
	bottom:0;
	background-color: rgba(22,22,22, 1);
	z-index:9999;
}
#status {
	width:44px;
	height:44px;
	position:absolute;
	left:50%;
	top:50%; 
	background-image:url('../img/icon.svg'); 
	background-repeat:no-repeat;
	background-position:center;
	margin:-22px 0 0 -22px; 
}
body {
	font-family: 'Montserrat', sans-serif;
	color:#262626;
	font-size: 14px;
	background-color: rgba(0,0,0,0.01);
}
.main-wrap {
	display:block;
	padding-left:70px;
}
@media screen and (max-width:48em) {
	.main-wrap {
		padding-left:0;
	}
}
h1, h2, h3, h4, h5, h6 {
	font-family: 'Montserrat', sans-serif;
}
h2 {
	color: #967BB6;
}
.reveal-overlay {
	background-color: rgba(22,22,22, 1);
}
.reveal {
	border:none;
	-webkit-border-radius: 0;
	-moz-border-radius: 0;
	border-radius: 0;
	-webkit-box-shadow: none;
	color: #FFFFFF;
	background-color: rgba(22,22,22, 1);
}
.reveal h3 {
	color: #967BB6;
	width: 100%;
	font-size: 16px;
	font-weight: 800;
	text-transform: uppercase;
}
.reveal .lead {
	text-transform: uppercase;
	font-size: 26px;
}
.fancybox-bg {
	background-color: rgba(22,22,22, 1);
	opacity:1;
}
/*@keyframes spin {
    0% { transform: rotate(0deg); }
    100% {  transform: rotate(359deg); }
}
.icon img {
    animation: spin 1s linear infinite;

}*/
/* GLOBAL END */
header {
	position:relative;
	z-index: 2;
	padding:0 !important;
}
header .info {
	position:absolute;
	z-index: 10;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	max-width:350px;
	margin:0 auto;
	background-color: rgba(22,22,22, 0.3);
	text-align:center;
	color: #FFFFFF;
	padding: 25px 25px 0 25px;
}
@media screen and (max-width:48em) {
	header .info {
		width:90%;
	}
}
header .info .logo {
	display:block;
	margin:10px auto 20px auto;
	width: 70%;
}
header .info h1 {
	line-height: 30px;
	font-weight: 400;
	font-size: 1.2em;
}
@media screen and (max-width:48em) {
	header .info h1 {
		font-size: 1.2em;
	}	
}
header .info p{
	margin-bottom: 40px;
}
header .info .read {
	margin-bottom: -10px;
}
header .read {
	color: #FFFFFF;
	background-color: #967BB6;
	padding: 16px 50px;
	font-size: .8em;
	text-transform:uppercase;
}
header .read:hover {
	color: #967BB6;
	background-color:#FFFFFF;
}
.banner {
	/*background: url(../img/banner1.jpg) no-repeat;*/
	position:relative;
	z-index: 2;
}
.nav-cont {
	display:block;
	overflow: hidden;
	height: 100%;
}
@media screen and (max-width:48em) {
	nav {
		display:none;
	}
}
nav {
	background-color: rgba(22,22,22, 1);
	position:fixed;
	top: 0;
	left: 0;
	height: 100%;
	z-index: 1000;
	overflow:hidden;
	width:70px;
}
nav ul {
	margin:0;
}
nav li a{
	position:relative;
	font-size:1.1em;
	list-style: none;
	display: block;
	padding: 25px 20px;
	border-bottom:1px rgba(255,255,255,0.1) solid;
	color: #967BB6;
	text-transform:uppercase;
	text-align:center;
	-webkit-transition: all 0.2s ease-out;
	-moz-transition: all 0.2s ease-out;
	-o-transition: all 0.2s ease-out;
	transition: all 0.2s ease-out;
}
nav li a span {
	display:none;
	position:absolute;
	z-index: 100;
	color: #FFFFFF;
	background-color: #967BB6;
	width: 500px;
}
.has-tip {
	border-bottom:1px rgba(255,255,255,0.1) solid;
	display:inherit;
	cursor:pointer;
}
.tooltip {
	background-color: rgba(22,22,22, 0.8);
	text-transform:uppercase !important;
	font-size: 0.9em;
}
.tooltip.right::before {
	border-color: transparent rgba(22,22,22, 0.8); transparent transparent;
}
nav li a:hover span {
	display:inherit;	
}
nav li:last-child a {
	border-bottom:none;
}
nav li a:hover, nav li a.active {
	background-color:#967BB6;
	color: #FFFFFF;
}
nav li.icon a:hover {
	background-color:#FFF;
}
main {
	position:relative;
	z-index: 1;
}
.section {
	position:relative;
	z-index: 1;
	padding: 140px 0;
}
@media screen and (max-width:48em) {
	.section {	
	padding: 70px 0;	
	}
}
/*.section::before {
	content: "";
	position: absolute;
	top: 30px; 
	left: 200px;
	width: 400px; 
	height: 700px;  
	opacity: 0.06; 
	z-index: -1;
	background: url(../img/symbol.png) no-repeat;
}*/
.section h2 {
	display:block;
	width: 100%;
	font-size: 16px;
	font-weight: 800;
	text-transform: uppercase;
	font-style: italic;
	margin-bottom: 0;
}
.section h3 {
	display:block;	
	width: 100%;
	color:#262626;	
	text-transform: uppercase;
	margin-bottom: 30px;
}
.about p, .about .read {
	margin-left:70px;
}
.about .read {
	font-weight: 600;
}
.about .read:hover i {
	margin-left:10px;
}
.about .read i {
	margin-left:5px;
	-webkit-transition: all 0.2s ease-out;
	-moz-transition: all 0.2s ease-out;
	-o-transition: all 0.2s ease-out;
	transition: all 0.2s ease-out;
}
.about .img-cont {
	position:relative;
}
@media screen and (max-width:1000px) {
	.about .img-cont  {	
	margin-top: 50px;	
	}
}
.about .more {
	position:absolute;
	text-transform:uppercase;
	display:inline-block;
	background-color: rgba(22,22,22, 0.9);
	color: #FFFFFF;
	font-size: 22px;
	padding: 8px 20px 18px 20px;
	line-height:22px;
	right:20px;
	bottom:-20px;
	font-weight: 500;
}
.about .more span{
	font-size:12px;
	color: #967BB6;
	font-style: italic;
	font-weight: 600;
}
.about .more:hover {
	background-color: rgba(22,22,22, 1);
}
.about .stats {
	background-color: rgba(22,22,22, 0.9);
	margin-top:70px;
	color: #FFFFFF;
	padding: 60px 40px;
	text-align:center;
	text-transform: uppercase;
}
.about .stats .count{
	color:#967BB6;
	font-weight: bold;
	font-size:30px;
}
.gallery {
	padding: 0;
	background-color: rgba(22,22,22, 0.9);
}
.gallery .media-boxes-no-more-entries, .gallery .media-boxes-load-more-button {
	/*display:none;*/
	width: inherit;
	background-color: #666;
	padding: 30px 15px 30px 15px;
	text-transform: uppercase;
	font-weight:bold;
}
.gallery .media-boxes-load-more-button {
	background-color: #967BB6;
	color: #FFFFFF;
}
.gallery .media-boxes-load-more-button:hover {
	background-color: #666666;
}
.gallery .media-box-container {
	-webkit-border-radius: 0;
	-moz-border-radius: 0;
	border-radius: 0;
	-webkit-box-shadow: none;
}
.gallery .media-box i {
	font-size: 3em;
	color: #FFFFFF;
}
.gallery .thumbnail-overlay {
	background-color: rgba(150,123,182,0.8);
}
.amenities {
	background: url(../img/amenitiesbg.jpg) center center fixed; 
	-webkit-background-size: cover;
	-moz-background-size: cover;
	-o-background-size: cover;
	background-size: cover;
}
.amenities h2, .amenities h3, .amenities h4{
	color: #FFFFFF;
}
.amenities h3 {
	line-height:30px;
	margin-bottom:60px; 
}
.amenities h4 {
	text-transform:uppercase;
	line-height: 20px;
	font-size: 16px;
	font-weight: bold;
}
.amenities .amen_box img {
	margin-bottom:20px;
	height: 50px;
}
.amenities .amen_box {
	background-color: rgba(22,22,22, 0.6);
	padding:40px 40px 30px 40px !important;
	margin-bottom:30px;
	text-align:center;
}
.amenities .see_all {
	background-color: none;
	padding:0 !important;
}
.amenities .see_all a {
	display:block;
	background-color: rgba(150,123,182,1);
	padding:40px 40px 30px 40px !important;
	text-align:center;
	-webkit-transition: all 0.2s ease-out;
	-moz-transition: all 0.2s ease-out;
	-o-transition: all 0.2s ease-out;
	transition: all 0.2s ease-out;	
	background-color: rgba(150,123,182,.8);
	-webkit-transition: all 0.2s ease-out;
	-moz-transition: all 0.2s ease-out;
	-o-transition: all 0.2s ease-out;
	transition: all 0.2s ease-out;
}
.amenities .see_all a:hover{
	background-color: rgba(150,123,182,1);
}
.amenities .pool {
	width: 60%;
}
.video {
	text-align:center;
}
.video iframe {
    position:relative !important;
    min-height:500px;
    height:inherit !important;
}
.video_cont {
	position:relative;
	background: url(../img/video_thumb.jpg) no-repeat;
	height: 560px;
}
.video_cont a{
	width:200px;
	height: 200px;
	position: absolute;
	top: 50%;
	left: 50%;
	margin: -100px 0 0 -100px;	
	opacity:0.9;
}
@media screen and (max-width:48em) {
	.video_cont a {
	width:100px;
	height: 100px;
	margin: -50px 0 0 -50px;	
	}
    .video iframe {
        min-height:250px;
    }
}
.video_cont a:hover {
	opacity:1;
}
.get-to-know {
	background: url(../img/get-to-know.jpg) center center fixed; 
	-webkit-background-size: cover;
	-moz-background-size: cover;
	-o-background-size: cover;
	background-size: cover;
}
.get-to-know h2, .get-to-know h3, .get-to-know h4{
	color: #FFFFFF;
}
.get-to-know h3 {
	line-height:30px;
	margin-bottom:60px; 
}
.get-to-know h4 {
	text-transform:uppercase;
	line-height: 20px;
	font-size: 16px;
	font-weight: bold;
}
.get-to-know .know_box img {
	margin-bottom:20px;
	height: 50px;
}
.get-to-know a {
	display:block;
	background-color: rgba(22,22,22, 0.6);
	padding:40px 40px 30px 40px !important;
	margin-bottom:30px;
	text-align:center;
	-webkit-transition: all 0.2s ease-out;
	-moz-transition: all 0.2s ease-out;
	-o-transition: all 0.2s ease-out;
	transition: all 0.2s ease-out;
}
.get-to-know .rates a{
	background-color: rgba(150,123,182,.8);
	-webkit-transition: all 0.2s ease-out;
	-moz-transition: all 0.2s ease-out;
	-o-transition: all 0.2s ease-out;
	transition: all 0.2s ease-out;
}
.get-to-know .rates a:hover{
	background-color: rgba(150,123,182,1);
}
.get-to-know a:hover {
	background-color: rgba(0,0,0,0.8);
}
.plans-cont span{ 
	display:block;
	margin-bottom:30px;
}
.plans-cont h4 {
	background-color: #967BB6;
	font-size: 12px;
	text-transform:uppercase;
	padding:10px;
	text-align:center;
	margin-bottom: 0;
}
.rates-table, .rates-table thead, .rates-table tbody, .rates-table tfoot, .rates-table tr, .rates-table th, .rates-table td {
	background-color: rgba(255,255,255, 0.01) !important;
	border-color:rgba(22,22,22, 1) !important;
	padding:15px !important;
} 
.rates-table .villa-title {
	background-color: #967BB6 !important;
	color: #FFFFFF;
}
.contact {
	color:#FFFFFF;
	background-color: rgba(22,22,22, 1);
}
.contact h3 {
	color: #FFFFFF;
}
.contact .map {
	margin-bottom:30px;
}
.contact .map:hover {
	opacity:0.9;
}
.contact h5 {
	font-size: 16px;
}
.contact h5 span {
	font-weight: bold;
	color: #967BB6;
}
.contact input, .contact textarea {
	background-color:rgba(255,255,255, 0.1);
	border:none;
	padding:35px 20px;
	font-size: 16px;
	-webkit-border-radius: 0;
	-moz-border-radius: 0;
	border-radius: 0;
	-webkit-box-shadow: none;
	-moz-box-shadow: none;
	box-shadow: none;
	position:relative;
	color:#FFFFFF;
}
.contact textarea {
	height: 240px;
    padding-bottom: 40px;
}
[type="text"]:focus, [type="password"]:focus, [type="date"]:focus, [type="datetime"]:focus, [type="datetime-local"]:focus, [type="month"]:focus, [type="week"]:focus, [type="email"]:focus, [type="number"]:focus, [type="search"]:focus, [type="tel"]:focus, [type="time"]:focus, [type="url"]:focus, [type="color"]:focus, textarea:focus {
    outline: none;
    border: none;
    background-color: #967BB6;
    -webkit-box-shadow: none;
    box-shadow: none;
	color:#FFFFFF;
}
.contact i {
	margin-right:5px;
}
.contact #send {
	position:relative;
	font-size: 18px;
	background-color: #967BB6;
	color: #FFF;
	padding:20px 70px 20px 15px;
	font-weight: 800;
	text-transform: uppercase;
	-webkit-border-radius: 0;
	-moz-border-radius: 0;
	border-radius: 0;
	margin:-40px 0 0 10px;
	display:block;
	-webkit-transition: all 0.2s ease-out;
	-moz-transition: all 0.2s ease-out;
	-o-transition: all 0.2s ease-out;
	transition: all 0.2s ease-out;
}
.contact #send:hover {
	background-color: #FFFFFF;
	color: #967BB6;
	cursor: pointer;
}

.copyright {
	padding:60px 0;
	color: #FFFFFF;
	border-top: 1px solid rgba(255,255,255, 0.1);
	background-color:rgba(22,22,22, 1);
}
#tabs {
	padding: 0;
	margin: 0;
	margin-bottom: 40px;
}
#tabs li {
	text-decoration: none;
	margin: 0;
	list-style: none;
	padding: 0;
	display: inline-block;
}
#tabs a {
	border-bottom: 2px solid #ffffff;
	padding-bottom: 10px;
}
#tabs li a.inactive {
	opacity: .5;
}
#tabs strong {
	padding: 0 10px;
}



