@font-face {
    font-family: 'champagne__limousinesbold';
    src: url('../fonts/champagne__limousines_bold-webfont.eot');
    src: url('../fonts/champagne__limousines_bold-webfont.eot?#iefix') format('embedded-opentype'),
         url('../fonts/champagne__limousines_bold-webfont.woff2') format('woff2'),
         url('../fonts/champagne__limousines_bold-webfont.woff') format('woff'),
         url('../fonts/champagne__limousines_bold-webfont.ttf') format('truetype'),
         url('../fonts/champagne__limousines_bold-webfont.svg#champagne__limousinesbold') format('svg');
    font-weight: normal;
    font-style: normal;

}
@font-face {
    font-family: 'champagne__limousinesregular';
    src: url('../fonts/champagne__limousines-webfont.eot');
    src: url('../fonts/champagne__limousines-webfont.eot?#iefix') format('embedded-opentype'),
         url('../fonts/champagne__limousines-webfont.woff2') format('woff2'),
         url('../fonts/champagne__limousines-webfont.woff') format('woff'),
         url('../fonts/champagne__limousines-webfont.ttf') format('truetype'),
         url('../fonts/champagne__limousines-webfont.svg#champagne__limousinesregular') format('svg');
    font-weight: normal;
    font-style: normal;

}
@font-face {
    font-family: 'champagne__limousinesitalic';
    src: url('../fonts/champagne__limousines_italic-webfont.eot');
    src: url('../fonts/champagne__limousines_italic-webfont.eot?#iefix') format('embedded-opentype'),
         url('../fonts/champagne__limousines_italic-webfont.woff2') format('woff2'),
         url('../fonts/champagne__limousines_italic-webfont.woff') format('woff'),
         url('../fonts/champagne__limousines_italic-webfont.ttf') format('truetype'),
         url('../fonts/champagne__limousines_italic-webfont.svg#champagne__limousinesitalic') format('svg');
    font-weight: normal;
    font-style: normal;

}
/****************************************/
/********* Page Transitions CSS *********/
/****************************************/
/*
 * Keyframes
 */

@keyframes fadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translate3d(0, 100%, 0);
  }

  100% {
    opacity: 1;
    transform: none;
  }
}
@keyframes fadeInDown {
  0% {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }

  100% {
    opacity: 1;
    transform: none;
  }
}

@keyframes fadeInRight {
  0% {
    opacity: 0;
    transform: translate3d(100%, 0, 0);
  }

  100% {
    opacity: 1;
    transform: none;
  }
}
@keyframes fadeInLeft {
  0% {
    opacity: 0;
    transform: translate3d(-100%, 0, 0);
  }

  100% {
    opacity: 1;
    transform: none;
  }
}
/*
 * CSS Page Transitions
 * Don't forget to add vendor prefixes!
 */
 /** Basic styles for an animated element */
