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





















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



mark, 
.mark {
	
	
}

kbd, 
.kbd {
	
	
}



a, 
a:hover {
	
	
	color: rgba(153, 0, 0, 1.00);
	
	
	
		
		
		text-decoration-color: rgba(153, 0, 0, 1.00);
		
	text-decoration-thickness: 0.05rem;
	text-underline-offset: 1.00px;
	
	
	
}

a:hover {
	
	
	color: rgba(153, 0, 0, 0.81);
	


	
		
		
		text-decoration-color: rgba(153, 0, 0, 0.82);
		
	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: #4C5F5B;
  --bs-secondary: #DFE1E1;
  --bs-success: #465775;
  --bs-danger: #909261;
  --bs-warning: #E67E22;
  --bs-info: #B1B3B3;
}







  

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

  






  

    .foundry-typeface-one {
      font-family: 'Helvetica', 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: 'Helvetica', 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: 'Helvetica', sans-serif !important;
    }

  






  

    .foundry-typeface-three {
      font-family: 'Helvetica', sans-serif;
      font-weight: 700;
      
    }

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

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

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

  






  

    .foundry-typeface-four {
      font-family: 'Helvetica', sans-serif;
      font-weight: 500;
      
    }

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

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

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

  

/* Start Obscure Email stack CSS code */.stacks_in_88403_34topbar {	background-color: #3D82EA;	-moz-border-radius-topleft: 5px;	-webkit-border-top-left-radius: 5px;	border-top-left-radius: 5px;	-moz-border-radius-topright: 5px;	-webkit-border-top-right-radius: 5px;	border-top-right-radius: 5px;	-moz-box-shadow:inset 0px 0px 0px rgba(0,0,0,1);	-webkit-box-shadow:inset 0px 0px 0px rgba(0,0,0,1);	box-shadow:inset 0px 0px 0px rgba(0,0,0,1);	border: 3px solid #0861B3;	border-bottom: none;	padding: 6px 3px 2px 10px;	min-height: 40px;	font-weight: bold;	font-size: 16px;	color: #ffffff;	}.stacks_in_88403_34mainarea {	background-color: #ffffff;	-moz-border-radius-bottomleft: 5px;	-webkit-border-bottom-left-radius: 5px;	border-bottom-left-radius: 5px;	-moz-border-radius-bottomright: 5px;	-webkit-border-bottom-right-radius: 5px;	border-bottom-right-radius: 5px;	-moz-box-shadow:inset 0px 0px 0px rgba(0,0,0,1);	-webkit-box-shadow:inset 0px 0px 0px rgba(0,0,0,1);	box-shadow:inset 0px 0px 0px rgba(0,0,0,1);	border: 3px solid #0861B3;	border-top: none;	padding: 10px;}.stacks_in_88403_34small{font-weight: normal;font-size: 12px;}.stacks_in_88403_34centerbox {	background-color: #ffffff;	border: 1px solid #CDDACF;	-moz-border-radius: 4px;	-webkit-border-radius: 4px;	border-radius: 4px;	padding: 10px;	color: #333;}.stacks_in_88403_34centerbox b {	color: #DA0140;}/* End Obscure Email stack CSS code */


	
	 
	.red-para p  {

		

		
		
		

		

		

		

		
			

		
		

		
		
		
		
		

		

		

		

		

		
			/* Font Size */
			font-size: 0.90rem ;
		
		
		
		
		

		
			/* Font Weight */
			font-weight: 500 ;
		
		
		
		
		

		
		
		

		

		

		
		
				

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

		


		

		

		

		/* Transform */
		transform:          ;
		
		

		
		
		

		
		
		
	}
	



/* Background Image - Retina */








	
	 
	.line-height li  {

		

		
		
		

		

		

		

		
			

		
		

		
		
		
		
		

		

		

		

		

		
		
		
			/* Font Spacing: Line Height*/
			line-height: 3.50 ;
		
		
		

		
		
		
		
		

		
		
		

		

		

		
		
				

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

		


		

		

		

		/* Transform */
		transform:          ;
		
		

		
		
		

		
		
		
	}
	



/* Background Image - Retina */









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

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

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

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


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

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

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

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



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

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






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



	

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



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



	
	

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

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

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



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


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








	

	








#stacks_in_88597-wrapper {
	
	max-width: 800px;
	
}

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


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



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



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








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

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


#stacks_in_88599-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_88599-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_88601-wrapper .col {
		
  		flex: 0 0 auto;
  		width: 100%;
	  
	}
	
}





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

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


#stacks_in_88605-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_88605-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) {
	
}



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

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

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

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

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

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



.stacks_in_88607.fdy-img {
	
	
	
	
	
	border-color: var(--bs-dark) !important;
	
	
	
}


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

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






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

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


#stacks_in_88610-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_88610-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) {
	
}



h3.stacks_in_88612-header {
	
	
	
	
	
	
	
	
	color: ;
	
	
	

	
	margin: 0;
	
	letter-spacing: 0.00px;
	
	
	
}

h3.stacks_in_88612-header > small {
	
	
	
	
	
	
	
	color: ;
	
	
	

}



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

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

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

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

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

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







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

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


#stacks_in_88615-animated-divider.anim-divider-style {
	
	background-color: var(--bs-primary);
	
	
	

	
}


#stacks_in_88615-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_88615-animated-divider.anim-div-custom-width {
	width: 80%;
}



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

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

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

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

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

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



#stacks_in_88616-wrapper {
	
	
	
}









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








#stacks_in_88653_67-wrapper {
	
}

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


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



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



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











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





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

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


#stacks_in_88653_73-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_88653_73-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) {
	
}




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

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

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

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

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

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


.stacks_in_88653_75.fdy-img {
	overflow: hidden;
	
	
	

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


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

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

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

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

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

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






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

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


#stacks_in_88653_78-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_88653_78-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_88653_80-wrapper {
	
	
	
		
		
		color: var(--bs-primary);
		
	
}









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





#stacks_in_88653_83-wrapper {
	
	
	
		
		
		color: var(--bs-primary);
		
	
}









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




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

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

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

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


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

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

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

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



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

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






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



	

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



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



	
	

#stacks_in_88653_70-wrapper.bkg-preset {
	background: var(--bs-primary);
}

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

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



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


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








	

	








#stacks_in_88653_85-wrapper {
	
	max-width: 1200px;
	
}

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


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



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



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





 

html {
	-webkit-scroll-behavior: smooth;
	scroll-behavior: smooth;
}

