@media only screen and (min-width: 0rem) {
	:root {
		--primary: #1A2B4C;
		--secondary: #CBA35C;
		--headerColor: #1a1a1a;
		--bodyTextColor: #4e4b66;
		--bodyTextColorWhite: #fafbfc;
		--topperFontSize: clamp(0.8125rem, 1.6vw, 1rem);
		--headerFontSize: clamp(1.9375rem, 3.9vw, 3.0625rem);
		--bodyFontSize: 1rem;
		--sectionPadding: clamp(3.75rem, 7.82vw, 6.25rem) 1rem;
		--headerFont: 'Playfair Display', Georgia, 'Times New Roman', Times, serif;
		--bodyFont: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Helvetica Neue', sans-serif;
	}

	.craftiq-topper {
		display: block;
		margin-bottom: 0.25rem;
		text-transform: uppercase;
		font-family: var(--headerFont);
		font-size: var(--topperFontSize);
		line-height: 1.2em;
		letter-spacing: 0.3em;
		font-weight: 700;
		color: #707070;
		text-align: inherit;
	}

	body.dark-mode .craftiq-topper {
		color: var(--secondary);
	}

	.craftiq-title {
		position: relative;
		margin: 0 0 1rem 0;
		max-width: 43.75rem;
		font-size: var(--headerFontSize);
		line-height: 1.2em;
		font-weight: 900;
		color: var(--headerColor);
		text-align: inherit;
	}

	.craftiq-text {
		margin: 0;
		max-width: 40.625rem;
		width: 100%;
		font-size: var(--bodyFontSize);
		line-height: 1.5em;
		color: var(--bodyTextColor);
		text-align: inherit;
	}

	.craftiq-button-solid {
		z-index: 1;
		position: relative;
		display: inline-block;
		border-radius: 3.75rem;
		margin: 0;
		background-color: var(--primary);
		min-width: 11.25rem;
		box-sizing: border-box;
		overflow: hidden;
		padding: 0 2rem;
		text-decoration: none;
		text-transform: uppercase;
		font-family: var(--headerFont);
		font-size: 1rem;
		line-height: clamp(2.875rem, 5.5vw, 3.5rem);
		font-weight: 700;
		color: #fff;
		transition: box-shadow 0.3s, color 0.3s, background-color 0.3s;
		text-align: center;
		white-space: nowrap;
	}

	.craftiq-button-solid:before {
		z-index: -1;
		position: absolute;
		top: 0;
		left: 0;
		content: "";
		opacity: 1;
		border-radius: 0.25rem;
		background: var(--secondary);
		height: 100%;
		width: 0%;
		transition: width 0.3s;
	}

	.craftiq-button-solid:hover {
		background-color: var(--secondary);
		color: var(--primary);
	}

	.craftiq-button-solid:hover:before {
		width: 100%;
	}

	.craftiq-button-solid.craftiq-secondary {
		background-color: var(--secondary);
		color: var(--primary);
		transition: color 0.3s, background-color 0.3s;
	}

	.craftiq-button-solid.craftiq-secondary:hover {
		background-color: #fff;
	}

	.craftiq-button-solid.craftiq-secondary:before {
		background-color: #fff;
	}

	.craftiq-button-solid.craftiq-white {
		background-color: #fff;
		color: var(--primary);
		transition: color 0.3s, background-color 0.3s;
	}

	.craftiq-button-solid.craftiq-white:hover {
		background-color: #fff;
	}

	.craftiq-button-solid.craftiq-white:before {
		background-color: #fff;
	}

	body.dark-mode .craftiq-button-solid:not(.craftiq-button-transparent) {
		background: linear-gradient(45deg, #cecece 0%, #ffffff 100%);
		color: var(--primary);
		transition: box-shadow 0.3s;
		box-shadow: rgba(67, 183, 255, 0.2) 0px 0px 24px, rgba(67, 183, 255, 0.2) 0px 0px 39px, rgba(67, 183, 255, 0.2) 0px 0px 60px;
	}

	body.dark-mode .craftiq-button-solid:not(.craftiq-button-transparent):before {
		opacity: 0;
		background-color: #fff;
		width: 100%;
		transition: opacity 0.4s;
	}

	body.dark-mode .craftiq-button-solid:not(.craftiq-button-transparent):hover {
		animation: none;
		box-shadow: rgba(67, 183, 255, 0.2) 0px 0px 24px, rgba(67, 183, 255, 0.2) 0px 0px 39px, rgba(67, 183, 255, 0.2) 0px 0px 54px, rgba(67, 183, 255, 0.2) 0px 0px 74px;
	}

	body.dark-mode .craftiq-button-solid:not(.craftiq-button-transparent):hover:before {
		opacity: 1;
	}

	@keyframes buttonGlow {
		0% {
			box-shadow: rgba(67, 183, 255, 0.2) 0px 0px 24px, rgba(67, 183, 255, 0.2) 0px 0px 39px, rgba(67, 183, 255, 0.2) 0px 0px 60px;
		}

		50% {
			box-shadow: rgba(67, 183, 255, 0.2) 0px 0px 24px, rgba(67, 183, 255, 0.2) 0px 0px 39px, rgba(67, 183, 255, 0.2) 0px 0px 54px, rgba(67, 183, 255, 0.2) 0px 0px 74px;
		}

		78% {
			box-shadow: rgba(67, 183, 255, 0.2) 0px 0px 24px, rgba(67, 183, 255, 0.2) 0px 0px 39px, rgba(67, 183, 255, 0.2) 0px 0px 54px, rgba(67, 183, 255, 0.2) 0px 0px 74px;
		}

		100% {
			box-shadow: rgba(67, 183, 255, 0.2) 0px 0px 24px, rgba(67, 183, 255, 0.2) 0px 0px 39px, rgba(67, 183, 255, 0.2) 0px 0px 60px;
		}
	}

	@keyframes ulGlow {
		0% {
			box-shadow: rgba(67, 183, 255, 0.2) 0px 0px 24px, inset rgba(67, 183, 255, 0.2) 0px 0px 69px, inset rgba(67, 183, 255, 0.2) 0px 0px 60px, rgba(67, 183, 255, 0.2) 0px 0px 74px;
		}

		50% {
			box-shadow: rgba(67, 183, 255, 0.2) 0px 0px 24px, inset rgba(67, 183, 255, 0.2) 0px 0px 39px, inset rgba(67, 183, 255, 0.2) 0px 0px 24px, rgba(67, 183, 255, 0.2) 0px 0px 74px;
		}

		51% {
			box-shadow: none;
		}

		52% {
			box-shadow: rgba(67, 183, 255, 0.2) 0px 0px 24px, inset rgba(67, 183, 255, 0.2) 0px 0px 69px, inset rgba(67, 183, 255, 0.2) 0px 0px 24px, rgba(67, 183, 255, 0.2) 0px 0px 74px;
		}

		53% {
			box-shadow: none;
		}

		64% {
			box-shadow: rgba(67, 183, 255, 0.2) 0px 0px 24px, inset rgba(67, 183, 255, 0.2) 0px 0px 69px, inset rgba(67, 183, 255, 0.2) 0px 0px 24px, rgba(67, 183, 255, 0.2) 0px 0px 74px;
		}

		78% {
			box-shadow: rgba(67, 183, 255, 0.2) 0px 0px 14px, inset rgba(67, 183, 255, 0.2) 0px 0px 49px, inset rgba(67, 183, 255, 0.2) 0px 0px 14px, rgba(67, 183, 255, 0.2) 0px 0px 54px;
		}

		92% {
			box-shaodw: none;
		}

		93% {
			box-shadow: rgba(67, 183, 255, 0.2) 0px 0px 14px, inset rgba(67, 183, 255, 0.2) 0px 0px 49px, inset rgba(67, 183, 255, 0.2) 0px 0px 14px, rgba(67, 183, 255, 0.2) 0px 0px 54px;
		}

		94% {
			box-shaodw: none;
		}

		95% {
			box-shadow: rgba(67, 183, 255, 0.2) 0px 0px 14px, inset rgba(67, 183, 255, 0.2) 0px 0px 49px, inset rgba(67, 183, 255, 0.2) 0px 0px 24px, rgba(67, 183, 255, 0.2) 0px 0px 54px;
		}

		100% {
			box-shadow: rgba(67, 183, 255, 0.2) 0px 0px 24px, inset rgba(67, 183, 255, 0.2) 0px 0px 69px, inset rgba(67, 183, 255, 0.2) 0px 0px 60px, rgba(67, 183, 255, 0.2) 0px 0px 74px;
		}
	}

	.craftiq-button-transparent {
		background-color: transparent;
		min-width: 0;
		padding: 0 1.5rem;
		color: var(--bodyTextColorWhite);
		box-shadow: none;
	}

	.craftiq-button-transparent:hover {
		color: var(--primary);
	}
}

@media only screen and (min-width: 0rem) {

	body,
	html {
		margin: 0;
		overflow-x: hidden;
		padding: 0;
		font-family: var(--bodyFont);
		font-size: 100%;
		color: var(--bodyTextColor);
		scroll-behavior: smooth;
	}

	*,
	*:before,
	*:after {
		margin: 0;
		box-sizing: border-box;
		padding: 0;
	}

	body {
		transition: background-color 0.3s;
	}

	h1,
	h2,
	h3,
	h4,
	h5,
	h6 {
		margin: 0;
		text-transform: uppercase;
		font-family: var(--headerFont);
		color: var(--headerColor);
	}

	p,
	li,
	a {
		margin: 0;
		font-size: 1rem;
		line-height: 1.5em;
	}

	p,
	li {
		color: #353535;
	}

	a:hover,
	button:hover {
		cursor: pointer;
	}

	.skip {
		z-index: -1111111;
		position: absolute;
		top: 0;
		left: 0;
		opacity: 0;
	}

	@font-face {
		font-family: 'Inter';
		src: url('../assets/fonts/inter/inter-v20-latin-regular.woff2') format('woff2');
		font-weight: 400;
		font-style: normal;
		font-display: swap;
	}

	@font-face {
		font-family: 'Inter';
		src: url('../assets/fonts/inter/inter-v20-latin-700.woff2') format('woff2');
		font-weight: 700;
		font-style: normal;
		font-display: swap;
	}

	@font-face {
		font-family: 'Playfair Display';
		src: url('../assets/fonts/playfair-display/playfair-display-v40-latin-regular.woff2') format('woff2');
		font-weight: 400;
		font-style: normal;
		font-display: swap;
	}

	@font-face {
		font-family: 'Playfair Display';
		src: url('../assets/fonts/playfair-display/playfair-display-v40-latin-700.woff2') format('woff2');
		font-weight: 700;
		font-style: normal;
		font-display: swap;
	}

}

@media only screen and (min-width: 1024px) {
	body,
	html {
		margin: 0;
		padding: 0;
	}
}

@media only screen and (min-width: 2500px) {
	body,
	html {
		font-size: 0.55vw;
	}
}

@media only screen and (min-width: 0rem) {
	#dark-mode-toggle {
		z-index: 1000;
		position: relative;
		display: block;
		border: none;
		margin: 0;
		background: transparent;
		height: 3rem;
		width: 3rem;
		overflow: hidden;
		padding: 0;
		flex: none;
	}

	#dark-mode-toggle img,
	#dark-mode-toggle svg {
		position: absolute;
		top: 50%;
		left: 50%;
		transform: translate(-50%, -50%);
		height: 1.25rem;
		width: 1.25rem;
		pointer-events: none;
	}
}

