/*
 * 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: 1.25rem;
	   --fdy-base-margin-sm: 1.25rem;
	   --fdy-base-margin-md: 1.25rem;
	   --fdy-base-margin-lg: 1.25rem;
	   --fdy-base-margin-xl: 1.25rem;
	  --fdy-base-margin-xxl: 1.25rem;
}

* {
	-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-font-sans-serif: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
	
	--bs-body-font-size: 1.00rem;
	--bs-body-line-height: 1.50;
	--bs-body-font-weight: 400;

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


/* 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: 700;
  
  line-height: 1.20;
  
  
	
	color: inherit;
	
	
}



h1, .h1 {
  font-size: 2.75rem;
}

@media (min-width: 576px) {
	h1, .h1 {
		font-size: 3.00rem;
	}
}

@media (min-width: 768px) {
	h1, .h1 {
		font-size: 3.25rem;
	}
}

@media (min-width: 992px) {
	h1, .h1 {
		font-size: 3.50rem;
	}
}

@media (min-width: 1200px) {
	h1, .h1 {
		font-size: 3.75rem;
	}
}

@media (min-width: 1400px) {
	h1, .h1 {
		font-size: 4.00rem;
	}
}




h2, .h2 {
  font-size: 2.25rem;
}

@media (min-width: 576px) {
	h2, .h2 {
		font-size: 2.50rem;
	}
}

@media (min-width: 768px) {
	h2, .h2 {
		font-size: 2.75rem;
	}
}

@media (min-width: 992px) {
	h2, .h2 {
		font-size: 3.00rem;
	}
}

@media (min-width: 1200px) {
	h2, .h2 {
		font-size: 3.25rem;
	}
}

@media (min-width: 1400px) {
	h2, .h2 {
		font-size: 3.50rem;
	}
}




h3, .h3 {
  font-size: 2.00rem;
}

@media (min-width: 576px) {
	h3, .h3 {
		font-size: 2.25rem;
	}
}

@media (min-width: 768px) {
	h3, .h3 {
		font-size: 2.50rem;
	}
}

@media (min-width: 992px) {
	h3, .h3 {
		font-size: 2.75rem;
	}
}

@media (min-width: 1200px) {
	h3, .h3 {
		font-size: 3.00rem;
	}
}

@media (min-width: 1400px) {
	h3, .h3 {
		font-size: 3.25rem;
	}
}













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



mark, 
.mark {
	
	
}

kbd, 
.kbd {
	
	
}



a, 
a:hover {
	
	color: var(--bs-primary);
	
	
	
	
	
	
	text-decoration-color: transparent;
	
}

a:hover {
	
	color: var(--bs-warning);
	
	


	
	
	
	text-decoration-color: transparent;
	
}



	body {
		background-position: center center;
		
		

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

	}	

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


	

	






.rounded-1 {
  border-radius: 0.38rem !important;
}

.rounded-2 {
  border-radius: 0.25rem !important;
}

.rounded-3 {
  border-radius: 0.50rem !important;
}

.rounded-4 {
  border-radius: 1.00rem !important;
}

.rounded-5 {
  border-radius: 2.00rem !important;
}




/* 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: #000000;
  --bs-secondary: #27282D;
  --bs-success: #0000FF;
  --bs-danger: #D32C30;
  --bs-warning: #FDB94C;
  --bs-info: #4257FD;
}








  

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

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

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

    .foundry-typeface-one em {
      font-weight: 400;
      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: 'Kanit', 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: 'Kanit', sans-serif !important;
    }

  







  

    .foundry-typeface-two {
      font-family: 'Helvetica, Arial', sans-serif;
      font-weight: 400;
      
    }

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

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

    .foundry-typeface-two em {
      font-weight: 400;
      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: 'Helvetica, Arial', 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: 'Helvetica, Arial', sans-serif !important;
    }

  







  

    .foundry-typeface-three {
      font-family: ' Rock 3D', sans-serif;
      font-weight: 400;
    }

    .foundry-typeface-three strong {
      font-weight: 700;
    }

    .foundry-typeface-three strong em {
      font-weight: 700;
      font-style: italic;
    }

    .foundry-typeface-three em {
      font-weight: 400;
      font-style: italic;
    }

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

    h1.foundry-typeface-three,
    h2.foundry-typeface-three,
    h3.foundry-typeface-three,
    h4.foundry-typeface-three,
    h5.foundry-typeface-three,
    h6.foundry-typeface-three {
      font-family: ' Rock 3D', sans-serif !important;
    }

  








  

    .foundry-typeface-four {
      font-family: 'Permanent Marker', sans-serif;
      font-weight: 300;
    }

    .foundry-typeface-four strong {
      font-weight: 400;
    }

    .foundry-typeface-four strong em {
      font-weight: 400;
      font-style: italic;
    }

    .foundry-typeface-four em {
      font-weight: 300;
      font-style: italic;
    }

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

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

  







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

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

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

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


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

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

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

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



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

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






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



	

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



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



	
	

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

#stacks_in_1414-wrapper.bkg-solid-color {
	background: rgba(0, 0, 0, 0.84);
}

#stacks_in_1414-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_1414-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_1414-wrapper.custom-corners,
#stacks_in_1414-wrapper.custom-corners > .bkg-overlay.custom-corners,
#stacks_in_1414-wrapper.custom-corners > .filters-layer {
	border-radius: 10px 10px 10px 10px;
}



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


#stacks_in_1414-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_1414-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_1414-wrapper {
	
	
	border-color: var(--bs-secondary) !important;
	
	
	
}








	

	








#stacks_in_1412-wrapper {
	
}

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


/* Advanced Mode */
#stacks_in_1412-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_1412-wrapper.fdy-container {
	max-width: 540px;
  }
}



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



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