#stacks_in_88653_87-navbar {
	z-index: 1040 !important;
}

.stacks_in_88653_87-navbar *:focus {
	outline: none !important;
}

#stacks_in_88653_87-navbar .branding-link {
	text-decoration: none !important;
}

/* Animate Navigation Bar on Page Load */
/* #stacks_in_88653_87-navbar {
	
	animation: fdy-fadeIn;
	animation-duration: 0.5s;
	
} */


.fdy-fixed-nav #stacks_in_88653_87-navbar {
	position: fixed;
	top: 0 !important;
	left: 0 !important;
	right: 0 !important;
}	


#stacks_in_88653_87-navbar {
	
	
	
}

#stacks_in_88653_87-navbar.fdy-unstuck {
	
	
	
}

#stacks_in_88653_87-navbar.fdy-stuck {
	
	
	
}

@keyframes fdyNavHeight{
  from {
  	height: 100px;
  }
  to {
	height: 90px;
  }
}

@keyframes fdyNavHeightRv{
  from {
	height: 90px;
  }
  to {
	  height: 100px;
  }
}



#stacks_in_88653_87-navbar {	
	
	background: var(--bs-primary);
	
	
	
	
}

#stacks_in_88653_87-navbar.fdy-stuck {
	
	background: var(--bs-gray-100);
	
	

	
}

#stacks_in_88653_87-navbar .fdy-sticky-logo {
	display: none;
}








#stacks_in_88653_87-navbar .fdy-normal-logo {
	width: 36px;
	height: auto;
}

#stacks_in_88653_87-navbar .fdy-sticky-logo {
	width: 36px;
	height: auto;
}

@media (min-width: 576px) {
	#stacks_in_88653_87-navbar .fdy-normal-logo {
		width: 36px;
		height: auto;
	}
	
	#stacks_in_88653_87-navbar .fdy-sticky-logo {
		width: 36px;
		height: auto;
	}
}

@media (min-width: 768px) {
	#stacks_in_88653_87-navbar .fdy-normal-logo {
		width: 36px;
		height: auto;
	}
	
	#stacks_in_88653_87-navbar .fdy-sticky-logo {
		width: 36px;
		height: auto;
	}
}

@media (min-width: 992px) {
	#stacks_in_88653_87-navbar .fdy-normal-logo {
		width: 48px;
		height: auto;
	}
	
	#stacks_in_88653_87-navbar .fdy-sticky-logo {
		width: 48px;
		height: auto;
	}
}

@media (min-width: 1200px) {
	#stacks_in_88653_87-navbar .fdy-normal-logo {
		width: 48px;
		height: auto;
	}
	
	#stacks_in_88653_87-navbar .fdy-sticky-logo {
		width: 48px;
		height: auto;
	}
}

@media (min-width: 1400px) {
	#stacks_in_88653_87-navbar .fdy-normal-logo {
		width: 48px;
		height: auto;
	}
	
	#stacks_in_88653_87-navbar .fdy-sticky-logo {
		width: 48px;
		height: auto;
	}
}






/* Navigation Bar Styling */
#stacks_in_88653_87-navbar {
	
	
	border-color: var(--bs-gray-200) !important;
	
}

#stacks_in_88653_87-navbar.fdy-stuck {
	
	
	border-color: var(--bs-gray-200) !important;
	
}

#stacks_in_88653_87-navbar.custom-shadow {
	box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.33);
}

#stacks_in_88653_87-navbar.custom-shadow-sticky {
	box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.33);
}

/* Branding */
#stacks_in_88653_87-navbar .branding-site-title {
	font-weight: 700;
	
	color: var(--bs-white);
	
	
	letter-spacing: 0.00px;	
}

#stacks_in_88653_87-navbar.fdy-stuck .branding-site-title {
	
	color: var(--bs-gray-500);
	
	
}

#stacks_in_88653_87-navbar .branding-site-title {
	font-size: 1.25rem;
}

@media (min-width: 576px) {
	#stacks_in_88653_87-navbar .branding-site-title {
		font-size: 1.25rem;
	}
}

@media (min-width: 768px) {
	#stacks_in_88653_87-navbar .branding-site-title {
		font-size: 1.25rem;
	}
}

@media (min-width: 992px) {
	#stacks_in_88653_87-navbar .branding-site-title {
		font-size: 1.50rem;
	}
}

@media (min-width: 1200px) {
	#stacks_in_88653_87-navbar .branding-site-title {
		font-size: 1.50rem;
	}
}

@media (min-width: 1400px) {
	#stacks_in_88653_87-navbar .branding-site-title {
		font-size: 1.50rem;
	}
}


/* Navigation Items */

#stacks_in_88653_87-navbar .navbar-nav .nav-item a.nav-link {
	
	border-top-left-radius: 4px;
	border-top-right-radius: 4px;
	border-bottom-left-radius: 4px;
	border-bottom-right-radius: 4px;
	margin-left: 1px;
	margin-right: 1px;
}



#stacks_in_88653_87-navbar .navbar-nav .nav-item:first-child a.nav-link {
	margin-left: 0px;
}

#stacks_in_88653_87-navbar .navbar-nav .nav-item:last-child a.nav-link {
	margin-right: 0px;
}

#stacks_in_88653_87-navbar .navbar-nav .nav-item a.nav-link,
#stacks_in_88653_87-navbar .navbar-nav .nav-item a.nav-link:visited {
	font-weight: 400;
	
	color: var(--bs-white);
	
	
	
}

#stacks_in_88653_87-navbar .navbar-nav .nav-item a.nav-link.active {
	font-weight: 700;
}

#stacks_in_88653_87-navbar .navbar-nav .nav-item a.nav-link.active,
#stacks_in_88653_87-navbar .navbar-nav .nav-item a.nav-link.show,
#stacks_in_88653_87-navbar .navbar-nav .nav-item a.nav-link:hover {
	
	color: var(--bs-white);
	
	
	
	
	background-color: var(--bs-gray-500);
	
	
}


#stacks_in_88653_87-navbar.fdy-stuck .navbar-nav .nav-item a.nav-link,
#stacks_in_88653_87-navbar.fdy-stuck .navbar-nav .nav-item a.nav-link:visited {
	font-weight: ;
	
	
	color: var(--bs-gray-500);
	
}

#stacks_in_88653_87-navbar.fdy-stuck .navbar-nav .nav-item a.nav-link.active,
#stacks_in_88653_87-navbar.fdy-stuck .navbar-nav .nav-item a.nav-link.show,
#stacks_in_88653_87-navbar.fdy-stuck .navbar-nav .nav-item a.nav-link:hover {
	
	
	color: var(--bs-white);
	
	
	
	
	background-color: var(--bs-gray-500);
	
}


