
/* 1200px Media Query for the Skeleton Grid - http://getskeleton.com
* Adapted from http://www.aliaspooryorik.com/blog/index.cfm/e/posts.details/post/responsive-css-grid-systems-345
* Added .alpha.omega combo classes. Hope to see that fixed in later versions of Skeleton: https://github.com/dhgamache/Skeleton/issues/68
*/

   
/* #Base 1200 Grid
================================================== */
    .container                                  { position: relative; width: 1200px; margin: 0 auto; padding: 0; }
    .column, .columns                           { float: left; display: inline; margin-left: 10px; margin-right: 10px; }
    .row                                        { margin-bottom: 20px; }

    /* Nested Column Classes */
    .column.alpha, .columns.alpha               { margin-left: 0; }
    .column.omega, .columns.omega               { margin-right: 0; }
   .column.alpha.omega, .columns.alpha.omega   { margin-left: 0; margin-right: 0}

    /* Base Grid */
    .container .one.column                      { width: 55px;  }
    .container .two.columns                     { width: 130px; }
    .container .three.columns                   { width: 205px; }
    .container .four.columns                    { width: 280px; }
    .container .five.columns                    { width: 355px; }
    .container .six.columns                     { width: 430px; }
    .container .seven.columns                   { width: 505px; }
    .container .eight.columns                   { width: 580px; }
    .container .nine.columns                    { width: 655px; }
    .container .ten.columns                     { width: 730px; }
    .container .eleven.columns                  { width: 805px; }
    .container .twelve.columns                  { width: 880px; }
    .container .thirteen.columns                { width: 955px; }
    .container .fourteen.columns                { width: 1030px; }
    .container .fifteen.columns                 { width: 1105px; }
    .container .sixteen.columns                 { width: 1180px; }

   .container .one-fifth.column                { width: 220px; }
   .container .one-fourth.column                { width: 275px; }	
   
    .container .one-third.column                { width: 380px; }
    .container .two-thirds.column               { width: 780px; }

    /* Offsets */
    .container .offset-by-one                   { padding-left: 75px;  }
    .container .offset-by-two                   { padding-left: 150px; }
    .container .offset-by-three                 { padding-left: 225px; }
    .container .offset-by-four                  { padding-left: 300px; }
    .container .offset-by-five                  { padding-left: 380px; }
    .container .offset-by-six                   { padding-left: 455px; }
    .container .offset-by-seven                 { padding-left: 530px; }
    .container .offset-by-eight                 { padding-left: 605px; }
    .container .offset-by-nine                  { padding-left: 680px; }
    .container .offset-by-ten                   { padding-left: 755px; }
    .container .offset-by-eleven                { padding-left: 830px; }
    .container .offset-by-twelve                { padding-left: 905px; }
    .container .offset-by-thirteen              { padding-left: 980px; }
    .container .offset-by-fourteen              { padding-left: 1055px; }
    .container .offset-by-fifteen               { padding-left: 1130px; }



/* #Base 960 Grid
================================================== */
 @media only screen and (min-width: 960px) and (max-width: 1199px) {
    .container                                  { width: 960px; }
    .column, .columns                           { margin-left: 10px; margin-right: 10px; }

    /* Nested Column Classes */
    .column.alpha, .columns.alpha               { margin-left: 0; }
    .column.omega, .columns.omega               { margin-right: 0; }

    /* Base Grid */
    .container .one.column                      { width: 40px;  }
    .container .two.columns                     { width: 100px; }
    .container .three.columns                   { width: 160px; }
    .container .four.columns                    { width: 220px; }
    .container .five.columns                    { width: 280px; }
    .container .six.columns                     { width: 340px; }
    .container .seven.columns                   { width: 400px; }
    .container .eight.columns                   { width: 460px; }
    .container .nine.columns                    { width: 520px; }
    .container .ten.columns                     { width: 580px; }
    .container .eleven.columns                  { width: 640px; }
    .container .twelve.columns                  { width: 700px; }
    .container .thirteen.columns                { width: 760px; }
    .container .fourteen.columns                { width: 820px; }
    .container .fifteen.columns                 { width: 880px; }
    .container .sixteen.columns                 { width: 940px; }
   
   .container .one-fifth.column                { width: 172px; }

    .container .one-third.column                { width: 300px; }
    .container .two-thirds.column               { width: 620px; }

    /* Offsets */
    .container .offset-by-one                   { padding-left: 60px;  }
    .container .offset-by-two                   { padding-left: 120px; }
    .container .offset-by-three                 { padding-left: 180px; }
    .container .offset-by-four                  { padding-left: 240px; }
    .container .offset-by-five                  { padding-left: 300px; }
    .container .offset-by-six                   { padding-left: 360px; }
    .container .offset-by-seven                 { padding-left: 420px; }
    .container .offset-by-eight                 { padding-left: 480px; }
    .container .offset-by-nine                  { padding-left: 540px; }
    .container .offset-by-ten                   { padding-left: 600px; }
    .container .offset-by-eleven                { padding-left: 660px; }
    .container .offset-by-twelve                { padding-left: 720px; }
    .container .offset-by-thirteen              { padding-left: 780px; }
    .container .offset-by-fourteen              { padding-left: 840px; }
    .container .offset-by-fifteen               { padding-left: 900px; }
 }


/* #Tablet (Portrait)
================================================== */

    /* Note: Design for a width of 768px */

    @media only screen and (min-width: 768px) and (max-width: 959px) {
        .container                                  { width: 768px; }
        .container .column,
        .container .columns                         { margin-left: 10px; margin-right: 10px;  }
        .column.alpha, .columns.alpha               { margin-left: 0; margin-right: 10px; }
        .column.omega, .columns.omega               { margin-right: 0; margin-left: 10px; }

        .container .one.column                      { width: 28px; }
        .container .two.columns                     { width: 76px; }
        .container .three.columns                   { width: 124px; }
        .container .four.columns                    { width: 172px; }
        .container .five.columns                    { width: 220px; }
        .container .six.columns                     { width: 268px; }
        .container .seven.columns                   { width: 316px; }
        .container .eight.columns                   { width: 364px; }
        .container .nine.columns                    { width: 412px; }
        .container .ten.columns                     { width: 460px; }
        .container .eleven.columns                  { width: 508px; }
        .container .twelve.columns                  { width: 556px; }
        .container .thirteen.columns                { width: 604px; }
        .container .fourteen.columns                { width: 652px; }
        .container .fifteen.columns                 { width: 700px; }
        .container .sixteen.columns                 { width: 748px; }
      
      .container .one-fifth.column                { width: 133px; }

        .container .one-third.column                { width: 236px; }
        .container .two-thirds.column               { width: 492px; }

        /* Offsets */
        .container .offset-by-one                   { padding-left: 48px; }
        .container .offset-by-two                   { padding-left: 96px; }
        .container .offset-by-three                 { padding-left: 144px; }
        .container .offset-by-four                  { padding-left: 192px; }
        .container .offset-by-five                  { padding-left: 240px; }
        .container .offset-by-six                   { padding-left: 288px; }
        .container .offset-by-seven                 { padding-left: 336px; }
        .container .offset-by-eight                 { padding-left: 348px; }
        .container .offset-by-nine                  { padding-left: 432px; }
        .container .offset-by-ten                   { padding-left: 480px; }
        .container .offset-by-eleven                { padding-left: 528px; }
        .container .offset-by-twelve                { padding-left: 576px; }
        .container .offset-by-thirteen              { padding-left: 624px; }
        .container .offset-by-fourteen              { padding-left: 672px; }
        .container .offset-by-fifteen               { padding-left: 720px; }
    }


/*  #Mobile (Portrait)
================================================== */

    /* Note: Design for a width of 320px */

    @media only screen and (max-width: 767px) {
        .container { width: 300px; }
        .columns, .column { margin: 0; }

        .container .one.column,
        .container .two.columns,
        .container .three.columns,
        .container .four.columns,
        .container .five.columns,
        .container .six.columns,
        .container .seven.columns,
        .container .eight.columns,
        .container .nine.columns,
        .container .ten.columns,
        .container .eleven.columns,
        .container .twelve.columns,
        .container .thirteen.columns,
        .container .fourteen.columns,
        .container .fifteen.columns,
        .container .sixteen.columns,
      .container .one-fifth.column,
        .container .one-third.column,
        .container .two-thirds.column  { width: 300px; }

        /* Offsets */
        .container .offset-by-one,
        .container .offset-by-two,
        .container .offset-by-three,
        .container .offset-by-four,
        .container .offset-by-five,
        .container .offset-by-six,
        .container .offset-by-seven,
        .container .offset-by-eight,
        .container .offset-by-nine,
        .container .offset-by-ten,
        .container .offset-by-eleven,
        .container .offset-by-twelve,
        .container .offset-by-thirteen,
        .container .offset-by-fourteen,
        .container .offset-by-fifteen { padding-left: 0; }

    }


