/** * -------------------------------------------------------------------------------- * Team Member Apex * -------------------------------------------------------------------------------- */ .ct-tm-container { position: relative; width: 100%; height: auto; .ct-tm-content { opacity: 0; @include transition( all .2s ease-in-out ); &:hover { opacity: 1; } } .ct-tm-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; opacity: .8; @include gradient(45deg, $primary-color, 0%, $secondary-color, 70%); } .ct-tm-details { position: absolute; top: 50%; left: 50%; transform: translate( -50%, -50% ); h1, h2, h3, h4, h5, h6, p { color: $white-color; } } }