@media only screen and (min-width: 1024px) {
	#dark-mode-toggle {
		position: relative;
		top: auto;
		transform: none;
		margin: 0;
	}

	#dark-mode-toggle:hover {
		cursor: pointer;
	}
}

@media only screen and (max-width: 1023px) {
	body.craftiq-open {
		overflow: hidden;
	}

	body.scroll #craftiq-navigation {
		top: 0;
		max-width: 100%;
		width: 100%;
	}

	body.scroll #craftiq-navigation:before {
		border-radius: 0;
	}

	#craftiq-navigation {
		z-index: 10000;
		position: fixed;
		top: 1rem;
		left: 50%;
		transform: translateX(-50%);
		border-radius: clamp(0.75rem, 2vw, 1.5rem);
		max-width: 80rem;
		width: 94%;
		box-sizing: border-box;
		padding: clamp(0.75rem, 2vw, 1.5rem);
		transition: top 0.3s, border-radius 0.3s, width 0.3s, max-width 0.3s;
	}

	#craftiq-navigation .craftiq-container {
		display: flex;
		justify-content: space-between;
		width: 100%;
		gap: 1.5rem;
	}

	#craftiq-navigation .craftiq-logo {
		z-index: 10;
		position: relative;
		transform-style: preserve-3d;
		perspective: 700px;
		display: flex;
		justify-content: flex-start;
		align-items: center;
		margin: 0 auto 0 0;
		height: 100%;
		max-width: 7.5rem;
		width: auto;
		box-sizing: border-box;
		padding: 0;
	}

	#craftiq-navigation .craftiq-logo img {
		height: auto;
		width: 100%;
		object-fit: contain;
	}

	#craftiq-navigation .craftiq-logo .craftiq-default {
		-webkit-backface-visibility: hidden;
		backface-visibility: hidden;
		transition: opacity 0.3s, transform 0.6s;
	}

	#craftiq-navigation .craftiq-toggle {
		z-index: 10;
		position: relative;
		display: flex;
		justify-content: center;
		align-items: center;
		border: none;
		border-radius: 0.5rem;
		margin: 0 0 0 auto;
		background-color: var(--primary);
		height: 3rem;
		width: 3rem;
		transition: transform 0.6s, background-color 0.3s;
	}

	#craftiq-navigation .craftiq-box {
		position: relative;
		height: 1rem;
		width: clamp(1.5rem, 2vw, 1.75rem);
	}

	#craftiq-navigation .craftiq-line {
		position: absolute;
		left: 50%;
		transform: translateX(-50%);
		border-radius: 2px;
		background-color: #fafbfc;
		height: 2px;
		width: 100%;
		transition: background-color 0.3s;
	}

	#craftiq-navigation .craftiq-line1 {
		top: 0;
		transition: transform 0.5s, top 0.3s, left 0.3s;
		animation-duration: 0.7s;
		animation-timing-function: ease;
		animation-direction: normal;
		animation-fill-mode: forwards;
		transform-origin: center;
	}

	#craftiq-navigation .craftiq-line2 {
		top: 50%;
		transform: translateX(-50%) translateY(-50%);
		transition: top 0.3s, left 0.3s, transform 0.5s;
		animation-duration: 0.7s;
		animation-timing-function: ease;
		animation-direction: normal;
		animation-fill-mode: forwards;
	}

	#craftiq-navigation .craftiq-line3 {
		bottom: 0;
		transition: bottom 0.3s, opacity 0.3s;
	}

	#craftiq-navigation .craftiq-ul-wrapper {
		z-index: -1;
		position: absolute;
		top: 0.9375rem;
		left: 0;
		transform: scaleY(0);
		border-radius: 3.125rem 3.125rem 1.5rem 1.5rem;
		background-color: #fff;
		min-height: 100dvh;
		height: auto;
		width: 100%;
		box-sizing: border-box;
		overflow: hidden;
		padding-bottom: 2.4em;
		transition: transform 0.4s;
		box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
		transform-origin: top;
	}

	/* Mobile menu active state */
	#craftiq-navigation.craftiq-active .craftiq-ul-wrapper {
		transform: scaleY(1);
	}

	#craftiq-navigation.craftiq-active .craftiq-li {
		opacity: 1;
		transform: translateY(0);
	}

	#craftiq-navigation .craftiq-ul {
		display: flex;
		flex-direction: column;
		justify-content: flex-start;
		align-items: center;
		margin: 0;
		max-height: 90vh;
		height: auto;
		width: 100%;
		box-sizing: border-box;
		overflow: auto;
		padding: 6.25rem 0 0 0;
		gap: 1.25rem;
	}

	#craftiq-navigation .craftiq-li {
		opacity: 0;
		transform: translateY(-70/16rem);
		margin-right: 0;
		width: 100%;
		list-style: none;
		transition: transform 0.6s, opacity 0.9s;
		text-align: center;
	}

	#craftiq-navigation .craftiq-li:nth-of-type(1) {
		transition-delay: 0.05s;
	}

	#craftiq-navigation .craftiq-li:nth-of-type(2) {
		transition-delay: 0.1s;
	}

	#craftiq-navigation .craftiq-li:nth-of-type(3) {
		transition-delay: 0.15s;
	}

	#craftiq-navigation .craftiq-li:nth-of-type(4) {
		transition-delay: 0.2s;
	}

	#craftiq-navigation .craftiq-li:nth-of-type(5) {
		transition-delay: 0.25s;
	}

	#craftiq-navigation .craftiq-li:nth-of-type(6) {
		transition-delay: 0.3s;
	}

	#craftiq-navigation .craftiq-li:nth-of-type(7) {
		transition-delay: 0.35s;
	}

	#craftiq-navigation .craftiq-li:nth-of-type(8) {
		transition-delay: 0.4s;
	}

	#craftiq-navigation .craftiq-li:nth-of-type(9) {
		transition-delay: 0.45s;
	}

	#craftiq-navigation .craftiq-li:nth-of-type(10) {
		transition-delay: 0.5s;
	}

	#craftiq-navigation .craftiq-li:nth-of-type(11) {
		transition-delay: 0.55s;
	}

	#craftiq-navigation .craftiq-li:nth-of-type(12) {
		transition-delay: 0.6s;
	}

	#craftiq-navigation .craftiq-li:nth-of-type(13) {
		transition-delay: 0.65s;
	}

	#craftiq-navigation .craftiq-li-link {
		position: relative;
		display: inline-block;
		margin: 0;
		text-decoration: none;
		text-transform: uppercase;
		font-family: var(--headerFont);
		font-size: clamp(1rem, 2.5vw, 1.5rem);
		line-height: 1.2em;
		font-weight: 600;
		color: var(--headerColor);
	}

	#craftiq-navigation .craftiq-button-solid {
		display: none;
	}

	#craftiq-navigation:before {
		position: absolute;
		top: 0;
		left: 50%;
		content: "";
		opacity: 1;
		transform: translateX(-50%);
		display: block;
		border-radius: clamp(0.75rem, 2vw, 1.5rem);
		background: #fff;
		height: 100%;
		width: 100%;
		transition: transform 0.2s, border-radius 0.3s, background-color 0.3s ease-in-out;
		box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
	}
}

