/*
 * foundry animation
 */

@keyframes fdy-fadeIn {
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}

@keyframes fdy-fadeInUp {
	from {
		opacity: 0;
		transform: translate3d(0, 100%, 0);
	}
	to {
		opacity: 1;
		transform: translate3d(0, 0, 0);
	}
}

@keyframes fdy-fadeInDown {
	from {
		opacity: 0;
		-webkit-transform: translate3d(0, -100%, 0);
		transform: translate3d(0, -100%, 0);
	}
	to {
		opacity: 1;
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0);
	}
}

@keyframes fdy-fadeInLeft {
	from {
		opacity: 0;
		-webkit-transform: translate3d(-100%, 0, 0);
		transform: translate3d(-100%, 0, 0);
	}
	to {
		opacity: 1;
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0);
	}
}

@keyframes fdy-fadeInRight {
	from {
		opacity: 0;
		-webkit-transform: translate3d(100%, 0, 0);
		transform: translate3d(100%, 0, 0);
	}
	to {
		opacity: 1;
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0);
	}
}

@keyframes fdy-fadeInTopLeft {
	from {
		opacity: 0;
		-webkit-transform: translate3d(-100%, -100%, 0);
		transform: translate3d(-100%, -100%, 0);
	}
	to {
		opacity: 1;
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0);
	}
}

@keyframes fdy-fadeInTopRight {
	from {
		opacity: 0;
		-webkit-transform: translate3d(100%, -100%, 0);
		transform: translate3d(100%, -100%, 0);
	}
	to {
		opacity: 1;
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0);
	}
}

@keyframes fdy-fadeInBottomLeft {
	from {
		opacity: 0;
		-webkit-transform: translate3d(-100%, 100%, 0);
		transform: translate3d(-100%, 100%, 0);
	}
	to {
		opacity: 1;
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0);
	}
}

@keyframes fdy-fadeInBottomRight {
	from {
		opacity: 0;
		-webkit-transform: translate3d(100%, 100%, 0);
		transform: translate3d(100%, 100%, 0);
	}
	to {
		opacity: 1;
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0);
	}
}

@keyframes fdy-flip-in-hor {
	0% {
		transform: rotateX(80deg);
		opacity: 0;
	}
	100% {
		transform: rotateX(0);
		opacity: 1;
	}
}

@keyframes fdy-flip-in-ver {
	0% {
		transform: rotateY(-80deg);
		opacity: 0;
	}
	100% {
		transform: rotateY(0);
		opacity: 1;
	}
}

@keyframes fdy-scale-in-center {
	0% {
		transform: scale(0);
		opacity: 0;
	}
	100% {
		transform: scale(1);
		opacity: 1;
	}
}

@keyframes fdy-scale-in-top {
	0% {
		transform: scale(0);
		transform-origin: 50% 0%;
		opacity: 0;
	}
	100% {
		transform: scale(1);
		transform-origin: 50% 0%;
		opacity: 1;
	}
}

@keyframes fdy-scale-in-bottom {
	0% {
		transform: scale(0);
		transform-origin: 50% 100%;
		opacity: 0;
	}
	100% {
		transform: scale(1);
		transform-origin: 50% 100%;
		opacity: 1;
	}
}

@keyframes fdy-scale-in-left {
	0% {
		transform: scale(0);
		transform-origin: 0% 50%;
		opacity: 0;
	}
	100% {
		transform: scale(1);
		transform-origin: 0% 50%;
		opacity: 1;
	}
}

@keyframes fdy-scale-in-right {
	0% {
		transform: scale(0);
		transform-origin: 100% 50%;
		opacity: 0;
	}
	100% {
		transform: scale(1);
		transform-origin: 100% 50%;
		opacity: 1;
	}
}

@keyframes fdy-scale-in-ver-center {
	0% {
		transform: scaleY(0);
		opacity: 0;
	}
	100% {
		transform: scaleY(1);
		opacity: 1;
	}
}

@keyframes fdy-scale-in-hor-center {
	0% {
		transform: scaleX(0);
		opacity: 0;
	}
	100% {
		transform: scaleX(1);
		opacity: 1;
	}
}

@keyframes fdy-rotate-in-center {
	0% {
		transform: rotate(-360deg);
		opacity: 0;
	}
	100% {
		transform: rotate(0);
		opacity: 1;
	}
}

@keyframes fdy-rotate-in-top {
	0% {
		transform: rotate(-360deg);
		transform-origin: top;
		opacity: 0;
	}
	100% {
		transform: rotate(0deg);
		transform-origin: top;
		opacity: 1;
	}
}

@keyframes fdy-rotate-in-bottom {
	0% {
		transform: rotate(-360deg);
		transform-origin: bottom;
		opacity: 0;
	}
	100% {
		transform: rotate(0deg);
		transform-origin: bottom;
		opacity: 1;
	}
}

@keyframes fdy-rotate-in-left {
	0% {
		transform: rotate(-360deg);
		transform-origin: left;
		opacity: 0;
	}
	100% {
		transform: rotate(0deg);
		transform-origin: left;
		opacity: 1;
	}
}

@keyframes fdy-rotate-in-right {
	0% {
		transform: rotate(-360deg);
		transform-origin: right;
		opacity: 0;
	}
	100% {
		transform: rotate(0deg);
		transform-origin: right;
		opacity: 1;
	}
}

@keyframes fdy-rotate-in-hor {
	0% {
		transform: rotateX(360deg);
		opacity: 0;
	}
	100% {
		transform: rotateX(0deg);
		opacity: 1;
	}
}

@keyframes fdy-rotate-in-ver {
	0% {
		transform: rotateY(-360deg);
		opacity: 0;
	}
	100% {
		transform: rotateY(0deg);
		opacity: 1;
	}
}

@keyframes fdy-rotate-in-subtle-cw {
	0% {
		transform: rotate(-45deg);
		opacity: 0;
	}
	100% {
		transform: rotate(0);
		opacity: 1;
	}
}

@keyframes fdy-rotate-in-subtle-ccw {
	0% {
		transform: rotate(45deg);
		opacity: 0;
	}
	100% {
		transform: rotate(0);
		opacity: 1;
	}
}

@keyframes fdy-rotate-in-subtle-fwd-cw {
	0% {
		transform: scale(0.5) rotate(-45deg);
		opacity: 0;
	}
	100% {
		transform: scale(1) rotate(0);
		opacity: 1;
	}
}

@keyframes fdy-rotate-in-subtle-fwd-ccw {
	0% {
		transform: scale(0.5) rotate(45deg);
		opacity: 0;
	}
	100% {
		transform: scale(1) rotate(0);
		opacity: 1;
	}
}

@keyframes fdy-swirl-in-fwd {
	0% {
		transform: rotate(-540deg) scale(0);
		opacity: 0;
	}
	100% {
		transform: rotate(0) scale(1);
		opacity: 1;
	}
}

@keyframes fdy-swirl-in-bck {
	0% {
		transform: rotate(540deg) scale(5);
		opacity: 0;
	}
	100% {
		transform: rotate(0) scale(1);
		opacity: 1;
	}
}

@keyframes fdy-slit-in-vertical {
	0% {
		transform: scale(0.25) rotateY(90deg);
		opacity: 0;
	}
	40% {
		transform: scale(0.85) rotateY(88deg);
		opacity: 1;
	}
	100% {
		transform: scale(1) translateZ(0) rotateY(0);
	}
}

@keyframes fdy-slit-in-horizontal {
	0% {
		transform: scale(0.25) rotateX(90deg);
		opacity: 0;
	}
	40% {
		transform: scale(0.85) rotateX(88deg);
		opacity: 1;
	}
	100% {
		transform: scale(1) translateZ(0) rotateX(0);
	}
}

@keyframes fdy-puff-in-center {
	0% {
		transform: scale(2);
		filter: blur(4px);
		opacity: 0;
	}
	100% {
		transform: scale(1);
		filter: blur(0px);
		opacity: 1;
	}
}

@keyframes fdy-slide-in-bck-center {
	0% {
		transform: scale(6);
		opacity: 0;
	}
	100% {
		transform: scale(1);
		opacity: 1;
	}
}

@keyframes fdy-bounce-in-top {
	0% {
		transform: translateY(-500px);
		animation-timing-function: ease-in;
		opacity: 0;
	}
	38% {
		transform: translateY(0);
		animation-timing-function: ease-out;
		opacity: 1;
	}
	55% {
		transform: translateY(-65px);
		animation-timing-function: ease-in;
	}
	72% {
		transform: translateY(0);
		animation-timing-function: ease-out;
	}
	81% {
		transform: translateY(-28px);
		animation-timing-function: ease-in;
	}
	90% {
		transform: translateY(0);
		animation-timing-function: ease-out;
	}
	95% {
		transform: translateY(-8px);
		animation-timing-function: ease-in;
	}
	100% {
		transform: translateY(0);
		animation-timing-function: ease-out;
	}
}

@keyframes fdy-bounce-in-bottom {
	0% {
		transform: translateY(500px);
		animation-timing-function: ease-in;
		opacity: 0;
	}
	38% {
		transform: translateY(0);
		animation-timing-function: ease-out;
		opacity: 1;
	}
	55% {
		transform: translateY(65px);
		animation-timing-function: ease-in;
	}
	72% {
		transform: translateY(0);
		animation-timing-function: ease-out;
	}
	81% {
		transform: translateY(28px);
		animation-timing-function: ease-in;
	}
	90% {
		transform: translateY(0);
		animation-timing-function: ease-out;
	}
	95% {
		transform: translateY(8px);
		animation-timing-function: ease-in;
	}
	100% {
		transform: translateY(0);
		animation-timing-function: ease-out;
	}
}

@keyframes fdy-bounce-in-left {
	0% {
		transform: translateX(-600px);
		animation-timing-function: ease-in;
		opacity: 0;
	}
	38% {
		transform: translateX(0);
		animation-timing-function: ease-out;
		opacity: 1;
	}
	55% {
		transform: translateX(-68px);
		animation-timing-function: ease-in;
	}
	72% {
		transform: translateX(0);
		animation-timing-function: ease-out;
	}
	81% {
		transform: translateX(-28px);
		animation-timing-function: ease-in;
	}
	90% {
		transform: translateX(0);
		animation-timing-function: ease-out;
	}
	95% {
		transform: translateX(-8px);
		animation-timing-function: ease-in;
	}
	100% {
		transform: translateX(0);
		animation-timing-function: ease-out;
	}
}

@keyframes fdy-bounce-in-right {
	0% {
		transform: translateX(600px);
		animation-timing-function: ease-in;
		opacity: 0;
	}
	38% {
		transform: translateX(0);
		animation-timing-function: ease-out;
		opacity: 1;
	}
	55% {
		transform: translateX(68px);
		animation-timing-function: ease-in;
	}
	72% {
		transform: translateX(0);
		animation-timing-function: ease-out;
	}
	81% {
		transform: translateX(32px);
		animation-timing-function: ease-in;
	}
	90% {
		transform: translateX(0);
		animation-timing-function: ease-out;
	}
	95% {
		transform: translateX(8px);
		animation-timing-function: ease-in;
	}
	100% {
		transform: translateX(0);
		animation-timing-function: ease-out;
	}
}

@keyframes fdy-bounce-in-fwd {
	0% {
		transform: scale(0);
		animation-timing-function: ease-in;
		opacity: 0;
	}
	38% {
		transform: scale(1);
		animation-timing-function: ease-out;
		opacity: 1;
	}
	55% {
		transform: scale(0.7);
		animation-timing-function: ease-in;
	}
	72% {
		transform: scale(1);
		animation-timing-function: ease-out;
	}
	81% {
		transform: scale(0.84);
		animation-timing-function: ease-in;
	}
	89% {
		transform: scale(1);
		animation-timing-function: ease-out;
	}
	95% {
		transform: scale(0.95);
		animation-timing-function: ease-in;
	}
	100% {
		transform: scale(1);
		animation-timing-function: ease-out;
	}
}

@keyframes fdy-bounce-in-bck {
	0% {
		transform: scale(7);
		animation-timing-function: ease-in;
		opacity: 0;
	}
	38% {
		transform: scale(1);
		animation-timing-function: ease-out;
		opacity: 1;
	}
	55% {
		transform: scale(1.5);
		animation-timing-function: ease-in;
	}
	72% {
		transform: scale(1);
		animation-timing-function: ease-out;
	}
	81% {
		transform: scale(1.24);
		animation-timing-function: ease-in;
	}
	89% {
		transform: scale(1);
		animation-timing-function: ease-out;
	}
	95% {
		transform: scale(1.04);
		animation-timing-function: ease-in;
	}
	100% {
		transform: scale(1);
		animation-timing-function: ease-out;
	}
}

@keyframes fdy-roll-in-top {
	0% {
		transform: translateY(-800px) rotate(-540deg);
		opacity: 0;
	}
	100% {
		transform: translateY(0) rotate(0deg);
		opacity: 1;
	}
}

@keyframes fdy-roll-in-bottom {
	0% {
		transform: translateY(800px) rotate(540deg);
		opacity: 0;
	}
	100% {
		transform: translateY(0) rotate(0deg);
		opacity: 1;
	}
}

@keyframes fdy-roll-in-left {
	0% {
		transform: translateX(-800px) rotate(-540deg);
		opacity: 0;
	}
	100% {
		transform: translateX(0) rotate(0deg);
		opacity: 1;
	}
}

@keyframes fdy-roll-in-right {
	0% {
		transform: translateX(800px) rotate(540deg);
		opacity: 0;
	}
	100% {
		transform: translateX(0) rotate(0deg);
		opacity: 1;
	}
}

@keyframes fdy-wobble-hor-bottom {
	0%, 100% {
		transform: translateX(0%);
		transform-origin: 50% 50%;
	}
	15% {
		transform: translateX(-30px) rotate(-6deg);
	}
	30% {
		transform: translateX(15px) rotate(6deg);
	}
	45% {
		transform: translateX(-15px) rotate(-3.6deg);
	}
	60% {
		transform: translateX(9px) rotate(2.4deg);
	}
	75% {
		transform: translateX(-6px) rotate(-1.2deg);
	}
}

@keyframes fdy-wobble-hor-top {
	0%, 100% {
		transform: translateX(0%);
		transform-origin: 50% 50%;
	}
	15% {
		transform: translateX(-30px) rotate(6deg);
	}
	30% {
		transform: translateX(15px) rotate(-6deg);
	}
	45% {
		transform: translateX(-15px) rotate(3.6deg);
	}
	60% {
		transform: translateX(9px) rotate(-2.4deg);
	}
	75% {
		transform: translateX(-6px) rotate(1.2deg);
	}
}

@keyframes fdy-jello-horizontal {
	0% {
		transform: scale3d(1, 1, 1);
	}
	30% {
		transform: scale3d(1.25, 0.75, 1);
	}
	40% {
		transform: scale3d(0.75, 1.25, 1);
	}
	50% {
		transform: scale3d(1.15, 0.85, 1);
	}
	65% {
		transform: scale3d(0.95, 1.05, 1);
	}
	75% {
		transform: scale3d(1.05, 0.95, 1);
	}
	100% {
		transform: scale3d(1, 1, 1);
	}
}

@keyframes fdy-jello-vertical {
	0% {
		transform: scale3d(1, 1, 1);
	}
	30% {
		transform: scale3d(0.75, 1.25, 1);
	}
	40% {
		transform: scale3d(1.25, 0.75, 1);
	}
	50% {
		transform: scale3d(0.85, 1.15, 1);
	}
	65% {
		transform: scale3d(1.05, 0.95, 1);
	}
	75% {
		transform: scale3d(0.95, 1.05, 1);
	}
	100% {
		transform: scale3d(1, 1, 1);
	}
}

@keyframes fdy-jello-diagonal {
	0% {
		transform: skew(0deg 0deg);
	}
	30% {
		transform: skew(25deg 25deg);
	}
	40% {
		transform: skew(-15deg, -15deg);
	}
	50% {
		transform: skew(15deg, 15deg);
	}
	65% {
		transform: skew(-5deg, -5deg);
	}
	75% {
		transform: skew(5deg, 5deg);
	}
	100% {
		transform: skew(0deg 0deg);
	}
}

@keyframes fdy-heartbeat {
	from {
		transform: scale(1);
		transform-origin: center center;
		animation-timing-function: ease-out;
	}
	10% {
		transform: scale(0.91);
		animation-timing-function: ease-in;
	}
	17% {
		transform: scale(0.98);
		animation-timing-function: ease-out;
	}
	33% {
		transform: scale(0.87);
		animation-timing-function: ease-in;
	}
	45% {
		transform: scale(1);
		animation-timing-function: ease-out;
	}
}

@keyframes fdy-shake-horizontal {
	0%, 100% {
		transform: translateX(0);
	}
	10%, 30%, 50%, 70% {
		transform: translateX(-10px);
	}
	20%, 40%, 60% {
		transform: translateX(10px);
	}
	80% {
		transform: translateX(8px);
	}
	90% {
		transform: translateX(-8px);
	}
}

@keyframes fdy-shake-vertical {
	0%, 100% {
		transform: translateY(0);
	}
	10%, 30%, 50%, 70% {
		transform: translateY(-8px);
	}
	20%, 40%, 60% {
		transform: translateY(8px);
	}
	80% {
		transform: translateY(6.4px);
	}
	90% {
		transform: translateY(-6.4px);
	}
}

@keyframes fdy-shake-bottom {
	0%, 100% {
		transform: rotate(0deg);
		transform-origin: 50% 100%;
	}
	10% {
		transform: rotate(2deg);
	}
	20%, 40%, 60% {
		transform: rotate(-4deg);
	}
	30%, 50%, 70% {
		transform: rotate(4deg);
	}
	80% {
		transform: rotate(-2deg);
	}
	90% {
		transform: rotate(2deg);
	}
}

@keyframes fdy-shake-top {
	0%, 100% {
		transform: rotate(0deg);
		transform-origin: 50% 0;
	}
	10% {
		transform: rotate(2deg);
	}
	20%, 40%, 60% {
		transform: rotate(-4deg);
	}
	30%, 50%, 70% {
		transform: rotate(4deg);
	}
	80% {
		transform: rotate(-2deg);
	}
	90% {
		transform: rotate(2deg);
	}
}

@keyframes fdy-subtle-bounce-top {
	0% {
		transform: translateY(-45px);
		animation-timing-function: ease-in;
		opacity: 0;
	}
	24% {
		opacity: 1;
	}
	40% {
		transform: translateY(-24px);
		animation-timing-function: ease-in;
	}
	65% {
		transform: translateY(-12px);
		animation-timing-function: ease-in;
	}
	82% {
		transform: translateY(-6px);
		animation-timing-function: ease-in;
	}
	93% {
		transform: translateY(-4px);
		animation-timing-function: ease-in;
	}
	25%, 55%, 75%, 87% {
		transform: translateY(0px);
		animation-timing-function: ease-out;
	}
	100% {
		transform: translateY(0px);
		animation-timing-function: ease-out;
		opacity: 1;
	}
}

@keyframes fdy-subtle-bounce-bottom {
	0% {
		transform: translateY(45px);
		animation-timing-function: ease-in;
		opacity: 0;
	}
	24% {
		opacity: 1;
	}
	40% {
		transform: translateY(24px);
		animation-timing-function: ease-in;
	}
	65% {
		transform: translateY(12px);
		animation-timing-function: ease-in;
	}
	82% {
		transform: translateY(6px);
		animation-timing-function: ease-in;
	}
	93% {
		transform: translateY(4px);
		animation-timing-function: ease-in;
	}
	25%, 55%, 75%, 87% {
		transform: translateY(0px);
		animation-timing-function: ease-out;
	}
	100% {
		transform: translateY(0px);
		animation-timing-function: ease-out;
		opacity: 1;
	}
}

@keyframes fdy-subtle-bounce-left {
	0% {
		transform: translateX(-48px);
		animation-timing-function: ease-in;
		opacity: 0;
	}
	24% {
		opacity: 1;
	}
	40% {
		transform: translateX(-26px);
		animation-timing-function: ease-in;
	}
	65% {
		transform: translateX(-13px);
		animation-timing-function: ease-in;
	}
	82% {
		transform: translateX(-6.5px);
		animation-timing-function: ease-in;
	}
	93% {
		transform: translateX(-4px);
		animation-timing-function: ease-in;
	}
	25%, 55%, 75%, 87%, 98% {
		transform: translateX(0px);
		animation-timing-function: ease-out;
	}
	100% {
		transform: translateX(0px);
		animation-timing-function: ease-out;
		opacity: 1;
	}
}

@keyframes fdy-subtle-bounce-right {
	0% {
		transform: translateX(48px);
		animation-timing-function: ease-in;
		opacity: 0;
	}
	24% {
		opacity: 1;
	}
	40% {
		transform: translateX(26px);
		animation-timing-function: ease-in;
	}
	65% {
		transform: translateX(13px);
		animation-timing-function: ease-in;
	}
	82% {
		transform: translateX(6.5px);
		animation-timing-function: ease-in;
	}
	93% {
		transform: translateX(4px);
		animation-timing-function: ease-in;
	}
	25%, 55%, 75%, 87%, 98% {
		transform: translateX(0px);
		animation-timing-function: ease-out;
	}
	100% {
		transform: translateX(0px);
		animation-timing-function: ease-out;
		opacity: 1;
	}
}

@keyframes fdy-subtle-fade-in-top {
	0% {
		transform: translateY(-50px);
		opacity: 0;
	}
	100% {
		transform: translateY(0);
		opacity: 1;
	}
}

@keyframes fdy-subtle-fade-in-right {
	0% {
		transform: translateX(50px);
		opacity: 0;
	}
	100% {
		transform: translateX(0);
		opacity: 1;
	}
}

@keyframes fdy-subtle-fade-in-left {
	0% {
		transform: translateX(-50px);
		opacity: 0;
	}
	100% {
		transform: translateX(0);
		opacity: 1;
	}
}

@keyframes fdy-subtle-fade-in-bottom {
	0% {
		transform: translateY(50px);
		opacity: 0;
	}
	100% {
		transform: translateY(0);
		opacity: 1;
	}
}


/* 
 ______                    _            
|  ____|                  | |           
| |__ ___  _   _ _ __   __| |_ __ _   _ 
|  __/ _ \| | | | '_ \ / _` | '__| | | |
| | | (_) | |_| | | | | (_| | |  | |_| |
|_|  \___/ \__,_|_| |_|\__,_|_|   \__, |
								   __/ |
								  |___/ 

Version: 3.2024.01.17
Copyright Elixir Graphics 2006-2023
More Info: https://foundry.elixirgraphics.com
  Support: https://elixir.support

*/ 




/* Hack to get rid of margin-left and margin-right being set to AUTO by Stacks */
.stacks_out {
	margin-left: initial;
	margin-right: initial;
}


/* Preview & Publish */
:root {
	   --fdy-base-margin-xs: 0.75rem;
	   --fdy-base-margin-sm: 0.75rem;
	   --fdy-base-margin-md: 0.75rem;
	   --fdy-base-margin-lg: 0.75rem;
	   --fdy-base-margin-xl: 0.75rem;
	  --fdy-base-margin-xxl: 0.75rem;
}

* {
	-webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; text-rendering: optimizeLegibility;
}
/* End Preview & Publish */

	


/* All Modes */

/* Remove overflow from the Stacks stacks_top class */
.stacks_top {
	overflow: initial !important;
}


/* Foundry - Custom Classes */
/* Shadows & Text Shadows */
.fdy-shadow {
  box-shadow: 0 0.4rem 1rem rgba(0, 0, 0, 0.25) !important;
}

.fdy-shadow-sm {
  box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.25) !important;
}

.fdy-shadow-multi {
  box-shadow: 0 0.15rem 0.25rem rgba(0, 0, 0, 0.2), 0 0.4rem 1rem rgba(0, 0, 0, 0.2) !important;
}

.fdy-shadow-wide,
.fdy-shadow-wide-hover:hover {
	box-shadow: rgba(0, 0, 0, 0.25) 0px 54px 55px, rgba(0, 0, 0, 0.12) 0px -12px 30px, rgba(0, 0, 0, 0.12) 0px 4px 6px, rgba(0, 0, 0, 0.17) 0px 12px 13px, rgba(0, 0, 0, 0.09) 0px -3px 5px !important;
}

.fdy-shadow-shallow-1 {
	box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px, rgba(0, 0, 0, 0.3) 0px 3px 7px -3px !important;
}

.fdy-shadow-shallow-2 {
	box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 1px 3px 1px !important;
}

.fdy-shadow-shallow-3 {
	box-shadow: rgba(0, 0, 0, 0.16) 0px 3px 6px, rgba(0, 0, 0, 0.23) 0px 3px 6px !important;
}

.fdy-shadow-floating {
	box-shadow: rgba(0, 0, 0, 0.55) 0px 15px 10px -10px !important;
}

.fdy-shadow-smooth {
	box-shadow: 0 1px 1px rgba(0,0,0,0.12), 
	  0 2px 2px rgba(0,0,0,0.12), 
	  0 4px 4px rgba(0,0,0,0.12), 
	  0 8px 8px rgba(0,0,0,0.12),
	  0 16px 16px rgba(0,0,0,0.12) !important;
}

.fdy-user-preset-shadow,
.fdy-user-preset-shadow-hover:hover {
	box-shadow: 0px 5px 10px -1px rgba(0, 0, 0, 0.50);
}

.fdy-no-shadow-hover:hover {
	box-shadow: 0 0 0 0 rgba(0,0,0,0.0) !important;
}

.fdy-shadow-hover:hover {
	box-shadow: 0 0.4rem 1rem rgba(0, 0, 0, 0.25) !important;
}

.fdy-shadow-sm-hover:hover {
	box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.25) !important;
}

.fdy-shadow-multi-hover:hover {
	box-shadow: 0 0.15rem 0.25rem rgba(0, 0, 0, 0.2), 0 0.4rem 1rem rgba(0, 0, 0, 0.2) !important;
}

.fdy-shadow-wide-hover:hover {	
	box-shadow: rgba(0, 0, 0, 0.25) 0px 54px 55px, rgba(0, 0, 0, 0.12) 0px -12px 30px, rgba(0, 0, 0, 0.12) 0px 4px 6px, rgba(0, 0, 0, 0.17) 0px 12px 13px, rgba(0, 0, 0, 0.09) 0px -3px 5px !important;
}

