/*
 * 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;
	}
}


.splider-img>img{width:100%}.splide__slide__container{overflow:hidden}.splider-switch-dark .splide__slide.is-active *{color:#262626!important}.splider-switch-light .splide__slide.is-active *{color:#fff!important}.s-slide-link{display:contents}.s-slide-link a{position:absolute;top:0;bottom:0;left:0;right:0;content:"";z-index:998;text-decoration:none}.grab{cursor:grab}.splide--nav>.splide__track>.splide__list>.splide__slide{cursor:pointer}button.splide__arrow{margin-bottom:0}.splide--nav .splide__slide:focus-visible{outline:0!important}
/* 
 ______                    _            
|  ____|                  | |           
| |__ ___  _   _ _ __   __| |_ __ _   _ 
|  __/ _ \| | | | '_ \ / _` | '__| | | |
| | | (_) | |_| | | | | (_| | |  | |_| |
|_|  \___/ \__,_|_| |_|\__,_|_|   \__, |
								   __/ |
								  |___/ 

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

*/ 




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


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

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

	


/* All Modes */

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


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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

:root {
	--fdy-transparent: transparent;
	
	--bs-body-font-size: 1.00rem;
	--bs-body-line-height: 1.50;
	--bs-body-font-weight: 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: var(--bs-primary);
	
	
	
	
	
	
	text-decoration-color: transparent;
	
}

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


	
	
	
	text-decoration-color: transparent;
	
}



	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: #1A306B;
  --bs-secondary: #1FA1F6;
  --bs-success: #7AB734;
  --bs-danger: #FA7A26;
  --bs-warning: #FFC107;
  --bs-info: #0DCAF0;
}






.stacks_in_2534_52-container {
	
	
	

	
	
	

}









.stacks_in_2534_47-container {
	
	
	

	
	
	

}

















.stacks_in_2534_4_4-container {
	
	
	

	
	
	

}









.stacks_in_2534_4_6-container {
	
	
	

	
	
	

}









.stacks_in_2534_4_8-container {
	
	
	

	
	
	

}









div.stacks_in_2534_4_10-header {
	
	font-weight: 400;
	
	
	
	
	
	
	
	
	color: var(--bs-primary);
	
	
	

	
	letter-spacing: 0.00px;
	
	
	
}

div.stacks_in_2534_4_10-header > small {
	
	font-weight: 700;
	
	
	
	
	
	
	
	color: ;
	
	
	

}



div.stacks_in_2534_4_10-header {
	margin-bottom: 0;
}






#stacks_in_2534_4_11 {
	display:inline-block; width:100%; line-height: 0.990000em;
}



.stacks_in_2534_4_13-container {
	
	
	

	
	
	

}









.stacks_in_2534_4_15-container {
	
	
	

	
	
	

}










.stacks_in_2534_4_19-container {
	
	
	

	
	
	

}











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


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

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




div.stacks_in_2534_4_22-header {
	
	font-weight: 400;
	
	
	
	
	
	
	
	
	color: var(--bs-primary);
	
	
	

	
	letter-spacing: 0.00px;
	
	
	
}

div.stacks_in_2534_4_22-header > small {
	
	font-weight: 700;
	
	
	
	
	
	
	
	color: ;
	
	
	

}



div.stacks_in_2534_4_22-header {
	margin-bottom: 0;
}








.stacks_in_2534_4_28-container {
	
	
	

	
	
	

}











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


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

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




div.stacks_in_2534_4_31-header {
	
	font-weight: 400;
	
	
	
	
	
	
	
	
	color: var(--bs-primary);
	
	
	

	
	letter-spacing: 0.00px;
	
	
	
}

div.stacks_in_2534_4_31-header > small {
	
	font-weight: 700;
	
	
	
	
	
	
	
	color: ;
	
	
	

}



div.stacks_in_2534_4_31-header {
	margin-bottom: 0;
}








.stacks_in_2534_4_25-container {
	
	
	

	
	
	

}









.stacks_in_2534_5_2-container {
	
	
	

	
	
	

}









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

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

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

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

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

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



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


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

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




.stacks_in_2534_5_4-container {
	
	
	

	
	
	

}










.stacks_in_2534_5_58-container {
	
	
	
	height: 100%;
	

	
	width: 100%;
	
	
	

}


	



	








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

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


#stacks_in_2534_5_66-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_2534_5_66-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_2534_5_65-animated-divider-wrapper {
	font-size: 0 !important;
	line-height: 0 !important;
	height: 3px;	
}

#stacks_in_2534_5_65-animated-divider {
	font-size: 0 !important;
	height: 3px;	
	transition-duration: 0.75s;
	transition-delay: 0.00s;
	transition-property: width;
	transition-timing-function: cubic-bezier(0.11, 0, 0.5, 0);
	
	width: 0%;
	
	
	
}


#stacks_in_2534_5_65-animated-divider.anim-divider-style {
	
	
	

	
	background: rgba(26, 48, 107, 1.00);
	background: linear-gradient(90deg, rgba(26, 48, 107, 1.00) 0%, rgba(31, 161, 246, 1.00) 100%);
	
}


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






#stacks_in_2534_5_6-wrapper {
	font-weight: 400;
}

/* Add a little space after numbers for numbered items */
#stacks_in_2534_5_6-wrapper.list-group-numbered > li::before {
	margin-right: 5px;
}



#stacks_in_2534_5_6-wrapper {
  --bs-accordion-color: #000;
  --bs-accordion-bg: #fff;
  --bs-accordion-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, border-radius 0.15s ease;
  --bs-accordion-border-color: var(--bs-border-color);
  --bs-accordion-border-width: 1px;
  --bs-accordion-border-radius: 0.375rem;
  --bs-accordion-inner-border-radius: calc(0.375rem - 1px);
  --bs-accordion-btn-padding-x: 1.25rem;
  --bs-accordion-btn-padding-y: 1rem;
  --bs-accordion-btn-color: var(--bs-body-color);
  --bs-accordion-btn-bg: var(--bs-accordion-bg);
  --bs-accordion-btn-icon: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='var%28--bs-body-color%29'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
  --bs-accordion-btn-icon-width: 1.25rem;
  --bs-accordion-btn-icon-transform: rotate(-180deg);
  --bs-accordion-btn-icon-transition: transform 0.2s ease-in-out;
  --bs-accordion-btn-active-icon: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%230c63e4'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
  --bs-accordion-btn-focus-border-color: #86b7fe;
  --bs-accordion-btn-focus-box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
  --bs-accordion-body-padding-x: 1.25rem;
  --bs-accordion-body-padding-y: 1rem;
  --bs-accordion-active-color: #0c63e4;
  --bs-accordion-active-bg: #e7f1ff;
}




/* Chevrons Right & Down */
#stacks_in_2534_5_6-wrapper .accordion-button::after {
	background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16"><path fill="rgba(26, 48, 107, 1.00)" fill-rule="evenodd" d="M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z"/></svg>') !important;
	transform: rotate(-90deg);
}

#stacks_in_2534_5_6-wrapper .accordion-button:not(.collapsed)::after {
	background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16"><path fill="rgba(26, 48, 107, 1.00)" fill-rule="evenodd" d="M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z"/></svg>') !important;
	transform: rotate(0deg);
}

#stacks_in_2534_5_6-wrapper .list-group-item:hover.accordion-button::after {
	background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16"><path fill="rgba(26, 48, 107, 1.00)" fill-rule="evenodd" d="M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z"/></svg>') !important;
	transform: rotate(-90deg);
}

#stacks_in_2534_5_6-wrapper .list-group-item:hover.accordion-button:not(.collapsed)::after {
	background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16"><path fill="rgba(26, 48, 107, 1.00)" fill-rule="evenodd" d="M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z"/></svg>') !important;
	transform: rotate(0deg);
}











#stacks_in_2534_5_6-wrapper .list-group-item {
	color: rgba(26, 48, 107, 1.00);
	
	background-color: transparent;
	
	

	
	
	border-color: rgba(222, 226, 230, 0.00);
	
}

#stacks_in_2534_5_6-wrapper .list-group-item:hover,
#stacks_in_2534_5_6-wrapper .list-group-item.active {
	color: rgba(26, 48, 107, 1.00) !important;
	
	
	background-color: rgba(222, 226, 230, 0.00);
	
}

#stacks_in_2534_5_6-wrapper .accordion-button:not(.collapsed) {
	color: rgba(26, 48, 107, 1.00);
	
	background-color: transparent !important;
	
	
	
	
	box-shadow: inset 0px -1px 0px 0px rgba(222, 226, 230, 0.00) !important;
	
}

#stacks_in_2534_5_6-wrapper .accordion-collapse .list-group-item {
	color: rgba(26, 48, 107, 1.00);
	
	background-color: transparent;
	
	

}

#stacks_in_2534_5_6-wrapper .accordion-collapse .item-inner-wrapper {
	
	padding-left: 12px;
	
}


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

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




