


/*html {
	overflow: hidden;
}

.wrapper {
  width: 100%;
  height: 100%;
	position: fixed;
	overflow: auto;
	overflow-x: auto;
}

.wrapper.hide{
  overflow: auto;
  width: 100%;
  height: 100%;
	position: fixed;
}

body {
	overflow:hidden;
}*/

/* Isotope and sliphover use the display property so instead of hiding it
completely, just make the container "invisible".*/
.wrapper.hide #content{
	height: 0;overflow: hidden; }

#menu-button.open #nav-button span:nth-child(1) {
	-webkit-transform: rotate(45deg);
	-moz-transform: rotate(45deg);
	-o-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	transform: rotate(45deg);
	position: relative;
	top: 2px;
	-webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

#menu-button.open #nav-button span:nth-child(2) {
	-webkit-transform: rotate(-45deg);
	-moz-transform: rotate(-45deg);
	-o-transform: rotate(-45deg);
	-ms-transform: rotate(-45deg);
	transform: rotate(-45deg);
	position: relative;
	top: -2px;
	-webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

#menu-button.open #nav-button span:nth-child(3) {
	display: none;
}
/*

header {
	position: fixed !important;
}
*/

#ajax-content {
	height: 100%;
	width: 100%;
	background: rgba(0, 0, 0, 0.95);
	position: fixed;
	opacity: 0;
	overflow: hidden;
	-webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
	z-index: 0;
	-webkit-transition-delay: 0.2s;
	transition-delay: 0.2s;
	visibility: hidden;
}

#ajax-content.visible {
	height: 100%;
	z-index: 9999;
	opacity: 1;
	visibility: visible;
	-webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

#ajax-content .ajax-sidebar {
	width: 0;
	background: #fff;
	height: 100%;
	float: right;
	-webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
	z-index: 999;
}



#ajax-content.visible .ajax-sidebar {
	float: right;
	width: 380px;
	-webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
	-webkit-transition-delay: 0.3s; /* Safari */
	transition-delay: 0.3s;
}

.ajax-sidebar #project-title { padding: 55px; margin-top: 20px; width: 380px; }



#ajax-content .ajax-slider {
	opacity: 0;
	float: left;
	width: auto;
	height: 100%;
}
  #ajax-content .ajax-loading {
    position: absolute;
    left: 0;
    width: 100%;
    height: 100%;
  }
  #ajax-content .ajax-loading.add-loading-gif {
    background-image: url(../images/loading.gif);
    background-repeat: no-repeat;
    background-position: center center;
  }

/* CSS Animation: Loading icon */
.sk-wave {
  margin: 40px auto;
  width: 50px;
  height: 40px;
  text-align: center;
  font-size: 10px;

  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: -20px;
  margin-left: -25px;
}
  .sk-wave .sk-rect {
    background-color: #fff;
    height: 100%;
    width: 6px;
    display: inline-block;
    -webkit-animation: sk-waveStretchDelay 1.2s infinite ease-in-out;
            animation: sk-waveStretchDelay 1.2s infinite ease-in-out; }
  .sk-wave .sk-rect1 {
    -webkit-animation-delay: -1.2s;
            animation-delay: -1.2s; }
  .sk-wave .sk-rect2 {
    -webkit-animation-delay: -1.1s;
            animation-delay: -1.1s; }
  .sk-wave .sk-rect3 {
    -webkit-animation-delay: -1s;
            animation-delay: -1s; }
  .sk-wave .sk-rect4 {
    -webkit-animation-delay: -0.9s;
            animation-delay: -0.9s; }
  .sk-wave .sk-rect5 {
    -webkit-animation-delay: -0.8s;
            animation-delay: -0.8s; }

@-webkit-keyframes sk-waveStretchDelay {
  0%, 40%, 100% {
    -webkit-transform: scaleY(0.4);
            transform: scaleY(0.4); }
  20% {
    -webkit-transform: scaleY(1);
            transform: scaleY(1); } }