.fdy-shadow-shallow-1-hover:hover {
	box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px, rgba(0, 0, 0, 0.3) 0px 3px 7px -3px !important;
}

.fdy-shadow-shallow-2-hover:hover {
	box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 1px 3px 1px !important;
}

.fdy-shadow-shallow-3-hover:hover {
	box-shadow: rgba(0, 0, 0, 0.16) 0px 3px 6px, rgba(0, 0, 0, 0.23) 0px 3px 6px !important;
}

.fdy-shadow-floating-hover:hover {
	box-shadow: rgba(0, 0, 0, 0.55) 0px 15px 10px -10px !important;
}

.fdy-shadow-smooth-hover:hover {
	box-shadow: 0 1px 1px rgba(0,0,0,0.12), 
	  0 2px 2px rgba(0,0,0,0.12), 
	  0 4px 4px rgba(0,0,0,0.12), 
	  0 8px 8px rgba(0,0,0,0.12),
	  0 16px 16px rgba(0,0,0,0.12) !important;
}

.fdy-control-center-small-shadow {
	box-shadow: 0 1px 3px rgba(0,0,0,0.17);  
}

.fdy-text-shadow {
  text-shadow: 0 0.4rem 1rem rgba(0, 0, 0, 0.25) !important;
}

.fdy-text-shadow-sm {
  text-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.25) !important;
}

.fdy-text-shadow-multi {
  text-shadow: 0 0.15rem 0.25rem rgba(0, 0, 0, 0.2), 0 0.4rem 1rem rgba(0, 0, 0, 0.2) !important;
}

.fdy-text-shadow-wide {
	text-shadow: rgba(0, 0, 0, 0.25) 0px 54px 55px, rgba(0, 0, 0, 0.12) 0px -12px 30px, rgba(0, 0, 0, 0.12) 0px 4px 6px, rgba(0, 0, 0, 0.17) 0px 12px 13px, rgba(0, 0, 0, 0.09) 0px -3px 5px !important;
}

.fdy-text-shadow-shallow-1 {
	text-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px, rgba(0, 0, 0, 0.3) 0px 3px 7px !important;
}

.fdy-text-shadow-shallow-2 {
	text-shadow: 0px 1px 2px rgba(60, 64, 67, 0.3), 0px 1px 3px rgba(60, 64, 67, 0.15) !important;
}

.fdy-text-shadow-shallow-3 {
	text-shadow: rgba(0, 0, 0, 0.16) 0px 3px 6px, rgba(0, 0, 0, 0.23) 0px 3px 6px !important;
}

.fdy-text-shadow-floating {
	text-shadow: rgba(0, 0, 0, 0.55) 0px 15px 15px !important;
}

.fdy-text-shadow-smooth {
	text-shadow: 0 1px 1px rgba(0,0,0,0.12), 
	  0 2px 2px rgba(0,0,0,0.12), 
	  0 4px 4px rgba(0,0,0,0.12), 
	  0 8px 8px rgba(0,0,0,0.12),
	  0 16px 16px rgba(0,0,0,0.12) !important;
}

.fdy-text-user-preset-shadow {
	text-shadow: 0px 5px 10px  rgba(0, 0, 0, 0.50);
}

.shadow-none,
.shadow-none-hover:hover {
	box-shadow: none !important;
}

:root {
	--fdy-transparent: transparent;
	
	--bs-body-font-size: 1.00rem;
	--bs-body-line-height: 1.50;
	--bs-body-font-weight: 100;

	
	--bs-body-color: var(--bs-dark);
	
	
}


/* Helper Classes */

.img-100-pct {
  width: 100%;
  height: auto;
}

.fdy-bg-transparent {
	background: var(--fdy-transparent);
}

.fdy-bg-white {
	background: #ffffff;
}

.fdy-translate-middle-end {
	transform: translate(-100%,-50%) !important;
}

.fdy-translate-middle-start {
	transform: translate(0%,-50%) !important;
}

.fdy-pointer-events-none {
	pointer-events: none;
}

.fdy-dropdown-menu-start {
	left: 0 !important;
	right: initial !important;
}

.fdy-dropdown-menu-end {
	right: 0 !important;
	left: initial !important;
}


/* List Group Classes */
.list-group-item.disabled-link {
  pointer-events: none;
}
	
/* Hide box-shadow at each breakpoint */
@media (max-width: 575px) {
	.fdy-hide-shadow-xs {
		box-shadow: none !important;
	}
}

@media (min-width: 576px) and (max-width: 767px) {
	.fdy-hide-shadow-sm {
		box-shadow: none !important;
	}
}

@media (min-width: 768px) and (max-width: 991px) {
	.fdy-hide-shadow-md {
		box-shadow: none !important;
	}
}

@media (min-width: 992px) and (max-width: 1199px) {
	.fdy-hide-shadow-lg {
		box-shadow: none !important;
	}
}

@media (min-width: 1200px) and (max-width: 1399px) {
	.fdy-hide-shadow-xl {
		box-shadow: none !important;
	}
}

@media (min-width: 1400px) {
	.fdy-hide-shadow-xxl {
		box-shadow: none !important;
	}
}
	


/* Custom padding classes for x-axis */
@media (max-width: 575px) {
	.fdy-px-xs-0 {
		padding-left: 0;
		padding-right: 0;
	}
}

@media (min-width: 576px) and (max-width: 767px) {
	.fdy-px-sm-0 {
		padding-left: 0;
		padding-right: 0;
	}
}

@media (min-width: 768px) and (max-width: 991px) {
	.fdy-px-md-0 {
		padding-left: 0;
		padding-right: 0;
	}
}

@media (min-width: 992px) and (max-width: 1199px) {
	.fdy-px-lg-0 {
		padding-left: 0;
		padding-right: 0;
	}
}

@media (min-width: 1200px) and (max-width: 1399px) {
	.fdy-px-xl-0 {
		padding-left: 0;
		padding-right: 0;
	}
}

@media (min-width: 1400px) {
	.fdy-px-xxl-0 {
		padding-left: 0;
		padding-right: 0;
	}
}


/* Card Group Class Helper for Container stack */
.fdy-card-group {
	display: flex;
	flex-flow: row wrap;
}

.fdy-card-group > .card {
	flex: 1 0 0%;
	margin-bottom: 0;
}

.fdy-card-group > .card + .card {
	margin-left: 0 !important;
	border-left: 0 !important;
}

.fdy-card-group > .card:not(:last-child) .card-img-top .fdy-img,
.fdy-card-group > .card:not(:last-child) {
	border-top-right-radius: 0 !important;
	border-bottom-right-radius: 0 !important;
}

.fdy-card-group > .card:not(:first-child) {
	border-top-left-radius: 0 !important;
	border-bottom-left-radius: 0 !important;
}

.fdy-card-group > .card:not(:first-child) .card-img-top .fdy-img,
.fdy-card-group > .card:not(:first-child) .card-header {
	border-top-left-radius: 0 !important;
}



/* Custom Header Settings */

h6, .h6, h5, .h5, h4, .h4, h3, .h3, h2, .h2, h1, .h1 {
  font-weight: 100;
  
  line-height: 1.20;
  
  
	
	color: inherit;
	
	
}





















.lead {
  line-height: 1.50;
  font-weight: 300;
}



mark, 
.mark {
	
	
}

kbd, 
.kbd {
	
	
}



a, 
a:hover {
	
	color: var(--bs-gray-700);
	
	
	
	
		
		text-decoration-color: var(--bs-danger);
		
		
	text-decoration-thickness: 0.05rem;
	text-underline-offset: 1.00px;
	
	
	
}

a:hover {
	
	color: var(--bs-gray-500);
	
	


	
		
		text-decoration-color: var(--bs-danger);
		
		
	text-decoration-thickness: 0.05rem !important;
	text-underline-offset: 1.00px !important;
	
	
	
}



	body {
		background-position: center center;
		
		

		
		background-size: cover;
		background-repeat: no-repeat;
		
		
		

	}	

	
	
	body {
		background: var(--bs-white);
	}
	
	
	
	
	
	
	


	

	









/* Translates our Foundry preset colors to standard classes */

/* Border Color */
.border-primary {
	border-color: var(--bs-primary) !important;
}

.border-secondary {
	border-color: var(--bs-secondary) !important;
}

.border-success {
	border-color: var(--bs-success) !important;
}

.border-danger {
	border-color: var(--bs-danger) !important;
}

.border-warning {
	border-color: var(--bs-warning) !important;
}

.border-info {
	border-color: var(--bs-info) !important;
}


/* Text Color */
.text-primary {
	color: var(--bs-primary) !important;
}

.text-secondary {
	color: var(--bs-secondary) !important;
}

.text-success {
	color: var(--bs-success) !important;
}

.text-danger {
	color: var(--bs-danger) !important;
}

.text-warning {
	color: var(--bs-warning) !important;
}

.text-info {
	color: var(--bs-info) !important;
}


/* Background */
.bg-primary {
	background-color: var(--bs-primary) !important;
}

.bg-secondary {
	background-color: var(--bs-secondary) !important;
}

.bg-success {
	background-color: var(--bs-success) !important;
}

.bg-danger {
	background-color: var(--bs-danger) !important;
}

.bg-warning {
	background-color: var(--bs-warning) !important;
}

.bg-info {
	background-color: var(--bs-info) !important;
}

.btn-close {
  --bs-btn-close-white-filter: invert(1) grayscale(100%) brightness(200%);
}

.btn-close-white {
  filter: var(--bs-btn-close-white-filter);
}


.fdy-border-1 {
  border-width: 1px !important;
}

.fdy-border-2 {
  border-width: 2px !important;
}

.fdy-border-3 {
  border-width: 3px !important;
}

.fdy-border-4 {
  border-width: 4px !important;
}

.fdy-border-5 {
  border-width: 5px !important;
}




:root { 
  --bs-primary: #0D6EFD;
  --bs-secondary: #6C757D;
  --bs-success: #198754;
  --bs-danger: #DC3545;
  --bs-warning: #FFC107;
  --bs-info: #0DCAF0;
}









  /* LOAD LOCAL FONTS */
  
    /* Thin - Normal */
    @font-face {
        font-family: 'Poppins';
        src: url('../') format('woff2');
        font-weight: 100;
        font-style: normal;
        font-display: swap;
    }
  

  


  
    /* Ultra Light - Normal */
    @font-face {
        font-family: 'Poppins';
        src: url('../../resources/Poppins-ExtraLight.woff2') format('woff2');
        font-weight: 200;
        font-style: normal;
        font-display: swap;
    }
  

  


  

  


  

  


  

  


  

  


  

  


  

  


  

  
  /* End Font Loading */


  

    .foundry-typeface-one {
      font-family: 'Poppins', sans-serif;
      font-weight: 100;
    }

    .foundry-typeface-one strong {
      font-weight: 200;
    }

    .foundry-typeface-one strong em,
    .foundry-typeface-one em strong {
      font-weight: 200;
      font-style: italic;
    }

    .foundry-typeface-one em {
      font-weight: 100;
      font-style: italic;
    }

    body.foundry-typeface-one-page-wide-headers h1,
    body.foundry-typeface-one-page-wide-headers h2,
    body.foundry-typeface-one-page-wide-headers h3,
    body.foundry-typeface-one-page-wide-headers h4,
    body.foundry-typeface-one-page-wide-headers h5,
    body.foundry-typeface-one-page-wide-headers h6 {
      font-family: 'Poppins', sans-serif;
    }

    h1.foundry-typeface-one,
    h2.foundry-typeface-one,
    h3.foundry-typeface-one,
    h4.foundry-typeface-one,
    h5.foundry-typeface-one,
    h6.foundry-typeface-one {
      font-family: 'Poppins', sans-serif !important;
    }

  







  /* LOAD LOCAL FONTS */
  
    /* Thin - Normal */
    @font-face {
        font-family: 'Barlow Semi Condensed';
        src: url('../') format('woff2');
        font-weight: 100;
        font-style: normal;
        font-display: swap;
    }
  

  


  

  


  
    /* Light - Normal */
    @font-face {
        font-family: 'Barlow Semi Condensed';
        src: url('../../resources/BarlowSemiCondensed-Medium.woff2') format('woff2');
        font-weight: 300;
        font-style: normal;
        font-display: swap;
    }
  

  


  

  


  

  


  

  


  

  


  

  


  

  
  /* End Font Loading */


  

    .foundry-typeface-two {
      font-family: 'Barlow Semi Condensed', sans-serif;
      font-weight: 100;
    }

    .foundry-typeface-two strong {
      font-weight: 300;
    }

    .foundry-typeface-two strong em,
    .foundry-typeface-two em strong {
      font-weight: 300;
      font-style: italic;
    }

    .foundry-typeface-two em {
      font-weight: 100;
      font-style: italic;
    }

    body.foundry-typeface-two-page-wide-headers h1,
    body.foundry-typeface-two-page-wide-headers h2,
    body.foundry-typeface-two-page-wide-headers h3,
    body.foundry-typeface-two-page-wide-headers h4,
    body.foundry-typeface-two-page-wide-headers h5,
    body.foundry-typeface-two-page-wide-headers h6 {
      font-family: 'Barlow Semi Condensed', sans-serif;
    }

    h1.foundry-typeface-two,
    h2.foundry-typeface-two,
    h3.foundry-typeface-two,
    h4.foundry-typeface-two,
    h5.foundry-typeface-two,
    h6.foundry-typeface-two {
      font-family: 'Barlow Semi Condensed', sans-serif !important;
    }

  





	
	 
	.ego-position-fixed  {

		

		
		
		

		

		

		

		
			

		
		

		
		
		
		
		

		

		

		

		

		
		
		
		
		

		
		
		
		
		

		
		
		

		

		

		
		
				

		/* Properties that should only be applied in Preview Mode / Published Page */
		
		

		


		

		

		
			/* Position */
			position: fixed  !important;
		
			
			top: 0rem  !important;
			
			
			
			left: 0rem  !important;
			
			
		

		/* Transform */
		transform:           !important;
		
		

		
		
		

		
			/* Z-Index */
			z-index: 1040  !important;
		
		
		
	}
	



/* Background Image - Retina */







@media (min-width: 576px) {
	
	 
	.ego-position-fixed-two  {

		

		
		
		

		

		

		

		
			

		
		

		
		
		
		
		

		

		

		

		

		
		
		
		
		

		
		
		
		
		

		
		
		

		

		

		
		
				

		/* Properties that should only be applied in Preview Mode / Published Page */
		
		

		


		

		

		
			/* Position */
			position: fixed  !important;
		
			
			top: 0rem  !important;
			
			
			
			left: 0rem  !important;
			
			
		

		/* Transform */
		transform:           !important;
		
		

		
		
		
			/* Width */
			width: 50vw  !important;
		

		
			/* Z-Index */
			z-index: 1000  !important;
		
		
		
	}
	
}


/* Background Image - Retina */








	
	 
	.ego-primary-bt  {

		

		
		
		

		

		

		

		
			

		
		

		
			/* Border */
			/* Border Width */
			 
			border-width: 2px  !important;
			
		
			
			
			/* Border Style */
			 
			border-style: solid  !important;
			
			
			
			
			/* Border Color */
			
		
			
		
			 
			border-color: var(--bs-white)  !important;
			
		
		
		
		
		

		

		

		

		

		
			/* Font Size */
			font-size: 2.00rem  !important;
		
		
		
			/* Font Spacing: Line Height*/
			line-height: 2.05  !important;
		
		
		

		
		
		
			/* Height */
			height: 80px  !important;
		
		
		

		
		
		

		

		

		
		
				

		/* Properties that should only be applied in Preview Mode / Published Page */
		
		

		


		

		

		

		/* Transform */
		transform:           !important;
		
		

		
		
		
			/* Width */
			width: 80px  !important;
		

		
		
		
	}
	



/* Background Image - Retina */








	
	 
	.class-shadow  {

		

		
		
		

		

		

		

		
			

		
		

		
		
		
		
		

		

		

		

		

		
		
		
		
		

		
		
		
		
		

		
		
		
			/* Text Shadow */
			text-shadow: 0px 2px 2px rgba(0, 0, 0, 0.70)   ;
		

		

		

		
		
				

		/* Properties that should only be applied in Preview Mode / Published Page */
		
		

		


		

		

		

		/* Transform */
		transform:          ;
		
		

		
		
		

		
		
		
	}
	



/* Background Image - Retina */








	
	 
	.devider-class  {

		

		
		
		

		

		

		

		
			

		
		
			/* Color */
			color: var(--bs-dark) ;
		

		
		
		
		
		

		

		

		

		

		
		
		
		
		

		
		
		
		
		

		
		
		

		

		

		
		
				

		/* Properties that should only be applied in Preview Mode / Published Page */
		
		

		


		

		

		

		/* Transform */
		transform:          ;
		
		

		
		
		

		
		
		
	}
	



/* Background Image - Retina */








	
	 
	.bloom-top  {

		

		
		
		

		

		

		

		
			

		
		

		
		
		
		
		

		

		

		

		

		
		
		
		
		

		
		
		
		
		

		
		
		

		

		

		
		
				

		/* Properties that should only be applied in Preview Mode / Published Page */
		
		

		


		

		

		

		/* Transform */
		transform:           !important;
		
		

		
		
		

		
			/* Z-Index */
			z-index: 3000  !important;
		
		
		
	}
	



/* Background Image - Retina */









#stacks_in_1429-wrapper,
#stacks_in_1429-wrapper > .bkg-overlay {
	overflow: visible;
	z-index: 15;
	position: relative;
}

#stacks_in_1429-wrapper > .filters-layer {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	
	
	
	
}

#stacks_in_1429-wrapper > .bkg-overlay {
	z-index: 10;
}

#stacks_in_1429-wrapper {
	background-position: center center;
}


#stacks_in_1429-wrapper.cover {
	background-size: cover;
	background-repeat: no-repeat;
}

#stacks_in_1429-wrapper.contain {
	background-size: contain;
	background-repeat: no-repeat;
}

#stacks_in_1429-wrapper.parallax {
	background-repeat: no-repeat;	
}

#stacks_in_1429-wrapper .jarallax {
	position: relative;
	z-index: 0;
}
#stacks_in_1429-wrapper .jarallax > .jarallax-img {
  position: absolute;
  object-fit: cover;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}



#stacks_in_1429-wrapper.tile {
	background-repeat: repeat;
}

#stacks_in_1429-wrapper.bkg-image {
	background-image: url();
}






#stacks_in_1429-wrapper.bkg-remote-image {
	background-image: url(https://sam.de/sam-image/412-SPARK-image-2-klein.jpg);
}



@media only screen and (min--moz-device-pixel-ratio: 2),
only screen and (-o-min-device-pixel-ratio: 2/1),
only screen and (-webkit-min-device-pixel-ratio: 2),
only screen and (min-device-pixel-ratio: 2) {
	#stacks_in_1429-wrapper.bkg-remote-image {
		background-image: url(https://sam.de/sam-image/412-SPARK-image-2-klein.jpg);
	}
}

	

#stacks_in_1429-wrapper.bkg-webp-image {
	background-image: url(https://sam.de/sam-image/110-VIVA-range-image/110-VIVA-image-02148-klein.jpg);
}



body.webp-not-supported #stacks_in_1429-wrapper.bkg-webp-image {
	background-image: url() !important;
}



@media only screen and (min--moz-device-pixel-ratio: 2),
only screen and (-o-min-device-pixel-ratio: 2/1),
only screen and (-webkit-min-device-pixel-ratio: 2),
only screen and (min-device-pixel-ratio: 2) {
	#stacks_in_1429-wrapper.bkg-webp-image {
		background-image: url(https://sam.de/sam-image/110-VIVA-range-image/110-VIVA-image-02148-klein.jpg);
	}

	body.webp-not-supported #stacks_in_1429-wrapper.bkg-webp-image {
		background-image: url() !important;
	}

}

	
	

#stacks_in_1429-wrapper.bkg-preset {
	background: var(--bs-gray-400);
}

#stacks_in_1429-wrapper.bkg-solid-color {
	background: rgba(127, 73, 246, 1.00);
}

#stacks_in_1429-wrapper.bkg-gradient-two {
	background: rgba(128, 73, 246, 1.00);
	background: linear-gradient(0deg, rgba(128, 73, 246, 1.00) 0%, rgba(35, 19, 101, 1.00) 100%);
}

#stacks_in_1429-wrapper.bkg-gradient-four {
	background: /* newest syntax */
	radial-gradient(circle at 0% 0%, 
		 rgba(147, 103, 248, 1.00), transparent 80%),
	radial-gradient(circle at 100% 0%, 
		 rgba(35, 19, 101, 1.00), transparent 80%), 
	radial-gradient(circle at 0% 100%, 
		 rgba(35, 19, 101, 1.00), transparent 80%), 
	radial-gradient(circle at 100% 100%, 
		 rgba(147, 103, 248, 1.00), transparent 80%);
}

#stacks_in_1429-wrapper.custom-corners,
#stacks_in_1429-wrapper.custom-corners > .bkg-overlay.custom-corners,
#stacks_in_1429-wrapper.custom-corners > .filters-layer {
	border-radius: 10px 10px 10px 10px;
}



#stacks_in_1429-wrapper > .bkg-overlay.solid {
	background: rgba(0, 0, 0, 0.45);
}


#stacks_in_1429-wrapper > .bkg-overlay.linear-gradient-two {
	background: rgba(77, 26, 176, 0.75);
	/* Linear */
	background: linear-gradient(0deg, rgba(77, 26, 176, 0.75) 0%, rgba(127, 72, 245, 0.75) 100%);

}

#stacks_in_1429-wrapper > .bkg-overlay.radial-gradient-two {
	background: rgba(0, 0, 0, 0.20);
	/* Radial */
	background: radial-gradient(circle at 50% 50%, rgba(0, 0, 0, 0.20) 0%, rgba(0, 0, 0, 0.75) 90%);
}





#stacks_in_1429-wrapper {
	
	
	border-color: var(--bs-secondary) !important;
	
	
	
}








	

	#stacks_in_1429-wrapper > .bkg-overlay {
		display: grid;
		align-content: center;
	}

	#stacks_in_1429-wrapper.height-responsive {
		height: 100vh;
	}
	
	@media (min-width: 576px) {
		#stacks_in_1429-wrapper.height-responsive {
			height: 100vh;
		}
	}
	
	@media (min-width: 768px) {
		#stacks_in_1429-wrapper.height-responsive {
			height: 100vh;
		}
	}
	
	@media (min-width: 992px) {
		#stacks_in_1429-wrapper.height-responsive {
			height: 100vh;
		}
	}
	
	@media (min-width: 1200px) {
		#stacks_in_1429-wrapper.height-responsive {
			height: 100vh;
		}
	}
	
	@media (min-width: 1400px) {
		#stacks_in_1429-wrapper.height-responsive {
			height: 100vh;
		}
	}
	

	





/* Base Margins */
#stacks_in_1429-wrapper {
	margin-bottom: var(--fdy-base-margin-xs);
}

@media (min-width: 576px) {
	#stacks_in_1429-wrapper {
		margin-bottom: var(--fdy-base-margin-sm);
	}
}

@media (min-width: 768px) {
	#stacks_in_1429-wrapper {
		margin-bottom: var(--fdy-base-margin-md);
	}
}

@media (min-width: 992px) {
	#stacks_in_1429-wrapper {
		margin-bottom: var(--fdy-base-margin-lg);
	}
}

@media (min-width: 1200px) {
	#stacks_in_1429-wrapper {
		margin-bottom: var(--fdy-base-margin-xl);
	}
}

@media (min-width: 1400px) {
	#stacks_in_1429-wrapper {
		margin-bottom: var(--fdy-base-margin-xxl);
	}
}

/* 1.0.8.18
- prevents toggle from having an inherited margin, causing the menu to disappear when trying to navigate the menu
- prevents menu from closing too quickly when the cursor leaves the sides of the menu
- You can now add images to the Logo textfield
- corner rounding setting now applies to the megamenu
- Hide stack settings now work with fixed position menus
- Dropdown items can have the dropdown disabled for a single parent link
- Dropdown chevron replaced with svg element instead of ionicons <i> element
- fixed bug that limited horizontal space for top menu items on desktop
- address bar hiding/showing on mobile does not trigger the submenus to close when rotating device after loading the page
- adding the class "has-mega-menu" to any stack will allow inline Mega Menus to overflow and not clip
- disabling dropdown now also removes dropdown arrow from mobile menu
- fixed: disabled child items were not clickable in the mobile menu
- you can add the class "mm-click" to disable hover dropdowns for click to open dropdowns
- you can add the class "mm-auto-width" to disable full width dropdowns (you must define max-widths on Mega Menu Column stacks)
- adds overflow hidden important tag to expanding submenus
- open submenus that extend past the edge of a mobile device will now allow the menu to be scrolled
- highlights current page links
- font files are now a site asset so  they dont upload more than once
*/
@font-face {
  font-family: 'Material Icons';
  font-style: normal;
  font-weight: 400;
  src: url(../../rw_common/plugins/stacks/megamenu-files/MaterialIcons-Regular.eot); /* For IE6-8 */
  src: local('Material Icons'),
    local('MaterialIcons-Regular'),
    url(../../rw_common/plugins/stacks/megamenu-files/MaterialIcons-Regular.woff2) format('woff2'),
    url(../../rw_common/plugins/stacks/megamenu-files/MaterialIcons-Regular.woff) format('woff'),
    url(../../rw_common/plugins/stacks/megamenu-files/MaterialIcons-Regular.ttf) format('truetype');
}
.material-icons {
  font-family: 'Material Icons';
  font-weight: normal;
  font-style: normal;
  font-size: 24px;  /* Preferred icon size */
  display: inline-block;
  line-height: 1;
  text-transform: none;
  letter-spacing: normal;
  word-wrap: normal;
  white-space: nowrap;
  direction: ltr;

  /* Support for all WebKit browsers. */
  -webkit-font-smoothing: antialiased;
  /* Support for Safari and Chrome. */
  text-rendering: optimizeLegibility;

  /* Support for Firefox. */
  -moz-osx-font-smoothing: grayscale;

  /* Support for IE. */
  -webkit-font-feature-settings: 'liga';
  font-feature-settings: 'liga';
}
@font-face{font-family:"Ionicons";src:url("../../rw_common/plugins/stacks/megamenu-files/ionicons.eot?v=2.0.1");src:url("../../rw_common/plugins/stacks/megamenu-files/ionicons.eot?v=2.0.1#iefix") format("embedded-opentype"),url("../../rw_common/plugins/stacks/megamenu-files/ionicons.ttf?v=2.0.1") format("truetype"),url("../../rw_common/plugins/stacks/megamenu-files/ionicons.woff?v=2.0.1") format("woff"),url("../../rw_common/plugins/stacks/megamenu-files/ionicons.svg?v=2.0.1#Ionicons") format("svg");font-weight:normal;font-style:normal}
/*  */
.has-mega-menu,.has-mega-menu-parent,
#stacks_out_1574_1144, .com_onelittledesigner_stacks_Mega_Menu_stack {
  overflow: visible !important;
}