#stacks_in_984-margins.margins-easy-presets {
	/* Margin Settings */
	
	
	
	
}

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


#stacks_in_984-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_984-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_491-wrapper,
#stacks_in_491-wrapper > .bkg-overlay {
	overflow: visible;
	z-index: 15;
	position: relative;
}

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

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

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


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

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

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

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



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

#stacks_in_491-wrapper.bkg-image {
	background-image: url(../files/drag-and-drop-img-491.png);
}






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



	

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



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



	
	

#stacks_in_491-wrapper.bkg-preset {
	background: var(--bs-dark);
}

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

#stacks_in_491-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_491-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_491-wrapper.custom-corners,
#stacks_in_491-wrapper.custom-corners > .bkg-overlay.custom-corners,
#stacks_in_491-wrapper.custom-corners > .filters-layer {
	border-radius: 10px 10px 10px 10px;
}



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


#stacks_in_491-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_491-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_491-wrapper {
	
	border-color: rgba(241, 184, 0, 0.45) !important;
	
	
	
	border-width: 10px !important;
	
	
}








	

	








#stacks_in_1419-margins.margins-easy-presets {
	/* Margin Settings */
	
	
	
	
}

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


#stacks_in_1419-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_1419-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) {
	
}






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





h1.stacks_in_510-header {
	
	font-weight: 700;
	
	font-style: italic;
	
	
	font-size: 2.00rem;
	
	
	
	
	
	color: var(--bs-gray-200);
	
	
	

	
	letter-spacing: 20.00px;
	
	
	
}

h1.stacks_in_510-header > small {
	
	font-weight: 500;
	
	
	
	
	
	
	
	color: var(--bs-gray-200);
	
	
	

}



h1.stacks_in_510-header {
	margin-bottom: 0;
}






.spacerStack {
	height: 40.00px;
}

#spacerStackstacks_in_1408 {
	height: 40.00px;
}




















@media print {
	#spacerStackstacks_in_1408 {
		display: none !important;
	}
}



#stacks_in_1406-wrapper {
	
	
	
}









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



.spacerStack {
	height: 20.00px;
}

#spacerStackstacks_in_1411 {
	height: 20.00px;
}




















@media print {
	#spacerStackstacks_in_1411 {
		display: none !important;
	}
}



#stacks_in_1409-wrapper {
	
	
	
}









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



.spacerStack {
	height: 20.00px;
}

#spacerStackstacks_in_1416 {
	height: 20.00px;
}




















@media print {
	#spacerStackstacks_in_1416 {
		display: none !important;
	}
}






#stacks_in_925-margins.margins-easy-presets {
	/* Margin Settings */
	
	
	
	
}

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


#stacks_in_925-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_925-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) {
	
}






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





#stacks_in_1273-wrapper {
	
}

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


/* Advanced Mode */
#stacks_in_1273-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_1273-wrapper.fdy-container {
	max-width: 540px;
  }
}



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



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







:root {
	
    --trans-origin: top left;
	
	
}


#stacks_in_1235-wrapper {
	
	background-color: var(--bs-gray-800);
	
	
	
}

#stacks_in_1235-wrapper,
#stacks_in_1235-wrapper .kinetic-slider {
	position: relative;
	overflow: hidden;
	z-index: 1;
}

#stacks_in_1235-wrapper.custom-corners,
#stacks_in_1235-wrapper.custom-corners .kinetic-slider {
	border-radius: 10px 10px 10px 10px;
}