.stacks_in_2534_5_70-fdy-item .item-label {
	font-weight: 400;
}

.stacks_in_2534_5_70-fdy-item > .badge {
	
	background: var(--bs-primary);
	
	
	color: #FFFFFF;
}

.stacks_in_2534_5_70-fdy-item .badge.bs-gray {
	background: var(--bs-gray-);
	color: ;
}

.stacks_in_2534_5_70-fdy-item .list-group-icons {
		
}

.stacks_in_2534_5_70-fdy-item:hover .list-group-icons {
	
		
		color: var(--bs-primary);
		
		
}


.stacks_in_2534_5_7-fdy-item .item-label {
	font-weight: 400;
}

.stacks_in_2534_5_7-fdy-item > .badge {
	
	background: var(--bs-primary);
	
	
	color: #FFFFFF;
}

.stacks_in_2534_5_7-fdy-item .badge.bs-gray {
	background: var(--bs-gray-);
	color: ;
}

.stacks_in_2534_5_7-fdy-item .list-group-icons {
		
}

.stacks_in_2534_5_7-fdy-item:hover .list-group-icons {
	
		
		color: var(--bs-primary);
		
		
}


.stacks_in_2534_5_16-fdy-item.accordion-button {
	font-weight: 400;
}

.stacks_in_2534_5_16-fdy-item > .badge {
	
	background: var(--bs-primary);
	
	
	color: #FFFFFF;
}

.stacks_in_2534_5_16-fdy-item .badge.bs-gray {
	background: var(--bs-gray-);
	color: ;
}

.stacks_in_2534_5_16-accordion-item:last-child {
	border-top: none;
}


.stacks_in_2534_5_16-fdy-item .list-group-icons {
		
}

.stacks_in_2534_5_16-fdy-item:hover .list-group-icons {
		
}


.stacks_in_2534_5_75-fdy-item .item-label {
	font-weight: 400;
}

.stacks_in_2534_5_75-fdy-item > .badge {
	
	background: var(--bs-primary);
	
	
	color: #FFFFFF;
}

.stacks_in_2534_5_75-fdy-item .badge.bs-gray {
	background: var(--bs-gray-);
	color: ;
}

.stacks_in_2534_5_75-fdy-item .list-group-icons {
		
}

.stacks_in_2534_5_75-fdy-item:hover .list-group-icons {
		
}


.stacks_in_2534_5_84-fdy-item .item-label {
	font-weight: 400;
}

.stacks_in_2534_5_84-fdy-item > .badge {
	
	background: var(--bs-primary);
	
	
	color: #FFFFFF;
}

.stacks_in_2534_5_84-fdy-item .badge.bs-gray {
	background: var(--bs-gray-);
	color: ;
}

.stacks_in_2534_5_84-fdy-item .list-group-icons {
		
}

.stacks_in_2534_5_84-fdy-item:hover .list-group-icons {
		
}


.stacks_in_2534_5_76-fdy-item.accordion-button {
	font-weight: 400;
}

.stacks_in_2534_5_76-fdy-item > .badge {
	
	background: var(--bs-primary);
	
	
	color: #FFFFFF;
}

.stacks_in_2534_5_76-fdy-item .badge.bs-gray {
	background: var(--bs-gray-);
	color: ;
}

.stacks_in_2534_5_76-accordion-item:last-child {
	border-top: none;
}


.stacks_in_2534_5_76-fdy-item .list-group-icons {
		
}

.stacks_in_2534_5_76-fdy-item:hover .list-group-icons {
		
}


.stacks_in_2534_5_77-fdy-item .item-label {
	font-weight: 400;
}

.stacks_in_2534_5_77-fdy-item > .badge {
	
	background: var(--bs-primary);
	
	
	color: #FFFFFF;
}

.stacks_in_2534_5_77-fdy-item .badge.bs-gray {
	background: var(--bs-gray-);
	color: ;
}

.stacks_in_2534_5_77-fdy-item .list-group-icons {
		
}

.stacks_in_2534_5_77-fdy-item:hover .list-group-icons {
		
}


.stacks_in_2534_5_79-fdy-item .item-label {
	font-weight: 400;
}

.stacks_in_2534_5_79-fdy-item > .badge {
	
	background: var(--bs-primary);
	
	
	color: #FFFFFF;
}

.stacks_in_2534_5_79-fdy-item .badge.bs-gray {
	background: var(--bs-gray-);
	color: ;
}

.stacks_in_2534_5_79-fdy-item .list-group-icons {
		
}

.stacks_in_2534_5_79-fdy-item:hover .list-group-icons {
		
}


.stacks_in_2534_5_80-fdy-item .item-label {
	font-weight: 400;
}

.stacks_in_2534_5_80-fdy-item > .badge {
	
	background: var(--bs-primary);
	
	
	color: #FFFFFF;
}

.stacks_in_2534_5_80-fdy-item .badge.bs-gray {
	background: var(--bs-gray-);
	color: ;
}

.stacks_in_2534_5_80-fdy-item .list-group-icons {
		
}

.stacks_in_2534_5_80-fdy-item:hover .list-group-icons {
		
}


.stacks_in_2534_5_81-fdy-item .item-label {
	font-weight: 400;
}

.stacks_in_2534_5_81-fdy-item > .badge {
	
	background: var(--bs-primary);
	
	
	color: #FFFFFF;
}

.stacks_in_2534_5_81-fdy-item .badge.bs-gray {
	background: var(--bs-gray-);
	color: ;
}

.stacks_in_2534_5_81-fdy-item .list-group-icons {
		
}

.stacks_in_2534_5_81-fdy-item:hover .list-group-icons {
		
}


.stacks_in_2534_5_82-fdy-item .item-label {
	font-weight: 400;
}

.stacks_in_2534_5_82-fdy-item > .badge {
	
	background: var(--bs-primary);
	
	
	color: #FFFFFF;
}

.stacks_in_2534_5_82-fdy-item .badge.bs-gray {
	background: var(--bs-gray-);
	color: ;
}

.stacks_in_2534_5_82-fdy-item .list-group-icons {
		
}

.stacks_in_2534_5_82-fdy-item:hover .list-group-icons {
		
}


.stacks_in_2534_5_83-fdy-item .item-label {
	font-weight: 400;
}

.stacks_in_2534_5_83-fdy-item > .badge {
	
	background: var(--bs-primary);
	
	
	color: #FFFFFF;
}

.stacks_in_2534_5_83-fdy-item .badge.bs-gray {
	background: var(--bs-gray-);
	color: ;
}

.stacks_in_2534_5_83-fdy-item .list-group-icons {
		
}

.stacks_in_2534_5_83-fdy-item:hover .list-group-icons {
		
}


.stacks_in_2534_5_26-fdy-item.accordion-button {
	font-weight: 400;
}

.stacks_in_2534_5_26-fdy-item > .badge {
	
	background: var(--bs-primary);
	
	
	color: #FFFFFF;
}

.stacks_in_2534_5_26-fdy-item .badge.bs-gray {
	background: var(--bs-gray-);
	color: ;
}

.stacks_in_2534_5_26-accordion-item:last-child {
	border-top: none;
}


.stacks_in_2534_5_26-fdy-item .list-group-icons {
		
}

.stacks_in_2534_5_26-fdy-item:hover .list-group-icons {
		
}


.stacks_in_2534_5_29-fdy-item .item-label {
	font-weight: 400;
}

.stacks_in_2534_5_29-fdy-item > .badge {
	
	background: var(--bs-primary);
	
	
	color: #FFFFFF;
}

.stacks_in_2534_5_29-fdy-item .badge.bs-gray {
	background: var(--bs-gray-);
	color: ;
}

.stacks_in_2534_5_29-fdy-item .list-group-icons {
		
}

.stacks_in_2534_5_29-fdy-item:hover .list-group-icons {
		
}


.stacks_in_2534_5_30-fdy-item .item-label {
	font-weight: 400;
}

.stacks_in_2534_5_30-fdy-item > .badge {
	
	background: var(--bs-primary);
	
	
	color: #FFFFFF;
}

.stacks_in_2534_5_30-fdy-item .badge.bs-gray {
	background: var(--bs-gray-);
	color: ;
}

.stacks_in_2534_5_30-fdy-item .list-group-icons {
		
}

.stacks_in_2534_5_30-fdy-item:hover .list-group-icons {
		
}


.stacks_in_2534_5_27-fdy-item .item-label {
	font-weight: 400;
}

.stacks_in_2534_5_27-fdy-item > .badge {
	
	background: var(--bs-primary);
	
	
	color: #FFFFFF;
}

.stacks_in_2534_5_27-fdy-item .badge.bs-gray {
	background: var(--bs-gray-);
	color: ;
}

.stacks_in_2534_5_27-fdy-item .list-group-icons {
		
}

.stacks_in_2534_5_27-fdy-item:hover .list-group-icons {
		
}