#mega-menu-stacks_in_1574_1144 {
  /*  */
  /*  */
  background: rgba(216, 216, 216, 0.80);
  /*  */
  /*  */
  /*  */
  /*  */
  font-family: "Roboto Condensed";
  /*  */
  /*  */
  z-index: 2000;
  max-width: 2000px;
  border-radius: 0 0 0 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0 auto;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
          align-items: center;}
  #mega-menu-stacks_in_1574_1144 * {
    -webkit-box-sizing: border-box;
    box-sizing: border-box; }
  #mega-menu-stacks_in_1574_1144 .mega-menu-header {
    width: 100%;
    flex-basis: 0;
    white-space: nowrap;
    display: -webkit-box;
    display: -ms-flexbox;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center; }
    #mega-menu-stacks_in_1574_1144 .mega-menu-header .mega-menu-title {
      color: rgba(255, 255, 255, 1.00);
      font-size: 10px;
      padding: 0px 10px;
      -webkit-box-flex: 1;
          -ms-flex: 1 0 auto;
              flex: 1 0 auto; }
    #mega-menu-stacks_in_1574_1144 .mega-menu-header .mega-menu-title img {
      max-width: 50vw;
      height: auto;
      display: block;
      margin: 0;
    }
    #mega-menu-stacks_in_1574_1144 .mega-menu-header .mega-menu-toggle {
      color: rgba(0, 0, 0, 1.00);
      background: rgba(216, 216, 216, 0.80);
      font-size: 24px;
      line-height: 24px;
      width: 44px;
      padding: 8px 0;
      display: none;
      -webkit-box-flex: 0;
          -ms-flex: 0 1 auto;
              flex: 0 1 auto;
      cursor: pointer;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      -webkit-box-pack: center;
          -ms-flex-pack: center;
              justify-content: center; }
      #mega-menu-stacks_in_1574_1144 .mega-menu-header .mega-menu-toggle i.toggle-close {
        display: none; }
      #mega-menu-stacks_in_1574_1144 .mega-menu-header .mega-menu-toggle:hover {
        color: rgba(255, 255, 255, 1.00);
        background: rgba(216, 216, 216, 0.80); }
  #mega-menu-stacks_in_1574_1144 > ul.mega-menu-main {
    overflow: auto !important;
    max-height: calc(100vh - 100px);
    width: 100%;
    margin: 0;
    padding: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-flex: 0;
        -ms-flex: 0 1 auto;
            flex: 0 1 auto;
    list-style-type: none;
    justify-self: flex-end;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end; }
    #mega-menu-stacks_in_1574_1144 > ul.mega-menu-main > li.hide-icon > a i:not(.mega-menu-dropdown-arrow) {
      display: none; }
    #mega-menu-stacks_in_1574_1144 > ul.mega-menu-main > li.hide-text > a span {
      display: none; }
      #mega-menu-stacks_in_1574_1144 > ul.mega-menu-main > li {
        margin: 0;
      }
    #mega-menu-stacks_in_1574_1144 > ul.mega-menu-main > li > a {
      /*  */
      /*  */
      font-family: "Roboto Condensed";
      /*  */
      /*  */
      color: rgba(0, 0, 0, 1.00);
      background: rgba(216, 216, 216, 0.80);
      padding: 8px 10px;
      font-size: 18px;
      line-height: 29.124001px;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      text-decoration: none; }
      #mega-menu-stacks_in_1574_1144 > ul.mega-menu-main > li > a i {
        line-height: 1;
        font-size: 20px;
        margin-right: 5px; }
      #mega-menu-stacks_in_1574_1144 > ul.mega-menu-main > li > a i.material-icons {
        vertical-align: middle; }
      #mega-menu-stacks_in_1574_1144 > ul.mega-menu-main > li > a .mega-menu-dropdown-arrow {
        margin-left: 3px;
        stroke: rgba(0, 0, 0, 1.00);
        width: 23px; }
        #mega-menu-stacks_in_1574_1144 > ul.mega-menu-main > li.mm-current > a {
          color: rgba(0, 0, 0, 1.00);
        }
        #mega-menu-stacks_in_1574_1144 > ul.mega-menu-main > li.mm-current > a .mega-menu-dropdown-arrow {
          stroke: rgba(0, 0, 0, 1.00);
        }
        #mega-menu-stacks_in_1574_1144 > ul.mega-menu-main > li:hover > a .mega-menu-dropdown-arrow {
          color: rgba(255, 255, 255, 1.00); }
    #mega-menu-stacks_in_1574_1144 > ul.mega-menu-main > li.mm-current > a {
      stroke: rgba(0, 0, 0, 1.00);
      background: rgba(161, 161, 161, 1.00);
    }
    #mega-menu-stacks_in_1574_1144 > ul.mega-menu-main > li:hover > a {
      stroke: rgba(255, 255, 255, 1.00);
      background: rgba(216, 216, 216, 0.80); }

  #mega-menu-stacks_in_1574_1144 .mega-dropdown {
    /*  */
    /*  */
    background: rgba(216, 216, 216, 0.80);
    /*  */
    /*  */
    border-radius: 0 0 0 0;
    min-height: 20px;
    left: 0;
    top: 100%;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    opacity: 0;
    transition: opacity 150ms ease;
    pointer-events: none;
    position: absolute; }
    #mega-menu-stacks_in_1574_1144.mm-auto-width > ul.mega-menu-main > li {
      position: relative;
    }
    #mega-menu-stacks_in_1574_1144.mm-auto-width > ul.mega-menu-main > li.mm-is-full-width {
      position: static;
    }
    #mega-menu-stacks_in_1574_1144.mm-auto-width .mega-dropdown {
      max-width: 2000px;
      width: auto;
      left: 0;
      right: auto;
    }
    #mega-menu-stacks_in_1574_1144.mm-auto-width .mm-is-full-width .mega-dropdown {
      left: auto;
      right: 0;
    }
    @media (max-width: 2010px) {
      #mega-menu-stacks_in_1574_1144.mm-auto-width .mega-dropdown {
        max-width: calc(100vw - 10px);
      }
    }
    #mega-menu-stacks_in_1574_1144.mm-auto-width .mega-dropdown .mega-dropdown-column {
      width: 100vw;
    }
    #mega-menu-stacks_in_1574_1144 > ul.mega-menu-main > li.mm-hover > .mega-dropdown,
    #mega-menu-stacks_in_1574_1144:not(.mm-click) > ul.mega-menu-main > li:hover > .mega-dropdown {
    transition: opacity 0ms ease;
     pointer-events: all;
     opacity: 1;
    }
    #mega-menu-stacks_in_1574_1144 .mega-dropdown-column {
      padding: 1px 20px;
      border-right: 0px solid rgba(84, 84, 84, 0.44);
      -webkit-box-flex: 0;
          -ms-flex: 0 1 100%;
              flex: 0 1 100%; }
      #mega-menu-stacks_in_1574_1144 .mega-dropdown-column:last-child {
        border-right: none; }
    #mega-menu-stacks_in_1574_1144 .mega-dropdown-inner {
      height: 100%; }
    #mega-menu-stacks_in_1574_1144 .mega-dropdown ul.mega-list {
      margin: 0;
      padding: 0;
      width: 100%;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
      list-style-type: none; }
      #mega-menu-stacks_in_1574_1144 .mega-dropdown ul.mega-list li {
        /*  */
        font-family: inherit;
        /*  */
        width: 100%;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-flex: 0;
            -ms-flex: 0 1 auto;
                flex: 0 1 auto;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
        color: rgba(0, 0, 0, 1.00);
        font-size: 18px;
        line-height: 29.124001px; }
        #mega-menu-stacks_in_1574_1144 .mega-dropdown ul.mega-list li a {
          color: rgba(0, 0, 0, 1.00);
          font-size: 18px;
          line-height: 29.124001px; }
          #mega-menu-stacks_in_1574_1144 .mega-dropdown ul.mega-list li.mm-current > a {
            color: rgba(121, 121, 121, 1.00);
          }
          #mega-menu-stacks_in_1574_1144 .mega-dropdown ul.mega-list li a:hover {
            text-decoration: underline;
            color: rgba(121, 121, 121, 1.00); }
        #mega-menu-stacks_in_1574_1144 .mega-dropdown ul.mega-list li .text, #mega-menu-stacks_in_1574_1144 .mega-dropdown ul.mega-list li .mega-menu-stacks {
          padding: 0;
          font-size: 16px;
          line-height: 25.888000px; }
        #mega-menu-stacks_in_1574_1144 .mega-dropdown ul.mega-list li i {
          font-size: inherit;
          margin-right: 0px; }
        #mega-menu-stacks_in_1574_1144 .mega-dropdown ul.mega-list li a, #mega-menu-stacks_in_1574_1144 .mega-dropdown ul.mega-list li .text, #mega-menu-stacks_in_1574_1144 .mega-dropdown ul.mega-list li .mega-menu-stacks, #mega-menu-stacks_in_1574_1144 .mega-dropdown ul.mega-list li.title {
          margin: 0;
          width: 100%;
          -webkit-box-flex: 1;
              -ms-flex: 1 0 auto;
                  flex: 1 0 auto;
          display: inline-block;
          padding: 8px 10px;
          text-decoration: none; }
          #mega-menu-stacks_in_1574_1144 .mega-dropdown ul.mega-list li a i, #mega-menu-stacks_in_1574_1144 .mega-dropdown ul.mega-list li .text i, #mega-menu-stacks_in_1574_1144 .mega-dropdown ul.mega-list li .mega-menu-stacks i, #mega-menu-stacks_in_1574_1144 .mega-dropdown ul.mega-list li.title i {
            line-height: 1;
            font-size: inherit;
            margin-right: 0px; }
          #mega-menu-stacks_in_1574_1144 .mega-dropdown ul.mega-list li a i.material-icons, #mega-menu-stacks_in_1574_1144 .mega-dropdown ul.mega-list li .text i.material-icons, #mega-menu-stacks_in_1574_1144 .mega-dropdown ul.mega-list li .mega-menu-stacks i.material-icons, #mega-menu-stacks_in_1574_1144 .mega-dropdown ul.mega-list li.title i.material-icons {
            vertical-align: middle; }
        #mega-menu-stacks_in_1574_1144 .mega-dropdown ul.mega-list li.title {
          color: rgba(0, 0, 0, 1.00);
          font-size: 18px;
          line-height: 29.124001px;
          font-weight: bold;
          text-transform: capitalize;
          margin-bottom: 0px;
          position: relative; }
          #mega-menu-stacks_in_1574_1144 .mega-dropdown ul.mega-list li.title::before {
            left: 0;
            right: 0;
            bottom: -0.000000px;
            content: '';
            height: 0px;
            background: rgba(0, 0, 0, 0.10);
            -webkit-user-select: none;
               -moz-user-select: none;
                -ms-user-select: none;
                    user-select: none;
            position: absolute;
            pointer-events: none;
            display: block;
            -webkit-transition: all 0.3s ease;
            transition: all 0.3s ease; }
        #mega-menu-stacks_in_1574_1144 .mega-dropdown ul.mega-list li.hide-icon a i, #mega-menu-stacks_in_1574_1144 .mega-dropdown ul.mega-list li.hide-icon.title i {
          display: none; }
  #mega-menu-stacks_in_1574_1144.mega-menu-fixed {
    /*  */
    position: fixed;
    z-index: 2000;
    left: 0px;
    right: 0px;
    /*  */ }
  #mega-menu-stacks_in_1574_1144.mega-menu-inline {
    position: relative; }
    #mega-menu-stacks_in_1574_1144.mega-menu-inline:hover {
          z-index: 2000; }
  #mega-menu-stacks_in_1574_1144.mega-menu-top {
    top: 0px; }
  #mega-menu-stacks_in_1574_1144.mega-menu-bottom {
    bottom: 0px; }
    #mega-menu-stacks_in_1574_1144.mega-menu-bottom .mega-dropdown {
      top: auto;
      bottom: 100%; }
  #mega-menu-stacks_in_1574_1144.col-align-center .mega-dropdown ul.mega-list li {
    text-align: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center; }
  #mega-menu-stacks_in_1574_1144.col-align-right .mega-dropdown ul.mega-list li {
    text-align: right;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end; }

@media (max-width: 800px) {
  #mega-menu-stacks_in_1574_1144.mega-menu-top > ul.mega-menu-main > li > a:not(.mm-no-child)::after {
    content: '\f123'; }
  #mega-menu-stacks_in_1574_1144.mega-menu-top > ul.mega-menu-main > li.item-opened > a:not(.mm-no-child)::after {
    content: '\f126'; }
  #mega-menu-stacks_in_1574_1144.mega-menu-bottom {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse; }
    #mega-menu-stacks_in_1574_1144.mega-menu-bottom .mega-dropdown {
      bottom: 0; }
    #mega-menu-stacks_in_1574_1144.mega-menu-bottom > ul.mega-menu-main > li > a:not(.mm-no-child)::after {
      content: '\f126'; }
    #mega-menu-stacks_in_1574_1144.mega-menu-bottom > ul.mega-menu-main > li.item-opened > a:not(.mm-no-child)::after {
      content: '\f123'; }
  #mega-menu-stacks_in_1574_1144 {
    /*  */
    max-height: 100%;
    overflow-y: scroll;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    /*  */ }
    #mega-menu-stacks_in_1574_1144.mega-menu-open .mega-menu-header {
      -webkit-box-flex: 1;
          -ms-flex: 1 0 auto;
              flex: 1 0 auto;
      border-bottom: 0px solid rgba(84, 84, 84, 0.44); }
      #mega-menu-stacks_in_1574_1144.mega-menu-open .mega-menu-header .mega-menu-toggle i.toggle-open {
        display: none; }
      #mega-menu-stacks_in_1574_1144.mega-menu-open .mega-menu-header .mega-menu-toggle i.toggle-close {
        display: block; }
    #mega-menu-stacks_in_1574_1144.mega-menu-open > ul.mega-menu-main {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex; }
      #mega-menu-stacks_in_1574_1144.mega-menu-open > ul.mega-menu-main > li > a {
        cursor: pointer; }
    #mega-menu-stacks_in_1574_1144 .mega-menu-header {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-flex: 0;
          -ms-flex: 0 1 auto;
              flex: 0 1 auto;
      width: 100%; }
      #mega-menu-stacks_in_1574_1144 .mega-menu-header .mega-menu-toggle {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex; }
    #mega-menu-stacks_in_1574_1144 > ul.mega-menu-main {
      display: none;
      -webkit-box-flex: 1;
          -ms-flex: 1 0 auto;
              flex: 1 0 auto;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap; }
      #mega-menu-stacks_in_1574_1144 > ul.mega-menu-main > li {
        width: 100%; }
        #mega-menu-stacks_in_1574_1144 > ul.mega-menu-main > li > a {
          width: 100%;
          display: -webkit-box;
          display: -ms-flexbox;
          display: flex; }
          #mega-menu-stacks_in_1574_1144 > ul.mega-menu-main > li > a i {
            margin-right: 0px; }
          #mega-menu-stacks_in_1574_1144 > ul.mega-menu-main > li > a .mega-menu-dropdown-arrow {
            display: none; }
          #mega-menu-stacks_in_1574_1144 > ul.mega-menu-main > li > a:not(.mm-no-child)::after {
            margin-left: auto;
            display: inline-block;
            font-family: "Ionicons"; }
      #mega-menu-stacks_in_1574_1144 > ul.mega-menu-main > li.item-opened > a:not(.mm-no-child)::after {
        display: inline-block;
        font-family: "Ionicons"; }
    #mega-menu-stacks_in_1574_1144 .mega-dropdown {
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
      top: 0;
      left: 0;
      height: 0;
      min-height: 0;
      margin-top: 0;
      padding-top: 0;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      overflow: hidden !important;
      position: relative;
      opacity: 1;
      transition: opacity 0ms ease;
      pointer-events: all;
     }
      #mega-menu-stacks_in_1574_1144 .mega-dropdown-column {
        width: 100%;
        -webkit-box-flex: 1;
            -ms-flex: 1 0 auto;
                flex: 1 0 auto;
        max-width: 100% !important;
        border-bottom: 0px solid rgba(84, 84, 84, 0.44); }
        #mega-menu-stacks_in_1574_1144 .mega-dropdown-column:last-child {
          border-right: none;
          border-bottom: none; }
      #mega-menu-stacks_in_1574_1144 .mega-dropdown-inner {
        height: 100%;
        border-right: none; }
        #mega-menu-stacks_in_1574_1144 .mega-dropdown-inner:hover ul.mega-list li.title::before {
          width: auto; }
      #mega-menu-stacks_in_1574_1144 .mega-dropdown ul.mega-list {
        width: 100%; }
        #mega-menu-stacks_in_1574_1144 .mega-dropdown ul.mega-list li {
          width: 100%;
          -webkit-box-flex: 0;
              -ms-flex: 0 1 auto;
                  flex: 0 1 auto; }
          #mega-menu-stacks_in_1574_1144 .mega-dropdown ul.mega-list li a {
            width: 100%;
            -webkit-box-flex: 0;
                -ms-flex: 0 1 auto;
                    flex: 0 1 auto; }
          #mega-menu-stacks_in_1574_1144 .mega-dropdown ul.mega-list li.title::before {
            width: auto; }
          #mega-menu-stacks_in_1574_1144 .mega-dropdown ul.mega-list li.title:hover::before {
            width: auto; } }
            @media only screen and (min-width: 771px) {
              #mega-menu-stacks_in_1574_1144.stacks_l_hidden {
                display: none;
              }
            }
            @media only screen and (max-width: 770px) and (min-width: 441px) {
              #mega-menu-stacks_in_1574_1144.stacks_m_hidden {
                display: none;
              }
            }
            @media only screen and (max-width: 440px) {
              #mega-menu-stacks_in_1574_1144.stacks_s_hidden {
                display: none;
              }
            }

#stacks_in_1574_1144 {
	margin: 0px 0px 50px 0px;
}
#mega-menu-dropdown-stacks_in_1574_1145.mega-dropdown .mega-dropdown-column {
  -webkit-box-flex: 0 1 100%;
      -ms-flex: 0 1 100%;
          flex: 0 1 100%; }
#mega-menu-dropdown-col-stacks_in_1574_1162 {
  /*  */
  max-width: 1200px;
  /*  */ }
  #mega-menu-dropdown-col-stacks_in_1574_1162.col-align-center ul.mega-list li {
    text-align: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center; }
  #mega-menu-dropdown-col-stacks_in_1574_1162.col-align-right ul.mega-list li {
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    text-align: right; }
  #mega-menu-dropdown-col-stacks_in_1574_1162.custom-col-colors {
    /*  */
    /*  */
    background: rgba(36, 36, 36, 1.00);
    /*  */
    /*  */
    /*  */ }
    #mega-menu-dropdown-col-stacks_in_1574_1162.custom-col-colors ul.mega-list li {
      color: rgba(255, 255, 255, 1.00); }
      #mega-menu-dropdown-col-stacks_in_1574_1162.custom-col-colors ul.mega-list li a {
        color: rgba(255, 255, 255, 0.50); }
        #mega-menu-dropdown-col-stacks_in_1574_1162.custom-col-colors ul.mega-list li a:hover {
          color: rgba(67, 152, 251, 1.00); }
      #mega-menu-dropdown-col-stacks_in_1574_1162.custom-col-colors ul.mega-list li.title {
        color: rgba(255, 255, 255, 1.00); }
        #mega-menu-dropdown-col-stacks_in_1574_1162.custom-col-colors ul.mega-list li.title::before {
          background: rgba(67, 152, 251, 1.00); }





#stacks_in_1574_1446-wrapper {
	
	border-color: var(--bs-dark) !important;
	
	
	border-width: 1px !important;
	border-bottom-width: 0px !important;
	border-style: solid !important;	
}

#stacks_in_1574_1446-wrapper .border-badge {
	
	background-color: var(--bs-dark) !important;
	
	
	color: rgba(255, 255, 255, 1.00);
}

#stacks_in_1574_1446-wrapper .border-badge {
	
}

#stacks_in_1574_1446-wrapper.custom-width {
	width: 80%;
}




.stacks_in_1574_1165-alchemy {
	
}

@media (prefers-reduced-motion: no-preference) {
	
	.stacks_in_1574_1165-alchemy {
		opacity: 1.000000;
		transform: translateX(0px) translateY(2px) scale(1.000000) rotate(0deg);
		transition-timing-function: cubic-bezier(0.25, 1, 0.5, 1);
		transition-duration: 1.00s;
		transition-delay: 0.00s;
		
		filter: blur(0px);
	}
	
	
	.stacks_in_1574_1165-alchemy:hover {
		

		
			opacity: 1.000000;
			transform: translateX(0px) translateY(2px) scale(1.020000) rotate(0deg);
			transition-timing-function: cubic-bezier(0.25, 1, 0.5, 1);
			transition-duration: 1.00s;
			transition-delay: 0.10s;
		

		filter: blur(0px);
	}
}

@media (prefers-reduced-motion) {
	.stacks_in_1574_1165-alchemy {
	}
		
	.stacks_in_1574_1165-alchemy-transition {
	  opacity: 1;
	}
}





/* Base Margins */
.stacks_in_1574_1167.fdy-img {
	margin-bottom: var(--fdy-base-margin-xs);
}

@media (min-width: 576px) {
	.stacks_in_1574_1167.fdy-img {
		margin-bottom: var(--fdy-base-margin-sm);
	}
}

@media (min-width: 768px) {
	.stacks_in_1574_1167.fdy-img {
		margin-bottom: var(--fdy-base-margin-md);
	}
}

@media (min-width: 992px) {
	.stacks_in_1574_1167.fdy-img {
		margin-bottom: var(--fdy-base-margin-lg);
	}
}

@media (min-width: 1200px) {
	.stacks_in_1574_1167.fdy-img {
		margin-bottom: var(--fdy-base-margin-xl);
	}
}

@media (min-width: 1400px) {
	.stacks_in_1574_1167.fdy-img {
		margin-bottom: var(--fdy-base-margin-xxl);
	}
}


.stacks_in_1574_1167.fdy-img {
	overflow: hidden;
	
	
	

	
	border-color: var(--bs-dark) !important;
	
	
	
	
}


.stacks_in_1574_1167.fdy.img-fluid-fdy {
	max-width: 100%;
	height: auto;
}

.stacks_in_1574_1167.fdy-img source.img-fluid-fdy,
.stacks_in_1574_1167.fdy-img img.img-fluid-fdy {
	width: 100%;
	height: auto;
}

.stacks_in_1574_1167.fdy-img.img-upscale {
	width: 100%;
	height: auto;
}

.stacks_in_1574_1167.fdy-img source.img-upscale,
.stacks_in_1574_1167.fdy-img img.img-upscale {
	width: 100%;
	height: auto;
}
	
.stacks_in_1574_1167.fdy-img.img-custom-pct {
	width: 100%;
	height: auto;
}

.stacks_in_1574_1167.fdy-img source.img-custom-pct,
.stacks_in_1574_1167.fdy-img img.img-custom-pct {
	width: 100%;
	height: auto;
}

.stacks_in_1574_1167.fdy-img.img-max-width,
.stacks_in_1574_1167.fdy-img source.img-max-width,
.stacks_in_1574_1167.fdy-img img.img-max-width {
	max-width: 100%;
	width: 22px;
	height: auto;
}

#mega-menu-dropdown-col-stacks_in_1574_1147 {
  /*  */
  max-width: 1200px;
  /*  */ }
  #mega-menu-dropdown-col-stacks_in_1574_1147.col-align-center ul.mega-list li {
    text-align: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center; }
  #mega-menu-dropdown-col-stacks_in_1574_1147.col-align-right ul.mega-list li {
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    text-align: right; }
  #mega-menu-dropdown-col-stacks_in_1574_1147.custom-col-colors {
    /*  */
    /*  */
    background: rgba(36, 36, 36, 1.00);
    /*  */
    /*  */
    /*  */ }
    #mega-menu-dropdown-col-stacks_in_1574_1147.custom-col-colors ul.mega-list li {
      color: rgba(255, 255, 255, 1.00); }
      #mega-menu-dropdown-col-stacks_in_1574_1147.custom-col-colors ul.mega-list li a {
        color: rgba(255, 255, 255, 0.50); }
        #mega-menu-dropdown-col-stacks_in_1574_1147.custom-col-colors ul.mega-list li a:hover {
          color: rgba(67, 152, 251, 1.00); }
      #mega-menu-dropdown-col-stacks_in_1574_1147.custom-col-colors ul.mega-list li.title {
        color: rgba(255, 255, 255, 1.00); }
        #mega-menu-dropdown-col-stacks_in_1574_1147.custom-col-colors ul.mega-list li.title::before {
          background: rgba(67, 152, 251, 1.00); }





#stacks_in_1574_1485-wrapper {
	
	border-color: var(--bs-dark) !important;
	
	
	border-width: 1px !important;
	border-bottom-width: 0px !important;
	border-style: solid !important;	
}

#stacks_in_1574_1485-wrapper .border-badge {
	
	background-color: var(--bs-dark) !important;
	
	
	color: rgba(255, 255, 255, 1.00);
}