#stacks_in_1235-wrapper .kinetic-slider .slide {
	position: absolute;
	left: 0px;
	top: 0px;
	width: 100%;
	height: 100%;
	opacity: 0;
	z-index: 2;
  	background-position: center center;
	background-size: cover;
	transition: opacity 1s ease-in-out;
    transform: scale(1.15) rotate(0deg);
}

#stacks_in_1235-wrapper .kinetic-slider .slide.active {
  	opacity: 1;
  	z-index: 3;
	animation: kb-zoom;
	animation-duration: 10000ms;
	animation-timing-function: ease-in-out;
	/* animation-timing-function: steps(10, jump-start); */

}

@-webkit-keyframes kb-zoom {
  0% {
    -webkit-transform-origin: var(--trans-origin);
    transform-origin: var(--trans-origin);
    transform: scale(1.40);
  }
  100% {
    transform: scale(1.15);
  }
}

#stacks_in_1235-wrapper {
	position: relative;
}

#stacks_in_1235-wrapper .kinetic-content {
	position: absolute;
	left: 0px;
	right: 0px;
	top: 0px;
	max-width: 100%;
	z-index: 4;
}

#stacks_in_1235-wrapper.height-responsive .kinetic-content {
	height: 100%;
	align-content: center;
}



#stacks_in_1235-wrapper .kinetic-content {
	display: flex;
	flex-direction: column;
	justify-content: center;
}

#stacks_in_1235-wrapper.height-responsive .kinetic-slider {
	height: 30vh;
}

@media (min-width: 576px) {
	#stacks_in_1235-wrapper.height-responsive .kinetic-slider {
		height: 30vh;
	}
}

@media (min-width: 768px) {
	#stacks_in_1235-wrapper.height-responsive .kinetic-slider {
		height: 30vh;
	}
}

@media (min-width: 992px) {
	#stacks_in_1235-wrapper.height-responsive .kinetic-slider {
		height: 30vh;
	}
}

@media (min-width: 1200px) {
	#stacks_in_1235-wrapper.height-responsive .kinetic-slider {
		height: 30vh;
	}
}

@media (min-width: 1400px) {
	#stacks_in_1235-wrapper.height-responsive .kinetic-slider {
		height: 30vh;
	}
}




#stacks_in_1235-content.solid {
	background: rgba(0, 0, 0, 0.60);
}


#stacks_in_1235-content.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_1235-content.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_1235-wrapper .kinetic-hide {
	opacity: 0;
}

#stacks_in_1235-wrapper .fadeout {
	transition-duration: 1s;
	transition-property: opacity;
	opacity: 0 !important;
	pointer-events: none;
}

#stacks_in_1235-wrapper .fadein {
	transition-delay: 0.25s;
	transition-duration: 1s;
	transition-property: opacity;
	opacity: 1 !important;
}














	.stacks_in_1241-slide {
		background-image: url(../files/drag-and-drop-img-1241.jpg);
	}
	
	
	
		
	











	.stacks_in_1243-slide {
		background-image: url(../files/drag-and-drop-img-1243.png);
	}
	
	
	
		
	











	.stacks_in_1244-slide {
		background-image: url(../files/drag-and-drop-img-1244.jpg);
	}
	
	
	
		
	











	.stacks_in_1245-slide {
		background-image: url(../files/drag-and-drop-img-1245.jpg);
	}
	
	
	
		
	










.stacks_in_1309-alchemy {
	opacity: 0;
}

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

		

		filter: blur(0px);
	}
}

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




h2.stacks_in_1236-header {
	
	font-weight: 700;
	
	
	
	
	
	
	
	
	color: ;
	
	
	

	
	letter-spacing: 5.00px;
	
	
	
}

h2.stacks_in_1236-header > small {
	
	font-weight: 700;
	
	
	
	
	
	
	
	color: ;
	
	
	

}



h2.stacks_in_1236-header {
	margin-bottom: 0;
}






.stacks_in_1236-header {
	font-size: 2.00rem;
}

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

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

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

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

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

.spacerStack {
	height: 15.00px;
}

#spacerStackstacks_in_1284 {
	height: 15.00px;
}




















@media print {
	#spacerStackstacks_in_1284 {
		display: none !important;
	}
}



#stacks_in_1239-wrapper {
	
	
	letter-spacing: 6.00px;
	
	
}









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



.spacerStack {
	height: 25.00px;
}

#spacerStackstacks_in_1248 {
	height: 25.00px;
}




















@media print {
	#spacerStackstacks_in_1248 {
		display: none !important;
	}
}