.stacks_in_2534_5_32-fdy-item .item-label {
	font-weight: 400;
}

.stacks_in_2534_5_32-fdy-item > .badge {
	
	background: var(--bs-primary);
	
	
	color: #FFFFFF;
}

.stacks_in_2534_5_32-fdy-item .badge.bs-gray {
	background: var(--bs-gray-);
	color: ;
}

.stacks_in_2534_5_32-fdy-item .list-group-icons {
		
}

.stacks_in_2534_5_32-fdy-item:hover .list-group-icons {
		
}


.stacks_in_2534_5_31-fdy-item .item-label {
	font-weight: 400;
}

.stacks_in_2534_5_31-fdy-item > .badge {
	
	background: var(--bs-primary);
	
	
	color: #FFFFFF;
}

.stacks_in_2534_5_31-fdy-item .badge.bs-gray {
	background: var(--bs-gray-);
	color: ;
}

.stacks_in_2534_5_31-fdy-item .list-group-icons {
		
}

.stacks_in_2534_5_31-fdy-item:hover .list-group-icons {
		
}


.stacks_in_2534_5_40-fdy-item .item-label {
	font-weight: 400;
}

.stacks_in_2534_5_40-fdy-item > .badge {
	
	background: var(--bs-primary);
	
	
	color: #FFFFFF;
}

.stacks_in_2534_5_40-fdy-item .badge.bs-gray {
	background: var(--bs-gray-);
	color: ;
}

.stacks_in_2534_5_40-fdy-item .list-group-icons {
		
}

.stacks_in_2534_5_40-fdy-item:hover .list-group-icons {
	
		
		color: var(--bs-primary);
		
		
}


.stacks_in_2534_5_85-fdy-item .item-label {
	font-weight: 400;
}

.stacks_in_2534_5_85-fdy-item > .badge {
	
	background: var(--bs-primary);
	
	
	color: #FFFFFF;
}

.stacks_in_2534_5_85-fdy-item .badge.bs-gray {
	background: var(--bs-gray-);
	color: ;
}

.stacks_in_2534_5_85-fdy-item .list-group-icons {
		
}

.stacks_in_2534_5_85-fdy-item:hover .list-group-icons {
	
		
		color: var(--bs-primary);
		
		
}


.stacks_in_2534_5_41-fdy-item .item-label {
	font-weight: 400;
}

.stacks_in_2534_5_41-fdy-item > .badge {
	
	background: var(--bs-primary);
	
	
	color: #FFFFFF;
}

.stacks_in_2534_5_41-fdy-item .badge.bs-gray {
	background: var(--bs-gray-);
	color: ;
}

.stacks_in_2534_5_41-fdy-item .list-group-icons {
		
}

.stacks_in_2534_5_41-fdy-item:hover .list-group-icons {
	
		
		color: var(--bs-primary);
		
		
}






.stacks_in_2534_6_4-container {
	
	
	

	
	
	

}











.stacks_in_1711-container {
	
	
	

	
	
	

}









.stacks_in_1713-container {
	
	
	

	
	
	

}









.stacks_in_1709-container {
	
	overflow: hidden;
	
	
	

	
	
	

}










.stacks_in_1707-container {
	
	
	
	height: 20vh;
	

	
	
	

}


	










.stacks_in_1722-container {
	
	
	
	height: 100vh;
	

	
	
	

}


	







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

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

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

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


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

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

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

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



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

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






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



	

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



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



	
	

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

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

#stacks_in_2309-wrapper.bkg-gradient-two {
	background: rgba(255, 255, 255, 1.00);
	background: linear-gradient(60deg, rgba(255, 255, 255, 1.00) 0%, rgba(222, 222, 222, 1.00) 100%);
}

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



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


#stacks_in_2309-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_2309-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_2309-wrapper {
	
	
	border-color: var(--bs-secondary) !important;
	
	
	
	box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.33);
	
}








	

	







#stacks_in_187-mask {
	
	position: relative;
	overflow: visible;
}

#stacks_in_187-mask .mask-content {
	position: relative;
}

.stacks_in_194-point {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
	
    background-color: transparent;
	
	
		
	/* Flip Horizontally */
    transform: rotateY(180deg);
	
}

.stacks_in_194-point svg {
	

    position: relative;
    display: block;
	transform: scale(1.05);

	

}

.stacks_in_194-point .shape-fill {
	
    fill: var(--bs-danger);
	
	
}


.stacks_in_194-point svg {
    height: 400px;
}




.stacks_in_194-point svg {
    width: calc(204% + 1.3px);
}






.stacks_in_192-point {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
	
    background-color: transparent;
	
	
}

.stacks_in_192-point svg {
	

    position: relative;
    display: block;
    width: calc(100% + 1.3px);
	transform: scale(1.05);

	
}

.stacks_in_192-point .shape-fill {
	
    fill: var(--bs-danger);
	
	
}


.stacks_in_192-point svg {
    height: 267px;
}





.stacks_in_193-point {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
	
    background-color: transparent;
	
	
}

.stacks_in_193-point svg {
	

    position: relative;
    display: block;
    width: calc(100% + 1.3px);
	transform: scale(1.05);

	
}

.stacks_in_193-point .shape-fill {
	
    fill: var(--bs-white);
	
	
}


.stacks_in_193-point svg {
    height: 246px;
}





.stacks_in_191-point {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
	
    background-color: transparent;
	
	
}

.stacks_in_191-point svg {
	

    position: relative;
    display: block;
    width: calc(100% + 1.3px);
	transform: scale(1.05);

	
}

.stacks_in_191-point .shape-fill {
	
    fill: var(--bs-danger);
	
	
}


.stacks_in_191-point svg {
    height: 225px;
}





.stacks_in_190-point {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
	
    background-color: transparent;
	
	
}

.stacks_in_190-point svg {
	

    position: relative;
    display: block;
    width: calc(100% + 1.3px);
	transform: scale(1.05);

	
}

.stacks_in_190-point .shape-fill {
	
	
    fill: rgba(222, 222, 222, 1.00);
	
}


.stacks_in_190-point svg {
    height: 195px;
}






.stacks_in_1958-container {
	
	
	

	
	
	

}









.stacks_in_1956-container {
	
	
	

	
	
	

}










.stacks_in_2449-container {
	
	
	

	
	
	

}









.stacks_in_2450-container {
	
	
	

	
	
	

}









.stacks_in_2452-container {
	
	
	

	
	
	

}










.stacks_in_2477-container {
	
	
	

	
	
	

}










.stacks_in_2764-container {
	
	
	

	
	
	

}









.stacks_in_2770-container {
	
	
	

	
	
	

}









.stacks_in_2893-container {
	
	
	

	
	
	

}








.stacks_in_3074-zoom {
	position: fixed;
	display: flex;
	justify-content: center;
	align-items: center;
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh;
	opacity: 0.01;
	transition: 0.15s ease;
	z-index: 3000;
	will-change: opacity;
}

.stacks_in_3074-zoom {
	background: rgba(26, 48, 107, 1.00); 
	background: radial-gradient(circle, rgba(26, 48, 107, 1.00) 0%, rgba(28, 28, 28, 0.50) 100%);
	-webkit-backdrop-filter:    ;
	backdrop-filter:    ;
}

.stacks_in_3074-zoom.basicLightbox--visible {
	opacity: 1;
}

.stacks_in_3074-zoom .basicLightbox__placeholder {
	max-width: 100%;
	transform: scale(0.8);
	transition: transform 0.15s cubic-bezier(0.175, 0.885, 0.320, 1.275);  /* Easing -- Ease out and back */
	z-index: 1;
	will-change: transform;
}

.stacks_in_3074-zoom .basicLightbox__placeholder > iframe:first-child:last-child,
.stacks_in_3074-zoom .basicLightbox__placeholder > img:first-child:last-child,
.stacks_in_3074-zoom .basicLightbox__placeholder > video:first-child:last-child {
	display: block;
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	margin: auto;
	max-width: 95%;
	max-height: 95%;
}

.stacks_in_3074-zoom .basicLightbox__placeholder > iframe:first-child:last-child,
.stacks_in_3074-zoom .basicLightbox__placeholder > video:first-child:last-child {
	pointer-events: auto;
}

.stacks_in_3074-zoom .basicLightbox__placeholder > img:first-child:last-child,
.stacks_in_3074-zoom .basicLightbox__placeholder > video:first-child:last-child {
	width: auto;
	height: auto;
}

.stacks_in_3074-zoom.basicLightbox--iframe .basicLightbox__placeholder,
.stacks_in_3074-zoom.basicLightbox--img .basicLightbox__placeholder,
.stacks_in_3074-zoom.basicLightbox--video .basicLightbox__placeholder {
	width: 100%;
	height: 100%;
	pointer-events: none;
}

.stacks_in_3074-zoom.basicLightbox--visible .basicLightbox__placeholder {
	transform: scale(1);
}