#stacks_in_1574_1485-wrapper .border-badge {
	
}

#stacks_in_1574_1485-wrapper.custom-width {
	width: 80%;
}




.stacks_in_1574_1150-alchemy {
	
}

@media (prefers-reduced-motion: no-preference) {
	
	.stacks_in_1574_1150-alchemy {
		opacity: 1.000000;
		transform: translateX(0px) translateY(2px) scale(1.000000) rotate(0deg);
		transition-timing-function: cubic-bezier(0.25, 1, 0.5, 1);
		transition-duration: 1.00s;
		transition-delay: 0.00s;
		
		filter: blur(0px);
	}
	
	
	.stacks_in_1574_1150-alchemy:hover {
		

		
			opacity: 1.000000;
			transform: translateX(0px) translateY(2px) scale(1.020000) rotate(0deg);
			transition-timing-function: cubic-bezier(0.25, 1, 0.5, 1);
			transition-duration: 1.00s;
			transition-delay: 0.10s;
		

		filter: blur(0px);
	}
}

@media (prefers-reduced-motion) {
	.stacks_in_1574_1150-alchemy {
	}
		
	.stacks_in_1574_1150-alchemy-transition {
	  opacity: 1;
	}
}





/* Base Margins */
.stacks_in_1574_1152.fdy-img {
	margin-bottom: var(--fdy-base-margin-xs);
}

@media (min-width: 576px) {
	.stacks_in_1574_1152.fdy-img {
		margin-bottom: var(--fdy-base-margin-sm);
	}
}

@media (min-width: 768px) {
	.stacks_in_1574_1152.fdy-img {
		margin-bottom: var(--fdy-base-margin-md);
	}
}

@media (min-width: 992px) {
	.stacks_in_1574_1152.fdy-img {
		margin-bottom: var(--fdy-base-margin-lg);
	}
}

@media (min-width: 1200px) {
	.stacks_in_1574_1152.fdy-img {
		margin-bottom: var(--fdy-base-margin-xl);
	}
}

@media (min-width: 1400px) {
	.stacks_in_1574_1152.fdy-img {
		margin-bottom: var(--fdy-base-margin-xxl);
	}
}


.stacks_in_1574_1152.fdy-img {
	overflow: hidden;
	
	
	

	
	border-color: var(--bs-dark) !important;
	
	
	
	
}


.stacks_in_1574_1152.fdy.img-fluid-fdy {
	max-width: 100%;
	height: auto;
}

.stacks_in_1574_1152.fdy-img source.img-fluid-fdy,
.stacks_in_1574_1152.fdy-img img.img-fluid-fdy {
	width: 100%;
	height: auto;
}

.stacks_in_1574_1152.fdy-img.img-upscale {
	width: 100%;
	height: auto;
}

.stacks_in_1574_1152.fdy-img source.img-upscale,
.stacks_in_1574_1152.fdy-img img.img-upscale {
	width: 100%;
	height: auto;
}
	
.stacks_in_1574_1152.fdy-img.img-custom-pct {
	width: 100%;
	height: auto;
}

.stacks_in_1574_1152.fdy-img source.img-custom-pct,
.stacks_in_1574_1152.fdy-img img.img-custom-pct {
	width: 100%;
	height: auto;
}

.stacks_in_1574_1152.fdy-img.img-max-width,
.stacks_in_1574_1152.fdy-img source.img-max-width,
.stacks_in_1574_1152.fdy-img img.img-max-width {
	max-width: 100%;
	width: 22px;
	height: auto;
}

#mega-menu-dropdown-col-stacks_in_1574_1177 {
  /*  */
  max-width: 1200px;
  /*  */ }
  #mega-menu-dropdown-col-stacks_in_1574_1177.col-align-center ul.mega-list li {
    text-align: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center; }
  #mega-menu-dropdown-col-stacks_in_1574_1177.col-align-right ul.mega-list li {
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    text-align: right; }
  #mega-menu-dropdown-col-stacks_in_1574_1177.custom-col-colors {
    /*  */
    /*  */
    background: rgba(36, 36, 36, 1.00);
    /*  */
    /*  */
    /*  */ }
    #mega-menu-dropdown-col-stacks_in_1574_1177.custom-col-colors ul.mega-list li {
      color: rgba(255, 255, 255, 1.00); }
      #mega-menu-dropdown-col-stacks_in_1574_1177.custom-col-colors ul.mega-list li a {
        color: rgba(255, 255, 255, 0.50); }
        #mega-menu-dropdown-col-stacks_in_1574_1177.custom-col-colors ul.mega-list li a:hover {
          color: rgba(67, 152, 251, 1.00); }
      #mega-menu-dropdown-col-stacks_in_1574_1177.custom-col-colors ul.mega-list li.title {
        color: rgba(255, 255, 255, 1.00); }
        #mega-menu-dropdown-col-stacks_in_1574_1177.custom-col-colors ul.mega-list li.title::before {
          background: rgba(67, 152, 251, 1.00); }





#stacks_in_1574_1488-wrapper {
	
	border-color: var(--bs-dark) !important;
	
	
	border-width: 1px !important;
	border-bottom-width: 0px !important;
	border-style: solid !important;	
}

#stacks_in_1574_1488-wrapper .border-badge {
	
	background-color: var(--bs-dark) !important;
	
	
	color: rgba(255, 255, 255, 1.00);
}

#stacks_in_1574_1488-wrapper .border-badge {
	
}

#stacks_in_1574_1488-wrapper.custom-width {
	width: 80%;
}




.stacks_in_1574_1180-alchemy {
	
}

@media (prefers-reduced-motion: no-preference) {
	
	.stacks_in_1574_1180-alchemy {
		opacity: 1.000000;
		transform: translateX(0px) translateY(2px) scale(1.000000) rotate(0deg);
		transition-timing-function: cubic-bezier(0.25, 1, 0.5, 1);
		transition-duration: 1.00s;
		transition-delay: 0.00s;
		
		filter: blur(0px);
	}
	
	
	.stacks_in_1574_1180-alchemy:hover {
		

		
			opacity: 1.000000;
			transform: translateX(0px) translateY(2px) scale(1.020000) rotate(0deg);
			transition-timing-function: cubic-bezier(0.25, 1, 0.5, 1);
			transition-duration: 1.00s;
			transition-delay: 0.10s;
		

		filter: blur(0px);
	}
}

@media (prefers-reduced-motion) {
	.stacks_in_1574_1180-alchemy {
	}
		
	.stacks_in_1574_1180-alchemy-transition {
	  opacity: 1;
	}
}





/* Base Margins */
.stacks_in_1574_1182.fdy-img {
	margin-bottom: var(--fdy-base-margin-xs);
}

@media (min-width: 576px) {
	.stacks_in_1574_1182.fdy-img {
		margin-bottom: var(--fdy-base-margin-sm);
	}
}

@media (min-width: 768px) {
	.stacks_in_1574_1182.fdy-img {
		margin-bottom: var(--fdy-base-margin-md);
	}
}

@media (min-width: 992px) {
	.stacks_in_1574_1182.fdy-img {
		margin-bottom: var(--fdy-base-margin-lg);
	}
}

@media (min-width: 1200px) {
	.stacks_in_1574_1182.fdy-img {
		margin-bottom: var(--fdy-base-margin-xl);
	}
}

@media (min-width: 1400px) {
	.stacks_in_1574_1182.fdy-img {
		margin-bottom: var(--fdy-base-margin-xxl);
	}
}


.stacks_in_1574_1182.fdy-img {
	overflow: hidden;
	
	
	

	
	border-color: var(--bs-dark) !important;
	
	
	
	
}


.stacks_in_1574_1182.fdy.img-fluid-fdy {
	max-width: 100%;
	height: auto;
}

.stacks_in_1574_1182.fdy-img source.img-fluid-fdy,
.stacks_in_1574_1182.fdy-img img.img-fluid-fdy {
	width: 100%;
	height: auto;
}

.stacks_in_1574_1182.fdy-img.img-upscale {
	width: 100%;
	height: auto;
}

.stacks_in_1574_1182.fdy-img source.img-upscale,
.stacks_in_1574_1182.fdy-img img.img-upscale {
	width: 100%;
	height: auto;
}
	
.stacks_in_1574_1182.fdy-img.img-custom-pct {
	width: 100%;
	height: auto;
}

.stacks_in_1574_1182.fdy-img source.img-custom-pct,
.stacks_in_1574_1182.fdy-img img.img-custom-pct {
	width: 100%;
	height: auto;
}

.stacks_in_1574_1182.fdy-img.img-max-width,
.stacks_in_1574_1182.fdy-img source.img-max-width,
.stacks_in_1574_1182.fdy-img img.img-max-width {
	max-width: 100%;
	width: 22px;
	height: auto;
}

#mega-menu-dropdown-col-stacks_in_1574_1192 {
  /*  */
  max-width: 1200px;
  /*  */ }
  #mega-menu-dropdown-col-stacks_in_1574_1192.col-align-center ul.mega-list li {
    text-align: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center; }
  #mega-menu-dropdown-col-stacks_in_1574_1192.col-align-right ul.mega-list li {
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    text-align: right; }
  #mega-menu-dropdown-col-stacks_in_1574_1192.custom-col-colors {
    /*  */
    /*  */
    background: rgba(36, 36, 36, 1.00);
    /*  */
    /*  */
    /*  */ }
    #mega-menu-dropdown-col-stacks_in_1574_1192.custom-col-colors ul.mega-list li {
      color: rgba(255, 255, 255, 1.00); }
      #mega-menu-dropdown-col-stacks_in_1574_1192.custom-col-colors ul.mega-list li a {
        color: rgba(255, 255, 255, 0.50); }
        #mega-menu-dropdown-col-stacks_in_1574_1192.custom-col-colors ul.mega-list li a:hover {
          color: rgba(67, 152, 251, 1.00); }
      #mega-menu-dropdown-col-stacks_in_1574_1192.custom-col-colors ul.mega-list li.title {
        color: rgba(255, 255, 255, 1.00); }
        #mega-menu-dropdown-col-stacks_in_1574_1192.custom-col-colors ul.mega-list li.title::before {
          background: rgba(67, 152, 251, 1.00); }





#stacks_in_1574_1491-wrapper {
	
	border-color: var(--bs-dark) !important;
	
	
	border-width: 1px !important;
	border-bottom-width: 0px !important;
	border-style: solid !important;	
}

#stacks_in_1574_1491-wrapper .border-badge {
	
	background-color: var(--bs-dark) !important;
	
	
	color: rgba(255, 255, 255, 1.00);
}

#stacks_in_1574_1491-wrapper .border-badge {
	
}

#stacks_in_1574_1491-wrapper.custom-width {
	width: 80%;
}




.stacks_in_1574_1195-alchemy {
	
}

@media (prefers-reduced-motion: no-preference) {
	
	.stacks_in_1574_1195-alchemy {
		opacity: 1.000000;
		transform: translateX(0px) translateY(2px) scale(1.000000) rotate(0deg);
		transition-timing-function: cubic-bezier(0.25, 1, 0.5, 1);
		transition-duration: 1.00s;
		transition-delay: 0.00s;
		
		filter: blur(0px);
	}
	
	
	.stacks_in_1574_1195-alchemy:hover {
		

		
			opacity: 1.000000;
			transform: translateX(0px) translateY(2px) scale(1.020000) rotate(0deg);
			transition-timing-function: cubic-bezier(0.25, 1, 0.5, 1);
			transition-duration: 1.00s;
			transition-delay: 0.10s;
		

		filter: blur(0px);
	}
}

@media (prefers-reduced-motion) {
	.stacks_in_1574_1195-alchemy {
	}
		
	.stacks_in_1574_1195-alchemy-transition {
	  opacity: 1;
	}
}





/* Base Margins */
.stacks_in_1574_1197.fdy-img {
	margin-bottom: var(--fdy-base-margin-xs);
}

@media (min-width: 576px) {
	.stacks_in_1574_1197.fdy-img {
		margin-bottom: var(--fdy-base-margin-sm);
	}
}

@media (min-width: 768px) {
	.stacks_in_1574_1197.fdy-img {
		margin-bottom: var(--fdy-base-margin-md);
	}
}

@media (min-width: 992px) {
	.stacks_in_1574_1197.fdy-img {
		margin-bottom: var(--fdy-base-margin-lg);
	}
}

@media (min-width: 1200px) {
	.stacks_in_1574_1197.fdy-img {
		margin-bottom: var(--fdy-base-margin-xl);
	}
}

@media (min-width: 1400px) {
	.stacks_in_1574_1197.fdy-img {
		margin-bottom: var(--fdy-base-margin-xxl);
	}
}


.stacks_in_1574_1197.fdy-img {
	overflow: hidden;
	
	
	

	
	border-color: var(--bs-dark) !important;
	
	
	
	
}


.stacks_in_1574_1197.fdy.img-fluid-fdy {
	max-width: 100%;
	height: auto;
}

.stacks_in_1574_1197.fdy-img source.img-fluid-fdy,
.stacks_in_1574_1197.fdy-img img.img-fluid-fdy {
	width: 100%;
	height: auto;
}

.stacks_in_1574_1197.fdy-img.img-upscale {
	width: 100%;
	height: auto;
}

.stacks_in_1574_1197.fdy-img source.img-upscale,
.stacks_in_1574_1197.fdy-img img.img-upscale {
	width: 100%;
	height: auto;
}
	
.stacks_in_1574_1197.fdy-img.img-custom-pct {
	width: 100%;
	height: auto;
}

.stacks_in_1574_1197.fdy-img source.img-custom-pct,
.stacks_in_1574_1197.fdy-img img.img-custom-pct {
	width: 100%;
	height: auto;
}

.stacks_in_1574_1197.fdy-img.img-max-width,
.stacks_in_1574_1197.fdy-img source.img-max-width,
.stacks_in_1574_1197.fdy-img img.img-max-width {
	max-width: 100%;
	width: 22px;
	height: auto;
}

#mega-menu-dropdown-stacks_in_1574_1206.mega-dropdown .mega-dropdown-column {
  -webkit-box-flex: 0 1 100%;
      -ms-flex: 0 1 100%;
          flex: 0 1 100%; }
#mega-menu-dropdown-col-stacks_in_1574_1208 {
  /*  */
  max-width: 1200px;
  /*  */ }
  #mega-menu-dropdown-col-stacks_in_1574_1208.col-align-center ul.mega-list li {
    text-align: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center; }
  #mega-menu-dropdown-col-stacks_in_1574_1208.col-align-right ul.mega-list li {
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    text-align: right; }
  #mega-menu-dropdown-col-stacks_in_1574_1208.custom-col-colors {
    /*  */
    /*  */
    background: rgba(36, 36, 36, 1.00);
    /*  */
    /*  */
    /*  */ }
    #mega-menu-dropdown-col-stacks_in_1574_1208.custom-col-colors ul.mega-list li {
      color: rgba(255, 255, 255, 1.00); }
      #mega-menu-dropdown-col-stacks_in_1574_1208.custom-col-colors ul.mega-list li a {
        color: rgba(255, 255, 255, 0.50); }
        #mega-menu-dropdown-col-stacks_in_1574_1208.custom-col-colors ul.mega-list li a:hover {
          color: rgba(67, 152, 251, 1.00); }
      #mega-menu-dropdown-col-stacks_in_1574_1208.custom-col-colors ul.mega-list li.title {
        color: rgba(255, 255, 255, 1.00); }
        #mega-menu-dropdown-col-stacks_in_1574_1208.custom-col-colors ul.mega-list li.title::before {
          background: rgba(67, 152, 251, 1.00); }
#mega-menu-dropdown-col-stacks_in_1574_1229 {
  /*  */
  max-width: 1200px;
  /*  */ }
  #mega-menu-dropdown-col-stacks_in_1574_1229.col-align-center ul.mega-list li {
    text-align: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center; }
  #mega-menu-dropdown-col-stacks_in_1574_1229.col-align-right ul.mega-list li {
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    text-align: right; }
  #mega-menu-dropdown-col-stacks_in_1574_1229.custom-col-colors {
    /*  */
    /*  */
    background: rgba(36, 36, 36, 1.00);
    /*  */
    /*  */
    /*  */ }
    #mega-menu-dropdown-col-stacks_in_1574_1229.custom-col-colors ul.mega-list li {
      color: rgba(255, 255, 255, 1.00); }
      #mega-menu-dropdown-col-stacks_in_1574_1229.custom-col-colors ul.mega-list li a {
        color: rgba(255, 255, 255, 0.50); }
        #mega-menu-dropdown-col-stacks_in_1574_1229.custom-col-colors ul.mega-list li a:hover {
          color: rgba(67, 152, 251, 1.00); }
      #mega-menu-dropdown-col-stacks_in_1574_1229.custom-col-colors ul.mega-list li.title {
        color: rgba(255, 255, 255, 1.00); }
        #mega-menu-dropdown-col-stacks_in_1574_1229.custom-col-colors ul.mega-list li.title::before {
          background: rgba(67, 152, 251, 1.00); }
#mega-menu-dropdown-col-stacks_in_1574_1250 {
  /*  */
  max-width: 1200px;
  /*  */ }
  #mega-menu-dropdown-col-stacks_in_1574_1250.col-align-center ul.mega-list li {
    text-align: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center; }
  #mega-menu-dropdown-col-stacks_in_1574_1250.col-align-right ul.mega-list li {
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    text-align: right; }
  #mega-menu-dropdown-col-stacks_in_1574_1250.custom-col-colors {
    /*  */
    /*  */
    background: rgba(36, 36, 36, 1.00);
    /*  */
    /*  */
    /*  */ }
    #mega-menu-dropdown-col-stacks_in_1574_1250.custom-col-colors ul.mega-list li {
      color: rgba(255, 255, 255, 1.00); }
      #mega-menu-dropdown-col-stacks_in_1574_1250.custom-col-colors ul.mega-list li a {
        color: rgba(255, 255, 255, 0.50); }
        #mega-menu-dropdown-col-stacks_in_1574_1250.custom-col-colors ul.mega-list li a:hover {
          color: rgba(67, 152, 251, 1.00); }
      #mega-menu-dropdown-col-stacks_in_1574_1250.custom-col-colors ul.mega-list li.title {
        color: rgba(255, 255, 255, 1.00); }
        #mega-menu-dropdown-col-stacks_in_1574_1250.custom-col-colors ul.mega-list li.title::before {
          background: rgba(67, 152, 251, 1.00); }
#mega-menu-dropdown-col-stacks_in_1574_1269 {
  /*  */
  max-width: 1200px;
  /*  */ }
  #mega-menu-dropdown-col-stacks_in_1574_1269.col-align-center ul.mega-list li {
    text-align: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center; }
  #mega-menu-dropdown-col-stacks_in_1574_1269.col-align-right ul.mega-list li {
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    text-align: right; }
  #mega-menu-dropdown-col-stacks_in_1574_1269.custom-col-colors {
    /*  */
    /*  */
    background: rgba(36, 36, 36, 1.00);
    /*  */
    /*  */
    /*  */ }
    #mega-menu-dropdown-col-stacks_in_1574_1269.custom-col-colors ul.mega-list li {
      color: rgba(255, 255, 255, 1.00); }
      #mega-menu-dropdown-col-stacks_in_1574_1269.custom-col-colors ul.mega-list li a {
        color: rgba(255, 255, 255, 0.50); }
        #mega-menu-dropdown-col-stacks_in_1574_1269.custom-col-colors ul.mega-list li a:hover {
          color: rgba(67, 152, 251, 1.00); }
      #mega-menu-dropdown-col-stacks_in_1574_1269.custom-col-colors ul.mega-list li.title {
        color: rgba(255, 255, 255, 1.00); }
        #mega-menu-dropdown-col-stacks_in_1574_1269.custom-col-colors ul.mega-list li.title::before {
          background: rgba(67, 152, 251, 1.00); }
#mega-menu-dropdown-col-stacks_in_1574_1460 {
  /*  */
  max-width: 1200px;
  /*  */ }
  #mega-menu-dropdown-col-stacks_in_1574_1460.col-align-center ul.mega-list li {
    text-align: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center; }
  #mega-menu-dropdown-col-stacks_in_1574_1460.col-align-right ul.mega-list li {
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    text-align: right; }
  #mega-menu-dropdown-col-stacks_in_1574_1460.custom-col-colors {
    /*  */
    /*  */
    background: rgba(36, 36, 36, 1.00);
    /*  */
    /*  */
    /*  */ }
    #mega-menu-dropdown-col-stacks_in_1574_1460.custom-col-colors ul.mega-list li {
      color: rgba(255, 255, 255, 1.00); }
      #mega-menu-dropdown-col-stacks_in_1574_1460.custom-col-colors ul.mega-list li a {
        color: rgba(255, 255, 255, 0.50); }
        #mega-menu-dropdown-col-stacks_in_1574_1460.custom-col-colors ul.mega-list li a:hover {
          color: rgba(67, 152, 251, 1.00); }
      #mega-menu-dropdown-col-stacks_in_1574_1460.custom-col-colors ul.mega-list li.title {
        color: rgba(255, 255, 255, 1.00); }
        #mega-menu-dropdown-col-stacks_in_1574_1460.custom-col-colors ul.mega-list li.title::before {
          background: rgba(67, 152, 251, 1.00); }
#mega-menu-dropdown-stacks_in_1574_1287.mega-dropdown .mega-dropdown-column {
  -webkit-box-flex: 0 1 100%;
      -ms-flex: 0 1 100%;
          flex: 0 1 100%; }
#mega-menu-dropdown-col-stacks_in_1574_1289 {
  /*  */
  max-width: 1400px;
  /*  */ }
  #mega-menu-dropdown-col-stacks_in_1574_1289.col-align-center ul.mega-list li {
    text-align: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center; }
  #mega-menu-dropdown-col-stacks_in_1574_1289.col-align-right ul.mega-list li {
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    text-align: right; }
  #mega-menu-dropdown-col-stacks_in_1574_1289.custom-col-colors {
    /*  */
    /*  */
    background: rgba(36, 36, 36, 1.00);
    /*  */
    /*  */
    /*  */ }
    #mega-menu-dropdown-col-stacks_in_1574_1289.custom-col-colors ul.mega-list li {
      color: rgba(255, 255, 255, 1.00); }
      #mega-menu-dropdown-col-stacks_in_1574_1289.custom-col-colors ul.mega-list li a {
        color: rgba(255, 255, 255, 0.50); }
        #mega-menu-dropdown-col-stacks_in_1574_1289.custom-col-colors ul.mega-list li a:hover {
          color: rgba(67, 152, 251, 1.00); }
      #mega-menu-dropdown-col-stacks_in_1574_1289.custom-col-colors ul.mega-list li.title {
        color: rgba(255, 255, 255, 1.00); }
        #mega-menu-dropdown-col-stacks_in_1574_1289.custom-col-colors ul.mega-list li.title::before {
          background: rgba(67, 152, 251, 1.00); }






@media (max-width: 575px) {
	
	#stacks_in_1574_1291-wrapper .col {
		
  		flex: 0 0 auto;
  		width: 100%;
	  
	}
	
}




#stacks_in_1574_1295-svg svg {
	
	filter: drop-shadow(5px 5px 30px rgba(255, 255, 255, 0.82));
	
	display: inline-block;
	
	
	
	
	
}

#stacks_in_1574_1295-svg a {
	
	
	

	
	
	outline: none;
}



#stacks_in_1574_1295-svg svg {
	width: 100%;	
	max-width: 100px;
	height: auto;
}

@media (min-width: 576px) {
	#stacks_in_1574_1295-svg svg {
		width: 100%;	
		max-width: 100px;
		height: auto;
	}
}

@media (min-width: 768px) {
	#stacks_in_1574_1295-svg svg {
		width: 100%;	
		max-width: 100px;
		height: auto;
	}
}

@media (min-width: 992px) {
	#stacks_in_1574_1295-svg svg {
		width: 100%;	
		max-width: 100px;
		height: auto;
	}
}

@media (min-width: 1200px) {
	#stacks_in_1574_1295-svg svg {
		width: 100%;	
		max-width: 100px;
		height: auto;
	}
}

@media (min-width: 1400px) {
	#stacks_in_1574_1295-svg svg {
		width: 100%;	
		max-width: 100px;
		height: auto;
	}
}








#stacks_in_1574_1298-wrapper {
	
	
	
		
		
		color: var(--bs-dark);
		
	
}




/* Base Margins */
#stacks_in_1574_1298-wrapper {
	margin-bottom: var(--fdy-base-margin-xs);
}

@media (min-width: 576px) {
	#stacks_in_1574_1298-wrapper {
		margin-bottom: var(--fdy-base-margin-sm);
	}
}

@media (min-width: 768px) {
	#stacks_in_1574_1298-wrapper {
		margin-bottom: var(--fdy-base-margin-md);
	}
}

@media (min-width: 992px) {
	#stacks_in_1574_1298-wrapper {
		margin-bottom: var(--fdy-base-margin-lg);
	}
}

@media (min-width: 1200px) {
	#stacks_in_1574_1298-wrapper {
		margin-bottom: var(--fdy-base-margin-xl);
	}
}

@media (min-width: 1400px) {
	#stacks_in_1574_1298-wrapper {
		margin-bottom: var(--fdy-base-margin-xxl);
	}
}






	#stacks_in_1574_1298-wrapper p:last-of-type {
		margin-bottom: 0;
	}







#stacks_in_1574_1303-wrapper {
	
	
	
		
		
		color: var(--bs-dark);
		
	
}









	#stacks_in_1574_1303-wrapper p:last-of-type {
		margin-bottom: 0;
	}





#stacks_in_1574_1305-wrapper {
	
	border-color: var(--bs-gray-500) !important;
	
	
	border-width: 1px !important;
	border-bottom-width: 0px !important;
	border-style: solid !important;	
}

#stacks_in_1574_1305-wrapper .border-badge {
	
	background-color: var(--bs-secondary) !important;
	
	
	color: rgba(255, 255, 255, 1.00);
}

#stacks_in_1574_1305-wrapper .border-badge {
	
}

#stacks_in_1574_1305-wrapper.custom-width {
	width: 80%;
}


#stacks_in_1574_1306-wrapper {
	
	
	
		
		
		color: var(--bs-dark);
		
	
}