@media only screen and (max-width: 63.999rem) {
	body.dark-mode #craftiq-navigation .craftiq-logo .craftiq-default {
		opacity: 1;
		transform: rotateX(-180deg);
	}

	body.dark-mode #craftiq-navigation .craftiq-toggle {
		background-color: var(--bodyTextColorWhite);
		box-shadow: rgba(67, 183, 255, 0.2) 0px 0px 44px, inset rgba(67, 183, 255, 0.2) 0px 0px 30px, rgba(67, 183, 255, 0.2) 0px 0px 55px, rgba(67, 183, 255, 0.4) 0px 0px 75px, rgba(67, 183, 255, 0.4) 0px 0px 95px;
	}

	body.dark-mode #craftiq-navigation .craftiq-line {
		background-color: var(--dark);
	}

	body.dark-mode #craftiq-navigation .craftiq-ul-wrapper {
		background-color: var(--dark);
	}

	body.dark-mode #craftiq-navigation:before {
		background-color: var(--dark);
	}
}

@media only screen and (max-width: 63.999rem) {
	#craftiq-navigation .craftiq-li {
		display: block;
		width: 100%;
		text-align: center;
	}

	#craftiq-navigation .craftiq-dropdown {
		position: relative;
		color: var(--bodyTextColorWhite);
	}

	#craftiq-navigation .craftiq-dropdown .craftiq-li-link {
		position: relative;
		transition: opacity 0.3s;
	}

	#craftiq-navigation .craftiq-drop-icon {
		position: absolute;
		top: 50%;
		right: -1.25rem;
		transform: translateY(-50%);
		height: auto;
		width: 0.75rem;
	}

	#craftiq-navigation .craftiq-drop-ul {
		visibility: hidden;
		opacity: 0;
		display: flex;
		flex-direction: column;
		justify-content: flex-start;
		align-items: center;
		border-radius: 1em;
		margin: 0 auto;
		background-color: var(--primary);
		height: 0;
		width: 90%;
		overflow: hidden;
		padding: 0;
		transition: padding 0.3s, margin 0.3s, height 0.3s, opacity 0.3s, visibility 0.3s;
		gap: 0.75rem;
	}

	@media only screen and (max-width: 63.999rem) {
    #craftiq-navigation .craftiq-dropdown.craftiq-active .craftiq-drop-ul {
        visibility: visible;
        opacity: 1;
        height: auto;
        padding: 1rem 0;
        margin-top: 0.75rem;
    }
}

	#craftiq-navigation .craftiq-drop-li {
		list-style: none;
	}

	#craftiq-navigation .craftiq-li-link {
		text-transform: uppercase;
		font-family: var(--headerFont);
		font-weight: 600;
	}

	#craftiq-navigation .craftiq-li-link.craftiq-drop-link {
		font-size: clamp(0.875rem, 2vw, 1.25rem);
		color: #fff;
	}
}