.m-scene .scene_element {
	animation-duration: 0.25s;
	transition-timing-function: ease-in;
	animation-fill-mode: both;
}
/** An element that fades in */
.m-scene .scene_element--fadein {
  animation-name: fadeIn;
}
/** An element that fades in and slides up */
.m-scene .scene_element--fadeinup {
  animation-name: fadeInUp;
}
.m-scene .scene_element--fadeindown {
  animation-name: fadeInDown;
}
/** An element that fades in and slides from the right */
.m-scene .scene_element--fadeinright {
  animation-name: fadeInRight;
}
.m-scene .scene_element--fadeinleft {
  animation-name: fadeInLeft;
}
/** Reverse "exit" animations */
.m-scene.is-exiting .scene_element {
	animation-direction: alternate-reverse;
}
/****************************/
/********* Main CSS *********/
/****************************/
html, body {
	position: relative;
    height: 100%;
    letter-spacing: 1px;
    /*overflow: hidden;*/
}
body {
	background: #000;
	font-family: 'champagne__limousinesregular', sans-serif;
	overflow-x: hidden;
	overflow-y: scroll;
}
li {
	list-style: none;
}
#Page-Not-Found {
	position: fixed;
	top: 50px;
	width: 100%;
	text-align: center;
}
#Page-Not-Found h2{
	font-size: 50px;
	margin: 10% 0;
}
#logoCircles {
	position: fixed;
	bottom: 10px;
	left: 10px;
}
#bredcrumbs {
	display: block;
	position: fixed;
	left: 60px;
	top: 14px;
	font-size: 22px;
	z-index: 100000;
}
.circles {
	width: 30px;
	height: 30px;
	-webkit-border-radius: 15px;
	-moz-border-radius: 15px;
	border-radius: 15px;
	text-align: center;
}
#circle-1 {
	background: #cb5656;
}
#circle-2 {
	background: #efc0c0;
	margin: 6px 0;
}
#circle-3 {
	background: #5672cb;
}
#contact-link {
	position: absolute;
	bottom: 100px;
	left: 10px;
	z-index: 1000;
}
#contact-link a{
	background: #000;
	color: #fff;
	padding: 10px;
}
#contact-link a:hover {
	background: #fff;
	color: #000;
	border: 1px solid #000;
}
#switch-sides{
	position: absolute;
	bottom: 20px;
	left: 10px;
	z-index: 1000;
}
#switch-sides a{
	background: #000;
	color: #fff;
	padding: 10px;
	-moz-transition-duration: 0.25s;
	-o-transition-duration: 0.25s;
	-webkit-transition-duration: 0.25s;
	transition-duration: 0.25s;
	-moz-transition-timing-function: ease-in;
	-o-transition-timing-function: ease-in;
	-webkit-transition-timing-function: ease-in;
	transition-timing-function: ease-in;
	border: 1px solid #000;
}
#switch-sides a:hover {
	background: #fff;
	color: #000;
}
a {
	color: #fff;
	text-decoration: none;
}
a:hover {
	color: #737373;
}
#header {
	position: fixed;
	top: 0;
	background-color: #000;
	color: #fff;
	width: 50px;
	height: 100%;
	z-index: 1000;
}

#model-name {
	position: fixed;
	width: 100%;
	top: 0px;
	text-align: center;
	font-size: 23px;
	line-height: 23px;
	text-transform: uppercase;
	letter-spacing: 3px;
	padding: 1px;
	background-color: #fff;
	z-index: 1;
}

#header #model-name {
	display: none;
}
#model-name h2 {
	margin: 15px 0 15px;
}
@media (max-width: 480px) {
	#header #model-name {
		display: block !important;
	}
	#model-name.in-content {
		display: none;
	}
	#model-name h2 {
		margin: 22px 0 0;
	}
}

