/* ========================================================
	VERSICOLOR WEBSITE 2026
	SITE CSS
======================================================== */



/* ============================
	TOPBAR
============================ */

.site--topbar {
	background-color: var(--vc-white);
	border-bottom: 1px solid rgba(232, 227, 242, .9);
	box-shadow: 0 8px 24px rgba(25, 22, 54, .035);
	padding: 1rem 0;
	position: relative;
	z-index: 1040;
}

.topbar--actions {
	align-items: center;
	display: flex;
	flex-wrap: nowrap;
	gap: .85rem;
	justify-content: flex-end;
}

.topbar--button {
	font-size: 1rem;
	min-height: 46px;
	padding: .85rem 1.25rem .9rem 1.25rem;
}

.topbar--button--open {
	background-color: var(--vc-orange);
	color: var(--vc-white);
}

.topbar--button--open:hover {
	background-color: var(--vc-deep-purple);
	color: var(--vc-white);
}

.topbar--button--tour {
	background-color: var(--vc-green-bright);
	color: var(--vc-black);
}

.topbar--button--tour:hover {
	background-color: var(--vc-green);
	color: var(--vc-black);
}

.topbar--circlelink {
	align-items: center;
	background-color: var(--vc-white);
	border: 1px solid var(--vc-border);
	border-radius: 50%;
	box-shadow: 0 10px 24px rgba(25, 22, 54, .055);
	color: var(--vc-black);
	display: inline-flex;
	font-size: 1.35rem;
	height: 46px;
	justify-content: center;
	transition: all .3s ease;
	width: 46px;
}

.topbar--circlelink:hover {
	background-color: var(--vc-purple);
	border-color: var(--vc-purple);
	color: var(--vc-white);
	transform: translateY(-2px);
}

.topbar--notice {
	align-items: center;
	background-color: var(--vc-white);
	border: 1px solid var(--vc-border);
	border-radius: 10rem;
	box-shadow: 0 10px 24px rgba(25, 22, 54, .055);
	display: flex;
	height: 100%;
	justify-content: center;
	min-height: 46px;
	padding: .725rem 1.15rem .85rem 1.15rem;
	text-align: center;
}

.topbar--notice p {
	color: var(--vc-black);
	font-family: var(--vc-font-ui);
	font-size: 1rem;
	font-weight: 800;
	line-height: 1.25;
	margin: 0;
}

.topbar--socials {
	align-items: center;
	display: flex;
	gap: .5rem;
	justify-content: flex-start;
}



/* ============================
	NAVIGATION
============================ */

.site--brand {
	align-items: center;
	display: inline-flex;
	flex-shrink: 0;
	position: relative;
	z-index: 2;
}

.site--brandlogo {
	height: 112px;
	object-fit: contain;
	transition: all .3s ease;
	width: auto;
}

.site--nav {
	backdrop-filter: none;
	background-color: rgba(255, 255, 255, .98);
	border-bottom: 1px solid rgba(232, 227, 242, .95);
	box-shadow: 0 8px 26px rgba(25, 22, 54, .045);
	padding: 1.05rem 0;
	position: sticky;
	top: 0;
	transition: all .3s ease;
	z-index: 1035;
}

.site--nav.scrolled {
	box-shadow: 0 12px 34px rgba(25, 22, 54, .08);
	padding: .8rem 0;
}

.site--nav.scrolled .site--brandlogo {
	height: 70px;
}

.site--navactions {
	align-items: center;
	display: flex;
	gap: .75rem;
	margin-left: 1.5rem;
}

.site--navbutton {
	align-items: center;
	border-radius: 10rem;
	box-shadow: 0 12px 28px rgba(25, 22, 54, .08);
	display: inline-flex;
	font-family: var(--vc-font-ui);
	font-size: 1.02rem;
	font-weight: 800;
	justify-content: center;
	line-height: 1;
	min-height: 50px;
	padding: .9rem 1.25rem .95rem 1.25rem;
	transition: all .3s ease;
	white-space: nowrap;
}

.site--navbutton:hover {
	box-shadow: 0 16px 34px rgba(25, 22, 54, .13);
	transform: translateY(-2px);
}

.site--navbutton--primary {
	background-color: var(--vc-orange);
	color: var(--vc-white);
}

.site--navbutton--primary:hover {
	background-color: var(--vc-deep-purple);
	color: var(--vc-white);
}

.site--navbutton--secondary {
	background-color: var(--vc-green-bright);
	color: var(--vc-black);
}

.site--navbutton--secondary:hover {
	background-color: var(--vc-green);
	color: var(--vc-black);
}

.site--navcontainer {
	align-items: center;
	display: flex;
	justify-content: space-between;
	position: relative;
}

.site--navitem {
	list-style: none;
}

.site--navlink {
	color: var(--vc-black);
	display: inline-flex;
	font-family: var(--vc-font-heading);
	font-size: 1.5rem;
	font-weight: 600;
	letter-spacing: .015rem;
	line-height: 1;
	padding: .75rem 0;
	position: relative;
	transition: all .3s ease;
	white-space: nowrap;
}

.site--navlink.active,
.site--navlink:hover {
	color: var(--vc-purple);
}

.site--navlist {
	align-items: center;
	display: flex;
	gap: 2.5rem;
	list-style: none;
	margin: 0;
	padding: 0;
}

.site--navtoggler {
	align-items: center;
	background-color: transparent;
	border: none;
	box-shadow: none;
	display: inline-flex;
	flex-direction: column;
	gap: .3rem;
	justify-content: center;
	padding: .35rem 0 .35rem .75rem;
	position: relative;
	z-index: 2;
}

.site--navtoggler:focus {
	box-shadow: none;
	outline: none;
}

.site--navtoggler:hover .site--navtogglerline {
	background-color: var(--vc-purple);
}

.site--navtogglerline {
	background-color: var(--vc-black);
	border-radius: 10rem;
	display: block;
	height: 2px;
	transition: all .3s ease;
	width: 28px;
}



/* ============================
	OFFCANVAS
============================ */

.site--offcanvas {
	background-color: var(--vc-white);
	border-left: 1px solid var(--vc-line);
	width: min(100%, 430px) !important;
	z-index: 2000 !important;
}

.site--offcanvasactions {
	display: flex;
	flex-direction: column;
	gap: .85rem;
	margin-top: 2rem;
}

.site--offcanvasbody {
	display: flex;
	flex-direction: column;
	padding: 2rem 1.5rem 2rem 1.5rem;
}

.site--offcanvasclose:focus {
	box-shadow: none;
	outline: none;
}

.site--offcanvasheader {
	border-bottom: 1px solid var(--vc-line);
	padding: 1.5rem 1.5rem 1.25rem 1.5rem;
}

.site--offcanvaslink {
	color: var(--vc-black);
	display: inline-flex;
	font-family: var(--vc-font-heading);
	font-size: 1.55rem;
	font-weight: 650;
	letter-spacing: -.025em;
	line-height: 1.15;
	padding: .1rem 0;
	transition: all .3s ease;
}

.site--offcanvaslink.active,
.site--offcanvaslink:hover {
	color: var(--vc-purple);
}

.site--offcanvasnav {
	display: flex;
	flex-direction: column;
	gap: 1.4rem;
	list-style: none;
	margin: 0;
	padding: 0;
}

.site--offcanvastitle {
	color: var(--vc-black);
	font-family: var(--vc-font-heading);
	font-size: 1.45rem;
	font-weight: 700;
	letter-spacing: -.025em;
	line-height: 1;
}

.topbar--button--route {
	background-color: var(--vc-purple);
	color: var(--vc-white);
}

.topbar--button--route:hover {
	background-color: var(--vc-deep-purple);
	color: var(--vc-white);
}

.site--offcanvascontact {
	display: grid;
	gap: .75rem;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	margin-top: 1.5rem;
}

.site--offcanvascirclelink {
	align-items: center;
	background-color: var(--vc-white);
	border: 1px solid var(--vc-border);
	border-radius: 1.25rem;
	box-shadow: 0 10px 24px rgba(25, 22, 54, .055);
	color: var(--vc-black);
	display: flex;
	gap: .75rem;
	min-height: 58px;
	padding: .85rem 1rem;
	transition: all .3s ease;
}

.site--offcanvascirclelink:hover {
	background-color: var(--vc-purple);
	border-color: var(--vc-purple);
	color: var(--vc-white);
	transform: translateY(-2px);
}

.site--offcanvascirclelink i {
	align-items: center;
	display: inline-flex;
	font-size: 1.25rem;
	justify-content: center;
	min-width: 1.4rem;
}

.site--offcanvascirclelink span {
	font-family: var(--vc-font-ui);
	font-size: 1rem;
	font-weight: 800;
	line-height: 1;
}