/* Drop Down */
#stacks_in_88653_87-navbar .nav-item.dropdown .dropdown-menu {
	
	background-color: var(--bs-primary);
	
	
}

#stacks_in_88653_87-navbar .nav-item.dropdown .dropdown-menu {
	
		
	border-color: var(--bs-primary);
	
	
}

#stacks_in_88653_87-navbar .nav-item.dropdown .dropdown-menu.no-drop-down-border {
	border: none !important;
}

#stacks_in_88653_87-navbar .nav-item.dropdown a.dropdown-item,
#stacks_in_88653_87-navbar .nav-item.dropdown a.dropdown-item:visited {
	
	
	color: var(--bs-white);
	
}

#stacks_in_88653_87-navbar .nav-item.dropdown a.dropdown-item.active,
#stacks_in_88653_87-navbar .nav-item.dropdown a.dropdown-item:hover {
	
	
	color: var(--bs-dark);
	

	
	
	background-color: var(--bs-secondary);
	
}

#stacks_in_88653_87-navbar .drop-down-indicator {
  line-height: 1.4rem;
}

#stacks_in_88653_87-navbar.fdy-stuck .nav-item.dropdown .dropdown-menu {
	
	
	background-color: var(--bs-white);
	

}

#stacks_in_88653_87-navbar.fdy-stuck .nav-item.dropdown .dropdown-menu {
	
	
	border-color: var(--bs-gray-200) !important;
	

	
}

#stacks_in_88653_87-navbar.fdy-stuck .nav-item.dropdown a.dropdown-item,
#stacks_in_88653_87-navbar.fdy-stuck .nav-item.dropdown a.dropdown-item:visited {
	
	
	color: var(--bs-gray-500);
	
}

#stacks_in_88653_87-navbar.fdy-stuck .nav-item.dropdown a.dropdown-item.active,
#stacks_in_88653_87-navbar.fdy-stuck .nav-item.dropdown a.dropdown-item:hover {
	
	
	color: var(--bs-white);
	

	
	
	background-color: var(--bs-gray-500);
	
}

#stacks_in_88653_87-navbar hr.dropdown-divider {
	opacity: 1 !important;
	
	
	color: var(--bs-gray-200);
	border-color: var(--bs-gray-200);
		
}

#stacks_in_88653_87-navbar.fdy-stuck hr.dropdown-divider {
	opacity: 1 !important;
	
	
	color: var(--bs-gray-200);
	border-color: var(--bs-gray-200);
		
}

#stacks_in_88653_87-navbar .small-header h6 {
	opacity: 1 !important;
	
	
	color: var(--bs-gray-400);
	
}

#stacks_in_88653_87-navbar.fdy-stuck .small-header h6 {
	opacity: 1 !important;
	
	
	color: var(--bs-gray-400);
	
}


/* Inner Max-Width - Similar to Max-Width stack */


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



#stacks_in_88653_87-navbar.navbar-light .navbar-toggler {
	
	
		border-color: var(--bs-secondary);
		color: var(--bs-secondary);
	
}

#stacks_in_88653_87-navbar.navbar-light .navbar-toggler.collapsed {
	
	
		border-color: var(--bs-white);
		color: var(--bs-white);
	
}

#stacks_in_88653_87-navbar.fdy-stuck.navbar-light .navbar-toggler {
	
	
		border-color: var(--bs-secondary);
		color: var(--bs-secondary);
	
}

#stacks_in_88653_87-navbar.fdy-stuck.navbar-light .navbar-toggler.collapsed {
	
	
		border-color: var(--bs-gray-500) !important;
		color: var(--bs-gray-500) !important;
	
}	

#stacks_in_88653_87-navbar.navbar-light .navbar-toggler-icon {
  background-image: none;
}


	

	

	
 

#stacks_in_88653_87-navbar .dropdown-menu {
	
}






@media (max-width: 767px) {







	#stacks_in_88653_87-navbar,
	#stacks_in_88653_87-navbar.fdy-stuck {
		height: initial !important;
	}

	#stacks_in_88653_87-navbar .dropdown-menu {
		display: none !important;
		
	}

	#stacks_in_88653_87-navbar .show {
		animation: none !important;
		animation-duration: 0s !important;
		display: block !important;
		opacity: 1 !important;
	}
	
}




#stacks_in_88653_87-navbar .navbar-nav .dropdown a.dropdown-item {
	
}







.stacks_in_88653_108-item .badge-nav-inline {
	position: relative;
	top: -2px;
}

.stacks_in_88653_108-item .badge {
	color: rgba(255, 255, 255, 1.00);
	
	background: var(--bs-danger);
	
	
	

	

	color: rgba(255, 255, 255, 1.00);
}


.stacks_in_88653_108-item > a.nav-link.custom-shadow {
	box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.33);
}

.stacks_in_88653_108-item.nav-item a.nav-link,
.stacks_in_88653_108-item.nav-item a.nav-link:visited {
	transition-duration: 0.15s;
	transition-property: none;
		
	
	
	
	
}

.stacks_in_88653_108-item.nav-item a.nav-link.active,
.stacks_in_88653_108-item.nav-item a.nav-link.show,
.stacks_in_88653_108-item.nav-item a.nav-link:hover {
	transition-duration: 0.15s;
	transition-property: none;
	
		
	

	
}


.fdy-stuck .stacks_in_88653_108-item.nav-item a.nav-link,
.fdy-stuck .stacks_in_88653_108-item.nav-item a.nav-link:visited {
		
	
	
}

.fdy-stuck .stacks_in_88653_108-item.nav-item a.nav-link.active,
.fdy-stuck .stacks_in_88653_108-item.nav-item a.nav-link.show,
.fdy-stuck .stacks_in_88653_108-item.nav-item a.nav-link:hover {
	
		
	
}



.stacks_in_88653_89-item .badge-nav-inline {
	position: relative;
	top: -2px;
}

.stacks_in_88653_89-item .badge {
	color: rgba(255, 255, 255, 1.00);
	
	background: var(--bs-danger);
	
	
	

	

	color: rgba(255, 255, 255, 1.00);
}


.stacks_in_88653_89-item > a.nav-link.custom-shadow {
	box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.33);
}

.stacks_in_88653_89-item > ul.dropdown-menu.custom-shadow {
	box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.33);
}


