/*--------------------------------------------------------------
#0.1	Global Styling
--------------------------------------------------------------*/
body {
	font-family: 'Open Sans', sans-serif;
	font-size: 14px;
}
h1,h2,h3,h4,h5,h6 {
	font-family: 'Raleway', sans-serif;
	font-weight: bold;
	text-transform: uppercase;
}
h2,h3 {
	font-size: 36px;
	font-weight: bold;
}
ul {
	list-style: none;
	margin: 0;
	padding-left: 0;
}
a:hover {
	text-decoration: none;
}
button:focus {
	outline: none !important;
	background: none !important;
	box-shadow: none !important;
}
.playfair {
	font-family: 'Playfair Display', serif;
}
form select,
form input[type="number"] {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
}
.mb-15 {
	margin-bottom: 15px !important;
}
/*--------------------------------------------------------------
#0.2	Theme reset style
--------------------------------------------------------------*/
.section-title {
	text-align: center;
}
.section-title span {
	color: #d34908 ;
}
.section-title h3 {
	margin-top: 0;
}
.section-title p {
	font-size: 17px;
	color: #7d7d7d;
	margin: 0;
}	
.overlay {
	/*background-color: rgba(0,0,0,0.3);*/
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: 0;
}
/*owl-controls*/
.owl-prev,
.owl-next {
	background-color: #d34908  !important;
	width: 30px;
	height: 30px;
	border-radius: 0 !important;
	opacity: 1 !important;
	position: absolute;
	-webkit-transition: all 0.1s;
	transition: all 0.1s;
}
.owl-prev i,
.owl-next i {
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}
.owl-prev i:before,
.owl-next i:before {
	font-size: 15px;
	margin: 0;
}
.owl-prev:hover,
.owl-next:hover {
	background: #000 !important;
}
.btn {
	-webkit-transition: all 0.1s;
	transition: all 0.1s;
}
.btn:hover {
	background: rgba(255,255,255, 0.1) !important;
}
/*common-header*/
.common-header {
	position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    z-index: 100;
}
.common-header .navbar {
	padding-bottom: 24px;
}
.common-header .navbar #navbar {
	margin-top: 0;
}
.common-header .navbar #navbar .navbar-nav {
	margin-top: 25px;
}
.common-header .navbar .navbar-brand {
    float: left;
    height: 50px;
    padding: 2px 2px;
    line-height: 20px;
}
/*right-buttons*/
.common-header .right-buttons {
	line-height: auto;
	position: relative;
	top: 32px;
}
.common-header .right-buttons > li {
	height: auto !important;
}
.head-top {
	padding: 10px 0;
	border-bottom: 1px solid #fff;
	margin-bottom: 10px;
}
.social {
	
}
.social li {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-start;
	text-align: center;
}
.social li a {
	color: #fff;
	border-radius: 100px 100px 100px 100px;
	border: 1px solid #fff;	
	line-height: 30px;
	width: 30px;
	height: 30px;
	margin-right: 10px;
}
.topcontact li {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-end;
	text-align: center;
}
.topcontact li a {
	color: #fff;
	margin-left: 25px; 
	margin-top: 5px;
}
.common-btn {
	background-color: #d34908;
	font-size: 15px;
	color: #fff;
	text-transform: uppercase;
	font-weight: 600;
	padding: 0;
	border: 0;
	text-align: center;
	position: relative;
	left: 50%;
	-webkit-transform: translate(-50%);
	transform: translate(-50%);
}
.btn-group .btn {
	position: relative;
}
/*date-picker*/
.ui-datepicker {
	width: 14em;
}
.ui-widget-header {
	border: 0;
}
/*back to top*/
a.back-to-top {
	display: none;
	width: 50px;
	height: 50px;
	line-height: 50px;
	text-align: center;
	position: fixed;
	z-index: 999;
	right: 0;
	bottom: 0;
	background-color: rgba(0, 0, 0, 0.7);
	background-position:  center 43%;
	line-height: 65px;
	color: #fff;
}
a.back-to-top i {
	position: absolute;
	left: 50%;
	top: 50%;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
}
/*pre loder*/
.pre-loder {
	width: 100%;
	height: 100%;
	position: fixed;
	z-index: 1000;
	background-color: #fff;
}
.pre-loder .loding {
	display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    height: 50px;
    width: 50px;
    margin: -25px 0 0 -25px;
    border-radius: 50%;
}
.pre-loder .loding:before,
.pre-loder .loding:after {
	content: "";
	border: 2px solid #719301;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    position: absolute;
    left: 0;
}
.pre-loder .loding:before {
    transform: scale(1, 1);
    opacity: 1;
    -webkit-animation: outside .6s infinite linear;
    animation: outside .6s infinite linear
}
.pre-loder .loding:after {
    transform: scale(0, 0);
    opacity: 0;
    -webkit-animation: inside .6s infinite linear;
    animation: inside .6s infinite linear
}
@-webkit-keyframes inside {
    from {
        -webkit-transform: scale(.5, .5);
        opacity: 0
    }
    to {
        -webkit-transform: scale(1, 1);
        opacity: 1
    }
}
@keyframes inside {
    from {
        transform: scale(.5, .5);
        opacity: 0
    }
    to {
        transform: scale(1, 1);
        opacity: 1
    }
}
@-webkit-keyframes outside {
    from {
        -webkit-transform: scale(1, 1);
        opacity: 1
    }
    to {
        -webkit-transform: scale(1.5, 1.5);
        opacity: 0
    }
}
@keyframes outside {
    from {
        -webkit-transform: scale(1, 1);
        opacity: 1
    }
    to {
        -webkit-transform: scale(1.5, 1.5);
        opacity: 0
    }
}
/*--------------------------------------------------------------
------> index page
--------------------------------------------------------------*/
/*--------------------------------------------------------------
#1.1	header
--------------------------------------------------------------*/
header {
	background-color: transparent;
	position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    z-index: 100;
}
/*navigation*/
header .navbar {
	margin-bottom: 0;
	border: 0;
}
header .navbar .container {
	padding-left: 0;
	padding-right: 0;
	position: relative;
}
header .navbar .navbar-nav {
	margin-top: 27px;
	/* visibility: hidden;
	opacity: 0; */
	-webkit-transition: all 0.8s;
	transition: all 0.8s;
}
.toggle-menu {
	visibility: visible !important;
	opacity: 1 !important;
}
.toggle-dropdown-menu {
	display: block !important;
}
header .navbar #navbar > ul > li {
	margin-left: 50px;
	padding: 10px 0;
}
header .navbar #navbar ul > li > a {
	font-weight: 600;
	color: #fff;
	text-transform: uppercase;
	line-height: 16px;
	padding: 5px 11px;
}
header .navbar #navbar ul > li > a:hover,
header .navbar #navbar ul > li.active > a  {
	background-color: #d34908;
}
header .dropdown-menu li.active > a {
	background-color: #d34908;
	color: #fff !important;
}
header #navbar ul li a:active,
header #navbar ul li a:focus {
	background: transparent !important;
}
/*dropdown-menu*/
header #navbar .dropdown-menu a:active,
header #navbar .dropdown-menu a:focus {
	color: #000 !important;
}
header .search-wrapper {
    position: relative;
    top: 39px;
    z-index: 20;
}
header .search-wrapper button {
    background: transparent;
    color: #fff;
    border: 0;
}
.dropdown-menu {
	background-color: #fff;
	border: 0;
	border-radius: 0;
	padding: 0;
}
.dropdown-menu:before {
	content: "";
	border-left: 7px solid transparent;
	border-right: 7px solid transparent;
	border-bottom: 7px solid #fff;
	position: absolute;
	left: 50%;
	top: -7px;
	-webkit-transform: translate(-50%);
	transform: translate(-50%);
}
.dropdown-menu a {
	color: #000 !important;
	padding-top: 10px !important;
	padding-bottom: 10px !important;
	font-weight: normal;
	border-bottom: 1px solid #f1f1f1;
}
.dropdown-menu li:last-child a {
	border-bottom: 0;
}
.dropdown-menu a:hover {
	color: #fff !important;
}
@media screen and (min-width: 768px) {
	header #navbar > ul > li.dropdown:hover > ul {
		display: block;
	}
}
/*--------------------------------------------------------------
#1.2	hero
--------------------------------------------------------------*/
.hero {
	text-align: center;
	position: relative;
	margin: 0;
}
.hero > a {
	background: rgba(255,255,255, 0.1);
	width: 200px;
	height: 45px;
	line-height: 45px;
	text-align: center;
	font-size: 15px;
	text-transform: uppercase;
	color: #fff;
	border: 1px solid #fff;
	border-radius: 0;
	padding: 0;
	top: -300px;
	position: relative;
}
.hero > a:hover {
	background: #d34908  !important;
	color: #fff !important;
	border-color: #d34908 ;
}
/*--------------------------------------------------------------
#1.3	about-resort
--------------------------------------------------------------*/
.about-resort {
	overflow: hidden;
	margin-top: -45px;
}
.about {
	padding-top: 140px;
}
.about img {
	display: block;
	margin: 0 auto;
}
.about .owl-prev,
.about .owl-next {
	right: 17px;
	top: -110px;
	border: 1px solid transparent;
}
.about .owl-prev {
	right: 51px;
}
/*resort*/
.resort {
	padding-left: 0;
	padding-right: 0;
}
.resort .title {
	color: #fff;
	border: 1px dashed #fff;
	text-align: center;
	padding: 30px;
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
}
.resort .title h2 {
	font-size: 41px;
	letter-spacing: 10px;
	line-height: 32px;
	margin: 0 0 0.24em;
}
.resort .title p {
	font-size: 23px;
	margin: 0;
}
.resort-slider .item {
	position: relative;
}
.resort-slider .item-1 {
	background: url(../images/home-1/resort/slider/img-1.jpg) no-repeat 50% 50%;
	background-size: cover;
}
.resort-slider .item-2 {
	background: url(../images/home-1/resort/slider/img-1.jpg) no-repeat 50% 50%;
	background-size: cover;
}
.resort-slider .item-3 {
	background: url(../images/home-1/resort/slider/img-1.jpg) no-repeat 50% 50%;
	background-size: cover;
}
.resort-slider .owl-controls {
	margin-top: -87px;
	position: absolute ;
	left: 50% ;
    -webkit-transform: translate(-50%) ;
   transform: translate(-50%) ;
}
.resort-slider .owl-page span {
	background: rgba(255,255,255,0.2) !important;
	opacity: 1 !important;
}
.resort-slider .owl-pagination .active span {
	width: 13px;
	height: 13px;
	background: rgba(255,255,255, 0.9) !important;
}
/*--------------------------------------------------------------
#1.4	faeture
--------------------------------------------------------------*/
.beautifull-spa-and-faeture {
	margin-top: -10px;
	position: relative;
	z-index: 5;
}
/*.beautifull-spa*/
.beautifull-spa {
	background: url(../images/home-1/beautifull-spa.jpg) no-repeat 50% 50%;
	background-size: cover;
	padding: 140px 40px 0;
}
.beautifull-spa .col:first-child {
	padding: 0;
}
.beautifull-spa .col:last-child {
	text-align: right;
	padding: 0 25px 0 0;
	margin-top: 5px;
}
.beautifull-spa .col:first-child p {
	font-size: 15px;
	color: #7d7d7d;
	line-height: 24px;
	margin-bottom: 0;
}
.beautifull-spa h2 {
	font-size: 25px;
	line-height: 35px;
	margin: 0;
}
/*faeture*/
.faeture {
	background-color: #d34908;
	text-align: center;
	padding-left: 0;
	padding-right: 0;
	position: relative;
	margin-bottom: -200px;
}
.faeture .featInner {
	background-image: url('../images/bg2.jpg');
	background-position: center center;
    background-size: cover;
	top: -300px;
	position: relative;
	display: block;
	padding: 100px 30px;
	border-radius: 20px;
}
.faeture .featInner::before{
	position: absolute;
	width: 100%;
	content: '';
	height: 100%;
	background: rgba(0, 0, 0, 0.5);
	top: 0;
	left: 0;
	border-radius: 20px;
}
.featInner h2 {
	font-family: El Messiri;
	font-size: 48px;
	color: #fff;
	position: relative;
	text-transform: capitalize;
	padding: 0 100px
}
.featInner h6 {
	font-family: El Messiri; 
	text-transform: uppercase;
	color: #fff;
	position: relative;
	font-size: 16px;
}
.faeture .col1 {
	padding: 20px 20px;
	-webkit-transition: all 0.2s;
	transition: all 0.2s;
}
.faeture .col1 i:before {
	font-size: 45px;
	color: #fff;
}
.faeture h3 {
	font-size: 18px;
	color: #fff;
	margin: 2em 0 1em;
	font-family: El Messiri;
}
.faeture .col1 p {
	font-size: 15px;
	line-height: 23px;
	color: #fff;
	margin: 0;
}
#first-feature,
#second-feature,
#third-feature,
#fourth-feature,
#fifth-feature,
#sixth-feature {
	border-style: solid;
	border-color: #c4c4c4;
}
#first-feature,
#second-feature {
	border-width: 0px 1px 1px 0px;
}
#third-feature{
	border-width: 0px 0px 1px 0px;
}
#fourth-feature,
#fifth-feature{
	border-width: 0px 1px 0px 0px;
}
#sixth-feature{
	border-width: 0px 0px 0px 0px;
}
/*--------------------------------------------------------------
#1.6	spa-advantages
--------------------------------------------------------------*/
.spa-advantages {
	background: url(../images/adventure-bg.jpg);
	padding: 0 0 70px 0;
}
.spa-advantages .advantage-details {
	background: url(../images/adventure-img.png) no-repeat 0 0;
	padding-bottom: 43px;
}
/*section-title */
.spa-advantages .section-title {
	margin-bottom: 40px;
}
.spa-advantages .section-title .playfair {
	margin: 0;
}
.spa-advantages .section-title h2 {
	font-size: 35px;
	font-weight: 800;
	line-height: 30px;
	color: #000;
	margin: 0.77em 0 1.15em;
}
.spa-advantages .section-title p {
	font-size: 16px;
	line-height: 24px;
	margin: 0;
}
/*advantages*/
.spa-advantages .advantages {
	padding-left: 47px;
	margin-top: 32px;
}
.spa-advantages .advantages .row {
	margin-bottom: 35px;
	position: relative;
}
.spa-advantages .advantages .row:last-child {
	margin-bottom: 0;
}
.spa-advantages .advantages .icon {
	width: 70px;
	height: 70px;
	padding: 0;
	border: 1px solid #d34908;
	border-radius: 50%;
	position: relative;
}
.spa-advantages .advantages i {
	background-color: #d34908;
	width: 60px;
	height: 60px;
	display: table;
	text-align: center;
	border-radius: 50px;
	position: absolute;
	left: 50%;
	top: 50%;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
}
.spa-advantages .advantages i:before {
	font-size: 33px;
	margin: 0;
	color: #fff;
	display: table-cell;
	vertical-align: middle;
}
.spa-advantages .playfair {
	display: block;
	font-size: 16px;
	color: #d34908;
	margin-top: 5px;
}
.spa-advantages .advantages h3 {
	font-family: 'Open Sans', sans-serif;
	font-size: 18px;
	font-weight: normal;
	color: #000;
	margin: 0.4em 0 0.95em ;
}
/*line*/
.spa-advantages .advantages .line {
	background-color: #d34908;
	width: 160px;
	height: 1px;
	position: absolute;
    left: -160px;
    top: 35px;
}
.spa-advantages .advantages .line .before {
	content: "";
	background-color: #fff;
	display: block;
	width: 20px;
	height: 20px;
	border: 4px solid #d34908;
	border-radius: 50%;
	position: absolute;
    left: 0;
    top: -10px;
    z-index: 5;
}
.spa-advantages .advantages .line .point {
	width: 22px;
	height: 22px;
	border-radius: 50%;
	background: transparent;
	position: absolute;
	left: -1px;
	top: -11px;
	box-shadow: 0 0 0 1px #d34908;
	-webkit-animation: pin-point 2s linear infinite;
	animation: pin-point 2s linear infinite;
}
@-webkit-keyframes pin-point {
  0% {
    -webkit-transform: scale(1);
    opacity: 0.8;
  }
  50% {
    opacity: 0.8;
  }
  100% {
    -webkit-transform: scale(1.8);
    opacity: 0;
  }
}
@keyframes pin-point {
  0% {
    transform: scale(1);
    opacity: 0.8;
  }
  50% {
    opacity: 0.8;
  }
  100% {
    transform: scale(1.8);
    opacity: 0;
  }
}
/*--------------------------------------------------------------
#1.7	services
--------------------------------------------------------------*/
.services {
	background: url(../images/home-1/services/bg.jpg);
	overflow: hidden;
	padding-bottom: 80px;
}
.services .thumbnail {
	background: none;
	border: 0;
	border-radius: 0;
	padding: 0;
}
.services .thumbnail .hover-content > div {
	position: absolute;
	width: 100%;
	text-align: center;
	bottom: 45px;
	left: 50%;
	-webkit-transform: translate(-50%);
	transform: translate(-50%);
}
.services .thumbnail .hover-content > div p {
	text-transform: uppercase;
    color: #fff;
    line-height: 12px;
    margin: 17px 0 0;
}
.services .thumbnail .hover-content {
	background: rgba(133,173,0,0.9) !important;
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
	visibility: hidden;
}
.services .thumbnail .hover-content:before,
.services .thumbnail .hover-content:after {
	content: "";
	width: 94%;
	height: 94%;
	position: absolute;
	left: 3%;
	top: 3%;
	-webkit-transition: all 0.5s ease-in-out;
	transition: all 0.5s ease-in-out;
}
.services .thumbnail .hover-content:before {
	width: 0;
	border-top: 1px dashed #fff;
	border-bottom: 1px dashed #fff;
}
.services .thumbnail .hover-content:after {
	height: 0;
	border-left: 1px dashed #fff;
	border-right: 1px dashed #fff;
}
.services .thumbnail:hover .hover-content:before {
	width: 94%;
}
.services .thumbnail:hover .hover-content:after {
	height: 94%;
}
.services .wrap-hover-content:hover .hover-content {
	visibility: visible;
}
.serviceRightImg {
	border-radius: 20px 100px 20px 20px;
		background-position: center center;
		background-repeat: no-repeat;
		background-size: cover;
		width: 100%;
		height: 1000px;		
	
}
/*service-button*/
.top-button {
	padding-bottom: 50px;
}
.top-button .col:first-child {
	padding: 0;
}
.top-button .col:first-child p {
	font-family: 'Raleway', sans-serif;
	font-size: 18px;
	font-weight: 600;
	color: #d3d1ca;
	text-transform: uppercase;
	margin: 0;
}
.top-button .col:nth-child(2) {
	background-color: #d3d1ca;
	line-height: 20px;
	width: 72%;
	height: 1px;
	margin: 12px 0 0 15px;
}
.top-button .btn {
	background: transparent;
	border: 0;
	padding: 0;
	border-radius: 0;
	margin-left: 16px;
	margin-right: 16px;
	position: relative;
}
.top-button .btn i:before {
	font-size: 20px;
	color: #d5d3cd;
	margin: 0;
	-webkit-transition: all 0.2s;
	transition: all 0.2s;
}
.top-button .btn:first-child {
	margin-left: 0;
}
.top-button .btn:last-child {
	margin-right: 0;
}
.top-button .btn:after {
	content: "";
	display: block;
	height: 26px;
	border-right: 1px solid #d5d3cc;
	position: absolute;
	top: 0;
	left: 36px;
}
.top-button .btn:last-child:after {
	display: none;
}
.top-button .btn:hover i:before,
.top-button .active i:before {
	color: #000;
}
.top-button .active {
	box-shadow: none;
	cursor: auto;
}
.services .view-all-service {
	background-color: #85ad00;
	width: 180px;
	height: 40px;
	color: #fff;
	font-size: 15px;
	line-height: 40px;
	text-align: center;
	text-transform: uppercase;
	border: 0;
	border-radius: 0;
	padding: 0;
	margin-top: 68px;
	position: relative;
	left: 50%;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
}
.services .view-all-service:hover {
	background-color: #000 !important;
}
/*--------------------------------------------------------------
#1.7.1	facial
--------------------------------------------------------------*/
.services .facial > .col,
.services .body > .col,
.services .foot > .col {
	padding: 0;
}
/*left side*/
.services .facial-left-thumbnail {
	background: url(../images/home-1/services/facial/massage.jpg) no-repeat 50% 50%;
	background-size: cover;
	height: 625px;
	overflow: hidden;
}
.services .facial .left,
.services .body .left,
.services .foot .left {
	position: relative;
}
.services .facial-left-thumbnail,
.services .foot-left-thumbnail {
	position: relative;
}
.services .facial-left-thumbnail .overlay + div,
.services .body-right-thumbnail .overlay + div,
.services .foot-left-thumbnail .overlay + div {
	position: absolute;
	width: 100%;
	text-align: center;
	bottom: 45px;
	z-index: 6;
}
.services .facial-left-thumbnail .overlay + div p,
.services .body-right-thumbnail .overlay + div p,
.services .foot-left-thumbnail .overlay + div p {
	text-transform: uppercase;
	color: #fff;
	line-height: 12px;
	margin: 17px 0 0;
}
/*right side*/
.services .facial-right-thumbnail {
	margin-left: 30px;
	margin-bottom: 0;
}
.services .facial-right-thumbnail .row {
	margin-left: 0;
	margin-right: 0;
}