/* #Mobile (Landscape)
================================================== */

    /* Note: Design for a width of 480px */

    @media only screen and (min-width: 480px) and (max-width: 767px) {
        .container { width: 420px; }
        .columns, .column { margin: 0; }

        .container .one.column,
        .container .two.columns,
        .container .three.columns,
        .container .four.columns,
        .container .five.columns,
        .container .six.columns,
        .container .seven.columns,
        .container .eight.columns,
        .container .nine.columns,
        .container .ten.columns,
        .container .eleven.columns,
        .container .twelve.columns,
        .container .thirteen.columns,
        .container .fourteen.columns,
        .container .fifteen.columns,
        .container .sixteen.columns,
      .container .one-fifth.column,
        .container .one-third.column,
        .container .two-thirds.column { width: 420px; }
    }


/* #Clearing
================================================== */

    /* Self Clearing Goodness */
    .container:after { content: "\0020"; display: block; height: 0; clear: both; visibility: hidden; }

    /* Use clearfix class on parent to clear nested columns,
    or wrap each row of columns in a <div class="row"> */
    .clearfix:before,
    .clearfix:after,
    .row:before,
    .row:after {
      content: '\0020';
      display: block;
      overflow: hidden;
      visibility: hidden;
      width: 0;
      height: 0; }
    .row:after,
    .clearfix:after {
      clear: both; }
    .row,
    .clearfix {
      zoom: 1; }

    /* You can also use a <br class="clear" /> to clear columns */
    .clear {
      clear: both;
      display: block;
      overflow: hidden;
      visibility: hidden;
      width: 0;
      height: 0;
    }






/*
Cutting Edge Template

Table of Contents:
	Reset
	Common
	Typography
	Layout
	Supersized Slideshow
	Youtube Player
	Parallax
	Portfolio
	About Us
	Services
	Features
	Accordion
	Tooltips
	Contacts
	Form Elements
	Flickr
	Alert Boxes
	Footer
	Our Clients
	Misc
	Media Queries
*/




/* #Reset & Basics (Inspired by E. Meyers)
--------------------------------------------------------*/
	
html, body {
    height: 100%;
}
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
article, aside, details, figcaption, figure, footer, header, hgroup, menu, menuflags, nav, navflags, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}



/* Commons
--------------------------------------------------------*/


::-moz-selection {background: #D2B55B;color: #fff; }
::selection {background: #D2B55B;color: #fff; }

body {
	background-color: #fff;
	font: 15px 'Oswald', sans-serif;
	font-weight: 300;
	color: #222;
	-webkit-font-smoothing: antialiased;
	-webkit-text-size-adjust: 100%;
	text-align: left;
	width: 100%;
	height: 100%;
	text-align: center;
	
}
img.call {
   position: fixed; top: 15px; right: 40px; z-index: 1000; 	
}

.video-container {
    position: relative;
    padding-bottom: 56.25%; /* 16/9 ratio */
    padding-top: 30px; /* IE6 workaround*/
    height: 0;
    overflow: hidden;
}
.video-container iframe,
.video-container object,
.video-container embed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.embed-container {
    position: relative;
    padding-bottom: 30%; /* 16/9 ratio */
    padding-top: 30px; /* IE6 workaround*/
	margin-top: 30px;
    height: 0;
    overflow: hidden;
	width: 100%;
	border-bottom: 10px solid #D2B55B;
    border-top: 10px solid #D2B55B;
}
.embed-container frame,
.embed-map iframe,
.embed-container object,
.embed-container embed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hidden {
	display: none;
}

img.scale-with-grid {
	max-width: 100%;
	height: auto; }


/* Typography
--------------------------------------------------------*/

h1, h2, h3, h4 {
	font-weight: 300;
	font-family: 'Oswald',sans-serif;
	color: #222;
	margin: 0 0 6px;
}
h1 {
	font-size: 60px;
    letter-spacing: -2px;
    margin-bottom: 15px;
    position: relative;
    text-transform: uppercase;
	line-height: 1;
}
h1 span{
	color: #D2B55B;
}
h5 {
   font-size: 60px;
   font-weight: 400;
   color: #B59B4F;
   letter-spacing: 2px;
   margin-bottom: 150px;
   position: relative;
   text-transform: uppercase;
   text-align: left;
   line-height: 1;
}
h5 span{
   color: #fff;
}
h2 {
   font-size: 60px;
    letter-spacing: -2px;
    margin-bottom: 15px;
    position: relative;
    text-transform: uppercase;
   line-height: 1;
}
h2 span{
   color: #D2B55B;
}
h2.white {
	color: #fff;
}
h3 {
	font-size: 22px;
	line-height: 1;
	color: #555;
}
h3.sectionTitle {
    border-bottom: 1px solid #cacaca;
    font-size: 28px;
    line-height: 30px;
    margin-bottom: 10px;
    padding: 26px 0 6px;
}
.small {font-size: 36px; font-weight:300;}
.smallBold {font-size: 36px; font-weight:700;}
.medium {font-size: 44px; text-transform: uppercase;}
.mediumBold {font-size: 44px; font-weight:700; text-transform: uppercase;}
.large {font-size: 56px; text-transform: uppercase;}
.largeBold {font-size: 56px; font-weight:700; text-transform: uppercase;}
.author {font-size: 18px; font-weight:300;}

h4 {
	font-size: 24px;
	font-weight:400;
}
p {
	margin-bottom: 10px;
}
p a {
	color: #D2B55B;
	text-decoration: none;
}
p a:hover {
	color:#907111;
	transition: color 0.5s;
}
a {
	color:#D2B55B;
	text-decoration:none;
}
a:hover{
	color:#907111;
}
strong {
	font-weight: 700;
}
.introtext {
	font-size: 20px;
	margin-bottom: 35px;
}
.marginTop {
	margin-top: 20px;
}
.highlight {
    background: #D2B55B;
    color: #FFFFFF;
    padding: 0 6px;
}
.dropcap {
    background: #D2B55B;
    color: #FFFFFF;
    display: inline-block;
    float: left;
    font-size: 30px;
    font-weight: bold;
    height: 44px;
    line-height: 44px;
    margin: 7px 7px 0 0;
    text-align: center;
    width: 44px;
}

/* Layout 
--------------------------------------------------------*/

.homepage{
	position:relative;
	overflow:hidden;
	z-index:1;
	margin-bottom: -50px;
}
.page{
	position:relative;
	overflow:hidden;
	z-index:2;
}
.page.desktop{
	position:relative !important; 
	z-index:6;
}
.page {
	padding-top: 60px;
	padding-bottom: 5px;
}
.page{
	background:#fff; 
	background-attachment:scroll;
}	
nav {
	background: #000;
	background: rgba(0,0,0,0.8);
	width: 100%;
	position: relative;
	z-index: 1000;
	height: 46px;
	text-align: center;
	border-bottom: 6px solid #D2B55B;
}
nav ul {
	height: 38px;
	display: inline-block;
	padding-top: 9px;
}
nav ul li {
	position: relative;
	float: left;
	margin: 0;
}
nav ul li a {
	font-family: 'Oswald',sans-serif;
	font-size: 18px;
	font-weight: 400;
	color: white;
	text-decoration: none;
	text-transform: uppercase;
	padding: 10px;
}
nav ul li a:hover {
	color: ##D2B55B;
	transition: color 0.5s;
	  transition: 0.6s;
}
.dropmenu {
	display: none;
}
	
#homepage .container {
    height: 100%;
}
.logo {
	position:absolute;
	left:15%;
	margin-top: 30px;
	z-index:2
}

/* supersized slideshow
--------------------------------------------------------*/

.slider-text {
    width: 100%;
}
.slider-text {
    bottom: 0px;
    min-height: 220px;
    overflow: hidden;
    position: absolute;
}
#prevslide, #nextslide{ 
	position:absolute; 
	height:40px; 
	width:40px; 
	top:64px; 
	margin-top:-41px; 
	opacity:0.8;
	border-radius: 50%;  
}
#prevslide{ 
	right:60px; 
	background:url('../images/icons/icon-up-arrow.png') center center no-repeat #000; 
}
#nextslide{ 
	right:10px; 
	background:url('../images/icons/icon-down-arrow.png') center center no-repeat #000;
}
#prevslide:active, #nextslide:active{ 
	margin-top:-39px; 
}
#prevslide:hover, #nextslide:hover{ 
	cursor:pointer; 
}

#slidecaption h2{
	text-shadow: 0 0 5px #000;
	font-weight: 700;
	font-size: 84px;
	color: #fff;
	text-align: left;
	line-height: 1;
}
#slidecaption h2 span{
	font-weight: 300;
	font-size: 86px;
}

#supersized-loader { position:absolute; top:50%; left:50%; z-index:0; width:60px; height:60px; margin:-30px 0 0 -30px; text-indent:-999em; background:url(../images/progress.gif) no-repeat center center;}

#supersized {  display:block; position:absolute; left:0; top:0; overflow:hidden; z-index:-999; height:100%; width:100%; }

