@charset "utf-8";
/* CSS Document */


// 10px gutter
.gutter-8.row {
  margin-right: -4px;
  margin-left: -4px;
}
.gutter-8 > [class^="col-"], .gutter-8 > [class^=" col-"] {
  padding-right: 4px;
  padding-left: 4px;
}



.img-responsive {
	position: relative;
	display:block; 
	height: 250px; 	
	width: 100%;	
	object-fit: cover;
	
	overflow: hidden;
	
}



.row-height {
    height: 250px;
    text-align: center;

	background-clip:content-box;
	
}



.h1 {
	color: white;
	opacity: 0.5;
	text-align: left;
	margin-left: 15px;
	
}




.pp {
	
	text-align: left;
	margin-left: 15px;
	margin-right: 15px;
	color: black;
	opacity: 0.7;

		
}





/*---------------*/
/***** Sadie *****/
/*---------------*/



figure.effect-sadie h3 {
	margin-left: 20px;
	position: absolute;
	top: 85%;
	left: 0;
	width: 100%;
	color: lightgray;
	letter-spacing: 1px;
	-webkit-transition: -webkit-transform 0.8s, color 0.8s;
	transition: transform 0.8s, color 0.8s;
	-webkit-transform: translate3d(0,-50%,0);
	transform: translate3d(0,-50%,0);
}

figure.effect-sadie figcaption::before,
figure.effect-sadie p {
	-webkit-transition: opacity 0.8s, -webkit-transform 0.8s;
	transition: opacity 0.8s, transform 0.8s;
}

figure.effect-sadie p {
	position: absolute;
	color: white;
	top: 40%;
	bottom: 0;
	left: 0;	
	width: 100%;
	opacity: 0;
	-webkit-transform: translate3d(0,10px,0);
	transform: translate3d(0,10px,0);
}

figure.effect-sadie:hover h3 {
	color: #fff;
	-webkit-transform: translate3d(0,-50%,0) translate3d(0,-40px,0);
	transform: translate3d(0,-50%,0) translate3d(0,-40px,0);
}

figure.effect-sadie:hover figcaption::before ,
figure.effect-sadie:hover p {
	opacity: 1;
	-webkit-transform: translate3d(0,0,0);
	transform: translate3d(0,0,0);
}


figure.effect-sadie {
	background: #030c17;
	-webkit-transition: opacity 0.8s, -webkit-transform 0.8s;
	transition: opacity 0.8s, transform 0.8s;
}

figure.effect-sadie:hover img {	
	opacity: 0.4;
	-webkit-transition: opacity 0.8s, -webkit-transform 0.8s;
	transition: opacity 0.8s, transform 0.8s;
}




#photo {
    animation-delay: 0s;
    animation: fadein 3s;
    -moz-animation: fadein 3s; /* Firefox */
    -webkit-animation: fadein 3s; /* Safari and Chrome */
    -o-animation: fadein 3s; /* Opera */
}
@keyframes fadein {
    from {
        opacity:0;
    }
    to {
        opacity:1;
    }
}
@-moz-keyframes fadein { /* Firefox */
    from {
        opacity:0;
    }
    to {
        opacity:1;
    }
}
@-webkit-keyframes fadein { /* Safari and Chrome */
    from {
        opacity:0;
    }
    to {
        opacity:1;
    }
}
@-o-keyframes fadein { /* Opera */
    from {
        opacity:0;
    }
    to {
        opacity: 1;
    }
}
