﻿/*------------------------------------------------------------------
[Master Stylesheet]
Project:	Aromatic Spa
Version:	1.0
-------------------------------------------------------------------*/
@import url("font-awesome.css");
@import url("line-icons.css");
@import url("animations.css");
@import url('https://maxcdn.bootstrapcdn.com/font-awesome/4.6.1/css/font-awesome.min.css');

@font-face {
    font-family: 'Agenda Light';
    font-style: normal;
    font-weight: 400;
    src: local('Agenda Light'), local('Agenda-Light'), url(./fonts/Agenda-Light.ttf) format('truetype');
}

@font-face {
    font-family: 'Agenda Medium';
    font-style: normal;
    font-weight: 400;
    src: local('Agenda Medium'), local('Agenda-Medium'), url(./fonts/Agenda-Medium.ttf) format('truetype');
}
@font-face {
    font-family: 'Agenda Bold';
    font-style: normal;
    font-weight: 400;
    src: local('Agenda Bold'), local('Agenda-Bold'), url(./fonts/Agenda-Bold.ttf) format('truetype');
}

/*------------------------------------------------------------------
[Table of contents]

0. CSS Reset
1. Basic Styles
2. Typography
3. Margin Bottom Sets
4. Padding Sets
5. Spacers Sets
6. Site Structure & Appearance
7. Responsive Media Queries
-------------------------------------------------------------------*/

/*-------------------------------------------------------------------------------------------*/
/* 0. RESET */
/*-------------------------------------------------------------------------------------------*/
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: inherit;
	font-size: 100%;
}
/* 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-spacing: 0;
	border-collapse: collapse;
}
* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
	outline:none;
}
iframe{
	border:0;
}

/* ==================================================
   1. Basic Styles
================================================== */

html, body {
    height: 100%;
    font-family: 'Agenda Light', sans-serif;
}

html, hmtl a{
	width:100%;
	font-size: 100%; 
	-webkit-text-size-adjust: 100%; 
	-ms-text-size-adjust: 100%;
}
a{
	color:#5e5e5e;
	text-decoration: none;
	cursor: pointer;
	-webkit-transition:all 0.3s ease 0.2s;
	-moz-transition:all 0.3s ease 0.2s;
	-ms-transition:all 0.3s ease 0.2s;
	-o-transition:all 0.3s ease 0.2s;
	transition:all 0.3s ease 0.1s;
}
a:hover,
a:active,
a:focus{
	text-decoration:none;
	outline: 0;
	color:#5e5e5e;
}
a img {
	border: none;
}
a > img {
	vertical-align: middle;	
}

.radio-group {
    padding: 6px 0px
}
.btn {
    font-family: 'Agenda Light', sans-serif;
}
.custom-control-label {
    margin-bottom: 5px;
    position: absolute;
    padding: 10px;
    padding-left: 30px;
}

.custom-control-price {
    margin-bottom: 5px;
    position: absolute;
    padding: 10px;
    padding-left: 175px;
}

input[type='radio'] {
    width: 25px;
    height: 25px;
    border: none;
}

    input[type='radio']:after {
        width: 16px;
        height: 16px;
        border-radius: 15px;
        top: 4px;
        left: 4px;
        position: relative;
        background-color: transparent;
        content: '';
        display: inline-block;
        visibility: visible;
        border: 2px solid transparent;
    }

    input[type='radio']:checked:after {
        width: 16px;
        height: 16px;
        border-radius: 15px;
        top: 4px;
        left: 4px;
        position: relative;
        background-color: #93B059;
        content: '';
        display: inline-block;
        visibility: visible;
        border: 2px solid #93B059;
    }

.gray-bg{
	background:#CDCBCB;
}
.gray-text{
	color:#CDCBCB;
}
.lgray-bg{
	background:#F9F8F5;
}
.dgray-bg{
	background:#454545;
}
.white-text{
	color:#5A5A5A;
}
.grey-text {
    color: #96959D;
    font-weight: bold;
}
.separator{
	display:inline-block;
	padding:0 10px;
	color:#454545;
}
.common-container{
	padding:50px 0;
}
img {
	max-width: 100%;	
}
img, object, embed, audio, video {
	max-width: 100%;
}
img {
	height: auto;
}
strong, .strong {
  	font-weight: 700;
}
p {
	margin: 0 0 20px;
}
i, em, .italic{
	font-style:italic;
}
.uppercase{
	text-transform:uppercase;
}
.align-left{
	float:left;
	margin:0 25px 0 0px!important;
}
.align-right{
	float:right;
	margin:0 0 0 25px!important;
}
.text-align-left {
	text-align: left;
}
.text-align-center {
	text-align: center;
}
.text-align-right {
	text-align: right;	
}
.color-text {
    color: #ffffff;
}
.through{
	text-decoration:line-through;
}
.border-radius{
	-webkit-border-radius:100%;
	-moz-border-radius:100%;
	border-radius:100%;
}
::-webkit-input-placeholder {
   color: #999;
}

:-moz-placeholder { /* Firefox 18- */
   color: #999;  
}

::-moz-placeholder {  /* Firefox 19+ */
   color: #999;  
}

:-ms-input-placeholder {  
   color: #999;  
}
iframe{
	border:0;
}



.header .navbar-nav > li > a, .dropdown-menu > li > a i {
    font-size: 13pt;
    color: #333333;
    font-family: 'Agenda Light', sans-serif;
}

.header .navbar-default .navbar-nav > .active > a {
    font-weight: bold;

}

.location-icon {
    margin-left: -25px;
    padding-right: 10px;
}
.header-info {
    position: relative;
    top: 32px;
    float: right;
}
.rounded-box {
    border-radius: 3px;
    border-color: #68321E;
    color: #68321E;
    border-width: 1px;
    text-align: center;
    border-style: solid;
    display: block;
    width: 180px;
    height: 44px;
    padding: 13px;
    font-size: 20px;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.booknow {
    border-radius: 6px;
    border-color: #68321E;
    color: #68321E;
    border-width: 2px;
    text-align: center;
    border-style: solid;
    width: 225px;
    height: 44px;
    padding: 13px;
    font-size: 20px;
    text-transform: uppercase;
    margin-top: 5PX;
    background-color: white;
    display:none
}

/* ==================================================
   2. Typography
================================================== */
h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0 0 20px 0;
    color: #5A5A5A;
    font-family: 'Agenda Light', sans-serif;
    font-weight: 400;
    line-height: 1.5em;
    letter-spacing: .5px;
}
h1{
	font-size:30px;
}
h2{
	font-size:24px;
}
h2 small{
	display:block;
	letter-spacing:.1em;
	text-transform:uppercase;
	font-size:45%
}
h3 {
	font-size:16px;
}
h3 small{
	font-size:14px;
	font-weight:600;
	color:#999;
}
h4{
	font-size:13px;
	letter-spacing:1px;
	font-weight:700;
	/*text-transform:uppercase;*/
}
h5{
	font-size:14px;
}
h6{
	font-size:12px;
}
h1.short, h2.short, h3.short, h4.short, h5.short, h6.short, p.short{
	margin-bottom:5px;
}
h1.spaced, h2.spaced, h3.spaced, h4.spaced, h5.spaced, h6.spaced {
    margin-top: 22px;
}
    h1 a, h2 a, h3 a, h4 a, h5 a, h6 a {
        color: #5A5A5A;
        text-decoration: none;
    }
.huge{
	font-size:10em;
}
blockquote{
	margin:30px 0;
	padding:0 0 0 30px;
	border-left:3px solid #222;
}
blockquote p{
	margin-bottom:0;
	white-space:1px;
	line-height:1.8em;
	font-style:italic;
	color:#999;
}
blockquote cite{
	font-weight:700;
}
blockquote cite:before{
	content:"- ";
}
p.lead{
	font-size:20px;
	line-height:28px;
}
p.md{
	font-size:16px;
}
p.lg{
	font-size:30px;
}
.lighter p{
	color:#ccc;
}
p.small{
	color:#999;
	font-size:12px;
	line-height:17px;
	margin-top:10px;
}
.big{
	font-size:200%;
	line-height:1.5em;
}
.thin{
	font-weight:300;
}
p.drop-caps:first-child:first-letter {
    float: left;
    margin-top: 5px;
    margin-right: 5px;
    padding: 4px;
    font-size: 75px;
    line-height: 60px;
}
p.drop-caps.secondary:first-child:first-letter {
    margin-right: 10px;
    padding: 6px 12px;
    border-radius: 4px;
    color: rgb(255, 255, 255);
}
hr{
	display:block;
	clear:both;
	margin-top:20px;
	margin-bottom:20px;
	width:100%;
	height:1px;
	border:0;
	background:#E8E8E8;
}
hr.sm{
	display:inline-block;
	margin:0 0 15px 0;
	width:40px;
	height:2px;
	border:0;
}
hr.md{
	display:inline-block;
	margin:15px 0;
	width:100px;
	height:2px;
	border:0;
}
hr.fw{
	display:block;
	clear:both;
	margin-top:50px;
	margin-bottom:43px;
	width:100%;
	height:1px;
	border:0;
	background:#eee;
}
hr.fw.cont{
	margin:20px 0;
}
ul.checks, ul.angles, ul.carets, ul.chevrons, ul.icons{
	margin:0;
	list-style-type:none;
	margin-bottom:20px;
}
ul.checks > li, ul.angles > li, ul.carets > li, ul.chevrons > li, ul.icons > li{
	margin:5px 0;
}
ul.checks > li > i, ul.angles > li > i, ul.carets > li > i, ul.chevrons > li > i, ul.icons > li > i{
	margin-right:2px;
}
ul.inline{
	margin:10px 0;
}
ul.inline > li{
	display:inline-block;
	margin-right:10px;
}
ul.inline > li i.fa{
	margin-right:2px;
}
ul.nav-list-primary > li a{
	display:block;
	padding:8px;
	border-bottom:1px solid #eee;
	color:#666666;
	text-decoration:none;
}
ul.nav-list-primary > li a:hover{
	text-decoration:none;
}
ul{
	margin:10px 0 10px 20px;
	list-style-type:disc;
}
ol{
	margin:10px 0 10px 30px;
	list-style-type: decimal;
}
ul ul, ol ul{
	margin:10px 0 10px 20px;
}
ul ul{
	list-style-type:circle;
}
dl{
	margin:10px 0;
}
dl dt{
	font-weight:700;
}
address.ico i{
	display:inline-block;
	float: left;
	clear:both;
	padding-top: 3px;
}
address.ico p{
	margin:0;
	padding-bottom:10px;
}
address.ico span{
	display:inline-block;
	padding-left:20px;
}
.cursive{
	font-style:italic;
	text-transform:none;
	font-weight:400;
	letter-spacing:0;
}
label {
  display: inline-block;
  margin-bottom: 5px;
  font-weight:400;
  color:#999;
}

.align-top {
    margin-top:0px !important;
}


/* ==================================================
   3. Margin Bottom Sets
================================================== */

.margin-0{
	margin-bottom:0 !important;
}
.margin-5{
	margin-bottom:5px !important;
}
.margin-10{
	margin-bottom:10px !important;
}
.margin-15{
	margin-bottom:15px !important;
}
.margin-20{
	margin-bottom:20px !important;
}
.margin-30{
	margin-bottom:30px !important;
}
.margin-40{
	margin-bottom:40px !important;
}
.margin-50{
	margin-bottom:50px !important;
}
.margin-60{
	margin-bottom:60px !important;
}
.margin-70{
	margin-bottom:70px !important;
}
.margin-80{
	margin-bottom:80px !important;
}
.push-top{
	margin-top:35px;
}