#supersized img { width:auto; height:auto; position:relative; display:none; outline:none; border:none;
}
#supersized.speed img { -ms-interpolation-mode:nearest-neighbor; image-rendering: -moz-crisp-edges; }	/*Speed*/
#supersized.quality img { -ms-interpolation-mode:bicubic; image-rendering: optimizeQuality; }			/*Quality*/
#supersized li { display:block; list-style:none; z-index:-30; position:absolute; overflow:hidden; top:0; left:0; width:100%; height:100%; background:#111; }
#supersized a { width:100%; height:100%; display:block; }
#supersized li.prevslide { z-index:-20; }
#supersized li.activeslide { z-index:-10; }
#supersized li.image-loading { background:#111 url(../images/progress.gif) no-repeat center center; width:100%; height:100%; }
#supersized li.image-loading img{ visibility:hidden; }
#supersized li.prevslide img, #supersized li.activeslide img{ display:inline; }
	
	
/* parallax
--------------------------------------------------------*/
	
.parallax{
	width:100%;
	height:480px; 
	padding:0;
	margin:0;
	background-attachment:fixed;
	background-repeat:no-repeat; 
	border-top:10px solid rgba(255,255,255,0.3);
	border-bottom:10px solid rgba(255,255,255,0.3);
	color:#fff;  
	position:relative;
	background-size: cover;
}
.parallax .quoteWrap{
	display:table;
	width:100%;
	height:100%; 
	padding:0 !important;
	margin:0 !important;
}
.parallax.fixed{
	background-attachment:fixed;
}
.parallax.fixed-desktop{
	background-attachment:fixed !important;
}
.parallax .quoteWrap .quote{
	display: table-cell; 
	vertical-align:middle;
}
.parallax {
	text-align:center;
}
.parallax h3 span{
	text-shadow: 0px 0px 5px #222;
	color: #fff;
}
.parallaxText {
	display: table-cell;
	vertical-align: middle;
}
.imageClip {
	background:url(../images/parallax/model-clipped.png) center center no-repeat;
	width: 287px;
	height: 800px;
	margin: -500px auto 0 auto;
}	
.cutting {
	font-size: 150px;
	font-weight: 700;
	opacity: 0.5;
	margin-left: -150px;
}

/* Twitter
--------------------------------------------------------*/
#twitter li {
	margin: 0;
	padding: 40px 0 0 0;
	background: url(../images/icons/social-twitter.png) no-repeat center top;
	font-size: 24px;
	text-shadow: 0px 0px 5px #222;
}

#twitter a {
	color: #fff;
	text-shadow: 0px 0px 5px #222;
	font-size: 24px;
}
#twitter a:hover {
	color: #000;
}

#twitter b a {
	color: #fff;
	color: rgba(255,255,255,0.6);
	font-weight: normal;
	font-size: 18px;
	text-shadow: none;
}
	
	
/* Salon
--------------------------------------------------------*/	
	
#salon {
	clear: left;
}
.salonImage {
	margin-bottom: 30px;
}
.teamImage img {
    border-radius: 50%;
	margin: 20px auto 30px;
	box-shadow: 0 0 0 1px #fff inset;
}
.teamOverlay {
	border: 5px solid rgb(210, 181, 91);
    border-radius: 50%;
    box-shadow: 0 0 0 10px rgba(210, 181, 91, 0.3) inset;
	width: 270px;
	height: 270px;
	margin-bottom: 30px;
	margin-top: 20px;
	position: absolute;
}


/* Stats
--------------------------------------------------------*/	
.statGrid {
	margin: 20px 0 0 0;
	padding: 0;
	list-style: none;
	display: block;
	text-align: center;
	width: 100%;
	float: left;
}
.statGrid:after,
.statItem:before {
	content: '';
    display: table;
}
.statGrid:after {
	clear: both;
}
.statGrid li {
	width: 177px;
	height: 177px;
	display: inline-block;
	margin: 10px;
}
.statItem {
	width: 100%;
	height: 100%;
	border-radius: 100px;
	position: relative;
	cursor: default;
	box-shadow: 0 1px 3px rgba(0,0,0,0.2);
}
.statThumb {
	width: 100%;
	height: 100%;
	border-radius: 100px;
	overflow: hidden;
	position: absolute;
	box-shadow: inset 0 0 0 15px rgba(255,255,255, 0.5);
	transform-origin: 95% 40%;
	transition: all 0.3s ease-in-out;
	-webkit-transform:translate3d(0,0,0);
}
.ie8 .statThumb {
	display: none;
}
.statGridMobile .statThumb {
	display: none;
}
.statThumb:after {
	content: '';
	width: 8px;
	height: 8px;
	position: absolute;
	border-radius: 100px;
	top: 40%;
	left: 95%;
	margin: -4px 0 0 -4px;
	background: rgb(50,50,50);
	box-shadow: 0 0 3px rgba(255,255,255,0.9);
}

.stat-1 { 
	background-image: url(../images/stats/stat-1.jpg);
	z-index: 12;
}
.stat-2 { 
	background-image: url(../images/stats/stat-2.jpg);
	z-index: 11;
}
.stat-3 { 
	background-image: url(../images/stats/stat-3.jpg);
	z-index: 10;
}
.stat-4 { 
	background-image: url(../images/stats/stat-4.jpg);
	z-index: 9;
}
.stat-5 { 
	background-image: url(../images/stats/stat-5.jpg);
	z-index: 8;
}
.stat-6 { 
	background-image: url(../images/stats/stat-6.jpg);
	z-index: 7;
}
.statInfo {
	position: absolute;
	width: 100%;
	height: 100%;
	border-radius: 100px;
	overflow: hidden;
	background: #D2B55B;
}
.statInfo h3 {
	color: #fff;
	text-transform: uppercase;
	position: relative;
	text-align: center;
	letter-spacing: 2px;
	font-size: 24px;
	margin: 0 auto;
	padding: 45px 0 0 0;
	height: 40px;
	font-weight: 700;
	text-shadow: 
		0 0 1px #fff, 
		0 1px 2px rgba(0,0,0,0.3);
}
.statInfo p {
	color: #fff;
	padding: 10px 5px;
	margin: 0 auto;
	font-size: 14px;
	text-align: center;
	border-top: 1px solid rgba(255,255,255,0.5);
}
.statItem:hover .statThumb {
	box-shadow: inset 0 0 0 15px rgba(255,255,255, 0.5), 0 1px 3px rgba(0,0,0,0.2);
	transform: rotate(-110deg);
}
.statItem:hover .statInfo p a{
	opacity: 1;
	transform: translateX(0px) rotate(0deg);
}	



	
/* Awards
--------------------------------------------------------*/	

.awardsImage {
	border-radius: 50%;
	border: 5px solid rgb(210, 181, 91);
	padding: 2px;
}
.awardsImage img{
	border-radius: 50%;
	display: block;
}
.awardsListing ul {
	margin-bottom: 20px;
}
.awardsListing ul li{
	margin: 1px 0;
}
.awardsListing ul li span{
	background: #D2B55B;
    color: #FFFFFF;
    padding: 0 6px;
}




/* Services
--------------------------------------------------------*/	

.serviceImage {
	border: 5px solid rgb(210, 181, 91);
    border-radius: 50%;
    box-shadow: 0 0 0 10px rgba(210, 181, 91, 0.3) inset;
	width: 220px;
	height: 220px;
	transition: all 0.5s ease-in-out 0s;
	margin: 20px auto 30px;
}
.serviceImage h4{
	text-align: center;
	padding-top: 90px;
	opacity: 0;
	transform: scale(0);
	transition: all 0.8s ease-in-out 0s;
}
.serviceImage:hover {
    box-shadow: 0 0 0 110px rgba(255,255,255, 0.9) inset;
}
.serviceImage:hover h4{
    opacity: 1;
	transform: scale(1);
}
.circle {
	border-radius: 50%;
}