.site--offcanvasnotice {
	background-color: var(--vc-white);
	border: 1px solid var(--vc-border);
	border-radius: 1.25rem;
	box-shadow: 0 10px 24px rgba(25, 22, 54, .055);
	margin-top: 2rem;
	padding: 1rem 1.1rem;
}

.site--offcanvasnotice p {
	color: var(--vc-black);
	font-family: var(--vc-font-ui);
	font-size: 1rem;
	font-weight: 800;
	line-height: 1.35;
	margin: 0;
}



/* ============================
	HERO
============================ */

.home--eyebrow {
	color: var(--vc-yellow);
	display: inline-block;
	font-family: var(--vc-font-ui);
	font-size: 1rem;
	font-weight: 800;
	letter-spacing: .16rem;
	line-height: 1;
	margin-bottom: 1.5rem;
	text-shadow: 0 4px 18px rgba(25, 22, 54, .28);
	text-transform: uppercase;
}

.home--hero {
	align-items: center;
	display: flex;
	min-height: 780px;
	overflow: hidden;
	position: relative;
}

.home--herotitle {
	color: var(--vc-white);
	display: block;
	font-family: var(--vc-font-heading);
	letter-spacing: -.035em;
	line-height: 1;
	margin-bottom: 1.25rem;
	text-shadow: 0 8px 28px rgba(25, 22, 54, .34);
}

.home--herotitle-small,
.home--herotitle-large {
	display: block;
	font-family: var(--vc-font-heading);
}

.home--herotitle-small {
	font-size: clamp(2rem, 2.75vw, 3rem);
	font-weight: 500;
	letter-spacing: -.02em;
	line-height: 1.1;
	margin-bottom: .45rem;
}

.home--herotitle-large {
	font-size: clamp(2.65rem, 4.25vw, 5rem);
	font-weight: 600;
	letter-spacing: -.015em;
	line-height: 1.05;
}

.home--herobuttons {
	align-items: center;
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
	justify-content: center;
	margin-top: 2rem;
}

.home--herobuttons .vc--button--hero {
	background-color: var(--vc-green-bright);
	color: var(--vc-black);
}

.home--herobuttons .vc--button--hero:hover {
	background-color: var(--vc-green);
	color: var(--vc-black);
}

.home--herobuttons .vc--button--primary {
	background-color: var(--vc-purple);
	color: var(--vc-white);
}

.home--herobuttons .vc--button--primary:hover {
	background-color: var(--vc-deep-purple);
	color: var(--vc-white);
}

.home--herocontent {
	position: relative;
	z-index: 2;
}

.home--heroimage {
	height: 100%;
	object-fit: cover;
	object-position: center center;
	width: 100%;
}

.home--heroimagebox {
	height: 100%;
	inset: 0;
	position: absolute;
	width: 100%;
}

.home--heroimagebox::after {
	background:
		radial-gradient(circle at 24% 42%, rgba(246, 222, 47, .2) 0%, rgba(246, 222, 47, 0) 34%),
		radial-gradient(circle at 78% 36%, rgba(126, 107, 232, .2) 0%, rgba(126, 107, 232, 0) 38%);
	content: "";
	inset: 0;
	position: absolute;
}

.home--heroinner {
	margin-left: auto;
	margin-right: auto;
	max-width: 1500px;
	padding: 10rem 0 8rem 0;
	position: relative;
	z-index: 3;
}

.home--herooverlay {
	background:
		linear-gradient(180deg, rgba(25, 22, 54, .10) 0%, rgba(25, 22, 54, .52) 100%),
		linear-gradient(90deg, rgba(255, 138, 0, .12) 0%, rgba(126, 107, 232, .18) 100%);
	inset: 0;
	position: absolute;
	z-index: 1;
}

.home--herotext {
	color: rgba(255, 255, 255, .94);
	font-size: clamp(1.1rem, 1.35vw, 1.3rem);
	line-height: 1.72;
	margin-left: auto;
	margin-right: auto;
	max-width: 920px;
	text-shadow: 0 4px 18px rgba(25, 22, 54, .22);
}

.home--herotitle {
	color: var(--vc-white);
	font-family: var(--vc-font-heading);
	font-size: clamp(3.25rem, 4.5vw, 5rem);
	font-weight: 500;
	letter-spacing: -.025rem;
	line-height: 1;
	margin-bottom: 1.25rem;
	text-shadow: 0 8px 28px rgba(25, 22, 54, .34);
}



/* ============================
	INTRO
============================ */

.page--intro {
	background-color: var(--vc-white);
	padding: 8.5rem 0 4rem 0;
}

.page--intro .vc--sectiontext {
	font-size: 1.3rem;
	line-height: 1.72;
	max-width: 1120px;
}

.page--intro .vc--sectiontitle {
	color: var(--vc-black);
}



/* ============================
	FACTS
============================ */

.page--factcard {
	background-color: var(--vc-white);
	border: 1px solid var(--vc-border);
	border-radius: 2rem;
	box-shadow: var(--vc-shadow-card);
	height: 100%;
	overflow: hidden;
	padding: 2rem 1.75rem;
	position: relative;
	text-align: center;
}

.page--factcard::before {
	content: "";
	height: 6px;
	left: 0;
	position: absolute;
	top: 0;
	width: 100%;
}

.page--factcard--green::before {
	background-color: var(--vc-green-bright);
}

.page--factcard h3 {
	color: var(--vc-black);
	font-family: var(--vc-font-heading);
	font-size: clamp(1.85rem, 2vw, 2.125rem);
	font-weight: 500;
	letter-spacing: -.025em;
	line-height: 1.05;
	margin-bottom: .65rem;
}

.page--factcard p {
	color: var(--vc-grey-dark);
	font-size: 1.075rem;
	line-height: 1.6;
}

.page--factcard--green::before {
	background-color: var(--vc-green-bright);
}

.page--factcard--orange::before {
	background-color: var(--vc-orange);
}

.page--factcard--pink::before {
	background-color: var(--vc-pink);
}

.page--factcard--purple::before {
	background-color: var(--vc-purple);
}

.page--facts {
	background-color: var(--vc-white);
	padding: 2rem 0 8rem 0;
}

.page--facts.seasons--facts {
	background-color: var(--vc-white);
	padding: 8rem 0 6rem 0;
}

.page--facts.about--facts {
	background-color: var(--vc-white);
	padding: 4rem 0 4rem 0;
}



/* ============================
	VISIT COVER CARDS
============================ */

.page--visits .vc--sectiontext {
	font-size: 1.3rem;
	line-height: 1.72;
	max-width: 1120px;
}

.page--visitcard--cover {
	aspect-ratio: 1 / 1.32;
	background-color: var(--vc-deep-purple);
	border: 0;
	border-radius: 2rem;
	box-shadow: 0 22px 56px rgba(25, 22, 54, .14);
	min-height: 560px;
	position: relative;
	overflow: hidden;
}

.page--visitcard--cover:hover {
	box-shadow: 0 28px 70px rgba(25, 22, 54, .18);
	transform: translateY(-6px);
}

.page--visitcard--cover:hover .page--visitcoverimage {
	transform: scale(1.06);
}

.page--visitcovercontent {
	display: flex;
	flex-direction: column;
	height: 100%;
	inset: 0;
	justify-content: flex-end;
	padding: 2rem;
	position: absolute;
	z-index: 2;
}

.page--visitcovercontent h3 {
	color: var(--vc-white);
	font-family: var(--vc-font-heading);
	font-size: clamp(2rem, 2.35vw, 2.6rem);
	font-weight: 500;
	letter-spacing: -.025em;
	line-height: 1.02;
	margin-bottom: .9rem;
}

.page--visitcovercontent p {
	color: rgba(255, 255, 255, .92);
	font-size: 1.05rem;
	font-weight: 400;
	line-height: 1.6;
	margin-bottom: 1.25rem;
}

.page--visitcovercontent span {
	color: var(--vc-yellow);
	display: inline-block;
	font-family: var(--vc-font-ui);
	font-size: .9rem;
	font-weight: 800;
	letter-spacing: .12rem;
	line-height: 1;
	margin-bottom: .75rem;
	text-transform: uppercase;
}

.page--visitcoverimage {
	height: 100%;
	object-fit: cover;
	object-position: center center;
	transition: all .3s ease;
	width: 100%;
}

.page--visitcoverlist {
	border-top: 1px solid rgba(255, 255, 255, .22);
	display: flex;
	flex-direction: column;
	gap: .35rem;
	list-style: none;
	margin: 0 0 1.5rem 0;
	padding: 1rem 0 0 0;
}

.page--visitcoverlist li {
	color: rgba(255, 255, 255, .9);
	font-size: .98rem;
	font-weight: 700;
	line-height: 1.35;
}

.page--visitcoveroverlay {
	background:
		linear-gradient(180deg, rgba(25, 22, 54, .05) 0%, rgba(25, 22, 54, .35) 44%, rgba(25, 22, 54, .88) 100%),
		linear-gradient(135deg, rgba(126, 107, 232, .28) 0%, rgba(255, 138, 0, .12) 100%);
	inset: 0;
	position: absolute;
	z-index: 1;
}