.stacks_in_88653_89-item.nav-item a.nav-link,
.stacks_in_88653_89-item.nav-item a.nav-link:visited {
	
		
		
		color: var(--bs-white) !important;
			
		
	
	
}

.stacks_in_88653_89-item.nav-item a.nav-link.active,
.stacks_in_88653_89-item.nav-item a.nav-link.show,
.stacks_in_88653_89-item.nav-item a.nav-link:hover {
	
		
	
}


.fdy-stuck .stacks_in_88653_89-item.nav-item a.nav-link,
.fdy-stuck .stacks_in_88653_89-item.nav-item a.nav-link:visited {
		
	
	
}

.fdy-stuck .stacks_in_88653_89-item.nav-item a.nav-link.active,
.fdy-stuck .stacks_in_88653_89-item.nav-item a.nav-link.show,
.fdy-stuck .stacks_in_88653_89-item.nav-item a.nav-link:hover {
	
		
	
}


.stacks_in_88653_89-item > ul.dropdown-menu {
	
		
	
	
}

.stacks_in_88653_89-item > ul.dropdown-menu.show {
	pointer-events: initial;
	opacity: 1;
	
	
		
	
}



.stacks_in_88653_91-item .badge {
	position: relative;
	top: -2px;
}

.stacks_in_88653_91-item .badge {
	
	background: var(--bs-danger);
	
	
	

	

	color: rgba(255, 255, 255, 1.00);
}


.stacks_in_88653_91-item a.dropdown-item,
.stacks_in_88653_91-item a.dropdown-item:visited {
	transition-duration: 0.15s;
	transition-property: none;
		
	
	
}

.stacks_in_88653_91-item a.dropdown-item.active,
.stacks_in_88653_91-item a.dropdown-item.show,
.stacks_in_88653_91-item a.dropdown-item:hover {
	transition-duration: 0.15s;
	transition-property: none;
	
		
	
}

.fdy-stuck .stacks_in_88653_91-item a.dropdown-item,
.fdy-stuck .stacks_in_88653_91-item a.dropdown-item:visited {
		
	
	
}

.fdy-stuck .stacks_in_88653_91-item a.dropdown-item.active,
.fdy-stuck .stacks_in_88653_91-item a.dropdown-item.show,
.fdy-stuck .stacks_in_88653_91-item a.dropdown-item:hover {
	
		
	
}



.stacks_in_88653_93-item .badge {
	position: relative;
	top: -2px;
}

.stacks_in_88653_93-item .badge {
	
	background: var(--bs-danger);
	
	
	

	

	color: rgba(255, 255, 255, 1.00);
}


.stacks_in_88653_93-item a.dropdown-item,
.stacks_in_88653_93-item a.dropdown-item:visited {
	transition-duration: 0.15s;
	transition-property: none;
		
	
	
}

.stacks_in_88653_93-item a.dropdown-item.active,
.stacks_in_88653_93-item a.dropdown-item.show,
.stacks_in_88653_93-item a.dropdown-item:hover {
	transition-duration: 0.15s;
	transition-property: none;
	
		
	
}

.fdy-stuck .stacks_in_88653_93-item a.dropdown-item,
.fdy-stuck .stacks_in_88653_93-item a.dropdown-item:visited {
		
	
	
}

.fdy-stuck .stacks_in_88653_93-item a.dropdown-item.active,
.fdy-stuck .stacks_in_88653_93-item a.dropdown-item.show,
.fdy-stuck .stacks_in_88653_93-item a.dropdown-item:hover {
	
		
	
}



.stacks_in_88653_94-item .badge {
	position: relative;
	top: -2px;
}

.stacks_in_88653_94-item .badge {
	
	background: var(--bs-danger);
	
	
	

	

	color: rgba(255, 255, 255, 1.00);
}


.stacks_in_88653_94-item a.dropdown-item,
.stacks_in_88653_94-item a.dropdown-item:visited {
	transition-duration: 0.15s;
	transition-property: none;
		
	
	
}

.stacks_in_88653_94-item a.dropdown-item.active,
.stacks_in_88653_94-item a.dropdown-item.show,
.stacks_in_88653_94-item a.dropdown-item:hover {
	transition-duration: 0.15s;
	transition-property: none;
	
		
	
}

.fdy-stuck .stacks_in_88653_94-item a.dropdown-item,
.fdy-stuck .stacks_in_88653_94-item a.dropdown-item:visited {
		
	
	
}

.fdy-stuck .stacks_in_88653_94-item a.dropdown-item.active,
.fdy-stuck .stacks_in_88653_94-item a.dropdown-item.show,
.fdy-stuck .stacks_in_88653_94-item a.dropdown-item:hover {
	
		
	
}



.stacks_in_88653_95-item .badge {
	position: relative;
	top: -2px;
}

.stacks_in_88653_95-item .badge {
	
	background: var(--bs-danger);
	
	
	

	

	color: rgba(255, 255, 255, 1.00);
}


.stacks_in_88653_95-item a.dropdown-item,
.stacks_in_88653_95-item a.dropdown-item:visited {
	transition-duration: 0.15s;
	transition-property: none;
		
	
	
}

.stacks_in_88653_95-item a.dropdown-item.active,
.stacks_in_88653_95-item a.dropdown-item.show,
.stacks_in_88653_95-item a.dropdown-item:hover {
	transition-duration: 0.15s;
	transition-property: none;
	
		
	
}

.fdy-stuck .stacks_in_88653_95-item a.dropdown-item,
.fdy-stuck .stacks_in_88653_95-item a.dropdown-item:visited {
		
	
	
}

.fdy-stuck .stacks_in_88653_95-item a.dropdown-item.active,
.fdy-stuck .stacks_in_88653_95-item a.dropdown-item.show,
.fdy-stuck .stacks_in_88653_95-item a.dropdown-item:hover {
	
		
	
}


.stacks_in_88653_96-item .badge-nav-inline {
	position: relative;
	top: -2px;
}

.stacks_in_88653_96-item .badge {
	color: rgba(255, 255, 255, 1.00);
	
	background: var(--bs-danger);
	
	
	

	

	color: rgba(255, 255, 255, 1.00);
}


.stacks_in_88653_96-item > a.nav-link.custom-shadow {
	box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.33);
}

.stacks_in_88653_96-item > ul.dropdown-menu.custom-shadow {
	box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.33);
}


.stacks_in_88653_96-item.nav-item a.nav-link,
.stacks_in_88653_96-item.nav-item a.nav-link:visited {
		
	
	
}