/*like-comment*/
.services .facial .like-comment,
.services .body .like-comment,
.services .foot .like-comment {
	margin-top: 82px;
}
.services .facial .like-comment a,
.services .body .like-comment a,
.services .foot .like-comment a {
	font-size: 13px;
	color: #7f7d79;
	font-weight: 600;
	font-style: normal !important;
}
.services .facial .like-comment a:first-child,
.services .body .like-comment a:first-child,
.services .foot .like-comment a:first-child  {
	margin-right: 28px;
}
.services .facial .like-comment a i,
.services .body .like-comment a i,
.services .foot .like-comment a i   {
	font-style: normal !important;
}
.services .facial .like-comment a i:before,
.services .body .like-comment a i:before,
.services .foot .like-comment a i:before {
	font-size: 15px;
	margin: 0 7px 0 0;
}
/*facial-slider*/
.services .facial-slider .owl-item {
	margin-right: 5px;
}
.services .facial-slider .thumbnail {
	width: 170px;
	height: 170px;
	position: relative;
	border: 0;
	padding: 0;
	border-radius: 0;
	margin-bottom: 0;
}
.services .facial-slider .thumbnail img {
	width: 100%;
}
.services .facial-slider .thumbnail a {
	display: block;
	width: 100%;
	height: 100%;
	position: relative;
	z-index: 5;
}
.services .facial-slider .overlay {
	background: rgba(0,0,0, 0.1);
}
/*hover-effect for every item*/
.services .facial-slider .overlay:before,
.services .facial-slider .overlay:after {
	content: "";
	position: absolute;
	left: 5%;
	top: 5%;
	-webkit-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}