.stacks_in_3074-zoom.basicLightbox--iframe .basicLightbox__placeholder {
	width: 90vw;
	position: relative;
	padding-bottom: calc(9/16 * 90%);
	height: 0;
}

.stacks_in_3074-zoom.basicLightbox--iframe .basicLightbox__placeholder iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

#stacks_in_3074-closer .closer-icon {
	width: 24px;
	height: 24px;
}

#stacks_in_3074-closer {
	position: fixed; 
	cursor: pointer; 
	z-index: 100000; 
	background-color: rgba(33, 37, 41, 1.00);
	color: rgba(248, 249, 250, 1.00);
	
}

#stacks_in_3074-closer.show-closer:hover {
	transform: scale(1.1);
}

#stacks_in_3074-closer.closed {
	transition-duration: 0.15s;
	transition-timing-function: ease;
	opacity: 0;
	top: 20px; 
	left: 20px; 
	transform: scale(0.5);
	pointer-events: none;
}

#stacks_in_3074-closer.show-closer {
	transition-duration: 0.15s;
	transition-timing-function: cubic-bezier(0.680, -0.550, 0.265, 1.550);
	opacity: 1;
	top: 20px; 
	left: 20px; 
	transform: scale(1);
	pointer-events: initial;
}

.stacks_in_3074-wrapper .indicator-icon-sizing {
	height: 24px;
	width: 24px;
}

#stacks_in_3074-zoom-indicator {
	line-height: 59px;
	height: 64px;
	width: 64px;
}

@media (min-width: 576px) {
	.stacks_in_3074-wrapper .indicator-icon-sizing {
		height: 28px;
		width: 28px;
	}
	
	#stacks_in_3074-zoom-indicator {
		line-height: 63px;
		height: 68px;
		width: 68px;
	}
}

@media (min-width: 768px) {
	.stacks_in_3074-wrapper .indicator-icon-sizing {
		height: 32px;
		width: 32px;
	}
	
#stacks_in_3074-zoom-indicator {
		line-height: 67px;
		height: 72px;
		width: 72px;
	}
}

@media (min-width: 992px) {
	.stacks_in_3074-wrapper .indicator-icon-sizing {
		height: 32px;
		width: 32px;
	}
	
	#stacks_in_3074-zoom-indicator {
		line-height: 67px;
		height: 72px;
		width: 72px;
	}
}

@media (min-width: 1200px) {
	.stacks_in_3074-wrapper .indicator-icon-sizing {
		height: 36px;
		width: 36px;
	}
	
	#stacks_in_3074-zoom-indicator {
		line-height: 71px;
		height: 76px;
		width: 76px;
	}
}

@media (min-width: 1400px) {
	.stacks_in_3074-wrapper .indicator-icon-sizing {
		height: 42px;
		width: 42px;
	}
	
	#stacks_in_3074-zoom-indicator {
		line-height: 77px;
		height: 82px;
		width: 82px;
	}
}


.stacks_in_3074-wrapper .zoom-indicator {
	

	z-index: 100;
	background-color: rgba(255, 255, 255, 0.00);
	color: rgba(44, 49, 54, 1.00);
	
	transition-timing-function: cubic-bezier(0.680, -0.550, 0.265, 1.550);
	transition-duration: 0.1s;
	transition-property: transform;
	
	
	transform: scale(1);
	bottom: 10px; right: 10px;
	
}

.stacks_in_3074-wrapper:hover .zoom-indicator {
	background-color: rgba(255, 255, 255, 0.00);
	color: rgba(44, 49, 54, 1.00);
	transition-duration: 0.1s;
	transition-property: transform;
	transition-timing-function: cubic-bezier(0.680, -0.550, 0.265, 1.550);
	
	
	transform: scale(1);
	bottom: 10px; right: 10px;
	
}

.stacks_in_3074-zoom-modal.custom-shadow {
	box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.33);
}


@media (max-width: 576px) {
	.stacks_in_3074-wrapper .zoom-indicator {
		
		transform: translate(-50%, -50%) scale(1);
		right: initial;
		bottom: initial;
		top: 50%;
		left: 50%;
		
	}
	
	.stacks_in_3074-wrapper:hover .zoom-indicator {
		
		transform: translate(-50%, -50%) scale(1);
		right: initial;
		bottom: initial;
		top: 50%;
		left: 50%;
		
	}
}

.stacks_in_3074-wrapper picture.fdy-img {
	margin: 0;
    vertical-align: top;
}





.stacks_in_3074-wrapper img {
	margin: 0 !important;
}





.stacks_in_3075.fdy-img {
	
	
	

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


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

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




.stacks_in_2784-container {
	
	
	

	
	
	

}









.stacks_in_2895-container {
	
	
	

	
	
	

}








.stacks_in_2862-zoom {
	position: fixed;
	display: flex;
	justify-content: center;
	align-items: center;
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh;
	opacity: 0.01;
	transition: 0.15s ease;
	z-index: 3000;
	will-change: opacity;
}

.stacks_in_2862-zoom {
	background: rgba(26, 48, 107, 1.00); 
	background: radial-gradient(circle, rgba(26, 48, 107, 1.00) 0%, rgba(28, 28, 28, 0.50) 100%);
	-webkit-backdrop-filter:    ;
	backdrop-filter:    ;
}

.stacks_in_2862-zoom.basicLightbox--visible {
	opacity: 1;
}

.stacks_in_2862-zoom .basicLightbox__placeholder {
	max-width: 100%;
	transform: scale(0.8);
	transition: transform 0.15s cubic-bezier(0.175, 0.885, 0.320, 1.275);  /* Easing -- Ease out and back */
	z-index: 1;
	will-change: transform;
}

.stacks_in_2862-zoom .basicLightbox__placeholder > iframe:first-child:last-child,
.stacks_in_2862-zoom .basicLightbox__placeholder > img:first-child:last-child,
.stacks_in_2862-zoom .basicLightbox__placeholder > video:first-child:last-child {
	display: block;
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	margin: auto;
	max-width: 95%;
	max-height: 95%;
}

.stacks_in_2862-zoom .basicLightbox__placeholder > iframe:first-child:last-child,
.stacks_in_2862-zoom .basicLightbox__placeholder > video:first-child:last-child {
	pointer-events: auto;
}

.stacks_in_2862-zoom .basicLightbox__placeholder > img:first-child:last-child,
.stacks_in_2862-zoom .basicLightbox__placeholder > video:first-child:last-child {
	width: auto;
	height: auto;
}

.stacks_in_2862-zoom.basicLightbox--iframe .basicLightbox__placeholder,
.stacks_in_2862-zoom.basicLightbox--img .basicLightbox__placeholder,
.stacks_in_2862-zoom.basicLightbox--video .basicLightbox__placeholder {
	width: 100%;
	height: 100%;
	pointer-events: none;
}

.stacks_in_2862-zoom.basicLightbox--visible .basicLightbox__placeholder {
	transform: scale(1);
}

.stacks_in_2862-zoom.basicLightbox--iframe .basicLightbox__placeholder {
	width: 90vw;
	position: relative;
	padding-bottom: calc(9/16 * 90%);
	height: 0;
}

.stacks_in_2862-zoom.basicLightbox--iframe .basicLightbox__placeholder iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

#stacks_in_2862-closer .closer-icon {
	width: 24px;
	height: 24px;
}

#stacks_in_2862-closer {
	position: fixed; 
	cursor: pointer; 
	z-index: 100000; 
	background-color: rgba(33, 37, 41, 1.00);
	color: rgba(248, 249, 250, 1.00);
	
}

#stacks_in_2862-closer.show-closer:hover {
	transform: scale(1.1);
}

#stacks_in_2862-closer.closed {
	transition-duration: 0.15s;
	transition-timing-function: ease;
	opacity: 0;
	top: 20px; 
	left: 20px; 
	transform: scale(0.5);
	pointer-events: none;
}

#stacks_in_2862-closer.show-closer {
	transition-duration: 0.15s;
	transition-timing-function: cubic-bezier(0.680, -0.550, 0.265, 1.550);
	opacity: 1;
	top: 20px; 
	left: 20px; 
	transform: scale(1);
	pointer-events: initial;
}

.stacks_in_2862-wrapper .indicator-icon-sizing {
	height: 24px;
	width: 24px;
}

#stacks_in_2862-zoom-indicator {
	line-height: 59px;
	height: 64px;
	width: 64px;
}

@media (min-width: 576px) {
	.stacks_in_2862-wrapper .indicator-icon-sizing {
		height: 28px;
		width: 28px;
	}
	
	#stacks_in_2862-zoom-indicator {
		line-height: 63px;
		height: 68px;
		width: 68px;
	}
}

@media (min-width: 768px) {
	.stacks_in_2862-wrapper .indicator-icon-sizing {
		height: 32px;
		width: 32px;
	}
	
#stacks_in_2862-zoom-indicator {
		line-height: 67px;
		height: 72px;
		width: 72px;
	}
}