#logo {
	margin: 6px auto;
	width: 600px;
}
#footer {
	position: fixed;
	bottom: 0;
	color: #fff;
	width: 100%;
	height: 42px;
	z-index: 1000;
}
#social-icons {
	display: inline-block;
	float: right;
	margin: 3px 20px 10px 0;
}
#social-icons a{
	display: inline-block;
	width: 30px;
	height: 30px;
	margin-right: 5px;
	-moz-transition-duration: 0.25s;
	-o-transition-duration: 0.25s;
	-webkit-transition-duration: 0.25s;
	transition-duration: 0.25s;
	-moz-transition-timing-function: ease-in;
	-o-transition-timing-function: ease-in;
	-webkit-transition-timing-function: ease-in;
	transition-timing-function: ease-in;
}
#social-icons a:hover {
	background: #fff;
}
#copyrights {
	display: inline-block;
	float: left;
	font-size: 11px;
	line-height: 5px;
	margin: 10px 0 0 60px;
	text-transform: uppercase;
}
a svg path {
	fill: #fff;
	-moz-transition-duration: 0.25s;
	-o-transition-duration: 0.25s;
	-webkit-transition-duration: 0.25s;
	transition-duration: 0.25s;
	-moz-transition-timing-function: ease-in;
	-o-transition-timing-function: ease-in;
	-webkit-transition-timing-function: ease-in;
	transition-timing-function: ease-in;
}
a:hover svg path {
	fill: #000;
}
@media only screen and (max-width: 768px){
	#logo {
		width: 450px;
		margin: 12px auto 0 auto;
	}
}
@media only screen and (max-width: 570px){
	#logo {
		width: 350px;
		margin: 12px auto 0 auto;
	}
	#model-name h2 {
		font-size: 20px;
		letter-spacing: 1px;
	}
}
@media only screen and (max-width: 480px){
	#header {
		width: 100%;
		height: 50px;
		z-index: 1000;
	}
	#model-name {
		top:50px;
	}
	#logoCircles {
		position: fixed;
		bottom: auto;
		left: auto;
		right: 11px;
		top: 11px;
	}
	.circles {
		 float: right;
		 display: inline-block;
		 width: 25px;
		 height: 25px;
		 border-radius: 12.5px;
	}
	#circle-2 {
		margin: 0px 4px;
	}
	#copyrights {
		font-size: 7px;
		margin: 10px 0 0 5px;
	}
	#social-icons {
		margin: 0 20px 5px 0;
	}
	#social-icons i{
		font-size: 20px;
		margin: 10px 0 0 0;
	}
}
/****************************/
/***** Default Page CSS *****/
/****************************/
.default-content {
	position: absolute;
	top: 0;
	width: 100%;
	height: 95%;
	z-index: 0;
}
.contact {
	margin: 0 auto;
	width: 380px;
	overflow: visible;
	padding-bottom: 2%;
}
.default-entry {
	margin: 0 auto;
	width: 50%;
	overflow: visible;
	padding-bottom: 2%;
}
.default-content a{
	color: #000;
}
.default-entry img {
	width: 100%;
	height: 66.666%;
}
.default-entry h2{
	color: #fff;
	text-transform: uppercase;
	letter-spacing: 1.2px;
	text-align: left;
	font-size: 32px;
	line-height: 23px;
	margin: 15px 0px;
}
/* contact form */
input[type="submit"] {
	background-color: #000;
	color: #fff;
	padding: 10px 15px;
	border-radius: 0;
	border: 0;
	font-size: 20px !important;
	letter-spacing: 1px;
	text-transform: uppercase;
	-webkit-transition: all 100ms cubic-bezier(0.250, 0.250, 0.750, 0.750);
	-moz-transition: all 100ms cubic-bezier(0.250, 0.250, 0.750, 0.750);
    -o-transition: all 100ms cubic-bezier(0.250, 0.250, 0.750, 0.750);
    transition: all 100ms cubic-bezier(0.250, 0.250, 0.750, 0.750); /* linear */
}
input[type="submit"]:hover {
	background-color: #fff;
	color: #000;
	border: 1px solid #000;
	-webkit-transition: all 100ms cubic-bezier(0.250, 0.250, 0.750, 0.750);
	-moz-transition: all 100ms cubic-bezier(0.250, 0.250, 0.750, 0.750);
    -o-transition: all 100ms cubic-bezier(0.250, 0.250, 0.750, 0.750);
    transition: all 100ms cubic-bezier(0.250, 0.250, 0.750, 0.750); /* linear */
}
.gform_wrapper input[type="text"], .gform_wrapper input[type="url"], .gform_wrapper input[type="email"], .gform_wrapper input[type="tel"], .gform_wrapper input[type="number"], .gform_wrapper input[type="password"]{
	padding-left: 5px !important;
	font-size: 15px !important;
	letter-spacing: 1px !important;
}
input[type="text"] {
	text-transform: capitalize;
}
input:focus {
    border:2px solid #000; 
}
.gfield_required {
	color: #000 !important;
}
.gform_wrapper .top_label input.medium, .gform_wrapper .top_label select.medium {
    width: 90% !important;
}
.gform_wrapper li.gfield.gfield_error.gfield_contains_required label.gfield_label, .gform_wrapper li.gfield.gfield_error.gfield_contains_required div.ginput_container {
    margin-top: 0 !important;
}
.gform_wrapper .top_label .gfield_label {
    margin: 0 !important;
}
.gform_wrapper div.validation_error {
    margin: 0 !important;
}
.gform_wrapper .gform_footer {
    margin: 0 !important;
}
.gform_wrapper .ginput_container + .gfield_description.validation_message {
    margin-top: 0 !important;
}
.gform_wrapper .top_label .gfield_description.validation_message, .gform_wrapper .gfield_description.validation_message {
    padding: 0px !important;
}
@media screen and (max-width: 480px) {
	.default-entry {
		width: 90%;
	}
	.contact {
		width: 90%;
	}
}
.jspDrag {
	background-color: #fff;
}
/* modal frame */
#cboxLoadedContent {
    border: none !important;
    background: none repeat scroll 0% 0% #FFF;
}
#cboxClose {
	background: url("../src/photoswipe/newnav.svg") no-repeat scroll center top transparent !important;
	top: 0px !important;
	right: 0px !important;
	background-position: 0px 0px !important;
	width: 44px !important;
	height: 44px !important;
}
#cboxClose:hover {
	opacity: 0.5;
}
/****************************/
/******* Homepage CSS *******/
/****************************/
#center-logo {
  position: absolute;
  bottom: 10%;
  left: 50%;
  width: 30%;
  z-index: 100;
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
#center-logo img {
  width: 100%;
}

