
.gallery{
	/*height: calc(100vh - 109px);*/
	   padding: 50px 0;
}
figcaption {
    display: flex;
    align-items: center;
    justify-content: space-between; 
    position: relative;
	
}
figcaption h2{
    font-size: 18px;
	padding: 10px 0;
	color: white;
}
figcaption::after {
    position: absolute;
    content: '';
    top: -100px;
    background: var(--text-color);
    height: 142px;
    width: 100%;
    left: -20px;
    z-index: -1;
    transition: all .3s ease-in-out;
	
	
}
.gal-title p i{
	color: white;
	margin-right:41px;
    transition: all .3s ease-in-out;
	
}

.effect-goliath{
    padding: 10px;
}
.gal-img{
background-color: black;
    overflow: hidden;
}
.effect-goliath:hover img {
    opacity: 0.6;
    transform: scale3d(1.1, 1.1, 1);
}
.effect-goliath img {
    transition: opacity 1s, transform 1s;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    position: relative;
    object-fit: contain;
}
.effect-goliath:hover figcaption::after {
    background-color: var(--yellow);
    width: 416px;
}
.effect-goliath:hover .gal-title p i {
    margin-right: 21px;

}
.effect-goliath:hover a,
.effect-goliath:hover h2{
	color: black;
	   transition: all .3s ease-in-out;
}
 .gallery .innertitle h2 {
	     font-weight: bold;
    padding-bottom: 10px;
    border-bottom: 1px solid black;
    color: var(--text-color);
    margin-bottom: 30px;
    font-size: 34px;
 }
.gallery.fieldtrip{
    height: auto;
    padding: 70px 0;

}