@media only screen and (min-width: 1024px) {
	#craftiq-navigation .craftiq-dropdown {
		position: relative;
	}

	#craftiq-navigation .craftiq-dropdown:hover {
		cursor: pointer;
	}

	#craftiq-navigation .craftiq-dropdown:hover .craftiq-drop-ul {
		visibility: visible;
		opacity: 1;
		transform: scaleY(1);
	}

	#craftiq-navigation .craftiq-dropdown:hover .craftiq-drop-li {
		opacity: 1;
		transform: translateY(0);
	}

	#craftiq-navigation .craftiq-drop-icon {
		display: inline-block;
		height: auto;
		width: 0.75rem;
	}

	#craftiq-navigation .craftiq-drop-ul {
		z-index: -100;
		position: absolute;
		top: 100%;
		visibility: hidden;
		opacity: 0;
		transform: scaleY(0);
		border-bottom: 5px solid var(--secondary);
		margin: 0;
		background-color: #fff;
		min-width: 12.5rem;
		overflow: hidden;
		padding: 0;
		transition: transform 0.3s, visibility 0.3s, opacity 0.3s;
		box-shadow: inset rgba(149, 157, 165, 0.1) 0px 8px 10px;
		transform-origin: top;
	}

	#craftiq-navigation .craftiq-drop-li {
		opacity: 0;
		transform: translateY(-0.625rem);
		display: block;
		height: auto;
		width: 100%;
		list-style: none;
		text-decoration: none;
		font-size: 1rem;
		transition: opacity 0.6s, transform 0.6s;
	}

	#craftiq-navigation .craftiq-drop-li:nth-of-type(1) {
		transition-delay: 0.05s;
	}

	#craftiq-navigation .craftiq-drop-li:nth-of-type(2) {
		transition-delay: 0.1s;
	}

	#craftiq-navigation .craftiq-drop-li:nth-of-type(3) {
		transition-delay: 0.15s;
	}

	#craftiq-navigation .craftiq-drop-li:nth-of-type(4) {
		transition-delay: 0.2s;
	}

	#craftiq-navigation .craftiq-drop-li:nth-of-type(5) {
		transition-delay: 0.25s;
	}

	#craftiq-navigation .craftiq-drop-li:nth-of-type(6) {
		transition-delay: 0.3s;
	}

	#craftiq-navigation .craftiq-drop-li:nth-of-type(7) {
		transition-delay: 0.35s;
	}

	#craftiq-navigation .craftiq-drop-li:nth-of-type(8) {
		transition-delay: 0.4s;
	}

	#craftiq-navigation .craftiq-drop-li:nth-of-type(9) {
		transition-delay: 0.45s;
	}

	#craftiq-navigation .craftiq-li-link.craftiq-drop-link {
		display: block;
		width: 100%;
		box-sizing: border-box;
		padding: 0.75rem;
		white-space: nowrap;
		text-decoration: none;
		text-transform: uppercase;
		font-family: var(--headerFont);
		font-size: 0.875rem;
		line-height: 1.5em;
		font-weight: 600;
		color: var(--headerColor);
		transition: color 0.3s, background-color 0.3s;
	}

	#craftiq-navigation .craftiq-li-link.craftiq-drop-link:hover {
		background-color: #f7f7f7;
	}

	#craftiq-navigation .craftiq-li-link.craftiq-drop-link:before {
		display: none;
	}
}

