/* Global */

body {
	font-family: 'proxima-nova', sans-serif;
	font-weight: 300;
	font-size: 1em;
	color: #8a8683;
	background-color:#fff;
}
img {
	max-width: 100%;
}
a:link {
	color: #f75268;
	text-decoration: none;
	transition:.3s;
	-o-transition:.3s;
	-ms-transition:.3s;
	-moz-transition:.3s;
	-webkit-transition:.3s;
}
a:hover {
	color: #298dad;
	text-decoration: none;
	transition:.3s;
	-o-transition:.3s;
	-ms-transition:.3s;
	-moz-transition:.3s;
	-webkit-transition:.3s;
}
a:visited {
	color: #298dad;
	text-decoration: none;
}
#overlay {
	position: fixed;
	top: 0;
	right: 0;
	left: 0;
	bottom: 0;
	background: #ccd5de;
	z-index: 9999999;
}


/* Navigation */

.menu {
	width: 100%;
	height: auto;
	background-color: #353535;
	-webkit-box-sizing: initial;
     -moz-box-sizing: initial;
          box-sizing: initial;

	position: relative;

	-webkit-transition:all .3s ease-in;
  	-moz-transition:all.3s ease-in;
	-o-transition:all .3s ease-in;
   	transition:all .3s ease-in;

    -webkit-transition:all .3s ease-out;
	-moz-transition:all.3s ease-out;
   	-o-transition:all .3s ease-out;
   	transition:all .3s ease-out;
}
.menu.fixed {
	position: fixed;
	top: 0px;
	z-index: 1000000;
}
#logo, #logo-alt {
	text-align: left;
	margin: 30px 0 0 2%;
	display: block;
	text-decoration: none;
}
#logo img, #logo-alt img {
	border: none;
	text-decoration: none;
	width: 175px;
	height: 45px;
}
#nav {
	text-align: right;
	margin: 0px 0 0 0;
	height: 85px;
}
.navigation {
	float: right;
	list-style: none;
	margin: 0;
}
.navigation li{
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 1px;
	float: left;
	padding: 34px 0 34px 40px;
	text-transform: uppercase;
	transition:.3s;
	-o-transition:.3s;
	-ms-transition:.3s;
	-moz-transition:.3s;
	-webkit-transition:.3s;
}
.navigation li:hover{
	cursor:pointer;
	color: #fff;
	transition:.3s;
	-o-transition:.3s;
	-ms-transition:.3s;
	-moz-transition:.3s;
	-webkit-transition:.3s;
}
.navigation .active{
	cursor: pointer;
	color: #fff;
	transition:.8s;
	-o-transition:.8s;
	-ms-transition:.8s;
	-moz-transition:.8s;
	-webkit-transition:.8s;
}
.navigation li.blog-link {
	padding: 26px 0 20px 40px;
}
.navigation li.blog-link a {
	font-family: 'utopia-std', serif;
	font-weight: 300;
	color: #8a8683;
	text-decoration: none;
	border-left: solid 1px #464646;
	height: 34px;
	padding: 7px 40px 0 40px;
	display: block;
	font-size: 13px;
}
.navigation li.blog-link a:hover {
	color: #fff;
}
#down-arrow-container {
	display: none;
	width: 50px;
	height: 17px;
	position: absolute;
	left: 50%;
	bottom: 17%;
	margin: 0 0 0 -25px;
	float: none;
	z-index: 99999;
	background: url('../images/arrow-down.png') no-repeat center center;
	background-size: 50px 17px;
	cursor: pointer;



    -webkit-transition:bottom .3s ease;
	-moz-transition:bottom.3s ease;
   	-o-transition:bottom .3s ease;
   	transition:bottom .3s ease;
}
#down-arrow-container:hover {
	background: url('../images/arrow-down-hover.png') no-repeat center center;
	background-size: 50px 17px;
}
.sliding-line {
	position: absolute;
	left: 0px;
	width: 80px;
	margin-left: 15px;
	height: 4px;
	background: #298dad;
	display: none;
}
#line-top {
	top: 0;
}
#line-bottom {
	bottom: 0;
}
@media (max-width: 880px) {
	.navigation li {
		padding: 34px 0 20px 20px;
	}
}

/* Mobile Menu */

.menu-mobile {
	display: none;
	height: 50px;
	background: #2a2a2a;
	text-align: center;
	z-index: 999999;
	position: fixed;
	bottom: 0;
	width: 100%;
	color: #fff;
	padding: 0;
	overflow: hidden;
	opacity:1;
	visibility:visible;

	-webkit-transition: all .3s ease;
	-moz-transition: all .3s ease;
   	-o-transition: all .3s ease;
   	transition: all .3s ease;
}
.menu-mobile.hideme {
	bottom:-50px;
}
#connect-bar {
	height: 50px;
	padding: 0;
	font-size: 14px;
	font-weight: bold;
	letter-spacing: 1px;
	cursor: pointer;
	text-transform: uppercase;
	position: relative;
}
.menu-mobile #connect-bar span {
	margin: 0 20px 0 0;
	display: inline-block;
	background: url('../images/icon-mobile-context.png') no-repeat right center;
	width: 27px;
	height: 25px;
	position: absolute;
	right: 0;
	top: 13px;
}
.menu-mobile.active #connect-bar span {
	float: right;
	margin: 0 20px 0 0;
	display: inline-block;
	background: url('../images/icon-mobile-close.png') no-repeat right center;
	width: 27px;
	height: 25px;
}
#connect-bar img {
	width: 97px;
	height: 20px;
	margin-top: 15px;
}
#connect-content a {
	display:  block;
	padding: 10px;
	text-align: center;
	color: #fff;
	border-bottom: solid 1px #555;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 1px;
	border-bottom: solid 1px #393939;
	text-transform: uppercase;
}
#connect-content a:hover {
	color: #298dad;
}
#connect-content img {
	border: none;
	margin: 0 20px 0 0;
}
.menu-mobile.active #connect-bar{
	border-bottom: solid 4px #298dad;
}

/* General Sections */

.slide-section {
	background-attachment: fixed;
	width:100%;
	height:auto;
	position: relative;
	padding: 120px 0;
	-webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
}
@media (max-width: 480px) {
	.slide-section {
		padding: 60px 0;
	}
}

/* General Styles */

.upper {
	text-transform: uppercase;
}
.noupper {
	text-transform: none;
}
.sz-headline {
	font-size: 40px;
	line-height: 50px;
	font-weight: bold;
	letter-spacing: 2px;
}
.sz-description {
	letter-spacing: 2px;
	font-size: 13px;
	line-height: 20px;
}
.sz-content {
	letter-spacing: 1px;
	font-size: 15px;
	line-height: 30px;
}
@media (min-width: 1920px) {
	.sz-headline {
		font-size: 40px;
		line-height: 50px;
		font-weight: bold;
		letter-spacing: 2px;
	}
	.sz-description {
		letter-spacing: 2px;
		font-size: 14px;
		line-height: 20px;
	}
	.sz-content {
		letter-spacing: 1px;
		font-size: 15px;
		line-height: 30px;
	}
}
@media (min-width: 2500px) {
	.sz-headline {
		font-size: 40px;
		line-height: 50px;
		font-weight: bold;
		letter-spacing: 2px;
	}
	.sz-description {
		letter-spacing: 2px;
		font-size: 15px;
		line-height: 20px;
	}
	.sz-content {
		letter-spacing: 1px;
		font-size: 15px;
		line-height: 30px;
	}
}
@media (max-width: 950px) {
	.sz-headline {
		font-size: 35px;
		line-height: 45px;
		font-weight: bold;
		letter-spacing: 2px;
	}
	.sz-description {
		letter-spacing: 2px;
		font-size: 13px;
		line-height: 20px;
	}
	.sz-content {
		font-size: 13px;
		line-height: 23px;
	}
}
@media (max-width: 750px) {
	.sz-headline {
		font-size: 25px;
		line-height: 35px;
		font-weight: bold;
		letter-spacing: 2px;
	}
	.sz-description {
		letter-spacing: 2px;
		font-size: 13px;
		line-height: 20px;
	}
	.sz-content {
		font-size: 13px;
		line-height: 23px;
	}
}
@media (max-width: 600px) {
	.sz-headline {
		font-size: 25px;
		line-height: 35px;
		font-weight: bold;
		letter-spacing: 2px;
	}
	.sz-description {
		letter-spacing: 2px;
		font-size: 13px;
		line-height: 20px;
	}
	.sz-content {
		font-size: 13px;
		line-height: 23px;
	}
}