.services .facial-slider .overlay:before {
	border-top: 1px dashed #fff;
	border-bottom: 1px dashed #fff;
	width: 0%;
	height: 90%;
}
.services .facial-slider .overlay:after {
	border-left: 1px dashed #fff;
	border-right: 1px dashed #fff;
	width: 90%;
	height: 0%;
}
.services .facial-slider .overlay:hover:before {
	width: 90%;
}
.services .facial-slider .overlay:hover:after {
	height: 90%;
}
/*owl-controls*/
.services .facial-slider .owl-prev,
.services .facial-slider .owl-next {
	top: 35% !important;
}
.services .facial-slider .owl-prev {
	left: -3% !important;
}
.services .facial-slider .owl-next {
	right: -3% !important;
}
/*--------------------------------------------------------------
#1.7.2	body
--------------------------------------------------------------*/
.services .body,
.services .foot {
	margin-top: 20px;
}
.services .body .right .thumbnail {
	margin-right: 15px;
}
.services .body .left .thumbnail {
	margin-left: 30px;
	position: relative;
}
/*left-side*/
/*thumb section*/
.services .body .right {
	padding-left: 15px;
}
.services .body-left-thumbnail .thumb .thumbnail .overlay,
.services .foot-right-thumbnail .thumb .thumbnail .overlay {
	background: rgba(133,173,0,0.9) !important
}
.services .body-left-thumbnail .thumb .thumbnail,
.services .foot-right-thumbnail .thumb .thumbnail {
	position: relative;
	margin: 0;
}
.services .body-left-thumbnail .thumb img,
.services .foot-right-thumbnail .thumb img {
	width: 100%;
}
/*per-col*/
.services .body-left-thumbnail .thumb > .col {
	width: 175px;
	padding: 0;
	margin-right: 30px;
}
.services .body-left-thumbnail .thumb > .col:last-child,
.services .foot-right-thumbnail .thumb > .col:last-child  {
	margin-right: 0;
}
/*thumb overlay and link*/
.services .body-left-thumbnail .thumb .thumbnail a,
.services .foot-right-thumbnail .thumb .thumbnail a {
	background: #333;
    padding: 4px 10px;
    border-radius: 3px;
    color: #fff;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
   	transform: translate(-50%, -50%);
    z-index: 100;
}
.services .body-left-thumbnail .thumb .thumbnail a,
.services .foot-right-thumbnail .thumb .thumbnail a, 
.services .body-left-thumbnail .thumb .thumbnail .overlay,
.services .foot-right-thumbnail .thumb .thumbnail .overlay {
	visibility: hidden;
}
.services .body-left-thumbnail .thumb .thumbnail:hover a,
.services .foot-right-thumbnail .thumb .thumbnail:hover a {
	visibility: visible;
}
.services .body-left-thumbnail .thumb .thumbnail:hover .overlay,
.services .foot-right-thumbnail .thumb .thumbnail:hover .overlay {
	visibility: visible;
}
/*border*/
.services .body-left-thumbnail .thumb .thumbnail:before,
.services .foot-right-thumbnail .thumb .thumbnail:before,
.services .body-left-thumbnail .thumb .thumbnail:after,
.services .foot-right-thumbnail .thumb .thumbnail:after {
	content: "";
	width: 90%;
	height: 90%;
	position: absolute;
	left: 5%;
	top: 5%;
	z-index: 10;
	-webkit-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}