@media only screen and (max-width: 1023px) {
	body.dark-mode #craftiq-navigation .craftiq-drop-ul {
		background-color: transparent;
		border: 1px solid #fff;
		animation: ulGlow 7.2s forwards infinite;
		box-shadow: rgba(67, 183, 255, 0.2) 0px 0px 44px, inset rgba(67, 183, 255, 0.2) 0px 0px 30px, inset rgba(67, 183, 255, 0.2) 0px 0px 55px, rgba(67, 183, 255, 0.4) 0px 0px 10px;
	}

	body.dark-mode #craftiq-navigation .craftiq-li-link.craftiq-drop-link:hover {
		color: #1a1a1a;
	}

	body.dark-mode #craftiq-navigation .craftiq-drop-icon {
		filter: grayscale(1) brightness(1000%);
	}
}

@media only screen and (min-width: 1024px) {
	body.dark-mode #craftiq-navigation .craftiq-drop-ul {
		background-color: var(--dark);
		border-color: #fff;
		overflow: visible;
	}

	body.dark-mode #craftiq-navigation .craftiq-li-link.craftiq-drop-link {
		color: var(--bodyTextColorWhite);
		transition: color 0.3s, background-color 0.3s, box-shadow 0.3s;
	}

	body.dark-mode #craftiq-navigation .craftiq-li-link.craftiq-drop-link:hover {
		color: var(--primary);
		box-shadow: rgba(67, 183, 255, 0.2) 0px 0px 24px, rgba(67, 183, 255, 0.2) 0px 0px 39px, rgba(67, 183, 255, 0.2) 0px 0px 60px;
	}

	body.dark-mode #craftiq-navigation .craftiq-drop-li:last-of-type .craftiq-drop-link {
		border-radius: 0 0 1.3125rem 1.3125rem;
	}

	body.dark-mode #craftiq-navigation .craftiq-drop-icon {
		filter: grayscale(1) brightness(1000%);
	}
}

@media only screen and (min-width: 64rem) {
	#craftiq-navigation .craftiq-drop-ul {
		overflow: visible;
	}

	#craftiq-navigation .craftiq-drop-li {
		z-index: 1;
		position: relative;
	}

	#craftiq-navigation .craftiq-drop3-main:hover .craftiq-drop-icon {
		transform: rotate(-90deg);
	}

	#craftiq-navigation .craftiq-drop-icon {
		transition: transform 0.3s;
	}
}

@media only screen and (min-width: 1024px) {
	body.scroll #craftiq-navigation {
		top: 2rem;
		max-width: 100%;
		width: 873.5px;
	}

	#craftiq-navigation {
		z-index: 10000;
		position: fixed;
		top: 2rem;
		left: 50%;
		transform: translateX(-50%);
		display: flex;
		align-items: center;
		border-radius: clamp(0.75rem, 2vw, 1.5rem);
		background-color: #fff;
		height: 6rem;
		max-width: 32rem;
		width: 94%;
		box-sizing: border-box;
		padding: clamp(0.75rem, 2vw, 1.5rem) 0;
		transition: top 0.3s, border-radius 0.3s, width 0.3s, max-width 0.3s, background-color 0.3s;
		box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
	}

	#craftiq-navigation .craftiq-container {
		display: flex;
		justify-content: space-between;
		align-items: center;
		margin: auto;
		max-width: 90rem;
		width: 100%;
		box-sizing: border-box;
		padding: 0 1.5rem;
		gap: 1.5rem;
	}

	#craftiq-navigation .craftiq-toggle {
		display: none;
	}

	#craftiq-navigation .craftiq-logo {
		z-index: 100;
		position: relative;
		transform-style: preserve-3d;
		perspective: 700px;
		display: flex;
		justify-content: flex-start;
		align-items: center;
		margin: 0 auto 0 0;
		height: 3rem;
		max-width: 10.125rem;
		width: 18.4%;
		padding: 0;
	}

	#craftiq-navigation .craftiq-logo img {
		height: 100%;
		width: auto;
		object-fit: contain;
	}

	#craftiq-navigation .craftiq-logo .craftiq-default {
		-webkit-backface-visibility: hidden;
		backface-visibility: hidden;
		transition: opacity 0.3s, transform 0.6s;
	}

	#craftiq-navigation .craftiq-ul-wrapper {
		position: absolute;
		top: 50%;
		left: 50%;
		transform: translate(-50%, -50%);
		display: flex;
		align-items: center;
		height: 100%;
		width: 100%;
        justify-content: center;
	}

	#craftiq-navigation .craftiq-ul {
		display: flex;
		justify-content: flex-start;
		align-items: center;
		margin: 0;
		height: 100%;
		padding: 0;
		gap: clamp(1.25rem, 2.6vw, 2.25rem);
	}

	#craftiq-navigation .craftiq-li {
		display: flex;
		align-items: center;
		height: 100%;
		padding: 0;
		list-style: none;
		flex: none;
	}

	#craftiq-navigation .craftiq-li-link {
		position: relative;
		display: block;
		margin: 0;
		text-decoration: none;
		text-transform: uppercase;
		font-family: var(--headerFont);
		font-size: clamp(0.875rem, 1vw, 1rem);
		line-height: 1.5em;
		font-weight: 600;
		color: var(--headerColor);
		transition: color 0.3s;
	}

	#craftiq-navigation .craftiq-li-link:hover {
		color: var(--secondary);
	}
	
	#craftiq-navigation .craftiq-button-solid {
		display: none;
	}
}