@media screen and (max-width: 1300px) {
  #center-logo {
    width: 40%;
  }
}
@media screen and (max-width: 590px) {
  #center-logo {
    width: 50%;
  }
}
.side {
  position: relative;
  font-family: "champagne__limousinesregular", sans-serif;
  font-size: 40px;
  display: inline-block;
  width: 50%;
  height: 100%;
  text-align: center;
}
.side a {
  text-decoration: none;
}
.side h2 {
  position: absolute;
  top: 50%;
  left: 50%;
  letter-spacing: 2px;
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -moz-transition-duration: 0.25s;
  -o-transition-duration: 0.25s;
  -webkit-transition-duration: 0.25s;
  transition-duration: 0.25s;
  -moz-transition-timing-function: ease-in;
  -o-transition-timing-function: ease-in;
  -webkit-transition-timing-function: ease-in;
  transition-timing-function: ease-in;
  margin: 0 auto;
  border: 2px solid;
  width: 480px;
  padding: 0.3em;
}
.side h2:before, .side h2:after {
  position: absolute;
  top: 50%;
  -moz-transform: rotate(45deg) translateY(-50%);
  -ms-transform: rotate(45deg) translateY(-50%);
  -webkit-transform: rotate(45deg) translateY(-50%);
  transform: rotate(45deg) translateY(-50%);
  -moz-transition-duration: 0.25s;
  -o-transition-duration: 0.25s;
  -webkit-transition-duration: 0.25s;
  transition-duration: 0.25s;
  -moz-transition-timing-function: ease-in;
  -o-transition-timing-function: ease-in;
  -webkit-transition-timing-function: ease-in;
  transition-timing-function: ease-in;
  content: '';
  width: 20px;
  height: 20px;
}
.side h2:before {
  left: -18px;
}
.side h2:after {
  right: -4px;
}
.side#left-side {
  float: left;
  background: #000;
}
.side#left-side a h2 {
  border-color: #fff;
  color: #fff;
}
.side#left-side a h2:before, .side#left-side a h2:after {
  background: #fff;
}
.side#left-side a h2:hover {
  background: #fff;
}
.side#left-side a h2:hover:before {
  left: -34px;
}
.side#left-side a h2:hover:after {
  right: -20px;
}
.side#left-side a:hover h2 {
  color: #000;
}
.side#right-side {
  float: right;
  background: #fff;
}
.side#right-side a h2 {
  color: #000;
  border-color: #000;
}
.side#right-side a h2:before, .side#right-side a h2:after {
  background: #000;
  -moz-border-radius: 10px;
  -webkit-border-radius: 10px;
  border-radius: 10px;
}
.side#right-side a h2:hover {
  background: #000;
}
.side#right-side a h2:hover:before {
  left: -30px;
}
.side#right-side a h2:hover:after {
  right: -16px;
}
.side#right-side a:hover h2 {
  color: #fff;
}
@media screen and (max-width: 1300px) {
  .side {
    font-size: 30px;
  }
  .side h2 {
    width: 350px;
  }
  .side h2:before, .side h2:after {
    width: 15px;
    height: 15px;
  }
  .side h2:before {
    left: -13px;
  }
  .side h2:after {
    right: -4px;
  }
  .side#left-side a h2:hover:before {
    left: -25px;
  }
  .side#left-side a h2:hover:after {
    right: -16px;
  }
  .side#right-side a h2:hover:before {
    left: -23px;
  }
  .side#right-side a h2:hover:after {
    right: -13px;
  }
}
@media screen and (max-width: 940px) {
  .side {
    font-size: 20px;
  }
  .side h2 {
    width: 250px;
  }
  .side h2:before, .side h2:after {
    width: 10px;
    height: 10px;
  }
  .side h2:before {
    left: -9.5px;
  }
  .side h2:after {
    right: -2px;
  }
  .side#left-side a h2:hover:before {
    left: -18px;
  }
  .side#left-side a h2:hover:after {
    right: -11px;
  }
  .side#right-side a h2:hover:before {
    left: -17px;
  }
  .side#right-side a h2:hover:after {
    right: -9.5px;
  }
}
@media screen and (max-width: 590px) {
  .side {
    font-size: 8px;
  }
  .side h2 {
    width: 120px;
  }
  .side h2:before, .side h2:after {
    width: 8px;
    height: 8px;
  }
  .side h2:before {
    left: -7.5px;
  }
  .side h2:after {
    right: -1.5px;
  }
  .side#left-side a h2:hover:before {
    left: -15px;
  }
  .side#left-side a h2:hover:after {
    right: -9px;
  }
  .side#right-side a h2:hover:before {
    left: -14px;
  }
  .side#right-side a h2:hover:after {
    right: -8.5px;
  }
}
/********************************/
/********** Gallery CSS *********/
/********************************/
.gallery-content {
	display: none;
	opacity: 0;
	position: fixed;
	top: 80px;
	overflow: auto;
	width: 100%;
	height: 665px;
	z-index: 0;
}
.content{
	overflow: auto;
	position: relative;
	padding: 20px;
	margin: 10px;
	width: 740px;
	max-width: 100%;
	height: 400px;
	-webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box;
}
.content img{
	margin: 0;
	-webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box;
	padding: 3px;
}
.horizontal-images.content ul, .vertical-images.content ul{
	margin: 0;
	padding: 0;
	list-style: none;
	overflow: hidden;
}
.horizontal-images.content li{
	margin: 0;
	float: left;
}
.mCSB_dragger_bar {
	background-color: #000 !important;
}
.mCSB_scrollTools.mCSB_scrollTools_horizontal .mCSB_draggerRail {
    height: 6px !important;
    border-radius: 0;
}
.mCSB_scrollTools.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar {
    height: 8px !important;
    border-radius: 0;
}
.mCSB_scrollTools .mCSB_buttonLeft {
    background-position: 0px 0px !important;
    -moz-transform: scaleX(-1);
    -o-transform: scaleX(-1);
    -webkit-transform: scaleX(-1);
    transform: scaleX(-1);
    filter: FlipH;
    -ms-filter: "FlipH";
}
.mCSB_scrollTools .mCSB_buttonRight {
    background-position: 0px 0px !important;
}
.mCSB_scrollTools.mCSB_scrollTools_horizontal {
    height: 20px !important;
}
.mCSB_scrollTools {
    width: 88%;
    margin: 0px 6%;
}
.mCSB_scrollTools .mCSB_buttonDown, .mCSB_scrollTools .mCSB_buttonLeft, .mCSB_scrollTools .mCSB_buttonRight, .mCSB_scrollTools .mCSB_buttonUp {
    background-image: url('../src/custom-scrollbar/arrow.svg') !important;
    background-repeat: no-repeat;
    opacity: 0.4;
}