/* Base Margins */
#stacks_in_1574_1306-wrapper {
	margin-bottom: var(--fdy-base-margin-xs);
}

@media (min-width: 576px) {
	#stacks_in_1574_1306-wrapper {
		margin-bottom: var(--fdy-base-margin-sm);
	}
}

@media (min-width: 768px) {
	#stacks_in_1574_1306-wrapper {
		margin-bottom: var(--fdy-base-margin-md);
	}
}

@media (min-width: 992px) {
	#stacks_in_1574_1306-wrapper {
		margin-bottom: var(--fdy-base-margin-lg);
	}
}

@media (min-width: 1200px) {
	#stacks_in_1574_1306-wrapper {
		margin-bottom: var(--fdy-base-margin-xl);
	}
}

@media (min-width: 1400px) {
	#stacks_in_1574_1306-wrapper {
		margin-bottom: var(--fdy-base-margin-xxl);
	}
}






	#stacks_in_1574_1306-wrapper p:last-of-type {
		margin-bottom: 0;
	}





#stacks_in_1430-wrapper {
	
}

#stacks_in_1430-wrapper .container-fluid.fdy-columns {
	padding-left: 0px;
	padding-right: 0px;
}


/* Advanced Mode */
#stacks_in_1430-wrapper.fdy-container {
	width: 100%;
	padding-right: var(--bs-gutter-x, 0.75rem);
	padding-left: var(--bs-gutter-x, 0.75rem);
	margin-right: auto;
	margin-left: auto;
}


@media (min-width: 576px) {
  #stacks_in_1430-wrapper.fdy-container {
	max-width: 540px;
  }
}



@media (min-width: 768px) {
  #stacks_in_1430-wrapper.fdy-container {
	max-width: 720px;
  }
}



@media (min-width: 992px) {
  #stacks_in_1430-wrapper.fdy-container {
	max-width: 960px;
  }
}








.stacks_in_1438-alchemy {
	opacity: 0;
}

@media (prefers-reduced-motion: no-preference) {
	
	
	.stacks_in_1438-alchemy-transition {
		
			opacity: 1;
			animation-name: fdy-subtle-fade-in-bottom;
			animation-timing-function: cubic-bezier(0.25, 1, 0.5, 1);
			animation-duration: 1.50s;
			animation-delay: 0.40s;
			animation-fill-mode: both;
			
			
		

		

		filter: blur(0px);
	}
}

@media (prefers-reduced-motion) {
	.stacks_in_1438-alchemy {
	}
		
	.stacks_in_1438-alchemy-transition {
	  opacity: 1;
	}
}



#stacks_in_1718-svg svg {
	
	filter: drop-shadow(5px 5px 30px rgba(255, 255, 255, 0.82));
	
	display: inline-block;
	
	
	
	
	
}

#stacks_in_1718-svg a {
	
	
	

	
	
	outline: none;
}



#stacks_in_1718-svg svg {
	width: 100%;	
	max-width: 150px;
	height: auto;
}

@media (min-width: 576px) {
	#stacks_in_1718-svg svg {
		width: 100%;	
		max-width: 150px;
		height: auto;
	}
}

@media (min-width: 768px) {
	#stacks_in_1718-svg svg {
		width: 100%;	
		max-width: 150px;
		height: auto;
	}
}

@media (min-width: 992px) {
	#stacks_in_1718-svg svg {
		width: 100%;	
		max-width: 150px;
		height: auto;
	}
}

@media (min-width: 1200px) {
	#stacks_in_1718-svg svg {
		width: 100%;	
		max-width: 200px;
		height: auto;
	}
}

@media (min-width: 1400px) {
	#stacks_in_1718-svg svg {
		width: 100%;	
		max-width: 200px;
		height: auto;
	}
}





/* Base Margins */
#stacks_in_1718-svg {
	margin-bottom: var(--fdy-base-margin-xs);
}

@media (min-width: 576px) {
	#stacks_in_1718-svg {
		margin-bottom: var(--fdy-base-margin-sm);
	}
}

@media (min-width: 768px) {
	#stacks_in_1718-svg {
		margin-bottom: var(--fdy-base-margin-md);
	}
}

@media (min-width: 992px) {
	#stacks_in_1718-svg {
		margin-bottom: var(--fdy-base-margin-lg);
	}
}

@media (min-width: 1200px) {
	#stacks_in_1718-svg {
		margin-bottom: var(--fdy-base-margin-xl);
	}
}

@media (min-width: 1400px) {
	#stacks_in_1718-svg {
		margin-bottom: var(--fdy-base-margin-xxl);
	}
}




#stacks_in_2104-wrapper {
	
	
	
		
		
		color: var(--bs-light);
		
	
}







#stacks_in_2104-wrapper {
	font-size: 1.00rem;
}

@media (min-width: 576px) {
	#stacks_in_2104-wrapper {
		font-size: 1.40rem;
	}
}

@media (min-width: 768px) {
	#stacks_in_2104-wrapper {
		font-size: 1.40rem;
	}
}

@media (min-width: 992px) {
	#stacks_in_2104-wrapper {
		font-size: 1.40rem;
	}
}

@media (min-width: 1200px) {
	#stacks_in_2104-wrapper {
		font-size: 1.40rem;
	}
}

@media (min-width: 1400px) {
	#stacks_in_2104-wrapper {
		font-size: 1.40rem;
	}
}



	#stacks_in_2104-wrapper p:last-of-type {
		margin-bottom: 0;
	}








#stacks_in_1582-wrapper {
	
	max-width: 1300px;
	
}

#stacks_in_1582-wrapper .container-fluid.fdy-columns {
	padding-left: 0px;
	padding-right: 0px;
}


/* Advanced Mode */
#stacks_in_1582-wrapper.fdy-container {
	width: 100%;
	padding-right: var(--bs-gutter-x, 0.75rem);
	padding-left: var(--bs-gutter-x, 0.75rem);
	margin-right: auto;
	margin-left: auto;
}


@media (min-width: 576px) {
  #stacks_in_1582-wrapper.fdy-container {
	max-width: 540px;
  }
}



@media (min-width: 768px) {
  #stacks_in_1582-wrapper.fdy-container {
	max-width: 720px;
  }
}



@media (min-width: 992px) {
  #stacks_in_1582-wrapper.fdy-container {
	max-width: 960px;
  }
}



@media (min-width: 1200px) {
  #stacks_in_1582-wrapper.fdy-container {
	max-width: 1140px;
  }
}



@media (min-width: 1400px) {
  #stacks_in_1582-wrapper.fdy-container {
	max-width: 1320px;
  }
}




#stacks_in_1940-wrapper {
	
}

#stacks_in_1940-wrapper .container-fluid.fdy-columns {
	padding-left: 0px;
	padding-right: 0px;
}


/* Advanced Mode */
#stacks_in_1940-wrapper.fdy-container {
	width: 100%;
	padding-right: var(--bs-gutter-x, 0.75rem);
	padding-left: var(--bs-gutter-x, 0.75rem);
	margin-right: auto;
	margin-left: auto;
}


@media (min-width: 576px) {
  #stacks_in_1940-wrapper.fdy-container {
	max-width: 540px;
  }
}



@media (min-width: 768px) {
  #stacks_in_1940-wrapper.fdy-container {
	max-width: 720px;
  }
}



@media (min-width: 992px) {
  #stacks_in_1940-wrapper.fdy-container {
	max-width: 960px;
  }
}








.stacks_in_1941-alchemy {
	opacity: 0;
}

@media (prefers-reduced-motion: no-preference) {
	
	
	.stacks_in_1941-alchemy-transition {
		
			opacity: 1;
			animation-name: fdy-subtle-fade-in-bottom;
			animation-timing-function: cubic-bezier(0.25, 1, 0.5, 1);
			animation-duration: 1.00s;
			animation-delay: 0.00s;
			animation-fill-mode: both;
			
			
		

		

		filter: blur(0px);
	}
}

@media (prefers-reduced-motion) {
	.stacks_in_1941-alchemy {
	}
		
	.stacks_in_1941-alchemy-transition {
	  opacity: 1;
	}
}




#stacks_in_1943-margins.margins-easy-presets {
	/* Margin Settings */
	margin-top: 0px !important;
	margin-bottom: 0px !important;
	margin-left: 0px !important;
	margin-right: 0px !important;
}

#stacks_in_1943-margins.padding-easy-presets {
	/* Padding Settings */
	padding-top: 0px !important;
	padding-bottom: 0px !important;
	
	
}


#stacks_in_1943-margins.margins-advanced {
	margin: 20.00px 30.00px 0.00px 30.00px;
}

@media (min-width: 576px) {
	
}

@media (min-width: 768px) {
	
}

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
}

@media (min-width: 1400px) {
	
}




#stacks_in_1943-margins.padding-advanced {
	padding: 40.00px 0.00px 10.00px 0.00px;
}

@media (min-width: 576px) {
	
}

@media (min-width: 768px) {
	
}

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
}

@media (min-width: 1400px) {
	
}



h1.stacks_in_1945-header {
	
	font-weight: 100;
	
	
	
	
	
	
	
	
	color: var(--bs-dark);
	
	
	

	
	margin: 0;
	
	letter-spacing: 0.00px;
	
	
	line-height: 1.00;
	
	
}

h1.stacks_in_1945-header > small {
	
	
	
	
	
	
	
	color: ;
	
	
	

}



/* Base Margins */
h1.stacks_in_1945-header {
	margin-bottom: var(--fdy-base-margin-xs);
}

@media (min-width: 576px) {
	h1.stacks_in_1945-header {
		margin-bottom: var(--fdy-base-margin-sm);
	}
}

@media (min-width: 768px) {
	h1.stacks_in_1945-header {
		margin-bottom: var(--fdy-base-margin-md);
	}
}

@media (min-width: 992px) {
	h1.stacks_in_1945-header {
		margin-bottom: var(--fdy-base-margin-lg);
	}
}

@media (min-width: 1200px) {
	h1.stacks_in_1945-header {
		margin-bottom: var(--fdy-base-margin-xl);
	}
}

@media (min-width: 1400px) {
	h1.stacks_in_1945-header {
		margin-bottom: var(--fdy-base-margin-xxl);
	}
}






.stacks_in_1945-header {
	font-size: 1.50rem;
}

@media (min-width: 576px) {
	.stacks_in_1945-header {
		font-size: 1.50rem;
	}
}

@media (min-width: 768px) {
	.stacks_in_1945-header {
		font-size: 1.50rem;
	}
}

@media (min-width: 992px) {
	.stacks_in_1945-header {
		font-size: 2.00rem;
	}
}

@media (min-width: 1200px) {
	.stacks_in_1945-header {
		font-size: 2.00rem;
	}
}

@media (min-width: 1400px) {
	.stacks_in_1945-header {
		font-size: 2.00rem;
	}
}






@media (max-width: 575px) {
	
	#stacks_in_2095-wrapper .col {
		
  		flex: 0 0 auto;
  		width: 100%;
	  
	}
	
}





#stacks_in_1936-wrapper {
	
	
	
		
		
		color: var(--bs-dark);
		
	
}









	#stacks_in_1936-wrapper p:last-of-type {
		margin-bottom: 0;
	}







#stacks_in_2101-wrapper {
	
	
	
		
		
		color: var(--bs-dark);
		
	
}




/* Base Margins */
#stacks_in_2101-wrapper {
	margin-bottom: var(--fdy-base-margin-xs);
}

@media (min-width: 576px) {
	#stacks_in_2101-wrapper {
		margin-bottom: var(--fdy-base-margin-sm);
	}
}

@media (min-width: 768px) {
	#stacks_in_2101-wrapper {
		margin-bottom: var(--fdy-base-margin-md);
	}
}

@media (min-width: 992px) {
	#stacks_in_2101-wrapper {
		margin-bottom: var(--fdy-base-margin-lg);
	}
}

@media (min-width: 1200px) {
	#stacks_in_2101-wrapper {
		margin-bottom: var(--fdy-base-margin-xl);
	}
}

@media (min-width: 1400px) {
	#stacks_in_2101-wrapper {
		margin-bottom: var(--fdy-base-margin-xxl);
	}
}






	#stacks_in_2101-wrapper p:last-of-type {
		margin-bottom: 0;
	}








@media (max-width: 575px) {
	
}




#stacks_in_1584-wrapper,
#stacks_in_1584-wrapper > .bkg-overlay {
	overflow: visible;
	z-index: 15;
	position: relative;
}

#stacks_in_1584-wrapper > .filters-layer {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	
	
	
	
}

#stacks_in_1584-wrapper > .bkg-overlay {
	z-index: 10;
}

#stacks_in_1584-wrapper {
	background-position: center center;
}


#stacks_in_1584-wrapper.cover {
	background-size: cover;
	background-repeat: no-repeat;
}

#stacks_in_1584-wrapper.contain {
	background-size: contain;
	background-repeat: no-repeat;
}

#stacks_in_1584-wrapper.parallax {
	background-repeat: no-repeat;	
}

#stacks_in_1584-wrapper .jarallax {
	position: relative;
	z-index: 0;
}
#stacks_in_1584-wrapper .jarallax > .jarallax-img {
  position: absolute;
  object-fit: cover;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}



#stacks_in_1584-wrapper.tile {
	background-repeat: repeat;
}

#stacks_in_1584-wrapper.bkg-image {
	background-image: url();
}






#stacks_in_1584-wrapper.bkg-remote-image {
	background-image: url();
}



	

#stacks_in_1584-wrapper.bkg-webp-image {
	background-image: url();
}



body.webp-not-supported #stacks_in_1584-wrapper.bkg-webp-image {
	background-image: url() !important;
}



	
	

#stacks_in_1584-wrapper.bkg-preset {
	background: var(--bs-gray-100);
}

#stacks_in_1584-wrapper.bkg-solid-color {
	background: rgba(248, 248, 248, 1.00);
}

#stacks_in_1584-wrapper.bkg-gradient-two {
	background: rgba(47, 85, 90, 1.00);
	background: linear-gradient(90deg, rgba(47, 85, 90, 1.00) 0%, rgba(83, 155, 164, 1.00) 100%);
}

#stacks_in_1584-wrapper.bkg-gradient-four {
	background: /* newest syntax */
	radial-gradient(circle at 0% 0%, 
		 rgba(47, 46, 42, 1.00), transparent 80%),
	radial-gradient(circle at 100% 0%, 
		 rgba(37, 29, 40, 1.00), transparent 80%), 
	radial-gradient(circle at 0% 100%, 
		 rgba(47, 46, 42, 1.00), transparent 80%), 
	radial-gradient(circle at 100% 100%, 
		 rgba(37, 29, 40, 1.00), transparent 80%);
}

#stacks_in_1584-wrapper.custom-corners,
#stacks_in_1584-wrapper.custom-corners > .bkg-overlay.custom-corners,
#stacks_in_1584-wrapper.custom-corners > .filters-layer {
	border-radius: 0px 10px 10px 0px;
}



#stacks_in_1584-wrapper > .bkg-overlay.solid {
	background: rgba(0, 0, 0, 0.75);
}


#stacks_in_1584-wrapper > .bkg-overlay.linear-gradient-two {
	background: rgba(77, 26, 176, 0.75);
	/* Linear */
	background: linear-gradient(0deg, rgba(77, 26, 176, 0.75) 0%, rgba(127, 72, 245, 0.75) 100%);

}

#stacks_in_1584-wrapper > .bkg-overlay.radial-gradient-two {
	background: rgba(0, 0, 0, 0.20);
	/* Radial */
	background: radial-gradient(circle at 50% 50%, rgba(0, 0, 0, 0.20) 0%, rgba(0, 0, 0, 0.75) 90%);
}





#stacks_in_1584-wrapper {
	
	
	border-color: var(--bs-secondary) !important;
	
	
	
}








	

	








#stacks_in_1586-margins.margins-easy-presets {
	/* Margin Settings */
	margin-top: 0px !important;
	margin-bottom: 0px !important;
	margin-left: 0px !important;
	margin-right: 0px !important;
}

#stacks_in_1586-margins.padding-easy-presets {
	/* Padding Settings */
	
	
	
	
}


#stacks_in_1586-margins.margins-advanced {
	margin: 0.00px 0.00px 0.00px 0.00px;
}

@media (min-width: 576px) {
	
}

@media (min-width: 768px) {
	
}

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
}

@media (min-width: 1400px) {
	
}




#stacks_in_1586-margins.padding-advanced {
	padding: 0.00px 0.00px 20.00px 0.00px;
}

@media (min-width: 576px) {
	
}

@media (min-width: 768px) {
	
	#stacks_in_1586-margins.padding-advanced {
		padding: 0.00px 0.00px 0.00px 0.00px;
	}
	
}

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
}

@media (min-width: 1400px) {
	
}






@media (max-width: 575px) {
	
}





.stacks_in_1726-alchemy {
	opacity: 0;
}

@media (prefers-reduced-motion: no-preference) {
	
	
	.stacks_in_1726-alchemy-transition {
		
			opacity: 1;
			animation-name: fdy-subtle-fade-in-bottom;
			animation-timing-function: cubic-bezier(0.25, 1, 0.5, 1);
			animation-duration: 1.00s;
			animation-delay: 0.00s;
			animation-fill-mode: both;
			
			
		

		

		filter: blur(0px);
	}
}

@media (prefers-reduced-motion) {
	.stacks_in_1726-alchemy {
	}
		
	.stacks_in_1726-alchemy-transition {
	  opacity: 1;
	}
}




#stacks_in_1727-margins.margins-easy-presets {
	/* Margin Settings */
	margin-top: 0px !important;
	margin-bottom: 0px !important;
	margin-left: 0px !important;
	margin-right: 0px !important;
}

#stacks_in_1727-margins.padding-easy-presets {
	/* Padding Settings */
	padding-top: 0px !important;
	padding-bottom: 0px !important;
	
	
}


#stacks_in_1727-margins.margins-advanced {
	margin: 20.00px 30.00px 0.00px 30.00px;
}

@media (min-width: 576px) {
	
}

@media (min-width: 768px) {
	
}

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
}

@media (min-width: 1400px) {
	
}




#stacks_in_1727-margins.padding-advanced {
	padding: 0.00px 10.00px 0.00px 10.00px;
}

@media (min-width: 576px) {
	
}

@media (min-width: 768px) {
	
}

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
}

@media (min-width: 1400px) {
	
}



h2.stacks_in_1729-header {
	
	font-weight: 100;
	
	
	
	
	
	
	
	
	color: var(--bs-light);
	
	
	

	
	margin: 0;
	
	letter-spacing: 0.00px;
	
	
	line-height: 1.00;
	
	
}

h2.stacks_in_1729-header > small {
	
	
	
	
	
	
	
	color: ;
	
	
	

}



/* Base Margins */
h2.stacks_in_1729-header {
	margin-bottom: var(--fdy-base-margin-xs);
}

@media (min-width: 576px) {
	h2.stacks_in_1729-header {
		margin-bottom: var(--fdy-base-margin-sm);
	}
}

@media (min-width: 768px) {
	h2.stacks_in_1729-header {
		margin-bottom: var(--fdy-base-margin-md);
	}
}

@media (min-width: 992px) {
	h2.stacks_in_1729-header {
		margin-bottom: var(--fdy-base-margin-lg);
	}
}

@media (min-width: 1200px) {
	h2.stacks_in_1729-header {
		margin-bottom: var(--fdy-base-margin-xl);
	}
}

@media (min-width: 1400px) {
	h2.stacks_in_1729-header {
		margin-bottom: var(--fdy-base-margin-xxl);
	}
}






.stacks_in_1729-header {
	font-size: 1.40rem;
}

@media (min-width: 576px) {
	.stacks_in_1729-header {
		font-size: 1.50rem;
	}
}

@media (min-width: 768px) {
	.stacks_in_1729-header {
		font-size: 2.00rem;
	}
}

@media (min-width: 992px) {
	.stacks_in_1729-header {
		font-size: 2.00rem;
	}
}

@media (min-width: 1200px) {
	.stacks_in_1729-header {
		font-size: 2.00rem;
	}
}

@media (min-width: 1400px) {
	.stacks_in_1729-header {
		font-size: 2.00rem;
	}
}



#stacks_in_1732-wrapper {
	
	
	
		
		
		color: var(--bs-light);
		
	
}









	#stacks_in_1732-wrapper p:last-of-type {
		margin-bottom: 0;
	}







.stacks_in_1608-alchemy {
	
}

@media (prefers-reduced-motion: no-preference) {
	
	.stacks_in_1608-alchemy {
		opacity: 1.000000;
		transform: translateX(0px) translateY(0px) scale(1.000000) rotate(0deg);
		transition-timing-function: cubic-bezier(0.25, 1, 0.5, 1);
		transition-duration: 1.00s;
		transition-delay: 0.00s;
		
		filter: blur(0px);
	}
	
	
	.stacks_in_1608-alchemy:hover {
		

		
			opacity: 1.000000;
			transform: translateX(0px) translateY(0px) scale(1.050000) rotate(0deg);
			transition-timing-function: cubic-bezier(0.25, 1, 0.5, 1);
			transition-duration: 1.50s;
			transition-delay: 0.30s;
		

		filter: blur(0px);
	}
}

@media (prefers-reduced-motion) {
	.stacks_in_1608-alchemy {
	}
		
	.stacks_in_1608-alchemy-transition {
	  opacity: 1;
	}
}






.stacks_in_1935.fdy-img {
	overflow: hidden;
	
	
	

	
	border-color: var(--bs-dark) !important;
	
	
	
	
}


.stacks_in_1935.fdy.img-fluid-fdy {
	max-width: 100%;
	height: auto;
}

.stacks_in_1935.fdy-img source.img-fluid-fdy,
.stacks_in_1935.fdy-img img.img-fluid-fdy {
	width: 100%;
	height: auto;
}

.stacks_in_1935.fdy-img.img-upscale {
	width: 100%;
	height: auto;
}

.stacks_in_1935.fdy-img source.img-upscale,
.stacks_in_1935.fdy-img img.img-upscale {
	width: 100%;
	height: auto;
}
	
.stacks_in_1935.fdy-img.img-custom-pct {
	width: 100%;
	height: auto;
}

.stacks_in_1935.fdy-img source.img-custom-pct,
.stacks_in_1935.fdy-img img.img-custom-pct {
	width: 100%;
	height: auto;
}

.stacks_in_1935.fdy-img.img-max-width,
.stacks_in_1935.fdy-img source.img-max-width,
.stacks_in_1935.fdy-img img.img-max-width {
	max-width: 100%;
	width: 600px;
	height: auto;
}





#stacks_in_1612-wrapper,
#stacks_in_1612-wrapper > .bkg-overlay {
	overflow: visible;
	z-index: 15;
	position: relative;
}

#stacks_in_1612-wrapper > .filters-layer {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	
	
	
	
}

#stacks_in_1612-wrapper > .bkg-overlay {
	z-index: 10;
}

#stacks_in_1612-wrapper {
	background-position: center center;
}


#stacks_in_1612-wrapper.cover {
	background-size: cover;
	background-repeat: no-repeat;
}

#stacks_in_1612-wrapper.contain {
	background-size: contain;
	background-repeat: no-repeat;
}

#stacks_in_1612-wrapper.parallax {
	background-repeat: no-repeat;	
}

#stacks_in_1612-wrapper .jarallax {
	position: relative;
	z-index: 0;
}
#stacks_in_1612-wrapper .jarallax > .jarallax-img {
  position: absolute;
  object-fit: cover;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}



#stacks_in_1612-wrapper.tile {
	background-repeat: repeat;
}

#stacks_in_1612-wrapper.bkg-image {
	background-image: url();
}






#stacks_in_1612-wrapper.bkg-remote-image {
	background-image: url();
}



	

#stacks_in_1612-wrapper.bkg-webp-image {
	background-image: url();
}



body.webp-not-supported #stacks_in_1612-wrapper.bkg-webp-image {
	background-image: url() !important;
}



	
	

#stacks_in_1612-wrapper.bkg-preset {
	background: var(--bs-gray-100);
}

#stacks_in_1612-wrapper.bkg-solid-color {
	background: rgba(248, 248, 248, 1.00);
}

#stacks_in_1612-wrapper.bkg-gradient-two {
	background: rgba(47, 85, 90, 1.00);
	background: linear-gradient(270deg, rgba(47, 85, 90, 1.00) 0%, rgba(83, 155, 164, 1.00) 100%);
}

#stacks_in_1612-wrapper.bkg-gradient-four {
	background: /* newest syntax */
	radial-gradient(circle at 0% 0%, 
		 rgba(47, 46, 42, 1.00), transparent 80%),
	radial-gradient(circle at 100% 0%, 
		 rgba(37, 29, 40, 1.00), transparent 80%), 
	radial-gradient(circle at 0% 100%, 
		 rgba(47, 46, 42, 1.00), transparent 80%), 
	radial-gradient(circle at 100% 100%, 
		 rgba(37, 29, 40, 1.00), transparent 80%);
}

#stacks_in_1612-wrapper.custom-corners,
#stacks_in_1612-wrapper.custom-corners > .bkg-overlay.custom-corners,
#stacks_in_1612-wrapper.custom-corners > .filters-layer {
	border-radius: 10px 10px 10px 10px;
}



#stacks_in_1612-wrapper > .bkg-overlay.solid {
	background: rgba(0, 0, 0, 0.75);
}


#stacks_in_1612-wrapper > .bkg-overlay.linear-gradient-two {
	background: rgba(77, 26, 176, 0.75);
	/* Linear */
	background: linear-gradient(0deg, rgba(77, 26, 176, 0.75) 0%, rgba(127, 72, 245, 0.75) 100%);

}

#stacks_in_1612-wrapper > .bkg-overlay.radial-gradient-two {
	background: rgba(0, 0, 0, 0.20);
	/* Radial */
	background: radial-gradient(circle at 50% 50%, rgba(0, 0, 0, 0.20) 0%, rgba(0, 0, 0, 0.75) 90%);
}





#stacks_in_1612-wrapper {
	
	
	border-color: var(--bs-secondary) !important;
	
	
	
}








	

	








#stacks_in_1613-margins.margins-easy-presets {
	/* Margin Settings */
	margin-top: 0px !important;
	margin-bottom: 0px !important;
	margin-left: 0px !important;
	margin-right: 0px !important;
}

