/* ====================================================================================================================
   images
   ==================================================================================================================== */

img.size-full,
img.size-thumbnail,
img.size-medium,
img.size-large,
img.alignleft,
img.alignright,
img.aligncenter,
img.alignnone{
	max-width: 100%;
	height: auto;
}

/* ====================================================================================================================
   team-member
   ==================================================================================================================== */
   
.team-member{
	margin: 0 auto;
	max-width: 240px;	
} 

.sah-sidebar .team-member{  
	max-width: 301px;
	margin-left: 0;
	margin-right: 0;	
}	

.team-member-name{
	
}   

.team-member-position{
	font-size: 0.9em;
	color: #8e7c7a;
	font-weight: 400;
}

@media screen and (min-width: 768px) and (max-width: 1023px), (min-width: 1200px){

	.team-member .pipe{
		display: none;	
	}
	
	.team-member-position{
		display: block;
		font-size: 0.8em;	
	}			
}

/* ====================================================================================================================
   featured-squares
   ==================================================================================================================== */
   
.featured-squares{
	position: relative;
}

.ie7 .featured-squares,
.ie8 .featured-squares{
	width: 1024px;
	margin-left: auto;
	margin-right: auto;
}


.fs-img,
.fs-content{
	width: 50%;
	box-sizing: border-box;
}

.fs-img{
	position: absolute;
	top: 0;
	height: 100%;
	background-repeat: no-repeat;
	background-size: cover;
}

.fs-img.left{
	left: 0;
}

.ie7 .fs-img.left,
.ie8 .fs-img.left{
	overflow: hidden;	
}	

.fs-img.right{
	right: 0;
}

.featured-squares img{
	display: none;
	width: 100%;	
}

.ie7 .featured-squares img,
.ie8 .featured-squares img{
	display: block;
}	

.fs-content{
	padding: 59px;
	padding: 5.9rem;	
}

.fs-content.left{
	float: left;
}

.fs-content.right{
	float: right;
}

.fs-content.dark-grey{
	background: #2a2c34;
}

@media screen and (min-width: 1024px){

	.fs-content{
		padding: 9.6rem;	
	}	
}

@media screen and (max-width: 768px){

	.fs-img,
	.fs-content{
		width: auto;
	}	

	.fs-img{
		position: static;	
	}
	
	.featured-squares img{
		display: block;	
	}	
	
	.fs-content{
		float: none;	
		padding: 5.9rem 9.6rem;
	}			
}

@media screen and (max-width: 568px){

	.fs-content{
		padding: 5.9rem;
	}			
}	

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

	.fs-content{
		padding: 3.7rem;
	}			
}

/* ====================================================================================================================
   testimonial
   ==================================================================================================================== */
   
.testimonial{
	padding: 0;
	border: 0;
	max-width: 280px;
	margin-left: auto;
	margin-right: auto;
}

.testimonial > p:after{
	content: "";
	width: 10px;
	height: 10px;	
	background: white;
	
	border-left: 1px solid #ededed;
	border-bottom: 1px solid #ededed;
	
	position: absolute;
	left: 50%;
	margin-left: -5px;
	bottom: -5px;
	
	-webkit-transform: rotate(-45deg);
	-o-transform: rotate(-45deg);
	-moz-transform: rotate(-45deg);
	transform: rotate(-45deg);
}	

.testimonial-thumb{
	display: block;
	margin: 1.4rem auto 0 auto;
	width: 5rem;	
	
	-o-border-radius: 50%;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	border-radius: 50%;
}


/* ====================================================================================================================
   cycler
   ==================================================================================================================== */
   
.sah-cycler{
	position: relative;
	z-index: 1;	
}  

.sah-cycler-gallery{
	overflow: visible;
} 

.sah-cycler .items,
.sah-cycler .item{
	margin: 0;
	padding: 0;
	list-style-type: none;
	position: relative;
} 

.sah-cycler .items{
	z-index: 1;
} 

.sah-cycler .item{
	overflow: hidden;	
}	 

.sah-cycler .img{
	position: absolute;
	top: 0;
	left: 0;
	display: block;
	width: 100%;
	height: auto;
}

.sah-cycler-content{
	position: relative;
	padding: 96px 36px;
	padding: 9.6rem 3.6rem;
/* 	background: rgba(255,243,62,0.3); */
	text-align: center;
}

.sah-cycler-head{
	display: inline-block;
	
	padding: 23px;
	padding: 2.3rem;

	color: white;
	font-weight: 400;
}

.sah-cycler.js .translated{
	opacity: 0;
	-o-transform: translate3d(0,-9.6rem,0);
	-moz-transform: translate3d(0,-9.6rem,0);
	-webkit-transform: translate3d(0,-9.6rem,0);
	transform: translate3d(0,-9.6rem,0);
}

