/* Page Loader */
.js .loading::before {
	content: '';
	position: fixed;
	z-index: 100000;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: var(--color-bg);
}

.js .loading::after {
	content: '';
	position: fixed;
	z-index: 100000;
	top: 50%;
	left: 50%;
	width: 60px;
	height: 60px;
	margin: -30px 0 0 -30px;
	pointer-events: none;
	border-radius: 50%;
	opacity: 0.4;
	background: var(--color-link);
	animation: loaderAnim 0.7s linear infinite alternate forwards;
}

@keyframes loaderAnim {
	to {
		opacity: 1;
		transform: scale3d(0.5,0.5,1);
	}
}

.moving-cards {
	height: 100vh;
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	isolation: isolate;
	overflow: hidden;
}

.content__img {
	position: absolute;
	top: 0;
	left: 0;
	opacity: 0;
	will-change: transform;
	max-width: 200px !important;
	height: auto !important;
}

.content__img--full {
	width: 100%;
	height: 100%;
	background-size: cover;
}
