@charset "UTF-8";
/* CSS Document */

body {
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	background-attachment: fixed;
	background-blend-mode: luminosity;
	min-height: 100vh;
	position: relative;
    z-index: 0;
}

body::after {
	content: "";
	width: 100vw;
	height: 100vh;
	position: fixed;
	top: 0;
	left: 0;
	z-index: -1;
}

body.default-template {
	color: rgba(var(--white), 1);
	--act-current: var(--black);
}

body.events-template {
	--act-current: var(--act-event);
}

body.business-template {
	--act-current: var(--act-business);
}

body.junior-template {
	--act-current: var(--junior-purple);
}

body.default-template overlay {
	position: fixed;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: -1;
	background-color: rgba(var(--act-current), 0.8);
}

body.rw-custom overlay {
	position: fixed;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: -1;
	background-color: rgba(var(--act-current), 0.8);
}

body.junior-template overlay {
	position: fixed;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: -1;
	background-image: linear-gradient(135deg, rgba(var(--junior-mint), 0.6) 0%, rgba(var(--junior-purple), 0.6) 100%);
}

body.rw-custom.junior-template overlay::after {
	content: "";
	position: absolute;
	width: 100%;
	height: 100%;
	background-image: linear-gradient(45deg, rgba(var(--junior-blue), 0.6) 0%, rgba(var(--junior-yellow), 0.6) 100%);
	mix-blend-mode: overlay;
	border-top-right-radius: var(--sml-radius);
	border-bottom-right-radius: var(--sml-radius);
}

body.junior-template .content {
	color: rgba(var(--white), 1);
}

.button.gold {
	background: linear-gradient(60deg, rgba(var(--act-primary), 1) 0%, rgba(var(--act-primary-dark), 1) 20%, rgba(var(--act-primary-light), 1) 60%, rgba(var(--act-primary), 1) 100%);
}


@media screen and (max-width: 1180px) and (orientation: portrait),
screen and (max-width: 1024px) {
	
}

@media screen and (max-width: 768px) {
	
}