.stacks_in_88653_96-item.nav-item a.nav-link.active,
.stacks_in_88653_96-item.nav-item a.nav-link.show,
.stacks_in_88653_96-item.nav-item a.nav-link:hover {
	
		
	
}


.fdy-stuck .stacks_in_88653_96-item.nav-item a.nav-link,
.fdy-stuck .stacks_in_88653_96-item.nav-item a.nav-link:visited {
		
	
	
}

.fdy-stuck .stacks_in_88653_96-item.nav-item a.nav-link.active,
.fdy-stuck .stacks_in_88653_96-item.nav-item a.nav-link.show,
.fdy-stuck .stacks_in_88653_96-item.nav-item a.nav-link:hover {
	
		
	
}


.stacks_in_88653_96-item > ul.dropdown-menu {
	
		
	
	
}

.stacks_in_88653_96-item > ul.dropdown-menu.show {
	pointer-events: initial;
	opacity: 1;
	
	
		
	
}



.stacks_in_88653_97-item .badge {
	position: relative;
	top: -2px;
}

.stacks_in_88653_97-item .badge {
	
	background: var(--bs-danger);
	
	
	

	

	color: rgba(255, 255, 255, 1.00);
}


.stacks_in_88653_97-item a.dropdown-item,
.stacks_in_88653_97-item a.dropdown-item:visited {
	transition-duration: 0.15s;
	transition-property: none;
		
	
	
}

.stacks_in_88653_97-item a.dropdown-item.active,
.stacks_in_88653_97-item a.dropdown-item.show,
.stacks_in_88653_97-item a.dropdown-item:hover {
	transition-duration: 0.15s;
	transition-property: none;
	
		
	
}

.fdy-stuck .stacks_in_88653_97-item a.dropdown-item,
.fdy-stuck .stacks_in_88653_97-item a.dropdown-item:visited {
		
	
	
}

.fdy-stuck .stacks_in_88653_97-item a.dropdown-item.active,
.fdy-stuck .stacks_in_88653_97-item a.dropdown-item.show,
.fdy-stuck .stacks_in_88653_97-item a.dropdown-item:hover {
	
		
	
}



.stacks_in_88653_99-item .badge {
	position: relative;
	top: -2px;
}

.stacks_in_88653_99-item .badge {
	
	background: var(--bs-danger);
	
	
	

	

	color: rgba(255, 255, 255, 1.00);
}


.stacks_in_88653_99-item a.dropdown-item,
.stacks_in_88653_99-item a.dropdown-item:visited {
	transition-duration: 0.15s;
	transition-property: none;
		
	
	
}

.stacks_in_88653_99-item a.dropdown-item.active,
.stacks_in_88653_99-item a.dropdown-item.show,
.stacks_in_88653_99-item a.dropdown-item:hover {
	transition-duration: 0.15s;
	transition-property: none;
	
		
	
}

.fdy-stuck .stacks_in_88653_99-item a.dropdown-item,
.fdy-stuck .stacks_in_88653_99-item a.dropdown-item:visited {
		
	
	
}

.fdy-stuck .stacks_in_88653_99-item a.dropdown-item.active,
.fdy-stuck .stacks_in_88653_99-item a.dropdown-item.show,
.fdy-stuck .stacks_in_88653_99-item a.dropdown-item:hover {
	
		
	
}



.stacks_in_88653_100-item .badge {
	position: relative;
	top: -2px;
}

.stacks_in_88653_100-item .badge {
	
	background: var(--bs-danger);
	
	
	

	

	color: rgba(255, 255, 255, 1.00);
}


.stacks_in_88653_100-item a.dropdown-item,
.stacks_in_88653_100-item a.dropdown-item:visited {
	transition-duration: 0.15s;
	transition-property: none;
		
	
	
}

.stacks_in_88653_100-item a.dropdown-item.active,
.stacks_in_88653_100-item a.dropdown-item.show,
.stacks_in_88653_100-item a.dropdown-item:hover {
	transition-duration: 0.15s;
	transition-property: none;
	
		
	
}

.fdy-stuck .stacks_in_88653_100-item a.dropdown-item,
.fdy-stuck .stacks_in_88653_100-item a.dropdown-item:visited {
		
	
	
}

.fdy-stuck .stacks_in_88653_100-item a.dropdown-item.active,
.fdy-stuck .stacks_in_88653_100-item a.dropdown-item.show,
.fdy-stuck .stacks_in_88653_100-item a.dropdown-item:hover {
	
		
	
}


.stacks_in_88653_101-item .badge-nav-inline {
	position: relative;
	top: -2px;
}

.stacks_in_88653_101-item .badge {
	color: rgba(255, 255, 255, 1.00);
	
	background: var(--bs-danger);
	
	
	

	

	color: rgba(255, 255, 255, 1.00);
}


.stacks_in_88653_101-item > a.nav-link.custom-shadow {
	box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.33);
}

.stacks_in_88653_101-item > ul.dropdown-menu.custom-shadow {
	box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.33);
}


.stacks_in_88653_101-item.nav-item a.nav-link,
.stacks_in_88653_101-item.nav-item a.nav-link:visited {
		
	
	
}

.stacks_in_88653_101-item.nav-item a.nav-link.active,
.stacks_in_88653_101-item.nav-item a.nav-link.show,
.stacks_in_88653_101-item.nav-item a.nav-link:hover {
	
		
	
}


.fdy-stuck .stacks_in_88653_101-item.nav-item a.nav-link,
.fdy-stuck .stacks_in_88653_101-item.nav-item a.nav-link:visited {
		
	
	
}

.fdy-stuck .stacks_in_88653_101-item.nav-item a.nav-link.active,
.fdy-stuck .stacks_in_88653_101-item.nav-item a.nav-link.show,
.fdy-stuck .stacks_in_88653_101-item.nav-item a.nav-link:hover {
	
		
	
}


.stacks_in_88653_101-item > ul.dropdown-menu {
	
		
	
	
}

.stacks_in_88653_101-item > ul.dropdown-menu.show {
	pointer-events: initial;
	opacity: 1;
	
	
		
	
}



.stacks_in_88653_102-item .badge {
	position: relative;
	top: -2px;
}

.stacks_in_88653_102-item .badge {
	
	background: var(--bs-danger);
	
	
	

	

	color: rgba(255, 255, 255, 1.00);
}


.stacks_in_88653_102-item a.dropdown-item,
.stacks_in_88653_102-item a.dropdown-item:visited {
	transition-duration: 0.15s;
	transition-property: none;
		
	
	
}

