.outer-muse-portfolio{
	position: relative;
}
.outer-muse-portfolio::after {
    content: "";
    background: #fff;
    height: 0%;
    width: 100%;
    z-index: 10000000;
    position: absolute;
    left: 0;
    top: 0;
    opacity: .95;
	transition: 0.5s ease-in-out;
}
.outer-muse-portfolio.fadeOutCats::after {
    content: "";
    background: #fff;
    height: 100%;
    width: 100%;
    z-index: 10000000;
    position: absolute;
    left: 0;
    top: 0;
	bottom: auto;
    opacity: .95;
	transition: 0.5s ease-in-out;
}
.outer-muse-portfolio.fadeInCats::after {
    content: "";
    background: #fff;
    height: 100%;
    width: 100%;
    z-index: 10000000;
    position: absolute;
    left: 0;
	top: auto;
    bottom: 0;
    opacity: .95;
	transition: 0.5s ease-in-out;
}
.outer-muse-portfolio{
	transition: all .8s cubic-bezier(.455, .03, .515, .955);
	-webkit-transition: all .8s cubic-bezier(.455, .03, .515, .955);
	_transform: translateX(0);
	opacity: 1;
}
.outer-muse-portfolio.fadeOutCatsLeft{
	_transform: translateX(100%);
	opacity: 0;
}