@media only screen and (min-width: 1680px) {
	body.scroll #craftiq-navigation {
		top: 2rem;
		max-width: 50%;
		width: 50%;
	}
}

@media only screen and (min-width: 1300px) {
	#craftiq-navigation .craftiq-button-solid {
		display: block;
	}
}

@media only screen and (min-width: 1024px) {
	body.dark-mode #craftiq-navigation {
		background-color: var(--dark);
	}

	body.dark-mode #craftiq-navigation .craftiq-logo .craftiq-default {
		opacity: 1;
		transform: rotateX(-180deg);
	}

	body.dark-mode #craftiq-navigation .craftiq-logo .craftiq-onscroll {
		opacity: 1;
		transform: rotateX(0deg);
	}

	body.dark-mode #craftiq-navigation .craftiq-li-link,
	body.dark-mode #craftiq-navigation .login {
		color: var(--bodyTextColorWhite);
	}

	body.dark-mode #craftiq-navigation .craftiq-li-link:hover {
		color: var(--secondary);
	}

	body.dark-mode #craftiq-navigation .craftiq-li-link.craftiq-active {
		color: var(--secondary);
	}
}

@media only screen and (min-width: 0rem) {
	#get-started-cta {
		position: relative;
		padding: var(--sectionPadding);
		padding-top: 0;
		z-index: 100;
	}

	#get-started-cta .craftiq-container {
		display: flex;
		flex-direction: column;
		align-items: center;
		border-radius: 1rem;
		margin: auto;
		background-color: var(--primary);
		max-width: 90rem;
		width: 100%;
		padding: clamp(3rem, 9vw, 6.25rem) clamp(2rem, 7vw, 6.25rem);
		gap: clamp(3rem, 6vw, 4rem);
	}

	#get-started-cta .craftiq-content {
		display: flex;
		flex-direction: column;
		align-items: center;
		width: 100%;
		text-align: center;
		gap: 1.5rem;
	}

	#get-started-cta .craftiq-title {
		margin: 0;
		max-width: 20ch;
		color: #fff;
	}

	#get-started-cta .craftiq-wrapper {
		z-index: 1;
		position: absolute;
		top: 0;
		left: 50%;
		transform: translateX(-50%);
		height: 100%;
		max-width: 120rem;
		width: 100%;
	}	
}

@media only screen and (min-width: 48rem) {
	#get-started-cta .craftiq-content {
		flex-direction: row;
		justify-content: space-between;
		text-align: left;
	}
}

@media only screen and (min-width: 0rem) {
	body.dark-mode #get-started-cta .craftiq-container {
		z-index: 1;
		position: relative;
		background-color: #0a2030;
	}
}

@media only screen and (min-width: 0rem) {

	#get-started-cta .craftiq-container,
	#get-started-cta .craftiq-wrapper {
		max-width: 67.5rem;
		position: relative;
		z-index: 1;
	}

	#get-started-cta .craftiq-container:after,
	#get-started-cta .craftiq-wrapper:after {
		content: '';
		width: 60%;
		height: clamp(12rem, 25vw, 25rem);
		border-left: 1.25rem solid var(--primary);
		border-right: 1.25rem solid var(--primary);
		opacity: 1;
		position: absolute;
		display: block;
		top: 80%;
		left: 50%;
		transform: translateX(-50%);
		z-index: -2;
	}

	#get-started-cta .craftiq-container:before {
		content: '';
		width: 100%;
		height: 100%;
		background: var(--primary);
		opacity: 1;
		border-radius: 1rem;
		position: absolute;
		display: block;
		top: 0;
		left: 0;
		z-index: 1;
	}

	#get-started-cta .craftiq-content {
		z-index: 2;
	}

	#get-started-cta .craftiq-lights-wrapper {
		font-size: min(1.9vw, 1rem);
		width: 44.5625em;
		position: absolute;
		left: 50%;
		z-index: -1;
		pointer-events: none;
		transform: translateX(-50%) translateY(-100px);
		transition: transform 0.4s;
	}

	#get-started-cta .craftiq-lights {
		width: 100%;
		height: auto;
		position: absolute;
		top: 100%;
		left: 50%;
		transform: translateX(-50%);
		z-index: -10;
	}

	#get-started-cta .craftiq-lights img {
		width: 100%;
		height: auto;
	}

	#get-started-cta .craftiq-flare {
		width: 14.625em;
		height: 25.0625em;
		border-radius: 50%;
		background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 46%, #ffffff 93%, #ffffff 100%), linear-gradient(to bottom, rgba(255, 255, 255, 0) 78%, #ffffff 89%, #ffffff 93%, #ffffff 100%);
		filter: blur(1.25em);
		animation-delay: 0.7s;
		opacity: 0;
		position: absolute;
		bottom: -2.6875em;
	}

	#get-started-cta .craftiq-flare:before {
		content: '';
		width: 1.75em;
		height: 1em;
		background: #fff;
		border-radius: 50%;
		opacity: 1;
		position: absolute;
		display: block;
		bottom: 0;
		left: 50%;
		transform: translateY(-50%);
	}

	#get-started-cta .light1 {
		left: 4.375em;
		animation-delay: 3s;
	}

	#get-started-cta .light2 {
		left: 14.9375em;
		animation-delay: 5s;
	}

	#get-started-cta .light3 {
		left: 26.6875em;
		animation-delay: 0.1s;
	}

	#get-started-cta .light4 {
		display: none;
		left: 16.3125em;
	}

	#get-started-cta .light5 {
		display: none;
		left: 16.3125em;
	}

	@keyframes wrapperZ {
		0% {
			z-index: -1;
		}

		98% {
			z-index: -1;
		}

		99% {
			z-index: 2;
		}

		100% {
			z-index: 2;
		}
	}

	@keyframes bilboardGlow {
		0% {
			opacity: 0.18;
		}

		19% {
			opacity: 0.18;
		}

		20% {
			opacity: 0;
		}

		21% {
			opacity: 0.3;
		}

		59% {
			opacity: 0.18;
		}

		60% {
			opacity: 0;
		}

		61% {
			opacity: 0.18;
		}

		62% {
			opacity: 0;
		}

		63% {
			opacity: 0.25;
		}

		100% {
			opacity: 0.18;
		}
	}

	#get-started-cta .craftiq-bulb {
		width: 1.75em;
		height: 1em;
		background: #fff;
		border-radius: 50%;
		opacity: 0.3;
		position: absolute;
		display: block;
		bottom: -3.25em;
		z-index: -20;
		animation-delay: 0.7s;
	}

	#get-started-cta .craftiq-bulb1 {
		left: 10.375em;
		animation-delay: 3s;
	}

	#get-started-cta .craftiq-bulb2 {
		left: 21.4375em;
		animation-delay: 5s;
	}

	#get-started-cta .craftiq-bulb3 {
		left: 33.125em;
		animation-delay: 0.1s;
	}

	#get-started-cta .craftiq-bulb4 {
		display: none;
	}

	#get-started-cta .craftiq-bulb5 {
		display: none;
	}

	@keyframes bulbGlow {
		0% {
			opacity: 1;
		}

		19% {
			opacity: 1;
		}

		20% {
			opacity: 0.3;
		}

		21% {
			opacity: 1;
		}

		59% {
			opacity: 1;
		}

		60% {
			opacity: 0.3;
		}

		61% {
			opacity: 1;
		}

		62% {
			opacity: 0.3;
		}

		63% {
			opacity: 1;
		}

		100% {
			opacity: 1;
		}
	}
}