/* Rounded */

.r4 {
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	border-radius: 4px;
}
.r8 {
	-webkit-border-radius: 8px;
	-moz-border-radius: 8px;
	border-radius: 8px;
}



/* VIDEO */

#video-container {
	position: absolute;
	top: 0;
	overflow: hidden;
	display: none;
	z-index: -9999;
}
#video-controls {
	position: absolute;
	top: 0;
	left: 0;
	display: none;
	z-index: 99999;

	margin: 20px;
	width: 30px;
	height: 30px;
	color: #fff;
	font-size: 20px;
	cursor: pointer;

	opacity: .7;
	filter: alpha(opacity=70);
	-ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=70)";
	-webkit-transition: opacity .2s ease-in-out;
	-moz-transition: opacity .2s ease-in-out;
	-ms-transition: opacity .2s ease-in-out;
	-o-transition: opacity .2s ease-in-out;
	transition: opacity .2s ease-in-out;
}
#video-controls:hover {
	opacity: 1;
	filter: alpha(opacity=100);
	-ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
}
#ditto-video {
	display: block !important;
	top: 0px;
	bottom: 0px;
	margin: auto;
	position: absolute !important;
}
.video-filter {
  position: absolute;
  z-index: 1;
  background: rgba(0, 0, 0, .1);
  margin:auto;
  left:0;
  right:0;
}
.vid-container {
  position: absolute;
  margin:auto;
  left:0;
  right:0;
}
@media (max-width: 480px) {
	#video-filter {
	  display:none;
	}
	.vid-container {
	  display:none;
	}
}



/* Ditto 1 *//* Imagen **/

#ditto1 {
	background: #333 url('../images/febimagen.jpg') no-repeat 50% 0;
	background-attachment:scroll;
	background-size: cover;
	-webkit-background-size: cover;
	-o-background-size: cover;
	-moz-background-size: cover;
	padding: 0;
	overflow:hidden;
}
@media (max-width: 480px) {
	#ditto1 {
		background: #fff url('../images/febimagen.jpg') no-repeat 50% 0;
		background-attachment: scroll;
		background-size: cover;
		-webkit-background-size: cover;
		-o-background-size: cover;
		-moz-background-size: cover;
	}
}
body.ismobile #ditto1 {
	background-attachment: scroll !important;
}
.on-center {
	position: absolute;
	z-index: 99999;
	display: block;
	width: 100%;
	text-align: center;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	padding: 0;
	margin: auto;
	height: 300px;
	overflow: hidden;
}
#center-content h1 {
	color: #fff;
	margin: 5px 0 3px 0;
	text-transform: uppercase;
	padding: 0;
}
#center-content h3 {
	color: #fff;
	text-transform: uppercase;
	margin: 0 0 40px 0;
	padding: 0;
	font-family: 'utopia-std', serif;
	font-weight: 400;
}
#center-content #play-button {
	display: inline-block;
	width: 92px;
	height: 92px;
	background: url(../images/play-button-sm.png) no-repeat;
	background-size: 92px 92px;
	-webkit-transition: background .2s ease-in-out;
	-moz-transition: background .2s ease-in-out;
	-ms-transition: background .2s ease-in-out;
	-o-transition: background .2s ease-in-out;
	transition: background .2s ease-in-out;
}
#center-content #play-button:hover {
	background: url(../images/play-button-sm-hover.png) no-repeat;
	background-size: 92px 92px;
}
/* CSS for high-resolution devices and res under 691 */
@media only screen and (-Webkit-min-device-pixel-ratio: 1.5) and (max-width: 690px),
only screen and (-moz-min-device-pixel-ratio: 1.5) and (max-width: 690px),
only screen and (-o-min-device-pixel-ratio: 3/2) and (max-width: 690px),
only screen and (min-device-pixel-ratio: 1.5) and (max-width: 690px) {
    #center-content #play-button {
        background: url(../images/play-button.png) no-repeat center center;
		background-size: 70px 70px;
		width: 70px;
		height: 70px;
    }
	#center-content #play-button:hover {
		background: url(../images/play-button.png) no-repeat center center;
		background-size: 70px 70px;
	}
}
/* CSS for high-resolution devices and res over 690 */
@media only screen and (-Webkit-min-device-pixel-ratio: 1.5) and (min-width: 691px),
only screen and (-moz-min-device-pixel-ratio: 1.5) and (min-width: 691px),
only screen and (-o-min-device-pixel-ratio: 3/2) and (min-width: 691px),
only screen and (min-device-pixel-ratio: 1.5) and (min-width: 691px) {
    #center-content #play-button {
        background: url(../images/play-button.png) no-repeat center center;
		background-size: 92px 92px;
		width: 92px;
		height: 92px;
    }
	#center-content #play-button:hover {
		background: url(../images/play-button-hover.png) no-repeat center center;
		background-size: 92px 92px;
	}
}
h1 span {
	color: #298dad;
}
@media (max-width: 950px) {
	.on-center {
		height: 230px;
	}
}
@media (max-width: 750px) {
	.on-center {
		height: 230px;
	}
}
@media (max-width: 480px) {
	#center-content h1 {
		padding: 0 20px;
	}
	#center-content h3 {
		padding: 0 20px;
		font-size: 12px;
	}
	.on-center {
		height: 290px;
	}
}




/* Ditto 2 */

#about{
	background-color: #fff;
	text-align: center;
	margin-top: 0;
}
#about .about-btn {
		display: inline-block;
		color: #999999;
		font-family: 'utopia-std', serif;
		border-top: solid 3px #298dad;
		border-bottom: solid 3px #298dad;
		letter-spacing: 3px;
		padding: 20px 35px;
		font-size: 14px;
		margin:50px 0 0 0;
		text-transform: uppercase;
		cursor: pointer;
		-webkit-transition: all .3s ease-in-out;
		-moz-transition: all .3s ease-in-out;
		-o-transition: all .3s ease-in-out;
		transition: all .3s ease-in-out;
		border-radius:0;
}
#about .about-btn:hover {
		border-top: solid 3px #999999;
		border-bottom: solid 3px #999999;
}
#about h2 {
	color: #298dad;
	text-transform: uppercase;
	margin: 0 0 30px 0;
}
#about p {
	color: #4A4949;
	font-size: 14px;
	line-height: 28px;
	margin: 0;
	padding: 0 20px;
}
#about.sticky-nav {
	margin-top: 86px;
}
#about.sticky-nav.mobile-sticky {
	margin-top: 0;
}
@media (max-width: 950px) {
	#about p {
		font-size: 15px;
		line-height: 30px;
	}
}
@media (max-width: 750px) {
	#about p {
		font-size: 13px;
		line-height: 23px;
	}
}
@media (max-width: 600px) {
	#about p {
		font-size: 13px;
		line-height: 23px;
	}
}