table {
    border: medium none;
    border-collapse: separate;
    border-radius: 6px 6px 6px 6px;
    border-spacing: 0;
    margin-bottom: 15px;
    width: 100%;
}
table th {
    background-color: #DAD9E1;
    background-image: -moz-linear-gradient(center bottom , #F7F7F7 0%, #FFFFFF 100%);
    border-color: #DDDDDD;
    border-image: none;
    border-style: solid none solid solid;
    border-width: 1px medium 1px 1px;
    color: #444444;
    font-size: 18px;
    font-weight: bold;
    padding: 10px 15px;
    text-align: center;
    vertical-align: top;
}
table th:first-child {
    border-radius: 16px 0 0 0;    
}
table td:first-child {    
    text-align:left;
}
table td:last-child {
    border-right: 1px solid #DDDDDD;
}
table th:last-child {
    border-radius: 0 16px 0 0;
    border-right: 1px solid #DDDDDD;
}
table td {
    border-color: #E7E7E7;
    border-image: none;
    border-style: none none solid solid;
    border-width: medium medium 1px 1px;
    padding: 10px 15px;
	transition: all 0.4s ease-in-out 0s;
	font-size: 22px;
	font-weight: 400;
	text-align:right;
}
table tr:hover td {
    background-color: #D2B55B;
    color: #FFFFFF;
}



/* Promotions
--------------------------------------------------------*/


/* Accordion */

.accTrigger {
	cursor: pointer;
	display: block;
	margin: 10px 0;
	background: #fff;
	border-radius: 30px;
	border-bottom: 6px solid #D2B55B;
	transition: all 0.5s ease-in-out 0s;
}
.accTrigger:hover {
	background: #f1e9d2;
}
.accTrigger a {
	display: block;
	color: #000;
	outline: none;
	padding: 10px;
	text-decoration: none;
	font-size: 24px;
	transition: all 0.5s ease-in-out 0s;
}
.accTrigger.active a {
	cursor: default;
}
.accTrigger.active  {
	background: #f1e9d2; 
}

.accTrigger a:hover {
	color: #D2B55B; 
}
.accContainer .content{ 
	padding: 2px 15px 5px 15px; 
	line-height: 19px; 
}
.accContent p {
	margin-bottom: 10px;
}
.accContent {
	padding: 10px 0;
}
.accImage {
	display: table-cell;
	vertical-align: middle;
	width: 20%;
}
.accImageInner {
	border-radius: 200px;
	border: 3px solid #D2B55B;
	padding: 2px;
	width:94%;
}
.accImage img{
	border-radius: 200px;
	display: block;
	
}
.accTitle, .accText {
	width: 35%;
	text-align: left;
	display: table-cell;
	vertical-align: middle;
	position: relative;
}
.accTitle h3{
	font-size: 54px;
	color: #D2B55B;
	margin-left: 10%;
	margin-bottom: 0;
}
.accTitle h2{
	font-size: 90px;
	color: #D2B55B;
	margin-left: 10%;
	margin-bottom: 0;
}
.accText p{
	margin: 10px 0 10px 5%;
	font-size: 16px;
}

	
/* gallery
--------------------------------------------------------*/	
	
.thumbLink {
    display: block;
    width: 100%;
        -webkit-transform: scale(1);
        -webkit-transition-timing-function: ease-out;
        -webkit-transition-duration: 200ms;
        -moz-transform: scale(1);
        -moz-transition-timing-function: ease-out;
        -moz-transition-duration: 200ms;
}
.thumbLink:hover {
    -webkit-transform: scale(1.15);
    -webkit-transition-timing-function: ease-out;
    -webkit-transition-duration: 750ms;
    -moz-transform: scale(1.15);
    -moz-transition-timing-function: ease-out;
    -moz-transition-duration: 750ms;
}
.thumbImage {
   padding:4px;
   background-color:#fff;    
    box-sizing: border-box;
    border: 2px solid #BEA353;
    border-radius: 220px 220px 220px 220px;
    display: block;
    margin-bottom: 20px;
    overflow: hidden;
    position: relative;
    transition: all 0.3s ease-in-out 0s;
    width: 100%;
    text-align: center;
}
.thumbImage:hover {
    border: 4px solid #A08B4B;
}
.thumbImage img {
    border-radius: 220px 220px 220px 220px;
}
.da-thumbs {
    margin-top: 10px;
    position: relative;
}
.da-thumbs article {
    position: relative;
}
.da-thumbs article a, .da-thumbs article a img {
    display: block;
    position: relative;
}
.da-thumbs article a {
    overflow: hidden;
}
.thumbImage div {
    height: 65%;
    position: absolute;
    text-align: center;
    width: 100%;
}
.thumbImage div {
    display: none;
    padding-top: 35%;
}
.thumbImage img {
    transition: all 0.3s ease-in-out 0s;
}
.thumbImage div.da-animate {
    transition: all 0.3s ease-in-out 0s;
}
.da-slideFromTop {
    left: 0;
    top: -100%;
}
.da-slideFromBottom {
    left: 0;
    top: 100%;
}
.da-slideFromLeft {
    left: -100%;
    top: 0;
}
.da-slideFromRight {
    left: 100%;
    top: 0;
}
.da-slideTop {
    top: 0;
}
.da-slideLeft {
    left: 0;
}
.iconWrapper {
    background-color: rgba(210, 181, 91, 0.7);
    background-image: url("../images/btn-zoom.png");
    background-position: 50% 50%;
    background-repeat: no-repeat;
    border-radius: 50% 50% 50% 50%;
    display: inline-block;
    height: 60px;
    margin: 0 auto;
    position: relative;
    text-align: center;
    width: 60px;
    z-index: 1000;
}
#gallery h3  {
	margin-bottom: 20px;
}
		
	
/*contact 
--------------------------------------------------------*/

.contactDetails p {
    padding-left: 17px;
	font-size: 18px;
}
.contactDetails {
	text-align: left;
}
.contactAddress {background: url("../images/icons/icon-address-grey.png") no-repeat scroll left 3px transparent;}
.contactPhone {background: url("../images/icons/icon-phone-grey.png") no-repeat scroll left 3px transparent;}
.contactEmail {background: url("../images/icons/icon-email-grey.png") no-repeat scroll left 5px transparent;}
.contactSkype {background: url("../images/icons/icon-skype-grey.png") no-repeat scroll left 5px transparent;}
.contactTime {background: url("../images/icons/icon-time-grey.png") no-repeat scroll left 5px transparent;}	
	
	
	
/*form elements*/

textarea {
	height:147px;
	padding:20px;
	margin-bottom:20px; 
	overflow:auto;
}
	
.formSecWrap {
	float: left;
	margin-right: 20px;
}
.formSecWrap2 {
	margin-right: 0px;
}
.formWrap3 {
   margin-right: 0px;
   float: right;
}
input[type="text"], input[type="password"], input[type="email"], textarea, select {
    background: #f4ecd4;
    border: none;
    border-radius: 20px;
    color: #777777;
    display: block;
    margin: 0 0 10px 0;
    outline: medium none;
    padding: 4px 10px;
    width: 410px;
	font-family:'Oswald', sans-serif;
	font-size: 16px;
	font-weight: 300;
}
input[type="text"]:focus, input[type="password"]:focus, input[type="email"]:focus, textarea:focus {
    box-shadow: 0 0 3px rgba(0, 0, 0, 0.2);
    color: #444444;
}

.formWrap {
	margin-top: 60px;
}
.formWrap label{
	margin: 0 0 2px 0;
	display: block;
	text-align: left;
}
.formWrap input[type="submit"]{
	margin: 10px 0 20px 0;
}

a.button,
button,
input[type="submit"],
input[type="reset"],
input[type="button"] {
	background: #BEA353; 
	border-radius: 20px;
	padding: 4px 10px;
	color: #fff;
	display: inline-block;
	font-size: 25px;
	text-decoration: none;
	cursor: pointer;
	width: 300px;
	border: solid 2px;
	margin: 0 0 20px 0;
	line-height: 40px;
	text-align: center;
}
a.button:hover,
button:hover,
input[type="submit"]:hover,
input[type="reset"]:hover,
input[type="button"]:hover {
	color: #BEA353;
	background: #ddd;  
	border: solid 2px;
	box-shadow: 5px 5px 8px #888888;
}

.newsForm input[type="text"], .newsForm input[type="email"]{
	width: 280px;
	padding: 4px 10px;
	display: inline-block;
	margin-right: 10px;
}
.newsForm input[type="submit"]{
	width: auto;
	padding: 4px 10px;
	display: inline-block;
	margin-right: 10px;
}

	
/* Flickr
--------------------------------------------------------*/

.flickrListing {
	margin-bottom: 25px;
	float: right;
    left: -50%;
    position: relative;
    text-align: left;
}
.flickrListingInner {
    left: 50%;
    position: relative;
}
.flickr_badge_image {
    float: left;
    position: relative;
}
.flickrListing img {
	display: block; 
	width: 75px;
	height: 75px;
	border-radius: 50%;
}
.flickrListing a {
	border: 3px solid #D6BC6B;
	padding: 2px;
    transition: all 0.2s ease-in-out;
	margin: 10px;
	float: left;
	border-radius: 50%;
	text-align: center;
}
.flickrListing a:hover {
	border: 3px solid #999;
}

/* Alert Boxes
--------------------------------------------------------*/

.alert {
	padding: 8px 35px 8px 14px;
	margin-bottom: 10px;
	margin-top: 10px;
	clear: left;
	color: #c09853;
	text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
	background-color: #fcf8e3;
	border: 1px solid #fbeed5;
 	border-radius: 3px;
}
.alert h4 {
	margin: 0;
}
.alert p {
	margin: 0;
}
.alert .close {
	position: relative;
	top: -2px;
	right: -35px;
	line-height: 20px;
}
.alert-success {
	color: #fff;
	background-color: #44B513;
	border-color: #BEA353;
	font-weight: 200;
}
.alert-danger,
.alert-error {
	color: #b94a48;
	background-color: #f2dede;
	border-color: #eed3d7;
}
.alert-info {
	color: #3a87ad;
	background-color: #d9edf7;
	border-color: #bce8f1;
}
button.close {
    background: none;
    border: 0 none;
    cursor: pointer;
    padding: 0;
}
.close {
    color: #000000;
    float: right;
    font-size: 20px;
    font-weight: bold;
    line-height: 20px;
    opacity: 0.2;
    text-shadow: 0 1px 0 #FFFFFF;
}

	
/*footer
--------------------------------------------------------*/	

#footer{
	position:relative; 
	overflow:hidden; 
	padding:30px 0 50px 0; 
	z-index:1;
	background:#fff;
}
#footer p.copyright{
	margin-bottom:0;
	margin-top: 20px;
	text-align: center;
	color: #888888;
}




/* Social
--------------------------------------------------------*/