/* ==================================================
   4. Padding Sets
================================================== */
.padding-b0{
	padding-bottom:0!important;
}
.padding-tb0{
	padding-top:0!important;
	padding-bottom:0!important;
}
.padding-tb20{
	padding-top:20px;
	padding-bottom:20px;
}
.padding-tb45{
	padding-top:45px;
	padding-bottom:45px;
}
.padding-tb75{
	padding-top:75px;
	padding-bottom:75px;
}
.padding-tb100{
	padding-top:100px;
	padding-bottom:100px;
}
.padding-tb125{
	padding-top:125px;
	padding-bottom:125px;
}
/* ==================================================
   5. Spacers Sets
================================================== */
.spacer-10{
	height:10px;
	clear:both;
	width:100%;
}
.spacer-20{
	height:20px;
	clear:both;
	width:100%;
}
.spacer-30{
	height:30px;
	clear:both;
	width:100%;
}
.spacer-40{
	height:40px;
	clear:both;
	width:100%;
}
.spacer-50{
	height:50px;
	clear:both;
	width:100%;
}
.spacer-60{
	height:60px;
	clear:both;
	width:100%;
}
.spacer-75{
	height:75px;
	clear:both;
	width:100%;
}
.spacer-100{
	height:100px;
	clear:both;
	width:100%;
}
/* ==================================================
   5. Multi purpose Elements
================================================== */
.overlay-transparent{
	background:rgba(0,0,0,.7);
}
.overlay-white{
	background:rgba(255,255,255,.9);
}
.checkers-overlay{
	background:url(../images/checkers.png) repeat;
}
.pattern-overlay{
	background:url(../images/pattern.png) repeat;
}
.next-prev-nav{
	display:inline-block;
}
.next-prev-nav a{
	display:inline-block;
	width:20px;
	height:20px;
	color:#fff;
	text-align:center;
	line-height:20px;
	text-decoration:none;
}
.next-prev-nav a:hover{
	color:#fff;
}
.meta-data{
	color:#CDCBCB;
	font-size:12px;
	line-height: 16px;
	display:block;
	font-weight:400;
}
.meta-data strong{
	color:#999;
}
.meta-data a{
	color:#CDCBCB;
}
.meta-data a:hover{
	text-decoration:none;
}
.meta-data > span{
	display:inline-block;
}
.meta-data i{
	margin-right:4px;
}
.meta-data > span:last-child{
	margin-right:0;
}
.meta-data.alt{
	text-transform:uppercase;
	font-weight:700;
	font-size:11px;
}
.meta-data.alt > div{
	padding:0 5px;
	display:inline-block;
}
.meta-data.alt > div:first-child{
	padding-left:0;
}
.meta-data.alt > div:after{
	content:"/";
	margin-left:10px;
}
.meta-data.alt > div:last-child:after{
	content:"";
}
p.meta-data{
	font-size:16px;
	line-height:1.7em;
}
.isotope, .isotope .isotope-item {
	-webkit-transition-duration: 0.8s;
	-moz-transition-duration: 0.8s;
	-ms-transition-duration: 0.8s;
	-o-transition-duration: 0.8s;
	transition-duration: 0.8s;
}
.isotope {
	-webkit-transition-property: height, width;
	-moz-transition-property: height, width;
	-ms-transition-property: height, width;
	-o-transition-property: height, width;
	transition-property: height, width;
}
.isotope .isotope-item {
	-webkit-transition-property: -webkit-transform, opacity;
	-moz-transition-property: -moz-transform, opacity;
	-ms-transition-property: -ms-transform, opacity;
	-o-transition-property: -o-transform, opacity;
	transition-property: transform, opacity;
}
.isotope.no-transition, .isotope.no-transition .isotope-item, .isotope .isotope-item.no-transition {
	-webkit-transition-duration: 0s;
	-moz-transition-duration: 0s;
	-ms-transition-duration: 0s;
	-o-transition-duration: 0s;
	transition-duration: 0s;
}
.media-box{
	position:relative;
	z-index:1;
	display:inline-block;
	max-width:100%;
}
.format-gallery .media-box{
	display:block;
}
.media-box .zoom, .media-box .expand{
	position:absolute;
	width:100%;
	height:100%;
	text-align:center;
	font-size:1.5em;
	z-index:99;
	left:0;
	top:0;
	margin:0;
	background-color:rgba(0,0,0,.4);
	opacity:0;
	-webkit-transition:all 0.3s ease 0.2s;
	-moz-transition:all 0.3s ease 0.2s;
	-ms-transition:all 0.3s ease 0.2s;
	-o-transition:all 0.3s ease 0.2s;
	transition:all 0.3s ease 0.1s;
}
.media-box .zoom .icon, .media-box .expand .icon{
	width:44px;
	height:44px;
	-webkit-border-radius:3px;
	border-radius:3px;
	line-height:49px;
	text-align:center;
	color:#ffffff!important;
	position:absolute;
	font-size:1.2em;
	top:50%;
	left:50%;
	margin:-22px 0 0 -22px;
}
.img-thumbnail img:hover, .img-thumbnail:hover{
	opacity:.9
}
.media-box:hover .zoom, .media-box:hover .expand{
	opacity:1;
	-webkit-transition: opacity .3s .2s;
	-moz-transition: opacity .3s .2s;
	-ms-transition: opacity .3s .2s;
	-o-transition: opacity .3s .2s;
	transition: opacity .3s .2s;
}
.media-box .media-box-wrapper{
	padding:30px;
}
.social-icons, .social-icons-colored{
	margin:0;
	list-style-type:none;
}
.social-icons li, .social-icons-colored li{
	display:inline-block;
	margin-right:5px;
}
.social-icons li:last-child, .social-icons-colored li:last-child{
	margin-right:0;
}
.social-icons li a{
	text-align:center;
	color:#666;
	display:block;
}
.social-icons-colored li a{
	width:32px;
	height:32px;
	text-align:center;
	line-height:32px;
	color:#999;
	display:block;
	text-decoration:none;
	border:1px solid #999;
	background:rgba(0,0,0,.05);
	-webkit-border-radius:100%;
	border-radius:100%;
}
.social-icons-colored li a:hover{
	color:#fff;
}
.social-icons-colored li a .fa{
	font-size:17px;
}
.social-icons-colored li.facebook a:hover, .team-wrapper .image-overlay .social-icons-colored li.facebook a:hover, .team-single-profile .social-icons-colored li.facebook a:hover{
	background:#3B5998;
	border:1px solid #3B5998;
}
.social-icons-colored li.twitter a:hover, .team-wrapper .image-overlay .social-icons-colored li.twitter a:hover, .team-single-profile .social-icons-colored li.twitter a:hover{
	background:#00ACED;
	border:1px solid #00ACED;
}
.social-icons-colored li.behance a:hover, .team-wrapper .image-overlay .social-icons-colored li.behance a:hover, .team-single-profile .social-icons-colored li.behance a:hover{
	background:#1769FF;
	border:1px solid #1769FF;
}
.social-icons-colored li.delicious a:hover, .team-wrapper .image-overlay .social-icons-colored li.delicious a:hover, .team-single-profile .social-icons-colored li.delicious a:hover{
	background:#3274D1;
	border:1px solid #3274D1;
}
.social-icons-colored li.deviantart a:hover, .team-wrapper .image-overlay .social-icons-colored li.deviantart a:hover, .team-single-profile .social-icons-colored li.deviantart a:hover{
	background:#4B5D50;
	border:1px solid #4B5D50;
}
.social-icons-colored li.digg a:hover, .team-wrapper .image-overlay .social-icons-colored li.digg a:hover, .team-single-profile .social-icons-colored li.digg a:hover{
	background:#14589E;
	border:1px solid #14589E;
}
.social-icons-colored li.dribbble a:hover, .team-wrapper .image-overlay .social-icons-colored li.dribbble a:hover, .team-single-profile .social-icons-colored li.dribbble a:hover{
	background:#EA4C89;
	border:1px solid #EA4C89;
}
.social-icons li.foursquare a:hover, .team-wrapper .image-overlay .social-icons li.foursquare a:hover, .team-single-profile .social-icons li.foursquare a:hover{
	background:#2398C9;
	border:1px solid #2398C9;
}
.social-icons-colored li.github a:hover, .team-wrapper .image-overlay .social-icons-colored li.github a:hover, .team-single-profile .social-icons-colored li.github a:hover{
	background:#4183C4;
	border:1px solid #4183C4;
}
.social-icons-colored li.google a:hover, .team-wrapper .image-overlay .social-icons-colored li.google a:hover, .team-single-profile .social-icons-colored li.google a:hover{
	background:#245DC1;
	border:1px solid #245DC1;
}
.social-icons-colored li.googleplus a:hover, .team-wrapper .image-overlay .social-icons-colored li.googleplus a:hover, .team-single-profile .social-icons-colored li.googleplus a:hover{
	background:#D14836;
	border:1px solid #D14836;
}
.social-icons-colored li.instagram a:hover, .team-wrapper .image-overlay .social-icons-colored li.instagram a:hover, .team-single-profile .social-icons-colored li.instagram a:hover{
	background:#3F729B;
	border:1px solid #3F729B;
}
.social-icons-colored li.jsfiddle a:hover, .team-wrapper .image-overlay .social-icons-colored li.jsfiddle a:hover, .team-single-profile .social-icons-colored li.jsfiddle a:hover{
	background:#4679A4;
	border:1px solid #4679A4;
}
.social-icons-colored li.linkedin a:hover, .team-wrapper .image-overlay .social-icons-colored li.linkedin a:hover, .team-single-profile .social-icons-colored li.linkedin a:hover{
	background:#007FB1;
	border:1px solid #007FB1;
}
.social-icons-colored li.pinterest a:hover, .team-wrapper .image-overlay .social-icons-colored li.pinterest a:hover, .team-single-profile .social-icons-colored li.pinterest a:hover{
	background:#CB2027;
	border:1px solid #CB2027;
}
.social-icons-colored li.reddit a:hover, .team-wrapper .image-overlay .social-icons-colored li.reddit a:hover, .team-single-profile .social-icons-colored li.reddit a:hover{
	background:#FF4500;
	border:1px solid #FF4500;
}
.social-icons-colored li.skype a:hover, .team-wrapper .image-overlay .social-icons-colored li.skype a:hover, .team-single-profile .social-icons-colored li.skype a:hover{
	background:#00AFF0;
	border:1px solid #00AFF0;
}
.social-icons-colored li.tumblr a:hover, .team-wrapper .image-overlay .social-icons-colored li.tumblr a:hover, .team-single-profile .social-icons-colored li.tumblr a:hover{
	background:#2C4762;
	border:1px solid #2C4762;
}
.social-icons-colored li.vimeo a:hover, .team-wrapper .image-overlay .social-icons-colored li.vimeo a:hover, .team-single-profile .social-icons-colored li.vimeo a:hover{
	background:#44BBFF;
	border:1px solid #44BBFF;
}
.social-icons-colored li.youtube a:hover, .team-wrapper .image-overlay .social-icons-colored li.youtube a:hover, .team-single-profile .social-icons-colored li.youtube a:hover{
	background:#CD332D;
	border:1px solid #CD332D;
}
.social-icons-colored li.flickr a:hover, .team-wrapper .image-overlay .social-icons-colored li.flickr a:hover, .team-single-profile .social-icons-colored li.flickr a:hover{
	background:#0063DB;
	border:1px solid #0063DB;
}
.social-icons-colored li a:hover, .team-wrapper .image-overlay .social-icons-colored li a:hover, .team-single-profile .social-icons-colored li a:hover{
	opacity:.8;
	color:#fff;
}
.btn-social{
	color:#fff!important;
	text-align:left!important;
}
.btn-social:hover{
	opacity:.9
}
.social-icons-colored.inversed a{
	color:#fff;
}
.social-icons-colored.rounded a{
	border-radius:100%;
}
.social-icons-colored.inversed li.facebook a, .btn-facebook{
	background:#3B5998!important;
}
.social-icons-colored.inversed li.twitter a, .btn-twitter{
	background:#00ACED!important;
}
.social-icons-colored.inversed li.behance a{
	background:#1769FF;
}
.social-icons-colored.inversed li.delicious a{
	background:#3274D1;
}
.social-icons-colored.inversed li.deviantart a{
	background:#4B5D50;
}
.social-icons-colored.inversed li.digg a{
	background:#14589E;
}
.social-icons-colored.inversed li.dribbble a{
	background:#EA4C89;
}
.social-icons-colored.inversed li.foursquare a{
	background:#2398C9;
}
.social-icons-colored.inversed li.github a{
	background:#4183C4;
}
.social-icons-colored.inversed li.google a{
	background:#245DC1;
}
.social-icons-colored.inversed li.googleplus a{
	background:#D14836;
}
.social-icons-colored.inversed li.instagram a{
	background:#3F729B;
}
.social-icons-colored.inversed li.jsfiddle a{
	background:#4679A4;
}
.social-icons-colored.inversed li.linkedin a{
	background:#007FB1;
}
.social-icons-colored.inversed li.pinterest a{
	background:#CB2027;
}
.social-icons-colored.inversed li.reddit a{
	background:#FF4500;
}
.social-icons-colored.inversed li.skype a{
	background:#00AFF0;
}
.social-icons-colored.inversed li.tumblr a{
	background:#2C4762;
}
.social-icons-colored.inversed li.vimeo a{
	background:#44BBFF;
}
.social-icons-colored.inversed li.youtube a{
	background:#CD332D;
}
.social-icons-colored.inversed li.flickr a{
	background:#0063DB;
}
.icon-box.icon-box-style1 .icon-box-head{
	display:block;
	border-bottom:2px solid #f8f8f8;
	padding-bottom:15px;
	margin-bottom:15px;
}
.icon-box.icon-box-style1 .icon-box-head:before, .icon-box.icon-box-style1 .icon-box-head:after{
  display: table;
  content: " ";
}
.icon-box.icon-box-style1 .icon-box-head:after{
  clear: both;
}
.icon-box.icon-box-style1 .ico{
	float:left;
	width:42px;
	height:40px;
	color:#222;
	text-align:center;
	border:1px solid #f8f8f8;
	line-height:44px;
	font-size:20px;
	margin-right:15px;
	-webkit-transition:all 0.3s ease 0.2s;
	-moz-transition:all 0.3s ease 0.2s;
	-ms-transition:all 0.3s ease 0.2s;
	-o-transition:all 0.3s ease 0.2s;
	transition:all 0.3s ease 0.1s;
}
.icon-box.icon-box-style1:hover .ico{
	color:#fff;
}
.icon-box.icon-box-style1 .icon-box-head h4{
	display:inline-block;
	margin-bottom:0;
	margin-top:10px;
}
.icon-box.icon-box-style1 p{
	margin-bottom:0;
}
/* Hero Slider */
.flexslider {
	margin: 0;
	position:relative;
	padding: 0;
	background:url(../images/loader.gif) no-repeat scroll center center;
}
.flexslider .slides > li {
	display: none;
	-webkit-backface-visibility: hidden;
}
.slides:after {
	content: ".";
	display: block;
	clear: both;
	visibility: hidden;
	line-height: 0;
	height: 0;
} 
html[xmlns] .slides {
	display: block;
} 
* html .slides {
	height: 1%;
}
.flexslider .slides {
	zoom: 1;
	margin:0;
	list-style-type:none;
}  
.hero-slider{
	position:relative;
	z-index:1;
	height:689px;
	width:100%;
	overflow:hidden;
}
.hero-slider .flex-viewport{
	width:100%;
}
.hero-slider.flexslider > ul.slides{
	height:100%;
}
.hero-slider.flexslider ul.slides li{
	height:689px;
	width:100%;
	overflow:hidden;
	position:relative;
	background-attachment:scroll!important;
	background-size:cover;
}
.flexslider ul.slides li > a{
	display:block;
}
.flexslider .flex-control-nav{
	width:100%;
	text-align:center;
	position:absolute;
	z-index:111;
	left:0;
	bottom:10px;
	padding:0;
	margin:0;
}
.hero-slider.flexslider .flex-control-nav{
	bottom:-40px;
	-webkit-transition:all 0.3s ease 0.2s;
	-moz-transition:all 0.3s ease 0.2s;
	-ms-transition:all 0.3s ease 0.2s;
	-o-transition:all 0.3s ease 0.2s;
	transition:all 0.3s ease 0.1s;
}
.hero-slider.flexslider:hover .flex-control-nav{
	bottom:10px;
	-webkit-transition: bottom .3s .2s;
	-moz-transition: bottom .3s .2s;
	-ms-transition: bottom .3s .2s;
	-o-transition: bottom .3s .2s;
	transition: bottom .3s .2s;
}
.flexslider .flex-control-nav li{
	display:inline;
}
.flexslider .flex-control-nav a{
	width:12px;
	height:12px;
	border-radius:100%;
	background-color:#ffffff;
	display:inline-block;
	margin:0 4px;
	text-indent:-9999px;
	text-decoration:none;
}
.flexslider .flex-prev, .flexslider .flex-next{
	background:rgba(34,34,34,.7);
	color:#F9F9F9;
	display:block;
	margin-bottom:10px;
	position:absolute;
	top:50%;
	right:10px;
	font-size:14px;
	line-height:25px;
	width:25px;
	height:25px;
  	display: inline-block;
  	font-family: FontAwesome;
  	font-style: normal;
  	font-weight: normal;
  	-webkit-font-smoothing: antialiased;
  	-moz-osx-font-smoothing: grayscale;
  	text-decoration:none;
	display:none;
	text-align:center;
	margin-top:-13px;
}
.flexslider .flex-prev{
	left:10px;
	right:auto;
}
.flexslider .flex-prev:before{
  content: "\f104";
}
.flexslider .flex-next:before{
  content: "\f105";
}
.hero-slider.flexslider .flex-prev, .hero-slider.flexslider .flex-next{
	border:1px solid transparent;
	-webkit-border-radius:100%;
	-moz-border-radius:100%;
	border-radius:100%;
	width:50px;
	height:50px;
	right:-100px;
	margin-top:-50px;
	-webkit-transition:all 0.3s ease 0.2s;
	-moz-transition:all 0.3s ease 0.2s;
	-ms-transition:all 0.3s ease 0.2s;
	-o-transition:all 0.3s ease 0.2s;
	transition:all 0.3s ease 0.1s;
	font-size:28px;
	line-height:46px;
	display:block;
	text-align:center;
	z-index:9;
}
.flexslider:hover .flex-prev, .flexslider:hover .flex-next{
	display:block;
}
.hero-slider.flexslider ul.slides li > a{
	display:block;
	height:100%;
	width:100%;
}
.flex-caption, .showcase-inner .caption{
	width: 600px;
	height: 200px;
	position: absolute;
	top: 50%;
	left: 50%;
	margin: -100px 0px 0px -300px;
	background: none repeat scroll 0% 0% rgba(0, 0, 0, 0.6);
	padding: 20px 30px;
	color: #ccc;
	border-left:4px solid transparent
}
.flex-caption h1, .flex-caption h2, .flex-caption h3, .showcase-inner .caption h1, .showcase-inner .caption h2, .showcase-inner .caption h3{
	margin-bottom:15px;
	color:#fff;
}
.hero-slider.flexslider .flex-prev{
	left:-100px;
	padding-left:0px;
}
.hero-slider.flexslider .flex-next{
	padding-left:0px;
}
.hero-slider.flexslider:hover .flex-prev{
	left:10px;
	-webkit-transition: left .3s .2s;
	-moz-transition: left .3s .2s;
	-ms-transition: left .3s .2s;
	-o-transition: left .3s .2s;
	transition: left .3s .2s;
}
.hero-slider.flexslider:hover .flex-next{
	right:10px;
	-webkit-transition: right .3s .2s;
	-moz-transition: right .3s .2s;
	-ms-transition: right .3s .2s;
	-o-transition: right .3s .2s;
	transition: right .3s .2s;
}
.flex-direction-nav{
	margin:0;
	list-style-type:none;
}
.entry .flexslider{
	margin-bottom:40px;
}
.slider-wrapper{
	position:relative;
	min-height:200px;
	background:#666;
}