@media (min-width: 992px) {
	.stacks_in_2862-wrapper .indicator-icon-sizing {
		height: 32px;
		width: 32px;
	}
	
	#stacks_in_2862-zoom-indicator {
		line-height: 67px;
		height: 72px;
		width: 72px;
	}
}

@media (min-width: 1200px) {
	.stacks_in_2862-wrapper .indicator-icon-sizing {
		height: 36px;
		width: 36px;
	}
	
	#stacks_in_2862-zoom-indicator {
		line-height: 71px;
		height: 76px;
		width: 76px;
	}
}

@media (min-width: 1400px) {
	.stacks_in_2862-wrapper .indicator-icon-sizing {
		height: 42px;
		width: 42px;
	}
	
	#stacks_in_2862-zoom-indicator {
		line-height: 77px;
		height: 82px;
		width: 82px;
	}
}


.stacks_in_2862-wrapper .zoom-indicator {
	

	z-index: 100;
	background-color: rgba(255, 255, 255, 0.00);
	color: rgba(44, 49, 54, 1.00);
	
	transition-timing-function: cubic-bezier(0.680, -0.550, 0.265, 1.550);
	transition-duration: 0.1s;
	transition-property: transform;
	
	
	transform: scale(1);
	bottom: 10px; right: 10px;
	
}

.stacks_in_2862-wrapper:hover .zoom-indicator {
	background-color: rgba(255, 255, 255, 0.00);
	color: rgba(44, 49, 54, 1.00);
	transition-duration: 0.1s;
	transition-property: transform;
	transition-timing-function: cubic-bezier(0.680, -0.550, 0.265, 1.550);
	
	
	transform: scale(1);
	bottom: 10px; right: 10px;
	
}

.stacks_in_2862-zoom-modal.custom-shadow {
	box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.33);
}


@media (max-width: 576px) {
	.stacks_in_2862-wrapper .zoom-indicator {
		
		transform: translate(-50%, -50%) scale(1);
		right: initial;
		bottom: initial;
		top: 50%;
		left: 50%;
		
	}
	
	.stacks_in_2862-wrapper:hover .zoom-indicator {
		
		transform: translate(-50%, -50%) scale(1);
		right: initial;
		bottom: initial;
		top: 50%;
		left: 50%;
		
	}
}

.stacks_in_2862-wrapper picture.fdy-img {
	margin: 0;
    vertical-align: top;
}





.stacks_in_2862-wrapper img {
	margin: 0 !important;
}





.stacks_in_3073.fdy-img {
	
	
	

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


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

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




.stacks_in_2897-container {
	
	
	

	
	
	

}








.stacks_in_3077-zoom {
	position: fixed;
	display: flex;
	justify-content: center;
	align-items: center;
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh;
	opacity: 0.01;
	transition: 0.15s ease;
	z-index: 3000;
	will-change: opacity;
}

.stacks_in_3077-zoom {
	background: rgba(26, 48, 107, 1.00); 
	background: radial-gradient(circle, rgba(26, 48, 107, 1.00) 0%, rgba(28, 28, 28, 0.50) 100%);
	-webkit-backdrop-filter:    ;
	backdrop-filter:    ;
}

.stacks_in_3077-zoom.basicLightbox--visible {
	opacity: 1;
}

.stacks_in_3077-zoom .basicLightbox__placeholder {
	max-width: 100%;
	transform: scale(0.8);
	transition: transform 0.15s cubic-bezier(0.175, 0.885, 0.320, 1.275);  /* Easing -- Ease out and back */
	z-index: 1;
	will-change: transform;
}

.stacks_in_3077-zoom .basicLightbox__placeholder > iframe:first-child:last-child,
.stacks_in_3077-zoom .basicLightbox__placeholder > img:first-child:last-child,
.stacks_in_3077-zoom .basicLightbox__placeholder > video:first-child:last-child {
	display: block;
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	margin: auto;
	max-width: 95%;
	max-height: 95%;
}

.stacks_in_3077-zoom .basicLightbox__placeholder > iframe:first-child:last-child,
.stacks_in_3077-zoom .basicLightbox__placeholder > video:first-child:last-child {
	pointer-events: auto;
}

.stacks_in_3077-zoom .basicLightbox__placeholder > img:first-child:last-child,
.stacks_in_3077-zoom .basicLightbox__placeholder > video:first-child:last-child {
	width: auto;
	height: auto;
}

.stacks_in_3077-zoom.basicLightbox--iframe .basicLightbox__placeholder,
.stacks_in_3077-zoom.basicLightbox--img .basicLightbox__placeholder,
.stacks_in_3077-zoom.basicLightbox--video .basicLightbox__placeholder {
	width: 100%;
	height: 100%;
	pointer-events: none;
}

.stacks_in_3077-zoom.basicLightbox--visible .basicLightbox__placeholder {
	transform: scale(1);
}

.stacks_in_3077-zoom.basicLightbox--iframe .basicLightbox__placeholder {
	width: 90vw;
	position: relative;
	padding-bottom: calc(9/16 * 90%);
	height: 0;
}

.stacks_in_3077-zoom.basicLightbox--iframe .basicLightbox__placeholder iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

#stacks_in_3077-closer .closer-icon {
	width: 24px;
	height: 24px;
}

#stacks_in_3077-closer {
	position: fixed; 
	cursor: pointer; 
	z-index: 100000; 
	background-color: rgba(33, 37, 41, 1.00);
	color: rgba(248, 249, 250, 1.00);
	
}

#stacks_in_3077-closer.show-closer:hover {
	transform: scale(1.1);
}

#stacks_in_3077-closer.closed {
	transition-duration: 0.15s;
	transition-timing-function: ease;
	opacity: 0;
	top: 20px; 
	left: 20px; 
	transform: scale(0.5);
	pointer-events: none;
}

#stacks_in_3077-closer.show-closer {
	transition-duration: 0.15s;
	transition-timing-function: cubic-bezier(0.680, -0.550, 0.265, 1.550);
	opacity: 1;
	top: 20px; 
	left: 20px; 
	transform: scale(1);
	pointer-events: initial;
}

.stacks_in_3077-wrapper .indicator-icon-sizing {
	height: 24px;
	width: 24px;
}

#stacks_in_3077-zoom-indicator {
	line-height: 59px;
	height: 64px;
	width: 64px;
}

@media (min-width: 576px) {
	.stacks_in_3077-wrapper .indicator-icon-sizing {
		height: 28px;
		width: 28px;
	}
	
	#stacks_in_3077-zoom-indicator {
		line-height: 63px;
		height: 68px;
		width: 68px;
	}
}

@media (min-width: 768px) {
	.stacks_in_3077-wrapper .indicator-icon-sizing {
		height: 32px;
		width: 32px;
	}
	
#stacks_in_3077-zoom-indicator {
		line-height: 67px;
		height: 72px;
		width: 72px;
	}
}

@media (min-width: 992px) {
	.stacks_in_3077-wrapper .indicator-icon-sizing {
		height: 32px;
		width: 32px;
	}
	
	#stacks_in_3077-zoom-indicator {
		line-height: 67px;
		height: 72px;
		width: 72px;
	}
}

@media (min-width: 1200px) {
	.stacks_in_3077-wrapper .indicator-icon-sizing {
		height: 36px;
		width: 36px;
	}
	
	#stacks_in_3077-zoom-indicator {
		line-height: 71px;
		height: 76px;
		width: 76px;
	}
}

@media (min-width: 1400px) {
	.stacks_in_3077-wrapper .indicator-icon-sizing {
		height: 42px;
		width: 42px;
	}
	
	#stacks_in_3077-zoom-indicator {
		line-height: 77px;
		height: 82px;
		width: 82px;
	}
}


.stacks_in_3077-wrapper .zoom-indicator {
	

	z-index: 100;
	background-color: rgba(255, 255, 255, 0.00);
	color: rgba(44, 49, 54, 1.00);
	
	transition-timing-function: cubic-bezier(0.680, -0.550, 0.265, 1.550);
	transition-duration: 0.1s;
	transition-property: transform;
	
	
	transform: scale(1);
	bottom: 10px; right: 10px;
	
}

.stacks_in_3077-wrapper:hover .zoom-indicator {
	background-color: rgba(255, 255, 255, 0.00);
	color: rgba(44, 49, 54, 1.00);
	transition-duration: 0.1s;
	transition-property: transform;
	transition-timing-function: cubic-bezier(0.680, -0.550, 0.265, 1.550);
	
	
	transform: scale(1);
	bottom: 10px; right: 10px;
	
}

.stacks_in_3077-zoom-modal.custom-shadow {
	box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.33);
}


@media (max-width: 576px) {
	.stacks_in_3077-wrapper .zoom-indicator {
		
		transform: translate(-50%, -50%) scale(1);
		right: initial;
		bottom: initial;
		top: 50%;
		left: 50%;
		
	}
	
	.stacks_in_3077-wrapper:hover .zoom-indicator {
		
		transform: translate(-50%, -50%) scale(1);
		right: initial;
		bottom: initial;
		top: 50%;
		left: 50%;
		
	}
}