.services .body-left-thumbnail .thumb .thumbnail:before,
.services .foot-right-thumbnail .thumb .thumbnail:before {
	width: 0;
	border-top: 1px dashed #fff;
	border-bottom: 1px dashed #fff;
}
.services .body-left-thumbnail .thumb .thumbnail:after,
.services .foot-right-thumbnail .thumb .thumbnail:after {
	height: 0;
	border-left: 1px dashed #fff;
	border-right: 1px dashed #fff;
}
.services .body-left-thumbnail .thumb .thumbnail:hover:before,
.services .foot-right-thumbnail .thumb .thumbnail:hover:before {
	width: 90%;
}
.services .body-left-thumbnail .thumb .thumbnail:hover:after,
.services .foot-right-thumbnail .thumb .thumbnail:hover:after {
	height: 90%;
}
/*body-right-thumbnail*/
.services .body-right-thumbnail {
	background: url(../images/home-1/services/body/body-massage.jpg) no-repeat 50% 50%;
	background-size: cover;
	height: 625px;
}
/*--------------------------------------------------------------
#1.7.2	foot
--------------------------------------------------------------*/
.services .foot-left-thumbnail {
	background: url(../images/home-1/services/foot/foot.jpg) no-repeat 50% 50%;
	background-size: cover;
	height: 615px;
}
/*foot-right-thumbnail*/
.services .foot-right-thumbnail {
	margin: 0 15px 0 45px;
}
.services .foot-right-thumbnail .thumb > .col {
	width: 165px;
	padding: 0;
	margin-right: 30px;
}
/*--------------------------------------------------------------
#1.8	news-shop
--------------------------------------------------------------*/
.news-shop {
	background: url(../images/slider-1.jpg) no-repeat 50% 50%;
	background-size: cover;
	padding: 100px 0;
	position: relative;
}
.news-shop::before{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.5);
	content: '';
	z-index: 0;
}
/*--------------------------------------------------------------
#1.8.1	news
--------------------------------------------------------------*/
.news-shop .news {
	color: #fff;
}
.news-shop .news .portfolio {
	position: relative;
}
/*portfolio*/
.news-shop .news .portfolio h3 {
	margin: 0 0 1.33em;
}
.news-shop .news .portfolio h3 + p {
	font-size: 19px;
	line-height: 30px;
	margin: 0 0 2em;
}
.news-shop .news .portfolio span {
	font-size: 19px;
	font-weight: 600;
	text-transform: uppercase;
}
/*Luxury spa and resort*/
.news-shop .news .portfolio + h3 {
	font-size: 65px;
	margin: 1em 0 0;
	padding-bottom: 0.7em;
	color: rgba(255,255,255, 0.4);
	border-bottom: 1px solid rgba(255,255,255, 0.4);
	position: relative;
}
.news-shop .news .portfolio + h3 span {
	font-size: 51px;
	display: block;
	font-weight: lighter;
}
.news-shop .news > a {
	width: 145px;
	height: 32px;
	line-height: 30px;
	text-align: center;
	color: #fff;
	text-transform: uppercase;
	border: 1px solid #fff;
	border-radius: 0;
	padding: 0;
	margin-left: 147px;
}
/*portfolio*/
.news-shop .news .portfolio + h3 {
	line-height: 60px;
}
.news-shop .sort-about {
	margin-top: 42px;
}
.news-shop .sort-about p:first-child {
	font-size: 16px;
	color: #fff;
	line-height: 26px;
	margin: 0 0 2.5em;
}
.news-shop .sort-about .playfair {
	font-size: 18px;
	color: #86a900;
	line-height: 29px;
	margin: 0 0 3.66em;
}
.news-shop .appointment .btn-group .btn {
	background: transparent;
	width: 50px;
	height: 50px;
	text-align: center;
	border: 1px dotted #444444;
	padding: 0;
	border-radius: 0;
	margin-right: 9px;
}
.news-shop .appointment .btn-group .btn i:before {
	margin: 0;
	font-size: 30px;
	color: #444444;
}
.news-shop .appointment .btn-group .btn:hover i:before {
	color: #fff;
}
.news-shop .appointment > a {
	background-color: #d34908;
	width: 250px;
	height: 50px;
	line-height: 50px;
	font-size: 15px;
	font-weight: 600;
	text-transform: uppercase;
	border: 0;
	border-radius: 0;
	text-align: center;
	color: #fff;
	padding: 0;
}
/*--------------------------------------------------------------
#1.8.2	shop
--------------------------------------------------------------*/
.news-shop .shop > .col {
	padding: 10px;
}
.news-shop .shop > a {
	width: 170px;
	height: 32px;
	line-height: 30px;
	text-align: center;
	color: #fff;
	text-transform: uppercase;
	border: 1px solid #fff;
	border-radius: 0;
	padding: 0;
	margin: 43px 0 0 10px;
}
.news-shop .shop .thumbnail {
	border-radius: 0;
	padding: 0;
	border: 0;
	margin-bottom: 30px;
}
.news-shop .shop .thumbnail > div {
	text-align: center;
	position: relative;
}
.news-shop .shop .thumbnail a {
	display: inline-block;
	background-color: #87a900;
	width: 40px;
	height: 40px;
	color: #fff;
	text-align: center;
}
.news-shop .shop .thumbnail a i:before {
	margin-left: 0;
	font-size: 21px;
	color: rgba(255,255,255, 0.4);
	line-height: 40px;
}
.news-shop .shop .thumbnail h3 {
	font-size: 19px;
	color: #3f3f3f;
	margin: 0 0 0.6em 0;
}
.news-shop .shop .thumbnail .playfair {
	color: #84ae00;
}
.news-shop .shop .thumbnail img {
	display: block;
	margin: 0 auto;
}
/*price-button*/
.news-shop .shop .price {
	background-color: #d34908;
	color: #fff;
	width: 75px;
	height: 75px;
	line-height: 65px;
	font-size: 19px;
	border-radius: 50%;
	position: absolute;
	left: 28%;
	top: 50%;
}
.news-shop .shop .price span {
	display: block;
	width: 65px;
	height: 65px;
	border: 1px dashed #c3d300;
	border-radius: 50%;
	position: absolute;
	left: 50%;
	top: 50%;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
}
/*owl-controls*/
.news-shop .shop-slider .owl-prev,
.news-shop .shop-slider .owl-next {
	bottom: -95px;
}
.news-shop .shop-slider .owl-prev {
	right: 50px;
}
.news-shop .shop-slider .owl-next {
	right: 10px;
}
.news-shop .shop-slider .owl-prev:hover,
.news-shop .shop-slider .owl-next:hover,
.news-shop .news-slider .owl-prev:hover,
.news-shop .news-slider .owl-next:hover  {
	background-color: #444444 !important;
} 