/* Ditto 3 */

#ditto3 {
	background-color: #f5f5f5;
	padding: 100px 0;
}
#ditto-slider .item {
	width: 100%;
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	min-height: 210px;
	color: #000;
}
#ditto-slider .carousel-inner {
	height: 480px;
}
#ditto-slider .carousel-control {
	background: none !important;
	opacity: 1;
	filter: alpha(opacity=100);
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
}
#ditto-slider .carousel-control.left span {
	background: url('../images/arrow-left.png') no-repeat center center;
	left: 30px;
	background-size: 17px 50px;
}
#ditto-slider .carousel-control.right span {
	background: url('../images/arrow-right.png') no-repeat center center;
	right: 30px;
	background-size: 17px 50px;
}
#ditto-slider .carousel-control span{
	width: 50px;
	height: 50px;
	display: inline-block;
	border-radius: 50%;
	box-shadow: 0 0 0 0px #fff;
	opacity: 1;
	filter: alpha(opacity=100);
	-ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
}
#ditto-slider .carousel-control span:hover {
	/*-moz-animation:bounceOutSlide .2s linear;
    -webkit-animation:bounceOutSlide .2s linear;*/
	margin: 0 !important;
}
#ditto-slider .carousel-control span.glyphicon-chevron-left:before {
  content: "" !important;
}
#ditto-slider .carousel-control span.glyphicon-chevron-right:before {
  content: "" !important;
}
#ditto-slider .carousel-caption {
	margin: 30px auto 0 auto;
	padding: 0 100px;
	max-width: 1200px;
	width: 100%;
	position: relative;
	left: auto;
	right: auto;
	text-shadow: none;
	color: #000;
}
#ditto-slider .carousel-caption h2 {
	margin: 35px 0 37px 0;
	color: #000;
}
#ditto-slider #home-slide-1 {
	color: #999;
}

.navigation {
	float: right;
	list-style: none;
	margin: 0;
}
#ditto-slider .carousel-indicators {
	position: static;
	margin-left: auto;
	padding-left: auto;
	width: auto;
}
#ditto-slider .carousel-indicators li {
	background: #f5f5f5;
	border: none;
	color: #999999;
	letter-spacing: 1px;
	float: left;
	padding: 20px 20px 20px 20px;
	text-transform: uppercase;
	transition:.3s;
	-o-transition:.3s;
	-ms-transition:.3s;
	-moz-transition:.3s;
	-webkit-transition:.3s;
	text-indent: 0;
	width: auto;
	height: auto;
	float: none;
	-webkit-border-radius: 0px;
	-moz-border-radius: 0px;
	border-radius: 0px;
	margin: 0 0 0 -4px;
	font-size: 12px;
	font-weight: 700;
}
#ditto-slider .carousel-indicators li:hover{
	cursor:pointer;
	color: #999999;
	transition:.3s;
	-o-transition:.3s;
	-ms-transition:.3s;
	-moz-transition:.3s;
	-webkit-transition:.3s;
}
#ditto-slider .carousel-indicators li.active {
	color: #298dad;
	font-weight: bold;
}
#carousel-indicator-container {
	position: relative;
	margin: 0 0 40px 0;
}
.sliding-line-carousel {
	position: absolute;
	left: 0px;
	width: 80px;
	height: 4px;
	background: #298dad;
	display: block;
}
#ditto3 .carousel-image {
	display: block;
	text-align: center;
	height: 100px;
	margin: 50px 0;
	padding-bottom: 155px;
}
#ditto3 .carousel-image img {
	border: none;
}
@media (max-width: 480px) {
	#ditto3 {
		padding: 20px 0 50px 0;
	}
	.sliding-line-carousel {
		display: none;
	}
	#ditto-slider .carousel-indicators {
		height: 40px;
	}
	#ditto-slider .carousel-indicators li {
		display: inline-block;
		width: auto;
		float: none;
		padding: 12px;
	}
	#ditto-slider .carousel-caption {
		padding: 0 20px;
	}
	#carousel-indicator-container {
		margin: 0;
	}
}
/*
.navigation .active{
	cursor: pointer;
	color: #fff;
	transition:.8s;
	-o-transition:.8s;
	-ms-transition:.8s;
	-moz-transition:.8s;
	-webkit-transition:.8s;
}
*/

/* Carousel Fade*/

.carousel.fade {
  opacity: 1;
}
.carousel.fade .item {
  -moz-transition: opacity ease-in-out .7s;
  -o-transition: opacity ease-in-out .7s;
  -webkit-transition: opacity ease-in-out .7s;
  transition: opacity ease-in-out .7s;
  left: 0 !important;
  opacity: 0;
  top:0;
  position:absolute;
  width: 100%;
  display:block !important;
  z-index:1;
}
.carousel.fade .item:first-child {
  top:auto;
  position:relative;
}
.carousel.fade .item.active {
  opacity: 1;
  -moz-transition: opacity ease-in-out .7s;
  -o-transition: opacity ease-in-out .7s;
  -webkit-transition: opacity ease-in-out .7s;
  transition: opacity ease-in-out .7s;
  z-index:2;
}


/* Work */

#our-work {
	background-color: #fff;
	text-align: center;
	margin-top: 0;
	position:relative;
}
#our-work .kontainer {
	max-width: 800px;
}
#our-work h2 {
	color: #298dad;
	text-transform: uppercase;
	margin: 0 0 30px 0;
}
#our-work p {
	color: #999999;
	margin: 0;
	padding: 0 0 35px 0;
}
#our-work .superstar {
	font-weight: bold;
	margin: 50px 0 30px 0;
}

#our-work a.join-us {
	display: inline-block;
	color: #999999;
	font-family: 'utopia-std', serif;
	border-top: solid 3px #298dad;
	border-bottom: solid 3px #298dad;
	letter-spacing: 3px;
	padding: 20px 35px;
	text-transform: uppercase;
	cursor: pointer;
	font-size: 14px;
}
#our-work a.join-us:hover {
	border-top: solid 3px #999999;
	border-bottom: solid 3px #999999;
}
#gallery-tabs {
	display: inline-block;
	position:absolute;
	margin:auto;
	bottom:0;
	left:0;
	right:0;
	list-style: none;
	padding: 0;
	margin-bottom: -35px;
  	z-index: 10000;
}
#gallery-tabs li {
    display: inline-block;
    position: relative;
    color: #ffffff;
	background-color:#cecece;
	text-transform:uppercase;
	text-align:center;
	padding:25px 0 0 0;
    border-bottom: none;
    margin: 0;
    border-radius: 0;
	width:295px;
	height:70px;
	font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
	list-style: none;

	-moz-transition: background ease-in-out .3s;
    -o-transition: background ease-in-out .3s;
    -webkit-transition: opacity ease-in-out .3s;
    transition: background ease-in-out .3s;
}
#gallery-tabs li.active, #gallery-tabs li:hover {
    background-color:#298dad;
	-webkit-box-shadow: inset 0 0px 0px rgba(0, 0, 0, 0);
	box-shadow: inset 0 0px 0px rgba(0, 0, 0, 0);
}