/* showcase-slider .flex-caption */
.showcase-slider .flex-caption, .showcase-inner .caption{
	width:800px;
	background:none;
	text-align:center;
	color:#FFF;
	border-left:none;
	margin: -170px 0px 0px -400px;
	z-index:8;
}
.showcase-inner .caption{
	margin-top:-110px;
}
.showcase-slider .flex-caption h1, .showcase-slider .flex-caption h2, .showcase-slider .flex-caption h3, .showcase-inner .caption h1, .showcase-inner .caption h2, .showcase-inner .caption h3{
	text-transform:uppercase;
	margin-bottom:15px;
	color:#fff;
	text-shadow:1px 1px 2px rgba(0,0,0,0.4);
}
.showcase-slider .flex-caption h2, .showcase-inner .caption h2{
	font-size:50px;
}
.showcase-slider .flex-caption p, .showcase-inner .caption p{
	font-size:20px;
	font-weight:300;
	line-height:30px;
}
.hero-slider.flexslider ul.slides li:after, .showcase-inner .bg-holder:after{
	content:'';
	/*background:url('../images/patterns/pt31.png');*/
	position:absolute;
	left:0;
	top:0;
	width:100%;
	height:100%;
	z-index:1;
}
.box-button {
    width: 210px;
}
.slider-anchor, .know-more, .box-button {
    border: 1px solid transparent;
    border-color: #5A5A5A;
    background-color: transparent;
    color: #5A5A5A;
    padding: 15px 28px;
    margin-top: 20px;
    width:178px;
}

    .know-more:hover, .box-button:hover, .box-button:focus {
        background-color: #93B059;
    }
.margin-right {
    margin-right: 15px;
}
.margin-left {
    margin-left: 15px;
}
.margin-sides {
    margin-left: 10px;
    margin-right: 10px;
}
/* gallery-slider */
.gallery-slider .hero-slider.flexslider ul.slides li:after {
    display: none;
}
.nivoSlider{
	-webkit-box-shadow:none!important;
	-moz-box-shadow:none!important;
	box-shadow:none!important;
	margin-bottom:0!important;
}
.nivo-directionNav a{
	top:45%!important;
}
.nivo-controlNav{
	width:100%;
	z-index:22;
	position:absolute;
	bottom:10px;
}
.nivo-caption{
	background:rgba(0,0,0,.7);
	text-align:center;
}
.basic-link{
	display:inline-block;
	font-weight:700;
	font-size:13px;
	text-transform:uppercase;
}
.basic-link:hover{
	color:#333;
	text-decoration:none;
}
.basic-link.inverted{
	text-transform:uppercase;
	margin-top:10px;
}
.basic-link.backward .fa-angle-right{
	display:none;
}
.grid-filter{
	margin:0 0 50px 0;
}
.grid-filter-lable{
	display:inline-block;
	margin-right:20px;
	text-transform:uppercase
}
.grid-item{
	margin-bottom:30px;
}
.form-control{
	margin-bottom:20px;
}
.sort-source{
	list-style-type:none;
	display:inline-block;
	margin:0;
}
.sort-source li{
	display:inline-block;
}
.sort-source li:after{
	content:"/";
	color:#ccc;
}
.sort-source.nav-pills li:after{
	content:"";
}
.sort-source li:last-child:after{
	content:"";
}
.sort-source li a{
	color:#999;
	margin:0 10px;
}
.sort-source.nav-pills li a{
	margin:0;
}
.sort-source.nav-pills li.active a{
	color:#fff;
}
.sort-source li:first-child a{
	margin-left:0;
}
.sort-source li a:hover{
	color:#222;
}
.sort-destination{
	margin:0;
	list-style-type:none;
}
.selectpicker{
	font-weight:400;
	padding-top:4px;
	padding-bottom:5px;
}
.selectpicker.btn-default{
	background:#fff;
	padding-left:10px;
	text-transform:none;
	font-size:14px;
	color:#555;
	letter-spacing:0;
}
.input-lg .selectpicker{
	padding-top:12px;
	padding-bottom:11px;
}
.bootstrap-select.form-control{
	margin-bottom:20px!important;
}
.action-icons{
	list-style-type:none;
	margin:5px 0 0;
}
.icon-box-inline{
	display:block;
}
.icon-box-inline span{
	font-size:36px;
	float:left;
	margin-right:20px;
	width:70px;
	height:70px;
	border:1px solid;
	text-align:center;
	border-radius:100%;
}
.icon-box-inline span i:before{
	line-height:70px!important;
}
.icon-box-inline strong{
	display:block;
	font-weight:700;
	font-size:16px;
	padding-left:90px;
	margin-top:12px;
}
.icon-box-inline p{
	padding-left:90px;
}
.dgray-bg .icon-box-inline p{
	color:rgba(255,255,255,.4);
}
.carousel-wrapper{
	overflow:hidden;
	width:100%;
	background:url(../images/loader.gif) no-repeat center center;
	min-height:100px;
}
.btn-rounded{
	border-radius:30px;
}
.light-title{
	color:#fff;
}

.textbox {
    border: 1px solid transparent;
    border-color: #5A5A5A;
    background-color: transparent;
    color: #5A5A5A;

    border-radius :0px;
}
.amount {
    width: 200px;
    text-align: center;
    padding: 17px 10px 17px 10px;
    margin-top: 20px;
    font-size: 20pt;
}


.buy-button {
    border: none;
    background-color: #93B059;
    color: #fff;
    padding: 17px 28px;
    margin-top: 20px;
    text-align: center;
    width: 200px;
    text-transform: uppercase;
    border-radius: 0px;
}
    .buy-button.focus, .buy-button:focus, .buy-button:hover {
        color: #fff;
    }

.add-button {
    border: 1px solid #999;
    background-color: transparent;
    color: #999;
    padding: 10px 28px;
    margin-top: 20px;
    text-align: center;
    width: 200px;
}

    .add-button.focus, .add-button:focus, .add-button:hover {
        color: #999;
    }
/* ==================================================
   6. Site Structure & Appearance
================================================== */
html, body{
	height:100%;
	position:relative;
}
body {
    background-color: #fff;
    color: #999;
    font-size: 14px;
    font-weight: 400;
    font-family: 'Agenda Light', sans-serif;
    line-height: 10pt;
    background-attachment: fixed;
    overflow-x: hidden;
}
body.boxed{
	background-color:#666;
}
body.boxed .body{
	position:relative;
	margin:0 auto;
	overflow:hidden;
	width:100%;
	max-width:1170px;
	height:auto;
	background-color:#ffffff;
	-webkit-box-shadow:0 0 2px rgba(0,0,0,.2);
	-moz-box-shadow:0 0 2px rgba(0,0,0,.2);
	box-shadow:0 0 2px rgba(0,0,0,.2);
}
@media (min-width: 1200px) {
	body.boxed .body{
		width:1170px;
	}
	body.boxed .is-sticky .header{
		width:1170px;
	}
}
@media (min-width: 992px) and (max-width: 1199px) {
	body.boxed .body{
		width:970px;
	}
	body.boxed .is-sticky .header{
		width:970px;
	}
}
/* ==================================================
   6.4. SHORTCODES
================================================== */
.fact-ico{
	display:inline-block;
	width:100px;
	height:100px;
	color:#999999;
	line-height:125px;
	margin:10px 0;
	margin-bottom:20px;
	border-radius:4px;
	color:#fff;
}
.fact{
	display:inline-block;
	color:#999999;
	font-size:15px;
	font-style:italic
}
.counters .timer{
	display:inline-block;
	color:#333333;
	font-weight:700;
	font-size:38px;
}
.parallax .counters .timer{
	color:#ffffff;
}