/*--------------------------------------------------------------
#1.12	footer
--------------------------------------------------------------*/
footer {
	background: #000;
	padding: 100px 0 23px;
	color: #fff;
	position: relative;
	overflow: hidden;
}
footer .row:first-child {
	padding-bottom: 96px;
}
footer p {
	font-size: 15px;
}
footer li,
footer a,
footer p {
	font-size: 15px;
	color: #f8f8f8;
}
footer h2 {
	font-size: 23px;
	line-height: 32px;
	font-weight: 600;
	margin: 0 0 33px 0;
	padding: 0 0 32px 0;
	position: relative;
}
footer h2:before {
	content: "";
	background-color: #d34908 ;
	display: block;
	width: 35px;
	height: 2px;
	position: absolute;
	left: 0;
	bottom: 0;
}
footer ul {
	list-style: none;
	margin: 0;
	padding-left: 0;
}
footer ul li {
	margin-bottom: 8px;
}
footer ul li:last-child {
	margin-bottom: 0;
}
footer ul li a:hover {
	text-decoration: none;
	color: #fff;
}
/*copyright*/
footer .copyright {
	padding-top: 42px;
	border-top: 1px solid #666666;
}
footer .copyright .col:first-child {
	line-height: 50px;
	padding-left: 0;
}
footer .copyright .col:last-child {
	padding-right: 0;
}
footer .copyright p {
	margin: -15px 0 0;
}
footer .copyright p a,
footer .copyright p span {
	color: #d34908 ;
	text-transform: uppercase;
}
footer .copyright p a:hover {
	text-decoration: none;
}
footer .copyright .nav li {
	margin-left: 30px;
}
footer .copyright .nav li:first-child {
	margin-left: 0;
}
footer .copyright .nav a {
	padding: 0;
	opacity: 0.3;
}
footer .copyright .nav a:hover {
	background: none;
	opacity: 1;
}
.foot-social a {
	font-size: 28px;
	padding-right: 20px;
}

/*--------------------------------------------------------------
------> gallery 2
--------------------------------------------------------------*/
/*--------------------------------------------------------------
#....	photo-gallery-title
--------------------------------------------------------------*/
#gallery .services {
	background: #fff;
}
.photo-gallery-title,
.shop-title {
	background-color: #f6f6f6;
	text-align: center;
	padding: 60px 0;
}
.photo-gallery-title h2,
.shop-title h2 {
	font-size: 33px;
	margin: 14px 0 0;
	line-height: 27px;
}
.photo-gallery-title .playfair,
.shop-title .playfair {
	font-size: 16px;
	color: #6d9600;
}