.stacks_in_3077-wrapper picture.fdy-img {
	margin: 0;
    vertical-align: top;
}





.stacks_in_3077-wrapper img {
	margin: 0 !important;
}





.stacks_in_3078.fdy-img {
	
	
	

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


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

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




.stacks_in_2899-container {
	
	
	

	
	
	

}








.stacks_in_3080-zoom {
	position: fixed;
	display: flex;
	justify-content: center;
	align-items: center;
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh;
	opacity: 0.01;
	transition: 0.15s ease;
	z-index: 3000;
	will-change: opacity;
}

.stacks_in_3080-zoom {
	background: rgba(26, 48, 107, 1.00); 
	background: radial-gradient(circle, rgba(26, 48, 107, 1.00) 0%, rgba(28, 28, 28, 0.50) 100%);
	-webkit-backdrop-filter:    ;
	backdrop-filter:    ;
}

.stacks_in_3080-zoom.basicLightbox--visible {
	opacity: 1;
}

.stacks_in_3080-zoom .basicLightbox__placeholder {
	max-width: 100%;
	transform: scale(0.8);
	transition: transform 0.15s cubic-bezier(0.175, 0.885, 0.320, 1.275);  /* Easing -- Ease out and back */
	z-index: 1;
	will-change: transform;
}

.stacks_in_3080-zoom .basicLightbox__placeholder > iframe:first-child:last-child,
.stacks_in_3080-zoom .basicLightbox__placeholder > img:first-child:last-child,
.stacks_in_3080-zoom .basicLightbox__placeholder > video:first-child:last-child {
	display: block;
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	margin: auto;
	max-width: 95%;
	max-height: 95%;
}

.stacks_in_3080-zoom .basicLightbox__placeholder > iframe:first-child:last-child,
.stacks_in_3080-zoom .basicLightbox__placeholder > video:first-child:last-child {
	pointer-events: auto;
}

.stacks_in_3080-zoom .basicLightbox__placeholder > img:first-child:last-child,
.stacks_in_3080-zoom .basicLightbox__placeholder > video:first-child:last-child {
	width: auto;
	height: auto;
}

.stacks_in_3080-zoom.basicLightbox--iframe .basicLightbox__placeholder,
.stacks_in_3080-zoom.basicLightbox--img .basicLightbox__placeholder,
.stacks_in_3080-zoom.basicLightbox--video .basicLightbox__placeholder {
	width: 100%;
	height: 100%;
	pointer-events: none;
}

.stacks_in_3080-zoom.basicLightbox--visible .basicLightbox__placeholder {
	transform: scale(1);
}

.stacks_in_3080-zoom.basicLightbox--iframe .basicLightbox__placeholder {
	width: 90vw;
	position: relative;
	padding-bottom: calc(9/16 * 90%);
	height: 0;
}

.stacks_in_3080-zoom.basicLightbox--iframe .basicLightbox__placeholder iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

#stacks_in_3080-closer .closer-icon {
	width: 24px;
	height: 24px;
}

#stacks_in_3080-closer {
	position: fixed; 
	cursor: pointer; 
	z-index: 100000; 
	background-color: rgba(33, 37, 41, 1.00);
	color: rgba(248, 249, 250, 1.00);
	
}

#stacks_in_3080-closer.show-closer:hover {
	transform: scale(1.1);
}

#stacks_in_3080-closer.closed {
	transition-duration: 0.15s;
	transition-timing-function: ease;
	opacity: 0;
	top: 20px; 
	left: 20px; 
	transform: scale(0.5);
	pointer-events: none;
}

#stacks_in_3080-closer.show-closer {
	transition-duration: 0.15s;
	transition-timing-function: cubic-bezier(0.680, -0.550, 0.265, 1.550);
	opacity: 1;
	top: 20px; 
	left: 20px; 
	transform: scale(1);
	pointer-events: initial;
}

.stacks_in_3080-wrapper .indicator-icon-sizing {
	height: 24px;
	width: 24px;
}

#stacks_in_3080-zoom-indicator {
	line-height: 59px;
	height: 64px;
	width: 64px;
}

@media (min-width: 576px) {
	.stacks_in_3080-wrapper .indicator-icon-sizing {
		height: 28px;
		width: 28px;
	}
	
	#stacks_in_3080-zoom-indicator {
		line-height: 63px;
		height: 68px;
		width: 68px;
	}
}

@media (min-width: 768px) {
	.stacks_in_3080-wrapper .indicator-icon-sizing {
		height: 32px;
		width: 32px;
	}
	
#stacks_in_3080-zoom-indicator {
		line-height: 67px;
		height: 72px;
		width: 72px;
	}
}

@media (min-width: 992px) {
	.stacks_in_3080-wrapper .indicator-icon-sizing {
		height: 32px;
		width: 32px;
	}
	
	#stacks_in_3080-zoom-indicator {
		line-height: 67px;
		height: 72px;
		width: 72px;
	}
}

@media (min-width: 1200px) {
	.stacks_in_3080-wrapper .indicator-icon-sizing {
		height: 36px;
		width: 36px;
	}
	
	#stacks_in_3080-zoom-indicator {
		line-height: 71px;
		height: 76px;
		width: 76px;
	}
}

@media (min-width: 1400px) {
	.stacks_in_3080-wrapper .indicator-icon-sizing {
		height: 42px;
		width: 42px;
	}
	
	#stacks_in_3080-zoom-indicator {
		line-height: 77px;
		height: 82px;
		width: 82px;
	}
}


.stacks_in_3080-wrapper .zoom-indicator {
	

	z-index: 100;
	background-color: rgba(255, 255, 255, 0.00);
	color: rgba(44, 49, 54, 1.00);
	
	transition-timing-function: cubic-bezier(0.680, -0.550, 0.265, 1.550);
	transition-duration: 0.1s;
	transition-property: transform;
	
	
	transform: scale(1);
	bottom: 10px; right: 10px;
	
}

.stacks_in_3080-wrapper:hover .zoom-indicator {
	background-color: rgba(255, 255, 255, 0.00);
	color: rgba(44, 49, 54, 1.00);
	transition-duration: 0.1s;
	transition-property: transform;
	transition-timing-function: cubic-bezier(0.680, -0.550, 0.265, 1.550);
	
	
	transform: scale(1);
	bottom: 10px; right: 10px;
	
}

.stacks_in_3080-zoom-modal.custom-shadow {
	box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.33);
}


@media (max-width: 576px) {
	.stacks_in_3080-wrapper .zoom-indicator {
		
		transform: translate(-50%, -50%) scale(1);
		right: initial;
		bottom: initial;
		top: 50%;
		left: 50%;
		
	}
	
	.stacks_in_3080-wrapper:hover .zoom-indicator {
		
		transform: translate(-50%, -50%) scale(1);
		right: initial;
		bottom: initial;
		top: 50%;
		left: 50%;
		
	}
}

.stacks_in_3080-wrapper picture.fdy-img {
	margin: 0;
    vertical-align: top;
}





.stacks_in_3080-wrapper img {
	margin: 0 !important;
}





.stacks_in_3081.fdy-img {
	
	
	

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


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

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




.stacks_in_2901-container {
	
	
	

	
	
	

}








.stacks_in_3083-zoom {
	position: fixed;
	display: flex;
	justify-content: center;
	align-items: center;
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh;
	opacity: 0.01;
	transition: 0.15s ease;
	z-index: 3000;
	will-change: opacity;
}

.stacks_in_3083-zoom {
	background: rgba(26, 48, 107, 1.00); 
	background: radial-gradient(circle, rgba(26, 48, 107, 1.00) 0%, rgba(28, 28, 28, 0.50) 100%);
	-webkit-backdrop-filter:    ;
	backdrop-filter:    ;
}

.stacks_in_3083-zoom.basicLightbox--visible {
	opacity: 1;
}

.stacks_in_3083-zoom .basicLightbox__placeholder {
	max-width: 100%;
	transform: scale(0.8);
	transition: transform 0.15s cubic-bezier(0.175, 0.885, 0.320, 1.275);  /* Easing -- Ease out and back */
	z-index: 1;
	will-change: transform;
}

.stacks_in_3083-zoom .basicLightbox__placeholder > iframe:first-child:last-child,
.stacks_in_3083-zoom .basicLightbox__placeholder > img:first-child:last-child,
.stacks_in_3083-zoom .basicLightbox__placeholder > video:first-child:last-child {
	display: block;
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	margin: auto;
	max-width: 95%;
	max-height: 95%;
}

.stacks_in_3083-zoom .basicLightbox__placeholder > iframe:first-child:last-child,
.stacks_in_3083-zoom .basicLightbox__placeholder > video:first-child:last-child {
	pointer-events: auto;
}

.stacks_in_3083-zoom .basicLightbox__placeholder > img:first-child:last-child,
.stacks_in_3083-zoom .basicLightbox__placeholder > video:first-child:last-child {
	width: auto;
	height: auto;
}

.stacks_in_3083-zoom.basicLightbox--iframe .basicLightbox__placeholder,
.stacks_in_3083-zoom.basicLightbox--img .basicLightbox__placeholder,
.stacks_in_3083-zoom.basicLightbox--video .basicLightbox__placeholder {
	width: 100%;
	height: 100%;
	pointer-events: none;
}

.stacks_in_3083-zoom.basicLightbox--visible .basicLightbox__placeholder {
	transform: scale(1);
}

.stacks_in_3083-zoom.basicLightbox--iframe .basicLightbox__placeholder {
	width: 90vw;
	position: relative;
	padding-bottom: calc(9/16 * 90%);
	height: 0;
}

.stacks_in_3083-zoom.basicLightbox--iframe .basicLightbox__placeholder iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

#stacks_in_3083-closer .closer-icon {
	width: 24px;
	height: 24px;
}