#stacks_in_1613-margins.padding-easy-presets {
	/* Padding Settings */
	
	
	
	
}


#stacks_in_1613-margins.margins-advanced {
	margin: 0.00px 0.00px 0.00px 0.00px;
}

@media (min-width: 576px) {
	
}

@media (min-width: 768px) {
	
}

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
}

@media (min-width: 1400px) {
	
}




#stacks_in_1613-margins.padding-advanced {
	padding: 0.00px 0.00px 20.00px 0.00px;
}

@media (min-width: 576px) {
	
}

@media (min-width: 768px) {
	
	#stacks_in_1613-margins.padding-advanced {
		padding: 0.00px 0.00px 0.00px 0.00px;
	}
	
}

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
}

@media (min-width: 1400px) {
	
}






@media (max-width: 575px) {
	
}





.stacks_in_1670-alchemy {
	opacity: 0;
}

@media (prefers-reduced-motion: no-preference) {
	
	
	.stacks_in_1670-alchemy-transition {
		
			opacity: 1;
			animation-name: fdy-subtle-fade-in-bottom;
			animation-timing-function: cubic-bezier(0.25, 1, 0.5, 1);
			animation-duration: 1.00s;
			animation-delay: 0.00s;
			animation-fill-mode: both;
			
			
		

		

		filter: blur(0px);
	}
}

@media (prefers-reduced-motion) {
	.stacks_in_1670-alchemy {
	}
		
	.stacks_in_1670-alchemy-transition {
	  opacity: 1;
	}
}




#stacks_in_1671-margins.margins-easy-presets {
	/* Margin Settings */
	margin-top: 0px !important;
	margin-bottom: 0px !important;
	margin-left: 0px !important;
	margin-right: 0px !important;
}

#stacks_in_1671-margins.padding-easy-presets {
	/* Padding Settings */
	padding-top: 0px !important;
	padding-bottom: 0px !important;
	
	
}


#stacks_in_1671-margins.margins-advanced {
	margin: 20.00px 30.00px 0.00px 30.00px;
}

@media (min-width: 576px) {
	
}

@media (min-width: 768px) {
	
}

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
}

@media (min-width: 1400px) {
	
}




#stacks_in_1671-margins.padding-advanced {
	padding: 0.00px 10.00px 0.00px 10.00px;
}

@media (min-width: 576px) {
	
}

@media (min-width: 768px) {
	
}

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
}

@media (min-width: 1400px) {
	
}



h2.stacks_in_1673-header {
	
	font-weight: 100;
	
	
	
	
	
	
	
	
	color: var(--bs-light);
	
	
	

	
	margin: 0;
	
	letter-spacing: 0.00px;
	
	
	line-height: 1.00;
	
	
}

h2.stacks_in_1673-header > small {
	
	
	
	
	
	
	
	color: ;
	
	
	

}



/* Base Margins */
h2.stacks_in_1673-header {
	margin-bottom: var(--fdy-base-margin-xs);
}

@media (min-width: 576px) {
	h2.stacks_in_1673-header {
		margin-bottom: var(--fdy-base-margin-sm);
	}
}

@media (min-width: 768px) {
	h2.stacks_in_1673-header {
		margin-bottom: var(--fdy-base-margin-md);
	}
}

@media (min-width: 992px) {
	h2.stacks_in_1673-header {
		margin-bottom: var(--fdy-base-margin-lg);
	}
}

@media (min-width: 1200px) {
	h2.stacks_in_1673-header {
		margin-bottom: var(--fdy-base-margin-xl);
	}
}

@media (min-width: 1400px) {
	h2.stacks_in_1673-header {
		margin-bottom: var(--fdy-base-margin-xxl);
	}
}






.stacks_in_1673-header {
	font-size: 1.40rem;
}

@media (min-width: 576px) {
	.stacks_in_1673-header {
		font-size: 1.50rem;
	}
}

@media (min-width: 768px) {
	.stacks_in_1673-header {
		font-size: 2.00rem;
	}
}

@media (min-width: 992px) {
	.stacks_in_1673-header {
		font-size: 2.00rem;
	}
}

@media (min-width: 1200px) {
	.stacks_in_1673-header {
		font-size: 2.00rem;
	}
}

@media (min-width: 1400px) {
	.stacks_in_1673-header {
		font-size: 2.00rem;
	}
}



#stacks_in_1676-wrapper {
	
	
	
		
		
		color: var(--bs-light);
		
	
}









	#stacks_in_1676-wrapper p:last-of-type {
		margin-bottom: 0;
	}







.stacks_in_1635-alchemy {
	
}

@media (prefers-reduced-motion: no-preference) {
	
	.stacks_in_1635-alchemy {
		opacity: 1.000000;
		transform: translateX(0px) translateY(0px) scale(1.000000) rotate(0deg);
		transition-timing-function: cubic-bezier(0.25, 1, 0.5, 1);
		transition-duration: 1.00s;
		transition-delay: 0.00s;
		
		filter: blur(0px);
	}
	
	
	.stacks_in_1635-alchemy:hover {
		

		
			opacity: 1.000000;
			transform: translateX(0px) translateY(0px) scale(1.050000) rotate(0deg);
			transition-timing-function: cubic-bezier(0.25, 1, 0.5, 1);
			transition-duration: 1.50s;
			transition-delay: 0.30s;
		

		filter: blur(0px);
	}
}

@media (prefers-reduced-motion) {
	.stacks_in_1635-alchemy {
	}
		
	.stacks_in_1635-alchemy-transition {
	  opacity: 1;
	}
}






.stacks_in_1637.fdy-img {
	overflow: hidden;
	
	
	

	
	border-color: var(--bs-dark) !important;
	
	
	
	
}


.stacks_in_1637.fdy.img-fluid-fdy {
	max-width: 100%;
	height: auto;
}

.stacks_in_1637.fdy-img source.img-fluid-fdy,
.stacks_in_1637.fdy-img img.img-fluid-fdy {
	width: 100%;
	height: auto;
}

.stacks_in_1637.fdy-img.img-upscale {
	width: 100%;
	height: auto;
}

.stacks_in_1637.fdy-img source.img-upscale,
.stacks_in_1637.fdy-img img.img-upscale {
	width: 100%;
	height: auto;
}
	
.stacks_in_1637.fdy-img.img-custom-pct {
	width: 100%;
	height: auto;
}

.stacks_in_1637.fdy-img source.img-custom-pct,
.stacks_in_1637.fdy-img img.img-custom-pct {
	width: 100%;
	height: auto;
}

.stacks_in_1637.fdy-img.img-max-width,
.stacks_in_1637.fdy-img source.img-max-width,
.stacks_in_1637.fdy-img img.img-max-width {
	max-width: 100%;
	width: 600px;
	height: auto;
}





#stacks_in_1953-wrapper,
#stacks_in_1953-wrapper > .bkg-overlay {
	overflow: visible;
	z-index: 15;
	position: relative;
}

#stacks_in_1953-wrapper > .filters-layer {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	
	
	
	
}

#stacks_in_1953-wrapper > .bkg-overlay {
	z-index: 10;
}

#stacks_in_1953-wrapper {
	background-position: center center;
}


#stacks_in_1953-wrapper.cover {
	background-size: cover;
	background-repeat: no-repeat;
}

#stacks_in_1953-wrapper.contain {
	background-size: contain;
	background-repeat: no-repeat;
}

#stacks_in_1953-wrapper.parallax {
	background-repeat: no-repeat;	
}

#stacks_in_1953-wrapper .jarallax {
	position: relative;
	z-index: 0;
}
#stacks_in_1953-wrapper .jarallax > .jarallax-img {
  position: absolute;
  object-fit: cover;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}



#stacks_in_1953-wrapper.tile {
	background-repeat: repeat;
}

#stacks_in_1953-wrapper.bkg-image {
	background-image: url();
}






#stacks_in_1953-wrapper.bkg-remote-image {
	background-image: url();
}



	

#stacks_in_1953-wrapper.bkg-webp-image {
	background-image: url();
}



body.webp-not-supported #stacks_in_1953-wrapper.bkg-webp-image {
	background-image: url() !important;
}



	
	

#stacks_in_1953-wrapper.bkg-preset {
	background: var(--bs-gray-100);
}

#stacks_in_1953-wrapper.bkg-solid-color {
	background: rgba(248, 248, 248, 1.00);
}

#stacks_in_1953-wrapper.bkg-gradient-two {
	background: rgba(47, 85, 90, 1.00);
	background: linear-gradient(90deg, rgba(47, 85, 90, 1.00) 0%, rgba(83, 155, 164, 1.00) 100%);
}

#stacks_in_1953-wrapper.bkg-gradient-four {
	background: /* newest syntax */
	radial-gradient(circle at 0% 0%, 
		 rgba(47, 46, 42, 1.00), transparent 80%),
	radial-gradient(circle at 100% 0%, 
		 rgba(37, 29, 40, 1.00), transparent 80%), 
	radial-gradient(circle at 0% 100%, 
		 rgba(47, 46, 42, 1.00), transparent 80%), 
	radial-gradient(circle at 100% 100%, 
		 rgba(37, 29, 40, 1.00), transparent 80%);
}

#stacks_in_1953-wrapper.custom-corners,
#stacks_in_1953-wrapper.custom-corners > .bkg-overlay.custom-corners,
#stacks_in_1953-wrapper.custom-corners > .filters-layer {
	border-radius: 10px 10px 10px 10px;
}



#stacks_in_1953-wrapper > .bkg-overlay.solid {
	background: rgba(0, 0, 0, 0.75);
}


#stacks_in_1953-wrapper > .bkg-overlay.linear-gradient-two {
	background: rgba(77, 26, 176, 0.75);
	/* Linear */
	background: linear-gradient(0deg, rgba(77, 26, 176, 0.75) 0%, rgba(127, 72, 245, 0.75) 100%);

}

#stacks_in_1953-wrapper > .bkg-overlay.radial-gradient-two {
	background: rgba(0, 0, 0, 0.20);
	/* Radial */
	background: radial-gradient(circle at 50% 50%, rgba(0, 0, 0, 0.20) 0%, rgba(0, 0, 0, 0.75) 90%);
}





#stacks_in_1953-wrapper {
	
	
	border-color: var(--bs-secondary) !important;
	
	
	
}








	

	








#stacks_in_1955-margins.margins-easy-presets {
	/* Margin Settings */
	margin-top: 0px !important;
	margin-bottom: 0px !important;
	margin-left: 0px !important;
	margin-right: 0px !important;
}

#stacks_in_1955-margins.padding-easy-presets {
	/* Padding Settings */
	
	
	
	
}


#stacks_in_1955-margins.margins-advanced {
	margin: 0.00px 0.00px 0.00px 0.00px;
}

@media (min-width: 576px) {
	
}

@media (min-width: 768px) {
	
}

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
}

@media (min-width: 1400px) {
	
}




#stacks_in_1955-margins.padding-advanced {
	padding: 0.00px 0.00px 20.00px 0.00px;
}

@media (min-width: 576px) {
	
}

@media (min-width: 768px) {
	
	#stacks_in_1955-margins.padding-advanced {
		padding: 0.00px 0.00px 0.00px 0.00px;
	}
	
}

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
}

@media (min-width: 1400px) {
	
}






@media (max-width: 575px) {
	
}





.stacks_in_1961-alchemy {
	opacity: 0;
}

@media (prefers-reduced-motion: no-preference) {
	
	
	.stacks_in_1961-alchemy-transition {
		
			opacity: 1;
			animation-name: fdy-subtle-fade-in-bottom;
			animation-timing-function: cubic-bezier(0.25, 1, 0.5, 1);
			animation-duration: 1.00s;
			animation-delay: 0.00s;
			animation-fill-mode: both;
			
			
		

		

		filter: blur(0px);
	}
}

@media (prefers-reduced-motion) {
	.stacks_in_1961-alchemy {
	}
		
	.stacks_in_1961-alchemy-transition {
	  opacity: 1;
	}
}




#stacks_in_1963-margins.margins-easy-presets {
	/* Margin Settings */
	margin-top: 0px !important;
	margin-bottom: 0px !important;
	margin-left: 0px !important;
	margin-right: 0px !important;
}

#stacks_in_1963-margins.padding-easy-presets {
	/* Padding Settings */
	padding-top: 0px !important;
	padding-bottom: 0px !important;
	
	
}


#stacks_in_1963-margins.margins-advanced {
	margin: 20.00px 30.00px 0.00px 30.00px;
}

@media (min-width: 576px) {
	
}

@media (min-width: 768px) {
	
}

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
}

@media (min-width: 1400px) {
	
}




#stacks_in_1963-margins.padding-advanced {
	padding: 0.00px 10.00px 0.00px 10.00px;
}

@media (min-width: 576px) {
	
}

@media (min-width: 768px) {
	
}

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
}

@media (min-width: 1400px) {
	
}



h2.stacks_in_1965-header {
	
	font-weight: 100;
	
	
	
	
	
	
	
	
	color: var(--bs-light);
	
	
	

	
	margin: 0;
	
	letter-spacing: 0.00px;
	
	
	line-height: 1.00;
	
	
}

h2.stacks_in_1965-header > small {
	
	
	
	
	
	
	
	color: ;
	
	
	

}



/* Base Margins */
h2.stacks_in_1965-header {
	margin-bottom: var(--fdy-base-margin-xs);
}

@media (min-width: 576px) {
	h2.stacks_in_1965-header {
		margin-bottom: var(--fdy-base-margin-sm);
	}
}

@media (min-width: 768px) {
	h2.stacks_in_1965-header {
		margin-bottom: var(--fdy-base-margin-md);
	}
}

@media (min-width: 992px) {
	h2.stacks_in_1965-header {
		margin-bottom: var(--fdy-base-margin-lg);
	}
}

@media (min-width: 1200px) {
	h2.stacks_in_1965-header {
		margin-bottom: var(--fdy-base-margin-xl);
	}
}

@media (min-width: 1400px) {
	h2.stacks_in_1965-header {
		margin-bottom: var(--fdy-base-margin-xxl);
	}
}






.stacks_in_1965-header {
	font-size: 1.40rem;
}

@media (min-width: 576px) {
	.stacks_in_1965-header {
		font-size: 1.50rem;
	}
}

@media (min-width: 768px) {
	.stacks_in_1965-header {
		font-size: 2.00rem;
	}
}

@media (min-width: 992px) {
	.stacks_in_1965-header {
		font-size: 2.00rem;
	}
}

@media (min-width: 1200px) {
	.stacks_in_1965-header {
		font-size: 2.00rem;
	}
}

@media (min-width: 1400px) {
	.stacks_in_1965-header {
		font-size: 2.00rem;
	}
}



#stacks_in_1968-wrapper {
	
	
	
		
		
		color: var(--bs-light);
		
	
}









	#stacks_in_1968-wrapper p:last-of-type {
		margin-bottom: 0;
	}







.stacks_in_1971-alchemy {
	
}

@media (prefers-reduced-motion: no-preference) {
	
	.stacks_in_1971-alchemy {
		opacity: 1.000000;
		transform: translateX(0px) translateY(0px) scale(1.000000) rotate(0deg);
		transition-timing-function: cubic-bezier(0.25, 1, 0.5, 1);
		transition-duration: 1.00s;
		transition-delay: 0.00s;
		
		filter: blur(0px);
	}
	
	
	.stacks_in_1971-alchemy:hover {
		

		
			opacity: 1.000000;
			transform: translateX(0px) translateY(0px) scale(1.050000) rotate(0deg);
			transition-timing-function: cubic-bezier(0.25, 1, 0.5, 1);
			transition-duration: 1.50s;
			transition-delay: 0.30s;
		

		filter: blur(0px);
	}
}

@media (prefers-reduced-motion) {
	.stacks_in_1971-alchemy {
	}
		
	.stacks_in_1971-alchemy-transition {
	  opacity: 1;
	}
}






.stacks_in_1973.fdy-img {
	overflow: hidden;
	
	
	

	
	border-color: var(--bs-dark) !important;
	
	
	
	
}


.stacks_in_1973.fdy.img-fluid-fdy {
	max-width: 100%;
	height: auto;
}

.stacks_in_1973.fdy-img source.img-fluid-fdy,
.stacks_in_1973.fdy-img img.img-fluid-fdy {
	width: 100%;
	height: auto;
}

.stacks_in_1973.fdy-img.img-upscale {
	width: 100%;
	height: auto;
}

.stacks_in_1973.fdy-img source.img-upscale,
.stacks_in_1973.fdy-img img.img-upscale {
	width: 100%;
	height: auto;
}
	
.stacks_in_1973.fdy-img.img-custom-pct {
	width: 100%;
	height: auto;
}

.stacks_in_1973.fdy-img source.img-custom-pct,
.stacks_in_1973.fdy-img img.img-custom-pct {
	width: 100%;
	height: auto;
}

.stacks_in_1973.fdy-img.img-max-width,
.stacks_in_1973.fdy-img source.img-max-width,
.stacks_in_1973.fdy-img img.img-max-width {
	max-width: 100%;
	width: 600px;
	height: auto;
}





#stacks_in_1975-wrapper,
#stacks_in_1975-wrapper > .bkg-overlay {
	overflow: visible;
	z-index: 15;
	position: relative;
}

#stacks_in_1975-wrapper > .filters-layer {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	
	
	
	
}

#stacks_in_1975-wrapper > .bkg-overlay {
	z-index: 10;
}

#stacks_in_1975-wrapper {
	background-position: center center;
}


#stacks_in_1975-wrapper.cover {
	background-size: cover;
	background-repeat: no-repeat;
}

#stacks_in_1975-wrapper.contain {
	background-size: contain;
	background-repeat: no-repeat;
}

#stacks_in_1975-wrapper.parallax {
	background-repeat: no-repeat;	
}

#stacks_in_1975-wrapper .jarallax {
	position: relative;
	z-index: 0;
}
#stacks_in_1975-wrapper .jarallax > .jarallax-img {
  position: absolute;
  object-fit: cover;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}



#stacks_in_1975-wrapper.tile {
	background-repeat: repeat;
}

#stacks_in_1975-wrapper.bkg-image {
	background-image: url();
}






#stacks_in_1975-wrapper.bkg-remote-image {
	background-image: url();
}



	

#stacks_in_1975-wrapper.bkg-webp-image {
	background-image: url();
}



body.webp-not-supported #stacks_in_1975-wrapper.bkg-webp-image {
	background-image: url() !important;
}



	
	

#stacks_in_1975-wrapper.bkg-preset {
	background: var(--bs-gray-100);
}

#stacks_in_1975-wrapper.bkg-solid-color {
	background: rgba(248, 248, 248, 1.00);
}

#stacks_in_1975-wrapper.bkg-gradient-two {
	background: rgba(47, 85, 90, 1.00);
	background: linear-gradient(270deg, rgba(47, 85, 90, 1.00) 0%, rgba(83, 155, 164, 1.00) 100%);
}

#stacks_in_1975-wrapper.bkg-gradient-four {
	background: /* newest syntax */
	radial-gradient(circle at 0% 0%, 
		 rgba(47, 46, 42, 1.00), transparent 80%),
	radial-gradient(circle at 100% 0%, 
		 rgba(37, 29, 40, 1.00), transparent 80%), 
	radial-gradient(circle at 0% 100%, 
		 rgba(47, 46, 42, 1.00), transparent 80%), 
	radial-gradient(circle at 100% 100%, 
		 rgba(37, 29, 40, 1.00), transparent 80%);
}

#stacks_in_1975-wrapper.custom-corners,
#stacks_in_1975-wrapper.custom-corners > .bkg-overlay.custom-corners,
#stacks_in_1975-wrapper.custom-corners > .filters-layer {
	border-radius: 10px 10px 10px 10px;
}



#stacks_in_1975-wrapper > .bkg-overlay.solid {
	background: rgba(0, 0, 0, 0.75);
}


#stacks_in_1975-wrapper > .bkg-overlay.linear-gradient-two {
	background: rgba(77, 26, 176, 0.75);
	/* Linear */
	background: linear-gradient(0deg, rgba(77, 26, 176, 0.75) 0%, rgba(127, 72, 245, 0.75) 100%);

}

#stacks_in_1975-wrapper > .bkg-overlay.radial-gradient-two {
	background: rgba(0, 0, 0, 0.20);
	/* Radial */
	background: radial-gradient(circle at 50% 50%, rgba(0, 0, 0, 0.20) 0%, rgba(0, 0, 0, 0.75) 90%);
}





#stacks_in_1975-wrapper {
	
	
	border-color: var(--bs-secondary) !important;
	
	
	
}








	

	








#stacks_in_1977-margins.margins-easy-presets {
	/* Margin Settings */
	margin-top: 0px !important;
	margin-bottom: 0px !important;
	margin-left: 0px !important;
	margin-right: 0px !important;
}

#stacks_in_1977-margins.padding-easy-presets {
	/* Padding Settings */
	
	
	
	
}


#stacks_in_1977-margins.margins-advanced {
	margin: 0.00px 0.00px 0.00px 0.00px;
}

@media (min-width: 576px) {
	
}

@media (min-width: 768px) {
	
}

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
}

@media (min-width: 1400px) {
	
}




#stacks_in_1977-margins.padding-advanced {
	padding: 0.00px 0.00px 20.00px 0.00px;
}

@media (min-width: 576px) {
	
}

@media (min-width: 768px) {
	
	#stacks_in_1977-margins.padding-advanced {
		padding: 0.00px 0.00px 0.00px 0.00px;
	}
	
}

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
}

@media (min-width: 1400px) {
	
}






@media (max-width: 575px) {
	
}





.stacks_in_1983-alchemy {
	opacity: 0;
}

@media (prefers-reduced-motion: no-preference) {
	
	
	.stacks_in_1983-alchemy-transition {
		
			opacity: 1;
			animation-name: fdy-subtle-fade-in-bottom;
			animation-timing-function: cubic-bezier(0.25, 1, 0.5, 1);
			animation-duration: 1.00s;
			animation-delay: 0.00s;
			animation-fill-mode: both;
			
			
		

		

		filter: blur(0px);
	}
}

@media (prefers-reduced-motion) {
	.stacks_in_1983-alchemy {
	}
		
	.stacks_in_1983-alchemy-transition {
	  opacity: 1;
	}
}




#stacks_in_1985-margins.margins-easy-presets {
	/* Margin Settings */
	margin-top: 0px !important;
	margin-bottom: 0px !important;
	margin-left: 0px !important;
	margin-right: 0px !important;
}

#stacks_in_1985-margins.padding-easy-presets {
	/* Padding Settings */
	padding-top: 0px !important;
	padding-bottom: 0px !important;
	
	
}


#stacks_in_1985-margins.margins-advanced {
	margin: 20.00px 30.00px 0.00px 30.00px;
}

@media (min-width: 576px) {
	
}

@media (min-width: 768px) {
	
}

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
}

@media (min-width: 1400px) {
	
}




#stacks_in_1985-margins.padding-advanced {
	padding: 0.00px 10.00px 0.00px 10.00px;
}

@media (min-width: 576px) {
	
}

@media (min-width: 768px) {
	
}

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
}

@media (min-width: 1400px) {
	
}



h2.stacks_in_1987-header {
	
	font-weight: 100;
	
	
	
	
	
	
	
	
	color: var(--bs-light);
	
	
	

	
	margin: 0;
	
	letter-spacing: 0.00px;
	
	
	line-height: 1.00;
	
	
}

h2.stacks_in_1987-header > small {
	
	
	
	
	
	
	
	color: ;
	
	
	

}



/* Base Margins */
h2.stacks_in_1987-header {
	margin-bottom: var(--fdy-base-margin-xs);
}

@media (min-width: 576px) {
	h2.stacks_in_1987-header {
		margin-bottom: var(--fdy-base-margin-sm);
	}
}

@media (min-width: 768px) {
	h2.stacks_in_1987-header {
		margin-bottom: var(--fdy-base-margin-md);
	}
}

@media (min-width: 992px) {
	h2.stacks_in_1987-header {
		margin-bottom: var(--fdy-base-margin-lg);
	}
}

@media (min-width: 1200px) {
	h2.stacks_in_1987-header {
		margin-bottom: var(--fdy-base-margin-xl);
	}
}

@media (min-width: 1400px) {
	h2.stacks_in_1987-header {
		margin-bottom: var(--fdy-base-margin-xxl);
	}
}






.stacks_in_1987-header {
	font-size: 1.40rem;
}

@media (min-width: 576px) {
	.stacks_in_1987-header {
		font-size: 1.50rem;
	}
}

@media (min-width: 768px) {
	.stacks_in_1987-header {
		font-size: 2.00rem;
	}
}

@media (min-width: 992px) {
	.stacks_in_1987-header {
		font-size: 2.00rem;
	}
}

@media (min-width: 1200px) {
	.stacks_in_1987-header {
		font-size: 2.00rem;
	}
}

@media (min-width: 1400px) {
	.stacks_in_1987-header {
		font-size: 2.00rem;
	}
}



#stacks_in_1990-wrapper {
	
	
	
		
		
		color: var(--bs-light);
		
	
}









	#stacks_in_1990-wrapper p:last-of-type {
		margin-bottom: 0;
	}







.stacks_in_1993-alchemy {
	
}

@media (prefers-reduced-motion: no-preference) {
	
	.stacks_in_1993-alchemy {
		opacity: 1.000000;
		transform: translateX(0px) translateY(0px) scale(1.000000) rotate(0deg);
		transition-timing-function: cubic-bezier(0.25, 1, 0.5, 1);
		transition-duration: 1.00s;
		transition-delay: 0.00s;
		
		filter: blur(0px);
	}
	
	
	.stacks_in_1993-alchemy:hover {
		

		
			opacity: 1.000000;
			transform: translateX(0px) translateY(0px) scale(1.050000) rotate(0deg);
			transition-timing-function: cubic-bezier(0.25, 1, 0.5, 1);
			transition-duration: 1.50s;
			transition-delay: 0.30s;
		

		filter: blur(0px);
	}
}

@media (prefers-reduced-motion) {
	.stacks_in_1993-alchemy {
	}
		
	.stacks_in_1993-alchemy-transition {
	  opacity: 1;
	}
}