@media (max-width: 768px) {
	#gallery-tabs {
		margin-bottom: -30px;
	}
	#gallery-tabs li {
		padding:22px 0 0 0;
		width:50%;
		height:60px;
		font-size: 11px;
	}
}

/* Gallery Grid */

#work {
	background: #efefef;
	padding:0;
	text-align:center;
}
#work .gallery-item {
	position: relative;
	margin: 0 !important;
	width: 25%;
	display: none;
	float: left;
	box-sizing: border-box;
	background: #333333;
	opacity: 0;

	transition: opacity 1s ease;
    -o-transition: opacity 1s ease;
    -ms-transition: opacity 1s ease;
    -moz-transition: opacity 1s ease;
    -webkit-transition: opacity 1s ease;
}
#work .gallery-item.active {
	display: block;
}
#work .gallery-item.fadein {
    opacity: 1;

    transition: opacity 1s ease;
    -o-transition: opacity 1s ease;
    -ms-transition: opacity 1s ease;
    -moz-transition: opacity 1s ease;
    -webkit-transition: opacity 1s ease;
}
#work .gallery-item img {
	width: auto;
	height: auto;
}
/*
body.ismobile #work .gallery-item img {
	width: auto;
	height: auto;
}
*/
#work .gallery-info {
	display: none;
	position: absolute;
	text-align: center;
	height: 300px;
	text-align: center;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	padding: 0 10%;
	margin: auto;
	z-index: 99;
}
#work .gallery-info label {
	font-size: 20px;
	line-height: 20px;
	text-transform: uppercase;
	color: #fff;
	margin: 0 0 30px 0;
	padding: 0 0 55px 0;
	letter-spacing: 2px;
	background: url('../images/arrow-up-red.png') no-repeat center bottom;
}
#work .gallery-info .copy {
	font-size: 13px;
	line-height: 25px;
	color: #fff;
	margin: 0 0 30px 0;
	padding: 0;
	letter-spacing: 1px;
}
#work .gallery-info .view {
	display: block;
	padding: 20px 0 0 0;
}
#work .gallery-info a {
	width: 100px;
	border-top: solid 3px #298dad;
	border-bottom: solid 3px #298dad;
	padding: 20px 35px;
	margin-top: 20px;
	color: #fff;
	font-family: 'utopia-std', serif;
	letter-spacing: 3px;
	font-size: 14px;
	text-transform: uppercase;
}
#work .gallery-info a:hover {
	color: #fff;
	border-top: solid 3px #fff;
	border-bottom: solid 3px #fff;
}
@media (min-width: 2500px) {
	#work .gallery-item img {
		width: 100%;
		height: 100%;
	}
}
@media (max-width: 1620px) {
	#work .gallery-item {
		width: 33.33%;
	}
}
@media (max-width: 1300px) {
	#work .gallery-item {
		width: 50%;
	}
}
@media (max-width: 900px) {
	#work .gallery-item {
		width: 100%;
	}
}
@media (max-width: 480px) {
	#work .gallery-info {
		padding: 0 20px;
	}
	#work .gallery-info label {
		font-size: 20px;
		line-height: 20px;
		text-transform: uppercase;
		color: #fff;
		margin: 20px 0;
		padding: 0;
		background: none;
	}
	#work .gallery-info .copy {
		font-size: 12px;
		line-height: 22px;
	}
}



/* Team */

#team{
	background-color: #f5f5f5;
	text-align: center;
	margin-top: 0;
}
#team .kontainer {
	max-width: 800px;
}
#team h2 {
	color: #298dad;
	text-transform: uppercase;
	margin: 0 0 30px 0;
}
#team p {
	color: #999999;
	margin: 0;
	padding: 0;
}
#team .superstar {
	font-weight: bold;
	margin: 50px 0 30px 0;
}

#team a.join-us {
	display: inline-block;
	color: #999999;
	font-family: 'utopia-std', serif;
	border-top: solid 3px #298dad;
	border-bottom: solid 3px #298dad;
	letter-spacing: 3px;
	padding: 20px 35px;
	text-transform: uppercase;
	cursor: pointer;
	font-size: 14px;
}
#team a.join-us:hover {
	border-top: solid 3px #999999;
	border-bottom: solid 3px #999999;
}

/* Team Slider */