@keyframes sk-waveStretchDelay {
  0%, 40%, 100% {
    -webkit-transform: scaleY(0.4);
            transform: scaleY(0.4); }
  20% {
    -webkit-transform: scaleY(1);
            transform: scaleY(1); } }


	#ajax-content.visible .ajax-slider {
		width: auto;
		float: left;
		height: 100%;
		opacity: 1;
		-webkit-transition: all 0.6s ease-in-out;
		-moz-transition: all 0.6s ease-in-out;
		-o-transition: all 0.6s ease-in-out;
		transition: all 0.6s ease-in-out;
		-webkit-transition-delay: 0.4s; /* Safari */
		transition-delay: 0.4s;
	}

  #ajax-content.visible .ajax-slider {
    text-align: center;
  }

	.ajax-close { width: 48px; height: 48px; display: inline-block; position: absolute; top: 28px; right: 28px; /*background: #888;*/ cursor: pointer; -webkit-transition: all 0.3s ease-in-out; -moz-transition: all 0.3s ease-in-out; -o-transition: all 0.3s ease-in-out; transition: all 0.3s ease-in-out; z-index: 999999; background: url(../images/icons/bg-close@2x.png) center no-repeat #fff; background-size: 36px 36px; }

	.ajax-prev {
		background: url(../images/icons/bg-prev.png) center no-repeat #fff;
		background-size: 48px 48px;
		display: block;
		position: absolute;
		width: 54px;
		height: 74px;
		top: 50%;
		margin-top: -34px;
		left: 25px;
	}
  .ajax-next,
  .ajax-prev {
    z-index: 999;
  }
	.ajax-next {
		background: url(../images/icons/bg-next.png) center no-repeat #fff;
		background-size: 48px 48px;
		display: block;
		position: absolute;
		width: 54px;
		height: 74px;
		top: 50%;
		margin-top: -34px;
		right: 25px;
	}

	#project-slider {
		position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
	}

  #project-slider img {
    max-width: 80%;
    max-height: 80%;
  }

  #project-slider img,
  #project-slider iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translateX(-50%) translateY(-50%);
    -ms-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
  }
  #project-slider iframe:-webkit-full-screen {
    transform: none;
  }
  #project-slider iframe::-moz-full-screen {
    transform: none;
  }
  #project-slider iframe:fullscreen{
    transform: none;
  }
  .is-mobile #project-slider iframe {
    left:0;
    top:0;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
  @media only screen and (max-width: 768px) {
    .is-mobile #project-slider iframe {
      height: 100% !important;
    }
    .ajax-slider {
      height: 100% !important;
      height: -webkit-calc(100% - 100px) !important;
      height: -moz-calc(100% - 50px) !important;
      height: calc(100% - 50px) !important;
    }
  }
	.ajax-more {
		display: none;
	}


@media only screen and (max-width : 768px) {
	.ajax-more {
		display: block;
		width: 100%;
		position: absolute;
		bottom: 0;
		height: 50px;
		background: #333;
		color: #fff;
		font-family: 'Merriweather', Georgia, "Times New Roman", Times, serif;
		text-align: center;
		padding-top: 15px;
		cursor: pointer;
		z-index: 99999;
	}

	#ajax-content.visible .ajax-sidebar {
		position: absolute;
		width: 0;
		right: 0;
	}

	#ajax-content.visible .ajax-sidebar.collapsed {
		width: 100%;
	}

	#ajax-content.visible .ajax-slider {
		width: 100%;
		-webkit-transition: all 0s ease-in-out;
		-moz-transition: all 0.0s ease-in-out;
		-o-transition: all 0.0s ease-in-out;
		transition: all 0.0s ease-in-out;
	}

	 .ajax-sidebar #project-title {
 padding: 40px;
 margin:0 auto;
margin-top: 30px;
 width: 300px;
 text-align:center;
}
 .bottom {
position:relative;
padding-top:20px;
bottom:auto
}
#project-title p {font-size:14px; line-height:1.5 }
#project-title h3 {font-size:20px; line-height:27px; }
#project-title p.small {font-size:11px; }