.icon-box.ibox-plain.ibox-small{
	padding-left:26px
}
.icon-box .ibox-icon{
	display:block;
	position:absolute;
	width:64px;
	height:64px;
	top:0;
	left:0
}
.icon-box .ibox-icon a,.icon-box .ibox-icon i,.icon-box .ibox-icon img{
	display:block;
	position:relative;
	width:100%;
	height:100%;
	color:#fff
}
.icon-box .ibox-icon i,.icon-box .ibox-icon img{
	border-radius:50%;
}
.icon-box .ibox-icon i{
	font-style:normal;
	font-size:28px;
	text-align:center;
	line-height:64px
}
.icon-box h3{
	font-size:16px;
	font-weight:700;
	text-transform:uppercase;
	letter-spacing:1px;
	margin-bottom:0;
	color:#252525;
}
.icon-box p{
	margin:8px 0 0;
	color:#999
}
.icon-box .before-heading{
	font-size:14px
}
.icon-box.ibox-large{
	padding:0 0 0 115px
}
.icon-box.ibox-large .ibox-icon {
	width:96px;
	height:96px;
}
.icon-box.ibox-outline .ibox-icon {
	border:1px solid;
	border-radius:50%;
	padding:3px;
}
.icon-box.ibox-outline .ibox-icon i {
	line-height:56px;
}
.icon-box.ibox-outline.ibox-large .ibox-icon {
	padding:4px;
}
.icon-box.ibox-rounded .ibox-icon,.icon-box.ibox-rounded .ibox-icon i,.icon-box.ibox-rounded .ibox-icon img {
	border-radius:3px!important;
}
.icon-box.ibox-rounded.ibox-large .ibox-icon,.icon-box.ibox-rounded.ibox-large .ibox-icon i,.icon-box.ibox-rounded.ibox-large .ibox-icon img {
	border-radius:4px!important;
}
.icon-box.ibox-light .ibox-icon i,.icon-box.ibox-light .ibox-icon img {
	border:1px solid #eee;
	background-color:#f9f9f9;
	color:#444;
}
.icon-box.ibox-light .ibox-icon i {
	line-height:62px;
}
.icon-box.ibox-light.ibox-large .ibox-icon i {
	line-height:96px;
}
.icon-box.ibox-light.ibox-outline.ibox-large .ibox-icon i {
	line-height:84px;
}
.icon-box.ibox-dark.ibox-outline .ibox-icon {
	border-color:#444;
}
.icon-box.ibox-dark .ibox-icon i,.icon-box.ibox-dark .ibox-icon img {
	background-color:#252525;
}
.icon-box.ibox-border .ibox-icon {
	border:1px solid;
	border-radius:50%;
	padding:0;
}
.icon-box.ibox-border .ibox-icon i,.icon-box.ibox-border .ibox-icon img {
	border:none;
	background-color:transparent!important;
}
.icon-box.ibox-border.ibox-dark .ibox-icon {
	border-color:#252525;
}
.icon-box.ibox-plain .ibox-icon {
	border:none!important;
	height:auto!important;
}
.icon-box.ibox-plain .ibox-icon i,.icon-box.ibox-plain .ibox-icon img {
	border:none!important;
	background-color:transparent!important;
	border-radius:0;
}
.icon-box.ibox-plain .ibox-icon i {
	font-size:48px;
	line-height:1!important;
}
.icon-box.ibox-plain.ibox-image .ibox-icon {
	width:auto;
}
.icon-box.ibox-plain.ibox-image .ibox-icon img {
	width:auto;
	display:inline-block;
}
.icon-box.ibox-plain.ibox-small {
	padding-left:42px;
}
.icon-box.ibox-plain.ibox-small .ibox-icon {
	width:28px;
}
.icon-box.ibox-plain.ibox-small h3 {
	font-size:15px;
	line-height:26px;
	margin-bottom:10px;
}
.icon-box.ibox-plain.ibox-small p {
	margin-left:-42px;
}
.icon-box.ibox-plain.ibox-small .ibox-icon i {
	font-size:28px;
}
.icon-box.ibox-plain.ibox-small .ibox-icon img {
	height:28px;
}
.icon-box.ibox-plain.ibox-large .ibox-icon i {
	font-size:72px;
}
.icon-box.ibox-center {
	text-align:center;
	padding:0;
}
.icon-box.ibox-center .ibox-icon {
	position:relative;
	width:96px;
	height:96px;
	margin:0 auto 30px;
}
.icon-box.ibox-center.ibox-outline .ibox-icon i {
	line-height:88px;
}
.icon-box.ibox-center p {
	margin-top:15px;
}
.icon-box.ibox-center.ibox-large .ibox-icon {
	width:128px;
	height:128px;
}
.icon-box.ibox-center.ibox-large .ibox-icon i {
	font-size:70px;
	line-height:128px;
}
.icon-box.ibox-center.ibox-large.ibox-outline .ibox-icon i {
	line-height:118px;
}
.icon-box.ibox-center.ibox-light .ibox-icon i {
	line-height:94px;
}
.icon-box.ibox-center.ibox-light.ibox-outline.ibox-large .ibox-icon i {
	line-height:114px;
}
.icon-box.ibox-center.ibox-large.ibox-border .ibox-icon i {
	line-height:126px!important;
}
.icon-box.ibox-center.ibox-plain .ibox-icon i {
	font-size:84px;
}
.icon-box.ibox-center.ibox-large.ibox-plain .ibox-icon i {
	font-size:112px;
}
.icon-box.ibox-center.ibox-large.ibox-plain .ibox-icon img {
	height:128px;
}
.icon-box.ibox-center.ibox-small .ibox-icon {
	width:64px;
	height:64px;
}
.icon-box.ibox-center.ibox-small .ibox-icon i {
	font-size:28px;
	line-height:64px;
}
.icon-box.ibox-center.ibox-small.ibox-outline .ibox-icon i {
	line-height:58px;
}
.icon-box.ibox-center.ibox-small.ibox-plain .ibox-icon i {
	font-size:56px;
}
.icon-box.ibox-center.ibox-small p {
	font-size:14px;
	margin-top:10px;
}
.icon-box.ibox-center.ibox-plain.ibox-small p {
	margin-left:0;
}
.icon-box.ibox-right {
	text-align:right;
	padding:0 80px 0 0;
}
.icon-box.ibox-right.ibox-large {
	padding-right:115px;
}
.icon-box.ibox-right .ibox-icon {
	left:auto;
	right:0;
}
.icon-box.ibox-right.ibox-plain.ibox-small {
	padding:0 42px 0 0;
}
.icon-box.ibox-right.ibox-plain.ibox-small p {
	margin:0 -42px 0 0;
}
.icon-box h3+.ibox-icon {
	margin-top:20px!important;
}
.icon-box h3 span.subtitle {
	display:block;
	margin-top:5px;
	color:#444;
	font-weight:300;
	text-transform:none;
}
.icon-box.ibox-center:not(.ibox-bg) h3:after {
	content:'';
	display:block;
	width:30px;
	border-top:2px solid #252525;
	-webkit-transition:width .3s ease;
	-o-transition:width .3s ease;
	transition:width .3s ease;
	margin:20px auto;
}
.icon-box.ibox-center:not(.ibox-bg):hover h3:after {
	width:50px;
}
.icon-box.ibox-center.noborder:not(.ibox-bg) h3:after,.icon-box.ibox-center.nobottomborder:not(.ibox-bg) h3:after {
	display:none;
}
.icon-box.ibox-center.ibox-italic p {
	font-style:italic;
}
.icon-box.ibox-bg.ibox-center {
	margin-top:68px;
	background-color:#fff;
	border:1px solid #eee;
	border-radius:5px;
	padding:68px 30px 30px;
}
.icon-box.ibox-bg.ibox-center:first-child {
	margin-top:48px;
}
.icon-box.ibox-bg.ibox-center.ibox-large {
	margin-top:84px;
	padding-top:84px;
}
.icon-box.ibox-bg.ibox-center.ibox-large:first-child {
	margin-top:64px;
}
.icon-box.ibox-bg.ibox-center .ibox-icon {
	position:absolute;
	top:-48px;
	left:50%;
	margin:0 0 0 -48px;
}
.icon-box.ibox-bg.ibox-center.ibox-large .ibox-icon {
	top:-64px;
	left:50%;
	margin-left:-64px;
}
.icon-box.ibox-bg.ibox-center.ibox-border .ibox-icon,.icon-box.ibox-bg.ibox-center.ibox-outline .ibox-icon,.icon-box.ibox-bg.ibox-center.ibox-plain .ibox-icon {
	background-color:#FFF;
}
.icon-box .ibox-icon i {
	z-index:1;
	-webkit-transition:background-color .3s,color .3s;
	-o-transition:background-color .3s,color .3s;
	transition:background-color .3s,color .3s;
}
.icon-box .ibox-icon i:after {
	pointer-events:none;
	position:absolute;
	width:100%;
	height:100%;
	border-radius:50%;
	content:'';
	-webkit-box-sizing:content-box;
	-moz-box-sizing:content-box;
	box-sizing:content-box;
	top:-3px;
	left:-3px;
	box-shadow:0 0 0 2px #252525;
	-webkit-transition:0 .3s,opacity .3s;
	-webkit-transform:scale(.8);
	-moz-transition:0 .3s,opacity .3s;
	-moz-transform:scale(.8);
	-ms-transform:scale(.8);
	transition:transform .3s,opacity .3s;
	transform:scale(.8);
	opacity:0;
	padding:3px;
}
.icon-box .ibox-icon i:hover,.icon-box:hover .ibox-icon i {
	background-color:#252525;
	color:#fff;
}
.icon-box.ibox-outline:hover .ibox-icon{
	border-color:#252525;
}
.icon-box {
	position:relative;
	margin-top:20px;
	padding:0 0 0 80px;
}
.icon-box:first-child {
	margin-top:0;
}
.icon-box .ibox-icon {
	display:block;
	position:absolute;
	width:64px;
	height:64px;
	top:0;
	left:0;
}
.icon-box .ibox-icon a,.icon-box .ibox-icon i,.icon-box .ibox-icon img {
	display:block;
	position:relative;
	width:100%;
	height:100%;
	color:#fff;
}
.icon-box .ibox-icon i,.icon-box .ibox-icon img {
	border-radius:50%;
}
.icon-box .ibox-icon i {
	font-style:normal;
	font-size:28px;
	text-align:center;
	line-height:64px;
}
.icon-box h3 {
	font-size:16px;
	font-weight:700;
	text-transform:uppercase;
	letter-spacing:1px;
	margin-bottom:0;
	color:#252525;
}
.icon-box p {
	color:#999;
	margin:8px 0 0;
}
.icon-box .before-heading {
	font-size:14px;
}
.icon-box.ibox-large {
	padding:0 0 0 115px;
}
.icon-box.ibox-large .ibox-icon i,.icon-box.ibox-center .ibox-icon i {
	font-size:42px;
	line-height:96px;
}
.icon-box.ibox-outline.ibox-large .ibox-icon i,.icon-box.ibox-center.ibox-light.ibox-outline .ibox-icon i {
	line-height:86px;
}
.icon-box.ibox-light.ibox-outline .ibox-icon,.icon-box.ibox-border.ibox-light .ibox-icon {
	border-color:#eee;
}
.icon-box.ibox-light.ibox-outline .ibox-icon i,.icon-box.ibox-center.ibox-light.ibox-outline.ibox-small .ibox-icon i {
	line-height:54px;
}
.icon-box.ibox-border .ibox-icon i,.icon-box.ibox-center.ibox-small.ibox-border .ibox-icon i {
	line-height:62px!important;
}
.icon-box.ibox-border.ibox-large .ibox-icon i,.icon-box.ibox-center.ibox-border .ibox-icon i {
	line-height:94px!important;
}
.icon-box.ibox-border.ibox-light .ibox-icon i,.icon-box.ibox-border.ibox-light .ibox-icon img,.icon-box.ibox-plain.ibox-light .ibox-icon i,.icon-box.ibox-plain.ibox-light .ibox-icon img {
	color:#888;
}
.icon-box.ibox-border.ibox-dark .ibox-icon i,.icon-box.ibox-border.ibox-dark .ibox-icon img,.icon-box.ibox-plain.ibox-dark .ibox-icon i,.icon-box.ibox-plain.ibox-dark .ibox-icon img {
	color:#444;
}
.icon-box.ibox-plain .ibox-icon img,.icon-box.ibox-center.ibox-small.ibox-plain .ibox-icon img {
	height:64px;
}
.icon-box.ibox-plain.ibox-large .ibox-icon img,.icon-box.ibox-center.ibox-plain .ibox-icon img {
	height:96px;
}
.ibox-rounded .ibox-icon i:after,.ibox-border.ibox-rounded .ibox-icon i:after {
	border-radius:3px;
}


/* ==================================================
   6.5. Overriding Classes
================================================== */
.parallax{
	background-attachment: fixed!important;
	background-position:center center;
	-webkit-background-size:cover;
	-moz-background-size:cover;
	background-size:cover;
	background-repeat:no-repeat;
	background-color:#f8f8f8;
}
.touch .parallax, .page-header.parallax{
	background-attachment:scroll!important;
}

/* ==================================================
 Site Styles Below
================================================== */
/* header */
.navbar-brand{
	display:none;
}
.large-header.header {
    background: #F7F7F7;
}
.header .container{
	position:relative;
}
.small-header.header {
    background: #F7F7F7;
}
.is-sticky .header{
	width:100%;
	position:fixed;
	top:0;
	z-index:99;
}
.contact-info{
	padding-top:85px;
}
    .contact-info p, .contact-info a, .contact-info span {
        color: #4C4D4D;
        font-size: 14pt;
        font-weight: 500;
    }
.contact-info a:hover{
	color:#CCC;
}
    .contact-info img {
        padding-bottom:4px;
    }

    .contact-info .socials img {
        padding-right: 5px;
        padding-bottom: 8px;
    }
.header .social-widget {
    padding-top: 90px;
    float: right;
}
/* logo */

.large-header .logo img {
    height: 113px;
}
.small-header .logo img {
    height: 75px;
}
.logo{
	text-align:center;
	margin:15px auto;
}

.small-header .contact-info{
	padding-top:65px;
}
.small-header .social-widget{
	padding-top:55px;
}
.header .dropdown-menu{
	margin-left:-29px;
	margin-top:-1px;
	border:0;
}
.header .dropdown-menu > li > a{
	padding:10px 20px;
	font-size:13px;
}
.dropdown-menu > li > a:hover,
.dropdown-menu > li > a:focus {
	color:#fff
}
.dropdown-menu > li > a:hover i{
	color:#fff;
}
/* showcase-slider */
.showcase-slider, .showcase-inner{
	position:relative;
}
.showcase-inner > .bg-holder{
	background-position:center center;
	background-size:cover;
	-webkit-background-size:cover;
	-o-background-size:cover;
	-ms-background-size:cover;
	height:400px;
}
.showcase-inner .caption h1, .showcase-inner .caption h2, .showcase-inner .caption h3{
	margin-bottom:0;
}
.slideshow-shape{
	background:url('../images/bg_slideshow_shape.png') repeat-x center top;
	height:94px;
	position:absolute;
	width:100%;
	left:0;
	bottom:0;
	z-index:9;
}
.showcase-inner .caption{
	position:absolute;
}
/* title-text */
.title-text{
	text-align:center;
	margin-bottom:40px;
}
.title-text h2, .title-text h4, .title-text h2 a, .title-text h4 a{
	font-size:26px;
	font-weight:600 !important;
	/*text-transform:uppercase;*/
	line-height:70px;
	margin-bottom:30px;
	position:relative;
}

    .title-text h1 {
        font-family: 'Agenda Light', sans-serif;
        font-size: 35pt;
        color: #5A5A5A !important;
        padding: 0px 20px;
    }