#team-slider {
	background-color: #ffffff;
	text-align: center;
	margin-top: 0;
	position: relative;
}
#team-slider .bx-control-bar {
	width: 100%;
    text-align: center;
    position: absolute;
    top: 50%;
    margin: -35px 0 0 0;
    height: 70px;
    z-index: 1;
}
#team-slider .bx-control-btn {
    width: 70px;
    height: 70px;
    margin: 0;
    background-color: #fff;
    background-repeat: no-repeat;
    background-position: center center;
    text-align: center;
    line-height: 70px;
    position: relative;
    font-size: 21px;
    color: #fff;
    transition: all .3s ease;
    -o-transition: all .3s ease;
    -ms-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -webkit-transition: all .3s ease;
}
#team-slider .bx-control-btn:hover {
    background-color: #333333;
}
#team-slider .bx-prev-control {
    position: absolute;
    left: 0;
    top: 0;
	background-image: url('../images/prev-btn.png');
	background-repeat: no-repeat;
	background-position: center center;
	background-size: 13px 39px;
}
#team-slider .bx-next-control {
    position: absolute;
    right: 0;
    top: 0;
	background-image: url('../images/next-btn.png');
	background-repeat: no-repeat;
	background-position: center center;
	background-size: 13px 39px;
}
#team-slider .bx-control-btn a {
    display: block;
    width: 70px;
    height: 70px;
    position: absolute;
    top: 0;
    left: 0;
}
#team-slider .bx-pager-custom {
    display:none;
}
#team-slider .bx-wrapper {
	position: relative;
    margin: 0;
    padding: 0;
    height: 500px;
    width: 100%;
    margin: auto;
    -moz-box-shadow: none;
    -webkit-box-shadow: none;
    box-shadow: none;
    border: none;
	background:none;
	left: 0;
	right: 0;
	padding-top: 99px;
	z-index:2;
}
#team-slider .bx-wrapper .bx-viewport{
    position: relative;
    margin: 0;
	padding: 0;
	height: 500px;
	-moz-box-shadow: none;
    -webkit-box-shadow: none;
    box-shadow: none;
    border: none;
    background: none;
	left: 0;
}
#staff-slider {
    display: inline-block;
    width: 100%;
    vertical-align: top;
    background: transparent;
    position: relative;
    min-height: 500px;
	padding: 0;
    margin: 0;
}
#staff-slider li {
    list-style: none;
    margin: 0;
    padding: 0;
    height: 100%;
	width: 370px;
	min-height: 306px;
	max-height: 306px;
	background-repeat: no-repeat;
	background-position: center center;
    background-size: cover;
}
#team-slider li a.team-overlay {
	background:hsl(195,21, 60, 40);
	width: 370px;
	min-height: 0px;
	position: absolute;
	top: 0;
	left: 0;
	overflow: hidden;

	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
	filter: alpha(opacity=0);
	-moz-opacity: 0;
	-khtml-opacity: 0;
	opacity: 0;
	visibility: 0;

	cursor: pointer;

	transition: all .3s ease;
    -o-transition: all .3s ease;
    -ms-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -webkit-transition: all .3s ease;
}
#team-slider li:hover a.team-overlay{
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
	filter: alpha(opacity=100);
	-moz-opacity: 1;
	-khtml-opacity: 1;
	opacity: 1;
	visibility: 1;
	width: 370px;
	min-height: 306px;
	max-height: 306px;

	transition: all .3s ease;
    -o-transition: all .3s ease;
    -ms-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -webkit-transition: all .3s ease;
}
#team-slider li span.staff-name{
	font-size: 20px;
    line-height: 20px;
	height: 20px;
    top: 40%;
    margin-top: -30px;
	font-weight: bold;
    text-transform: uppercase;
    color: #fff;
    margin: auto;
	left: 0;
	right: 0;
    padding: 0;
    letter-spacing: 2px;
	display: inline-block;
	font-family: 'proxima-nova', sans-serif;
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
	filter: alpha(opacity=0);
	-moz-opacity: 0;
	-khtml-opacity: 0;
	opacity: 0;
	visibility: 0;
	position: absolute;

	transition: .3s all .3s ease;
    -o-transition: .3s all .3s ease;
    -ms-transition: .3s all .3s ease;
    -moz-transition: .3s all .3s ease;
    -webkit-transition: .3s all .3s ease;
}
#team-slider li:hover span.staff-name{
	top: 50%;
	margin-top: -30px;
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
	filter: alpha(opacity=100);
	-moz-opacity: 1;
	-khtml-opacity: 1;
	opacity: 1;
	visibility: 1;
}
#team-slider li span.staff-position{
	font-size: 12px;
    line-height: 12px;
	height: 12px;
    top: 40%;
    margin-top: 0px;
	font-weight: normal;
    text-transform: uppercase;
    color: #fff;
    margin: auto;
	left: 0;
	right: 0;
    padding: 0;
    letter-spacing: 2px;
	display: inline-block;
	font-family: 'utopia-std', serif;
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
	filter: alpha(opacity=0);
	-moz-opacity: 0;
	-khtml-opacity: 0;
	opacity: 0;
	visibility: 0;
	position: absolute;

	transition: .3s all .3s ease;
    -o-transition: .3s all .3s ease;
    -ms-transition: .3s all .3s ease;
    -moz-transition: .3s all .3s ease;
    -webkit-transition: .3s all .3s ease;
}
#team-slider li:hover span.staff-position{
	top: 50%;
	margin-top: 0px;
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
	filter: alpha(opacity=100);
	-moz-opacity: 1;
	-khtml-opacity: 1;
	opacity: 1;
	visibility: 1;
}
#team-slider li span.more-info {
    display: inline-block;
    color: #fff;
    font-family: 'utopia-std', serif;
    border-top: solid 0px #ffffff;
    letter-spacing: 2px;
    padding: 25px 30px;
    text-transform: uppercase;
    cursor: pointer;
    font-size: 12px;
	position: absolute;
	bottom:-50px;
	margin: auto;
	left:0;
	right:0;
	margin-top: 10px;
}
#team-slider li:hover span.more-info {
	bottom:0px;
	transition: .3s bottom .6s ease;
    -o-transition: .3s bottom .6s ease;
    -ms-transition: .3s bottom .6s ease;
    -moz-transition: .3s bottom .6s ease;
    -webkit-transition: .3s bottom .6s ease;

    -webkit-animation-name: moreinfo;
    -webkit-animation-duration: 1000ms;
    -webkit-transform-origin:50% 50%;
    -webkit-animation-iteration-count: infinite; /* The magic keyword for infinite*/
    -webkit-animation-timing-function: linear;
}

@-webkit-keyframes moreinfo {
    0% {
		-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=50)";
		filter: alpha(opacity=50);
		-moz-opacity: .5;
		-khtml-opacity: .5;
		opacity: .5;
		visibility: .5;
	}
    50% {
		-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
		filter: alpha(opacity=100);
		-moz-opacity: 1;
		-khtml-opacity: 1;
		opacity: 1;
		visibility: 1;
	}
    100% {
		-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=50)";
		filter: alpha(opacity=50);
		-moz-opacity: .5;
		-khtml-opacity: .5;
		opacity: .5;
		visibility: .5;
	}
}

/** LIGHT BOX STYLES **/
.lightbox {
	display: none;
}
.featherlight .featherlight-content {
	text-align: center !important;
	height:495px !important;
	max-width: 495px !important;
	border-bottom:20px solid #298dad !important;
	background-color:#fff !important;
	padding: 0 !important;
	padding-top:45px !important;
}
.featherlight .collection-body {
	font-family:Hoefler Text;
	font-size:14px;
	display:block;
	color:#333333;
	line-height:30px;
	padding:20px 55px;
}
.featherlight .collection-address {
	font-family:Hoefler Text;
	font-size:14px;
	display:block;
	color:#333333;
	line-height:30px;
	padding:0 55px;
}
.featherlight .collection-title {
	font-family:Proxima Nova;
	font-size:30px;
	display:block;
	color:#298dad;
	line-height:40px;
	padding:0 55px 10px 55px;
	letter-spacing:2px;
	font-weight:bold;
	text-transform:uppercase;
}
.featherlight a.collection-btn, .featherlight a:visited.collection-btn {
	position:absolute;
	bottom:0;
	border-top:1px solid #f5f5f5;
	font-family:Proxima Nova;
	font-size:14px;
	text-transform:uppercase;
	display:block;
	color:#333333;
	padding:20px 0;
	letter-spacing:1px;
	font-weight:500;
	text-align:center;
	width:100%;
	text-decoration:none;

	transition: background .4s ease;
	-o-transition: background .4s ease;
	-ms-transition: background .4s ease;
	-moz-transition: background .4s ease;
	-webkit-transition: background .4s ease;
}
.featherlight a:hover.collection-btn {
	background-color:#f5f5f5;

	transition: background .4s ease;
	-o-transition: background .4s ease;
	-ms-transition: background .4s ease;
	-moz-transition: background .4s ease;
	-webkit-transition: background .4s ease;
}

.featherlight .inactive {
	background-color:#ffffff !important;
	cursor:default !important;
}
.featherlight .inactive:hover {
	background-color:#ffffff !important;
	cursor:default !important;
}

.featherlight .collection-seperator {
	width:30px !important;
	height:10px;
	position:absolute;
	margin:auto;
	left:0;
	right:0;
}
.featherlight .featherlight-close-icon {
	/* position: centering vertical and horizontal; */
	position: absolute;
	z-index: 9999;
	top: 0;
	right: 0;
	/* dimensions: 25px x 25px; */
	line-height: 40px;
	width: 40px;
	cursor: pointer;
	text-align: center;
	font: Arial, sans-serif;
	background: #fff;
	background: rgba(255, 255, 255, 0.3);
	color: #333333;
	font-size: 25px;
	margin: 15px;
}
@media (max-width: 700px) {
	.featherlight .featherlight-content {
		height: 400px !important;
		padding-top: 25px !important;
		min-height: 400px !important;
	}
	.featherlight .collection-address {
		font-size: 11px;
		line-height: 24px;
		padding: 0 25px;
	}
	.featherlight .collection-title {
		font-size: 24px;
		line-height: 32px;
		padding: 0 25px 5px 25px;
	}
	.featherlight .collection-body {
		font-size: 11px;
		line-height: 20px;
		padding: 15px 25px;
	}
	.featherlight .collection-seperator {
		width: 24px !important;
		height: 8px;
	}
	#team-slider .bx-control-bar {
	    top: auto;
	    bottom: 0;
		z-index: 3;
	}
	#team-slider .bx-wrapper {
	    padding-top: 65px;
	}
}