.sah-cycler.js .animated{
	-o-transition: all 0.2s ease-in-out;
	-moz-transition: all 0.2s ease-in-out;
	-webkit-transition: all 0.2s ease-in-out;
	transition: all 0.4s ease-in-out;
}

.sah-cycler.js .translated.on{
	opacity: 1;
	-o-transform: translate3d(0,0,0);
	-moz-transform: translate3d(0,0,0);
	-webkit-transform: translate3d(0,0,0);
	transform: translate3d(0,0,0);
}

.sah-cycler.js .translated.delayed-1{
	-o-transition-delay: 0.1s;
	-moz-transition-delay: 0.1s;
	-webkit-transition-delay: 0.1s;
	transition-delay: 0.1s;
}

.sah-cycler.js .translated.delayed-2{
	-o-transition-delay: 0.2s;
	-moz-transition-delay: 0.2s;
	-webkit-transition-delay: 0.2s;
	transition-delay: 0.2s;
}

.sah-cycler:hover a.anchor-next,
.sah-cycler:hover a.anchor-prev{
	opacity: 1;	
}	


.sah-cycler a.anchor-next,
.sah-cycler a.anchor-prev{
	opacity: 0;
	position: absolute;
	top: 50%;
	margin-top: -22px;
	z-index: 200;
	display: block;
	width: 45px;
	height: 45px;
	line-height: 45px;
	
	font-size: 23px;
	color: #2a2c34;
	text-align: center;
	
	background-color: white;
	background-color: rgba(255,255,255,0.7);
	
	-o-border-radius: 50%;
	-moz-border-radius: 50%;
	-webkit-border-radius: 50%;
	border-radius: 50%;
	
	-webkit-transition: opacity 0.35s ease-in-out;
	-moz-transition: opacity 0.35s ease-in-out;
	-o-transition: opacity 0.35s ease-in-out;
	transition: opacity 0.35s ease-in-out;	
}

.sah-cycler-gallery a.anchor-next,
.sah-cycler-gallery a.anchor-prev{
	background-color: #2a2c34;
	color: white;
	opacity: 1;
}

.sah-cycler a.anchor-next:hover,
.sah-cycler a.anchor-prev:hover{
	background-color: rgba(255,255,255,0.9);	
}	

.sah-cycler-gallery a.anchor-next:hover,
.sah-cycler-gallery a.anchor-prev:hover{
	background-color: #3B3D43;
} 

.sah-cycler a.anchor-next{
	right: 20px;
}

.sah-cycler-gallery a.anchor-next{
	right: -20px;
}

.sah-cycler a.anchor-prev{
	left: 20px;
} 

.sah-cycler-gallery a.anchor-prev{
	left: -20px;
}  


@media screen and (min-width: 1024px) and (max-width: 1199px){

	.sah-cycler-content{
		padding-top: 12rem;
		padding-bottom: 12rem;	
	}
	
	.sah-cycler.js .translated{
		-o-transform: translate3d(0,-12rem,0);
		-moz-transform: translate3d(0,-12rem,0);
		-webkit-transform: translate3d(0,-12rem,0);
		transform: translate3d(0,-12rem,0);
	}			
}

@media screen and (min-width: 1200px){

	.sah-cycler-content{
		padding-top: 15rem;
		padding-bottom: 15rem;	
	}
	
	.sah-cycler.js .translated{
		-o-transform: translate3d(0,-15rem,0);
		-moz-transform: translate3d(0,-15rem,0);
		-webkit-transform: translate3d(0,-15rem,0);
		transform: translate3d(0,-15rem,0);
	}			
}

@media screen and (max-width: 767px){	

	.sah-cycler-content{
		padding-top: 3.7rem;
		padding-bottom: 3.7rem;	
	}
	
	.sah-cycler.js .translated{
		-o-transform: translate3d(0,-3.7rem,0);
		-moz-transform: translate3d(0,-3.7rem,0);
		-webkit-transform: translate3d(0,-3.7rem,0);
		transform: translate3d(0,-3.7rem,0);
	}
	
	.sah-cycler-break{
		display: block;
	}	
	
	.sah-cycler a.anchor-next,
	.sah-cycler a.anchor-prev{	
		display: none;	
	}			
}

@media screen and (max-width: 568px){

	.sah-cycler-content .sah-btn.medium{
		display: block;
		max-width: 120px;
		margin-left: auto;
		margin-right: auto;
	}
	
	.sah-cycler-head{
		padding: 1.4rem;	
	}	
}	

/* =========================================== */

.js .sahci-wrapper{
	position: relative;
	overflow: hidden;
	padding-top: 75%;
}