@media only screen and (min-width: 64rem) {
	#get-started-cta .craftiq-lights-wrapper {
		width: 57.75em;
	}

	#get-started-cta .craftiq-lights {
		width: 57.75em;
	}

	#get-started-cta .light1 {
		left: -1.25em;
		animation-delay: 3s;
	}

	#get-started-cta .light2 {
		left: 9.9375em;
		animation-delay: 5s;
	}

	#get-started-cta .light3 {
		left: 21.1875em;
		animation-delay: 0.1s;
	}

	#get-started-cta .light4 {
		left: 32.9375em;
		animation-delay: 4s;
		display: block;
	}

	#get-started-cta .light5 {
		left: 44.125em;
		animation-delay: 2.5s;
		display: block;
	}

	#get-started-cta .craftiq-bulb1 {
		left: 4.875em;
		animation-delay: 3s;
	}

	#get-started-cta .craftiq-bulb2 {
		left: 16.875em;
		animation-delay: 5s;
	}

	#get-started-cta .craftiq-bulb3 {
		left: 28em;
		animation-delay: 0.1s;
	}

	#get-started-cta .craftiq-bulb4 {
		display: block;
		left: 39.6875em;
		animation-delay: 4s;
	}

	#get-started-cta .craftiq-bulb5 {
		display: block;
		left: 50.9375em;
		animation-delay: 2.5s;
	}
}

@media only screen and (min-width: 0rem) {
	body.dark-mode #get-started-cta .craftiq-container:before {
		box-sizing: border-box;
		border: 5px solid rgba(255, 255, 255, 0.1);
		background: radial-gradient(ellipse at center, #143f6d 0%, #01060a 78%);
	}

	body.dark-mode #get-started-cta .craftiq-container:after {
		border-color: #01060a;
	}

	body.dark-mode #get-started-cta .craftiq-flare {
		animation: bilboardGlow 15.2s forwards infinite;
		animation-delay: 0.7s;
	}

	body.dark-mode #get-started-cta .craftiq-bulb {
		animation: bulbGlow 15.2s forwards infinite;
		animation-delay: 0.7s;
	}

	body.dark-mode #get-started-cta .light1 {
		animation-delay: 3s;
	}

	body.dark-mode #get-started-cta .light2 {
		animation-delay: 5s;
	}

	body.dark-mode #get-started-cta .light3 {
		animation-delay: 0.1s;
	}

	body.dark-mode #get-started-cta .light4 {
		animation-delay: 4s;
	}

	body.dark-mode #get-started-cta .light5 {
		animation-delay: 2.5s;
	}

	body.dark-mode #get-started-cta .craftiq-bulb1 {
		animation-delay: 3s;
	}

	body.dark-mode #get-started-cta .craftiq-bulb2 {
		animation-delay: 5s;
	}

	body.dark-mode #get-started-cta .craftiq-bulb3 {
		animation-delay: 0.1s;
	}

	body.dark-mode #get-started-cta .craftiq-bulb4 {
		animation-delay: 4s;
	}

	body.dark-mode #get-started-cta .craftiq-bulb5 {
		animation-delay: 2.5s;
	}

	body.dark-mode #get-started-cta .craftiq-lights-wrapper {
		transform: translateX(-50%) translateY(0);
		animation: wrapperZ 0.35s forwards;
	}
}