.socialLinks  {
	text-align: center;
}
.socialLinks li {
	display: inline-block;
    margin: 10px 5px 10px 5px;
	width: 60px;
	height: 60px;
	border-radius: 50%;
	background-color: #e1cf96;
    transition: all 0.6s ease-in-out;
}
.socialLinks li a {
    display: block;
    height: 16px;
    width: 20px;
}
.socialLinks li a img{
    display: block;
    height: 30px;
    width: 30px;
	margin: 15px 0 0 15px;
}
.socialLinks li:hover {
    background-color: #D2B55B;
}

.twitter {background-image: url("../images/icons/social-twitter.png");}
.facebook {background-image: url("../images/icons/social-facebook.png");}
.vimeo {background-image: url("../images/icons/social-vimeo.png");}
.youtube {background-image: url("../images/icons/social-youtube.png");}
.skype {background-image: url("../images/icons/social-skype.png");}
.linkedin {background-image: url("../images/icons/social-linkedin.png");}
.pinterest {background-image: url("../images/icons/social-pinterest.png");}
.googleplus {background-image: url("../images/icons/social-google+.png");}
.flickr {background-image: url("../images/icons/social-flickr.png");}
.rss {background-image: url("../images/icons/social-rss.png");}




		
/* MISC
--------------------------------------------------------*/		
		
	.clear{float:none;}			
	
	

/* Media Queries
--------------------------------------------------------*/

/* Smaller than standard 1199 (devices and browsers) */
@media only screen and (max-width: 1199px) {
	
	.parallax.fixed{background-attachment:scroll; background-position: center center;}
}


/* Higher than 960 (desktop devices) */
@media only screen and (min-width: 960px) and (max-width: 1199px) {
	input[type="text"], input[type="password"], input[type="email"], textarea, select {width: 320px;}
	.teamOverlay {width: 210px; height: 210px;}
	.accTitle h2 {font-size: 80px;}
	.accTitle h3 {font-size: 44px;}
	h5 {font-size: 45px;}
   img.call { position: fixed; top: 65px; right: 30px; z-index: 1000;  }
   .logo{position:absolute;left:5%;margin-top: 20px;}
}


/* Smaller than standard 960 (devices and browsers) */
@media only screen and (max-width: 959px) {
	.small {font-size: 30px; font-weight:300;}
	.smallBold {font-size: 30px; font-weight:700;}
	.medium {font-size: 38px; text-transform: uppercase;}
	.mediumBold {font-size: 38px; font-weight:700; text-transform: uppercase;}
	.large {font-size: 50px; text-transform: uppercase;}
	.largeBold {font-size: 50px; font-weight:700; text-transform: uppercase;}
	.author {font-size: 16px; font-weight:300;}
	.cutting { font-size: 100px;}
	.accImage img{width: 100%;}
	#slidecaption h2{font-size: 72px;}
	#slidecaption h2 span{font-size: 84px;}
	h5 {font-size: 35px;}
	img.call { position: fixed; top: 65px; right: 30px; z-index: 1000; width: 150px; height: 50px; } 
	.logo{position:absolute;left:-40px;margin-top: 20px;width:150px;height:70px;}
}


/* Tablet Portrait size to standard 960 (devices and browsers) */
@media only screen and (min-width: 768px) and (max-width: 959px) {
	input[type="text"], input[type="password"], input[type="email"], textarea, select {width: 248px;}
	.newsForm input[type="text"], .newsForm input[type="email"] {width: 210px;}
	.imageClip2 {margin-top: 120px;}
	.teamOverlay {width: 162px; height: 162px;}
	.accTitle h2 {font-size: 60px;}
	.accTitle h3 {font-size: 36px;}
	h5 {font-size: 35px;}
	.logo{position:absolute;left:5%;margin-top: 20px;width:150px;height:70px;}
	img.call { position: fixed; top:65px; right: 30px; z-index: 1000; width: 140px; height: 45px; } 

}


/* All Mobile Sizes (devices and browser) */
@media only screen and (max-width: 767px) {
	.dropmenu { display: block; margin-top: 5px; }
	#nav {display: none;} 
	<!--  #slidecaption { display:none;} -->
	#prevslide, #nextslide{top:120px;}
	.logo {margin-top: -90px; margin-right: -50px; transform: scale(.5);}
	#prevslide {right: 45px; transform: scale(.5);}
	#nextslide {right: 22px; transform: scale(.5);}
	.homepage {margin-bottom: -50px;}
	h1 {font-size: 45px;}	
	.parallax { height: 350px;}
	.cutting { display: none;}
	.accTitle h2 {font-size: 40px;}
	.accTitle h3 {font-size: 24px;}
	.accText {display: none;}
	.accTrigger a {font-size: 20px;}
	.imageClip {background-size: 60%;}
	h5 {font-size: 20px;}
	h2 {font-size: 30px;}
	img.call { position: fixed; top: 65px; right: 30px; z-index: 1000; width: 120px; height: 40px; } 
   .logo{position:absolute;left:-40px;margin-top: 20px;width:150px;height:70px;}
}
	
	
/* Mobile Landscape Size to Tablet Portrait (devices and browsers) */
@media only screen and (min-width: 480px) and (max-width: 767px) {
	input[type="text"], input[type="password"], input[type="email"], textarea, select {width: 400px;}
	.newsForm input[type="text"], .newsForm input[type="email"] {width: 400px;}
	.imageClip2 {margin-top: 152px;}
	.teamOverlay {width: 410px; height: 410px;}
	h5 {font-size: 20px;}
	h1 {font-size: 35px;}
	h2 {font-size: 25px;}
	.logo{position:absolute;left:5%;margin-top: 10px;width:108px;height:50px;}
	img.call { position: fixed; top: 65px; right: 30px; z-index: 1000; width: 120px; height: 36px; } 

}


/* Mobile Portrait Size to Mobile Landscape Size (devices and browsers) */
@media only screen and (max-width: 479px) {
	input[type="text"], input[type="password"], input[type="email"], textarea, select {width: 280px;}
	.imageClip2 {margin-top: 211px;}
	.teamOverlay {width: 290px; height: 290px;}
	h5 {font-size: 20px;}
	h1 {font-size: 35px;}	
	h2 {font-size: 25px;}
	.logo{position:absolute;left:5%;margin-top: 10px;width:108px;height:50px;}
	img.call { position: fixed; top: 65px; right: 30px; z-index: 1000; width: 110px; height: 33px; } 

		 
	}
}

<!-- MY CHANGES -->
#water  { text-align:center; position:absolute;  z-index:1 }
.flagshover {
  -webkit-opacity: 0.5;
  -moz-opacity: 0.5;
  opacity: 0.5;  
    }
.flagshover:hover {
  -webkit-opacity: 1;
  -moz-opacity: 1;
  opacity: 1;
  transition: 0.6s;
      -ms-transform: scale(1.2,1.2); /* IE 9 */
      -webkit-transform: scale(1.2,1.2); /* Chrome, Safari, Opera */
      transform: scale(1.2,1.2); /* Standard syntax */
    }
.justify { 
	text-align:justify;
	font-size:20px;
	margin:0 10px 10px 0;
}   
.left {
   float:left;
} 
.right {
   float:right;
}
.right1 {
   float:right;
   text-align:right;
}
.frame {
   padding:4px;
   background-color:#fff;
   outline:2px solid #D2B55B;
   margin: 0 15px 10px 0;
   box-shadow: 7px 7px 5px #888888;
}
span.gold {
   color: #D2B55B;
   font-weight: 600;
   text-transform:uppercase;
}
hr.gold {                    
   color: #D2B55B;     
   margin-bottom: 30px; 
   }
hr.grey {                    
   color: #FCFCFC;      
   margin: 10px 0 0 0; 
   width: 60%;
}
h4.left1 {
   text-align: left;	
}
.bold {
	font-weight: 400;
	margin:0 10px 10px 0;
}
.framevideo {
   padding:4px;
   background-color:#fff;
   outline:2px solid #D2B55B;
   margin: 10px 0 10px 10px;
   float: right;
   max-width: 100%;  
   box-shadow: 7px 7px 5px #888888; 
}
.facebookLink {      
        -webkit-transform: scale(1);
        -webkit-transition-timing-function: ease-out;
        -webkit-transition-duration: 200ms;
        -moz-transform: scale(1);
        -moz-transition-timing-function: ease-out;
        -moz-transition-duration: 200ms;
}
.facebookLink:hover {             	
    -webkit-transform: scale(1.01,1.15);
    -webkit-transition-timing-function: ease-out;
    -webkit-transition-duration: 400ms;
    -moz-transform: scale(1.01, 1.15);
    -moz-transition-timing-function: ease-out;
    -moz-transition-duration: 400ms;    
}
#homepage1 .container {
    height: 480px;
}
.embed-map {
    position: relative;  
    padding-bottom: 30%; /* 16/9 ratio */
    height: 0;
    overflow: hidden;
   width: 100%;
   margin-bottom: 50px; 
   z-index: 1001; 
}

        #wrap{
            width: 100%;
            max-width:800px;
            height:450px;
            overflow:auto;
            text-align: left;
            margin: 0 auto;
            padding: 1px;
        }

        #wrap h2{
            border-bottom: 1px solid #ccc;
        }

        #wrap p{
            line-height: 17px;
        }

        #wrap #footer{
            border-top: 1px solid #ccc;
            margin-top: 10px;
            text-align: center;
            font-size: 10px;
            padding: 10px;
            color: #aaa;
        }

        #wrap #footer a{
            color: #888;
        }

        #wrap #options{
            float: right;
            border: 1px solid #E5EAF1;
            padding: 5px;
            margin: 0;
            background: #eee;
        }

        #wrap #options li{
            list-style: none;
        }