/* Ditto 6 */

#ditto6 {
	background-color: #f5f5f5;
	text-align: center;
	padding: 70px;
}
#ditto6 h2 {
	color: #298dad;
	text-transform: uppercase;
	margin: 0 0 30px 0;
}
#ditto6 p {
	color: #999999;
	margin: 0;
	padding: 0;
}
#ditto6 .team-member {
	width: 370px;
	margin: 30px 15px;
	display: inline-block;
}
#ditto6 .team-member img {
	padding: 0 0 20px 0;
	margin: 0 0 25px 0;
	border-bottom: solid 1px #999;
	cursor: pointer;
}
#ditto6 .team-member .member-name {
	color: #999999;
	font-size: 14px;
	float: left;
	display: block;
	text-transform: uppercase;
	font-weight: bold;
	letter-spacing: 1px;
}
#ditto6 .team-member .member-name span {
	font-size: 13px;
	font-family: 'utopia-std', serif;
	letter-spacing: 2px;
	font-weight: 300;
	margin: 0 10px;
}
#ditto6 .team-member .member-links {
	display: block;
	float: right;
}
#ditto6 .team-member .member-links .toggle-link {
	-webkit-transition:all .3s ease-in-out;
  	-moz-transition:all.3s ease-in-out;
	-o-transition:all .3s ease-in-out;
   	transition:all .3s ease-in-out;
	width: 24px;
	height: 17px;
	float: left;
	cursor: pointer;
}
#ditto6 .team-member .link-bio {
	background: url('../images/icon-bio.png') no-repeat center center;
	background-size: 24px 17px;
}
#ditto6 .team-member .link-bio:hover, #ditto6 .team-member .link-bio.active {
	background: url('../images/icon-bio-active.png') no-repeat center center;
	background-size: 24px 17px;
}
#ditto6 .team-member .link-mail {
	background: url('../images/icon-mail.png') no-repeat center center;
	background-size: 23px 17px;
	margin: 0 0 0 7px;
}
#ditto6 .team-member .link-mail:hover, #ditto6 .team-member .link-mail.active {
	background: url('../images/icon-mail-active.png') no-repeat center center;
	background-size: 23px 17px;
}
#ditto6 .team-member .content-section {
	overflow: hidden;
	position: relative;
	float: left;
	font-size: 14px;
	text-align: left;
	line-height: 24px;
	margin: 0;
	padding: 0;
	height: 0px;
	width: 100%;
}
#ditto6 .content-mail {
	text-align: left;
}
#ditto6 .content-mail a {
	margin: 50px 0;
	color: #298dad;
	letter-spacing: 1px;
	font-weight: bold;
	text-transform: uppercase;
}
#ditto6 .team-member .close-content {
	display: block;
	float: left;
	height: 26px;
	width: 100%;
	padding: 0px 0 0 0;
	border-bottom: solid 3px #999;
	-webkit-transition: all .3s ease-in-out;
  	-moz-transition: all .3s ease-in-out;
	-o-transition: all .3s ease-in-out;
   	transition: all .3s ease-in-out;
}
#ditto6 .team-member .close-content.active {
	border-bottom: solid 3px #298dad;
}
#ditto6 .close-content span {
	display: none;
	width: 11px;
	height: 11px;
	margin: 0 0 0 0;
	float: right;
	background: url('../images/icon-x.png') no-repeat center center;
	background-size: 11px 11px;
	cursor: pointer;
}
#ditto6 .content-bio .content-spacing {
	display: block;
	width: 100%;
	height: 30px;
}
#ditto6 .content-mail .content-spacing {
	display: block;
	width: 100%;
	height: 20px;
}
@media (max-width: 480px) {
	#ditto6 .team-member {
		margin: 30px 0;
		width: 100%;
	}
	#ditto6 .team-member .member-name {
		float: none;
		display: block;
	}
	#ditto6 .team-member .member-name span {
		display: block;
		margin: 5px 0 0 0;
	}
	#ditto6 .team-member .member-links {
		display: inline-block;
		float: none;
		margin: 15px 0 0 0;
	}
	#ditto6 .content-mail {
		text-align: center !important;
	}
	#ditto6 {
		padding: 10px;
	}
}

/* Ditto 7 */

#press {
	text-align: center;
	padding: 0px;
}
#press .bx-controls {
	position: absolute;
	right: 50px;
	top: 50%;
	margin-top: 20px;
}
#press .bx-pager a.active, #press .bx-pager a:hover {
	background: #298dad;
	border: solid 2px #298dad;
}
#press .bx-pager a {
	background: transparent;
	border: solid 2px #298dad;
	width: 15px;
	height: 15px;
	margin: 5px 10px;
	border-radius: 10px;
	-webkit-transition: all .3s ease-in-out;
  	-moz-transition: all .3s ease-in-out;
	-o-transition: all .3s ease-in-out;
   	transition: all .3s ease-in-out;
}
#press .bx-controls-direction {
	display: none;
}
#press .bx-wrapper .bx-viewport {
	-moz-box-shadow: none;
	-webkit-box-shadow: none;
	box-shadow: none;
	border: none;
	left: auto;
	background: #fff;
}
#press ul {
	margin: 0;
	padding: 0;
}
#press li {
	height: 600px;
	width: 100% !important;
	background-position: center center !important;
	background-size: cover !important;
}
#press .bx-prev {
	margin-bottom: 60px;
	right: 20px;
	bottom: 0;
	top: auto;
	left: auto;
	background: url('../images/arrow-up-red.png') no-repeat center center;
	width: 51px;
	height: 17px;
	background-size: 30px 15px;
}
#press .bx-next {
	margin-bottom: 20px;
	right: 20px;
	bottom: 0;
	top: auto;
	background: url('../images/arrow-down-red.png') no-repeat center center;
	width: 51px;
	height: 17px;
	background-size: 30px 15px;
}
#press .bx-viewport {
	height: 500px;
}
#press .bx-wrapper {
	margin: 0;
}
#press .slider-overlay {
	position: absolute;
	z-index: 99999;
	display: block;
	width: 100%;
	text-align: center;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	padding: 0;
	margin: auto;
	height: 390px;
	overflow: hidden;
}
#press .slider-overlay h3 {
	color: #fff;
	text-transform: uppercase;
	margin: 0;
}
#press .slider-overlay p {
	max-width: 800px;
	padding: 0 20px 0 20px;
	margin: 40px 0 20px 0;
	color: #fff;
	font-size: 18px;
	line-height: 35px;
	display: inline-block;
}
#press .slider-overlay .press-name {
	color: #fff;
	font-size: 12px;
	letter-spacing: 1.5px;
	font-weight: 700;
	text-transform: uppercase;
	margin: 30px 0 50px 0;
}
#press a.read {
	display: inline-block;
	color: #fff;
	font-family: 'utopia-std', serif;
	border-top: solid 3px #298dad;
	border-bottom: solid 3px #298dad;
	letter-spacing: 3px;
	padding: 20px 35px;
	font-size: 14px;
	text-transform: uppercase;
	cursor: pointer;
	-webkit-transition: all .3s ease-in-out;
  	-moz-transition: all .3s ease-in-out;
	-o-transition: all .3s ease-in-out;
   	transition: all .3s ease-in-out;
}
#press a.read:hover {
	border-top: solid 3px #fff;
	border-bottom: solid 3px #fff;
}
@media (max-width: 950px) {
	#press .slider-overlay p {
		font-size: 15px;
		line-height: 30px;
	}
}
@media (max-width: 750px) {
	#press .slider-overlay p {
		font-size: 13px;
		line-height: 23px;
	}
}
@media (max-width: 600px) {
	#press .slider-overlay p {
		font-size: 13px;
		line-height: 23px;
	}
}
@media (max-width: 330px) {
	#press .slider-overlay {
		height: 450px;
	}
	#press .bx-pager.bx-default-pager {
		position: relative;
		bottom: -180px;
		left: 50%;
		width: auto;
		margin-left: -210px;
	}
}