.mCSB_horizontal.mCSB_inside > .mCSB_container {
    margin-bottom: 20px;
}
.mCSB_scrollTools.mCSB_scrollTools_horizontal {
    bottom: auto;
    margin-bottom: 5px;
}
.preloader {
	position: absolute;
	top: 0;
	left: 0;
	min-height: 900px;
	width: 100%;
	z-index: 100;
	background: #000;
}
.loading {
	position: absolute;
	top: 50%;
	left: 50%;
	opacity: 1;
	-moz-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
    background: url("../images/smm-loader-dark.gif") no-repeat scroll center center #000;
    background-size: 150px;
    width: 100%;
	height: 50px;
    margin: 0 auto;
}
/********************************/
/********* MMENU CSS ************/
/********************************/
html.mm-opened.mm-dark .mm-page {
	box-shadow: none;
}
#hamburger
{
	display: block;
	width: 40px;
	height: 36px;
	margin: 6px;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 10;
}
#hamburger:before,
#hamburger:after,
#hamburger span
{
	background: #fff;
	content: '';
	display: block;
	width: 30px;
	height: 6px;
	position: absolute;
	left: 5px;
}
#hamburger:before
{
	top: 5px;
}
#hamburger:after
{
	bottom: 5px;
}
#hamburger span
{
	top: 50%;
	margin-top: -3px;
}
/* Hamburger animation */
#hamburger:before,
#hamburger:after,
#hamburger span
{
	transition: none 0.5s ease 0.5s;
	transition-property: transform, top, bottom, left, opacity;
}
html.mm-opening #hamburger span
{
	left: -30px;
	opacity: 0;
}
html.mm-opening #hamburger:before
{
	transform: rotate( 45deg );
	top: 15px;
}
html.mm-opening #hamburger:after
{
	transform: rotate( -45deg );
	bottom: 15px;
}
.mm-header {
	padding: 0 !important;
	border-bottom: 0 !important;
}
.mm-header .mm-title {
    padding-top: 5px !important;
    line-height: 25px;
}
.mm-menu {
	background: #fff;
	color: #000;
	border-right: 1px solid #fff;
	z-index: 0 !important;
}
.mm-menu.mm-dark .mm-list > li:after {
    border-color: #000;
}
.mm-menu ul li a{
	text-transform: uppercase;
	font-size: 20px;
	color: #000;
	-webkit-transition: all 100ms cubic-bezier(0.250, 0.250, 0.750, 1);
	-moz-transition: all 100ms cubic-bezier(0.250, 0.250, 0.750, 1);
    -o-transition: all 100ms cubic-bezier(0.250, 0.250, 0.750, 1);
    transition: all 100ms cubic-bezier(0.250, 0.250, 0.750, 1); /* linear */
}
.mm-menu ul li a:hover {
	color: #737373;
	-webkit-transition: all 100ms cubic-bezier(0.250, 0.250, 0.750, 0.750);
	-moz-transition: all 100ms cubic-bezier(0.250, 0.250, 0.750, 0.750);
    -o-transition: all 100ms cubic-bezier(0.250, 0.250, 0.750, 0.750);
    transition: all 100ms cubic-bezier(0.250, 0.250, 0.750, 0.750); /* linear */
}
.mm-header span {
	text-transform: uppercase;
	font-size: 20px;
	color: #000;
}
.mm-menu.mm-white .mm-header {
	border: none;
}
.mm-menu .mm-list > li > a.mm-subopen:after, .mm-menu .mm-list > li > a.mm-subclose:before {
    border-color: #fff;
}
.mm-menu .mm-list > li > a.mm-subclose {
    background: none repeat scroll 0% 0% rgba(0, 0, 0, 0.1);
    color: #fff;
}
.mm-menu .mm-list > li > a.mm-subopen:hover, .mm-menu .mm-list > li > a.mm-subclose:hover {
	color: #000;
}
/******************************/
/***** Portfolio Page CSS *****/
/******************************/
#ajaxwarpper {
	color: #000;
}
#ajaxwarpper a {
	color: #000;
	text-decoration: underline;
}
#ajaxwarpper a:hover {
	text-decoration: none;
}
#close-ajax-folio:hover {
	cursor: pointer;
}
#close-ajax-folio i{
	transition:All 0.500s ease;
	-webkit-transition:All 0.500s ease;
	-moz-transition:All 0.500s ease;
	-o-transition:All 0.500s ease;
	transform: rotate(0deg) scale(1) skew(0deg) translate(0px);
	-webkit-transform: rotate(0deg) scale(1) skew(0deg) translate(0px);
	-moz-transform: rotate(0deg) scale(1) skew(0deg) translate(0px);
	-o-transform: rotate(0deg) scale(1) skew(0deg) translate(0px);
	-ms-transform: rotate(0deg) scale(1) skew(0deg) translate(0px);
}
#close-ajax-folio i:hover{
	transform: rotate(180deg) scale(1) skew(0deg) translate(0px);
	-webkit-transform: rotate(180deg) scale(1) skew(0deg) translate(0px);
	-moz-transform: rotate(180deg) scale(1) skew(0deg) translate(0px);
	-o-transform: rotate(180deg) scale(1) skew(0deg) translate(0px);
	-ms-transform: rotate(180deg) scale(1) skew(0deg) translate(0px);
}
#close-ajax-folio {
	position: absolute;
	top: 0;
	right: -50px;
	display: block;
    width: 40px;
    height: 36px;
    z-index: 0;
}
#close-ajax-folio:before, #close-ajax-folio:after{
    background: none repeat scroll 0% 0% #000;
    content: "";
    display: block;
    width: 30px;
    height: 6px;
    position: absolute;
}
#close-ajax-folio:after {
    transform: rotate(-45deg);
    bottom: 15px;
}
#close-ajax-folio:before {
    transform: rotate(45deg);
    top: 15px;
}
#close-ajax-folio:before, #close-ajax-folio:after{
    transition-duration: 0.1s;
    transition-timing-function: linear;
    transition-delay: 0s;
    transition-property: transform, top, bottom, left, opacity;
}
#close-ajax-folio:hover:before {
	transform: rotate(0deg);
}
#close-ajax-folio:hover:after {
	transform: rotate(0deg);
}
#folio-main{
	position: relative;
	margin: 0 auto;
}
.folio-content {
	position: fixed;
	top: 0px;
	overflow: auto;
	width: 100%;
	height: 100%;
	z-index: 0;
	-webkit-overflow-scrolling: touch;
}
.folio-content #folio-grid .folio-thumb-container:last-child {
	margin-bottom: 122px;
}
.folio-content h2 {
	color: #fff !important;
	text-transform: uppercase;
	margin: 1%;
	font-size: 23px;
	line-height: 23px;
	letter-spacing: 2px;
	text-align: center;
}
#folio-title {
	text-align: center;
	font-size: 23px;
	line-height: 31px;
	text-transform: uppercase;
	letter-spacing: 3px;
}
#folio-grid {
	width: 75%;
	height: 100%;
	margin: 0 auto;
}
.folio-thumb-container {
	position: relative;
	float: left;
	margin: 1.5%;
	width: 22%;
}