h1. small {
	font-size: smaller;
}
.scale1 {
     transition: all 1500ms ease-in-out 0s;
         -ms-transform: scale(1,1); /* IE 9 */
         -webkit-transform: scale(1,1); /* Chrome, Safari, Opera */
         transform: scale(1,1); /* Standard syntax */         
         font-weight:0;
       }	
.scale1:hover {
	  transition: all 800ms ease-in-out 0s;
         -ms-transform: scale(1.01,1.05); /* IE 9 */
         -webkit-transform: scale(1.01,1.05); /* Chrome, Safari, Opera */
         transform: scale(1.01,1.05); /* Standard syntax */
         background-color:#FEFAF4;
         font-weight:300;
         box-shadow: 10px 10px 5px #888888; 
       }	
#services .container .scale1{
	padding:10px 0 0 0;
	border-radius: 20px;
}
.zoom {
  /* Webkit for Chrome and Safari */
  -webkit-transform: scale(1, 1); // This is the scale for the normal size of the image.
  -webkit-transition-duration: 600ms;
  -webkit-transition-timing-function: ease-out;
 
  /* Webkit for Mozila Firefox */
  -moz-transform: scale(1, 1);
  -moz-transition-duration: 600ms;
  -moz-transition-timing-function: ease-out;
 
  /* Webkit for IE( Version: 11, 10 ) */
  -ms-transform: scale(1, 1);
  -ms-transition-duration: 600ms;
  -ms-transition-timing-function: ease-out;
}   
.zoom:hover {
    /* Webkit for Chrome and Safari */
    -webkit-transform: scale(1.2, 1.2); // This is the enlarged size scale of the image.
    -webkit-transition-duration: 900ms;
    -webkit-transition-timing-function: ease-out;
    box-shadow: 10px 10px 5px #888888;
   
    /* Webkit for Mozila Firefox */
    -moz-transform: scale(1.2, 1.2);
    -moz-transition-duration: 900ms;
    -moz-transition-timing-function: ease-out;
    box-shadow: 10px 10px 5px #888888;
   
    /* Webkit for IE( Version: 11, 10 ) */
    -ms-transform: scale(1.2, 1.2);
    -ms-transition-duration: 900ms;
    -ms-transition-timing-function: ease-out;
    box-shadow: 10px 10px 5px #888888;
} 
.zoom1 {
  /* Webkit for Chrome and Safari */
  -webkit-transform: scale(1, 1); // This is the scale for the normal size of the image.
  -webkit-transition-duration: 9000ms;
  -webkit-transition-timing-function: ease-out;
 
  /* Webkit for Mozila Firefox */
  -moz-transform: scale(1, 1);
  -moz-transition-duration: 5000ms;
  -moz-transition-timing-function: ease-out;
 
  /* Webkit for IE( Version: 11, 10 ) */
  -ms-transform: scale(1, 1);
  -ms-transition-duration: 5000ms;
  -ms-transition-timing-function: ease-out;
}   
.zoom1:hover {
    /* Webkit for Chrome and Safari */
    -webkit-transform: scale(1.2, 1.2); // This is the enlarged size scale of the image.
    -webkit-transition-duration: 500ms;
    -webkit-transition-timing-function: ease-out;

    /* Webkit for Mozila Firefox */
    -moz-transform: scale(1.2, 1.2);
    -moz-transition-duration: 500ms;
    -moz-transition-timing-function: ease-out;   
     
   
    /* Webkit for IE( Version: 11, 10 ) */
    -ms-transform: scale(1.2, 1.2);
    -ms-transition-duration: 500ms;
    -ms-transition-timing-function: ease-out;
}
.preload{
     display:none!important;
 }   
.darker {
    background-color: #DED0A5;
}
.parallaxbanner{
   width:100%; 
   min-height:200px;  
   padding:0;
   margin:0; 
}
.green {
	color: #20B844;
}
.ptitle{
	position:relative;top:-20px;font-size:30px;
}

.slider1 {
    text-align: center;
    width: 100%;
    height: auto;
}
.darker1 {
	background-color:#023739;
}
.gold {
   color: #D4AF37;
}
.zoom1a {
   transition: transform 1.9s; /* Animation */
   -webkit-transition-timing-function: ease-out;
}
.zoom1a:hover {
  transform: scale(1.1); /* (150% zoom - Note: if the zoom is too large, it will go outside of the viewport) */
  -webkit-transition-timing-function: ease-out;
  border: 2px solid #32A8C4;
  box-shadow: 5px 2px 10px #9c3c09, 10px 10px 8px #8FB42A;
}
.zoom2 {
   transition: transform 1.3s; /* Animation */
   -webkit-transition-timing-function: ease-out;
}

.zoom2:hover {
  transform: scale(1.01); /* (150% zoom - Note: if the zoom is too large, it will go outside of the viewport) */
  -webkit-transition-timing-function: ease-out;
  border: 1px solid #9c3c09;
  z-index:10;
}
.zoom3 {
   transition: transform 1.9s; /* Animation */
   -webkit-transition-timing-function: ease-out;
}

.zoom3:hover {
  transform: scale(1.05); /* (150% zoom - Note: if the zoom is too large, it will go outside of the viewport) */
  -webkit-transition-timing-function: ease-out;
  border: 5px solid #9c3c09;
  z-index:10;
}
.zoom4 {
   transition: transform 1.3s; /* Animation */
   -webkit-transition-timing-function: ease-out;
}

.zoom4:hover {
  transform: scale(1.05); /* (150% zoom - Note: if the zoom is too large, it will go outside of the viewport) */
  -webkit-transition-timing-function: ease-out;
  z-index:10;
}
.zoom5 {
   transition: transform 1.3s; /* Animation */
   -webkit-transition-timing-function: ease-out;
}

.zoom5:hover {
  transform: scale(1.05); /* (150% zoom - Note: if the zoom is too large, it will go outside of the viewport) */
  -webkit-transition-timing-function: ease-out;
  z-index:10;
  border-bottom: 1px solid #9c3c09; 
  box-shadow: none;
}
.zoom6 {
   transition: transform 1.3s; /* Animation */
   -webkit-transition-timing-function: ease-out;
}
.zoom6:hover {
  transform: scale(1.02); /* (150% zoom - Note: if the zoom is too large, it will go outside of the viewport) */
  -webkit-transition-timing-function: ease-out;
  z-index:10;
}
.dez-bnr-inr1 {
    max-height: 900px;
}
.frame2 {
   padding:3px;
   border:1px solid #534633;
   margin: 0 10px 5px 0;
   text-align: center;
}
.rose1 {
   background-color:#e35948;
}
.frame3 {
   padding:3px;
   border:3px solid #534633;
   margin: 15px;
   text-align: center;
}
.frame4 {
   border: 3px solid #E35948
}
/*== >FLIP BOX ==*/
.flip-box {
  background-color: transparent;
  width: 330px;
  height: 360px;
  perspective: 1000px;
}

.flip-box-inner {
  position: relative;
  width: 100%;
  height: 100%;
  text-align: center;
  transition: transform 0.8s;
  transform-style: preserve-3d;
}

.flip-box:hover .flip-box-inner {
  transform: rotateY(180deg);
}