.stacks_in_1995.fdy-img {
	overflow: hidden;
	
	
	

	
	border-color: var(--bs-dark) !important;
	
	
	
	
}


.stacks_in_1995.fdy.img-fluid-fdy {
	max-width: 100%;
	height: auto;
}

.stacks_in_1995.fdy-img source.img-fluid-fdy,
.stacks_in_1995.fdy-img img.img-fluid-fdy {
	width: 100%;
	height: auto;
}

.stacks_in_1995.fdy-img.img-upscale {
	width: 100%;
	height: auto;
}

.stacks_in_1995.fdy-img source.img-upscale,
.stacks_in_1995.fdy-img img.img-upscale {
	width: 100%;
	height: auto;
}
	
.stacks_in_1995.fdy-img.img-custom-pct {
	width: 100%;
	height: auto;
}

.stacks_in_1995.fdy-img source.img-custom-pct,
.stacks_in_1995.fdy-img img.img-custom-pct {
	width: 100%;
	height: auto;
}

.stacks_in_1995.fdy-img.img-max-width,
.stacks_in_1995.fdy-img source.img-max-width,
.stacks_in_1995.fdy-img img.img-max-width {
	max-width: 100%;
	width: 600px;
	height: auto;
}





#stacks_in_2000-wrapper,
#stacks_in_2000-wrapper > .bkg-overlay {
	overflow: visible;
	z-index: 15;
	position: relative;
}

#stacks_in_2000-wrapper > .filters-layer {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	
	
	
	
}

#stacks_in_2000-wrapper > .bkg-overlay {
	z-index: 10;
}

#stacks_in_2000-wrapper {
	background-position: center center;
}


#stacks_in_2000-wrapper.cover {
	background-size: cover;
	background-repeat: no-repeat;
}

#stacks_in_2000-wrapper.contain {
	background-size: contain;
	background-repeat: no-repeat;
}

#stacks_in_2000-wrapper.parallax {
	background-repeat: no-repeat;	
}

#stacks_in_2000-wrapper .jarallax {
	position: relative;
	z-index: 0;
}
#stacks_in_2000-wrapper .jarallax > .jarallax-img {
  position: absolute;
  object-fit: cover;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}



#stacks_in_2000-wrapper.tile {
	background-repeat: repeat;
}

#stacks_in_2000-wrapper.bkg-image {
	background-image: url();
}






#stacks_in_2000-wrapper.bkg-remote-image {
	background-image: url();
}



	

#stacks_in_2000-wrapper.bkg-webp-image {
	background-image: url();
}



body.webp-not-supported #stacks_in_2000-wrapper.bkg-webp-image {
	background-image: url() !important;
}



	
	

#stacks_in_2000-wrapper.bkg-preset {
	background: var(--bs-gray-100);
}

#stacks_in_2000-wrapper.bkg-solid-color {
	background: rgba(248, 248, 248, 1.00);
}

#stacks_in_2000-wrapper.bkg-gradient-two {
	background: rgba(47, 85, 90, 1.00);
	background: linear-gradient(90deg, rgba(47, 85, 90, 1.00) 0%, rgba(83, 155, 164, 1.00) 100%);
}

#stacks_in_2000-wrapper.bkg-gradient-four {
	background: /* newest syntax */
	radial-gradient(circle at 0% 0%, 
		 rgba(47, 46, 42, 1.00), transparent 80%),
	radial-gradient(circle at 100% 0%, 
		 rgba(37, 29, 40, 1.00), transparent 80%), 
	radial-gradient(circle at 0% 100%, 
		 rgba(47, 46, 42, 1.00), transparent 80%), 
	radial-gradient(circle at 100% 100%, 
		 rgba(37, 29, 40, 1.00), transparent 80%);
}

#stacks_in_2000-wrapper.custom-corners,
#stacks_in_2000-wrapper.custom-corners > .bkg-overlay.custom-corners,
#stacks_in_2000-wrapper.custom-corners > .filters-layer {
	border-radius: 10px 10px 10px 10px;
}



#stacks_in_2000-wrapper > .bkg-overlay.solid {
	background: rgba(0, 0, 0, 0.75);
}


#stacks_in_2000-wrapper > .bkg-overlay.linear-gradient-two {
	background: rgba(77, 26, 176, 0.75);
	/* Linear */
	background: linear-gradient(0deg, rgba(77, 26, 176, 0.75) 0%, rgba(127, 72, 245, 0.75) 100%);

}

#stacks_in_2000-wrapper > .bkg-overlay.radial-gradient-two {
	background: rgba(0, 0, 0, 0.20);
	/* Radial */
	background: radial-gradient(circle at 50% 50%, rgba(0, 0, 0, 0.20) 0%, rgba(0, 0, 0, 0.75) 90%);
}





#stacks_in_2000-wrapper {
	
	
	border-color: var(--bs-secondary) !important;
	
	
	
}








	

	








#stacks_in_2003-margins.margins-easy-presets {
	/* Margin Settings */
	margin-top: 0px !important;
	margin-bottom: 0px !important;
	margin-left: 0px !important;
	margin-right: 0px !important;
}

#stacks_in_2003-margins.padding-easy-presets {
	/* Padding Settings */
	
	
	
	
}


#stacks_in_2003-margins.margins-advanced {
	margin: 0.00px 0.00px 0.00px 0.00px;
}

@media (min-width: 576px) {
	
}

@media (min-width: 768px) {
	
}

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
}

@media (min-width: 1400px) {
	
}




#stacks_in_2003-margins.padding-advanced {
	padding: 0.00px 0.00px 20.00px 0.00px;
}

@media (min-width: 576px) {
	
}

@media (min-width: 768px) {
	
	#stacks_in_2003-margins.padding-advanced {
		padding: 0.00px 0.00px 0.00px 0.00px;
	}
	
}

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
}

@media (min-width: 1400px) {
	
}






@media (max-width: 575px) {
	
}





.stacks_in_2009-alchemy {
	opacity: 0;
}

@media (prefers-reduced-motion: no-preference) {
	
	
	.stacks_in_2009-alchemy-transition {
		
			opacity: 1;
			animation-name: fdy-subtle-fade-in-bottom;
			animation-timing-function: cubic-bezier(0.25, 1, 0.5, 1);
			animation-duration: 1.00s;
			animation-delay: 0.00s;
			animation-fill-mode: both;
			
			
		

		

		filter: blur(0px);
	}
}

@media (prefers-reduced-motion) {
	.stacks_in_2009-alchemy {
	}
		
	.stacks_in_2009-alchemy-transition {
	  opacity: 1;
	}
}




#stacks_in_2011-margins.margins-easy-presets {
	/* Margin Settings */
	margin-top: 0px !important;
	margin-bottom: 0px !important;
	margin-left: 0px !important;
	margin-right: 0px !important;
}

#stacks_in_2011-margins.padding-easy-presets {
	/* Padding Settings */
	padding-top: 0px !important;
	padding-bottom: 0px !important;
	
	
}


#stacks_in_2011-margins.margins-advanced {
	margin: 20.00px 30.00px 0.00px 30.00px;
}

@media (min-width: 576px) {
	
}

@media (min-width: 768px) {
	
}

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
}

@media (min-width: 1400px) {
	
}




#stacks_in_2011-margins.padding-advanced {
	padding: 0.00px 10.00px 0.00px 10.00px;
}

@media (min-width: 576px) {
	
}

@media (min-width: 768px) {
	
}

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
}

@media (min-width: 1400px) {
	
}



h2.stacks_in_2013-header {
	
	font-weight: 100;
	
	
	
	
	
	
	
	
	color: var(--bs-light);
	
	
	

	
	margin: 0;
	
	letter-spacing: 0.00px;
	
	
	line-height: 1.00;
	
	
}

h2.stacks_in_2013-header > small {
	
	
	
	
	
	
	
	color: ;
	
	
	

}



/* Base Margins */
h2.stacks_in_2013-header {
	margin-bottom: var(--fdy-base-margin-xs);
}

@media (min-width: 576px) {
	h2.stacks_in_2013-header {
		margin-bottom: var(--fdy-base-margin-sm);
	}
}

@media (min-width: 768px) {
	h2.stacks_in_2013-header {
		margin-bottom: var(--fdy-base-margin-md);
	}
}

@media (min-width: 992px) {
	h2.stacks_in_2013-header {
		margin-bottom: var(--fdy-base-margin-lg);
	}
}

@media (min-width: 1200px) {
	h2.stacks_in_2013-header {
		margin-bottom: var(--fdy-base-margin-xl);
	}
}

@media (min-width: 1400px) {
	h2.stacks_in_2013-header {
		margin-bottom: var(--fdy-base-margin-xxl);
	}
}






.stacks_in_2013-header {
	font-size: 1.40rem;
}

@media (min-width: 576px) {
	.stacks_in_2013-header {
		font-size: 1.50rem;
	}
}

@media (min-width: 768px) {
	.stacks_in_2013-header {
		font-size: 2.00rem;
	}
}

@media (min-width: 992px) {
	.stacks_in_2013-header {
		font-size: 2.00rem;
	}
}

@media (min-width: 1200px) {
	.stacks_in_2013-header {
		font-size: 2.00rem;
	}
}

@media (min-width: 1400px) {
	.stacks_in_2013-header {
		font-size: 2.00rem;
	}
}



#stacks_in_2016-wrapper {
	
	
	
		
		
		color: var(--bs-light);
		
	
}









	#stacks_in_2016-wrapper p:last-of-type {
		margin-bottom: 0;
	}







.stacks_in_2019-alchemy {
	
}

@media (prefers-reduced-motion: no-preference) {
	
	.stacks_in_2019-alchemy {
		opacity: 1.000000;
		transform: translateX(0px) translateY(0px) scale(1.000000) rotate(0deg);
		transition-timing-function: cubic-bezier(0.25, 1, 0.5, 1);
		transition-duration: 1.00s;
		transition-delay: 0.00s;
		
		filter: blur(0px);
	}
	
	
	.stacks_in_2019-alchemy:hover {
		

		
			opacity: 1.000000;
			transform: translateX(0px) translateY(0px) scale(1.050000) rotate(0deg);
			transition-timing-function: cubic-bezier(0.25, 1, 0.5, 1);
			transition-duration: 1.50s;
			transition-delay: 0.30s;
		

		filter: blur(0px);
	}
}

@media (prefers-reduced-motion) {
	.stacks_in_2019-alchemy {
	}
		
	.stacks_in_2019-alchemy-transition {
	  opacity: 1;
	}
}






.stacks_in_2021.fdy-img {
	overflow: hidden;
	
	
	

	
	border-color: var(--bs-dark) !important;
	
	
	
	
}


.stacks_in_2021.fdy.img-fluid-fdy {
	max-width: 100%;
	height: auto;
}

.stacks_in_2021.fdy-img source.img-fluid-fdy,
.stacks_in_2021.fdy-img img.img-fluid-fdy {
	width: 100%;
	height: auto;
}

.stacks_in_2021.fdy-img.img-upscale {
	width: 100%;
	height: auto;
}

.stacks_in_2021.fdy-img source.img-upscale,
.stacks_in_2021.fdy-img img.img-upscale {
	width: 100%;
	height: auto;
}
	
.stacks_in_2021.fdy-img.img-custom-pct {
	width: 100%;
	height: auto;
}

.stacks_in_2021.fdy-img source.img-custom-pct,
.stacks_in_2021.fdy-img img.img-custom-pct {
	width: 100%;
	height: auto;
}

.stacks_in_2021.fdy-img.img-max-width,
.stacks_in_2021.fdy-img source.img-max-width,
.stacks_in_2021.fdy-img img.img-max-width {
	max-width: 100%;
	width: 600px;
	height: auto;
}





#stacks_in_2023-wrapper,
#stacks_in_2023-wrapper > .bkg-overlay {
	overflow: visible;
	z-index: 15;
	position: relative;
}

#stacks_in_2023-wrapper > .filters-layer {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	
	
	
	
}

#stacks_in_2023-wrapper > .bkg-overlay {
	z-index: 10;
}

#stacks_in_2023-wrapper {
	background-position: center center;
}


#stacks_in_2023-wrapper.cover {
	background-size: cover;
	background-repeat: no-repeat;
}

#stacks_in_2023-wrapper.contain {
	background-size: contain;
	background-repeat: no-repeat;
}

#stacks_in_2023-wrapper.parallax {
	background-repeat: no-repeat;	
}

#stacks_in_2023-wrapper .jarallax {
	position: relative;
	z-index: 0;
}
#stacks_in_2023-wrapper .jarallax > .jarallax-img {
  position: absolute;
  object-fit: cover;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}



#stacks_in_2023-wrapper.tile {
	background-repeat: repeat;
}

#stacks_in_2023-wrapper.bkg-image {
	background-image: url();
}






#stacks_in_2023-wrapper.bkg-remote-image {
	background-image: url();
}



	

#stacks_in_2023-wrapper.bkg-webp-image {
	background-image: url();
}



body.webp-not-supported #stacks_in_2023-wrapper.bkg-webp-image {
	background-image: url() !important;
}



	
	

#stacks_in_2023-wrapper.bkg-preset {
	background: var(--bs-gray-100);
}

#stacks_in_2023-wrapper.bkg-solid-color {
	background: rgba(248, 248, 248, 1.00);
}

#stacks_in_2023-wrapper.bkg-gradient-two {
	background: rgba(47, 85, 90, 1.00);
	background: linear-gradient(270deg, rgba(47, 85, 90, 1.00) 0%, rgba(83, 155, 164, 1.00) 100%);
}

#stacks_in_2023-wrapper.bkg-gradient-four {
	background: /* newest syntax */
	radial-gradient(circle at 0% 0%, 
		 rgba(47, 46, 42, 1.00), transparent 80%),
	radial-gradient(circle at 100% 0%, 
		 rgba(37, 29, 40, 1.00), transparent 80%), 
	radial-gradient(circle at 0% 100%, 
		 rgba(47, 46, 42, 1.00), transparent 80%), 
	radial-gradient(circle at 100% 100%, 
		 rgba(37, 29, 40, 1.00), transparent 80%);
}

#stacks_in_2023-wrapper.custom-corners,
#stacks_in_2023-wrapper.custom-corners > .bkg-overlay.custom-corners,
#stacks_in_2023-wrapper.custom-corners > .filters-layer {
	border-radius: 10px 10px 10px 10px;
}



#stacks_in_2023-wrapper > .bkg-overlay.solid {
	background: rgba(0, 0, 0, 0.75);
}


#stacks_in_2023-wrapper > .bkg-overlay.linear-gradient-two {
	background: rgba(77, 26, 176, 0.75);
	/* Linear */
	background: linear-gradient(0deg, rgba(77, 26, 176, 0.75) 0%, rgba(127, 72, 245, 0.75) 100%);

}

#stacks_in_2023-wrapper > .bkg-overlay.radial-gradient-two {
	background: rgba(0, 0, 0, 0.20);
	/* Radial */
	background: radial-gradient(circle at 50% 50%, rgba(0, 0, 0, 0.20) 0%, rgba(0, 0, 0, 0.75) 90%);
}





#stacks_in_2023-wrapper {
	
	
	border-color: var(--bs-secondary) !important;
	
	
	
}








	

	








#stacks_in_2025-margins.margins-easy-presets {
	/* Margin Settings */
	margin-top: 0px !important;
	margin-bottom: 0px !important;
	margin-left: 0px !important;
	margin-right: 0px !important;
}

#stacks_in_2025-margins.padding-easy-presets {
	/* Padding Settings */
	
	
	
	
}


#stacks_in_2025-margins.margins-advanced {
	margin: 0.00px 0.00px 0.00px 0.00px;
}

@media (min-width: 576px) {
	
}

@media (min-width: 768px) {
	
}

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
}

@media (min-width: 1400px) {
	
}




#stacks_in_2025-margins.padding-advanced {
	padding: 0.00px 0.00px 20.00px 0.00px;
}

@media (min-width: 576px) {
	
}

@media (min-width: 768px) {
	
	#stacks_in_2025-margins.padding-advanced {
		padding: 0.00px 0.00px 0.00px 0.00px;
	}
	
}

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
}

@media (min-width: 1400px) {
	
}






@media (max-width: 575px) {
	
}





.stacks_in_2031-alchemy {
	opacity: 0;
}

@media (prefers-reduced-motion: no-preference) {
	
	
	.stacks_in_2031-alchemy-transition {
		
			opacity: 1;
			animation-name: fdy-subtle-fade-in-bottom;
			animation-timing-function: cubic-bezier(0.25, 1, 0.5, 1);
			animation-duration: 1.00s;
			animation-delay: 0.00s;
			animation-fill-mode: both;
			
			
		

		

		filter: blur(0px);
	}
}

@media (prefers-reduced-motion) {
	.stacks_in_2031-alchemy {
	}
		
	.stacks_in_2031-alchemy-transition {
	  opacity: 1;
	}
}




#stacks_in_2033-margins.margins-easy-presets {
	/* Margin Settings */
	margin-top: 0px !important;
	margin-bottom: 0px !important;
	margin-left: 0px !important;
	margin-right: 0px !important;
}

#stacks_in_2033-margins.padding-easy-presets {
	/* Padding Settings */
	padding-top: 0px !important;
	padding-bottom: 0px !important;
	
	
}


#stacks_in_2033-margins.margins-advanced {
	margin: 20.00px 30.00px 0.00px 30.00px;
}

@media (min-width: 576px) {
	
}

@media (min-width: 768px) {
	
}

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
}

@media (min-width: 1400px) {
	
}




#stacks_in_2033-margins.padding-advanced {
	padding: 0.00px 10.00px 0.00px 10.00px;
}

@media (min-width: 576px) {
	
}

@media (min-width: 768px) {
	
}

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
}

@media (min-width: 1400px) {
	
}



h2.stacks_in_2035-header {
	
	font-weight: 100;
	
	
	
	
	
	
	
	
	color: var(--bs-light);
	
	
	

	
	margin: 0;
	
	letter-spacing: 0.00px;
	
	
	line-height: 1.00;
	
	
}

h2.stacks_in_2035-header > small {
	
	
	
	
	
	
	
	color: ;
	
	
	

}



/* Base Margins */
h2.stacks_in_2035-header {
	margin-bottom: var(--fdy-base-margin-xs);
}

@media (min-width: 576px) {
	h2.stacks_in_2035-header {
		margin-bottom: var(--fdy-base-margin-sm);
	}
}

@media (min-width: 768px) {
	h2.stacks_in_2035-header {
		margin-bottom: var(--fdy-base-margin-md);
	}
}

@media (min-width: 992px) {
	h2.stacks_in_2035-header {
		margin-bottom: var(--fdy-base-margin-lg);
	}
}

@media (min-width: 1200px) {
	h2.stacks_in_2035-header {
		margin-bottom: var(--fdy-base-margin-xl);
	}
}

@media (min-width: 1400px) {
	h2.stacks_in_2035-header {
		margin-bottom: var(--fdy-base-margin-xxl);
	}
}






.stacks_in_2035-header {
	font-size: 1.40rem;
}

@media (min-width: 576px) {
	.stacks_in_2035-header {
		font-size: 1.50rem;
	}
}

@media (min-width: 768px) {
	.stacks_in_2035-header {
		font-size: 2.00rem;
	}
}

@media (min-width: 992px) {
	.stacks_in_2035-header {
		font-size: 2.00rem;
	}
}

@media (min-width: 1200px) {
	.stacks_in_2035-header {
		font-size: 2.00rem;
	}
}

@media (min-width: 1400px) {
	.stacks_in_2035-header {
		font-size: 2.00rem;
	}
}



#stacks_in_2038-wrapper {
	
	
	
		
		
		color: var(--bs-light);
		
	
}









	#stacks_in_2038-wrapper p:last-of-type {
		margin-bottom: 0;
	}







.stacks_in_2041-alchemy {
	
}

@media (prefers-reduced-motion: no-preference) {
	
	.stacks_in_2041-alchemy {
		opacity: 1.000000;
		transform: translateX(0px) translateY(0px) scale(1.000000) rotate(0deg);
		transition-timing-function: cubic-bezier(0.25, 1, 0.5, 1);
		transition-duration: 1.00s;
		transition-delay: 0.00s;
		
		filter: blur(0px);
	}
	
	
	.stacks_in_2041-alchemy:hover {
		

		
			opacity: 1.000000;
			transform: translateX(0px) translateY(0px) scale(1.050000) rotate(0deg);
			transition-timing-function: cubic-bezier(0.25, 1, 0.5, 1);
			transition-duration: 1.50s;
			transition-delay: 0.30s;
		

		filter: blur(0px);
	}
}

@media (prefers-reduced-motion) {
	.stacks_in_2041-alchemy {
	}
		
	.stacks_in_2041-alchemy-transition {
	  opacity: 1;
	}
}






.stacks_in_2043.fdy-img {
	overflow: hidden;
	
	
	

	
	border-color: var(--bs-dark) !important;
	
	
	
	
}


.stacks_in_2043.fdy.img-fluid-fdy {
	max-width: 100%;
	height: auto;
}

.stacks_in_2043.fdy-img source.img-fluid-fdy,
.stacks_in_2043.fdy-img img.img-fluid-fdy {
	width: 100%;
	height: auto;
}

.stacks_in_2043.fdy-img.img-upscale {
	width: 100%;
	height: auto;
}

.stacks_in_2043.fdy-img source.img-upscale,
.stacks_in_2043.fdy-img img.img-upscale {
	width: 100%;
	height: auto;
}
	
.stacks_in_2043.fdy-img.img-custom-pct {
	width: 100%;
	height: auto;
}

.stacks_in_2043.fdy-img source.img-custom-pct,
.stacks_in_2043.fdy-img img.img-custom-pct {
	width: 100%;
	height: auto;
}

.stacks_in_2043.fdy-img.img-max-width,
.stacks_in_2043.fdy-img source.img-max-width,
.stacks_in_2043.fdy-img img.img-max-width {
	max-width: 100%;
	width: 600px;
	height: auto;
}





#stacks_in_2049-wrapper,
#stacks_in_2049-wrapper > .bkg-overlay {
	overflow: visible;
	z-index: 15;
	position: relative;
}

#stacks_in_2049-wrapper > .filters-layer {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	
	
	
	
}

#stacks_in_2049-wrapper > .bkg-overlay {
	z-index: 10;
}

#stacks_in_2049-wrapper {
	background-position: center center;
}


#stacks_in_2049-wrapper.cover {
	background-size: cover;
	background-repeat: no-repeat;
}

#stacks_in_2049-wrapper.contain {
	background-size: contain;
	background-repeat: no-repeat;
}

#stacks_in_2049-wrapper.parallax {
	background-repeat: no-repeat;	
}

#stacks_in_2049-wrapper .jarallax {
	position: relative;
	z-index: 0;
}
#stacks_in_2049-wrapper .jarallax > .jarallax-img {
  position: absolute;
  object-fit: cover;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}



#stacks_in_2049-wrapper.tile {
	background-repeat: repeat;
}

#stacks_in_2049-wrapper.bkg-image {
	background-image: url();
}






#stacks_in_2049-wrapper.bkg-remote-image {
	background-image: url();
}



	

#stacks_in_2049-wrapper.bkg-webp-image {
	background-image: url();
}



body.webp-not-supported #stacks_in_2049-wrapper.bkg-webp-image {
	background-image: url() !important;
}



	
	

#stacks_in_2049-wrapper.bkg-preset {
	background: var(--bs-gray-100);
}

#stacks_in_2049-wrapper.bkg-solid-color {
	background: rgba(248, 248, 248, 1.00);
}

#stacks_in_2049-wrapper.bkg-gradient-two {
	background: rgba(47, 85, 90, 1.00);
	background: linear-gradient(90deg, rgba(47, 85, 90, 1.00) 0%, rgba(83, 155, 164, 1.00) 100%);
}

#stacks_in_2049-wrapper.bkg-gradient-four {
	background: /* newest syntax */
	radial-gradient(circle at 0% 0%, 
		 rgba(47, 46, 42, 1.00), transparent 80%),
	radial-gradient(circle at 100% 0%, 
		 rgba(37, 29, 40, 1.00), transparent 80%), 
	radial-gradient(circle at 0% 100%, 
		 rgba(47, 46, 42, 1.00), transparent 80%), 
	radial-gradient(circle at 100% 100%, 
		 rgba(37, 29, 40, 1.00), transparent 80%);
}

#stacks_in_2049-wrapper.custom-corners,
#stacks_in_2049-wrapper.custom-corners > .bkg-overlay.custom-corners,
#stacks_in_2049-wrapper.custom-corners > .filters-layer {
	border-radius: 10px 10px 10px 10px;
}



#stacks_in_2049-wrapper > .bkg-overlay.solid {
	background: rgba(0, 0, 0, 0.75);
}


#stacks_in_2049-wrapper > .bkg-overlay.linear-gradient-two {
	background: rgba(77, 26, 176, 0.75);
	/* Linear */
	background: linear-gradient(0deg, rgba(77, 26, 176, 0.75) 0%, rgba(127, 72, 245, 0.75) 100%);

}

#stacks_in_2049-wrapper > .bkg-overlay.radial-gradient-two {
	background: rgba(0, 0, 0, 0.20);
	/* Radial */
	background: radial-gradient(circle at 50% 50%, rgba(0, 0, 0, 0.20) 0%, rgba(0, 0, 0, 0.75) 90%);
}





#stacks_in_2049-wrapper {
	
	
	border-color: var(--bs-secondary) !important;
	
	
	
}








	

	








#stacks_in_2051-margins.margins-easy-presets {
	/* Margin Settings */
	margin-top: 0px !important;
	margin-bottom: 0px !important;
	margin-left: 0px !important;
	margin-right: 0px !important;
}

#stacks_in_2051-margins.padding-easy-presets {
	/* Padding Settings */
	
	
	
	
}


#stacks_in_2051-margins.margins-advanced {
	margin: 0.00px 0.00px 0.00px 0.00px;
}

@media (min-width: 576px) {
	
}

@media (min-width: 768px) {
	
}

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
}

@media (min-width: 1400px) {
	
}




#stacks_in_2051-margins.padding-advanced {
	padding: 0.00px 0.00px 20.00px 0.00px;
}