@media only screen and (max-width: 1224px) {
	.folio-thumb-container {
		margin: 1%;
		width: 31.3%;
	}
}
@media only screen and (max-width: 768px) {
	.folio-thumb-container {
		margin: 1%;
		width: 48%;
	}
	#folio-title {
		font-size: 12px;
		line-height: 18px;
		letter-spacing: 2px;
	}
	#close-ajax-folio {
		right: -25px !important;
		top:-5px;
	}	
	#close-ajax-folio:before, #close-ajax-folio:after{
	    width: 20px;
	    height: 3px;
	}
	#close-ajax-folio:after {
	    bottom: 18px;
	}
	
}
@media only screen and (max-width: 480px) {
	.folio-thumb-container {
		margin: 1%;
		width: 98%;
	}
	.folio-content {
		top: 50px;
	}
}
.folio-thumb-container img{
	width: 100%;
	height: auto;
}
.folio-caption {
	position: absolute;
	bottom: 10px;
	padding: 5px;
	text-align: left;
	font-size: 13px;
	text-transform: uppercase;
	background-color: #000;
	color: #fff;
}
.folio-color img{
	filter: url("data:image/svg+xml;utf8,<svg xmlns=\'http://www.w3.org/2000/svg\'><filter id=\'grayscale\'><feColorMatrix type=\'matrix\' values=\'1 0 0 0 0, 0 1 0 0 0, 0 0 1 0 0, 0 0 0 1 0\'/></filter></svg>#grayscale");
    -webkit-filter: grayscale(0%);
    -webkit-transition: all 600ms cubic-bezier(0.250, 0.250, 0.750, 0.750);
   -moz-transition: all 600ms cubic-bezier(0.250, 0.250, 0.750, 0.750);
     -o-transition: all 600ms cubic-bezier(0.250, 0.250, 0.750, 0.750);
        transition: all 600ms cubic-bezier(0.250, 0.250, 0.750, 0.750); /* linear */

-webkit-transition-timing-function: cubic-bezier(0.250, 0.250, 0.750, 0.750);
   -moz-transition-timing-function: cubic-bezier(0.250, 0.250, 0.750, 0.750);
     -o-transition-timing-function: cubic-bezier(0.250, 0.250, 0.750, 0.750);
        transition-timing-function: cubic-bezier(0.250, 0.250, 0.750, 0.750); /* linear */
}
.scroll-pane
{
	width: 100%;
	height: 100%;
	overflow: auto;
}
/*********************************/
/***** fullscreen slider CSS *****/
/*********************************/
.credits-bottom-left {
	position: absolute;
	bottom: 30px;
	left: 60px;
	color: #fff;
	z-index: 1100;
}
.credits-bottom-left h2 {
	text-transform: uppercase;
	margin: 0;
	font-size: 15px;
}
.credits-bottom-left p {
	margin: 0;
	font-size: 13px;
}
.content-wrap {
	position: fixed;
	top: 0;
	left: 0;
	font-size: 15px;
	width: 30%;
	height: 100%;
	text-align: center;
	margin: 36px 0 0 55px;
	z-index: 1000;
}
.content-wrap h2 {
	position: relative;
	letter-spacing: 2px;
	-moz-transition-duration: 0.25s;
	-o-transition-duration: 0.25s;
	-webkit-transition-duration: 0.25s;
	transition-duration: 0.25s;
	-moz-transition-timing-function: ease-in;
	-o-transition-timing-function: ease-in;
	-webkit-transition-timing-function: ease-in;
	transition-timing-function: ease-in;
	border: 2px solid;
	width: 200px;
	text-transform: uppercase;
	border-color: #fff;
	color: #fff;
}
.content-wrap h2 a {
	width: 100%;
	height: 100%;
	padding: 0.3em;
	display:block;
}
.content-wrap h2:hover {
  background: #fff;
}
.content-wrap h2 a:hover { 
	color: #000;
}

@media only screen and (max-width: 480px) {
	#navigation {
		/*bottom: 50px !important;*/
		top: 55px !important;
	}
	.credits-bottom-left {
		left: 5px;
		font-size: 13px;
	}
	.credits-bottom-left h2 {
		font-size: 13px;
	}
	.credits-bottom-left p {
		font-size: 11px;
	}
	.content-wrap {
		margin-top: 150px;
	}
	.content-wrap a h2 {
		width: 182px;
		font-size: 25px;
	}
	.content-wrap a h2:before, .content-wrap a h2:after {
		width: 13px;
		height: 13px;
	}
	.content-wrap a h2:before {
	  left: -12px;
	}
	.content-wrap a h2:after {
	  right: -3px;
	}
	.content-wrap a h2:hover:before {
	  left: -23px;
	}
	.content-wrap a h2:hover:after {
	  right: -14px;
	}
}