/*--------------------------------------------------------------
#2.1	gallery-content
--------------------------------------------------------------*/
.gallery-content {
	padding: 70px 0 50px;
	overflow: hidden;
}
.gallery-content .container {
	padding-left: 0;
	padding-right: 0;
}
.gallery-content .container > a {
	background-color: #85ad00;
    width: 180px;
    height: 40px;
    color: #fff;
    font-size: 15px;
    line-height: 40px;
    text-align: center;
    text-transform: uppercase;
    border: 0;
    padding: 0;
    margin-top: 68px;
    position: relative;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
}
.gallery-content .container > a:hover {
	background-color: #000 !important;
}
.gallery-content .thumbnail {
	border: 0;
	padding: 0;
	margin-bottom: 30px;
}
.gallery-content .thumbnail > div {
	position: relative;
	overflow: hidden;
}
/*hover-effect*/
.gallery-content .hover-content {
	background: rgba(211,73,8,0.9);
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
	text-align: center;
	visibility: hidden;
	opacity: 0;
	-webkit-transition: all 0.2s;
	transition: all 0.2s;
}
.gallery-content .hover-content:before,
.gallery-content .hover-content:after {
	content: "";
	width: 90%;
	height: 90%;
	position: absolute;
	left: 5%;
	top: 5%;
	-webkit-transition: all 0.5s ease-in-out;
	transition: all 0.5s ease-in-out;
}
.gallery-content .hover-content:before {
	width: 0;
	border-top: 1px dashed #fff;
	border-bottom: 1px dashed #fff;
}
.gallery-content .hover-content:after {
	height: 0;
	border-left: 1px dashed #fff;
	border-right: 1px dashed #fff;
}
.gallery-content .hover-content div {
	position: relative;
	top: 50%;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
	z-index: 100;
}
.gallery-content .hover-content h3 {
	font-size: 25px;
	color: #fff;
	margin-bottom: 40px;
}
.gallery-content .hover-content a {
	display: inline-block;
	width: 140px;
	height: 40px;
	line-height: 40px;
	border: 1px solid #fff;
	border-radius: 5px;
	text-align: center;
	font-size: 16px;
	color: #fff;
	text-transform: uppercase;
}
.gallery-content .hover-content a:hover {
	background-color: #fff !important;
	color: #000;
}
/*hover-effect*/
.gallery-content .thumbnail:hover .hover-content:before {
	width: 90%;
}
.gallery-content .thumbnail:hover .hover-content:after {
	height: 90%;
}
.gallery-content .thumbnail:hover .hover-content {
	visibility: visible;
	opacity: 1;
}

.bredcumbs {
	background: url(../images/bg2.jpg) no-repeat bottom center;
	background-size: cover;
	padding-top: 300px;
	
}
.bredcumbs h2 {
	font-size: 42px;
	color: #fff;
	margin: 0.6em 0 0;
}

/*--------------------------------------------------------------
#5	------> about
--------------------------------------------------------------*/
/*--------------------------------------------------------------
#5.1	about-victoria
--------------------------------------------------------------*/
.about,.sect-service {
	padding: 70px 0 70px;
}
.about h2 {
	font-size: 42px;
	margin: 1em 0 1em;
}
.about p {
	font-size: 18px;
	line-height: 32px;
	text-align: justify;
}
.about h2 + p {
	margin-bottom: 60px;
}

.sect-service h2 + p {
	margin-bottom: 60px;
}
.serviceInner p { 
	font-size: 16px;
	line-height: 26px;
	text-align: justify;
}
.serviceInner .accordion-button {
    color: #fff;
    background-color: #d34908;
	text-decoration: none;
	font-size: 20px;
	font-weight: 700;
}
.serviceInner .accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ffffff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