.title-text h1:after, .title-text h4:after {
    content: '';
    height: 2px;
    width: 60px;
    margin: 0 auto;
    display: block;
    margin-top: 10px;
}
.title-text h2:after, .title-text h4:after{
	content:'';
	height:2px;
	width:60px;
	margin:0 auto;
	display:block;
	margin-top:10px;
}
    .title-text p {
        font-family: 'Agenda Light', sans-serif;
        font-size: 18px;
        line-height: 23pt;
        color: #5A5A5A !important;
    }

.title-text h1:after .dark-bg .title-text h1 {
    color: red;
}
.dark-bg .title-text p{
	color:#fff;
}

/*Whats happening this week*/
.item-container {
    background-color: #fff;
    padding: 40px 30px;
    margin-bottom: 20px;
}
.whatshappening-text {
    line-height: 25px;
    color: #96959D;
    padding: 40px 30px;
    min-height: 420px;
}
.whatshappening-text, .whatshappening-image, .whatshappening-image-inner {
    width: 50%;
    float: left;
}

.level-two {
    width: 100% !important;
    float: left !important;
}
.whatshappening-text.level-two {
    height: 500px;
}
.whatshappening-text.level-two h2 {
    padding-top: 25px;
}

.whatshappening-image-inner {
    border: 3px solid rgba(0,0,0,0.10);
}

    .whatshappening-image img, .whatshappening-image-inner img {
        width: 100%;
        height: auto;
    }

.whatshappening-text-inner {
    padding: 10px 25px 10px 50px;
}
.whatshappening-text h3:after {
    background: #93B059;
    content: '';
    height: 2px;
    width: 60px;
    margin:0;
    display: block;
    margin-top: 10px;
}

/* general-wrapper*/

.general-wrapper {
    padding: 40px 0 60px 0;
}

    .general-wrapper .title-text {
        text-align: left;
    }

        .general-wrapper .title-text h1:after {
            background: #93B059;
            margin: 0px;

        }

.home .general-wrapper {
    padding-bottom: 100px;
}

/* welcome-message-wrapper */
.welcome-message-wrapper {
    padding: 40px 0 60px 0;
    margin-bottom: 50px;
}
    .welcome-message-wrapper .title-text {
        text-align:left;
    }
        .welcome-message-wrapper .title-text h1:after {
            background: #93B059;
            margin: 0px;
        }

.home .welcome-message-wrapper{
	padding-bottom:100px;
}
.welcome-message{
	background: rgba(243, 241, 242, 0.4);
	padding:10px;
}
.welcome-text {
    background: rgba(255, 255, 255, 0.7);
    line-height: 25px;
    color: #5A5A5A;
    padding: 40px 30px;
    min-height: 420px;
}
.welcome-text, .welcome-image, .welcome-image-inner{
	width:50%;
	float:left;
}

.welcome-image-inner{
	/*border:3px solid rgba(0,0,0,0.10);*/
}
.welcome-image img,.welcome-image-inner img{
	width:100%;
	height:auto;
}
.welcome-text-inner{
	padding:10px 25px 10px 15px;	
}
.contact-text h3:after {
    content: '';
    height: 2px;
    width: 60px;
    margin: 0;
    display: block;
    margin-top: 10px;
    background: #93B059;
   
}
.contact-text span {
    line-height:2;
}
.contact-text p {
    line-height: 1.5;
    font-size:14px;
}

.contact-text h4 {
    margin: 0;
}
/* services-wrapper */
.services-wrapper {
    padding: 70px 0 110px 0;
    position: relative;
}

.services-wrapper .title-text, .team-wrapper .title-text{
	margin-bottom:80px;
}
.services-wrapper .title-text h1:after, .gallery-wrapper .title-text h1:after, .footer-top h5:after, .services-wrapper .title-text h2 a:after, .team-wrapper .title-text h2 a:after, .footer-top h5 a:after {
    background: #93B059;
}

.services-wrapper .title-text p, .team-wrapper .title-text p{
	color:#FFF;
	font-weight:300;
}
.services-wrapper .col-lg-4, .col-md-4 {
    padding-bottom : 25px;
}
    .services-wrapper .sub-title-text {
        font-family: 'Agenda Light', sans-serif;
        font-weight: normal;
        font-size: 31pt;
        color: #5A5A5A !important;
        padding: 15px 0px 25px 0px;
    }

/* services-home-wrapper */
.services-home-wrapper {
    padding: 70px 0 110px 0;
    position: relative;
}

    .services-home-wrapper:before {
        content: '';
        background: url('../images/line_pattern_white.png') repeat-x;
        width: 100%;
        height: 9px;
        position: absolute;
        left: 0;
        top: 0;
    }

    .services-home-wrapper:after {
        content: '';
        background: url('../images/line_pattern_white.png') repeat-x;
        width: 100%;
        height: 9px;
        position: absolute;
        left: 0;
        bottom: 0;
    }

    .services-home-wrapper .title-text, .team-wrapper .title-text {
        margin-bottom: 80px;
    }

        .services-home-wrapper .title-text h1:after, .gallery-wrapper .title-text h1:after, .footer-top h5:after, .services-home-wrapper .title-text h2 a:after, .team-wrapper .title-text h2 a:after, .footer-top h5 a:after {
            background: #93B059;
        }

        .services-home-wrapper .title-text p, .team-wrapper .title-text p {
            color: #FFF;
            font-weight: 300;
        }

    .services-home-wrapper .col-lg-4, .col-md-4 {
        padding-bottom: 25px;
    }

    .services-home-wrapper .sub-title-text {
        font-family: 'Agenda Light', sans-serif;
        font-weight: normal;
        font-size: 31pt;
        color: #5A5A5A !important;
        padding: 15px 0px 25px 0px;
    }
    /* intro-wrapper */
    .intro-wrapper {
        padding: 50px 0 10px 0;
        position: relative;
    }
.intro-wrapper:before{
	content:'';
	background:url('../images/line_pattern_white.png') repeat-x;
	width:100%;
	height:9px;
	position:absolute;
	left:0;
	top:0;
}
.intro-wrapper .title-text, .team-wrapper .title-text{
	margin-bottom:80px;
}
.intro-wrapper .title-text h1:after, .team-wrapper .title-text h2:after, .footer-top h5:after, .services-wrapper .title-text h2 a:after, .team-wrapper .title-text h2 a:after, .footer-top h5 a:after {
    background: #68321E;
}
.intro-wrapper .title-text p, .team-wrapper .title-text p{
	color:#FFF;
	font-weight:300;
}
.packages-wrapper .title-text h1:after {
    background: #93B059;
}

.packages-wrapper:after {
    content: '';
    background: url('../images/line_pattern_white.png') repeat-x;
    width: 100%;
    height: 9px;
    position: absolute;
    left: 0;
    bottom: 0;
}

.product-wrapper .title-text h1:after {
    background: #F9ACCF;
}

.product-wrapper:after {
    content: '';
    width: 100%;
    height: 9px;
    position: absolute;
    left: 0;
    bottom: 0;
}
.product-wrapper h3 {
    font-size: 16pt;
    font-weight: bold;
    padding: 10px 0px;
}
    .product-wrapper h3:after {
        content: '';
        height: 2px;
        width: 60px;
        margin: 0;
        display: block;
        margin-top: 10px;
        background: #93B059;
    }
.product-detail {
    width: 325px;
    margin: auto;
}
/* services-box */
.side-nav {
    width: 360px;
    padding-bottom: 5px;
}
#services-block{
	background-position:center 100px;
}
.services-box {
    background: #FFF;
    border-bottom: 10px solid transparent;
    border-color: #4C4D4D !important;
    text-align: center;
    min-height: 350px;
    position: relative;
    margin-bottom: 30px;
    cursor:pointer;
}
    .services-box:hover .services-icons span {
        background: url('../images/assets/service_green.png') no-repeat;
    }
    .services-box:hover {
        border-bottom: #93B059 10px solid;
        border-color: #93B059 !important;
    }
.services-box:hover p{
	color:#333;
}
.services-box h3 {
    font-weight: 400;
    text-transform: uppercase;
    font-size: 16pt;
    padding: 40px 0 0 0;
}
.services-box .imgb{
	position:relative;
	margin-top:30px;
}
.services-box .imgb a>img{
	max-height: 240px;
	width: 360px;
}
/*.services-box .imgb:before{
	content:'';
	background:url('../images/line_pattern_grey.png') repeat-x;
	width:100%;
	height:9px;
	position:absolute;
	left:0;
	top:-9px;
}
.services-box .imgb:after{
	content:'';
	background:url('../images/line_pattern_grey.png') repeat-x;
	width:100%;
	height:9px;
	position:absolute;
	left:0;
	bottom:-9px;
}*/
.services-icons{
	margin-left:-28px;
	position:absolute;
	left:50%;
	top:-28px;
}

    .services-icons span {
        background-color:transparent !important;
        background: url('../images/assets/service_grey.png') no-repeat;
        width: 60px;
        height: 56px;
        display: block;
        text-align: center;
        vertical-align: middle;
    }

    .services-icons img {
        padding-top: 8px;
        padding-right: 8px;
    }
.services-box p{
    font-size: 12pt;
	line-height:25px;
	color:#999;
	padding:0 30px;
}

.treatments {
    display: flex;
    flex-wrap: wrap;
}
    .treatments > li > a, .treatments > li > a:focus, .treatments > li > a:hover {
        background-color: transparent !important;
    }
    .treatments > li.active > a, .treatments > li.active > a:focus, .treatments > li.active > a:hover {
        background-color: transparent !important;
    }

    .treatments li.active span {
        background: url('../images/assets/service_green.png') no-repeat !important;
    }

.general-wrapper .tab-content {
    border: 0px;
    padding: 0px;
}
.service-item {
    padding: 45px 0px;
    background: #fff;
    border: 1px solid #ddd;
    border-left: 0px;
    border-top: 0px;
}


.voucher-icons {
    position: relative;
    cursor: pointer;
    flex: 1 0 100px;
    box-sizing: border-box;
    padding: 10px 0px;
}
    .voucher-icons span {
        background-color: transparent !important;
        background: url('../images/assets/service_grey.png') no-repeat;
        width: 60px;
        height: 56px;
        display: block;
        text-align:center;
        vertical-align: middle;
    }

    .voucher-icons img {
        padding-top: 8px;
        padding-right: 8px;
    }
    .voucher-icons:hover span {
        background: url('../images/assets/service_green.png') no-repeat !important;
    }
.voucher-icon-text {
    padding-bottom:10px;
    width: 75px;
    line-height: 1.5;
    text-align: center;
    text-transform: uppercase;
}
.voucher-service-text {
    text-transform:uppercase;
}
.voucher-service-text h3:after {
    content: '';
    height: 2px;
    width: 60px;
    margin: 0;
    display: block;
    margin-top: 10px;
    background: #93B059;
}
.voucher-sep {
    /*margin: 30px 25px 40px 0px;*/
    border-top: 0.5px solid #dbdbdb;
    height: 1px;
}
.voucher-info-sub {
    text-align: left;
    padding-bottom: 10px;
    padding-top:20px;
    font-size:14pt;
}
.voucher-type {
    color: #93B059;
    margin-left: 15px;
}
.voucher-error {
    display: block;
    margin-top: 18px;
}
.text-error {
    color: #c21e1b;
    text-align: left;
    padding-bottom: 5px;
}

/* SPINNER AND OVERLAY*/
#overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    text-align: center;
    background-color: #000;
    filter: alpha(opacity=50);
    -moz-opacity: 0.5;
    opacity: 0.25;
    z-index: 100;
}

.gallery img {
    max-width: 375px;
}
.clear {
    clear: both;
    float: none;
    width: 100%;
    padding-bottom: 3px;
}
/* LOADER 2 */
/*.loader {
    position: relative;
    top: 50%;
    
}
    .loader span {
        display: inline-block;
        width: 20px;
        height: 20px;
        border-radius: 100%;
        background-color: #93B059;
        margin: 35px 5px;
        z-index:999;
    }

    .loader span:nth-child(1) {
        animation: bounce 1s ease-in-out infinite;
    }

    .loader span:nth-child(2) {
        animation: bounce 1s ease-in-out 0.33s infinite;
    }

.loader span:nth-child(3) {
    animation: bounce 1s ease-in-out 0.66s infinite;
}

.loader-text {
    color:g;
    font-size:15pt;
}
@keyframes bounce {
    0%, 75%, 100% {
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        -o-transform: translateY(0);
        transform: translateY(0);
    }

    25% {
        -webkit-transform: translateY(-20px);
        -ms-transform: translateY(-20px);
        -o-transform: translateY(-20px);
        transform: translateY(-20px);
    }
}*/
.cart-box {
    width: 100%;
    border: 2px #999 solid;
    margin-top: 45px;
}
.cart-box-header {
    padding: 20px 10px;
}
    .cart-box-header input {
        margin: 1px 10px;
    }