.stacks_in_88653_102-item a.dropdown-item.active,
.stacks_in_88653_102-item a.dropdown-item.show,
.stacks_in_88653_102-item a.dropdown-item:hover {
	transition-duration: 0.15s;
	transition-property: none;
	
		
	
}

.fdy-stuck .stacks_in_88653_102-item a.dropdown-item,
.fdy-stuck .stacks_in_88653_102-item a.dropdown-item:visited {
		
	
	
}

.fdy-stuck .stacks_in_88653_102-item a.dropdown-item.active,
.fdy-stuck .stacks_in_88653_102-item a.dropdown-item.show,
.fdy-stuck .stacks_in_88653_102-item a.dropdown-item:hover {
	
		
	
}



.stacks_in_88653_104-item .badge {
	position: relative;
	top: -2px;
}

.stacks_in_88653_104-item .badge {
	
	background: var(--bs-danger);
	
	
	

	

	color: rgba(255, 255, 255, 1.00);
}


.stacks_in_88653_104-item a.dropdown-item,
.stacks_in_88653_104-item a.dropdown-item:visited {
	transition-duration: 0.15s;
	transition-property: none;
		
	
	
}

.stacks_in_88653_104-item a.dropdown-item.active,
.stacks_in_88653_104-item a.dropdown-item.show,
.stacks_in_88653_104-item a.dropdown-item:hover {
	transition-duration: 0.15s;
	transition-property: none;
	
		
	
}

.fdy-stuck .stacks_in_88653_104-item a.dropdown-item,
.fdy-stuck .stacks_in_88653_104-item a.dropdown-item:visited {
		
	
	
}

.fdy-stuck .stacks_in_88653_104-item a.dropdown-item.active,
.fdy-stuck .stacks_in_88653_104-item a.dropdown-item.show,
.fdy-stuck .stacks_in_88653_104-item a.dropdown-item:hover {
	
		
	
}



#stacks_in_88278-wrapper {
	
}

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


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



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



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








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

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


#stacks_in_88280-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_88280-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_88282-wrapper .col {
		
  		flex: 0 0 auto;
  		width: 100%;
	  
	}
	
}





#stacks_in_88290-wrapper {
	
	
	
}









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





#stacks_in_88297-wrapper {
	
	
	
}









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







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

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

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

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

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

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



.stacks_in_88275.fdy-img {
	
	
	
	
	
	border-color: var(--bs-dark) !important;
	
	
	
}


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

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






#stacks_in_88620-wrapper {
	
	max-width: 900px;
	
}

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


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



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



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











#stacks_in_88288-wrapper {
	
	
	
}









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








#stacks_in_88339-wrapper {
	
}

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


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



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



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








h4.stacks_in_88341-header {
	
	
	
	
	
	
	
	
	color: ;
	
	
	

	
	margin: 0;
	
	letter-spacing: 0.00px;
	
	
	
}

h4.stacks_in_88341-header > small {
	
	
	
	
	
	
	
	color: ;
	
	
	

}



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

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

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

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

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

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









#stacks_in_88344-wrapper .slipstream-bottom-fade {
	height: 50px;
	background: linear-gradient(180deg, rgba(255,255,255,0), rgba(255,255,255,1));
	position: absolute;
	left: 0;
	bottom: 0;
	right: 0;
}

#stacks_in_88344-wrapper .slipstream-content-wrapper {
	/* Rounded Corners */
	
	
	
	
	border-style: solid;
	border-color: var(--bs-gray-300) !important;
	
}





#stacks_in_88344-wrapper .slipstream-content-wrapper {
	overflow-y: scroll;
	height: 50vh;
}

@media (min-width: 576px) {
	#stacks_in_88344-wrapper .slipstream-content-wrapper {
		overflow-y: scroll;
		height:50vh;
	}
}

@media (min-width: 768px) {
	#stacks_in_88344-wrapper .slipstream-content-wrapper {
		overflow-y: scroll;
		height: 50vh;
	}
}

@media (min-width: 992px) {
	#stacks_in_88344-wrapper .slipstream-content-wrapper {
		overflow-y: scroll;
		height: 50vh;
	}
}

@media (min-width: 1200px) {
	#stacks_in_88344-wrapper .slipstream-content-wrapper {
		overflow-y: scroll;
		height: 50vh;
	}
}

@media (min-width: 1400px) {
	#stacks_in_88344-wrapper .slipstream-content-wrapper {
		overflow-y: scroll;
		height: 50vh;
	}
}


#stacks_in_88344-wrapper .list-group-item {
	position: relative;
	color: rgba(46, 49, 53, 1.00);
	
	background-color: var(--bs-white);
	
	

	
	border-color: var(--bs-secondary);
	
	
}

#stacks_in_88344-wrapper .list-group-item.active,
#stacks_in_88344-wrapper .list-group-item:hover {
	color: rgba(255, 255, 255, 1.00) !important;
	
	background-color: var(--bs-primary) !important;
		
	
	
}



#stacks_in_88344-wrapper .list-group-item.active {
		
}






#stacks_in_88347-wrapper {
	
	
	
}









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





#stacks_in_88351-wrapper {
	
	
	
}









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





#stacks_in_88355-wrapper {
	
	
	
}









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





#stacks_in_88359-wrapper {
	
	
	
}









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





#stacks_in_88363-wrapper {
	
	
	
}









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





#stacks_in_88367-wrapper {
	
	
	
}









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





#stacks_in_88371-wrapper {
	
	
	
}









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





#stacks_in_88375-wrapper {
	
	
	
}









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





#stacks_in_88379-wrapper {
	
	
	
}









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





#stacks_in_88383-wrapper {
	
	
	
}









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





#stacks_in_88387-wrapper {
	
	
	
}









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




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

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

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

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


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

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

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

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



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

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






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



	

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



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



	
	

#stacks_in_88404-wrapper.bkg-preset {
	background: var(--bs-secondary);
}

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

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



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


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








	

	











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

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


#stacks_in_88405_4-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_88405_4-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_88405_6-wrapper,
#stacks_in_88405_6-wrapper > .bkg-overlay {
	overflow: visible;
	z-index: 15;
	position: relative;
}

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

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

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


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

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

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

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



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

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






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



	

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



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



	
	

#stacks_in_88405_6-wrapper.bkg-preset {
	background: var(--bs-info);
}

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