/* Ditto 8 */

#connect {
	text-align: center;
	padding: 0px;
	background: #333;
}
#connect #back-to-top {
	width: 231px;
	height: 77px;
	position: absolute;
	bottom: 0;
	left: 50%;
	margin-left: -116px;
	background: url('../images/back-to-top.png') no-repeat center center;
	background-size: 231px 77px;
	text-align: center;
	font-size: 14px;
	font-family: 'utopia-std', serif;
	color: #fff;
	/*font-weight: bold;*/
	padding: 33px 0 0 0;
	text-transform: uppercase;
	letter-spacing: 2px;
	-webkit-transition: all .3s ease-in-out;
  	-moz-transition: all .3s ease-in-out;
	-o-transition: all .3s ease-in-out;
   	transition: all .3s ease-in-out;
}
#connect #back-to-top:hover {
	background: url('../images/back-to-top-hover.png') no-repeat center center;
	background-size: 231px 77px;
	cursor: pointer;
	color: #298dad;
}
#connect .grid_6 {
	margin: 0;
	width: 50%;
}
#connect .social-row {
	width: 100%;
	margin: 0;
	/*float: left;*/
}
#connect #hello {
	text-align: left;
	background: #333;
	padding: 80px 60px 0px 60px;
}
#hello h3 {
	color: #298dad;
	text-transform: uppercase;
	margin: 0 0 50px 0;
}
#hello input {
	color: #fff;
	font-size: 14px;
	line-height: 22px;
	-webkit-transition: border .3s ease-in-out;
  	-moz-transition: border.3s ease-in-out;
	-o-transition: border .3s ease-in-out;
   	transition: border .3s ease-in-out;
}
#hello .hello-top-input {
	display: inline-block;
	margin: 0 5% 52px 0;
	text-align: left;
	border-top: none;
	border-left: none;
	border-right: none;
	border-bottom: solid 3px #666666;
	width: 30%;
	padding: 13px 0 13px 0;
	background: none;
	outline: none;
	float: left;
}
#hello .hello-top-input:focus {
	border-bottom: solid 3px #ffffff;
}
#hello .hello-top-input.invalid, #hello .hello-bottom-input.invalid {
	border-bottom: solid 3px #298dad !important;
}
#hello .last {
	margin: 0 0 20px 0;
}
#hello input {
	font-size: 15px;
	letter-spacing: 1px;
}
#hello label {
	display: block;
	color: #666666;
	font-size: 15px;
	font-weight: 300;
	background: url('../images/icon-down.png') no-repeat right center;
	background-size: 13px 6px;
	cursor: pointer;
	-webkit-transition: all .3s ease-in-out;
  	-moz-transition: all .3s ease-in-out;
	-o-transition: all .3s ease-in-out;
   	transition: all .3s ease-in-out;
	text-align: left;
	border-top: none;
	border-left: none;
	border-right: none;
	border-bottom: solid 3px #666666;
	padding: 13px 0 13px 0;
	overflow: hidden;
	margin: 0;
	line-height: 22px;
}
#hello label:hover {
	background: url('../images/icon-down-active.png') no-repeat right center;
	background-size: 13px 6px;
	color: #fff;
}
#hello .hello-select {
	display: inline-block;
	position: relative;
	width: 30%;
	margin: 0 0 22px 0;
}
#hello .hello-select.active label, #hello .hello-select label:hover {
	border-top: none;
	border-left: none;
	border-right: none;
	border-bottom: solid 3px #fff;
	background: url('../images/icon-down-active.png') no-repeat right center;
	background-size: 13px 6px;
	color: #fff;
}
#hello .hello-select label.selected-value {
	display: none;
}
#hello .hello-select.selected-active label.selected-value {
	display: block;
}
#hello .hello-select.selected-active label.default-value {
	display: none;
}
#hello .hello-select .default-select {
	display: none;
}
#hello .hello-select.selected-active .default-select {
	display: block;
}
#hello .select-box {
	display: none;
	position: absolute;
	overflow-y: scroll;
	overflow-x: hidden;
	max-height: 250px;
	background: #484848;
	-webkit-border-bottom-right-radius: 6px;
	-webkit-border-bottom-left-radius: 6px;
	-moz-border-radius-bottomright: 6px;
	-moz-border-radius-bottomleft: 6px;
	border-bottom-right-radius: 6px;
	border-bottom-left-radius: 6px;
	margin: 0 0 0 0;
	z-index: 9999;
	top: 47px;
	width: 100%;
}
#hello .select-box a {
	display: block;
	color: #fff;
	text-align: left;
	padding: 12px;
	font-size: 12px;
	line-height: 19px;
	border-bottom: solid 3px #666666;
	margin: 0;
	text-transform: none;
	font-weight: 300;
}
#hello .select-box a:hover {
	background: #666666;
	display: block;
	color: #fff;
	text-align: left;
	padding: 12px;
	border-bottom: solid 3px #666666;
}
#hello .hello-bottom-input {
	display: inline-block;
	margin: 0 0 52px 0;
	text-align: left;
	border-top: none;
	border-left: none;
	border-right: none;
	border-bottom: solid 3px #666666;
	padding: 13px 0 13px 0;
	background: none;
	outline: none;
	width: 100%;
}
#hello .hello-bottom-input:focus {
	border-bottom: solid 3px #ffffff;
}
#hello .send, #hello .reset {
	display: inline-block;
	color: #fff;
	font-family: 'utopia-std', serif;
	border-top: solid 3px #666666;
	border-bottom: solid 3px #666666;
	border-left: none;
	border-right: none;
	letter-spacing: 3px;
	padding: 20px 35px;
	font-size: 14px;
	text-transform: uppercase;
	cursor: pointer;
	background: none;
	margin: 30px 35px 0 0;
}
#hello .send:hover, #hello .reset:hover {
	border-top: solid 3px #fff;
	border-bottom: solid 3px #fff;
}
#hello .send:focus, #hello .reset:focus {
	outline: none;
}
#hello .hello-links {
	margin: 40px 0 0 0;
	max-width: 300px;
	letter-spacing: 1px;
}
#hello a, #hello .phone {
	color: #fff;
	text-transform: uppercase;
	font-size: 13px;
	font-weight: bold;
	padding: 0 0 0 50px;
	display: inline-block;
	margin: 20px 0;
	min-height: 23px;
	line-height: 23px;
	transition:.3s;
	-o-transition:.3s;
	-ms-transition:.3s;
	-moz-transition:.3s;
	-webkit-transition:.3s;
}
#hello .phone a {
	margin: 0;
	padding: 0;
}
#hello input {
	font-family: 'proxima-nova', sans-serif;
}
#hello a.mail {
	background: url('../images/icon-hello-mail.png') no-repeat left center;
	background-size: 32px 23px;
}
#hello a.mail:hover {
	background: url('../images/icon-hello-mail-white.png') no-repeat left center;
	background-size: 32px 23px;
}
#hello .phone {
	background: url('../images/icon-hello-phone.png') no-repeat 5px center;
	background-size: 23px 23px;
}
#hello .phone:hover {
	background: url('../images/icon-hello-phone-white.png') no-repeat 5px center;
	background-size: 23px 23px;
}
#hello a.pin {
	background: url('../images/icon-hello-pin.png') no-repeat left center;
	background-size: 28px 34px;
}
#hello a.pin:hover {
	background: url('../images/icon-hello-pin-white.png') no-repeat left center;
	background-size: 28px 34px;
}
.success-message {
	display: block;
	text-align: left;
	font-size: 15pxx;
	color: #fff;
	margin: 20px 20px 20px 0;
	letter-spacing: 1px;
}
.submit-sending {
	font-size: 13px;
	color: #298dad;
	margin: 35px 38px 35px 0;
	padding: 14px 66px 14px 16px;
	text-transform: uppercase;
	background: url('../images/ajax-loader.gif') no-repeat 100px center;
	border: none;
	font-weight: bold;
	display: none;
}
.submit-invalid {
	font-size: 15px;
	letter-spacing: 1px;
	color: #298dad;
	margin: 0;
	border: none;
	font-weight: 300;
	display: none;
}
#hello-form input {
	-webkit-border-radius: 0px;
	-moz-border-radius: 0px;
	border-radius: 0px;
}
#connect #social {
	background: #333;
	position: relative;
}