#stacks_in_3083-closer {
	position: fixed; 
	cursor: pointer; 
	z-index: 100000; 
	background-color: rgba(33, 37, 41, 1.00);
	color: rgba(248, 249, 250, 1.00);
	
}

#stacks_in_3083-closer.show-closer:hover {
	transform: scale(1.1);
}

#stacks_in_3083-closer.closed {
	transition-duration: 0.15s;
	transition-timing-function: ease;
	opacity: 0;
	top: 20px; 
	left: 20px; 
	transform: scale(0.5);
	pointer-events: none;
}

#stacks_in_3083-closer.show-closer {
	transition-duration: 0.15s;
	transition-timing-function: cubic-bezier(0.680, -0.550, 0.265, 1.550);
	opacity: 1;
	top: 20px; 
	left: 20px; 
	transform: scale(1);
	pointer-events: initial;
}

.stacks_in_3083-wrapper .indicator-icon-sizing {
	height: 24px;
	width: 24px;
}

#stacks_in_3083-zoom-indicator {
	line-height: 59px;
	height: 64px;
	width: 64px;
}

@media (min-width: 576px) {
	.stacks_in_3083-wrapper .indicator-icon-sizing {
		height: 28px;
		width: 28px;
	}
	
	#stacks_in_3083-zoom-indicator {
		line-height: 63px;
		height: 68px;
		width: 68px;
	}
}

@media (min-width: 768px) {
	.stacks_in_3083-wrapper .indicator-icon-sizing {
		height: 32px;
		width: 32px;
	}
	
#stacks_in_3083-zoom-indicator {
		line-height: 67px;
		height: 72px;
		width: 72px;
	}
}

@media (min-width: 992px) {
	.stacks_in_3083-wrapper .indicator-icon-sizing {
		height: 32px;
		width: 32px;
	}
	
	#stacks_in_3083-zoom-indicator {
		line-height: 67px;
		height: 72px;
		width: 72px;
	}
}

@media (min-width: 1200px) {
	.stacks_in_3083-wrapper .indicator-icon-sizing {
		height: 36px;
		width: 36px;
	}
	
	#stacks_in_3083-zoom-indicator {
		line-height: 71px;
		height: 76px;
		width: 76px;
	}
}

@media (min-width: 1400px) {
	.stacks_in_3083-wrapper .indicator-icon-sizing {
		height: 42px;
		width: 42px;
	}
	
	#stacks_in_3083-zoom-indicator {
		line-height: 77px;
		height: 82px;
		width: 82px;
	}
}


.stacks_in_3083-wrapper .zoom-indicator {
	

	z-index: 100;
	background-color: rgba(255, 255, 255, 0.00);
	color: rgba(44, 49, 54, 1.00);
	
	transition-timing-function: cubic-bezier(0.680, -0.550, 0.265, 1.550);
	transition-duration: 0.1s;
	transition-property: transform;
	
	
	transform: scale(1);
	bottom: 10px; right: 10px;
	
}

.stacks_in_3083-wrapper:hover .zoom-indicator {
	background-color: rgba(255, 255, 255, 0.00);
	color: rgba(44, 49, 54, 1.00);
	transition-duration: 0.1s;
	transition-property: transform;
	transition-timing-function: cubic-bezier(0.680, -0.550, 0.265, 1.550);
	
	
	transform: scale(1);
	bottom: 10px; right: 10px;
	
}

.stacks_in_3083-zoom-modal.custom-shadow {
	box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.33);
}


@media (max-width: 576px) {
	.stacks_in_3083-wrapper .zoom-indicator {
		
		transform: translate(-50%, -50%) scale(1);
		right: initial;
		bottom: initial;
		top: 50%;
		left: 50%;
		
	}
	
	.stacks_in_3083-wrapper:hover .zoom-indicator {
		
		transform: translate(-50%, -50%) scale(1);
		right: initial;
		bottom: initial;
		top: 50%;
		left: 50%;
		
	}
}

.stacks_in_3083-wrapper picture.fdy-img {
	margin: 0;
    vertical-align: top;
}





.stacks_in_3083-wrapper img {
	margin: 0 !important;
}





.stacks_in_3084.fdy-img {
	
	
	

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


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

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




.stacks_in_2917-container {
	
	
	

	
	
	

}









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

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


#stacks_in_2919-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_2919-margins.padding-advanced {
	padding: 30.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_3879-wrapper {
	
	
	
		
		
		color: var(--bs-gray-500);
		
	
}







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

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

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

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

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

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



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





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

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


#stacks_in_2923-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_2923-margins.padding-advanced {
	padding: 20.00px 0.00px 20.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_2921-container {
	
	
	

	
	
	

}










.stacks_in_2907-container {
	
	
	

	
	
	

}










.stacks_in_1818-container {
	
	overflow: hidden;
	
	
	
	height: 100vh;
	

	
	
	

}


	








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

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


#stacks_in_2036-margins.margins-advanced {
	margin: 0.00% 5.00% 0.00% 5.00%;
}

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

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

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

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

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




#stacks_in_2036-margins.padding-advanced {
	padding: 4.00rem 0.00rem 0.50rem 0.00rem;
}

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

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

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

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

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



div.stacks_in_2034-header {
	
	font-weight: 400;
	
	
	
	
	font-size: 26.00px;
	
	
	
	
	
	color: var(--bs-danger);
	
	
	

	
	letter-spacing: 0.00px;
	
	
	
}

div.stacks_in_2034-header > small {
	
	font-weight: 700;
	
	
	
	
	
	
	
	color: ;
	
	
	

}



div.stacks_in_2034-header {
	margin-bottom: 0;
}










.stacks_in_2200-container {
	
	
	

	
	
	

}












.stacks_in_3873-container {
	
	
	

	
	
	

}






#splide-stacks_in_2258 .splide__progress {
    margin-top: 10px;
    margin-bottom: 10px
}

#splide-stacks_in_2258 .splide__progress__bar {
    background: rgba(32, 178, 170, 1.00);
    height: 3px
}

#splide-stacks_in_2258 .splide__video__wrapper video,
#splide-stacks_in_2258 .splider-vid img {
    width: 100%;
    height: 100%;
    
}

#splide-stacks_in_2258>.splide__track {
    
}



#splide-stacks_in_2258:not(.splide--grid)>.splide__track>.splide__list>.splide__slide,
#splide-stacks_in_2258>.splide__track>.splide__list>.splide__slide>.splide__slide__row>.splide__slide {
    display: flex;
    justify-content: center;
    flex-direction: column;
    flex-wrap: nowrap
}

#splide-stacks_in_2258 .splide__slide>.stacks_out {
    width: 100%
}

#splide-stacks_in_2258:not(.splide--grid):not(.splide--fade)>.splide__track>.splide__list>.splide__slide,
#splide-stacks_in_2258>.splide__track>.splide__list>.splide__slide>.splide__slide__row>.splide__slide {
    opacity: 1.00;
    transition: opacity 0.15s cubic-bezier(.54, .01, .1, 1), background-color 0.15s cubic-bezier(.54, .01, .1, 1), color 0.15s cubic-bezier(.54, .01, .1, 1)
}

#splide-stacks_in_2258:not(.splide--grid):not(.splide--fade)>.splide__track>.splide__list>.splide__slide.is-active,
#splide-stacks_in_2258>.splide__track>.splide__list>.splide__slide.is-active>.splide__slide__row>.splide__slide {
    opacity: 1
}

.splide-stacks_in_2261{}



.stacks_in_2367-container {
	
	
	

	
	
	

}







.splide-stacks_in_2265{}



.stacks_in_2370-container {
	
	
	

	
	
	

}







.splide-stacks_in_2268{}



.stacks_in_2377-container {
	
	
	

	
	
	

}