.flip-box-front, .flip-box-back {
  position: absolute;
  width: 100%;
  height: 100%;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.flip-box-back {
  transform: rotateY(180deg);
}
.ptitle {
   font-size:35px;
   color:green;
   font-style: italic;
}
.g-border {
    border-top: 3px solid #D8BD64;
}
.g-border2 {
    border-bottom: 3px solid #8FB42A;
}
.g-border2t {
    border-top: 3px solid #8FB42A;
}
.g-border3 {
    border-bottom: 3px solid #D8BD64;
}
.g-border4 {
    border-top: 3px solid #B34EE9;
}
.g-border4b {
    border-bottom: 3px solid #B34EE9;
}
.g-border5 {
    border-bottom: 3px solid #0D5F8A;
}
.g-border5t {
    border-top: 3px solid #0D5F8A;
}
.g-border6 {
    border-bottom: 3px solid #3E391A;
}
.g-border7 {
    border: 3px solid #D8BD64;
}
.g-border8 {
    border: 3px solid #0D5F8A;
}
.g-border9 {
    border-width: 3px 0px 3px 0px;
    border-style: solid;
    border-color: #029EB7;
}
.g-border10 {
    border: 1px solid #9c3c09;
}
.g-border10t {
    border-top: 1px solid #9c3c09;
}
.g-border10b {
    border-bottom: 1px solid #9c3c09;
}
.g-border10c {
    border: 1px 1px 0px 1px;
    border-style: double;
    border-color: #9c3c09;
}
.g-border11 {
    border-top: 2px solid #0D5F8A;
    border-bottom: 2px solid #0D5F8A;
}
.g-border12 {
    border: 1px solid #999388;
}
.g-border20 {
    border-left: 3px double #AB8272;
}
.g-border21 {
    border-left: 5px double #666623;
    border-right: 5px double #432366;
    padding: 0px 2px; 
}
.g-border22 {
  border-top: 3px double #432366;
  box-shadow: 3px 5px 7px;
}

.yellow1 {
  color: #D8BD64;
}  
.brown1 {
  color: #948277;
}
.red1 {
  color: #9c3c09;
}
.blue1 {
  color: #004378;
  font-weight: 900;
}
.blue2 {
  color: #82E6F6;
}
.orange1 {
  color:#9c3c09;
}
.green1 {
  color:#8FB42A;
}
.stroke1 {
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: #554835;
  text-shadow: 1px 1px 2px #9c3c09, 0 0 1px #000000;
}
.stroke2 {
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: #000;
  text-shadow: 2px 2px 3px #9c3c09, 0 0 1px #000000;
}
.stroke3 {
  -webkit-text-stroke-width: 0.3px;
  -webkit-text-stroke-color: #fff;
}
.stroke3a {
  -webkit-text-stroke-width: 0.1px;
  -webkit-text-stroke-color: #000;
}
.stroke4 {
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: #000;
  text-shadow: 1px 1px 2px #713194, 0 0 1px #000000;
}
.stroke5 {
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: #554835;
  text-shadow: 1px 1px 2px #9c3c09, 0 0 1px #000000;
}
.center1 {
  text-align:center;
}
.gallery-title {
  font-family: Montserrat;
  font-size: 1.1em;
  line-height: 1em;
  font-weight: 500;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 10%;
  padding: 0.5rem;
  color: #fff;
  background: -moz-linear-gradient(left, rgba(156, 60, 9, 0.85), rgba(213, 83, 13, 0.85)) !important;
  background-color: #9c3c09;
  opacity: 0.8;
  border-top: solid #fff 3px;
}

.thumbImage {
  padding: 4px;
  background-color: #D7F7F1;
  box-sizing: border-box;
  border: 2px solid #9c3c09;
  display: block;
  overflow: hidden;
  position: relative;
  transition: all 2.3s ease-in-out 0s;
  width: 100%;
  text-align: center;
}
.thumbImage2 {
  padding: 4px;
  background-color: #D7F7F1;
  box-sizing: border-box;
  border: 2px solid #9c3c09;
  transition: all 2.3s ease-in-out 0s;
  text-align: center;
}
.dez-media1 {
  background-color: #D7F7F1; 
}
.bg-dots1 {
  background-image: url(../images/background/texture.png);
  background-repeat: no-repeat;
}
.bg-orange1 {
    background-color: #9c3c09;
}
.bg-yellow1 {
    background-color: #FFDD00;
}
.bg-brown1 {
    background-color: #8B6122; 
}
.bg-primary2 {
    background-color: #0253FC;
}
.bg-brown2 {
    background-color: #81998A; 
}
.bg-blue3 {
  background-color: #F0F1FF;
}
.bg-yellow2 {
  background-color: #F7EABE;
}
.bg-lines {
  background-image:url(../images/background/vertical.png);
  background-size:100%; 
  background-repeat:repeat;
}
.white1 {
  color: #fff
}
.footer-g {
  font-size: 14px;
  font-weight:100;
} 

.pattern1 {
background-image: conic-gradient(blue, yellow, green)
}
.pattern2 {
   background-color:#8FB42A;
   opacity: 0.4;
}
.font1 {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 100;
}
.font2 {
  font-variant-caps: small-caps;
}
.font2 {
  font-size: 2em;
}
.test2 {
  font-size: 1.5em;
}
.star1 {
  font-style: italic;
}
.title4 {
  font-size: 4em;
}
@media only screen and (max-width: 480px) {
   .test1 {
       font-size: 2.5em;
       line-height: 1em; 
             -webkit-text-stroke-width: 0.5px;
             -webkit-text-stroke-color: #000;
             text-shadow: 1px 1px 1px #9c3c09, 0 0 1px #000000;
   } 
   .test2 {
       font-size: 3em;
       line-height: 1em; 
       font-variant-caps: all-small-caps;
       letter-spacing: 2px;
       font-family: Arial, sans-serif;
       color: blue;
       font-weight:300;
   }       
   .stroke5 {
     -webkit-text-stroke-width: 0.1px;
     -webkit-text-stroke-color: #fff;
     text-shadow: 0px 0px 0px #9c3c09, 0 0 0px #000000;
   } 
   .title4 {
   font-size: 2em;
   }   
}    
.test3 {
  font-size: 2em;
  line-height:1.1em;
}

@media only screen and (max-width: 480px) {
    .test1 {
        font-size: 2.5em;
        line-height: 0.9em; 
              -webkit-text-stroke-width: 0.5px;
              -webkit-text-stroke-color: #000;
              text-shadow: 1px 1px 1px #9c3c09, 0 0 1px #000000;
      } 
    .test3 {
        font-size: 3em;
        line-height: 1em; 
        font-variant-caps: all-small-caps;
        letter-spacing: 2px;
        font-family: Arial, sans-serif;
        color: blue;
        font-weight:300;
      } 
   .stroke3 {
     -webkit-text-stroke-width: 0px;
     -webkit-text-stroke-color: #fff;
}            
   .stroke5 {
     -webkit-text-stroke-width: 0.1px;
     -webkit-text-stroke-color: #fff;
     text-shadow: 0px 0px 0px #9c3c09, 0 0 0px #000000;
   }      
}      
   
.center2 {
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 90%;
  text-align: center;
}   
.width80 {
  max-width:80%;
}  
.services img {
  padding: 3px;
  background-color: #D7F7F1;
  box-sizing: border-box;
  border: 1px solid #9c3c09;    
}
.dez-bnr-inr1 {
    height: 500px;
    background-size: cover;
    background-position: bottom;
    display: table;
    width: 100%;
   text-align: center;
}
.space1 {
  margin: 3px 0px;
} 
#grad1 {
  height: 100%;
  background-color: #D7F7F1; /* For browsers that do not support gradients */
  background-image: linear-gradient(75deg, #029EB7, #D7F7F1, #D7F7F1);
}
#grad2 {
  height: 100%;
  background-color: #D7F7F1; /* For browsers that do not support gradients */
  background-image: linear-gradient(75deg, #B067E6, #D7F7F1, #D7F7F1);
}
#grad3 {
  height: 100%;
  background-color: #D7F7F1; /* For browsers that do not support gradients */
  background-image: linear-gradient(75deg, #D3DA68, #D7F7F1, #D7F7F1);
}
#grad4 {
  height: 100%;
  background-color: #D7F7F1; /* For browsers that do not support gradients */
  background-image: linear-gradient(75deg, #45988E, #D7F7F1, #D7F7F1);
}
#grad5 {
  height: 100%;
  background-color: #D7F7F1; /* For browsers that do not support gradients */
  background-image: linear-gradient(75deg, #AB8272, #D7F7F1, #D7F7F1);
}
#grad6 {
  height: 100%;
  background-color: #D7F7F1; /* For browsers that do not support gradients */
  background-image: linear-gradient(75deg, #B75683, #D7F7F1, #D7F7F1);
}
#grad7 {
  height: 100%;
  background-color: #D7F7F1; /* For browsers that do not support gradients */
  background-image: linear-gradient(75deg, #4FE7FA, #D7F7F1, #D7F7F1);
}
#grad8 {
  height: 100%;
  background-color: #D7F7F1; /* For browsers that do not support gradients */
  background-image: linear-gradient(75deg, #9c3c09, #D7F7F1, #D7F7F1);
}
#grad9 {
  height: 100%;
  background-color: #D7F7F1; /* For browsers that do not support gradients */
  background-image: linear-gradient(75deg, indigo, #D7F7F1, #D7F7F1);
}
#grad11 {
  height: 40px;
  background-color: #90682C; /* For browsers that do not support gradients */
  background-image: linear-gradient(to right, red, orange, yellow, green, blue, violet, indigo);
}
#grad12 {
  background: #3C5361 url(../images/skins/bg-footer-bottom-cool-blue2b.png) left repeat ;
}
#grad12rain {
  background: #3C5361 url(../images/skins/bg-footer-bottom-forest-green.png) left repeat ;
}
#grad12ico {
  background: #3C5361 url(../images/skins/bg-footer-bottom-forest-green.png) left repeat ;
}
#grad12pain {
  background: #3C5361 url(../images/skins/bg-footer-bottom-pain.png) left repeat ;
}
#grad13 {
  height: 40px;
  background-color: #0253FC; /* For browsers that do not support gradients */
  background-image: url(../images/background/bg4aa.png);
  background-image: linear-gradient(to left, #B5885F, #43621B, indigo);
}
#grad14 {
  height: 40px;
  background-color: #0253FC; /* For browsers that do not support gradients */
  background-image: url(../images/background/bg4aa.png);
  background-image: linear-gradient(to right, #43621B, #A04413, #10131D 80%);
}
#grad15 {
  background-color: #fff; /* For browsers that do not support gradients */
  background-image: url(../images/background/bg1s.png);
  background-image: linear-gradient(#fff, #D7F7F1 30%);
}
#grad16 {
  background-color: #DDE3EA; /* For browsers that do not support gradients */
  background-image: linear-gradient(70deg, #DDE3EA 20%, #B6E8FC 50%, #DDE3EA 80% );
}
#grad16a {
  background-color: #DDE3EA; /* For browsers that do not support gradients */
  background-image: linear-gradient(100deg, #DDE3EA 20%, #B6E8FC 50%, #DDE3EA 80% );
}
#grad16b {
  background-color: #DDE3EA; /* For browsers that do not support gradients */
  background-image: linear-gradient(180deg, #DDE3EA, #B6E8FC 20%, #DDE3EA 80% );
}
#grad16c {
  background-color: #DDE3EA; /* For browsers that do not support gradients */
  background-image: linear-gradient(45deg, #DDE3EA, #B6E8FC 20%, #DDE3EA 80% );
}
#grad16d {
  background-color: #DDE3EA; /* For browsers that do not support gradients */
  background-image: radial-gradient( #B6E8FC, #DDE3EA 80% );
}
#grad17 {
  background-color: #DDE3EA; /* For browsers that do not support gradients */
  background-image: url(../images/background/bg1s.png);
  background-image: linear-gradient(220deg, #90A117, #BB5656, #5DA1B3 50%);
}
#grad18 {
  background-color: #D7F7F1; /* For browsers that do not support gradients */
  background-image: url(../images/background/texture.png);
  background-image: radial-gradient( #D7F7F1 50%, #BB5656, #5DA1B3 );
}
#grad19 {
  background-color: #DDE3EA; /* For browsers that do not support gradients */
  background-image: linear-gradient(70deg, #00415D 20%, #00557A, #00415D 70% );
}
.ptitle1 {
   margin:15px;
   font-family: "Comic Sans MS", cursive, sans-serif;
   text-align:center;
   font-size: 1.9em;	
   font-weight:500;
   line-height:1.1em;
   font-style: italic;
}
.shadow1 {
    box-shadow: 3px 3px 8px #000;
}
.shadow4a {
    box-shadow: 0px 1px 3px 0px #000;
}
.shadow3 {
    box-shadow: 3px 3px 8px #4E3463;
}
.repeat1 {
  background-repeat: no-repeat;
  opacity: 0.4;
  margin: 60px 0px 10px 0px;
}
.repeat2 {
  background-repeat: no-repeat;
  opacity: 0.4;
}
.filtered {
  filter: saturate(200%);
}
.hue1 {
  filter: hue-rotate(180deg);
}
.satanim {
  animation: sat 7s infinite;
}
.rotanim {
  animation: rot 17s infinite;
  animation-direction: alternate;
}
.hueanim {
  animation: hue 10s infinite;
}
@keyframes sat {
  50% {
    -webkit-filter: saturate(60%); 
    filter: saturate(300%);    
  } 
}
@keyframes rot {
  0% {transform: rotateZ(0deg);} 
  100% {transform: rotateZ(360deg);}  
}
@keyframes hue {
  50% {filter: hue-rotate(360deg);}
}
.bg-title1 {
  background-image: linear-gradient(10deg, #DDE3EA 30%, #5DA1B3 );
}
.bg-title2 {
  background-image: linear-gradient(10deg, #D7F7F1 30%, #32A8C4 );
}
.bg-title3 {
  background-image: linear-gradient(10deg, #D7F7F1 30%, #43621B );
}
.acod-head {
  color: green;
  background-image: url(../images/background/wave1.png);
}
.acod-head2 {
  color: green;
  background-image: url(../images/background/sinewave2b.png);
  background-repeat: no-repeat;
  background-position: center;
}
.dez-accordion .panel {
  background-image: url(../images/background/texture1.png);
}
.bg-anim {
    background: linear-gradient(10deg, #432366, #E4E0F7, #D7F7F1, yellow );
    background-size: 300% 300%;
    animation: bg-gradient 15s ease infinite;
}

@keyframes bg-gradient {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}
.open1 {
  animation: mymove 2.2s 1;
  animation-fill-mode: forwards;
}

@keyframes mymove {
  from {left: -1300px;}
  to {left: 0%;}
          0%   { transform: scale(0.5,0.5)      translateY(820px); }
          95%  { transform: scale(1,1)      translateY(-57px); }
          100% { transform: scale(1,1)      translateY(0); } 
}
.open2 {
  animation: mymove2 2s 1;
  animation-fill-mode: forwards;
}

@keyframes mymove2 {
        0%   { transform: scale(1,1)      translateY(-700px); opacity: 0%}
        100% { transform: scale(1,1)      translateY(0); opacity: 100% }
}
.open3 {
  animation: mymove3 1.2s 1;
  animation-fill-mode: forwards;
}

@keyframes mymove3 {
          0%   { transform: scale(0.5,0.5)      translateY(-1820px) translateX(1820px);}
          100% { transform: scale(1,1)      translateY(0); } 
}
.open4 {
  animation: mymove4 1.5s 1;
  animation-fill-mode: forwards;
}

@keyframes mymove4 {
          0%   { transform: scale(0.5,0.5)      translateY(1820px) translateX(-2820px);}
          100% { transform: scale(1,1)      translateY(0); } 
}
.reveal {
  position: relative;
  opacity: 0;
}
.reveal.active{
  opacity: 1;
}
.active.fade-bottom {
    animation: fade-bottom 2.5s;
    animation-fill-mode: forwards;
}
@keyframes fade-bottom {
  0% {
    transform: translateY(15px); 
    opacity: 0;
  }
  95%  { transform: scale(1,1)      translateY(0px); }
  100% {
    transform: scale(1,1)      translateY(0);
    opacity: 1;
  }
}
.active.fade-top {
    animation: fade-top 2s;
    animation-fill-mode: forwards;
}
@keyframes fade-top {
  0% {
    transform: translateY(-15px); 
    opacity: 0;
  }
  95%  { transform: scale(1,1)      translateY(0px); }
  100% {
    transform: scale(1,1)      translateY(0);
    opacity: 1;
  }
}
.active.fade-left {
    animation: fade-left 1.3s;
    animation-fill-mode: forwards;
}
@keyframes fade-left {
  0% {
    transform: translateX(-15px); 
    opacity: 0;
  }
  95%  { transform: scale(1,1)      translateY(0px); }
  100% {
    transform: scale(1,1)      translateY(0);
    opacity: 1;
  }
}
.active.fade-right {
    animation: fade-right 1.9s;
    animation-fill-mode: forwards;
}
@keyframes fade-right {
  0% {
    transform: translateX(15px); 
    opacity: 0;
  }
  95%  { transform: scale(1,1)      translateY(0px); }
  100% {
    transform: scale(1,1)      translateY(0);
    opacity: 1;
  }
}
.active.fade-bottom2 {
    animation: fade-bottom2 1.5s;
    animation-fill-mode: forwards;
}
@keyframes fade-bottom2 {
  0% {
    transform: translateY(35px) translateX(135px); 
    opacity: 0;
  }
  95%  { transform: scale(1,1)      translateY(0px); }
  100% {
    transform: scale(1,1)      translateY(0);
    opacity: 1;
  }
}
.active.scale1 {
    animation: scale1 1s;
    animation-fill-mode: forwards;
}
@keyframes scale1 {
  0% {
    transform: scale(0.9,0.9)      translateY(0); 
    filter: hue-rotate(0deg);
    opacity: 0;
  }
  75%  { transform: scale(1.1,1.1)      translateY(0px); }
  100% {
    transform: scale(1,1)      translateY(0);
    filter: hue-rotate(360deg);
    opacity: 1;
  }
}
.dez-accordion.bg-title .acod-head a {
    background-color: #32A8C4;
    background-image: url(../images/background/sinewave2b.png);
}
.dez-accordion.bg-title .acod-head .collapsed {
    background-color: #fff;
    background-image1: none;
}
.background2 {
  background: linear-gradient(to top left, #ff3d00 0%, #0400ff 100% );
  transform: translate3d(0px, 20px, 0) scale(0.95);
  filter: blur(20px);
  opacity: var(0.7);
  transition: opacity 0.3s;
}
.inset-text {
    font-family: Helvetica, Arial, sans-serif;
    font-weight: bold;
    font-size: 6em;
    line-height: 1em;
    /* Shadows are visible under slightly transparent text color */
    color: rgba(10,60,150, 0.8);
    text-shadow: 3px 3px 6px #000, -3px -4px 6px #fff;
}
.text-shadow1 {
  text-shadow: 1px 1px  3px #000;
}
.shadow5 {
  box-shadow: 1px -1px 8px #000;
}
.glow {
  animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
  from {
    text-shadow: 0 0 2px #fff, 0 0 4px #fff, 0 0 8px #e60073, 0 0 12px #e60073, 0 0 16px #e60073, 0 0 20px #3AE2CE, 0 0 24px #3AE2CE;  
  }
  
  to {
    text-shadow: 0 0 20px #fff, 0 0 30px #FFF600, 0 0 40px #FFF600, 0 0 50px #FFF600, 0 0 60px #FFF600, 0 0 70px #ff4da6, 0 0 80px #ff4da6;
  }
}