/* ============================
	ABOUT
============================ */

.page--about {
	background-color: var(--vc-white);
	padding: 7.5rem 0;
}

.page--aboutbuttons {
	align-items: center;
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
	margin-top: 2rem;
}

.page--aboutbuttons .vc--button--primary {
	background-color: var(--vc-orange);
	color: var(--vc-white);
}

.page--aboutbuttons .vc--button--primary:hover {
	background-color: var(--vc-deep-purple);
	color: var(--vc-white);
}

.page--aboutbuttons .vc--button--secondary {
	background-color: var(--vc-green-bright);
	color: var(--vc-black);
}

.page--aboutbuttons .vc--button--secondary:hover {
	background-color: var(--vc-green);
	color: var(--vc-black);
}

.page--aboutcard {
	border-radius: 2rem;
	box-shadow: var(--vc-shadow-card);
	overflow: hidden;
}

.page--aboutcard:hover .page--aboutimage {
	transform: scale(1.04);
}

.page--aboutgrid {
	display: grid;
	gap: 1.25rem;
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

.page--aboutgrid .page--aboutcard {
	aspect-ratio: 1 / .76;
}

.page--aboutimage {
	height: 100%;
	object-fit: cover;
	object-position: center center;
	transition: all .3s ease;
	width: 100%;
}

.page--abouttext .vc--sectiontext {
	margin-left: 0;
	margin-top: 1rem;
	max-width: none;
}

.page--abouttext .vc--sectiontext+.vc--sectiontext {
	color: var(--vc-purple);
	font-family: var(--vc-font-heading);
	font-weight: 500;
}



/* ============================
	SEASONS
============================ */

.page--seasons .vc--sectiontext {
	font-size: 1.3rem;
	line-height: 1.72;
	max-width: 1120px;
}

.page--seasoncard {
	background-color: var(--vc-white);
	border: 1px solid var(--vc-border);
	border-radius: 2rem;
	box-shadow: var(--vc-shadow-card);
	display: flex;
	flex-direction: column;
	height: 100%;
	overflow: hidden;
	transition: all .3s ease;
}

.page--seasoncard:hover {
	box-shadow: 0 22px 54px rgba(25, 22, 54, .12);
	transform: translateY(-6px);
}

.page--seasoncard:hover .page--seasonimage {
	transform: scale(1.04);
}

.page--seasoncontent {
	display: flex;
	flex-direction: column;
	flex-grow: 1;
	padding: 1.6rem 1.35rem 1.7rem 1.35rem;
}

.page--seasoncontent h3 {
	color: var(--vc-black);
	font-family: var(--vc-font-heading);
	font-size: 1.55rem;
	font-weight: 500;
	letter-spacing: -.025em;
	line-height: 1.1;
	margin-bottom: .8rem;
}

.page--seasoncontent p {
	color: var(--vc-grey-dark);
	font-size: 1.025rem;
	line-height: 1.65;
}

.page--seasoncontent span {
	color: var(--vc-pink);
	display: inline-block;
	font-family: var(--vc-font-ui);
	font-size: .9rem;
	font-weight: 800;
	letter-spacing: .08rem;
	line-height: 1;
	margin-bottom: .75rem;
	text-transform: uppercase;
}

.page--seasonimage {
	height: 100%;
	object-fit: cover;
	object-position: center center;
	transition: all .3s ease;
	width: 100%;
}

.page--seasonimagebox {
	aspect-ratio: 1 / .8;
	background-color: var(--vc-cream);
	overflow: hidden;
	width: 100%;
}

.page--seasons {
	background-color: var(--vc-soft);
	padding: 7rem 0 6.5rem 0;
}

.page--seasons .vc--button {
	background-color: var(--vc-green-bright);
	color: var(--vc-black);
}

.page--seasons .vc--button:hover {
	background-color: var(--vc-green);
	color: var(--vc-black);
}



/* ============================
	GROUPS
============================ */

.page--groups {
	background:
		linear-gradient(135deg, rgba(255, 248, 232, .82) 0%, rgba(255, 255, 255, 1) 48%, rgba(251, 248, 255, .95) 100%);
	padding: 7.5rem 0;
}

.page--groupsbuttons {
	align-items: center;
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
	margin-top: 2rem;
}

.page--groupsbuttons .vc--button--primary {
	background-color: var(--vc-orange);
	color: var(--vc-white);
}

.page--groupsbuttons .vc--button--primary:hover {
	background-color: var(--vc-deep-purple);
	color: var(--vc-white);
}

.page--groupsbuttons .vc--button--secondary {
	background-color: var(--vc-green-bright);
	color: var(--vc-black);
}

.page--groupsbuttons .vc--button--secondary:hover {
	background-color: var(--vc-green);
	color: var(--vc-black);
}

.page--groupsimage {
	height: 100%;
	object-fit: cover;
	object-position: center center;
	width: 100%;
}

.page--groupsimagebox {
	aspect-ratio: 1 / .72;
	border-radius: 2rem;
	box-shadow: 0 24px 58px rgba(25, 22, 54, .11);
	overflow: hidden;
	width: 100%;
}

.page--groupslist {
	background-color: var(--vc-white);
	border: 1px solid var(--vc-border);
	border-radius: 1.5rem;
	box-shadow: 0 14px 34px rgba(25, 22, 54, .065);
	display: grid;
	gap: .5rem 1rem;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	list-style: none;
	margin: 1.75rem 0 0 0;
	padding: 1.5rem;
}

.page--groupslist li {
	color: var(--vc-grey-dark);
	font-size: 1.05rem;
	font-weight: 700;
	line-height: 1.45;
}

.page--groupstext .vc--sectiontext {
	margin-left: 0;
	max-width: none;
}



/* ============================
	GALLERY PREVIEW
============================ */

.page--gallerypreview .vc--sectiontext {
	font-size: 1.3rem;
	line-height: 1.72;
	max-width: 1120px;
}

.page--gallerygrid {
	display: grid;
	gap: 1.25rem;
	grid-template-columns: repeat(4, minmax(0, 1fr));
}

.page--galleryimage {
	height: 100%;
	object-fit: cover;
	object-position: center center;
	transition: all .3s ease;
	width: 100%;
}

.page--galleryitem {
	aspect-ratio: 1 / .8;
	border-radius: 1.75rem;
	box-shadow: var(--vc-shadow-card);
	display: block;
	overflow: hidden;
	position: relative;
}

.page--galleryitem:hover .page--galleryimage {
	transform: scale(1.05);
}

.page--galleryitem--large {
	grid-column: span 2;
	grid-row: span 2;
}

.page--gallerypreview {
	background-color: var(--vc-white);
	padding: 7.5rem 0;
}

.page--gallerypreview .vc--button {
	background-color: var(--vc-green-bright);
	color: var(--vc-black);
}

.page--gallerypreview .vc--button:hover {
	background-color: var(--vc-green);
	color: var(--vc-black);
}



/* ============================
	PRACTICAL INFO
============================ */

.page--practical {
	background:
		linear-gradient(135deg, rgba(255, 248, 232, .82) 0%, rgba(255, 255, 255, 1) 48%, rgba(251, 248, 255, .95) 100%);
	padding: 7.5rem 0;
}

.page--practicalbox {
	background-color: var(--vc-white);
	border: 1px solid var(--vc-border);
	border-radius: 2rem;
	box-shadow: 0 20px 52px rgba(25, 22, 54, .08);
	padding: 2.25rem;
}

.page--practicalbox p {
	color: var(--vc-grey-dark);
	font-size: 1.125rem;
	line-height: 1.75;
}

.page--practicalbuttons {
	display: grid;
	gap: 1rem;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	margin-top: 1.75rem;
}

.page--practicalbuttons .vc--button {
	width: 100%;
}

.page--practicalbuttons .vc--button:nth-child(1) {
	background-color: var(--vc-orange);
	color: var(--vc-white);
}

.page--practicalbuttons .vc--button:nth-child(1):hover {
	background-color: var(--vc-deep-purple);
	color: var(--vc-white);
}

.page--practicalbuttons .vc--button:nth-child(2) {
	background-color: var(--vc-green-bright);
	color: var(--vc-black);
}

.page--practicalbuttons .vc--button:nth-child(2):hover {
	background-color: var(--vc-green);
	color: var(--vc-black);
}

.page--practicalbuttons .vc--button:nth-child(3) {
	background-color: var(--vc-purple);
	color: var(--vc-white);
}

.page--practicalbuttons .vc--button:nth-child(3):hover {
	background-color: var(--vc-deep-purple);
	color: var(--vc-white);
}

.page--practicalintro .vc--sectiontitle {
	font-size: clamp(2rem, 2.5vw, 3rem);
	margin-bottom: 2rem;
}

.page--practicalintro .practical--imagebox {
	aspect-ratio: 1 / .72;
	border-radius: 2rem;
	box-shadow: 0 24px 58px rgba(25, 22, 54, .11);
	overflow: hidden;
	width: 100%;
}

.page--practicalintro .practical--image {
	height: 100%;
	object-fit: cover;
	object-position: center center;
	width: 100%;
}

.page--practicallist {
	display: grid;
	gap: 1rem;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	list-style: none;
	margin: 1.75rem 0 0 0;
	padding: 0;
}

.page--practicallist li {
	background-color: var(--vc-white);
	border: 1px solid var(--vc-border);
	border-radius: 1.25rem;
	box-shadow: 0 12px 28px rgba(25, 22, 54, .055);
	display: flex;
	flex-direction: column;
	gap: .35rem;
	padding: 1rem 1.1rem;
}

.page--practicallist strong {
	color: var(--vc-black);
	font-family: var(--vc-font-ui);
	font-size: 1rem;
	font-weight: 800;
	line-height: 1.25;
}

.page--practicallist span {
	color: var(--vc-grey-dark);
	font-size: 1rem;
	line-height: 1.45;
}


/* groepen form */
.page--practicallist li {
	display: flex;
	flex-direction: column;
	gap: .2rem;
}

.page--practicallist strong {
	color: var(--vc-black);
	font-family: var(--vc-font-ui);
	font-weight: 800;
}

.page--practicallist span {
	color: var(--vc-grey-dark);
}



/* ============================
	CONTENT PAGE INTRO
============================ */

.contentpage--intro {
	background:
		linear-gradient(135deg, rgba(255, 248, 232, .72) 0%, rgba(255, 255, 255, 1) 48%, rgba(251, 248, 255, .9) 100%);
	overflow: hidden;
	padding: 7.5rem 0;
	position: relative;
}

.contentpage--introbadge {
	backdrop-filter: blur(14px);
	background-color: rgba(255, 255, 255, .92);
	border: 1px solid rgba(255, 255, 255, .82);
	border-radius: 1.25rem;
	bottom: 2rem;
	box-shadow: 0 16px 38px rgba(25, 22, 54, .13);
	display: flex;
	flex-direction: column;
	gap: .25rem;
	max-width: 310px;
	padding: 1.1rem 1.2rem;
	position: absolute;
	right: 2rem;
	z-index: 2;
}

.contentpage--introbadge strong {
	color: var(--vc-black);
	font-family: var(--vc-font-heading);
	font-size: 1.5rem;
	font-weight: 600;
	line-height: 1.1;
}

.contentpage--introbadge span {
	color: var(--vc-grey-dark);
	font-size: 1rem;
	line-height: 1.35;
	font-style: italic;
}

.contentpage--introbuttons {
	align-items: center;
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
	margin-top: 2rem;
}

.contentpage--introcontent {
	max-width: 760px;
}

.contentpage--introimage {
	height: 100%;
	object-fit: cover;
	object-position: center center;
	transition: all .3s ease;
	width: 100%;
}

.contentpage--introimagebox {
	aspect-ratio: 1 / .78;
	border-radius: 2.25rem;
	box-shadow: 0 28px 68px rgba(25, 22, 54, .13);
	overflow: hidden;
	position: relative;
}

.contentpage--introimagebox::after {
	background:
		linear-gradient(180deg, rgba(25, 22, 54, 0) 52%, rgba(25, 22, 54, .18) 100%);
	content: "";
	inset: 0;
	pointer-events: none;
	position: absolute;
}

.contentpage--introimagebox:hover .contentpage--introimage {
	transform: scale(1.025);
}

.contentpage--lead {
	color: var(--vc-black);
	font-size: 1.25rem;
	line-height: 1.75;
	max-width: 720px;
}

.contentpage--subtitle {
	color: var(--vc-purple);
	font-family: var(--vc-font-heading);
	font-size: clamp(1.65rem, 2vw, 2.25rem);
	font-weight: 500;
	letter-spacing: -.02em;
	line-height: 1.15;
	margin-bottom: 1rem;
}

.contentpage--title {
	color: var(--vc-black);
	font-family: var(--vc-font-heading);
	font-size: clamp(3rem, 4.25vw, 5rem);
	font-weight: 600;
	letter-spacing: -.0125em;
	line-height: .925;
	margin-bottom: .85rem;
}



/* ============================
	PARAGRAPH
============================ */

.page--paragraph {
	overflow: hidden;
	padding: 7.5rem 0;
}

.page--paragraph--gallery .page--paragraphcontent {
	display: flex;
	flex-direction: column;
	height: 100%;
	justify-content: center;
}

.page--paragraph--media .page--paragraphcontent {
	max-width: 760px;
}

.page--paragraph--plain {
	background-color: var(--vc-white);
}

.page--paragraph--soft {
	background-color: var(--vc-soft);
}

.page--paragraph--warm {
	background:
		linear-gradient(135deg, rgba(255, 248, 232, .82) 0%, rgba(255, 255, 255, 1) 48%, rgba(251, 248, 255, .95) 100%);
}

.page--paragraphactions {
	align-items: center;
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
	margin-top: 2rem;
}

.page--paragraphbody {
	display: flex;
	flex-direction: column;
	gap: 1.15rem;
}

.page--paragraphbody p {
	color: var(--vc-black);
	font-size: 1.2rem;
	line-height: 1.65;
}

.page--paragraphcontent .vc--sectiontitle {
	margin-bottom: 1.5rem;
}

.page--paragraphgallery {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
	height: 100%;
}

.page--paragraphgalleryimage {
	height: 100%;
	object-fit: cover;
	object-position: center center;
	transition: all .3s ease;
	width: 100%;
}

.page--paragraphgalleryitem {
	border-radius: 1.75rem;
	box-shadow: 0 10px 36px rgba(25, 22, 54, .215);
	overflow: hidden;
	position: relative;
}

.page--paragraphgalleryitem:hover .page--paragraphgalleryimage {
	transform: scale(1.035);
}

.page--paragraphgalleryitem--large {
	height: 100%;
	min-height: 620px;
}

.page--paragraphgalleryitem--small {
	flex: 1 1 0;
	min-height: 292px;
}

.page--paragraphhighlight {
	border-left: 4px solid var(--vc-orange);
	display: flex;
	flex-direction: column;
	gap: .3rem;
	margin-top: 2rem;
	padding: .25rem 0 .25rem 1.25rem;
}

.page--paragraphhighlight strong {
	color: var(--vc-black);
	font-family: var(--vc-font-heading);
	font-size: 1.3rem;
	font-weight: 600;
	line-height: 1.25;
}

.page--paragraphhighlight span {
	color: var(--vc-grey-dark);
	font-size: .95rem;
	line-height: 1.55;
}

.page--paragraphimage {
	height: 100%;
	object-fit: cover;
	object-position: center center;
	transition: all .3s ease;
	width: 100%;
}

.page--paragraphitem {
	align-items: center;
	background: linear-gradient(180deg, #FFFFFF 0%, #FCFCFA 100%);
	border: 1px solid rgba(25, 22, 54, .11);
	border-radius: 1rem;
	box-shadow: 0 8px 22px rgba(25, 22, 54, .045);
	color: var(--vc-black);
	display: flex;
	font-family: var(--vc-font-heading);
	font-size: 1.15rem;
	font-weight: 500;
	justify-content: flex-start;
	letter-spacing: -.01em;
	line-height: 1.35;
	min-height: 54px;
	padding: .75rem 1.1rem;
	transition: all .3s ease;
	width: 100%;
}

.page--paragraphitem:hover {
	border-color: rgba(126, 107, 232, .32);
	box-shadow: 0 12px 28px rgba(25, 22, 54, .075);
	color: var(--vc-black);
	transform: translateY(-2px);
}

.page--paragraphlist {
	list-style: none;
	margin-top: 1.75rem;
	padding-left: 0;
}

.page--paragraphmedia {
	aspect-ratio: 1 / .78;
	border-radius: 2rem;
	box-shadow: 0 10px 36px rgba(25, 22, 54, .215);
	overflow: hidden;
	position: relative;
}

.page--paragraphmedia:hover .page--paragraphimage {
	transform: scale(1.035);
}

.page--paragraphquote {
	background-color: var(--vc-soft);
	border-left: 5px solid var(--vc-orange);
	border-radius: 0 1.25rem 1.25rem 0;
	margin: 2rem 0 0 0;
	padding: 1.35rem 1.5rem;
}

.page--paragraphquote p {
	color: var(--vc-purple);
	font-family: var(--vc-font-heading);
	font-size: 1.3rem;
	font-style: italic;
	font-weight: 500;
	line-height: 1.55;
}



/* ============================
	ARTICLES
============================ */

.page--articles {
	background-color: var(--vc-white);
	padding: 7.5rem 0;
}

.page--articles .vc--sectiontext {
	margin-left: auto;
	margin-right: auto;
	max-width: 950px;
}

.page--articlebody {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.page--articlebody p {
	color: var(--vc-grey-dark);
	font-size: 1.05rem;
	line-height: 1.7;
}

.page--articlecard {
	background-color: var(--vc-white);
	border: 1px solid #DDDDDD;
	border-radius: 1.75rem;
	box-shadow: 0 12px 30px rgba(25, 22, 54, .055);
	height: 100%;
	padding: 2rem;
	position: relative;
	transition: all .3s ease;
}

.page--articlecard::before {
	display: none;
}

.page--articlecard:hover {
	border-color: #CCCCCC;
	box-shadow: 0 20px 42px rgba(25, 22, 54, .09);
	transform: translateY(-4px);
}

.page--articlecard h3 {
	color: var(--vc-black);
	font-family: var(--vc-font-heading);
	font-size: 2.25rem;
	font-weight: 500;
	letter-spacing: -.025em;
	line-height: 1.1;
	margin-bottom: .85rem;
	padding-right: 4rem;
}

.page--articlecard--cyan .page--articlemeta {
	color: var(--vc-cyan);
}

.page--articlecard--green .page--articlemeta {
	color: var(--vc-green);
}

.page--articlecard--orange .page--articlemeta {
	color: var(--vc-orange);
}

.page--articlecard--pink .page--articlemeta {
	color: var(--vc-pink);
}

.page--articlecard--purple .page--articlemeta {
	color: var(--vc-purple);
}

.page--articlecard--yellow .page--articlemeta {
	color: var(--vc-yellow);
}

.page--articlemeta {
	display: inline-block;
	font-family: var(--vc-font-heading);
	font-size: 1.9rem;
	font-weight: 600;
	letter-spacing: .1rem;
	line-height: 1;
	margin-bottom: 1rem;
	position: absolute;
	right: 1.5rem;
	text-transform: uppercase;
	top: 1.65rem;
}


.page--articles .row.g-4>[class*="col-"] {
	display: flex;
}

.page--articlecard {
	display: flex;
	flex-direction: column;
	height: 100%;
	width: 100%;
}

.page--articlebody {
	flex-grow: 1;
}

.page--articleactions {
	margin-top: auto;
	padding-top: 1.5rem;
}

.page--articleactions .vc--button {
	font-size: 1rem;
	min-height: 48px;
	padding: .8rem 1.15rem .85rem 1.15rem;
}



/* ============================
	EVENTS
============================ */

.page--events {
	background-color: var(--vc-soft);
	padding: 7.5rem 0;
}

.page--events .vc--sectiontext {
	font-size: 1.2rem;
	line-height: 1.72;
	max-width: 1040px;
}

.page--eventscontainer {
	max-width: 1500px;
}

.page--eventactions {
	align-items: center;
	display: flex;
	justify-content: flex-end;
}

.page--eventcard {
	background-color: var(--vc-white);
	border: 1px solid var(--vc-border);
	border-radius: 1.75rem;
	box-shadow: var(--vc-shadow-card);
	padding: 1.5rem;
	transition: all .3s ease;
}

.page--eventcard:hover {
	border-color: rgba(126, 107, 232, .28);
	box-shadow: 0 20px 48px rgba(25, 22, 54, .11);
	transform: translateY(-3px);
}

.page--eventcard--past {
	background-color: rgba(255, 255, 255, .72);
	box-shadow: none;
}

.page--eventcard--past:hover {
	border-color: var(--vc-border);
	box-shadow: none;
	transform: none;
}

.page--eventcontent h3 {
	color: var(--vc-black);
	font-family: var(--vc-font-heading);
	font-size: clamp(1.75rem, 2vw, 2.25rem);
	font-weight: 500;
	letter-spacing: -.025em;
	line-height: 1.08;
	margin-bottom: .75rem;
}

.page--eventcontent p {
	color: var(--vc-grey-dark);
	font-size: 1.05rem;
	line-height: 1.65;
	max-width: 920px;
}

.page--eventdate {
	align-items: center;
	background-color: var(--vc-white);
	border: 1px solid var(--vc-border);
	border-radius: 1.35rem;
	display: flex;
	flex-direction: column;
	justify-content: center;
	min-height: 118px;
	min-width: 132px;
	padding: 1rem;
	text-align: center;
}

.page--eventdate strong {
	color: var(--vc-black);
	font-family: var(--vc-font-heading);
	font-size: 2rem;
	font-weight: 600;
	letter-spacing: -.025em;
	line-height: 1;
}

.page--eventdate span {
	color: var(--vc-purple);
	font-family: var(--vc-font-ui);
	font-size: .9rem;
	font-weight: 800;
	letter-spacing: .08rem;
	line-height: 1;
	margin-top: .55rem;
	text-transform: uppercase;
}

.page--eventhead {
	align-items: flex-start;
	display: flex;
	justify-content: space-between;
}

.page--eventmeta {
	display: flex;
	flex-wrap: wrap;
	gap: .5rem 1.25rem;
	list-style: none;
	margin: 1.15rem 0 0 0;
	padding: 0;
}

.page--eventmeta li {
	color: var(--vc-grey-dark);
	font-size: .95rem;
	font-weight: 700;
	line-height: 1.4;
	position: relative;
}

.page--eventmeta li:not(:last-child)::after {
	color: var(--vc-border);
	content: "•";
	position: absolute;
	right: -.85rem;
	top: 0;
}

.page--eventrow {
	--bs-gutter-x: 0;
	gap: 3rem;
}

.page--eventstatus {
	color: var(--vc-purple);
	display: inline-block;
	font-family: var(--vc-font-ui);
	font-size: .8rem;
	font-weight: 800;
	letter-spacing: .08rem;
	line-height: 1;
	margin-bottom: .65rem;
	text-transform: uppercase;
}

.page--eventstatus--past {
	color: var(--vc-grey);
}



/* ============================
	FAQ
============================ */

.faq--section {
	background-color: var(--vc-white);
	padding: 7.5rem 0;
}

.faq__answer {
	max-height: 0;
	opacity: 0;
	overflow: hidden;
	transform: translateY(-6px);
	transition:
		max-height .35s ease,
		opacity .25s ease,
		transform .25s ease;
}

.faq__answer p {
	color: var(--vc-black);
	font-size: 1.125rem;
	line-height: 1.65;
	margin: 0;
	max-width: 1050px;
	padding: 1rem 4rem .25rem 0;
}

.faq__answer p strong {
	color: var(--vc-black);
	font-weight: 700;
}

.faq__icon {
	color: var(--vc-black);
	flex: 0 0 auto;
	font-size: 1.25rem;
	transition:
		color .3s ease,
		transform .3s ease;
}

.faq__intro {
	margin-bottom: 3.5rem;
}

.faq__intro .vc--sectiontext {
	margin-left: auto;
	margin-right: auto;
	max-width: 900px;
}

.faq__item {
	border-bottom: 1px solid var(--vc-border);
	padding: 1.6rem 0;
	transition: border-color .3s ease;
}

.faq__item.is-open {
	border-bottom-color: rgba(126, 107, 232, .3);
}

.faq__item.is-open .faq__answer {
	opacity: 1;
	transform: translateY(0);
}

.faq__item.is-open .faq__icon {
	color: var(--vc-purple);
	transform: rotate(45deg);
}

.faq__question {
	align-items: center;
	cursor: pointer;
	display: flex;
	gap: 1.5rem;
	justify-content: space-between;
	outline: none;
}

.faq__question:focus-visible {
	border-radius: .5rem;
	box-shadow: 0 0 0 3px rgba(126, 107, 232, .18);
}

.faq__question:hover .faq__icon {
	color: var(--vc-purple);
}

.faq__question h3 {
	color: var(--vc-black);
	font-family: var(--vc-font-heading);
	font-size: 1.45rem;
	font-weight: 600;
	letter-spacing: -.02em;
	line-height: 1.25;
	margin: 0;
}

.faq__wrapper {
	border-top: 1px solid var(--vc-border);
}



/* ============================
	GALLERY PAGE
============================ */

.gallerypage {
	background-color: var(--vc-white);
	padding: 7rem 0 8rem;
}


/* ============================
	GALLERY FILTERS
============================ */

.gallerypage--filters {
	align-items: center;
	display: flex;
	flex-wrap: wrap;
	gap: .75rem;
	justify-content: center;
	margin: 2.5rem 0 3.5rem;
}

.gallerypage--filter {
	align-items: center;
	background-color: var(--vc-white);
	border: 1.5px solid var(--vc-line);
	border-radius: 10rem;
	color: var(--vc-black);
	display: inline-flex;
	font-family: var(--vc-font-ui);
	font-size: 1.05rem;
	font-weight: 800;
	gap: .5rem;
	justify-content: center;
	line-height: 1;
	min-height: 52px;
	padding: .85rem 1.3rem .9rem;
	transition:
		background-color .3s ease,
		border-color .3s ease,
		box-shadow .3s ease,
		color .3s ease;
	white-space: nowrap;
}

.gallerypage--filter:hover,
.gallerypage--filter.active {
	background-color: var(--vc-purple);
	border-color: var(--vc-purple);
	box-shadow: 0 12px 26px rgba(126, 107, 232, .18);
	color: var(--vc-white);
}

.gallerypage--filter--video:hover,
.gallerypage--filter--video.active {
	background-color: var(--vc-orange);
	border-color: var(--vc-orange);
	box-shadow: 0 12px 26px rgba(255, 138, 0, .2);
}

.gallerypage--filter:focus-visible {
	outline: 3px solid rgba(126, 107, 232, .25);
	outline-offset: 3px;
}

.gallerypage--filter i {
	font-size: 1rem;
	line-height: 1;
}


/* ============================
	GALLERY PANELS
============================ */

.gallerypage--panel {
	animation: gallerypageFade .4s ease both;
}

.gallerypage--panel[hidden] {
	display: none !important;
}

.gallerypage--paneltitle {
	color: var(--vc-black);
	font-family: var(--vc-font-heading);
	font-size: clamp(2rem, 2.8vw, 2.8rem);
	font-weight: 500;
	letter-spacing: -.03em;
	line-height: 1.1;
	margin: 0 0 2rem;
	text-align: center;
}


/* ============================
	GALLERY BLOCKS
============================ */

.gallerypage--block+.gallerypage--block {
	margin-top: 1.5rem;
}

.gallerypage--block>.row>[class*="col-"] {
	display: flex;
}

.gallerypage--smallgrid {
	height: 100%;
	width: 100%;
}

.gallerypage--smallgrid>[class*="col-"] {
	display: flex;
}


/* ============================
	GALLERY DESKTOP GRID
============================ */

@media screen and (min-width: 1200px) {

	.gallerypage--block>.row {
		align-items: stretch;
	}

	.gallerypage--block>.row>[class*="col-"] {
		display: flex;
	}

	.gallerypage--smallgrid {
		display: grid;
		flex: 1 1 auto;
		gap: 1.5rem;
		grid-template-columns: repeat(2, minmax(0, 1fr));
		grid-template-rows: repeat(2, minmax(0, 1fr));
		height: auto;
		margin: 0;
		width: 100%;
	}

	.gallerypage--smallgrid>[class*="col-"] {
		display: flex;
		height: auto;
		margin: 0;
		padding: 0;
		width: auto;
	}

	.gallerypage--item--large {
		height: 100%;
		min-height: 0;
	}

}


/* ============================
	GALLERY ITEMS
============================ */

.gallerypage--item {
	aspect-ratio: 4 / 3;
	background-color: var(--vc-cream);
	border-radius: 1.35rem;
	box-shadow: 0 12px 30px rgba(25, 22, 45, .07);
	display: block;
	height: 100%;
	overflow: hidden;
	position: relative;
	width: 100%;
}

.gallerypage--item--large {
	aspect-ratio: auto;
	min-height: 100%;
}

.gallerypage--item--month {
	aspect-ratio: 4 / 3;
}

.gallerypage--image {
	display: block;
	height: 100%;
	object-fit: cover;
	object-position: center;
	transition: transform .55s ease;
	width: 100%;
}

.gallerypage--item::after {
	background: linear-gradient(180deg,
			rgba(25, 22, 45, 0) 40%,
			rgba(25, 22, 45, .72) 100%);
	content: "";
	inset: 0;
	position: absolute;
	z-index: 1;
}

.gallerypage--item:hover .gallerypage--image {
	transform: scale(1.045);
}


/* ============================
	GALLERY CAPTION
============================ */

.gallerypage--caption {
	bottom: 1.15rem;
	display: flex;
	flex-direction: column;
	left: 1.25rem;
	max-width: calc(100% - 5rem);
	position: absolute;
	z-index: 2;
}

.gallerypage--caption small {
	color: rgba(255, 255, 255, .82);
	font-family: var(--vc-font-ui);
	font-size: .75rem;
	font-weight: 800;
	letter-spacing: .08rem;
	line-height: 1;
	margin-bottom: .35rem;
	text-transform: uppercase;
}

.gallerypage--caption strong {
	color: var(--vc-white);
	font-family: var(--vc-font-heading);
	font-size: 1.3rem;
	font-weight: 600;
	letter-spacing: -.02em;
	line-height: 1.1;
}

.gallerypage--item--large .gallerypage--caption strong,
.gallerypage--item--month .gallerypage--caption strong {
	font-size: 1.65rem;
}


/* ============================
	GALLERY ZOOM
============================ */

.gallerypage--zoom {
	align-items: center;
	background-color: rgba(255, 255, 255, .92);
	border-radius: 50%;
	color: var(--vc-black);
	display: flex;
	font-size: 1rem;
	height: 42px;
	justify-content: center;
	opacity: 0;
	position: absolute;
	right: 1rem;
	top: 1rem;
	transform: translateY(-6px);
	transition:
		background-color .3s ease,
		color .3s ease,
		opacity .3s ease,
		transform .3s ease;
	width: 42px;
	z-index: 2;
}

.gallerypage--item:hover .gallerypage--zoom {
	opacity: 1;
	transform: translateY(0);
}

.gallerypage--item:focus-visible {
	outline: 3px solid rgba(126, 107, 232, .35);
	outline-offset: 4px;
}

.gallerypage--item:focus-visible .gallerypage--zoom {
	opacity: 1;
	transform: translateY(0);
}


/* ============================
	GALLERY VIDEO
============================ */

.gallerypage--videocard {
	background: linear-gradient(135deg,
			rgba(25, 22, 45, .025) 0%,
			rgba(22, 200, 216, .09) 100%);
	border: 1px solid var(--vc-border);
	border-radius: 2rem;
	box-shadow: var(--vc-shadow-card);
	overflow: hidden;
	padding: 1rem;
}

.gallerypage--videobox {
	aspect-ratio: 16 / 9;
	background-color: var(--vc-black);
	border-radius: 1.35rem;
	overflow: hidden;
	width: 100%;
}

.gallerypage--video {
	background-color: var(--vc-black);
	display: block;
	height: 100%;
	object-fit: cover;
	width: 100%;
}

.gallerypage--videocontent {
	padding: 2rem 1.25rem 1.25rem;
	text-align: center;
}

.gallerypage--videocontent h3 {
	color: var(--vc-black);
	font-family: var(--vc-font-heading);
	font-size: clamp(2rem, 3vw, 3rem);
	font-weight: 500;
	letter-spacing: -.03em;
	line-height: 1.08;
	margin: .85rem auto 1rem;
	max-width: 760px;
}

.gallerypage--videocontent p {
	color: var(--vc-grey-dark);
	font-size: 1.1rem;
	line-height: 1.75;
	margin: 0 auto;
	max-width: 820px;
}


/* ============================
	GALLERY ANIMATION
============================ */

@keyframes gallerypageFade {
	from {
		opacity: 0;
		transform: translateY(10px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}



/* ============================
	CTA
============================ */

.page--cta {
	background-color: var(--vc-white);
	padding: 6rem 0 10rem 0;
}

.page--ctabox {
	background:
		linear-gradient(135deg, rgba(255, 248, 232, .96) 0%, rgba(255, 255, 255, 1) 48%, rgba(251, 248, 255, .98) 100%);
	border: 1px solid var(--vc-border);
	border-radius: 2.25rem;
	box-shadow: 0 24px 58px rgba(25, 22, 54, .09);
	overflow: hidden;
	padding: 4rem;
	position: relative;
}

.page--ctabox::after,
.page--ctabox::before {
	border-radius: 50%;
	content: "";
	pointer-events: none;
	position: absolute;
}

.page--ctabox::before {
	background-color: rgba(246, 222, 47, .2);
	height: 220px;
	left: -90px;
	top: -110px;
	width: 220px;
}

.page--ctabox::after {
	background-color: rgba(126, 107, 232, .11);
	bottom: -120px;
	height: 260px;
	right: -100px;
	width: 260px;
}

.page--ctabox>* {
	position: relative;
	z-index: 1;
}

.page--ctabox .vc--sectiontitle {
	margin-left: auto;
	margin-right: auto;
	max-width: 900px;
}

.page--ctabody {
	margin-left: auto;
	margin-right: auto;
	max-width: 900px;
}

.page--ctabody p {
	color: var(--vc-grey-dark);
	font-size: 1.15rem;
	line-height: 1.75;
}

.page--ctaactions {
	align-items: center;
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
	justify-content: center;
	margin-top: 2rem;
}



/* ============================
	SOCIAL CTA
============================ */

.socialcta {
	background-color: var(--vc-white);
	padding: 7rem 0;
}

.socialcta--actions {
	display: flex;
	flex-direction: column;
	gap: .85rem;
}

.socialcta--box {
	background:
		linear-gradient(135deg,
			rgba(25, 22, 45, .025) 0%,
			rgba(22, 200, 216, .09) 100%);
	border: 1px solid var(--vc-border);
	border-radius: 2rem;
	box-shadow: 0 18px 44px rgba(25, 22, 54, .055);
	padding: 3rem;
}

.socialcta--button {
	align-items: center;
	background-color: var(--vc-white);
	border: 1px solid rgba(25, 22, 54, .09);
	border-radius: 1rem;
	color: var(--vc-black);
	display: flex;
	font-family: var(--vc-font-ui);
	font-size: 1.05rem;
	font-weight: 800;
	gap: 1rem;
	isolation: isolate;
	justify-content: space-between;
	min-height: 58px;
	overflow: hidden;
	padding: .95rem 1.15rem 1rem 1.25rem;
	position: relative;
	transition:
		border-color .35s ease,
		color .35s ease,
		transform .35s ease;
	width: 100%;
}

.socialcta--button::before {
	background: var(--socialcta-hover-background);
	content: "";
	inset: 0;
	opacity: 0;
	position: absolute;
	transition: opacity .35s ease;
	z-index: -1;
}

.socialcta--button:hover {
	color: var(--vc-black);
	transform: translateX(4px);
}

.socialcta--button:hover::before {
	opacity: 1;
}

.socialcta--button span,
.socialcta--button i {
	position: relative;
	z-index: 1;
}

.socialcta--button i {
	font-size: 1.35rem;
	line-height: 1;
	min-width: 1.5rem;
	text-align: center;
	transition: color .35s ease;
}

.socialcta--button--facebook {
	--socialcta-hover-background:
		linear-gradient(90deg,
			rgba(126, 107, 232, .16) 0%,
			rgba(126, 107, 232, .08) 35%,
			rgba(126, 107, 232, .025) 70%,
			rgba(126, 107, 232, .012) 100%);
}

.socialcta--button--facebook i {
	color: var(--vc-purple);
}

.socialcta--button--facebook:hover {
	border-color: rgba(126, 107, 232, .3);
}

.socialcta--button--instagram {
	--socialcta-hover-background:
		linear-gradient(90deg,
			rgba(255, 63, 122, .15) 0%,
			rgba(255, 63, 122, .07) 35%,
			rgba(255, 63, 122, .022) 70%,
			rgba(255, 63, 122, .01) 100%);
}

.socialcta--button--instagram i {
	color: var(--vc-pink);
}

.socialcta--button--instagram:hover {
	border-color: rgba(255, 63, 122, .3);
}

.socialcta--button--gardens {
	--socialcta-hover-background:
		linear-gradient(90deg,
			rgba(168, 201, 17, .17) 0%,
			rgba(168, 201, 17, .08) 35%,
			rgba(168, 201, 17, .025) 70%,
			rgba(168, 201, 17, .012) 100%);
}

.socialcta--button--gardens i {
	color: var(--vc-green);
}

.socialcta--button--gardens:hover {
	border-color: rgba(168, 201, 17, .35);
}

.socialcta--intro h2 {
	color: var(--vc-black);
	font-family: var(--vc-font-heading);
	font-size: clamp(2rem, 2.75vw, 3rem);
	font-weight: 500;
	letter-spacing: -.025em;
	line-height: 1.08;
	margin-bottom: 1rem;
}

.socialcta--intro p {
	color: var(--vc-grey-dark);
	font-size: 1.15rem;
	line-height: 1.7;
	margin-bottom: 0;
	max-width: 720px;
}



/* ============================
	NEWSLETTER
============================ */

.site--newsletter {
	background-color: var(--vc-white);
	background-image: none;
	padding: 4rem 0 8rem 0;
}

.site--newsletterbox {
	background-color: var(--vc-white);
	border: 1px solid var(--vc-border);
	border-radius: 2.25rem;
	box-shadow: 0 24px 58px rgba(25, 22, 54, .09);
	overflow: hidden;
	padding: 3rem;
	position: relative;
}

.site--newsletterbox::before {
	display: none;
}

.site--newsletterfooter {
	align-items: center;
	display: flex;
	gap: 1rem;
	justify-content: space-between;
}

.site--newsletterfooter p {
	color: var(--vc-grey);
	font-size: .9rem;
	line-height: 1.5;
}

.site--newsletterform {
	margin: 0;
}

.site--newsletterinput {
	background-color: var(--vc-white);
	border: 1px solid var(--vc-border);
	border-radius: 10rem;
	color: var(--vc-black);
	font-family: var(--vc-font-body);
	font-size: 1rem;
	font-weight: 500;
	min-height: 56px;
	outline: none;
	padding: 1rem 1.25rem;
	transition: all .3s ease;
	width: 100%;
}

.site--newsletterinput:focus {
	border-color: var(--vc-purple);
	box-shadow: 0 0 0 4px rgba(126, 107, 232, .12);
}

.site--newsletterinput::placeholder {
	color: var(--vc-grey);
}

.site--newsletterintro h2 {
	color: var(--vc-black);
	font-family: var(--vc-font-heading);
	font-size: clamp(2rem, 2.45vw, 2.5rem);
	font-weight: 500;
	letter-spacing: -.025em;
	line-height: 1.1;
	margin-bottom: 1rem;
}

.site--newsletterintro p {
	color: var(--vc-black);
	font-size: 1.1rem;
	font-weight: 400;
	line-height: 1.7;
}



/* ============================
	LIGHTGALLERY
============================ */

.lg-outer .lg-thumb {
	margin-left: auto;
	margin-right: auto;
}

.lg-outer .lg-thumb-item {
	border: 1.25px solid rgba(126, 107, 232, .35);
	border-radius: .375rem;
	overflow: hidden;
}

.lg-outer .lg-thumb-item.active,
.lg-outer .lg-thumb-item:hover {
	border-color: var(--vc-purple);
}

.lg-sub-html h4 {
	color: var(--vc-white);
	font-family: var(--vc-font-heading);
	font-size: 1.5rem;
	font-weight: 700;
	letter-spacing: -.025em;
	line-height: 1.1;
	margin: 0 0 .35rem 0;
}

.lg-sub-html p {
	color: rgba(255, 255, 255, .86);
	font-size: 1rem;
	line-height: 1.5;
	margin: 0;
}



/* ============================
	TOPBAR TOOLTIP
============================ */

.topbar--circlelink {
	position: relative;
}

.topbar--circlelink::after {
	background-color: var(--vc-deep-purple);
	border-radius: .45rem;
	bottom: -2.6rem;
	color: var(--vc-white);
	content: attr(data-tooltip);
	font-family: 'Eina 01', 'Instrument Sans', Helvetica, Arial, sans-serif;
	font-size: 1rem;
	font-weight: 600;
	left: 50%;
	letter-spacing: 0;
	line-height: 1;
	opacity: 0;
	padding: .5rem .7rem .55rem .7rem;
	pointer-events: none;
	position: absolute;
	transform: translateX(-50%) translateY(-.25rem);
	transition: all .3s ease;
	white-space: nowrap;
	z-index: 20;
}

.topbar--circlelink::before {
	border-bottom: 6px solid var(--vc-deep-purple);
	border-left: 6px solid transparent;
	border-right: 6px solid transparent;
	bottom: -1rem;
	content: "";
	left: 50%;
	opacity: 0;
	pointer-events: none;
	position: absolute;
	transform: translateX(-50%) translateY(-.25rem);
	transition: all .3s ease;
	z-index: 21;
}

.topbar--circlelink:hover::after,
.topbar--circlelink:hover::before {
	opacity: 1;
	transform: translateX(-50%) translateY(0);
}



/* ============================
	FOOTER
============================ */

.site--backtotop {
	align-items: center;
	background-color: var(--vc-white);
	border-radius: 1.25rem;
	box-shadow: 0 18px 44px rgba(126, 107, 232, .32), 0 0 0 8px rgba(126, 107, 232, .08);
	color: var(--vc-deep-purple);
	display: inline-flex;
	font-size: 2.45rem;
	height: 70px;
	justify-content: center;
	margin-bottom: 2.75rem;
	transition: all .3s ease;
	width: 70px;
}

.site--backtotop:hover {
	background-color: var(--vc-yellow);
	box-shadow:
		0 18px 44px rgba(246, 222, 47, .38),
		0 0 0 8px rgba(246, 222, 47, .16);
	color: var(--vc-black);
	transform: translateY(-4px);
}

.site--footer {
	background: linear-gradient(0deg, #140E2A 0%, #211342 54%, #32134F 100%);
	color: var(--vc-white);
	padding-top: 6.5rem;
	position: relative;
}

.site--footer::before {
	background: linear-gradient(90deg, var(--vc-green-bright) 0%, var(--vc-yellow) 25%, var(--vc-orange) 50%, var(--vc-pink) 75%, var(--vc-purple) 100%);
	content: "";
	display: block;
	height: 8px;
	left: 0;
	position: absolute;
	top: 0;
	width: 100%;
}

.site--footerbottom {
	margin-top: 3rem;
	padding: 1.1rem 0;
}

.site--footerbottom p {
	color: var(--vc-white);
	font-size: .95rem;
	line-height: 1.5;
	margin: 0;
}

.site--footerbottomlinks {
	align-items: center;
	display: flex;
	flex-wrap: wrap;
	gap: .75rem 1.75rem;
	justify-content: flex-end;
	list-style: none;
	margin: 0;
	padding: 0;
}

.site--footerbottomlinks a {
	color: var(--vc-white);
	font-size: .95rem;
	font-weight: 500;
	line-height: 1.4;
	transition: all .3s ease;
}

.site--footerbottomlinks a:hover {
	color: var(--vc-yellow);
}

.site--footerbrandrow {
	margin-top: 5rem;
}

.site--footercolumn {
	display: flex;
	flex-direction: column;
	height: 100%;
}

.site--footercolumn h3 {
	color: var(--vc-white);
	font-family: var(--vc-font-heading);
	font-size: 1.85rem;
	font-weight: 500;
	letter-spacing: -.025em;
	line-height: 1.1;
	margin: 0 0 1.25rem 0;
}

.site--footercontent {
	justify-content: center;
	padding-top: .75rem;
}

.site--footerdetails,
.site--footerlist,
.site--footertextactions {
	display: flex;
	flex-direction: column;
	list-style: none;
	margin: 0;
	padding: 0;
}

.site--footerdetails a,
.site--footerlist a,
.site--footertextactions a {
	color: var(--vc-white);
	transition: all .3s ease;
}

.site--footerdetails a:hover,
.site--footerlist a:hover,
.site--footertextactions a:hover {
	color: var(--vc-yellow);
}

.site--footerdetails li,
.site--footerlist li,
.site--footertextactions li {
	align-items: center;
	border-bottom: 1px solid rgba(255, 255, 255, .16);
	color: var(--vc-white);
	display: flex;
	font-size: 1.075rem;
	line-height: 1.4;
	margin: 0;
	min-height: 2.75rem;
	padding: .55rem 0;
}

.site--footerdetails li:first-child,
.site--footerlist li:first-child,
.site--footertextactions li:first-child {
	border-top: 1px solid rgba(255, 255, 255, .16);
}

.site--footerdetails li:last-child,
.site--footerlist li:last-child,
.site--footertextactions li:last-child {
	border-bottom: none;
}

.site--footerdetails--contact a {
	align-items: center;
	display: grid;
	gap: .7rem;
	grid-template-columns: 1.35rem minmax(0, 1fr);
	line-height: 1.4;
	width: 100%;
}

.site--footerdetails--contact i {
	font-size: 1.1rem;
	line-height: 1;
	text-align: center;
	width: 1.35rem;
}

.site--footerdetails--contact span {
	display: block;
	min-width: 0;
	overflow-wrap: anywhere;
}

.site--footerlist a,
.site--footertextactions a {
	display: inline-flex;
	font-size: 1.075rem;
	font-weight: 400;
	line-height: 1.4;
}

.site--footerlogo {
	height: 150px;
	object-fit: contain;
	width: auto;
}

.site--footerlogobox {
	align-items: center;
	display: flex;
	justify-content: center;
}

.site--footerlogobox--inline {
	justify-content: flex-end;
	margin-top: 1.75rem;
}

/* ============================
	FOOTER RESPONSIVE
============================ */

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

	.site--footer {
		padding-top: 5.5rem;
	}

	.site--footerbrandrow {
		margin-top: 4rem;
	}

	.site--footercontent {
		row-gap: 2.75rem;
	}

	.site--footerlogo {
		height: 132px;
	}

}

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

	.site--footerbottomlinks {
		justify-content: center;
	}

}

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

	.site--backtotop {
		border-radius: 1.1rem;
		font-size: 1.3rem;
		height: 52px;
		margin-bottom: 2.25rem;
		width: 52px;
	}

	.site--footer {
		padding-top: 4.75rem;
	}

	.site--footerbottom {
		margin-top: 2.5rem;
	}

	.site--footerbottomlinks {
		gap: .65rem 1.25rem;
	}

	.site--footercolumn h3 {
		font-size: 1.55rem;
		margin-bottom: 1rem;
	}

	.site--footerdetails li,
	.site--footerlist li,
	.site--footertextactions li {
		font-size: 1rem;
		min-height: 2.55rem;
		padding: .5rem 0;
	}

	.site--footerlogo {
		height: 112px;
	}

}

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

	.site--footerbrandrow {
		margin-top: 3.25rem;
	}

	.site--footercontent {
		row-gap: 2.25rem;
	}

	.site--footerlogo {
		height: 96px;
	}

}



/* ============================
	CONFIRMATION PAGE
============================ */

.confirmationpage {
	background:
		linear-gradient(135deg,
			rgba(25, 22, 45, .025) 0%,
			rgba(22, 200, 216, .09) 100%);
	padding: 8rem 0;
}

.confirmationpage--card {
	background-color: var(--vc-white);
	border: 1px solid var(--vc-border);
	border-radius: 2rem;
	box-shadow: var(--vc-shadow-card);
	overflow: hidden;
	padding: 4.5rem;
	position: relative;
	text-align: center;
}

.confirmationpage--card::before {
	background-color: var(--vc-cyan);
	content: "";
	height: 5px;
	left: 0;
	position: absolute;
	right: 0;
	top: 0;
}

.confirmationpage--group .confirmationpage--card::before {
	background-color: var(--vc-orange);
}

.confirmationpage--icon {
	align-items: center;
	background-color: rgba(22, 200, 216, .1);
	border: 1px solid rgba(22, 200, 216, .25);
	border-radius: 50%;
	color: var(--vc-cyan);
	display: inline-flex;
	font-size: 2rem;
	height: 76px;
	justify-content: center;
	margin-bottom: 1.5rem;
	margin-right: .75rem;
	width: 76px;
}

.confirmationpage--group .confirmationpage--icon {
	background-color: rgba(255, 138, 0, .09);
	border-color: rgba(255, 138, 0, .25);
	color: var(--vc-orange);
}

.confirmationpage--title {
	color: var(--vc-black);
	font-family: var(--vc-font-heading);
	font-size: clamp(2.5rem, 4vw, 4rem);
	font-weight: 500;
	letter-spacing: -.035em;
	line-height: 1.05;
	margin: .9rem auto 1.25rem;
	max-width: 760px;
}

.confirmationpage--lead {
	color: var(--vc-grey-dark);
	font-size: 1.15rem;
	line-height: 1.75;
	margin: 0 auto;
	max-width: 800px;
}

.confirmationpage--lead strong {
	color: var(--vc-black);
	font-weight: 800;
}

.confirmationpage--notice {
	align-items: flex-start;
	background-color: rgba(22, 200, 216, .07);
	border: 1px solid rgba(22, 200, 216, .25);
	border-radius: 1rem;
	display: flex;
	gap: .85rem;
	margin: 2rem auto 0;
	max-width: 650px;
	padding: 1rem 1.15rem;
	text-align: left;
}

.confirmationpage--group .confirmationpage--notice {
	background-color: rgba(255, 138, 0, .07);
	border-color: rgba(255, 138, 0, .25);
}

.confirmationpage--notice i {
	color: var(--vc-cyan);
	font-size: 1.15rem;
	line-height: 1.5;
	min-width: 1.15rem;
}

.confirmationpage--group .confirmationpage--notice i {
	color: var(--vc-orange);
}

.confirmationpage--notice p {
	color: var(--vc-grey-dark);
	font-size: .975rem;
	line-height: 1.6;
	margin: 0;
}

.confirmationpage--actions {
	align-items: center;
	display: flex;
	flex-wrap: wrap;
	gap: .85rem;
	justify-content: center;
	margin-top: 2rem;
}

.confirmationpage--newsletter .confirmationpage--card::before {
	background-color: var(--vc-green);
}

.confirmationpage--newsletter .confirmationpage--icon {
	background-color: rgba(168, 201, 17, .1);
	border-color: rgba(168, 201, 17, .3);
	color: var(--vc-green);
}

.confirmationpage--newsletter .confirmationpage--notice {
	background-color: rgba(168, 201, 17, .08);
	border-color: rgba(168, 201, 17, .3);
}

.confirmationpage--newsletter .confirmationpage--notice i {
	color: var(--vc-green);
}



/* END SITE CSS */