#stacks_in_1307-animated-divider-wrapper {
	font-size: 0 !important;
	line-height: 0 !important;
	height: 0.25rem;	
}

#stacks_in_1307-animated-divider {
	font-size: 0 !important;
	height: 0.25rem;	
	transition-duration: 2.00s;
	transition-delay: 1.00s;
	transition-property: width;
	transition-timing-function: cubic-bezier(0.34, 1.56, 0.64, 1);
	
	width: 0%;
	
	
	
}


#stacks_in_1307-animated-divider.anim-divider-style {
	
	background-color: var(--bs-gray-100);
	
	
	

	
}


#stacks_in_1307-animated-divider.custom-border-radius {
	border-top-left-radius: 10px;
	border-top-right-radius: 10px;
	border-bottom-right-radius: 10px;
	border-bottom-left-radius: 10px;
}

#stacks_in_1307-animated-divider.anim-div-custom-width {
	width: 80%;
}



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

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

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

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

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

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

.spacerStack {
	height: 5.00px;
}

#spacerStackstacks_in_1308 {
	height: 5.00px;
}




















@media print {
	#spacerStackstacks_in_1308 {
		display: none !important;
	}
}
#usefulStackWrapperstacks_in_1290 {
	margin: 0 auto;
	min-width: 0px;
	max-width: 1200px;
	min-height: 50px;
	max-height: 650px;
	overflow: scroll;
	position: relative;
	
}

#usefulStackstacks_in_1290 {
	padding-bottom: 0%;
	padding-top: 0%;
	padding-left: 0%;
	padding-right: 0%;
	
	margin-bottom: 0%;
	margin-top: 0%;
	margin-left: 0%;
	margin-right: 0%;
	
	display: block;
}








@media screen and (max-width: 100px) {
	#usefulStackstacks_in_1290 {
		display: block;
	}
}













#stacks_in_1290 {
	border: solid rgba(241, 184, 0, 0.45);
	border-width:  1px;
	-moz-border-radius:  10px;
	-webkit-border-radius:  10px;
	border-radius:  10px;
	padding:  10px;
}






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

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

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

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


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

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

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

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



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

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






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



	

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



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



	
	

#stacks_in_1424-wrapper.bkg-preset {
	background: var(--bs-dark);
}

#stacks_in_1424-wrapper.bkg-solid-color {
	background: rgba(0, 0, 0, 0.84);
}

#stacks_in_1424-wrapper.bkg-gradient-two {
	background: rgba(36, 36, 36, 1.00);
	background: linear-gradient(0deg, rgba(36, 36, 36, 1.00) 0%, rgba(0, 0, 0, 1.00) 100%);
}

#stacks_in_1424-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_1424-wrapper.custom-corners,
#stacks_in_1424-wrapper.custom-corners > .bkg-overlay.custom-corners,
#stacks_in_1424-wrapper.custom-corners > .filters-layer {
	border-radius: 10px 10px 10px 10px;
}



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


#stacks_in_1424-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_1424-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_1424-wrapper {
	
	
	border-color: var(--bs-secondary) !important;
	
	
	
}








	

	








#stacks_in_1426-wrapper {
	
	max-width: 80vw;
	
}

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


/* Advanced Mode */
#stacks_in_1426-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_1426-wrapper.fdy-container {
	max-width: 540px;
  }
}



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



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








#stacks_in_1428-margins.margins-easy-presets {
	/* Margin Settings */
	
	
	
	
}

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


#stacks_in_1428-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_1428-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_1430-wrapper.card {
	background: transparent !important;
	overflow: visible !important;
}

#stacks_in_1430-wrapper .card-header {
	
	background-color: var(--bs-gray-500);
	
	
}

#stacks_in_1430-wrapper.custom-radius,
#stacks_in_1430-wrapper .card-body.custom-radius {
	border-radius: 10px 10px 10px 10px;
}

#stacks_in_1430-wrapper .card-body {
	
	border-top-right-radius: 0px !important;
	border-top-left-radius: 0px !important;
	
	
	border-bottom-right-radius: 0px !important;
	border-bottom-left-radius: 0px !important;
	
}

#stacks_in_1430-wrapper .card-body {
	
	background-color: var(--bs-white);
	
	
}



#stacks_in_1430-wrapper .card-img-top.custom-radius .fdy-img,
#stacks_in_1430-wrapper .card-img-top.custom-radius .fdy-card-topper-option,
#stacks_in_1430-wrapper .custom-radius.card-header {
	border-bottom-right-radius: 0px !important;
	border-bottom-left-radius: 0px !important;
}