#social .social-card {
	height: 400px;
}
.sbtn {
	border: none;
	background: none;
	cursor: pointer;
	padding: 125px 0;
	display: inline-block;
	margin: 0;
	text-transform: uppercase;
	font-weight: 700;
	outline: none;
	position: relative;
	-webkit-transition: all 0.8s;
	-moz-transition: all 0.8s;
	transition: all 0.8s;
	background: #999;
	color: #fff;
	width: 100%;
	height: 400px;
	line-height: 28px;
	font-size: 28px;
	letter-spacing: 2px;
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	-moz-backface-visibility: hidden;
	backface-visibility: hidden;
}
.sbtn:after {
	content: '';
	position: absolute;
	z-index: -1;
	-webkit-transition: all 0.8s;
	-moz-transition: all 0.8s;
	transition: all 0.8s;
}
.sbtn:hover {
	background: #298dad;
}
.sbtn:active {
	background: #9053a9; /* click */
}
.sbtn span {
	display: inline-block;
	width: 100%;
	height: 100%;
	-webkit-transition: all 0.8s;
	-webkit-backface-visibility: hidden;
	-moz-transition: all 0.8s;
	-moz-backface-visibility: hidden;
	transition: all 0.8s;
	backface-visibility: hidden;
}
.sbtn-fb span {
	background: url('../images/icon-social-fb.png') no-repeat center center;
}
.sbtn-twitter span {
	background: url('../images/icon-social-twitter.png') no-repeat center center;
}
.sbtn-instagram span {
	background: url('../images/icon-social-instagram.png') no-repeat center center;
}
.sbtn-houzz span {
	background: url('../images/icon-social-houzz.png') no-repeat center center;
}
.sbtn-google span {
	background: url('../images/Google-plus-icon.png') no-repeat center center;
}
.sbtn-link span {
	background: url('../images/linkedin-logo.png') no-repeat center center;
}
.sbtn-fb {
	background:
}
.sbtn-twitter {
	background: #8d8c8c;
}
.sbtn-instagram {
	background: #868686;
}
.sbtn-houzz {
	background: #7b7b7b;
}

/* Branded Social Colors

.sbtn-fb {
	background: #3B5998;
}
.sbtn-twitter {
	background: #00acee;
}
.sbtn-instagram {
	background: #3f729b;
}
.sbtn-houzz {
	background: #73ba37;
}
*/

.sbtn:active:before {
	color: #703b87;
}
.sbtn:hover span {
	-webkit-transform: translateY(300%);
	-moz-transform: translateY(300%);
	-ms-transform: translateY(300%);
	transform: translateY(300%);
}
.sbtn:before {
	position: absolute;
	height: 100%;
	width: 100%;
	line-height: 2.5;
	-webkit-transition: all 0.5s;
	-moz-transition: all 0.5s;
	transition: all 0.5s;
	left: 0;
	top: -100%;
}
.sbtn:hover:before {
	top: 0;
	bottom: 0;
	margin: 160px 0 0 0;
}
.sbtn:before {
	content: attr(data-content);
	/*content: url(../images/icon-social-twitter.png) "facebook.com/hello" ;*/
}
.sbtn-container {
	position: relative;
}
.sbtn-top {
	position: absolute;
	display: none;
	top: 200px;
	left: 50%;
	z-index: 1;
	font-size: 20px;
	line-height: 20px;
	letter-spacing: 1px;
}


@media (max-width: 1200px) {
	#connect .grid_6 {
		margin: 0;
		width: 50%;
	}
	#connect #hello, #connect #social {
		width: 100%;
		margin: 0;
	}
}
@media (max-width: 699px) {
	#hello .hello-top-input {
		width: 100%;
		margin: 0 0 20px 0;
	}
	#hello .hello-select {
		width: 100%;
		margin: 0 0 20px 0;
	}
}
@media (max-width: 600px) {
	#connect #hello {
		padding: 50px 20px;
	}
	#connect .grid_6 {
		margin: 0;
		width: 100%;
	}
}
@media (max-width: 490px) {
	#hello .send, #hello .reset {
		padding: 3% 5%;
		margin: 3% 5%;
	}
	#hello .send {
		margin-left: 0 !important;
	}
}




/* Tablet */
@media screen and (max-width: 1024px) {
.slide-section {
	width: 100%;
}
#decorative {
	display:none;
}
#content {
	text-align:center;
	width:100%;
}

}




/* Mobile */
@media screen and (max-width: 480px) {

}

#ditto-footer {
	background: #fff;
	color: #999999;
	font-size: 12px;
	text-transform: uppercase;
	padding: 40px 0;
}
#ditto-footer .left {
	text-align: left;
	margin-bottom: 0;
	padding: 0 40px;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 1px;
}
#ditto-footer .right {
	text-align: right;
	margin-bottom: 0;
	padding: 0 40px;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 1px;
}
#ditto-footer .right a {
	color: #298dad;
}
#ditto-footer .right a:hover {
	color: #353535;
}
@media (max-width: 767px) {
	#ditto-footer .left, #ditto-footer .right {
		text-align: center;
	}
}




/* Not Found */

#ditto1.error1 {
	background: #fff url('../images/error-bg.jpg') no-repeat;
	background-size: cover;
	-webkit-background-size: cover;
	-o-background-size: cover;
	-moz-background-size: cover;
	padding: 0;
}
#ditto1.error1 .on-center {
	height: 140px;
}
@media (max-width: 480px) {
	#ditto1.error1 {
		background: #fff url('../images/error-bg.jpg') no-repeat 50% 0;
		background-size: cover;
		-webkit-background-size: cover;
		-o-background-size: cover;
		-moz-background-size: cover;
	}
}