#splide-stacks_in_2258{padding:50px 100px 50px 100px}#splide-stacks_in_2258:not(.splide--grid)>.splide__track>.splide__list>.splide__slide,#splide-stacks_in_2258>.splide__track>.splide__list>.splide__slide>.splide__slide__row>.splide__slide{border-radius:10px;border-width:0px 0px 0px 0px;border-style:solid;padding:0px}#splide-stacks_in_2258 .splider-img{border-radius:10px;overflow:hidden}#splide-stacks_in_2258>.splide__arrows>.splide__arrow{width:52px;height:52px;padding:6px;border-radius:30px;background-color:rgba(31, 161, 246, 0.30)}@media screen and (min-width:576px){#splide-stacks_in_2258>.splide__arrows>.splide__arrow{display:none}}#splide-stacks_in_2258>.splide__arrows--ltr>.splide__arrow--prev{left:1.00em}#splide-stacks_in_2258>.splide__arrows--rtl>.splide__arrow--prev{right:1.00em}#splide-stacks_in_2258>.splide__arrows--ttb>.splide__arrow--prev{top:1.00em}#splide-stacks_in_2258>.splide__arrows--ltr>.splide__arrow--next{right:1.00em}#splide-stacks_in_2258>.splide__arrows--rtl>.splide__arrow--next{left:1.00em}#splide-stacks_in_2258>.splide__arrows--ttb>.splide__arrow--next{bottom:1.00em}#splide-stacks_in_2258>.splide__arrows>.splide__arrow svg{width:2.50em;height:2.50em;fill:rgba(26, 48, 107, 1.00)}#splide-stacks_in_2258>.splide__arrows>.splide__arrow:hover svg{fill:rgba(26, 48, 107, 1.00)}#splide-stacks_in_2258>.splide__arrows>.splide__arrow[disabled]{opacity:0.50;pointer-events:none}#splide-stacks_in_2258>.splide__pagination{justify-content:center;padding-left:0.00em;padding-right:0.00em;bottom:0.50em;top:unset;  }@media screen and (min-width:576px){#splide-stacks_in_2258>.splide__pagination{display:none}}#splide-stacks_in_2258>.splide__pagination>li>.splide__pagination__page{background:rgba(26, 48, 107, 0.35);border-radius:3px;opacity:unset;}#splide-stacks_in_2258>.splide__pagination--rtl>li>.splide__pagination__page,#splide-stacks_in_2258>.splide__pagination--ltr>li>.splide__pagination__page{width:5px;height:5px}#splide-stacks_in_2258>.splide__pagination--ttb>li>.splide__pagination__page{width:5px;height:5px}#splide-stacks_in_2258>.splide__pagination>li>.splide__pagination__page:hover{background:rgba(26, 48, 107, 1.00)}#splide-stacks_in_2258>.splide__pagination>li>.splide__pagination__page.is-active{background:rgba(31, 161, 246, 1.00);transform:scale(1.20)}@media screen and (max-width:576px){ #splide-stacks_in_2258>.splide__arrows>.splide__arrow{width:52px;height:52px}#splide-stacks_in_2258>.splide__arrows>.splide__arrow svg{width:2.50em;height:2.50em} #splide-stacks_in_2258{padding:25px 100px 25px 100px}#splide-stacks_in_2258:not(.splide--grid)>.splide__track>.splide__list>.splide__slide,#splide-stacks_in_2258>.splide__track>.splide__list>.splide__slide>.splide__slide__row>.splide__slide{padding:0px}}


.stacks_in_2141-container {
	
	
	

	
	
	

}








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

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

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

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


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

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

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

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



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

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






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



	

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



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



	
	

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

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

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



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


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








	

	











#stacks_in_2617-wrapper {
	
	
	
		
		
		color: var(--bs-white);
		
	
}







#stacks_in_2617-wrapper {
	font-size: 2.00rem;
}

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

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

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

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

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



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







.stacks_in_2622-container {
	
	
	

	
	
	

}










.stacks_in_3257-container {
	
	
	

	
	
	

}








#stacks_in_3256_48-mask {
	
		
    	background-color: var(--bs-secondary);
		
		
	
	position: relative;
	overflow: visible;
}

#stacks_in_3256_48-mask .mask-content {
	position: relative;
}

.stacks_in_3256_50-point {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
	
    background-color: transparent;
	
	
	
}

.stacks_in_3256_50-point svg {
	

    position: relative;
    display: block;
	transform: scale(1.01);

		
	/* Flip Vertically */
    transform: scale(1.01) rotateX(180deg);
	

}

.stacks_in_3256_50-point .shape-fill {
	
    fill: var(--bs-primary);
	
	
}


.stacks_in_3256_50-point svg {
    height: 65px;
}




.stacks_in_3256_50-point svg {
    width: calc(286% + 1.3px);
}







#stacks_in_3256_101-wrapper {
	
}

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


/* Advanced Mode */
#stacks_in_3256_101-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: 768px) {
  #stacks_in_3256_101-wrapper.fdy-container {
	max-width: 720px;
  }
}



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



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



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





	#stacks_in_3256_73-wrapper {
		z-index: 5;
		position: relative;
		
		

		
		

	}


	@media (min-width: 576px) {
		#stacks_in_3256_73-wrapper {
			
				
				top: -80px;
				margin-bottom: -80px;
				margin-top: 0;
				
				
			

			
		}
	}
	
	@media (min-width: 768px) {
		#stacks_in_3256_73-wrapper {
			
				
				top: -175px;
				margin-bottom: -175px;
				margin-top: 0;
				
				
			
			
			
		}
	}
	
	@media (min-width: 992px) {
		#stacks_in_3256_73-wrapper {
			
			
			
		}
	}
	
	@media (min-width: 1200px) {
		#stacks_in_3256_73-wrapper {
			
			
			
		}
	}
	
	@media (min-width: 1400px) {
		#stacks_in_3256_73-wrapper {
			

			
		}
	}







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

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


#stacks_in_3256_74-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_3256_74-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_3256_76-alchemy {
	opacity: 0;
}

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

		

		filter: blur(0px);
	}
}

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



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

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

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

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


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

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

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

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



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

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






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



	

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



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



	
	

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

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

#stacks_in_3256_78-wrapper.bkg-gradient-two {
	background: rgba(31, 161, 246, 1.00);
	background: linear-gradient(-90deg, rgba(31, 161, 246, 1.00) 0%, rgba(26, 48, 107, 1.00) 100%);
}

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



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


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








	

	








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

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


#stacks_in_3256_80-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_3256_80-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_3256_82-wrapper > .row > .col {
		display: flex;
		flex-direction: column;
		justify-content: center;
	}
	
	




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





h3.stacks_in_3256_86-header {
	
	font-weight: 400;
	
	
	
	
	
	
	
	
	color: var(--bs-white);
	
	
	

	
	letter-spacing: 0.00px;
	
	
	
}

h3.stacks_in_3256_86-header > small {
	
	
	
	
	
	
	
	color: ;
	
	
	

}



h3.stacks_in_3256_86-header {
	margin-bottom: 0;
}






.stacks_in_3256_86-header {
	font-size: 1.75rem;
}

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

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

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

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

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


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

.stacks_in_3256_89-list {
	
	
	
	color: rgba(255, 255, 255, 1.00) !important;
	
}

.stacks_in_3256_89-list .list-icon {
	
	color: var(--bs-gray-500) !important;
	
	
	
}

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

.stacks_in_3256_89-list a,
.stacks_in_3256_89-list a:visited {
	
	
	
	text-decoration: none;
}

.stacks_in_3256_89-list a:hover,
.stacks_in_3256_89-list a:active {
	
	opacity: 50%;
	
	
		
	text-decoration: none;
}












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

	

}

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

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

.stacks_in_3256_90-list-item .badge {
	position: relative;
	top: -2px;
	color: rgba(255, 255, 255, 1.00);
	
	
	background-color: var(--bs-danger);
	
	
	
}

.stacks_in_3256_90-list-item.custom-icon-color .list-icon {
	color: rgba(122, 183, 52, 1.00) !important;
}

.stacks_in_3256_92-list-item .badge {
	position: relative;
	top: -2px;
	color: rgba(250, 122, 38, 1.00);
	
	
	background-color: var(--bs-danger);
	
	
	
}

.stacks_in_3256_92-list-item.custom-icon-color .list-icon {
	color: rgba(122, 183, 52, 1.00) !important;
}




.stacks_in_3256_94-container {
	
	
	

	
	
	
	display: grid;
    grid-auto-flow: column;
		
		
			
			align-content: ;
			
			justify-content: end;
		
	

}










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

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


#stacks_in_3256_52-margins.margins-advanced {
	margin: 45.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_3256_52-margins.padding-advanced {
	padding: 2.50rem 2.00rem 1.00rem 2.00rem;
}

@media (min-width: 576px) {
	
	#stacks_in_3256_52-margins.padding-advanced {
		padding: 4.50rem 0.00rem 2.50rem 0.00rem;
	}
	
}

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

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

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

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



.stacks_in_3256_71-container {
	
	
	

	
	
	

}











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


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

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