#stacks_in_88405_6-wrapper.bkg-gradient-two {
	background: rgba(76, 95, 91, 0.74);
	background: linear-gradient(0deg, rgba(76, 95, 91, 0.74) 0%, rgba(76, 95, 91, 1.00) 100%);
}

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



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


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








	

	








#stacks_in_88405_8-wrapper {
	
}

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


/* Advanced Mode */
#stacks_in_88405_8-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;
}













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

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


#stacks_in_88405_10-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_88405_10-margins.padding-advanced {
	padding: 40.00px 0.00px 40.00px 0.00px;
}

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

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

@media (min-width: 992px) {
	
	#stacks_in_88405_10-margins.padding-advanced {
		padding: 100.00px 0.00px 100.00px 0.00px;
	}
	
}

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

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



	#stacks_in_88405_12-wrapper > .row > .col {
		display: flex;
		flex-direction: column;
		justify-content: center;
	}
	
	




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





h2.stacks_in_88405_16-header {
	
	font-weight: 700;
	
	
	
	
	
	
	
	
	color: var(--bs-primary);
	
	
	

	
	margin: 0;
	
	letter-spacing: 0.00px;
	
	
	
}

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

}



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

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

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

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

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

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








#stacks_in_88405_19-wrapper {
	
	
	
		
		
		color: var(--bs-primary);
		
	
}




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

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

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

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

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

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






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








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








#stacks_in_88405_96-wrapper {
	
	
	
		
		
		color: var(--bs-primary);
		
	
}









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




.stacks_in_88405_30-list {
	list-style: none;
	list-style-position: outside;
	margin-bottom: 0;
	
	font-weight: 400;
}

.stacks_in_88405_30-list {
	
	color: var(--bs-light) !important;
	
	
	
}

.stacks_in_88405_30-list .list-icon {
	
	color: var(--bs-primary) !important;
	
	
	
}

.stacks_in_88405_30-list a,
.stacks_in_88405_30-list a:visited,
.stacks_in_88405_30-list a:hover,
.stacks_in_88405_30-list a:active {
	text-decoration: none;
}

.stacks_in_88405_30-list a,
.stacks_in_88405_30-list a:visited {
	
	
	
	color: rgba(76, 95, 91, 1.00) !important;
	
	text-decoration: none;
}

.stacks_in_88405_30-list a:hover,
.stacks_in_88405_30-list a:active {
	
	
	color: var(--bs-danger) !important;
	
		
	text-decoration: none;
}








/* Base Margins */

.stacks_in_88405_30-list {
	margin-bottom: var(--fdy-base-margin-xs);
}

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

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

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

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

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





.stacks_in_88405_30-list .list-inline-item:not(:last-child) {

}

.stacks_in_88405_30-list .list-inline-item {
	float: unset !important;
	display: inline-block !important;
}

.stacks_in_88405_30-list.list-inline {
	float: unset !important;
	display: block !important;
}

.stacks_in_88405_32-list-item .badge {
	position: relative;
	top: -2px;
	color: rgba(255, 255, 255, 1.00);

	
	background-color: var(--bs-danger);
	
	
	
}

.stacks_in_88405_32-list-item.custom-icon-color .list-icon {
	color: rgba(148, 104, 247, 1.00) !important;
}

.stacks_in_88405_33-list-item .badge {
	position: relative;
	top: -2px;
	color: rgba(255, 255, 255, 1.00);

	
	background-color: var(--bs-danger);
	
	
	
}

.stacks_in_88405_33-list-item.custom-icon-color .list-icon {
	color: rgba(148, 104, 247, 1.00) !important;
}

.stacks_in_88405_35-list-item .badge {
	position: relative;
	top: -2px;
	color: rgba(255, 255, 255, 1.00);

	
	background-color: var(--bs-danger);
	
	
	
}

.stacks_in_88405_35-list-item.custom-icon-color .list-icon {
	color: rgba(148, 104, 247, 1.00) !important;
}







#stacks_in_88405_98-wrapper {
	
	
	
		
		
		color: var(--bs-primary);
		
	
}









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




.stacks_in_88405_44-list {
	list-style: none;
	list-style-position: outside;
	margin-bottom: 0;
	
	font-weight: 400;
}

.stacks_in_88405_44-list {
	
	color: var(--bs-light) !important;
	
	
	
}

.stacks_in_88405_44-list .list-icon {
	
	color: var(--bs-primary) !important;
	
	
	
}

.stacks_in_88405_44-list a,
.stacks_in_88405_44-list a:visited,
.stacks_in_88405_44-list a:hover,
.stacks_in_88405_44-list a:active {
	text-decoration: none;
}

.stacks_in_88405_44-list a,
.stacks_in_88405_44-list a:visited {
	
	
	
	color: rgba(76, 95, 91, 1.00) !important;
	
	text-decoration: none;
}

.stacks_in_88405_44-list a:hover,
.stacks_in_88405_44-list a:active {
	
	
	color: var(--bs-danger) !important;
	
		
	text-decoration: none;
}








/* Base Margins */

.stacks_in_88405_44-list {
	margin-bottom: var(--fdy-base-margin-xs);
}

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

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

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

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

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





.stacks_in_88405_44-list .list-inline-item:not(:last-child) {

}

.stacks_in_88405_44-list .list-inline-item {
	float: unset !important;
	display: inline-block !important;
}

.stacks_in_88405_44-list.list-inline {
	float: unset !important;
	display: block !important;
}

.stacks_in_88405_46-list-item .badge {
	position: relative;
	top: -2px;
	color: rgba(255, 255, 255, 1.00);

	
	background-color: var(--bs-danger);
	
	
	
}

.stacks_in_88405_46-list-item.custom-icon-color .list-icon {
	color: rgba(148, 104, 247, 1.00) !important;
}

.stacks_in_88405_47-list-item .badge {
	position: relative;
	top: -2px;
	color: rgba(255, 255, 255, 1.00);

	
	background-color: var(--bs-danger);
	
	
	
}

.stacks_in_88405_47-list-item.custom-icon-color .list-icon {
	color: rgba(148, 104, 247, 1.00) !important;
}

.stacks_in_88405_48-list-item .badge {
	position: relative;
	top: -2px;
	color: rgba(255, 255, 255, 1.00);

	
	background-color: var(--bs-danger);
	
	
	
}

.stacks_in_88405_48-list-item.custom-icon-color .list-icon {
	color: rgba(148, 104, 247, 1.00) !important;
}

.stacks_in_88405_95-list-item .badge {
	position: relative;
	top: -2px;
	color: rgba(255, 255, 255, 1.00);

	
	background-color: var(--bs-danger);
	
	
	
}