.js .sahci-wrapper a{
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	text-decoration: none;
}

.sahci-wrapper img{
	display: block;	
}

.js .sahci-wrapper img{	
	position: absolute;
	top: 50%;
	left: 50%;	
}	


/* ====================================================================================================================
   post
   ==================================================================================================================== */
   
.post{
	-o-border-radius: 3px;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
}   
   
.post-cats a{
	color: #fbe108;
	text-transform: uppercase;
	font-weight: 700;
}

.post-featured-img{
	display: block;
	width: 100%;
	height: auto;
	position: relative;
}

.post-featured-img-wrapper{
	position: relative;
	margin: -23px -23px 0 -23px;
	margin: -2.3rem -2.3rem 0 -2.3rem;		
}	

@media screen and (min-width: 768px) and (max-width: 1023px), (min-width: 1200px){
	
	.post-featured-img-wrapper{
		margin: -3.7rem -3.7rem 0 -3.7rem;
	}	
}


/* ====================================================================================================================
   Comments list
   ==================================================================================================================== */
   
#comments{
	
}   

#comments ul, #comments ol{
	list-style-type: none;
	background: transparent;
	margin-left: 0;

}

#comments ul.children, #comments ol.children{
	margin-top: 0;	
}	

.comment-author a,
.comment-metadata > a:first-child,
.logged-in-as a{
	font-weight: 700;	
}

.comment-author a,
.logged-in-as a{
	color: #25292c;	
}

.comment-metadata > a:first-child{
	color: #888888;
	margin-right: 6px;
	margin-right: 0.6rem;		
}

.comment{
	padding: 23px 0 0 23px;
	padding: 2.3rem 0 0 2.3rem;
	
	background: #f3f3f3;
	border: 2px solid white;
	border: 0.15rem solid white;
	border-bottom: 0;
	border-right: 0;    
}  

.comment-body{
	padding-right: 23px;
	padding-right: 2.3rem;	
	padding-bottom: 23px;
	padding-bottom: 2.3rem;
}

.comment .avatar{
	float: left;
	margin: 0 14px 23px 0;
	margin: 0 1.4rem 2.3rem 0;	
}

.comment-content{
	clear: left;
}

.form-allowed-tags{
	line-height: 1.2em;
}

@media screen and (max-width: 568px){

	.comment{
		padding: 1.4rem 0 0 1.4rem;	
	}
	
	.comment-body {
	    padding-right: 1.4rem;
	    padding-bottom: 1.4rem;
	}
	
	.comment-metadata .edit-link{
		display: block;
		margin-top: 0.4rem;
	}	
}

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

	.comment{
		padding: 0.9rem 0 0 0.9rem;	
	}
	
	.comment-body {
	    padding-right: 0.9rem;
	    padding-bottom: 0.9rem;
	}	
}

/* ====================================================================================================================
   widgets
   ==================================================================================================================== */
#recentcomments,
.widget_archive ul,
.widget_categories ul,
.widget_meta ul,
.widget_recent_entries ul{
	margin-left: 0;
}

#recentcomments li,
.widget_archive ul li,
.widget_categories ul li,
.widget_meta ul li,
.widget_recent_entries ul li{
	list-style-type: none;
	color: #888888;
}
   
#recentcomments a,
.widget_archive a,
.widget_categories a,
.widget_meta a,
.widget_recent_entries a,
#recentcomments .comment-author-link a{
	color: #25292c;
}

.widget_tag_cloud a{
	font-size: 13px !important;
	font-size: 1.3rem !important;
	margin-right: 4px;
	margin-right: 0.4rem;
	font-weight: 400;
}

/* ====================================================================================================================
   sah-widget-entry
   ==================================================================================================================== */

.sah-widget-entry,
.sah-widget-entry span{
	display: block;
}

.sah-widget-entry{
	-webkit-transition: opacity 0.35s ease-in-out;
	-moz-transition: opacity 0.35s ease-in-out;
	-o-transition: opacity 0.35s ease-in-out;
	transition: opacity 0.35s ease-in-out;
}	

.sah-widget-entry:hover{
	text-decoration: none;
	opacity: 0.8;
}

.sah-widget-entry .img{
	float: left;
	width: 96px;
	width: 9.6rem;	
}

.sah-widget-entry .description{
	line-height: 1.3em;
	padding-top: 6px;
	padding-top: 0.6rem;
	margin-left: 113px;
	margin-left: 11.3rem;	
}

.sah-widget-entry .time{
	margin-top: 6px;
	margin-top: 0.6rem;
}

@media screen and (min-width: 1024px){

	.sah-widget-entry .description{
		padding-top: 0;
	}		
}