@media only screen and (min-width: 0rem) {
	#craftiq-footer {
		z-index: 10;
		position: relative;
		background-color: var(--primary);
		padding: var(--sectionPadding);
		padding-top: clamp(6.25rem, 20vw, 18.5rem);
		padding-bottom: clamp(1.875rem, 5vw, 3.125rem);
	}

	#craftiq-footer .craftiq-container {
		display: flex;
		flex-wrap: wrap;
		justify-content: flex-start;
		align-items: flex-start;
		margin: auto;
		max-width: 34.375rem;
		width: 100%;
		column-gap: 3rem;
		row-gap: 2rem;
	}

	#craftiq-footer .craftiq-logo-group {
		position: relative;
		width: 100%;
	}

	#craftiq-footer .craftiq-logo {
		display: block;
		margin: 0 0 1.5rem 0;
		height: auto;
		width: 19.625rem;
		position: relative;
		z-index: 1;
	}

	#craftiq-footer .craftiq-text {
		margin: 0 0 2rem;
		color: var(--bodyTextColorWhite);
	}

	#craftiq-footer .craftiq-logo-img {
		height: auto;
		width: 100%;
	}

	#craftiq-footer .craftiq-header {
		position: relative;
		display: block;
		margin: 0 0 1.25rem 0;
		text-transform: uppercase;
		font-family: var(--headerFont);
		font-size: 1.25rem;
		line-height: 1.5em;
		font-weight: 700;
		color: var(--bodyTextColorWhite);
	}

	#craftiq-footer .craftiq-ul {
		display: flex;
		flex-direction: column;
		margin: 0;
		padding: 0;
		gap: 0.75rem;
	}

	#craftiq-footer .craftiq-ul-1 {
		flex-direction: row;
		flex-wrap: wrap;
		justify-content: space-between;
		max-width: 21.875rem;
		width: 100%;
		column-gap: 2rem;
	}

	#craftiq-footer .craftiq-ul-1 .craftiq-li {
		width: 44%;
	}

	#craftiq-footer .craftiq-li {
		list-style: none;
	}

	#craftiq-footer .craftiq-link {
		display: inline-flex;
		align-items: flex-start;
		text-decoration: none;
		font-size: 1rem;
		line-height: 1.5em;
		color: #fff;
		transition: color 0.3s;
		text-align: left;
		gap: 0.5rem;
	}

	#craftiq-footer .craftiq-link:hover {
		color: var(--secondary);
	}

	#craftiq-footer .craftiq-icon {
		display: block;
		margin-right: 0.125rem;
		height: auto;
		width: 1.25rem;
	}

	#craftiq-footer .craftiq-bottom {
        display: grid;
        grid-template-columns: 1fr 3fr;
		border-top: 1px solid rgba(255, 255, 255, 0.2);
		margin: clamp(3rem, 7vw, 3rem) auto 0;
		max-width: 80rem;
		width: 100%;
		padding-top: 1.5rem;
		text-align: center;
		gap: 0.75rem;
	}

	#craftiq-footer .craftiq-credit,
	#craftiq-footer .craftiq-bottom-link,
	#craftiq-footer .craftiq-credit-link {
		position: relative;
		display: inline-block;
		margin: 0;
		width: auto;
		text-decoration: none;
		font-size: clamp(0.875rem, 1.5vw, 1rem);
		line-height: 1.5em;
		color: #fff;
		transition: color 0.3s;
	}

	#craftiq-footer .craftiq-credit {
		width: 100%;
	}

	#craftiq-footer .craftiq-credit-link {
		position: relative;
		display: inline-block;
		margin: 0;
		width: auto;
		text-decoration: none;
		font-size: clamp(0.875rem, 1.5vw, 1rem);
		line-height: 1.5em;
		color: #fff;
	}

	#craftiq-footer .craftiq-credit-link:hover {
		color: var(--secondary);
	}

	#craftiq-footer .craftiq-bottom-links {
		display: inline-grid;
		align-content: space-between;
		align-items: center;
		width: 100%;
	}

	#craftiq-footer .craftiq-bottom-link {
		display: flex;
		align-items: center;
	}

	#craftiq-footer .craftiq-bottom-link:hover {
		color: var(--secondary);
	}

	#craftiq-footer .craftiq-bottom-link:not(:last-child):after {
		content: "";
		opacity: 1;
		display: inline-block;
		margin: 0 0.75rem;
		background: currentColor;
		height: 0.875rem;
		width: 1px;
		vertical-align: middle;
	}

	#craftiq-footer .craftiq-footer-swoosh {
		--footerSwish: #fff;
		position: absolute;
		top: -1px;
		left: 0;
		height: auto;
		pointer-events: none;
		width: 100%;
	}
}

@media only screen and (min-width: 48rem) {
	#craftiq-footer .craftiq-container {
		max-width: 80rem;
		row-gap: clamp(3rem, 7vw, 4rem);
	}

	#craftiq-footer .craftiq-bottom {
		flex-wrap: nowrap;
		justify-content: space-between;
	}

	#craftiq-footer .craftiq-credit {
		text-align: left;
	}

	#craftiq-footer .craftiq-bottom-links {
		justify-content: flex-end;
	}
}

@media only screen and (min-width: 1024px) {
	#craftiq-footer .craftiq-container {
		flex-wrap: nowrap;
		justify-content: flex-end;
		align-items: flex-start;
	}

	#craftiq-footer .craftiq-logo-group {
		margin-right: auto;
		max-width: 25rem;
		width: 30%;
	}

	#craftiq-footer .craftiq-text {
		width: 100%;
	}	
}

@media only screen and (min-width: 0rem) {
	body.dark-mode #craftiq-footer {
		background-color: #01060a;
	}

	body.dark-mode #craftiq-footer .craftiq-footer-swoosh {
		--footerSwish: var(--dark);
	}
}

.craftiq-socials {
    padding: 2rem 0 0 0;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 1rem;
	color: var(--secondary);
}

.part-of-westpunt-creative {
	display: flex;
	justify-content: end;
	color: var(--bodyTextColorWhite);
	font-size: .75rem;
}

.part-of-westpunt-creative a {
	text-decoration: none;
	line-height: normal;
	padding-left: .25rem;
	color: var(--secondary);
	font-size: .75rem;
}

.additional-links {
	display: flex;
	justify-content: end;
}

.nav-cta-button {
    z-index: 1;
	position: relative;
	display: inline-block;
	border-radius: 3.75rem;
	margin: 0;
	background-color: var(--primary);
	min-width: 8.25rem;
	box-sizing: border-box;
	overflow: hidden;
	padding: 0 2rem;
	text-decoration: none;
	text-transform: uppercase;
	font-family: var(--headerFont);
	font-size: 1rem;
	line-height: 3.5rem;
	font-weight: 700;
	color: #fff;
}