.cart-checkout-button {
    width: 73%;
    display: inline-block;
}

.cart-checkout-icon {
    width: 24%;
    display: inline-block;
    text-align: right;
    vertical-align: top;
}
    .cart-checkout-icon span {
        background-color: transparent !important;
        background: url('../images/assets/checkout_icon.png') no-repeat;
        width: 60px;
        height: 56px;
        display: inline-block;
        text-align: center;
        vertical-align: middle;
    }

.cart-item {
    border-top: 1px #999 solid;
    display: block;
    height: 90px;
    padding: 25px 20px;
    font-size: 14pt;
    text-transform: uppercase;
}
    .cart-item a, .cart-item span {
        font-size: 12pt;
        text-transform: initial;
        display: block;
        padding-top: 10px;
    }
    .cart-item a {
        padding-top: 2px;
    }
        .cart-item .subinfo {
            font-size: 10pt;
            padding: 8px 0px;
            text-transform: none;
            display: inline-block;
        }
    .cart-item .qty {
        font-size: 10pt;
        padding: 8px 0px;
        text-transform: none;
        display: inline-block;
        font-style: italic;
        padding-left: 10px;
    }

.cart-info {
    width: 73%;
    display:inline-block;
}
.cart-price {
    width: 25%;
    display: inline-block;
    text-align: right;
    vertical-align: top;
}
/* gallery-wrapper */
.gallery-wrapper {
    padding: 70px 0 110px 0;
}
.gallery-description{
	width:25%;
	text-align:center;
	float:left;
	min-height:258px;
	padding:40px 20px;
	box-sizing:border-box;
	-webkit-box-sizing:border-box;
	-o-box-sizing:border-box;
	-moz-box-sizing:border-box;
	-ms-box-sizing:border-box;
	position:relative;
}
.gallery-description:after{
	content:'';
	width: 0; 
	height: 0; 
	border-bottom: 20px solid #3e3a3d;
	border-top: 20px solid transparent; 
	border-left:150px solid transparent;
	position:absolute;
	top:-40px;
	left:0;
}

    .gallery-description h2 {
        font-family: 'Dancing Script', cursive;
        color: #fff;
        font-size: 28pt;
        margin-bottom: 5px;
    }
    .gallery-description p {
        padding: 0 15px;
        font-size: 12pt;
        line-height: 1.5;
        color: #5A5A5A;
    }
#owl-gallery, #hair-styling, #make-up{
	width:75%;
	float:left;
}
#owl-gallery.owl-carousel, #hair-styling.owl-carousel, #make-up.owl-carousel, .team-wrapper .owl-carousel{
	margin-left:0;
}
#owl-gallery.owl-theme .owl-controls, #hair-styling.owl-theme .owl-controls, #make-up.owl-theme .owl-controls, .team-wrapper .owl-theme .owl-controls{
	margin:0;
	text-align:left;
	padding-left:0;
	position:absolute;
}
#owl-gallery.owl-theme .owl-controls, #hair-styling.owl-theme .owl-controls, #make-up.owl-theme .owl-controls{
	left:-195px;	
	top:200px;	
}
#owl-gallery.owl-theme .owl-buttons div, #hair-styling.owl-theme .owl-buttons div, #make-up.owl-theme .owl-buttons div, .team-wrapper .owl-theme .owl-buttons div{
	border-radius:100%;
	-webkit-border-radius:100%;
	-moz-border-radius:100%;
	-o-border-radius:100%;
	-ms-border-radius:100%;
	color:#FFF;
}
#owl-gallery.owl-theme .owl-item, #hair-styling.owl-theme .owl-item, #make-up.owl-theme .owl-item{
	position:relative;
	overflow:hidden;
}
.gallery-overlay{
	background:rgba(0,0,0,0.70);
	width:70%;
	height:70%;
	text-align:center;
	position:absolute;
	left:50%;
	top:0;
        transform: translate(-50%,-50%);
	-webkit-transform: translate(-50%,-50%);
	-moz-transform: translate(-50%,-50%);
	-o-transform: translate(-50%,-50%);
	-ms-transform: translate(-50%,-50%);
	opacity:0;
}
.gallery-overlay a{
	color:#fff;
	text-transform:uppercase;
}
.gallery-zoom{
	display:table;
	height:100%;
	width:100%;
}
.gallery-zoom .gallery-zoom-inner{
	display:table-cell;
	vertical-align:middle;
}
.gallery-zoom .gallery-zoom-inner span{
	display:block;
	font-size:100px;
	line-height:60px;
	font-weight:100 !important;
	text-align:center;
}
#owl-gallery.owl-theme .owl-item:hover .gallery-overlay, #hair-styling.owl-theme .owl-item:hover .gallery-overlay, #make-up.owl-theme .owl-item:hover .gallery-overlay{
	opacity:1;
	top: 50%;
}
.gallery-separator{
	background:url('../images/line_pattern_grey.png') repeat-x left center;
	height:135px;
	display:block;
	margin:0 auto;
}
.gallery-single-page-details .title-text, .team-single-profile .title-text{
	text-align:left;
}
.gallery-single-page-details .title-text, .gallery-single-page-details .title-text h2{
	margin-bottom:25px;
}
.gallery-single-page-details .title-text h2:after, .team-single-profile .title-text h4:after{
	margin:0 auto 0 0;
}
.gallery-single-page-details .tags{
	margin-bottom:15px;
	text-transform:uppercase;
	color:#333;
}
.gallery-single-page-details p{
	line-height:20px;
	margin-bottom:0;	
}
/* lgray-bg */
.lgray-bg{
	background:#f7f7f7;
	padding:70px 0 100px 0;
	position:relative;
}
.lgray-bg:before{
	content:'';
	background:url('../images/line_pattern_grey.png') repeat-x;
	width:100%;
	height:9px;
	position:absolute;
	left:0;
	top:0px;
}
.lgray-bg:after{
	content:'';
	background:url('../images/line_pattern_grey.png') repeat-x;
	width:100%;
	height:9px;
	position:absolute;
	left:0;
	bottom:0px;
}
.package-box{
	background:#FFF;
	border-bottom:#999 4px solid;
	margin-bottom:30px;
	padding:20px;
    min-height:260px;
}
.package-box h3{
	text-transform:uppercase;
	font-size:24px;
	letter-spacing:2px;
	font-weight:800 !important;
	padding-right:15px;
	position:relative;
}
    .package-box h3 span {
        display: block;
        font-size: 13pt;
        font-weight: 300;
        letter-spacing: 0px;
        text-transform: none;
    }
.package-box p strong{
	font-style:italic;
}
.package-box .package-header {
    width:100%;
    display: inline-block;
}

.package-box .package-details
{
    position: relative;
    bottom: 20px;
}
    .package-box .package-details, .package-box .package-details > div {
    display: inline-block;
    float: right;
}
 .price-box {
    background: #CCC;
    width: 75px;
    height: 75px;
    line-height: 75px !important;
    border-radius: 100%;
    text-align: center;
    font-size: 24px !important;
    color: #FFF;
    font-weight: 600 !important;
    -webkit-border-radius: 100%;
    -o-border-radius: 100%;
    -moz-border-radius: 100%;
    -ms-border-radius: 100%;
    position: absolute;
    right:0px;
    top: 0px;
}

.package-box p {
    font-family: 'Agenda Light', sans-serif;
    font-weight: lighter !important;
    font-size: 11pt;
    color: #96959D !important;
    max-width: 400px;
    line-height: 2;
}

.package-box .read-more {
    font-weight: 500;
}
.package-plus {
    font-size: 16pt;
    padding: 14px 4px;
}

.package-icons {
    margin-left: 0px;
    position: relative;
    display: inline-block;
    top: 0;
    float: right;
}

    .package-icons span {
        border: 5px solid transparent;
        border-radius: 100%;
        -moz-border-radius: 100%;
        -webkit-border-radius: 100%;
        -o-border-radius: 100%;
        -ms-border-radius: 100%;
        width: 50px;
        height: 50px;
        display: inline-block;
        text-align: center;
        vertical-align: middle;
    }

    .package-icons img {
        padding-top: 4px;
    }
/* pink-package */
.pink-package {
    border-color: #F9ACCF;
}
    .pink-package h3, .pink-package p strong, .pink-package .read-more a, .pink-package .package-plus {
        color: #F9ACCF;
    }
    .pink-package .price-box, .pink-package .package-icons span {
        background: #F9ACCF;
    }
/* green-package */
.green-package {
    border-color: #93B059;
}

    .green-package h3, .green-package p strong, .green-package .read-more a, .green-package .package-plus {
        color: #93B059;
    }

    .green-package .price-box, .green-package .package-icons span {
        background: #93B059;
    }
/* orange-package */
.orange-package {
    border-color: #FAD186;
}
    .orange-package h3, .orange-package p strong, .orange-package .read-more a, .orange-package .package-plus {
        color: #FAD186;
    }
    .orange-package .price-box, .orange-package .package-icons span {
        background: #FAD186;
    }
/* brown-package */
.brown-package {
    border-color: #74564B;
}
    .brown-package h3, .brown-package p strong, .brown-package .read-more a, .brown-package .package-plus {
        color: #74564B;
    }
    .brown-package .price-box, .brown-package .package-icons span {
        background: #74564B;
    }
/* overview-wrapper  */
.overview-wrapper {
    padding: 70px 0 110px 0;
}

.overview-title h1 {
    font-family: 'Dancing Script', cursive;
    font-weight: normal;
    font-size: 33pt;
    color: #5A5A5A !important;
}
    .overview-title h1 > a {
        padding-right: 20px;
    }
    .overview-title h1:after {
        content: "─────────────";
        color: #9B9B9B;
        font-size: 28px
    }
    .overview-wrapper .panel-heading {
        cursor:pointer;
    }

    .overview-wrapper .panel-title a {
        color: #fff;
        font-weight: 500;
        text-transform: uppercase;
        text-decoration: none;
        position:relative;

    }
    .overview-wrapper .panel-body p {
        color: #9B9B9B;
        line-height: 19pt;
    }
    .overview-wrapper .panel-title span {
        position: relative;
        top:5px;
    }

    .overview-wrapper .panel-default > .panel-heading > h4 > span::after {
        content: "\f0da"; /* fa-caret-down */
        font-family: 'FontAwesome';
        color: #fff;
        font-size: 20pt;
    }

    .overview-wrapper .panel-default > .panel-heading[aria-expanded="true"] > h4 > span::after {
        content: "\f0d7"; /* fa-caret-up */
       
    }
    .overview-wrapper .panel-default > .panel-heading[aria-expanded="false"] {
        background: #96959D;
    }
    .overview-wrapper .panel-default > .panel-heading[aria-expanded="true"] {
        background: #93B059;
    }
    .overview-wrapper .panel-group {
        padding-top: 20px;
    }


.hselected {
    background: #93B059;
}
.hgeneral {
    background: #96959D;
}


/* newsletter-wrapper */
.newsletter-wrapper {
    background-color: #4C4D4D;
}
.newsletter-container{
	width:1170px;
	height:146px;
	margin:0 auto;
	display:block;
}
.newsletter-container h3{
	text-transform:uppercase;
	line-height:146px;
	padding-left:240px;
	color:#fff;
	font-size:24px;
	float:left;
	margin-bottom:0;
}
.newsletter-container h3 strong{
	font-weight:800 !important;
	color:#741b3c;
}
.newsletter-container .form-wrapper{
	padding-top:45px;
	float:right;
}
.newsletter-container .form-wrapper .button{
	width:50px;
	height:52px;
	text-align:center;
	line-height:52px;
	border:none;
	color:#FFF;
	font-size:55px;
	border-radius:4px;
	-webkit-border-radius:4px;
	-moz-border-radius:4px;
	-o-border-radius:4px;
	float:left;
}
    .newsletter-container .form-wrapper input[type="text"] {
        width: 320px;
        height: 52px;
        border-radius: 4px;
        -webkit-border-radius: 4px;
        -moz-border-radius: 4px;
        -o-border-radius: 4px;
        -webkit-box-shadow: inset 1px 1px 1px 0px rgba(0,0,0,0.10);
        -moz-box-shadow: inset 1px 1px 1px 0px rgba(0,0,0,0.10);
        box-shadow: inset 1px 1px 1px 0px rgba(0,0,0,0.10);
        padding: 0 10px;
        color: #333333;
        margin-right: 5px;
        float: left;
    }
