@keyframes animate-svg {
	from {
		transform: scale(0);
		opacity: 0.5;
	}
	to {
		transform: scale(1);
		opacity: 0;
	}
}

#preloader {
	width: 100%;
	height: 100%;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 999;
	background: linear-gradient(to right, rgba(36, 31, 31, 1) 0%, rgba(36, 31, 31, 1) 32%, rgba(74, 71, 70, 1) 100%);
	display: flex;
	align-items: center;
	justify-content: center;
}

.loader {
	position: relative;
	width: 50rem;
	height: 50rem;
}

.loader svg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	animation: animate-svg 1.5s cubic-bezier(0.9, 0.24, 0.62, 0.79) infinite;
	opacity: 0;
}

.loader svg:nth-child(1) {
	animation-delay: 0s;
}
.loader svg:nth-child(2) {
	animation-delay: 0.33s;
}
.loader svg:nth-child(3) {
	animation-delay: 0.66s;
}