/*--------------------------------------------------------------
#9.2	keep-in-touch
--------------------------------------------------------------*/
#contact .keep-in-touch {
	padding: 70px 0 70px;
	position: relative;
	overflow: hidden;
}
/*section-title*/
#contact .keep-in-touch .section-title {
	margin-bottom: 40px;
}
#contact .keep-in-touch h2 {
	font-size: 42px;
	color: #1e1e1e;
	line-height: 31px;
	margin: 0 0 0.85em;
}
#contact .keep-in-touch h2 + p {
	font-size: 16px;
	line-height: 24px;
}
/*content*/
#contact .keep-in-touch .content {
	text-align: center;
}
#contact .keep-in-touch .content .col1 {
	border-right: 1px solid #eeeeee;
}
#contact .keep-in-touch .content .col1:last-child {
	border-right: 0;
}
#contact .keep-in-touch .content span {
	display: inline-block;
	width: 100px;
	height: 100px;
	border: 1px dashed #eeeeee;
	text-align: center;
	border-radius: 50%;
	position: relative;
}
#contact .keep-in-touch .content span i:before {
	margin: 0;
	font-size: 34px;
	color: #fff;
	position: absolute;
	left: 50%;
	top: 50%;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
}
#contact .keep-in-touch .content span i {
	background: #eeeeee;
	width: 90px;
	height: 90px;
	border-radius: 50%;
	position: absolute;
	left: 50%;
	top: 50%;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
}
#contact .keep-in-touch .content h3 {
	font-size: 21px;
	color: #333333;
	line-height: 10px;
	margin: 1.67em 0;
}
#contact .keep-in-touch .content p {
	font-size: 15px;
	color: #676767;
	line-height: 23px;
	margin: 0;
}
#contact .keep-in-touch .content .col1:hover i {
	background: #d34908;
}
#contact .keep-in-touch .content .col1:hover span {
	border-color: #d34908;
}
#contact .keep-in-touch .container > a {
	width: 220px;
	height: 45px;
	line-height: 45px;
	border-radius: 25px;
	margin-top: 120px;
}
#contact .keep-in-touch .container > a:hover {
	background-color: #000 !important;
	color: #fff;
}
/*--------------------------------------------------------------
#9.3	leave-message
--------------------------------------------------------------*/
#contact .leave-message {
	overflow: hidden;
}
/*left-col*/
#contact .leave-message .left-col {
	background: url(../images/journey-bg.jpg) no-repeat 50% 50%;
	background-size: cover;
	text-align: center;
	position: relative;
}
#contact .leave-message .left-col .content {
	width: 100%;
	position: absolute;
	left: 50%;
	top: 50%;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
}
#contact .leave-message .left-col img {
	display: block;
	margin: 0 auto;
	margin-bottom: 125px;
}
#contact .leave-message .left-col .content p {
	display: inline-block;
	background-image: url(../images/contact/para-bg-lt.png), url(../images/contact/para-bg-ri.png);
	background-repeat: no-repeat;
	background-position: center left, center right;
	font-size: 14px;
	color: #fff;
	padding: 0 30px;
	position: relative;
}
#contact .leave-message .left-col .content p:before {
	content: "";
	width: 1px;
	height: 90px;
	background: #fff;
	position: absolute;
	left: 50%;
	-webkit-transform: translate(-50%);
	transform: translate(-50%);
	top: -100px;
}
/*right-col*/
#contact .leave-message .right-col {
	background-color: #d34908;
	padding: 80px 105px 80px 145px;
}
/*section-title*/
#contact .leave-message .right-col .section-title {
	text-align: left;
	color: transparent;
	padding-bottom: 32px;
	margin-bottom: 40px;
	border-bottom: 1px solid rgba(255,255,255, 0.2);
	position: relative;
}
#contact .leave-message .right-col .section-title h2 {
	color: #fff;
	font-size: 42px;
	line-height: 20px;
	margin: 0 0 17px;
}
#contact .leave-message .right-col .section-title p {
	color: #fff;
}
#contact .leave-message .right-col .section-title span {
	color: #465900;
}
#contact .leave-message .right-col .section-title div {
	position: absolute;
	right: 0;
	top: 20px;
}
#contact .social-links {
	padding-left: 0;
	overflow: hidden;
}
#contact .social-links li {
	list-style-type: none !important;
	display: inline-block;
	width: 35px;
	height: 35px;
	border: 1px solid #a5cc4c;
	border-radius: 50%;
	margin-right: 5px;
	text-align: center;
}
#contact .social-links li a {
	display: block;
	width: 35px;
	height: 35px;
	line-height: 35px;
	border-radius: 50%;
	font-size: 16px;
	color: #a5cc4c;
}
#contact .social-links li a:hover {
	background-color: #fff;
	color: #d34908;
}
/*form*/
#contact .leave-message .form-inline .col {
	padding: 0 0 0 10px;
	margin-bottom: 40px;
}
#contact .leave-message .form-inline .col:first-child,
#contact .leave-message .form-inline .col:nth-child(4) {
	padding-left: 0;
}
#contact .leave-message .form-inline  label {
	color: #fff;
	font-size: 17px;
}
#contact .leave-message .form-inline  input {
	width: 100%;
	height: 40px;
	line-height: 40px;
	text-transform: uppercase;
	box-shadow: none;
	border: 0;
}
#contact .leave-message .form-inline  input:focus,
#contact .leave-message .form-inline  textarea:focus {
	background: #a6cb56;
	border: 0;
	outline: 0;
	box-shadow: none !important;
}
#contact .leave-message .form-inline label {
	display: block;
}
#contact .leave-message .form-inline textarea {
	width: 100%;
	text-transform: uppercase;
	height: 160px !important;
}
#contact .leave-message .form-inline input[type="submit"] {
	background-color: transparent;
	width: 160px;
	height: 45px;
	line-height: 45px;
	padding: 0;
	display: inline-block;
	border: 2px solid #fff;
	font-size: 16px;
	font-weight: 600;
	color: #fff;
	text-transform: uppercase;
}
/*Responsive sytle for index-1 page*/
/*--------------------------------------------------------------
#..	header
--------------------------------------------------------------*/
@media only screen and (max-width: 1199px) {
	.navbar > .container {
		padding-left: 0;
		padding-right: 0;
	}
}
@media only screen and (max-width: 991px) {
	.navbar > .container {
		padding-left: 0;
		padding-right: 0;
	}
	header .navbar #navbar ul > li {
		margin-left: 20px;
	}
}
@media only screen and (max-width: 767px) {
	#navbar {
		background: #000;
		border-top: 0 !important;
		margin-top: 35px !important;
		width: 105%;
	}
}
/*--------------------------------------------------------------
#..	hero
--------------------------------------------------------------*/
@media only screen and (max-width: 1199px) {
	.hero .title {
		background: url(../images/home-1/title-md-bg.png) no-repeat;
		width: 600px;
		height: 229px;
		padding: 0 25px;
		position: absolute;
		top: 45%;
		left: 50%;
		-webkit-transform: translate(-50%, -45%);
		transform: translate(-50%, -45%);
	}
	.hero .title > div {
		margin-top: 50px;
	}
	.hero .playfair {
		font-size: 18px;
	}
	.hero .title h2 {
		font-size: 40px;
		line-height: 46px;
		margin: 0.83em 0 15px 0;
	}
	.hero .title p {
		font-size: 14px;
	}
	.hero .hero-slider img {
		height: 700px !important;
	}
}
@media only screen and (max-width: 991px) {
	.hero .hero-slider .item img {
		height: 700px !important;
	}
}
@media only screen and (max-width: 767px) {
	.hero > a {
		width: 160px;
		height: 40px;
		line-height: 40px;
		font-size: 14px;
		margin-top: -200px;
	}
	.hero .hero-slider .item img {
		height: 500px !important;
	}
	/*title*/
	.hero .title {
		background: url(../images/home-1/title-bg-sm.png) no-repeat;
		width: 450px;
		height: 172px;
	}
	.hero .title > div {
		margin-top: 40px;
	}
	.hero .playfair {
		font-size: 14px;
	}
	.hero .title h2 {
		font-size: 30px;
		font-weight: 700;
		line-height: 36px;
		margin: 0.50em 0 16px 0;
	}
	.hero .title p {
		font-size: 10px;
	}
	/*hero pagination and progress*/
	.hero .owl-controls {
		margin-top: -37px;
	}
	.hero .owl-pagination .active span {
		width: 12px;
		height: 12px;
	}
	#bar {
	  height: 5px;
	}
	#progressBar {
	  height: 5px;
	}
}
@media only screen and (max-width: 500px) {
	.hero > a {
		width: 160px;
		height: 40px;
		line-height: 40px;
		font-size: 14px;
		margin-top: -200px;
	}
	.hero .hero-slider .item img {
		height: 450px !important;
	}
	/*title*/
	.hero .title {
		background: url(../images/home-1/title-bg-xs.png) no-repeat;
		width: 300px;
		height: 122px;
	}
	.hero .title > div {
		margin-top: 25px;
	}
	.hero .playfair {
		font-size: 14px;
	}
	.hero .title h2 {
		font-size: 25px;
		font-weight: 700;
		line-height: 30px;
		margin: 0.2em 0 5px 0;
	}
	.hero .title p {
		font-size: 10px;
	}
}
/*--------------------------------------------------------------
#..	aobut-resort
--------------------------------------------------------------*/
/*resort*/
@media only screen and (max-width: 767px) {
	.resort {
		margin-top: -10px;
	}
	.resort .title {
		padding: 20px;
	}
	.resort .title h2 {
		font-size: 25px;
		letter-spacing: 5px;
		line-height: 25px;
	}
	.resort .title p {
		font-size: 15px;
	}
}