/* testimonials-carousel-wrapper */
.testimonials-carousel-wrapper{
	text-align:center;
	padding:70px 0 80px;
}
.testimonials-carousel-wrapper blockquote, .full-testimonial blockquote{
	line-height:22px;
	border-left:none;
	padding:0 15%;
	margin:0 0 30px 0;
}
.testimonials-carousel-wrapper blockquote q, .full-testimonial blockquote q{
	font-size:16px;	
	display:block;
	color:#333;
	font-style:italic;
	font-weight:400 !important;

}
.testimonials-carousel-wrapper blockquote q:before, .testimonials-carousel-wrapper blockquote q:after, .full-testimonial blockquote q:before{
	content:'"';
	font-size:60px;
	font-weight:300 !important;
	vertical-align:middle;
	color:#CCC;
	display:inline-block;
}
.testimonials-carousel-wrapper blockquote q:before, .full-testimonial blockquote q:before{
	padding:10px 5px 0 0;
}
.testimonials-carousel-wrapper blockquote q:after{
	padding:10px 0 0 5px;
}
.author-info, .full-testimonial .author-info{
	width:300px;
	text-transform:uppercase;
	margin:0 auto;	
}
.author-image, .author-name, .author-company{
	display:block;
}
.author-image img{
	border-radius:100%;
	border:3px solid transparent;
}
.author-name{
	margin:10px auto 0 auto;
}
.author-company{
	font-size:13px;
	color:#999;
	text-transform:none;
}
/* full-testimonial */
.full-testimonial blockquote q{
	position:relative;
}
.full-testimonial blockquote q:before{
	position:absolute;
	left:-30px;
	top:-5px;
}
.full-testimonial blockquote footer:before{
	content:"";
	display:block;
	width:190px;
	height:1px;
	background:#CCC;
	margin-top:20px;
}
.full-testimonial .author-info{
	width:20%;
	float:left;
	margin:0 1% 0 0;
}
.full-testimonial blockquote{
	width:78%;
	float:left;
	padding:0;
	margin-bottom:80px;
}
.full-testimonial blockquote q{
	line-height:24px;
}
.full-testimonial .author-name, .full-testimonial .author-company{
	display:inline-block;
	text-transform:uppercase;
	font-weight:300 !important;
}
.full-testimonial .author-name:after{
	content:",";
	display:inline-block;
	font-size:20px;
}
.full-testimonial blockquote footer::before, .full-testimonial blockquote small::before, .full-testimonial blockquote cite::before{
	content:"";
}
.full-testimonial .author-company{
	font-size:13px;
	padding-left:5px;
}
#client-testimonials.owl-carousel{
	margin-left:0;
}
#client-testimonials.owl-theme .owl-controls{
	margin:0;
	text-align:center;
	padding-left:0;
}
#client-testimonials.owl-theme .owl-page span{
	background:rgba(255,255,255,1);
	border:1px solid transparent;
	margin:5px 4px;
}
/* team-wrapper */
.team-wrapper{
	padding:70px 0 110px 0;
	position:relative;
}
.team-wrapper:before{
	content:'';
	background:url('../images/line_pattern_white.png') repeat-x;
	width:100%;
	height:9px;
	position:absolute;
	left:0;
	top:0px;
}
.team-wrapper:after{
	content:'';
	background:url('../images/line_pattern_white.png') repeat-x;
	width:100%;
	height:9px;
	position:absolute;
	left:0;
	bottom:0px;
}
.team-wrapper figure{
	width:270px;
	height:341px;
	overflow:hidden;
	position:relative;
	text-align:center;
}
.team-wrapper .image-overlay{
	width:100%;
	height:100%;
	position:absolute;
	top:0;
	left:0;
	overflow:hidden;
	opacity:0;
	box-sizing:border-box;
	-moz-box-sizing:border-box;
	-webkit-box-sizing:border-box;
	-o-box-sizing:border-box;
	-ms-box-sizing:border-box;
	padding:60px 15px 20px 15px;
}
.team-wrapper figure img{
        display: block;
        position: relative;
}
.team-wrapper figure:hover img{
	transform:scale(1.5,1.5);
	-webkit-transform:scale(1.5,1.5);
	-moz-transform:scale(1.5,1.5);
	-o-transform:scale(1.5,1.5);
	-ms-transform:scale(1.5,1.5);
}
.team-wrapper figure:hover .image-overlay{
	top:0;
	left:0;
	opacity:1;
}
.team-wrapper .image-overlay h4 a, .team-wrapper .image-overlay h4, .team-wrapper .image-overlay .job-title{
	font-size:20px;
	color:#FFF;
	text-transform:uppercase;
	margin-bottom:0px;	
}
.team-wrapper .image-overlay .job-title, .team-single-profile .job-title{
	font-size:13px;
	text-align:center;
	line-height:40px;
	display:block;
	margin-bottom:15px;
}
.team-wrapper .image-overlay .job-title:after, .team-single-profile .job-title:after{
	content:'';
	height:1px;
	background:#FFF;
	width:60px;
	margin:0 auto;
	display:block;
}
.team-wrapper .image-overlay p{
	color:#fff;
	min-height:120px;
}
.team-wrapper .image-overlay .social-icons-colored li a{
	color:#fff;
	border:1px solid #fff;
}
.team-wrapper .image-overlay .social-icons-colored li a:hover{
	color:#fff;
}
.team-wrapper .owl-theme .owl-controls{
	width:100%;
	margin:0;
	text-align:left;
	padding-left:0;
	position:absolute;
	top:150px;
	z-index:9;
}
#our-team{
	position:relative;
}
.team-wrapper .owl-theme .owl-buttons{
}
.team-wrapper .owl-theme .owl-buttons div.owl-prev{
	left:-65px;
	position:absolute;
}
.team-wrapper .owl-theme .owl-buttons div.owl-next{
	right:-45px;
	position:absolute;
}

/* team inner */
.team-single-profile .imgb{
	border:5px solid rgba(0,0,0,0.10);
	width:100%;
	height:auto;
	margin-bottom:20px;
}
.team-single-profile .title-text h4, .team-single-profile .title-text h4 a{
	font-size:18px;
	line-height:20px;
	margin-bottom:0;
}
.team-single-profile .title-text h4:after{
	display:none;
}
.team-single-profile .job-title{
	text-align:left;
	line-height:35px;
}
.team-single-profile .job-title:after{
	margin:5px auto 0 0;
}
.team-single-profile .title-text{
	position:relative;
	padding-right:120px;
	margin-bottom:20px;
}
.team-single-profile .title-text .social-widget{
	position:absolute;
	right:0;
	top:0;
}
.team-single-profile .title-text .social-icons-colored li a, .contact-info-block .social-icons-colored li a{
	background:rgba(255,255,255,1);
	border:1px solid rgba(230,230,230,1);
	color:#111;
}
.team-single-profile .title-text .social-icons-colored li a:hover, .contact-info-block .social-icons-colored li a:hover{
	color:#fff;
}

/* main services */
.main-services ul, .main-services li{
	margin:0;
	padding:0;
	list-style-type:none;
}
.main-services li{
	background:rgba(255,255,255,0.90);
	border-bottom:#e3e1e2 1px solid;
	border-right:#e3e1e2 1px solid;
	padding:50px 0 30px 0;
}
.main-services li .id-holder{
	content:'';
	display:block;
	visibility:hidden;
	height:175px;
	margin-top:-175px;
}
.main-services li:first-child{

}
.main-services li h4, .main-services li h5{
	text-transform:uppercase;
	color:#111;
}
.main-services li h4{
	font-size:16px;
	font-weight:600 !important;
}
.main-services li h5{
	font-size:13px;
}
.main-services li h4:after, .main-services li h5:after{
	content:'';
	height:1px;
	width:50px;
	margin:10px auto 0 0;
	display:block;
}
.main-services li p{
	line-height:22px;
}
.main-services li .imgb{
	float:left;
	border:3px solid transparent;
	margin-right:30px;
	width:264px;
}
.main-services li .txtb{
	padding-right:30px;
	margin:0;
	float:none;
	overflow:hidden;
}
.main-services li:hover .imgb{
	border:3px solid #333;
}
/* side-nav */
.side-nav{
	position:relative;
	height:100%;
}
.side-nav #sidebar{
	display:block;
	width:100%;
	position:absolute;
	top:0;
	left:0;
}
.side-nav .nav{
	background:rgba(255,255,255,0.70);
	border-radius:4px;
	-moz-border-radius:4px;
	-webkit-border-radius:4px;
	-o-border-radius:4px;
	-ms-border-radius:4px;
}
.side-nav .nav li{
	display:block;
	text-transform:uppercase;	
}
.side-nav .nav li a img {
    margin-right:20px;
}
    .side-nav .nav li a {
        color: #000;
        background-repeat: no-repeat;
        background-position-y: 10px;
        background-position-x: 15px;
        line-height: 40px;
        border: 1px solid #e3e1e2;
        border-top: none;
        display: block;
        font-size: 13px;
        padding: 5px 15px 5px 65px;
    }
.side-nav .nav li:first-child a{
	border-radius: 6px 6px 0px 0px;
	-moz-border-radius: 6px 6px 0px 0px;
	-webkit-border-radius: 6px 6px 0px 0px;
	border:1px solid #e3e1e2;
}
.side-nav .nav li:last-child a{
	border-radius: 0px 0px 6px 6px;
	-moz-border-radius: 0px 0px 6px 6px;
	-webkit-border-radius: 0px 0px 6px 6px;
	border:1px solid #e3e1e2;
	border-top:none;
}
    .side-nav .nav li a:hover, .side-nav .nav li:first-child a:hover, .side-nav .nav li.active a {
        border: 1px solid transparent;
        border-top: none;
        color: #FFF;
    }
    .side-nav .nav > li > a:focus, .side-nav .nav > li > a:hover {
        color: #FFF;
        background-color: #93B059;
    }
    .side-nav .nav li:first-child a:hover {
        border: 1px solid transparent;
        background-repeat: no-repeat;
    }
.side-nav .nav li.massage-treatments-services a{
	background-position:-50px top;
}
.side-nav .nav li.eye-care-services a{
	background-position:-50px -53px;
}
.side-nav .nav li.make-up-services a{
	background-position:-50px -108px;
}
.side-nav .nav li.wax-treatment-services a{
	background-position:-50px -163px;
}
.side-nav .nav li.facial-treatment-services a{
	background-position:-50px -219px;
}
.side-nav .nav li.nail-enhancements-services a{
	background-position:-50px -275px;
}
.side-nav .nav li.hand-feet-treatments-services a{
	background-position:-50px -330px;
}
.side-nav .nav li.hair-styling-services a{
	background-position:-50px -385px;	
}

.side-nav .nav li.massage-treatments-services a:hover, .side-nav .nav li.massage-treatments-services.active a{
	background-position:12px top;
}
.side-nav .nav li.eye-care-services a:hover, .side-nav .nav li.eye-care-services.active a{
	background-position:12px -53px;
}
.side-nav .nav li.make-up-services a:hover, .side-nav .nav li.make-up-services.active a{
	background-position:12px -108px;
}
.side-nav .nav li.wax-treatment-services a:hover, .side-nav .nav li.wax-treatment-services.active a{
	background-position:12px -163px;
}
.side-nav .nav li.facial-treatment-services a:hover, .side-nav .nav li.facial-treatment-services.active a{
	background-position:12px -219px;
}
.side-nav .nav li.nail-enhancements-services a:hover, .side-nav .nav li.nail-enhancements-services.active a{
	background-position:12px -275px;
}
.side-nav .nav li.hand-feet-treatments-services a:hover, .side-nav .nav li.hand-feet-treatments-services.active a{
	background-position:12px -330px;
}
.side-nav .nav li.hair-styling-services a:hover, .side-nav .nav li.hair-styling-services.active a{
	background-position:12px -385px;	
}

/* contact page */


#map-container {
    height: 400px;
    border: 5px solid #f7f7f7;
    border-bottom: none;
    margin-bottom: -100px;
    -webkit-filter: grayscale(100%); /* Safari 6.0 - 9.0 */
    filter: grayscale(100%);
}
.contact-form .btn-submit{
	width:100%;
	font-size:16px;
	letter-spacing:0;
}

/* contact-info-block */
.contact-info-block{
	padding-left:20px;
}
.contact-info-block h2{
	text-transform:uppercase;
	font-size:20px;
	font-weight:800 !important;
}
.contact-info-block h3{
	font-size:30px;
	color:#999;
	font-weight:600 !important;
	line-height:22px;	
}
.contact-info-block h3 span, .contact-info-block p span{
	font-size:13px;
	color:#111;
	text-transform:uppercase;	
	font-weight:600 !important;
	display:block;
	margin:0;
	padding:0;
	
}
.contact-info-block p, .contact-info-block p a{
	color:#999;
	font-weight:600 !important;	
}
.contact-info-block .social-widget:before{
	content:'';
	background:#e5e5e5;
	height:1px;
	width:50px;
	display:block;
	margin:0 auto 20px 0;
}
.contact-info-block .social-widget p{
	margin-bottom:5px;
}
/* footer */
.footer-top {
    background: #D7D7D7;
    padding: 50px 0 90px;
    color: #96959D;
    font-size: 13px;
}
    .footer-top h5 {
        font-size: 14pt;
        color: #96959D;
        text-transform: uppercase;
        text-align: left;
        line-height: 50px;
        margin-bottom: 30px;
    }
    .footer-top h5:after {
        content: '';
        height: 1px;
        background: #9B9B9B;
        width: 60px;
        margin: 0 auto 0 0;
        display: block;
    }
.footer-top ul, .footer-top ul li{
	list-style-type:none;
	margin:0;
}
.footer-top .gallery-block li{
	overflow:hidden;
	font-size:13px;
}
.footer-top .gallery-block li .imgb{
	float:left;
	margin-right:15px;
    padding-bottom:5px;
}
.footer-top .gallery-block li .imgb img{
	width:83px;
	border:1px solid transparent;
}
.footer-top .gallery-block li .txtb{
	overflow:hidden;
	padding-right:10px;
}
.footer-top .gallery-block li .txtb P{
	margin-bottom:10px;
	line-height:18px;
}

.footer-top .gallery-block li .txtb a{
	display:block;
	color:#FFF;
}
.footer-top .gallery-block li .txtb a:hover{
	color:#CCC;
}
.footer-top .gallery-block li .view-all{
	text-align:left;
	font-size:14px;
	text-transform:uppercase;
	display:block;
}
.footer-top .gallery-block li .view-all:hover{
	color:#CCC;
}
    .footer-top .useful-links ul li a {
        color: #96959D;
        font-size: 13pt;
        display: block;
        padding-bottom: 5px;
        line-height: 20pt;
    }
        .footer-top .useful-links ul li a:hover{
            color: #FFF;
        }
