body {
	font-family: 'Open Sans', sans-serif;
}

.rubik-moonrocks-regular {
	font-family: "Rubik Moonrocks", sans-serif;
	font-weight: 400;
	font-style: normal;
}

.text-resmax {
	color: #984f9f;
}

.feature-section {
	background: url(../images/home_background.jpg?v=454) no-repeat 50% 50%/cover;
	background-attachment: fixed;
}

.bg-resmax {
	background: url(../images/thankyou-bg.jpg?v=454) no-repeat 50% 50%/cover;
	background-attachment: fixed;
}

.feature-wrapper {
	background: rgba(255, 255, 255, 0.7);
}

.splash .splash-icon {
	background: rgba(0, 0, 0, 0.5);
	display: block;
	height: 100%;
	pointer-events: none;
	position: fixed;
	right: 0;
	top: 0;
	transform: translateX(0) translateY(-100%);
	transition: transform .5s;
	width: 100%;
	z-index: 100
}

.splash.active .splash-icon {
	transform: translateX(0) translateY(0)
}

.splash.active .splash-icon:after {
	animation: splash-spinner 1.2s linear infinite;
	border: 5px solid #81385B;
	border-radius: 50%;
	border-top-color: rgba(0, 0, 0, .2);
	box-sizing: border-box;
	content: "";
	display: block;
	height: 40px;
	left: 50%;
	margin-left: -20px;
	position: absolute;
	top: 50%;
	width: 40px
}

@keyframes splash-spinner {
	0% {
		transform: rotate(0deg)
	}

	to {
		transform: rotate(359deg)
	}
}