/*--------------------------------------------------------------
#..	beautifull-spa-and-faeture
--------------------------------------------------------------*/
@media only screen and (max-width: 767px) {
	.beautifull-spa {
		height: 500px !important;
		padding: 80px 0 0;
	}
	.beautifull-spa h2 {
		font-size: 25px;
	}
	.beautifull-spa .col:first-child {
		text-align: center !important;
		margin-bottom: 25px;
	}
	.beautifull-spa .col:last-child {
		text-align: center !important;
		padding: 0 10px 0 !important;
	}
}
@media only screen and (max-width: 500px) {
	.beautifull-spa {
		padding: 60px 0 0;
	}
	.beautifull-spa h2 {
		font-size: 20px;
		line-height: 30px;
	}
}
/*--------------------------------------------------------------
#..	fun-fact
--------------------------------------------------------------*/
@media only screen and (max-width: 767px) {
	.fun-fact .row .col:nth-child(2n) {
		border-right: 0;
	}
	
	.fun-fact .number {
		font-size: 40px;
	}
}
@media only screen and (max-width: 500px) {
	.fun-fact .number {
		font-size: 28px;
	}
	.fun-fact i:before {
		margin-left: 0;
		font-size: 25px;
	}
}
/*--------------------------------------------------------------
#...	spa-advantages
--------------------------------------------------------------*/
@media only screen and (max-width: 1199px) {
	.spa-advantages .advantages {
		padding-left: 80px;
	}
}
@media only screen and (max-width: 991px) {
	.spa-advantages .advantages {
		padding-left: 0;
		margin-top: 500px;
	}
	.spa-advantages .advantages > .row {
		padding-left: 25px;
	}
	.spa-advantages .advantages .line {
		display: none;
	}
}
@media only screen and (max-width: 767px) {
	/*section-title*/
	.spa-advantages {
		padding-top: 60px;
		padding-bottom: 60px;
	}
	.spa-advantages .advantages {
		margin-top: 25px;
	}
	.spa-advantages .advantage-details {
		background: none;
	}
}
@media only screen and (max-width: 500px) {
	/*section-title*/
	.spa-advantages .section-title h2 {
		font-size: 25px;
	}
	.spa-advantages .advantages h3 {
		font-size: 16px;
	}
}
/*--------------------------------------------------------------
#.....	facial
--------------------------------------------------------------*/
@media only screen and (max-width: 1199px) {
	.top-button .col:nth-child(2) {
		width: 67%;
		margin: 12px 0 0 14px;
	}
	.services .facial-left-thumbnail {
		height: 590px;
		overflow: hidden;
	}
	.services .facial-slider .thumbnail {
		width: 140px;
		height: 140px;
	}
}
@media only screen and (max-width: 991px) {
	/*service-button*/
	.top-button .col:first-child {
		padding-left: 15px;
	}
	.top-button .col:last-child {
		padding-right: 15px;
	}
	.top-button .col:nth-child(2) {
		display: none;
	}
	.top-button .col:first-child p {
		font-size: 14px;
	}
	.top-button .col:nth-child(2) {
		margin-top: 8px;
	}
	.top-button .btn {
		margin-left: 10px;
		margin-right: 10px;
	}
	.top-button .btn i:before {
		font-size: 15px;
	}
	.top-button .btn:after {
		height: 20px;
		left: 25px;
	}
	/*facial-right-thumbnail*/
	.services .facial-right-thumbnail {
		margin-left: 0;
	}
	.services .facial .right {
		padding-left: 0;
		margin-top: 30px;
	}
	.services .facial-slider .thumbnail {
		width: 95% !important;
		height: 95% !important;
	}
	.services .facial-slider .owl-prev,
	.services .facial-slider .owl-next {
		top: 40% !important;
	}
	.services .facial-slider .owl-prev {
		left: -20px !important;
	}
	.services .facial-slider .owl-next {
		right: -15px !important;
	}
}
@media only screen and (max-width: 767px) {
	.services .facial-slider {
		padding-left: 15px;
	}
	.services .facial-slider .owl-item {
		margin-right: 0;
	}
	.services .facial-slider .owl-prev {
		left: 0px !important;
	}
	.services .facial-slider .owl-next {
		right: 0px !important;
	}
}
/*--------------------------------------------------------------
#....	body
--------------------------------------------------------------*/
@media only screen and (max-width: 1199px) {
	.services .body-left-thumbnail .thumb > .col {
		width: 147px;
		margin-right: 20px;
	}
	.services .body-right-thumbnail {
		height: 597px;
	}
}
@media only screen and (max-width: 991px) {
	.services .body-left-thumbnail .thumb > .col {
		width: 31% !important;
		margin-right: 3%;
	}
	.services .body-right-thumbnail {
		margin-left: 0 !important;
	}
}
@media only screen and (max-width: 767px) {
	.services .body-right-thumbnail,
	.services .facial-left-thumbnail,
	.services .foot-left-thumbnail {
		height: 400px !important;
	}
}
/*--------------------------------------------------------------
#....	foot
--------------------------------------------------------------*/
@media only screen and (max-width: 1199px) {
	.services .foot-right-thumbnail .thumb > .col {
		width: 141px;
		margin-right: 15px;
	}
	.services .foot-left-thumbnail {
		height: 590px;
	}
}
@media only screen and (max-width: 991px) {
	.services .foot-right-thumbnail .thumb > .col {
		width: 31% !important;
		margin-right: 3%;
	}
	.services .foot-right-thumbnail {
		margin-left: 15px !important;
	}
}
/*--------------------------------------------------------------
#...	news-shop
--------------------------------------------------------------*/
@media only screen and (max-width: 1199px) {
	.news-shop .appointment > a {
		margin-top: 15px;
	}
}
@media only screen and (max-width: 991px) {
	.news-shop .appointment > a {
		margin-top: 0;
	}
	.news-shop .appointment .btn-group .btn {
		border: 1px dotted #fff;
	}
	.news-shop .appointment .btn-group .btn i:before {
		color: #fff;
	}
}
@media only screen and (max-width: 767px) {
	.news-shop .appointment > a {
		font-size: 14px;
		width: 200px;
		height: 35px;
		line-height: 35px;
		margin-top: 0;
	}
	.news-shop .appointment .btn-group .btn {
		width: 35px;
		height: 35px;
	}
	.news-shop .appointment .btn-group .btn i:before {
		font-size: 20px;
	}
}

@media only screen and (max-width: 1199px) {
	.exparts .thumbnail {
		width: 265px;
	}
}
@media only screen and (max-width: 991px) {
	.exparts .thumbnail {
		width: 245px;
	}
	
	.exparts .social {
	    right: 2px;
	}
}
@media only screen and (max-width: 767px) {
	.exparts {
		padding: 70px 0 100px;
	}
	.exparts .thumbnail {
		width: auto !important;
	}
	/*social*/
	.exparts .social li {
		width: 25px;
		height: 29px;
		line-height: 29px;
		border-top: 1px solid rgba(0,0,0, 0.2);
		border-left: 1px solid rgba(0,0,0, 0.2);
		border-right: 1px solid rgba(0,0,0, 0.2);
	}
	.exparts .social ul li:last-child {
		border-bottom: 1px solid rgba(0,0,0, 0.2);
	}
	.exparts .social li a {
		background: rgba(0,0,0, 0.1);
		display: block;
		font-size: 14px;
		color: rgba(0,0,0, 0.5);
	}
}
@media only screen and (max-width: 500px) {
	.exparts .content > .col {
		width: 100%;
		margin-bottom: 80px;
	}
	.exparts .content > .col:last-child {
		margin-bottom: 0;
	}
	.exparts .social li {
		width: 35px;
		height: 39px;
		line-height: 39px;
	}
	.exparts .social li a {
		font-size: 16px;
	}
}
/*--------------------------------------------------------------
#...	latest-news
--------------------------------------------------------------*/
@media only screen and (max-width: 767px) {
	.latest-news {
		padding-bottom: 70px;
	}
	.latest-news .content > .col {
		margin-bottom: 50px;
		padding-left: 15px;
	}
	.latest-news .content > .col:last-child {
		margin-bottom: 0;
	}
	
	.latest-news .playfair {
		font-size: 14px;
	}
	.latest-news .news-details h3 {
		font-size: 18px;
		margin: 10px 0 15px;
	}
	.latest-news .links {
		margin-top: 80px;
	}
}
@media only screen and (max-width: 500px) {
	/*date*/
	.latest-news .date {
		width: 50px;
		height: 70px;
		border-radius: 5px;
	}
	.latest-news .date div {
		font-size: 25px;
	}
	.latest-news .date div p {
		margin: 0;
		line-height: 15px;
	}
	.latest-news .date div span {
		font-size: 14px;
	}
	/*news-details*/
	.latest-news .news-details {
		padding: 0 0 0 25px;
	}
	.latest-news .playfair {
		font-size: 15px;
	}
	.latest-news .news-details h3 {
		font-size: 18px;
		margin: 1em 0;
	}
}