/* ====================================================================================================================
   sah-service
   ==================================================================================================================== */	

.sah-service{
	padding: 0 1.4rem;
}

.sah-service.align-left{
	text-align: left;
}

.sah-service.align-middle{
	text-align: center;
	max-width: 330px;
}

.sah-service img{
	display: block;
	width: 59px;
	width: 5.9rem;
	height: auto;
	
	-o-border-radius: 0.3rem;
	-moz-border-radius: 0.3rem;
	-webkit-border-radius: 0.3rem;
	border-radius: 0.3rem;
}

.sah-service.align-left img{
	float: left;
}

.sah-service.align-middle img{
	margin-left: auto;
	margin-right: auto;	
}

.align-left .sahs-content{
	margin-left: 82px;	
	margin-left: 8.2rem;
}	

@media screen and (max-width: 568px){

	.sah-service{
		padding: 0;	
	}	

	.sah-service img{
		width: 3.7rem;
	}
	
	.align-left .sahs-content{
		margin-left: 5.1rem;
	}		
}

@media screen and (min-width: 1024px){

	.sah-service.align-left  img{
		float: none;
	}	
	
	.align-left  .sahs-content{
		margin-left: 0;	
	}	
}


/* ====================================================================================================================
   masonry-grid
   ==================================================================================================================== */	

.masonry-grid{
	position: relative;
}

.ie7 .masonry-grid,
.ie8 .masonry-grid{
	width: 400px;
	margin-left: auto !important;
	margin-right: auto !important;	
}	

/*
.single-post .sah-gutter .masonry-grid,
.sahw-gallery.sah-gutter .masonry-grid{
*/
.sah-gutter .masonry-grid{
	margin-left: -59px;
	margin-left: -5.9rem;
	margin-right: -59px;
	margin-right: -5.9rem; 	
}

.sah-section .masonry-grid{
	margin-bottom: -59px;
	margin-bottom: -5.9rem;		
}

	

/* fluid 5 columns */
.masonryg-sizer,
.masonryg-item,
.masonryg-item--width2 { width: 50%; }		

.masonry-grid img{
	display: block;
	width: 100%;
	height: auto;
}

@media screen and (min-width:1024px){
	
	/* fluid 5 columns */
	.masonryg-sizer,
	.masonryg-item { width: 20%; }
	/* 2 columns */
	.masonryg-item--width2 { width: 40%; }				
}

@media screen and (max-width: 568px){

	.sah-gutter .masonry-grid{
		margin-left: -3.7rem;
		margin-right: -3.7rem; 
	}
	
	.sah-section .masonry-grid{
		margin-bottom: -37px;
		margin-bottom: -3.7rem;		
	}				
}

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

	.sah-gutter .masonry-grid{
		margin-left: -2.3rem;
		margin-right: -2.3rem; 
	}			
} 	


.sah-section.no-bottom-pad .masonry-grid{
	margin-bottom: 0;	
}

/* ====================================================================================================================
   contact-col
   ==================================================================================================================== */
   
.contact-col{
	margin-top: 28px;
	margin-top: 2.8rem;
	padding: 0 23px 23px 23px;
	padding: 0 2.3rem 2.3rem 2.3rem;
	border: 1px solid #ededed;
}

.contact-col .h2{
	position: relative;
	margin-top: -28px;
	margin-top: -2.8rem;	
}

.contact-col-inner{
	position: relative;
	min-height: 445px;
}

.contact-col-inner.gymea{
	min-height: 530px;
}

.contact-col-inner iframe{
	width: 100%;
	height: 440px;	
}	

@media screen and (max-width: 1023px){
	.contact-col-inner,
	.contact-col-inner.gymea{
		min-height: 10px;
	}	
}

@media screen and (min-width: 1200px){

	.contact-col .h2{
		margin-top: -3.8rem;	
	}	
}	

/* ====================================================================================================================
   contact-col
   ==================================================================================================================== */

.sah-instagram{
	
}

.sah-instagram .item{
	display: inline-block;
	width: 33.33%;
	vertical-align: top;
}

.sah-instagram.js .item{
	position: relative;
	overflow: hidden;	
	padding-top: 33.33%;
}

.sah-instagram .item img{
	display: block;
	width: 100%;
	height: auto;	
}

.sah-instagram.js .item img{
	position: absolute;	
	top: 50%;
	left: 50%;
}	

@media screen and (min-width: 1024px){

	.sah-instagram .item{
		width: 16.66%;
	}
	
	.sah-instagram.js .item{
		padding-top: 16.66%;
	}		
}

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

	.sah-instagram .item{
		width: 50%;
	}
	
	.sah-instagram.js .item{
		padding-top: 50%;
	}		
}	





























	