.stacks_in_88405_95-list-item.custom-icon-color .list-icon {
	color: rgba(148, 104, 247, 1.00) !important;
}







#stacks_in_88405_100-wrapper {
	
	
	
		
		
		color: var(--bs-primary);
		
	
}









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




.stacks_in_88405_57-list {
	list-style: none;
	list-style-position: outside;
	margin-bottom: 0;
	
	font-weight: 400;
}

.stacks_in_88405_57-list {
	
	color: var(--bs-light) !important;
	
	
	
}

.stacks_in_88405_57-list .list-icon {
	
	color: var(--bs-primary) !important;
	
	
	
}

.stacks_in_88405_57-list a,
.stacks_in_88405_57-list a:visited,
.stacks_in_88405_57-list a:hover,
.stacks_in_88405_57-list a:active {
	text-decoration: none;
}

.stacks_in_88405_57-list a,
.stacks_in_88405_57-list a:visited {
	
	
	
	color: rgba(76, 95, 91, 1.00) !important;
	
	text-decoration: none;
}

.stacks_in_88405_57-list a:hover,
.stacks_in_88405_57-list a:active {
	
	
	color: var(--bs-danger) !important;
	
		
	text-decoration: none;
}








/* Base Margins */

.stacks_in_88405_57-list {
	margin-bottom: var(--fdy-base-margin-xs);
}

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

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

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

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

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





.stacks_in_88405_57-list .list-inline-item:not(:last-child) {

}

.stacks_in_88405_57-list .list-inline-item {
	float: unset !important;
	display: inline-block !important;
}

.stacks_in_88405_57-list.list-inline {
	float: unset !important;
	display: block !important;
}

.stacks_in_88405_94-list-item .badge {
	position: relative;
	top: -2px;
	color: rgba(255, 255, 255, 1.00);

	
	background-color: var(--bs-danger);
	
	
	
}

.stacks_in_88405_94-list-item.custom-icon-color .list-icon {
	color: rgba(148, 104, 247, 1.00) !important;
}

.stacks_in_88405_60-list-item .badge {
	position: relative;
	top: -2px;
	color: rgba(255, 255, 255, 1.00);

	
	background-color: var(--bs-danger);
	
	
	
}

.stacks_in_88405_60-list-item.custom-icon-color .list-icon {
	color: rgba(148, 104, 247, 1.00) !important;
}

.stacks_in_88405_62-list-item .badge {
	position: relative;
	top: -2px;
	color: rgba(255, 255, 255, 1.00);

	
	background-color: var(--bs-danger);
	
	
	
}

.stacks_in_88405_62-list-item.custom-icon-color .list-icon {
	color: rgba(148, 104, 247, 1.00) !important;
}




#stacks_in_88405_102-wrapper {
	
	
	
		
		
		color: var(--bs-primary);
		
	
}









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




.stacks_in_88405_69-list {
	list-style: none;
	list-style-position: outside;
	margin-bottom: 0;
	
	font-weight: 400;
}

.stacks_in_88405_69-list {
	
	color: var(--bs-light) !important;
	
	
	
}

.stacks_in_88405_69-list .list-icon {
	
	color: var(--bs-primary) !important;
	
	
	
}

.stacks_in_88405_69-list a,
.stacks_in_88405_69-list a:visited,
.stacks_in_88405_69-list a:hover,
.stacks_in_88405_69-list a:active {
	text-decoration: none;
}

.stacks_in_88405_69-list a,
.stacks_in_88405_69-list a:visited {
	
	
	
	color: rgba(76, 95, 91, 1.00) !important;
	
	text-decoration: none;
}

.stacks_in_88405_69-list a:hover,
.stacks_in_88405_69-list a:active {
	
	
	color: var(--bs-danger) !important;
	
		
	text-decoration: none;
}








/* Base Margins */

.stacks_in_88405_69-list {
	margin-bottom: var(--fdy-base-margin-xs);
}

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

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

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

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

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





.stacks_in_88405_69-list .list-inline-item:not(:last-child) {

}

.stacks_in_88405_69-list .list-inline-item {
	float: unset !important;
	display: inline-block !important;
}

.stacks_in_88405_69-list.list-inline {
	float: unset !important;
	display: block !important;
}

.stacks_in_88405_71-list-item .badge {
	position: relative;
	top: -2px;
	color: rgba(255, 255, 255, 1.00);

	
	background-color: var(--bs-danger);
	
	
	
}

.stacks_in_88405_71-list-item.custom-icon-color .list-icon {
	color: rgba(148, 104, 247, 1.00) !important;
}

.stacks_in_88405_72-list-item .badge {
	position: relative;
	top: -2px;
	color: rgba(255, 255, 255, 1.00);

	
	background-color: var(--bs-danger);
	
	
	
}

.stacks_in_88405_72-list-item.custom-icon-color .list-icon {
	color: rgba(148, 104, 247, 1.00) !important;
}

.stacks_in_88405_73-list-item .badge {
	position: relative;
	top: -2px;
	color: rgba(255, 255, 255, 1.00);

	
	background-color: var(--bs-danger);
	
	
	
}

.stacks_in_88405_73-list-item.custom-icon-color .list-icon {
	color: rgba(148, 104, 247, 1.00) !important;
}







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








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






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

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

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

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

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

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



.stacks_in_88405_85.fdy-img {
	
	
	

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


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

.stacks_in_88405_85.fdy-img.img-max-width {
	max-width: 100%;
	width: 60px;
	height: auto;
}






#stacks_in_88405_88-wrapper {
	
	
	
}









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






.stacks_in_88405_92-button,
.stacks_in_88405_92-button:focus {
	
}


.stacks_in_88405_92-button,
.stacks_in_88405_92-button:focus,
.stacks_in_88405_92-button:active {
	
	
	
	color: var(--bs-success);
	border-color: var(--bs-success);
	background-color: transparent;
	
	
	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_88405_92-button:hover,
.stacks_in_88405_92-button:hover:active {
	
	
	
	color: rgba(255, 255, 255, 1.00) !important;
	border-color: var(--bs-success);
	background-color: var(--bs-success) !important;
	

	opacity: 0.850000;	
}











#stacks_in_88405_92-wrapper a {
	outline: none;
}

#stacks_in_88405_92-wrapper .btn {
	
	
}



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


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


#stacks_in_88405_92-wrapper .btn .badge {
	background-color: var(--bs-danger);
	color: rgba(255, 255, 255, 1.00);
}