@media (min-width: 576px) {
	
}

@media (min-width: 768px) {
	
	#stacks_in_2051-margins.padding-advanced {
		padding: 0.00px 0.00px 0.00px 0.00px;
	}
	
}

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
}

@media (min-width: 1400px) {
	
}






@media (max-width: 575px) {
	
}





.stacks_in_2057-alchemy {
	opacity: 0;
}

@media (prefers-reduced-motion: no-preference) {
	
	
	.stacks_in_2057-alchemy-transition {
		
			opacity: 1;
			animation-name: fdy-subtle-fade-in-bottom;
			animation-timing-function: cubic-bezier(0.25, 1, 0.5, 1);
			animation-duration: 1.00s;
			animation-delay: 0.00s;
			animation-fill-mode: both;
			
			
		

		

		filter: blur(0px);
	}
}

@media (prefers-reduced-motion) {
	.stacks_in_2057-alchemy {
	}
		
	.stacks_in_2057-alchemy-transition {
	  opacity: 1;
	}
}




#stacks_in_2059-margins.margins-easy-presets {
	/* Margin Settings */
	margin-top: 0px !important;
	margin-bottom: 0px !important;
	margin-left: 0px !important;
	margin-right: 0px !important;
}

#stacks_in_2059-margins.padding-easy-presets {
	/* Padding Settings */
	padding-top: 0px !important;
	padding-bottom: 0px !important;
	
	
}


#stacks_in_2059-margins.margins-advanced {
	margin: 20.00px 30.00px 0.00px 30.00px;
}

@media (min-width: 576px) {
	
}

@media (min-width: 768px) {
	
}

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
}

@media (min-width: 1400px) {
	
}




#stacks_in_2059-margins.padding-advanced {
	padding: 0.00px 10.00px 0.00px 10.00px;
}

@media (min-width: 576px) {
	
}

@media (min-width: 768px) {
	
}

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
}

@media (min-width: 1400px) {
	
}



h2.stacks_in_2061-header {
	
	font-weight: 100;
	
	
	
	
	
	
	
	
	color: var(--bs-light);
	
	
	

	
	margin: 0;
	
	letter-spacing: 0.00px;
	
	
	line-height: 1.00;
	
	
}

h2.stacks_in_2061-header > small {
	
	
	
	
	
	
	
	color: ;
	
	
	

}



/* Base Margins */
h2.stacks_in_2061-header {
	margin-bottom: var(--fdy-base-margin-xs);
}

@media (min-width: 576px) {
	h2.stacks_in_2061-header {
		margin-bottom: var(--fdy-base-margin-sm);
	}
}

@media (min-width: 768px) {
	h2.stacks_in_2061-header {
		margin-bottom: var(--fdy-base-margin-md);
	}
}

@media (min-width: 992px) {
	h2.stacks_in_2061-header {
		margin-bottom: var(--fdy-base-margin-lg);
	}
}

@media (min-width: 1200px) {
	h2.stacks_in_2061-header {
		margin-bottom: var(--fdy-base-margin-xl);
	}
}

@media (min-width: 1400px) {
	h2.stacks_in_2061-header {
		margin-bottom: var(--fdy-base-margin-xxl);
	}
}






.stacks_in_2061-header {
	font-size: 1.40rem;
}

@media (min-width: 576px) {
	.stacks_in_2061-header {
		font-size: 1.50rem;
	}
}

@media (min-width: 768px) {
	.stacks_in_2061-header {
		font-size: 2.00rem;
	}
}

@media (min-width: 992px) {
	.stacks_in_2061-header {
		font-size: 2.00rem;
	}
}

@media (min-width: 1200px) {
	.stacks_in_2061-header {
		font-size: 2.00rem;
	}
}

@media (min-width: 1400px) {
	.stacks_in_2061-header {
		font-size: 2.00rem;
	}
}



#stacks_in_2064-wrapper {
	
	
	
		
		
		color: var(--bs-light);
		
	
}









	#stacks_in_2064-wrapper p:last-of-type {
		margin-bottom: 0;
	}







.stacks_in_2067-alchemy {
	
}

@media (prefers-reduced-motion: no-preference) {
	
	.stacks_in_2067-alchemy {
		opacity: 1.000000;
		transform: translateX(0px) translateY(0px) scale(1.000000) rotate(0deg);
		transition-timing-function: cubic-bezier(0.25, 1, 0.5, 1);
		transition-duration: 1.00s;
		transition-delay: 0.00s;
		
		filter: blur(0px);
	}
	
	
	.stacks_in_2067-alchemy:hover {
		

		
			opacity: 1.000000;
			transform: translateX(0px) translateY(0px) scale(1.050000) rotate(0deg);
			transition-timing-function: cubic-bezier(0.25, 1, 0.5, 1);
			transition-duration: 1.50s;
			transition-delay: 0.30s;
		

		filter: blur(0px);
	}
}

@media (prefers-reduced-motion) {
	.stacks_in_2067-alchemy {
	}
		
	.stacks_in_2067-alchemy-transition {
	  opacity: 1;
	}
}






.stacks_in_2069.fdy-img {
	overflow: hidden;
	
	
	

	
	border-color: var(--bs-dark) !important;
	
	
	
	
}


.stacks_in_2069.fdy.img-fluid-fdy {
	max-width: 100%;
	height: auto;
}

.stacks_in_2069.fdy-img source.img-fluid-fdy,
.stacks_in_2069.fdy-img img.img-fluid-fdy {
	width: 100%;
	height: auto;
}

.stacks_in_2069.fdy-img.img-upscale {
	width: 100%;
	height: auto;
}

.stacks_in_2069.fdy-img source.img-upscale,
.stacks_in_2069.fdy-img img.img-upscale {
	width: 100%;
	height: auto;
}
	
.stacks_in_2069.fdy-img.img-custom-pct {
	width: 100%;
	height: auto;
}

.stacks_in_2069.fdy-img source.img-custom-pct,
.stacks_in_2069.fdy-img img.img-custom-pct {
	width: 100%;
	height: auto;
}

.stacks_in_2069.fdy-img.img-max-width,
.stacks_in_2069.fdy-img source.img-max-width,
.stacks_in_2069.fdy-img img.img-max-width {
	max-width: 100%;
	width: 600px;
	height: auto;
}





#stacks_in_2071-wrapper,
#stacks_in_2071-wrapper > .bkg-overlay {
	overflow: visible;
	z-index: 15;
	position: relative;
}

#stacks_in_2071-wrapper > .filters-layer {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	
	
	
	
}

#stacks_in_2071-wrapper > .bkg-overlay {
	z-index: 10;
}

#stacks_in_2071-wrapper {
	background-position: center center;
}


#stacks_in_2071-wrapper.cover {
	background-size: cover;
	background-repeat: no-repeat;
}

#stacks_in_2071-wrapper.contain {
	background-size: contain;
	background-repeat: no-repeat;
}

#stacks_in_2071-wrapper.parallax {
	background-repeat: no-repeat;	
}

#stacks_in_2071-wrapper .jarallax {
	position: relative;
	z-index: 0;
}
#stacks_in_2071-wrapper .jarallax > .jarallax-img {
  position: absolute;
  object-fit: cover;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}



#stacks_in_2071-wrapper.tile {
	background-repeat: repeat;
}

#stacks_in_2071-wrapper.bkg-image {
	background-image: url();
}






#stacks_in_2071-wrapper.bkg-remote-image {
	background-image: url();
}



	

#stacks_in_2071-wrapper.bkg-webp-image {
	background-image: url();
}



body.webp-not-supported #stacks_in_2071-wrapper.bkg-webp-image {
	background-image: url() !important;
}



	
	

#stacks_in_2071-wrapper.bkg-preset {
	background: var(--bs-gray-100);
}

#stacks_in_2071-wrapper.bkg-solid-color {
	background: rgba(248, 248, 248, 1.00);
}

#stacks_in_2071-wrapper.bkg-gradient-two {
	background: rgba(47, 85, 90, 1.00);
	background: linear-gradient(270deg, rgba(47, 85, 90, 1.00) 0%, rgba(83, 155, 164, 1.00) 100%);
}

#stacks_in_2071-wrapper.bkg-gradient-four {
	background: /* newest syntax */
	radial-gradient(circle at 0% 0%, 
		 rgba(47, 46, 42, 1.00), transparent 80%),
	radial-gradient(circle at 100% 0%, 
		 rgba(37, 29, 40, 1.00), transparent 80%), 
	radial-gradient(circle at 0% 100%, 
		 rgba(47, 46, 42, 1.00), transparent 80%), 
	radial-gradient(circle at 100% 100%, 
		 rgba(37, 29, 40, 1.00), transparent 80%);
}

#stacks_in_2071-wrapper.custom-corners,
#stacks_in_2071-wrapper.custom-corners > .bkg-overlay.custom-corners,
#stacks_in_2071-wrapper.custom-corners > .filters-layer {
	border-radius: 10px 10px 10px 10px;
}



#stacks_in_2071-wrapper > .bkg-overlay.solid {
	background: rgba(0, 0, 0, 0.75);
}


#stacks_in_2071-wrapper > .bkg-overlay.linear-gradient-two {
	background: rgba(77, 26, 176, 0.75);
	/* Linear */
	background: linear-gradient(0deg, rgba(77, 26, 176, 0.75) 0%, rgba(127, 72, 245, 0.75) 100%);

}

#stacks_in_2071-wrapper > .bkg-overlay.radial-gradient-two {
	background: rgba(0, 0, 0, 0.20);
	/* Radial */
	background: radial-gradient(circle at 50% 50%, rgba(0, 0, 0, 0.20) 0%, rgba(0, 0, 0, 0.75) 90%);
}





#stacks_in_2071-wrapper {
	
	
	border-color: var(--bs-secondary) !important;
	
	
	
}








	

	








#stacks_in_2073-margins.margins-easy-presets {
	/* Margin Settings */
	margin-top: 0px !important;
	margin-bottom: 0px !important;
	margin-left: 0px !important;
	margin-right: 0px !important;
}

#stacks_in_2073-margins.padding-easy-presets {
	/* Padding Settings */
	
	
	
	
}


#stacks_in_2073-margins.margins-advanced {
	margin: 0.00px 0.00px 0.00px 0.00px;
}

@media (min-width: 576px) {
	
}

@media (min-width: 768px) {
	
}

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
}

@media (min-width: 1400px) {
	
}




#stacks_in_2073-margins.padding-advanced {
	padding: 0.00px 0.00px 20.00px 0.00px;
}

@media (min-width: 576px) {
	
}

@media (min-width: 768px) {
	
	#stacks_in_2073-margins.padding-advanced {
		padding: 0.00px 0.00px 0.00px 0.00px;
	}
	
}

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
}

@media (min-width: 1400px) {
	
}






@media (max-width: 575px) {
	
}





.stacks_in_2079-alchemy {
	opacity: 0;
}

@media (prefers-reduced-motion: no-preference) {
	
	
	.stacks_in_2079-alchemy-transition {
		
			opacity: 1;
			animation-name: fdy-subtle-fade-in-bottom;
			animation-timing-function: cubic-bezier(0.25, 1, 0.5, 1);
			animation-duration: 1.00s;
			animation-delay: 0.00s;
			animation-fill-mode: both;
			
			
		

		

		filter: blur(0px);
	}
}

@media (prefers-reduced-motion) {
	.stacks_in_2079-alchemy {
	}
		
	.stacks_in_2079-alchemy-transition {
	  opacity: 1;
	}
}




#stacks_in_2081-margins.margins-easy-presets {
	/* Margin Settings */
	margin-top: 0px !important;
	margin-bottom: 0px !important;
	margin-left: 0px !important;
	margin-right: 0px !important;
}

#stacks_in_2081-margins.padding-easy-presets {
	/* Padding Settings */
	padding-top: 0px !important;
	padding-bottom: 0px !important;
	
	
}


#stacks_in_2081-margins.margins-advanced {
	margin: 20.00px 30.00px 0.00px 30.00px;
}

@media (min-width: 576px) {
	
}

@media (min-width: 768px) {
	
}

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
}

@media (min-width: 1400px) {
	
}




#stacks_in_2081-margins.padding-advanced {
	padding: 0.00px 10.00px 0.00px 10.00px;
}

@media (min-width: 576px) {
	
}

@media (min-width: 768px) {
	
}

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
}

@media (min-width: 1400px) {
	
}



h2.stacks_in_2083-header {
	
	font-weight: 100;
	
	
	
	
	
	
	
	
	color: var(--bs-light);
	
	
	

	
	margin: 0;
	
	letter-spacing: 0.00px;
	
	
	line-height: 1.00;
	
	
}

h2.stacks_in_2083-header > small {
	
	
	
	
	
	
	
	color: ;
	
	
	

}



/* Base Margins */
h2.stacks_in_2083-header {
	margin-bottom: var(--fdy-base-margin-xs);
}

@media (min-width: 576px) {
	h2.stacks_in_2083-header {
		margin-bottom: var(--fdy-base-margin-sm);
	}
}

@media (min-width: 768px) {
	h2.stacks_in_2083-header {
		margin-bottom: var(--fdy-base-margin-md);
	}
}

@media (min-width: 992px) {
	h2.stacks_in_2083-header {
		margin-bottom: var(--fdy-base-margin-lg);
	}
}

@media (min-width: 1200px) {
	h2.stacks_in_2083-header {
		margin-bottom: var(--fdy-base-margin-xl);
	}
}

@media (min-width: 1400px) {
	h2.stacks_in_2083-header {
		margin-bottom: var(--fdy-base-margin-xxl);
	}
}






.stacks_in_2083-header {
	font-size: 1.40rem;
}

@media (min-width: 576px) {
	.stacks_in_2083-header {
		font-size: 1.50rem;
	}
}

@media (min-width: 768px) {
	.stacks_in_2083-header {
		font-size: 2.00rem;
	}
}

@media (min-width: 992px) {
	.stacks_in_2083-header {
		font-size: 2.00rem;
	}
}

@media (min-width: 1200px) {
	.stacks_in_2083-header {
		font-size: 2.00rem;
	}
}

@media (min-width: 1400px) {
	.stacks_in_2083-header {
		font-size: 2.00rem;
	}
}



#stacks_in_2086-wrapper {
	
	
	
		
		
		color: var(--bs-light);
		
	
}









	#stacks_in_2086-wrapper p:last-of-type {
		margin-bottom: 0;
	}







.stacks_in_2089-alchemy {
	
}

@media (prefers-reduced-motion: no-preference) {
	
	.stacks_in_2089-alchemy {
		opacity: 1.000000;
		transform: translateX(0px) translateY(0px) scale(1.000000) rotate(0deg);
		transition-timing-function: cubic-bezier(0.25, 1, 0.5, 1);
		transition-duration: 1.00s;
		transition-delay: 0.00s;
		
		filter: blur(0px);
	}
	
	
	.stacks_in_2089-alchemy:hover {
		

		
			opacity: 1.000000;
			transform: translateX(0px) translateY(0px) scale(1.050000) rotate(0deg);
			transition-timing-function: cubic-bezier(0.25, 1, 0.5, 1);
			transition-duration: 1.50s;
			transition-delay: 0.30s;
		

		filter: blur(0px);
	}
}

@media (prefers-reduced-motion) {
	.stacks_in_2089-alchemy {
	}
		
	.stacks_in_2089-alchemy-transition {
	  opacity: 1;
	}
}






.stacks_in_2091.fdy-img {
	overflow: hidden;
	
	
	

	
	border-color: var(--bs-dark) !important;
	
	
	
	
}


.stacks_in_2091.fdy.img-fluid-fdy {
	max-width: 100%;
	height: auto;
}

.stacks_in_2091.fdy-img source.img-fluid-fdy,
.stacks_in_2091.fdy-img img.img-fluid-fdy {
	width: 100%;
	height: auto;
}

.stacks_in_2091.fdy-img.img-upscale {
	width: 100%;
	height: auto;
}

.stacks_in_2091.fdy-img source.img-upscale,
.stacks_in_2091.fdy-img img.img-upscale {
	width: 100%;
	height: auto;
}
	
.stacks_in_2091.fdy-img.img-custom-pct {
	width: 100%;
	height: auto;
}

.stacks_in_2091.fdy-img source.img-custom-pct,
.stacks_in_2091.fdy-img img.img-custom-pct {
	width: 100%;
	height: auto;
}

.stacks_in_2091.fdy-img.img-max-width,
.stacks_in_2091.fdy-img source.img-max-width,
.stacks_in_2091.fdy-img img.img-max-width {
	max-width: 100%;
	width: 600px;
	height: auto;
}




#stacks_in_1273_2-margins.margins-easy-presets {
	/* Margin Settings */
	
	
	
	
}

#stacks_in_1273_2-margins.padding-easy-presets {
	/* Padding Settings */
	
	
	
	
}


#stacks_in_1273_2-margins.margins-advanced {
	margin: 0.00px 0.00px 0.00px 0.00px;
}

@media (min-width: 576px) {
	
}

@media (min-width: 768px) {
	
}

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
}

@media (min-width: 1400px) {
	
}




#stacks_in_1273_2-margins.padding-advanced {
	padding: 10.00px 20.00px 80.00px 20.00px;
}

@media (min-width: 576px) {
	
}

@media (min-width: 768px) {
	
}

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
}

@media (min-width: 1400px) {
	
}


.stacks_in_1273_17-list {
	list-style: none;
	list-style-position: inside;
	margin-bottom: 0;
	
	line-height: 2.00;
	
	font-weight: 200;
}

.stacks_in_1273_17-list {
	
	
	
}

.stacks_in_1273_17-list .list-icon {
	
	color: var(--bs-gray-500) !important;
	
	
	
}

.stacks_in_1273_17-list a,
.stacks_in_1273_17-list a:visited,
.stacks_in_1273_17-list a:hover,
.stacks_in_1273_17-list a:active {
	text-decoration: none;
}

.stacks_in_1273_17-list a,
.stacks_in_1273_17-list a:visited {
	
	color: var(--bs-dark) !important;
	
	
	
	text-decoration: none;
}

.stacks_in_1273_17-list a:hover,
.stacks_in_1273_17-list a:active {
	
	opacity: 50%;
	
	
		
	text-decoration: none;
}










/* Custom Font Sizing */
.stacks_in_1273_17-list {
	font-size: 0.80rem;
}

@media (min-width: 576px) {
	.stacks_in_1273_17-list {
		font-size: 0.80rem;
	}
}

@media (min-width: 768px) {
	.stacks_in_1273_17-list {
		font-size: 0.80rem;
	}
}

@media (min-width: 992px) {
	.stacks_in_1273_17-list {
		font-size: 0.80rem;
	}
}

@media (min-width: 1200px) {
	.stacks_in_1273_17-list {
		font-size: 0.80rem;
	}
}

@media (min-width: 1400px) {
	.stacks_in_1273_17-list {
		font-size: 0.80rem;
	}
}



.stacks_in_1273_17-list .list-inline-item:not(:last-child) {

	

}

.stacks_in_1273_17-list .list-inline-item {
	float: unset !important;
	display: inline-block !important;
}

.stacks_in_1273_17-list.list-inline {
	float: unset !important;
	display: block !important;
}

.stacks_in_1273_19-list-item .badge {
	position: relative;
	top: -2px;
	color: rgba(255, 255, 255, 1.00);

	
	background-color: var(--bs-danger);
	
	
	
}

.stacks_in_1273_19-list-item.custom-icon-color .list-icon {
	color: rgba(148, 104, 247, 1.00) !important;
}

.stacks_in_1273_22-list-item .badge {
	position: relative;
	top: -2px;
	color: rgba(255, 255, 255, 1.00);

	
	background-color: var(--bs-danger);
	
	
	
}

.stacks_in_1273_22-list-item.custom-icon-color .list-icon {
	color: rgba(148, 104, 247, 1.00) !important;
}

.stacks_in_1273_23-list-item .badge {
	position: relative;
	top: -2px;
	color: rgba(255, 255, 255, 1.00);

	
	background-color: var(--bs-danger);
	
	
	
}

.stacks_in_1273_23-list-item.custom-icon-color .list-icon {
	color: rgba(148, 104, 247, 1.00) !important;
}

.stacks_in_1273_33-list-item .badge {
	position: relative;
	top: -2px;
	color: rgba(255, 255, 255, 1.00);

	
	background-color: var(--bs-danger);
	
	
	
}

.stacks_in_1273_33-list-item.custom-icon-color .list-icon {
	color: rgba(148, 104, 247, 1.00) !important;
}

.stacks_in_1273_40-list-item .badge {
	position: relative;
	top: -2px;
	color: rgba(255, 255, 255, 1.00);

	
	background-color: var(--bs-danger);
	
	
	
}

.stacks_in_1273_40-list-item.custom-icon-color .list-icon {
	color: rgba(148, 104, 247, 1.00) !important;
}

.stacks_in_1273_38-list-item .badge {
	position: relative;
	top: -2px;
	color: rgba(255, 255, 255, 1.00);

	
	background-color: var(--bs-danger);
	
	
	
}

.stacks_in_1273_38-list-item.custom-icon-color .list-icon {
	color: rgba(148, 104, 247, 1.00) !important;
}


#stacks_in_1273_41-wrapper {
	
	border-color: var(--bs-gray-500) !important;
	
	
	border-width: 1px !important;
	border-bottom-width: 0px !important;
	border-style: solid !important;	
}

#stacks_in_1273_41-wrapper .border-badge {
	
	background-color: var(--bs-secondary) !important;
	
	
	color: rgba(255, 255, 255, 1.00);
}

#stacks_in_1273_41-wrapper .border-badge {
	
}

#stacks_in_1273_41-wrapper.custom-width {
	width: 80%;
}


#stacks_in_1273_30-margins.margins-easy-presets {
	/* Margin Settings */
	
	margin-bottom: 0px !important;
	
	
}

#stacks_in_1273_30-margins.padding-easy-presets {
	/* Padding Settings */
	padding-top: 0px !important;
	padding-bottom: 0px !important;
	padding-left: 0px !important;
	padding-right: 0px !important;
}


#stacks_in_1273_30-margins.margins-advanced {
	margin: 0.00px 0.00px 0.00px 0.00px;
}

@media (min-width: 576px) {
	
}

@media (min-width: 768px) {
	
}

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
}

@media (min-width: 1400px) {
	
}




#stacks_in_1273_30-margins.padding-advanced {
	padding: 0.00px 0.00px 0.00px 0.00px;
}

@media (min-width: 576px) {
	
}

@media (min-width: 768px) {
	
}

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
}

@media (min-width: 1400px) {
	
}



#stacks_in_1273_43-footer-info {
	font-size: 0.80rem;
}

@media (min-width: 576px) {
	#stacks_in_1273_43-footer-info {
		font-size: 0.80rem;
	}
}

@media (min-width: 768px) {
	#stacks_in_1273_43-footer-info {
		font-size: 0.80rem;
	}
}

@media (min-width: 992px) {
	#stacks_in_1273_43-footer-info {
		font-size: 0.80rem;
	}
}

@media (min-width: 1200px) {
	#stacks_in_1273_43-footer-info {
		font-size: 0.80rem;
	}
}

@media (min-width: 1400px) {
	#stacks_in_1273_43-footer-info {
		font-size: 0.80rem;
	}
}



#stacks_in_1273_43-footer-info {
	font-weight: 400;
	
	color: var(--bs-dark);
	
	
}

#stacks_in_1273_43-footer-info a,
#stacks_in_1273_43-footer-info a:visited {
	
}

#stacks_in_1273_43-footer-info a:hover,
#stacks_in_1273_43-footer-info a:active {
	
}






@keyframes fdy-fadeOut {
	from {
		opacity: 1;
	}
	to {
		opacity: 0;
	}
}



html {
  scroll-behavior: smooth !important;
}



	
	#stacks_in_1273_45-wrapper {
		opacity: 0;
	}
	
	#stacks_in_1273_45-wrapper.hide-trigger {
		animation-name: fdy-fadeOut;
		animation-duration: 0.50s;
	}
	
	#stacks_in_1273_45-wrapper.hide-trigger .stacks_in_1273_45-trigger {
		pointer-events: none !important;
	}
	
	#stacks_in_1273_45-wrapper.show-trigger {
		opacity: 1;
		animation-name: fdy-subtle-fade-in-bottom;
		animation-timing-function: cubic-bezier(0.34, 1.56, 0.64, 1);
		animation-duration: 0.50s;
		animation-delay: 0.00s;
		animation-fill-mode: both;
	}
	
	
	#stacks_in_1273_45-wrapper {
		bottom: 20px;
		right: 20px;
		z-index: 9999;
		pointer-events: none;
	}
	
	
	#stacks_in_1273_45-wrapper .stacks_in_1273_45-trigger {
		pointer-events: initial !important;
	}
	





.stacks_in_1273_49-button,
.stacks_in_1273_49-button:focus {
	
}


.stacks_in_1273_49-button,
.stacks_in_1273_49-button:focus,
.stacks_in_1273_49-button:active {
	
	background-color: var(--bs-gray-500);
	border-color: var(--bs-gray-500);
	color: rgba(47, 47, 47, 1.00);
	
	
	
	
	transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, opacity 0.15s ease-in-out;
	
	outline: none;
}

.stacks_in_1273_49-button:hover,
.stacks_in_1273_49-button:hover:active {
	
	background-color: var(--bs-gray-500) !important;
	border-color: var(--bs-gray-500);
	color: rgba(47, 47, 47, 1.00) !important;
	
	
	

	opacity: 0.850000;	
}











#stacks_in_1273_49-wrapper a {
	outline: none;
}

#stacks_in_1273_49-wrapper .btn {
	
	font-weight: 200;
	
	
}



#stacks_in_1273_49-wrapper .btn.custom-shadow-hover:hover {
	box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.33) !important;
}


#stacks_in_1273_49-wrapper .btn,
#stacks_in_1273_49-wrapper .btn.custom-shadow,
#stacks_in_1273_49-wrapper .btn.custom-shadow-hover:hover {
	transition-duration: 250ms;
	transition-property: box-shadow;
}


#stacks_in_1273_49-wrapper .btn .badge {
	background-color: var(--bs-danger);
	color: rgba(255, 255, 255, 1.00);
}