#stacks_in_1430-wrapper .custom-radius.card-footer {
	border-bottom-left-radius: 10px !important;
	border-bottom-right-radius: 10px !important;
	border-top-right-radius: 0px !important;
	border-top-left-radius: 0px !important;
}


#stacks_in_1430-wrapper .card-img-top:not(.custom-radius) .fdy-img,
#stacks_in_1430-wrapper .card-img-top:not(.custom-radius) .fdy-card-topper-option,
#stacks_in_1430-wrapper .card-header:not(.custom-radius) {
	border-bottom-left-radius: 0px !important;
	border-bottom-right-radius: 0px !important;
}

#stacks_in_1430-wrapper .card-footer:not(.custom-radius) {
	border-top-left-radius: 0px !important;
	border-top-right-radius: 0px !important;
}

#stacks_in_1430-wrapper .card-header h1,
#stacks_in_1430-wrapper .card-header h2,
#stacks_in_1430-wrapper .card-header h3,
#stacks_in_1430-wrapper .card-header h4,
#stacks_in_1430-wrapper .card-header h5,
#stacks_in_1430-wrapper .card-header h6,
#stacks_in_1430-wrapper .card-header p:last-of-type,
#stacks_in_1430-wrapper .card-header small,
#stacks_in_1430-wrapper .card-footer h1,
#stacks_in_1430-wrapper .card-footer h2,
#stacks_in_1430-wrapper .card-footer h3,
#stacks_in_1430-wrapper .card-footer h4,
#stacks_in_1430-wrapper .card-footer h5,
#stacks_in_1430-wrapper .card-footer h6,
#stacks_in_1430-wrapper .card-footer p:last-of-type,
#stacks_in_1430-wrapper .card-footer small {
	margin-bottom: 0 !important;
}

#stacks_in_1430-wrapper.card {
	
	border-color: var(--bs-gray-300) !important;
	
	
}

#stacks_in_1430-wrapper.card.custom-shadow {
	box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.33);
}

#stacks_in_1430-wrapper.card.custom-shadow-hover:hover {
	box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.33) !important;
}


#stacks_in_1430-wrapper.card,
#stacks_in_1430-wrapper.card.custom-shadow,
#stacks_in_1430-wrapper.card.custom-shadow-hover:hover {
	transition-duration: 250ms;
	transition-property: box-shadow;
}


#stacks_in_1430-wrapper > .card-body.custom-padding {
	padding: 2.00rem;
}

#stacks_in_1430-wrapper .card-footer {
	
		
		background-color: var(--bs-gray-400);
		
		
	
}


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

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

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

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

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

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

 

#stacks_in_1430-wrapper img {
 	margin: 0 !important;
 }
 


h4.stacks_in_1436-header {
	
	font-weight: 500;
	
	
	
	
	
	
	color: rgba(32, 37, 41, 1.00);
	
	
	
	
	

	
	letter-spacing: 0.00px;
	
	
	
}

h4.stacks_in_1436-header > small {
	
	font-weight: 700;
	
	
	
	
	
	
	
	color: ;
	
	
	

}



h4.stacks_in_1436-header {
	margin-bottom: 0;
}









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

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

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

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

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

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



.stacks_in_1454.fdy-img {
	
	
	

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


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

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




#stacks_in_1432-wrapper {
	
	font-weight: 600;
	
	
	
}

#stacks_in_1432-wrapper > p {
	margin: 0;
	padding: 0;
}

#stacks_in_1432-wrapper {
	
	color: rgba(32, 37, 41, 1.00);
	
	
	
}



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

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

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

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

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

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



#stacks_in_1439-wrapper {
	
}

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


/* Advanced Mode */
#stacks_in_1439-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_1439-wrapper.fdy-container {
	max-width: 540px;
  }
}



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



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











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






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

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

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

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

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

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



.stacks_in_1444.fdy-img {
	
	
	

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


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

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





	.col.stacks_in_1446-col {
		display: flex;
		flex-direction: column;
		justify-content: center !important;
	}
	
	







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

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

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

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

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

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



.stacks_in_1449.fdy-img {
	
	
	

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


.stacks_in_1449.fdy-img.img-upscale {
	width: 100%;
	height: auto;
}
	
	
.stacks_in_1449.fdy-img.img-custom-pct {
	width: 70%;
	height: auto;
}

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







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

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

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

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

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

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



.stacks_in_1452.fdy-img {
	
	
	

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


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

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


.spacerStack {
	height: 90.00px;
}

#spacerStackstacks_in_1458 {
	height: 90.00px;
}




















@media print {
	#spacerStackstacks_in_1458 {
		display: none !important;
	}
}