.footer-top .location .fa{
	width:15px;
	text-align:right;
	position:absolute;
	top:5px;
	left:0;
	color:#FFF;
}
.footer-top .location address, .footer-top .location p{
	position:relative;
	padding-left:25px;
	margin-bottom:15px;
}
.footer-top .location p a:hover{
	color:#FFF;
}
.footer-top .white-text{
	display:block;
}
.footer-top .grey-text {
    display: block;
}
/* footer-bottom */
.footer-bottom {
    background: #F7F7F7;
    text-align: center;
    padding: 20px 0 30px 0;
}
    .footer-bottom a:hover {
        color: #5A5A5A;
    }
    .footer-bottom #back-to-top {
        background: #F7F7F7;
        width: 60px;
        height: 60px;
        display: inline-block;
        line-height: 56px;
        border-radius: 100%;
        -moz-border-radius: 100%;
        -webkit-border-radius: 100%;
        -o-border-radius: 100%;
        -ms-border-radius: 100%;
        position: relative;
        top: -50px;
        margin-bottom: -30px;
    }
.footer-bottom .logo{
	margin:0 auto 10px auto;
}
.footer-bottom p{
	font-size:13px;
}

.location, .working-hours {
    line-height: 15pt;
}
.white {
    color: #FFF !important;
}
/* ==================================================
 CSS3 transition
================================================== */

.services-box, .services-icons span, .package-icons span, .services-box p, .team-wrapper .image-overlay, .team-wrapper figure img, #owl-gallery.owl-theme .owl-item, .gallery-overlay, .main-services li .imgb, .main-services li h4, .small-header .logo img, .small-header .contact-info, .small-header .social-widget, #sidebar, #toTop, .large-header .logo img, .large-header .contact-info, .small-header .contact-info, .large-header .social-widget, .small-header .social-widget, .large-header, .small-header {
    -webkit-transition: all 0.3s ease 0.2s;
    -moz-transition: all 0.3s ease 0.2s;
    -ms-transition: all 0.3s ease 0.2s;
    -o-transition: all 0.3s ease 0.2s;
    transition: all 0.3s ease 0.1s;
}
/* ==================================================
   7. Responsive Media Queries
================================================== */
@media (min-width:1225px){
}

@media (min-width:1200px) and (max-width: 1225px) {
	#owl-gallery.owl-theme .owl-controls, #hair-styling.owl-theme .owl-controls, #make-up.owl-theme .owl-controls{
		left:-170px;
		top:150px;
	}
	.team-wrapper .owl-theme .owl-buttons div.owl-prev{
		left:-25px;
	}
	.team-wrapper .owl-theme .owl-buttons div.owl-next{
		right:-25px;
	}
	.team-wrapper figure, .team-wrapper figure img{
		width:100%;
		height:auto;
	}
	.team-wrapper .image-overlay{
		padding:20px 15px 20px;
	}
	.team-wrapper .owl-theme .owl-controls{
		top:45%;
	}
}

@media (min-width: 992px) and (max-width: 1199px) {
	.welcome-text{
		min-height:345px;
		line-height:22px;
		font-size:13px;
		padding:15px 20px;
	}
	.gallery-description{
		min-height:213px;
		padding:20px 5px;
	}
	#owl-gallery.owl-theme .owl-controls, #hair-styling.owl-theme .owl-controls, #make-up.owl-theme .owl-controls{
		left:-170px;
		top:150px;
	}
	.newsletter-container h3{
		font-size:16px;
		padding-left:170px;
	}
	.newsletter-container .form-wrapper{
		float:left;
		margin-left:30px;
	}
	.newsletter-container .form-wrapper input[type="text"]{
		width:290px;
	}
	.team-wrapper .owl-theme .owl-buttons div.owl-prev{
		left:-25px;
	}
	.team-wrapper .owl-theme .owl-buttons div.owl-next{
		right:-25px;
	}
	.team-wrapper figure, .team-wrapper figure img{
		width:100%;
		height:auto;
	}
	.contact-info-block h3{
		font-size:24px;
	}
	.form-group{
		margin-bottom:0;
	}
    .header .navbar-nav > li > a {
        padding: 10px 13px;
        line-height: 35px;
    }
    .whatshappening-text {
        height: 100% !important;
        max-height: 100%;
    }
}
@media only screen and (max-width: 992px) {
	.sidebar{
		margin-top:40px;
	}
	.icon-box{
		margin-bottom:50px;
	}
	.contact-info{
		padding-top:80px;
	}
	.navbar-collapse{
		padding:0;
	}
    .header .navbar-nav > li {

        padding-right:20px;
    }
    .header .navbar-nav > li > a {
        padding: 10px 7px 10px 0;
        line-height: 35px;

    }
	.showcase-slider .flex-caption, .showcase-inner .caption{
		width:680px;
		margin:-130px 0px 0px -340px;
	}
	.showcase-slider .flex-caption h2, .showcase-inner .caption h2{
		font-size:35px;
	}
	.showcase-slider .flex-caption p, .showcase-inner .caption p{
		font-size:17px;
		line-height:25px;
	}
	.welcome-image, .welcome-image-inner{
		float:none;
		width:100%;
	}
	.welcome-text{
		float:none;
		width:100%;
		min-height:100%;
		line-height:22px;
		font-size:13px;
		padding:15px 20px;
	}
	.services-box .imgb img{
		width:100%;
		height:auto;
	}
	.gallery-description{
		min-height:245px;
		padding:20px 5px;
	}
	.gallery-description p{
		font-size:12px;
		line-height:20px;
		padding:0 5px;
	}
	#owl-gallery.owl-theme .owl-controls, #hair-styling.owl-theme .owl-controls, #make-up.owl-theme .owl-controls{
		left:-145px;
		top:175px;
	}
	.package-box h3 span{
		font-size:13px;
		line-height:18px;
	}
	.newsletter-container h3{
		width:360px;
		font-size:16px;
		padding-left:70px;
		line-height:25px;
		padding-top:40px;
	}
	.newsletter-container .form-wrapper{
		float:left;
		margin-left:30px;
	}
	.newsletter-container .form-wrapper input[type="text"]{
		width:290px;
	}
	.team-wrapper .owl-theme .owl-buttons div.owl-prev{
		left:-25px;
	}
	.team-wrapper .owl-theme .owl-buttons div.owl-next{
		right:-25px;
	}
	.team-wrapper figure, .team-wrapper figure img{
		width:100%;
		height:auto;
	}
	.team-wrapper .image-overlay{
		padding:20px 15px 20px;
	}
	.team-wrapper .owl-theme .owl-controls{
		top:45%;
	}
	.footer-top .gallery-block li{
		margin-bottom:10px;
	}
	.team-single-profile .imgb img{
		width:100%;
		height:auto;
	}
	.team-single-profile.small-screen h4{
		font-size:14px;
	}
	.team-single-profile.small-screen .job-title{
		font-size:11px;
	}
	.form-group{
		margin-bottom:0;
	}
	.main-services li{
		padding-right:25px;
	}
	.main-services li .imgb{
		float:none;
		margin:0 auto 20px 0;
	}
	.main-services li .imgb img{
		width:100%;
		height:auto;
	}
    .whatshappening-text {
        height: 100% !important;
        max-height: 100%;
    }
    .whatshappening-text, .whatshappening-image, .whatshappening-image-inner {
        width: 100%;
        float: left;
    }
    .general-wrapper .row {
        text-align: center;
    }

    .title-text h1 {
        text-align:center;
    }
    .general-wrapper .title-text h1:after {
        text-align: center;
        margin: auto;
    }
    .welcome-message-wrapper .title-text h1:after {
        text-align: center;
        margin: auto;
    }
    .voucher-service-text h3:after {
        text-align: center;
        margin: auto;
        margin-top: 10px;
    }


}
@media only screen and (max-width: 767px) {
	.body{
		padding-top:0!important;
	}
	.grid-item .media-box{
		display:block;
	}
	.grid-item .media-box img{
		width:100%;
	}
	.content{
		padding:30px 0;
	}
	hr.fw{
		margin-top:25px;
		margin-bottom:25px;
	}
	/* Isotope */
	.isotope {
		overflow: visible !important;
		height: auto !important;
	}
	.isotope-item {
		position: static !important;
		margin-right: auto;
		margin-left: auto;
		width: auto;
		-webkit-transform: none !important;
		-moz-transform: none !important;
		-ms-transform: none !important;
		-o-transform: none !important;
		transform: none !important;
	}
	.isotope-hidden {
		display: none !important;
	}
	.grid-item .media-box{
		margin-bottom:0;
	}
	.hero-slider.flexslider, .hero-slider.flexslider ul.slides li{
		height:250px;
	}
	.contact-info{
		text-align:center;
		padding-top:20px !important;
	}
	.contact-info p{
		margin-bottom:10px;
	}
	.header .logo{
		margin:0 auto;
	}
	.header .social-widget, .header .social-widget .social-icons-colored{
		float:none;
		margin:0 auto;
		padding-top:20px;
		padding-bottom:25px;
		text-align:center;
	}
	.header .social-widget .social-icons-colored{
		padding:0;
	}
	.navbar-brand{
		display:block;
	}
	.showcase-slider .flex-caption{
		display:none;
	}
	.welcome-message-wrapper{
		padding:20px 0 50px 0;
	}
	.title-text h2, .title-text h4{
		font-size:17px;
	}
	.title-text p{
		font-size:15px;
		line-height:22px;
		padding:0 5%;
	}
	.gallery-description{
		display:none;
	}
	#owl-gallery, #hair-styling, #make-up{
		width:100%;
	}
	#owl-gallery.owl-theme .owl-item, #hair-styling.owl-theme .owl-item, #make-up.owl-theme .owl-item, #owl-gallery.owl-theme .owl-item img, #hair-styling.owl-theme .owl-item img, #make-up.owl-theme .owl-item img{
		width:100%;
		height:auto;
	}
	#owl-gallery.owl-theme .owl-controls, #hair-styling.owl-theme .owl-controls, #make-up.owl-theme .owl-controls{
		position:static;
		text-align:center;
	}
    #owl-gallery.owl-theme .owl-buttons div, #hair-styling.owl-theme .owl-buttons div, #make-up.owl-theme .owl-buttons div, .team-wrapper .owl-theme .owl-buttons div {
        background: #93B059 !important;
    }
	.newsletter-container{
		width:auto;
		text-align:center;
	}
	.newsletter-container h3{
		width:100%;
		font-size:15px;
		display:block;
		margin:20px auto 10px auto;
		padding:0;
	}
	.newsletter-container .form-wrapper{
		width:90%;
		float:none;
		margin:0 auto;
	}
	.newsletter-container .form-wrapper input[type="text"]{
		width:230px;
	}
	#our-team{
		width:100%;
	}
	.team-wrapper .owl-theme .owl-buttons div.owl-prev{
		left:-15px;
	}
	.team-wrapper .owl-theme .owl-buttons div.owl-next{
		right:-15px;
	}
	.team-wrapper figure, .team-wrapper figure img{
		width:100% !important;
		height:auto;
	}
	.team-wrapper .image-overlay{
		width:100%;
		padding:30px 15px 20px;
	}
	
	.title-text h2, .title-text h4{
		font-size:17px;
	}
	.team-single-profile .imgb img{
		width:100%;
		height:auto;
	}
	.team-single-profile.small-screen h4{
		font-size:14px;
	}
	.team-single-profile.small-screen .job-title{
		font-size:11px;
	}
	.form-group{
		margin-bottom:0;
	}
	.contact-info-block{
		padding:20px 0 0 0;
	}
	.main-services li{
		border-right:none;
		padding-right:0;
	}
	.main-services li .imgb{
		float:none;
		margin:0 auto 20px 0;
	}
	.main-services li .imgb img{
		width:100%;
		height:auto;
	}
	.side-nav{
		padding-bottom:30px;		
	}
	.side-nav #sidebar{
		display:block;
		width:100%;
		position:static !important;
	}
    .header-info {
        display: none;
    }
    .booknow {
        display:none;
    }
    
    .rounded-box {
        width: 100%;
    }
    .whatshappening-text {
        height: 100% !important;
        max-height: 100%;
    }
    .whatshappening-text, .whatshappening-image, .whatshappening-image-inner {
        width: 100%;
        float: left;
    }
    .contact-info .socials {
        float: right;
    }
}

@media only screen and (min-width: 480px) and (max-width: 767px) {
	.gallery-description{
		min-height:305px;
	}
	.gallery-description p{
		line-height:18px;
	}
	#owl-gallery.owl-theme .owl-controls, #hair-styling.owl-theme .owl-controls, #make-up.owl-theme .owl-controls{
		left:-108px;
		top:250px;
	}
    #owl-gallery.owl-theme .owl-buttons div, #hair-styling.owl-theme .owl-buttons div, #make-up.owl-theme .owl-buttons div, .team-wrapper .owl-theme .owl-buttons div {
        background: #93B059 !important;
    }
	.newsletter-container h3{
		margin:30px auto 20px auto;
	}
	.newsletter-container .form-wrapper{
		width:75%;
	}
	.newsletter-container .form-wrapper input[type="text"]{
		width:300px;
	}
	.team-wrapper .image-overlay{
		padding:10px 15px 20px;
	}
    .header-info {
        display: none;
    }
    .booknow {
        display: none;
    }
    .whatshappening-text {
        height: 100% !important;
        max-height: 100%;
    }
    .whatshappening-text, .whatshappening-image, .whatshappening-image-inner {
        width: 100%;
        float: left;
    }
    .contact-info .socials {
        float: right;
    }
}
@media all and (-webkit-min-device-pixel-ratio: 1.5) {

}

