





.sitelok-hide{display:none !important}
.processing-circle{margin:0 auto;width:40px;height:40px;border:4px solid var(--white-color);border-top:4px solid var(--primary);border-radius:50%;filter:drop-shadow(0 0 20px rgba(0,0,0,0.6))}.processing-circle.dark{border-color:var(--black-color);border-top-color:var(--primary)}.processing-circle.primary{border-top-color:var(--primary)}.processing-circle.secondary{border-top-color:var(--secondary)}.processing-circle.warning{border-top-color:var(--warning)}.processing-circle.success{border-top-color:var(--success)}.processing-circle.alert{border-top-color:var(--alert)}
.form-submit-success,.form-submit-error{opacity:0;transition:none;overflow:hidden}form:not(.success) .form-submit-success,form:not(.error) .form-submit-error{max-height:0;padding:0;margin:0;border-width:0px}form.success .form-submit-success,form.error .form-submit-error{opacity:1;transition:opacity 500ms ease}.form-submit-processing{opacity:0;pointer-events:none;transition:opacity 500ms ease}form:not(.processing) .form-submit-processing{max-height:0}form.processing *{pointer-events:none}form.processing .form-submit-processing{opacity:1;pointer-events:auto}.processing-modal.absolute,.processing-modal.fixed{background-color:var(--overlay-color);border-radius:inherit;position:absolute;top:0;left:0;right:0;bottom:0}.processing-modal.absolute .processing-circle,.processing-modal.fixed .processing-circle{position:absolute;top:0;bottom:0;left:0;right:0;margin:auto}.processing-modal.fixed{position:fixed}
.agent-hide{display:none !important}
/* Corner Stack v.1.0.1 */


/* General styles for the modal */

.corner-modal {
	position: fixed;
	z-index: 9999;
  transform: translateZ(0px);
	right: 0px;
  bottom: 0px;
	max-width: 320px;
	/*max-height:100%;*/
	visibility: hidden;
	-webkit-backface-visibility: hidden;
	-moz-backface-visibility: hidden;
	backface-visibility: hidden;
	margin:20px;
}

.corner-modal.corner-show{
	visibility: visible;
}

.corner-button {
	visibility: hidden;
	opacity: 0;
	z-index: 9998;
	transform: translateZ(0px);
	position: fixed;
	right:0px;
	bottom:0px;
	padding:10px 20px;
  margin: 20px;
	background: rgba(143,27,15,0.8);
	-webkit-transition: all 0.5s;
	-moz-transition: all 0.5s;
	transition: all 0.5s;
  cursor:pointer;
}

.corner-button.corner-tl,
.corner-button.corner-tr {
	margin-top: -60px;
}

.corner-button.corner-bl,
.corner-button.corner-br {
	margin-bottom: -60px;
}

.corner-button.corner-show {
	visibility: visible;
	opacity: 1;
}

.corner-button.corner-tl.corner-show,
.corner-button.corner-tr.corner-show {
	margin-top: 20px;
}

.corner-button.corner-bl.corner-show,
.corner-button.corner-br.corner-show {
	margin-bottom: 20px;
}

.corner-close {
	position:absolute;
	top:10px;
	right:10px;
	cursor:pointer;
}

.corner-overlay {
	position: fixed;
	width: 100%;
	height: 100%;
	visibility: hidden;
	top: 0;
	left: 0;
	z-index: 1000;
	opacity: 0;
	background: rgba(143,27,15,0.8);
	-webkit-transition: all 0.3s;
	-moz-transition: all 0.3s;
	transition: all 0.3s;
}

.corner-overlay.corner-show {
	opacity: 1;
	visibility: visible;
}

/* Content styles */
.corner-content {
	position: relative;
	margin: 0 auto;
  padding:30px 20px 20px 20px;
}

/*.corner-content > div {
	padding: 15px 40px 30px;
	margin: 0;
	font-weight: 300;
	font-size: 1.15em;
}*/

.corner-tl
{
	left: 0px;
  top: 0px;
  bottom: auto !important;
  right:auto !important;
}

.corner-tr
{
	left: auto !important;
  top: 0px;
  bottom: auto !important;
  right:0px;
}

.corner-br
{
	left: auto !important;
  top: auto !important;
  bottom: 0px;
  right:0px;
}

.corner-bl
{
	left: 0px;
  top: auto !important;
  bottom: 0px;
  right:auto !important;
}


/* Individual modal styles with animations/transitions */

/* Effect 1: Fade in and scale up */
.corner-effect-1 .corner-content {
	-webkit-transform: scale(0.7);
	-moz-transform: scale(0.7);
	-ms-transform: scale(0.7);
	transform: scale(0.7);
	opacity: 0;
	-webkit-transition: all 0.3s;
	-moz-transition: all 0.3s;
	transition: all 0.3s;
}

.corner-show.corner-effect-1 .corner-content {
	-webkit-transform: scale(1);
	-moz-transform: scale(1);
	-ms-transform: scale(1);
	transform: scale(1);
	opacity: 1;
}

/* Effect 2: Slide from the right */
.corner-effect-2 .corner-content {
	-webkit-transform: translateX(20%);
	-moz-transform: translateX(20%);
	-ms-transform: translateX(20%);
	transform: translateX(20%);
	opacity: 0;
	-webkit-transition: all 0.3s cubic-bezier(0.25, 0.5, 0.5, 0.9);
	-moz-transition: all 0.3s cubic-bezier(0.25, 0.5, 0.5, 0.9);
	transition: all 0.3s cubic-bezier(0.25, 0.5, 0.5, 0.9);
}

.corner-show.corner-effect-2 .corner-content {
	-webkit-transform: translateX(0);
	-moz-transform: translateX(0);
	-ms-transform: translateX(0);
	transform: translateX(0);
	opacity: 1;
}

/* Effect 3: Slide from the bottom */
.corner-effect-3 .corner-content {
	-webkit-transform: translateY(20%);
	-moz-transform: translateY(20%);
	-ms-transform: translateY(20%);
	transform: translateY(20%);
	opacity: 0;
	-webkit-transition: all 0.3s;
	-moz-transition: all 0.3s;
	transition: all 0.3s;
}

.corner-show.corner-effect-3 .corner-content {
	-webkit-transform: translateY(0);
	-moz-transform: translateY(0);
	-ms-transform: translateY(0);
	transform: translateY(0);
	opacity: 1;
}

/* Effect 4: Newspaper */
.corner-effect-4 .corner-content {
	-webkit-transform: scale(0) rotate(720deg);
	-moz-transform: scale(0) rotate(720deg);
	-ms-transform: scale(0) rotate(720deg);
	transform: scale(0) rotate(720deg);
	opacity: 0;
}

.corner-show.corner-effect-4 ~ .corner-overlay,
.corner-effect-4 .corner-content {
	-webkit-transition: all 0.5s;
	-moz-transition: all 0.5s;
	transition: all 0.5s;
}

.corner-show.corner-effect-4 .corner-content {
	-webkit-transform: scale(1) rotate(0deg);
	-moz-transform: scale(1) rotate(0deg);
	-ms-transform: scale(1) rotate(0deg);
	transform: scale(1) rotate(0deg);
	opacity: 1;
}

/* Effect 5: fall */
.corner-effect-5.corner-modal {
	-webkit-perspective: 1300px;
	-moz-perspective: 1300px;
	perspective: 1300px;
}

.corner-effect-5 .corner-content {
	-webkit-transform-style: preserve-3d;
	-moz-transform-style: preserve-3d;
	transform-style: preserve-3d;
	-webkit-transform: translateZ(600px) rotateX(20deg); 
	-moz-transform: translateZ(600px) rotateX(20deg); 
	-ms-transform: translateZ(600px) rotateX(20deg); 
	transform: translateZ(600px) rotateX(20deg); 
	opacity: 0;
}

.corner-show.corner-effect-5 .corner-content {
	-webkit-transition: all 0.3s ease-in;
	-moz-transition: all 0.3s ease-in;
	transition: all 0.3s ease-in;
	-webkit-transform: translateZ(0px) rotateX(0deg);
	-moz-transform: translateZ(0px) rotateX(0deg);
	-ms-transform: translateZ(0px) rotateX(0deg);
	transform: translateZ(0px) rotateX(0deg); 
	opacity: 1;
}

/* Effect 6: side fall */
.corner-effect-6.corner-modal {
	-webkit-perspective: 1300px;
	-moz-perspective: 1300px;
	perspective: 1300px;
}

.corner-effect-6 .corner-content {
	-webkit-transform-style: preserve-3d;
	-moz-transform-style: preserve-3d;
	transform-style: preserve-3d;
	-webkit-transform: translate(30%) translateZ(600px) rotate(10deg); 
	-moz-transform: translate(30%) translateZ(600px) rotate(10deg);
	-ms-transform: translate(30%) translateZ(600px) rotate(10deg);
	transform: translate(30%) translateZ(600px) rotate(10deg); 
	opacity: 0;
}

.corner-show.corner-effect-6 .corner-content {
	-webkit-transition: all 0.3s ease-in;
	-moz-transition: all 0.3s ease-in;
	transition: all 0.3s ease-in;
	-webkit-transform: translate(0%) translateZ(0) rotate(0deg);
	-moz-transform: translate(0%) translateZ(0) rotate(0deg);
	-ms-transform: translate(0%) translateZ(0) rotate(0deg);
	transform: translate(0%) translateZ(0) rotate(0deg);
	opacity: 1;
}

/* Effect 7:  slide and stick to top */
.corner-effect-7{
	top: 0;
	-webkit-transform: translateX(-50%);
	-moz-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	transform: translateX(-50%);
}

.corner-effect-7 .corner-content {
	-webkit-transform: translateY(-200%);
	-moz-transform: translateY(-200%);
	-ms-transform: translateY(-200%);
	transform: translateY(-200%);
	-webkit-transition: all .3s;
	-moz-transition: all .3s;
	transition: all .3s;
	opacity: 0;
}

.corner-show.corner-effect-7 .corner-content {
	-webkit-transform: translateY(0%);
	-moz-transform: translateY(0%);
	-ms-transform: translateY(0%);
	transform: translateY(0%);
	border-radius: 0 0 3px 3px;
	opacity: 1;
}

/* Effect 8: 3D flip horizontal */
.corner-effect-8.corner-modal {
	-webkit-perspective: 1300px;
	-moz-perspective: 1300px;
	perspective: 1300px;
}

.corner-effect-8 .corner-content {
	-webkit-transform-style: preserve-3d;
	-moz-transform-style: preserve-3d;
	transform-style: preserve-3d;
	-webkit-transform: rotateY(-70deg);
	-moz-transform: rotateY(-70deg);
	-ms-transform: rotateY(-70deg);
	transform: rotateY(-70deg);
	-webkit-transition: all 0.3s;
	-moz-transition: all 0.3s;
	transition: all 0.3s;
	opacity: 0;
}

.corner-show.corner-effect-8 .corner-content {
	-webkit-transform: rotateY(0deg);
	-moz-transform: rotateY(0deg);
	-ms-transform: rotateY(0deg);
	transform: rotateY(0deg);
	opacity: 1;
}

/* Effect 9: 3D flip vertical */
.corner-effect-9.corner-modal {
	-webkit-perspective: 1300px;
	-moz-perspective: 1300px;
	perspective: 1300px;
}

.corner-effect-9 .corner-content {
	-webkit-transform-style: preserve-3d;
	-moz-transform-style: preserve-3d;
	transform-style: preserve-3d;
	-webkit-transform: rotateX(-70deg);
	-moz-transform: rotateX(-70deg);
	-ms-transform: rotateX(-70deg);
	transform: rotateX(-70deg);
	-webkit-transition: all 0.3s;
	-moz-transition: all 0.3s;
	transition: all 0.3s;
	opacity: 0;
}

.corner-show.corner-effect-9 .corner-content {
	-webkit-transform: rotateX(0deg);
	-moz-transform: rotateX(0deg);
	-ms-transform: rotateX(0deg);
	transform: rotateX(0deg);
	opacity: 1;
}

/* Effect 10: 3D sign */
.corner-effect-10.corner-modal {
	-webkit-perspective: 1300px;
	-moz-perspective: 1300px;
	perspective: 1300px;
}

.corner-effect-10 .corner-content {
	-webkit-transform-style: preserve-3d;
	-moz-transform-style: preserve-3d;
	transform-style: preserve-3d;
	-webkit-transform: rotateX(-60deg);
	-moz-transform: rotateX(-60deg);
	-ms-transform: rotateX(-60deg);
	transform: rotateX(-60deg);
	-webkit-transform-origin: 50% 0;
	-moz-transform-origin: 50% 0;
	transform-origin: 50% 0;
	opacity: 0;
	-webkit-transition: all 0.3s;
	-moz-transition: all 0.3s;
	transition: all 0.3s;
}

.corner-show.corner-effect-10 .corner-content {
	-webkit-transform: rotateX(0deg);
	-moz-transform: rotateX(0deg);
	-ms-transform: rotateX(0deg);
	transform: rotateX(0deg);
	opacity: 1;
}

/* Effect 11: Super scaled */
.corner-effect-11 .corner-content {
	-webkit-transform: scale(2);
	-moz-transform: scale(2);
	-ms-transform: scale(2);
	transform: scale(2);
	opacity: 0;
	-webkit-transition: all 0.3s;
	-moz-transition: all 0.3s;
	transition: all 0.3s;
}

.corner-show.corner-effect-11 .corner-content {
	-webkit-transform: scale(1);
	-moz-transform: scale(1);
	-ms-transform: scale(1);
	transform: scale(1);
	opacity: 1;
}

/* Effect 12:  Just me */
.corner-effect-12 .corner-content {
	-webkit-transform: scale(0.8);
	-moz-transform: scale(0.8);
	-ms-transform: scale(0.8);
	transform: scale(0.8);
	opacity: 0;
	-webkit-transition: all 0.3s;
	-moz-transition: all 0.3s;
	transition: all 0.3s;
}

.corner-show.corner-effect-12 ~ .corner-overlay {
	background: #e74c3c;
} 

.corner-effect-12 .corner-content h3,
.corner-effect-12 .corner-content {
	background: transparent;
}

.corner-show.corner-effect-12 .corner-content {
	-webkit-transform: scale(1);
	-moz-transform: scale(1);
	-ms-transform: scale(1);
	transform: scale(1);
	opacity: 1;
}

/* Effect 13: 3D slit */
.corner-effect-13.corner-modal {
	-webkit-perspective: 1300px;
	-moz-perspective: 1300px;
	perspective: 1300px;
}

.corner-effect-13 .corner-content {
	-webkit-transform-style: preserve-3d;
	-moz-transform-style: preserve-3d;
	transform-style: preserve-3d;
	-webkit-transform: translateZ(-3000px) rotateY(90deg);
	-moz-transform: translateZ(-3000px) rotateY(90deg);
	-ms-transform: translateZ(-3000px) rotateY(90deg);
	transform: translateZ(-3000px) rotateY(90deg);
	opacity: 0;
}

.corner-show.corner-effect-13 .corner-content {
	-webkit-animation: slit .7s forwards ease-out;
	-moz-animation: slit .7s forwards ease-out;
	animation: slit .7s forwards ease-out;
}

@-webkit-keyframes slit {
	50% { -webkit-transform: translateZ(-250px) rotateY(89deg); opacity: .5; -webkit-animation-timing-function: ease-out;}
	100% { -webkit-transform: translateZ(0) rotateY(0deg); opacity: 1; }
}

@-moz-keyframes slit {
	50% { -moz-transform: translateZ(-250px) rotateY(89deg); opacity: .5; -moz-animation-timing-function: ease-out;}
	100% { -moz-transform: translateZ(0) rotateY(0deg); opacity: 1; }
}

@keyframes slit {
	50% { transform: translateZ(-250px) rotateY(89deg); opacity: 1; animation-timing-function: ease-in;}
	100% { transform: translateZ(0) rotateY(0deg); opacity: 1; }
}

/* Effect 14:  3D Rotate from bottom */
.corner-effect-14.corner-modal {
	-webkit-perspective: 1300px;
	-moz-perspective: 1300px;
	perspective: 1300px;
}

.corner-effect-14 .corner-content {
	-webkit-transform-style: preserve-3d;
	-moz-transform-style: preserve-3d;
	transform-style: preserve-3d;
	-webkit-transform: translateY(100%) rotateX(90deg);
	-moz-transform: translateY(100%) rotateX(90deg);
	-ms-transform: translateY(100%) rotateX(90deg);
	transform: translateY(100%) rotateX(90deg);
	-webkit-transform-origin: 0 100%;
	-moz-transform-origin: 0 100%;
	transform-origin: 0 100%;
	opacity: 0;
	-webkit-transition: all 0.3s ease-out;
	-moz-transition: all 0.3s ease-out;
	transition: all 0.3s ease-out;
}

.corner-show.corner-effect-14 .corner-content {
	-webkit-transform: translateY(0%) rotateX(0deg);
	-moz-transform: translateY(0%) rotateX(0deg);
	-ms-transform: translateY(0%) rotateX(0deg);
	transform: translateY(0%) rotateX(0deg);
	opacity: 1;
}

/* Effect 15:  3D Rotate in from left */
.corner-effect-15.corner-modal {
	-webkit-perspective: 1300px;
	-moz-perspective: 1300px;
	perspective: 1300px;
}

.corner-effect-15 .corner-content {
	-webkit-transform-style: preserve-3d;
	-moz-transform-style: preserve-3d;
	transform-style: preserve-3d;
	-webkit-transform: translateZ(100px) translateX(-30%) rotateY(90deg);
	-moz-transform: translateZ(100px) translateX(-30%) rotateY(90deg);
	-ms-transform: translateZ(100px) translateX(-30%) rotateY(90deg);
	transform: translateZ(100px) translateX(-30%) rotateY(90deg);
	-webkit-transform-origin: 0 100%;
	-moz-transform-origin: 0 100%;
	transform-origin: 0 100%;
	opacity: 0;
	-webkit-transition: all 0.3s;
	-moz-transition: all 0.3s;
	transition: all 0.3s;
}

.corner-show.corner-effect-15 .corner-content {
	-webkit-transform: translateZ(0px) translateX(0%) rotateY(0deg);
	-moz-transform: translateZ(0px) translateX(0%) rotateY(0deg);
	-ms-transform: translateZ(0px) translateX(0%) rotateY(0deg);
	transform: translateZ(0px) translateX(0%) rotateY(0deg);
	opacity: 1;
}

/* Effect 16:  Blur */
.corner-show.corner-effect-16 ~ .corner-overlay {
	background: rgba(180,46,32,0.5);
}

.corner-show.corner-effect-16 ~ .container {
	-webkit-filter: blur(3px);
	-moz-filter: blur(3px);
	filter: blur(3px);
}

.corner-effect-16 .corner-content {
	-webkit-transform: translateY(-5%);
	-moz-transform: translateY(-5%);
	-ms-transform: translateY(-5%);
	transform: translateY(-5%);
	opacity: 0;
}

.corner-show.corner-effect-16 ~ .container,
.corner-effect-16 .corner-content {
	-webkit-transition: all 0.3s;
	-moz-transition: all 0.3s;
	transition: all 0.3s;
}

.corner-show.corner-effect-16 .corner-content {
	-webkit-transform: translateY(0);
	-moz-transform: translateY(0);
	-ms-transform: translateY(0);
	transform: translateY(0);
	opacity: 1;
}

/* Effect 17:  Slide in from bottom with perspective on container */
.corner-show.corner-effect-17 ~ .container {
	height: 100%;
	overflow: hidden;
	-webkit-transition: -webkit-transform 0.3s;
	-moz-transition: -moz-transform 0.3s;
	transition: transform 0.3s;
}	

.corner-show.corner-effect-17 ~ .container,
.corner-show.corner-effect-17 ~ .corner-overlay  {
	-webkit-transform: rotateX(-2deg);
	-moz-transform: rotateX(-2deg);
	-ms-transform: rotateX(-2deg);
	transform: rotateX(-2deg);
	-webkit-transform-origin: 50% 0%;
	-moz-transform-origin: 50% 0%;
	transform-origin: 50% 0%;
	-webkit-transform-style: preserve-3d;
	-moz-transform-style: preserve-3d;
	transform-style: preserve-3d;
}

.corner-effect-17 .corner-content {
	opacity: 0;
	-webkit-transform: translateY(200%);
	-moz-transform: translateY(200%);
	-ms-transform: translateY(200%);
	transform: translateY(200%);
}

.corner-show.corner-effect-17 .corner-content {
	-webkit-transform: translateY(0);
	-moz-transform: translateY(0);
	-ms-transform: translateY(0);
	transform: translateY(0);
	opacity: 1;
	-webkit-transition: all 0.3s 0.2s;
	-moz-transition: all 0.3s 0.2s;
	transition: all 0.3s 0.2s;
}

/* Effect 18:  Slide from right with perspective on container */
.corner-show.corner-effect-18 ~ .container {
	height: 100%;
	overflow: hidden;
}

.corner-show.corner-effect-18 ~ .corner-overlay {
	background: rgba(143,27,15,0.8);
	-webkit-transition: all 0.5s;
	-moz-transition: all 0.5s;
	transition: all 0.5s;
}

.corner-show.corner-effect-18 ~ .container,
.corner-show.corner-effect-18 ~ .corner-overlay {
	-webkit-transform-style: preserve-3d;
	-webkit-transform-origin: 0% 50%;
	-webkit-animation: rotateRightSideFirst 0.5s forwards ease-in;
	-moz-transform-style: preserve-3d;
	-moz-transform-origin: 0% 50%;
	-moz-animation: rotateRightSideFirst 0.5s forwards ease-in;
	transform-style: preserve-3d;
	transform-origin: 0% 50%;
	animation: rotateRightSideFirst 0.5s forwards ease-in;
}

@-webkit-keyframes rotateRightSideFirst {
	50% { -webkit-transform: translateZ(-50px) rotateY(5deg); -webkit-animation-timing-function: ease-out; }
	100% { -webkit-transform: translateZ(-200px); }
}

@-moz-keyframes rotateRightSideFirst {
	50% { -moz-transform: translateZ(-50px) rotateY(5deg); -moz-animation-timing-function: ease-out; }
	100% { -moz-transform: translateZ(-200px); }
}

@keyframes rotateRightSideFirst {
	50% { transform: translateZ(-50px) rotateY(5deg); animation-timing-function: ease-out; }
	100% { transform: translateZ(-200px); }
}

.corner-effect-18 .corner-content {
	-webkit-transform: translateX(200%);
	-moz-transform: translateX(200%);
	-ms-transform: translateX(200%);
	transform: translateX(200%);
	opacity: 0;
}

.corner-show.corner-effect-18 .corner-content {
	-webkit-transform: translateX(0);
	-moz-transform: translateX(0);
	-ms-transform: translateX(0);
	transform: translateX(0);
	opacity: 1;
	-webkit-transition: all 0.5s 0.1s;
	-moz-transition: all 0.5s 0.1s;
	transition: all 0.5s 0.1s;
}

/* Effect 19:  Slip in from the top with perspective on container */
.corner-show.corner-effect-19 ~ .container {
	height: 100%;
	overflow: hidden;
}

.corner-show.corner-effect-19 ~ .corner-overlay {
	-webkit-transition: all 0.5s;
	-moz-transition: all 0.5s;
	transition: all 0.5s;
}

.corner-show.corner-effect-19 ~ .container,
.corner-show.corner-effect-19 ~ .corner-overlay {
	-webkit-transform-style: preserve-3d;
	-webkit-transform-origin: 50% 100%;
	-webkit-animation: OpenTop 0.5s forwards ease-in;
	-moz-transform-style: preserve-3d;
	-moz-transform-origin: 50% 100%;
	-moz-animation: OpenTop 0.5s forwards ease-in;
	transform-style: preserve-3d;
	transform-origin: 50% 100%;
	animation: OpenTop 0.5s forwards ease-in;
}

@-webkit-keyframes OpenTop {
	50% { 
		-webkit-transform: rotateX(10deg); 
		-webkit-animation-timing-function: ease-out; 
	}
}

@-moz-keyframes OpenTop {
	50% { 
		-moz-transform: rotateX(10deg); 
		-moz-animation-timing-function: ease-out; 
	}
}

@keyframes OpenTop {
	50% { 
		transform: rotateX(10deg); 
		animation-timing-function: ease-out; 
	}
}

.corner-effect-19 .corner-content {
	-webkit-transform: translateY(-200%);
	-moz-transform: translateY(-200%);
	-ms-transform: translateY(-200%);
	transform: translateY(-200%);
	opacity: 0;
}

.corner-show.corner-effect-19 .corner-content {
	-webkit-transform: translateY(0);
	-moz-transform: translateY(0);
	-ms-transform: translateY(0);
	transform: translateY(0);
	opacity: 1;
	-webkit-transition: all 0.5s 0.1s;
	-moz-transition: all 0.5s 0.1s;
	transition: all 0.5s 0.1s;
}



.agent-hide{display:none !important}
.launchpad-wrapper{position:relative;display:inline-block;z-index:1}.launchpad,.satellite,.tierahs,.tierahs-link{background-color:transparent;border:none;border-radius:50%;aspect-ratio:1/1;text-align:center;padding:0;margin:0;transition:all 300ms ease-out;display:inline-grid;justify-content:center;align-content:center;cursor:pointer}.launchpad:hover,.satellite:hover,.tierahs:hover,.tierahs-link:hover{background-color:transparent}.launchpad:active,.launchpad.launched:active,.satellite:active,.satellite.launched:active,.tierahs:active,.tierahs.launched:active,.tierahs-link:active,.tierahs-link.launched:active{scale:0.95}.launchpad svg,.satellite svg,.tierahs svg,.tierahs-link svg{width:100%;height:auto}button.satellite,button.tierahs{appearance:none}.satellite{position:absolute;top:50%;left:50%;translate:-50% -50%;z-index:-1;scale:0.5}.satellite.launched{scale:1}





/* Start Stats stack CSS code */.stacks_in_16230stats, .stacks_in_16230pagetitle{	display: none;}.stacks_in_16230instructwrapper{	position: relative;	background: url("../files/newstatsbg.png") repeat-x;	height: 100px;	-webkit-border-radius: 4px;	-moz-border-radius: 4px;	border-radius: 4px;}.stacks_in_16230instruct{	position: absolute;	text-align: center;	bottom: 0px;	left: 0px;	right: 0px;	color: #fff;	font-weight: bold;	font-family: Arial, Helvetica, sans-serif;	background: rgba(0, 0, 0, 0.6);	padding: 4px 10px 5px 10px;} /* End if record mode */ /* End if admin mode *//* End Stats stack CSS code */
:root{--light-gray:rgba(230, 230, 230, 1.00);--medium-gray:rgba(202, 202, 202, 1.00);--dark-gray:rgba(138, 138, 138, 1.00);--black:rgba(10, 10, 10, 1.00);--black-color:var(--black);--white:rgba(254, 254, 254, 1.00);--white-color:var(--white);--primary:rgba(28, 138, 32, 1.00);--secondary:rgba(255, 255, 255, 1.00);--success:rgba(117, 185, 39, 1.00);--warning:rgba(102, 102, 102, 1.00);--alert:rgba(207, 117, 28, 1.00);--primary-contrast:rgba(255, 255, 255, 1.00);--secondary-contrast:rgba(51, 51, 51, 1.00);--success-contrast:rgba(254, 254, 254, 1.00);--warning-contrast:rgba(254, 254, 254, 1.00);--alert-contrast:rgba(254, 254, 254, 1.00);--primary-dark:rgba(0, 108, 2, 1.00);--secondary-dark:rgba(225, 225, 225, 1.00);--success-dark:rgba(87, 155, 9, 1.00);--warning-dark:rgba(72, 72, 72, 1.00);--alert-dark:rgba(177, 87, 0, 1.00);--header-color:rgba(34, 34, 34, 1.00);--subheader-color:rgba(138, 138, 138, 1.00);--small-color:rgba(179, 179, 179, 1.00);--text-color:rgba(51, 51, 51, 1.00);--link-color:rgba(28, 138, 32, 1.00);--link-color-hover:rgba(12, 74, 36, 1.00);--selection-background:var(--primary);--selection-text:var(--primary-contrast);--link-decoration:none;--link-decoration-hover:none;--overlay-color:rgba(0, 0, 0, 0.50);--radius:5px;--small-gutter:1.25rem;--medium-gutter:1.25rem;--large-gutter:1.25rem;--site-width:calc(1200rem/16);}::selection{background:var(--selection-background);color:var(--selection-text)}.alt{--header-color:rgba(255, 255, 255, 1.00);--subheader-color:rgba(230, 230, 230, 1.00);--small-color:rgba(202, 202, 202, 1.00);--text-color:rgba(255, 255, 255, 1.00);--link-color:rgba(28, 138, 32, 1.00);--link-color-hover:rgba(11, 75, 36, 1.00);--link-decoration:none;--link-decoration-hover:none}.grid-container{max-width:var(--site-width)}.radius{border-radius:var(--radius)}body{font-size:calc(16rem/16)}h1,.h1{font-size:calc(24rem/16)}h2,.h2{font-size:calc(20rem/16)}h3,.h3{font-size:calc(19rem/16)}h4,.h4{font-size:calc(18rem/16)}h5,.h5{font-size:calc(17rem/16)}h6,.h6{font-size:calc(16rem/16)}small{font-size:40%}.button{font-size:calc(16rem/16)}.button.tiny{font-size:calc(12rem/16)}.button.small{font-size:calc(12rem/16)}.button.large{font-size:calc(20rem/16)}@media only screen and (min-width:40em){body{font-size:calc(16rem/16)}h1,.h1{font-size:calc(48rem/16)}h2,.h2{font-size:calc(40rem/16)}h3,.h3{font-size:calc(31rem/16)}h4,.h4{font-size:calc(25rem/16)}h5,.h5{font-size:calc(20rem/16)}h6,.h6{font-size:calc(16rem/16)}small{font-size:30%}}@media only screen and (min-width:64em){body{font-size:calc(18rem/16)}h1,.h1{font-size:calc(48rem/16)}h2,.h2{font-size:calc(40rem/16)}h3,.h3{font-size:calc(31rem/16)}h4,.h4{font-size:calc(25rem/16)}h5,.h5{font-size:calc(20rem/16)}h6,.h6{font-size:calc(16rem/16)}small{font-size:30%}}a{color:var(--link-color);-webkit-text-decoration:var(--link-decoration);text-decoration:var(--link-decoration)}a:hover,a:focus{color:var(--link-color-hover);-webkit-text-decoration:var(--link-decoration-hover);text-decoration:var(--link-decoration-hover)}.menu a{color:var(--menu-link-color);background:var(--menu-bg-color)}.menu a:hover{color:var(--menu-link-color-hover)}h1,h2,h3,h4,h5,h6{color:var(--header-color)}small{color:var(--small-color)}.subheader{color:var(--subheader-color)}.text ul,.text ol{list-style-position:outside}.text>ul,.text>ol,.text .mez>div>ul,.text .mez>div>ol{margin-left:1.25rem}.text ul{list-style-type:disc}.text ul ul,.text ol ul{list-style-type:circle}.text ol{list-style-type:decimal}.text ol ol,.text ul ol{list-style-type:lower-alpha}.radius,.radius:before,.radius:after{border-radius:calc(5rem/16)}body{background-image:url('');background-repeat:   repeat;background-size:auto  ;}
/*!* Font Awesome Pro 5.14.0 by @fontawesome - https://fontawesome.com* License - https://fontawesome.com/license (Commercial License)*/@font-face{font-family:'Font Awesome 5 Brands';font-style:normal;font-weight:400;font-display:block;src:url("../../rw_common/plugins/stacks/fa5-fonts/fa-brands-400.eot");src:url("../../rw_common/plugins/stacks/fa5-fonts/fa-brands-400.eot?#iefix") format("embedded-opentype"),url("../../rw_common/plugins/stacks/fa5-fonts/fa-brands-400.woff2") format("woff2"),url("../../rw_common/plugins/stacks/fa5-fonts/fa-brands-400.woff") format("woff"),url("../../rw_common/plugins/stacks/fa5-fonts/fa-brands-400.ttf") format("truetype"),url("../../rw_common/plugins/stacks/fa5-fonts/fa-brands-400.svg#fontawesome") format("svg")}.fab{font-family:'Font Awesome 5 Brands';font-weight:400}@font-face{font-family:'Font Awesome 5 Pro';font-style:normal;font-weight:300;font-display:block;src:url("../../rw_common/plugins/stacks/fa5-fonts/fa-light-300.eot");src:url("../../rw_common/plugins/stacks/fa5-fonts/fa-light-300.eot?#iefix") format("embedded-opentype"),url("../../rw_common/plugins/stacks/fa5-fonts/fa-light-300.woff2") format("woff2"),url("../../rw_common/plugins/stacks/fa5-fonts/fa-light-300.woff") format("woff"),url("../../rw_common/plugins/stacks/fa5-fonts/fa-light-300.ttf") format("truetype"),url("../../rw_common/plugins/stacks/fa5-fonts/fa-light-300.svg#fontawesome") format("svg")}.fal{font-family:'Font Awesome 5 Pro';font-weight:300}@font-face{font-family:'Font Awesome 5 Pro';font-style:normal;font-weight:400;font-display:block;src:url("../../rw_common/plugins/stacks/fa5-fonts/fa-regular-400.eot");src:url("../../rw_common/plugins/stacks/fa5-fonts/fa-regular-400.eot?#iefix") format("embedded-opentype"),url("../../rw_common/plugins/stacks/fa5-fonts/fa-regular-400.woff2") format("woff2"),url("../../rw_common/plugins/stacks/fa5-fonts/fa-regular-400.woff") format("woff"),url("../../rw_common/plugins/stacks/fa5-fonts/fa-regular-400.ttf") format("truetype"),url("../../rw_common/plugins/stacks/fa5-fonts/fa-regular-400.svg#fontawesome") format("svg")}.far{font-family:'Font Awesome 5 Pro';font-weight:400}@font-face{font-family:'Font Awesome 5 Pro';font-style:normal;font-weight:900;font-display:block;src:url("../../rw_common/plugins/stacks/fa5-fonts/fa-solid-900.eot");src:url("../../rw_common/plugins/stacks/fa5-fonts/fa-solid-900.eot?#iefix") format("embedded-opentype"),url("../../rw_common/plugins/stacks/fa5-fonts/fa-solid-900.woff2") format("woff2"),url("../../rw_common/plugins/stacks/fa5-fonts/fa-solid-900.woff") format("woff"),url("../../rw_common/plugins/stacks/fa5-fonts/fa-solid-900.ttf") format("truetype"),url("../../rw_common/plugins/stacks/fa5-fonts/fa-solid-900.svg#fontawesome") format("svg")}.fa,.fas{font-family:'Font Awesome 5 Pro';font-weight:900}  
  h1,.h1, h2,.h2, h3,.h3, h4,.h4, h5,.h5, h6,.h6,     body{font-family:"Outfit",sans-serif }
html,body, p,.p,        .menu li, li, form, .button,body{font-family:'Helvetica Neue', Helvetica, Arial, sans-serif }
 .mymenu>.menu a, .menu.mymenu a{--menu-link-color:rgba(11, 75, 36, 1.00);--menu-link-color-hover:rgba(11, 75, 36, 1.00);--menu-bg-color:rgba(255, 255, 255, 0.00);--menu-caret-color:rgba(97, 103, 173, 1.00);--menu-border-accent:2px solid var(--menu-link-color)} .mymenu>.menu .menu-text, .menu.mymenu .menu-text{--menu-text-color:rgba(68, 68, 68, 1.00)} .mymenu>.menu a:hover, .menu.mymenu a:hover{--menu-bg-color:rgba(117, 185, 39, 0.70)} .mymenu>.menu>li>a, .menu.mymenu>li>a{padding-top:1rem;padding-bottom:1rem} .mymenu>.menu .submenu>li>a, .menu.mymenu .submenu>li>a{padding-top:0.75rem;padding-bottom:0.75rem} .mymenu>.menu li.active>a, .mymenu>.menu li.is-active>a, .mymenu>.menu a.is-active, .menu.mymenu li.active>a, .menu.mymenu li.is-active>a, .menu.mymenu a.is-active{--menu-bg-color:rgba(28, 138, 32, 1.00);--menu-link-color:rgba(254, 254, 254, 1.00);--menu-caret-color:rgba(255, 255, 255, 1.00);--menu-link-color-hover:rgba(254, 254, 254, 1.00)} .mymenu>.menu .submenu li.active>a, .mymenu>.menu .submenu li.is-active>a, .mymenu>.menu .submenu a.is-active, .menu.mymenu .submenu li.active>a, .menu.mymenu .submenu li.is-active>a, .menu.mymenu .submenu a.is-active{--menu-caret-color:rgba(255, 255, 255, 1.00)} .mymenu>.menu .submenu a, .menu.mymenu .submenu a{--menu-caret-color:rgba(97, 103, 173, 1.00)} .mymenu>.menu .submenu, .menu.mymenu .submenu{--submenu-bg-color:rgba(254, 254, 254, 1.00);--submenu-border:1px solid rgba(202, 202, 202, 1.00)} .mymenu>.menu .submenu a, .menu.mymenu .submenu a{--menu-bg-color:transparent;--menu-link-color:rgba(34, 34, 34, 1.00);--menu-link-color-hover:rgba(68, 68, 68, 1.00)} .mymenu>.menu .submenu .menu-text, .menu.mymenu .submenu .menu-text{--menu-text-color:rgba(68, 68, 68, 1.00)} .mymenu>.menu .submenu li.active>a, .mymenu>.menu .submenu li.is-active>a, .mymenu>.menu .submenu a.is-active, .menu.mymenu .submenu li.active>a, .menu.mymenu .submenu li.is-active>a, .menu.mymenu .submenu a.is-active{--menu-caret-color:rgba(255, 255, 255, 1.00);--menu-bg-color:rgba(97, 103, 173, 1.00);--menu-link-color:rgba(254, 254, 254, 1.00);--menu-link-color-hover:rgba(254, 254, 254, 1.00)} .mymenu>.menu a::after, .menu.mymenu a::after{display:none!important}
            .mobilmenu{font-size:calc(24rem/16) ;}@media only screen and (min-width:40em) {            .mobilmenu{font-size:calc(24rem/16) ;line-height:1.50 }}@media only screen and (min-width:64em) {            .mobilmenu{font-size:calc(16rem/16) ;line-height:1.50 }}
.whiteTom{color:rgba(255, 255, 255, 1.00) ;}
            .summary{font-size:calc(12rem/16) ;}@media only screen and (min-width:40em) {            .summary{font-size:calc(14rem/16) ;line-height:1.50 }}@media only screen and (min-width:64em) {            .summary{font-size:calc(14rem/16) ;line-height:1.50 }}
.Tomwhite{color:rgba(255, 255, 255, 1.00) ;}
.banner{background-color:rgba(255, 255, 255, 1.00) ;background-position:center center ;background-origin:padding-box ;background-blend-mode:normal ;background-attachment:scroll   ;background-clip:border-box ;}@media (hover:none) and (pointer:coarse){.banner{background-attachment:scroll!important}}
.banner{border-color:rgba(76, 76, 76, 1.00) ;border-bottom-width:2px ;border-bottom-style:solid ;}
.bg-green{background-color:rgba(25, 126, 30, 1.00) ;background-position:center center ;background-origin:padding-box ;background-blend-mode:normal ;background-attachment:scroll   ;background-clip:border-box ;}@media (hover:none) and (pointer:coarse){.bg-green{background-attachment:scroll!important}}
.bg-green{padding-top:6.50% ;padding-right:0.00% ;padding-bottom:2.00% ;padding-left:0.00% ;}@media only screen and (min-width:40em){.bg-green{padding-top:2.50% ;padding-right:0.00% ;padding-bottom:1.00% ;padding-left:0.00% }}@media only screen and (min-width:64em){.bg-green{padding-top:1.60% ;padding-right:0.00% ;padding-bottom:0.80% ;padding-left:0.00% }}
.mobilmenu{height:100% ;}  
.margin-cms{margin-top:3rem ;}  
.border{border-color:rgba(179, 179, 179, 1.00) ;border-width:1px ;border-style:solid ;}






#stacks_in_8445 {
	font-size: 80%;
}

#stacks_in_8446 {
	font-size: 80%;
}

#stacks_in_8447 {
	font-size: 80%;
}

#stacks_in_8448 {
	font-size: 80%;
}

#stacks_in_8449 {
	font-size: 80%;
}

#stacks_in_8450 {
	font-size: 80%;
}

#stacks_in_8451 {
	font-size: 80%;
}





.stacks_in_8401_142 > .grid-divider-wrapper > .grid-divider{height:calc(100% - 2rem)}


.stacks_in_8401_145 img{width:100%;max-width:200px}



#stacks_in_8401_1054 {
	font-size: 80%;
}

#stacks_in_8401_1056 {
	font-size: 80%;
}

#stacks_in_8401_1058 {
	font-size: 80%;
}

#stacks_in_8401_1060 {
	font-size: 80%;
}

#stacks_in_8401_1062 {
	font-size: 80%;
}

#stacks_in_8401_1064 {
	font-size: 80%;
}

#stacks_in_8401_1237 {
	font-size: 80%;
}

#stacks_in_8401_1232 {
	padding: 0px 0px 0px 5px;
}

#stacks_in_8401_1244 {
	font-size: 80%;
}

#stacks_in_8401_1239 {
	padding: 0px 0px 0px 5px;
}

#stacks_in_8401_1268 {
	font-size: 80%;
}

#stacks_in_8401_1264 {
	padding: 0px 0px 0px 5px;
}

#stacks_in_8401_1250 {
	font-size: 80%;
}

#stacks_in_8401_1246 {
	padding: 0px 0px 0px 5px;
}

#stacks_in_8401_1225 {
	font-size: 80%;
}


            .fontsize-large-menu{font-size:calc(18rem/16) !important;}@media only screen and (min-width:40em) {            .fontsize-large-menu{font-size:calc(18rem/16) !important;line-height:1.50 !important}}@media only screen and (min-width:64em) {            .fontsize-large-menu{font-size:calc(18rem/16) !important;line-height:1.50 !important}}

#stacks_in_8401_1159 {
	padding: 0px 0px 0px 5px;
}

#stacks_in_8401_1166 {
	padding: 0px 0px 0px 5px;
}

#stacks_in_8401_1271 {
	padding: 0px 0px 0px 5px;
}

#stacks_in_8401_1173 {
	padding: 0px 0px 0px 5px;
}







/* custom stuff */


#corner-stacks_in_10561_2 .corner-modal
{
  z-index: 9999;
  max-width:400px;
  max-height:500px;
}



#corner-stacks_in_10561_2 .corner-content {
	border:1px solid rgba(0, 0, 0, 0.40);
	border-radius:2px;
  background-color:rgba(255, 255, 255, 1.00);
  color: rgba(102, 102, 102, 1.00);
  overflow:auto;
}

#corner-stacks_in_10561_2 .corner-button
{
	font-family: Helvetica;
	font-size: 14px;
  font-weight: 700;
	border:2px solid rgba(255, 255, 255, 0.40);
	border-radius:22px;
  background-color:rgba(28, 138, 32, 1.00);
  color: rgba(255, 255, 255, 1.00);
  padding-top: 10px;
  padding-right: 20px;
  padding-bottom: 10px;
  padding-left: 20px;
  margin-top: 20px;
  margin-right: 20px;
  margin-bottom: 20px;
  margin-left: 20px;
  z-index: 9998;
}


#corner-stacks_in_10561_2 .corner-button.corner-tl,
#corner-stacks_in_10561_2 .corner-button.corner-tr {
  margin-top: -60px;
}

#corner-stacks_in_10561_2 .corner-button.corner-bl,
#corner-stacks_in_10561_2 .corner-button.corner-br {
  margin-bottom: -60px;
}


#corner-stacks_in_10561_2 .corner-content {
	padding-top: 10px;
  padding-right: 20px;
  padding-bottom: 10px;
  padding-left: 20px;
  margin-top: 10px;
  margin-right: 20px;
  margin-bottom: 20px;
  margin-left: 20px;
}

#corner-stacks_in_10561_2 .corner-button.corner-tl.corner-show,
#corner-stacks_in_10561_2 .corner-button.corner-tr.corner-show {
  margin-top: 20px;
}

#corner-stacks_in_10561_2 .corner-button.corner-bl.corner-show,
#corner-stacks_in_10561_2 .corner-button.corner-br.corner-show {
  margin-bottom: 20px;
}


/* hide the text in button on smaller screens */
@media only screen and (max-width: 770px)  
{ 
  #corner-stacks_in_10561_2 .corner-modal
  {
    width:100%;
    max-width:100%;
    max-height:100%;
    margin:0;
  }

  #corner-stacks_in_10561_2 .corner-content
  {
    margin:4px;
  }

  #corner-stacks_in_10561_2 span.corner-label { 
    display:none; 
  }
}




.margin-contact{margin:5rem ;}  
label{--header-color:rgba(255, 255, 255, 1.00);--subheader-color:rgba(138, 138, 138, 1.00);--small-color:rgba(202, 202, 202, 1.00);--text-color:rgba(255, 255, 255, 1.00);--link-color:rgba(0, 140, 186, 1.00);--link-color-hover:rgba(0, 102, 136, 1.00);--link-decoration:none;--link-decoration-hover:none}
.bg-grey{background-color:rgba(204, 204, 204, 1.00) ;background-position:center center ;background-origin:padding-box ;background-blend-mode:normal ;background-attachment:scroll   ;background-clip:border-box ;}@media (hover:none) and (pointer:coarse){.bg-grey{background-attachment:scroll!important}}
.white-font{color:rgba(255, 255, 255, 1.00) ;}






/* CSS GRID */
#stacks_out_13508,
#stacks_in_13508 {
	overflow: visible;
}


#stacks_in_13508 .flux-container {
	overflow: visible;
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	gap: 30px 30px;
	align-items: stretch;

	/* border: 1px solid red; */
	
	margin-bottom: 21px;
	
}

#stacks_in_13508 .flux-item > .stacks_out {
	margin: 0;
	padding: 0;
}


/* These elements will be styled _ONLY_ at their given breakpoints */
/* and will not bleed from one to the other. */

/* Mobile */
@media (max-width: 47.9375em) {
}

/* Tablet */
@media (min-width: 48em) and (max-width: 61.9em) {
}

/* Desktop */
@media (min-width: 62em) {
}



/* ----------------------------------- */

/* These elements will be styled at their given breakpoints */
/* but can bleed from themselves over to wider breakpoints as well. */
/* Mobile */

#stacks_in_13508 .flux-container {
	

	row-gap: 30px;
	column-gap: 30px;
	
	
	
	
	
	
	grid-template-columns: repeat(1, 1fr);
	
	
	
	
	
	grid-auto-rows: auto;
	
	
	
	
	
	
	
	padding: 0px;
	

	
	border-width: 0px;
	

	border-color: rgba(204, 204, 204, 1.00);
	border-style: solid;
	
	
	border-radius: 0px;
	


	
	
	
	
	
	
	

	
	box-shadow: none;
	

}


/* Tablet */
@media (min-width: 48em) {
	
	#stacks_in_13508 .flux-container {
		

		row-gap: 30px;
		column-gap: 30px;
		
		
		
		
		grid-template-columns: repeat(3, 1fr);
		
		
		
		grid-auto-rows: auto;
		
		
		
		
		
			
		

		
			
		
		
		
			
		

		
		
		
		
		
		
		
		
		

		
		box-shadow: none;
		

	}
	
}

@media (min-width: 62em) {
	/* Desktop */
	
}

/* #stacks_in_13508 .flux-container {
	overflow: hidden;
} */







/* Mobile */
.stacks_in_13509-indv-item {
	display: flex;
	flex-flow: column;

	
	grid-column-end: span 1;
	grid-row-end: span 1;
	
	
	


	
	justify-content: flex-start;
	
	
		
	
		
	
	
	
	
	
	
	

	
	
	
	
	
		
	

	
	
	
	border-width: 0px;
	

	
	border-color: rgba(94, 95, 95, 1.00);
	

	border-style: solid;
	
	
}


@media (min-width: 48em) {
	/* Tablet */
	
	.stacks_in_13509-indv-item {
		display: flex;
		flex-flow: column;
		grid-column-end: span 1;
		grid-row-end: span 1;


		
		grid-column-end: span 1;
		grid-row-end: span 1;
		
		
		


		
		justify-content: flex-start;
		
		
		
		
			
		
		
		
		
		
		
		
				
		
	
		
	
		

		
			
		
		
		
	
	}
	

	.stacks_in_13509-indv-item {
		
	}
}

@media (min-width: 62em) {
	/* Desktop */
	

	.stacks_in_13509-indv-item {
		
	}
}











.stacks_in_13509-clickable-item {
	cursor: pointer;
}



.stacks_in_13518 img{width:100%;max-width:250px}




/* Mobile */
.stacks_in_13528-indv-item {
	display: flex;
	flex-flow: column;

	
	grid-column-end: span 1;
	grid-row-end: span 1;
	
	
	


	
	justify-content: flex-start;
	
	
		
	
		
	
	
	
	
	
	
	

	
	
	
	
	
		
	

	
	
	
	border-width: 0px;
	

	
	border-color: rgba(94, 95, 95, 1.00);
	

	border-style: solid;
	
	
}


@media (min-width: 48em) {
	/* Tablet */
	
	.stacks_in_13528-indv-item {
		display: flex;
		flex-flow: column;
		grid-column-end: span 1;
		grid-row-end: span 1;


		
		grid-column-end: span 1;
		grid-row-end: span 1;
		
		
		


		
		justify-content: flex-start;
		
		
		
		
			
		
		
		
		
		
		
		
				
		
	
		
	
		

		
			
		
		
		
	
	}
	

	.stacks_in_13528-indv-item {
		
	}
}

@media (min-width: 62em) {
	/* Desktop */
	

	.stacks_in_13528-indv-item {
		
	}
}











.stacks_in_13528-clickable-item {
	cursor: pointer;
}



.stacks_in_13536 img{width:100%;max-width:250px}




/* Mobile */
.stacks_in_13546-indv-item {
	display: flex;
	flex-flow: column;

	
	grid-column-end: span 1;
	grid-row-end: span 1;
	
	
	


	
	justify-content: flex-start;
	
	
		
	
		
	
	
	
	
	
	
	

	
	
	
	
	
		
	

	
	
	
	border-width: 0px;
	

	
	border-color: rgba(94, 95, 95, 1.00);
	

	border-style: solid;
	
	
}


@media (min-width: 48em) {
	/* Tablet */
	
	.stacks_in_13546-indv-item {
		display: flex;
		flex-flow: column;
		grid-column-end: span 1;
		grid-row-end: span 1;


		
		grid-column-end: span 1;
		grid-row-end: span 1;
		
		
		


		
		justify-content: flex-start;
		
		
		
		
			
		
		
		
		
		
		
		
				
		
	
		
	
		

		
			
		
		
		
	
	}
	

	.stacks_in_13546-indv-item {
		
	}
}

@media (min-width: 62em) {
	/* Desktop */
	

	.stacks_in_13546-indv-item {
		
	}
}











.stacks_in_13546-clickable-item {
	cursor: pointer;
}



.stacks_in_13554 img{width:100%;max-width:250px}




/* CSS GRID */
#stacks_out_13566,
#stacks_in_13566 {
	overflow: visible;
}


#stacks_in_13566 .flux-container {
	overflow: visible;
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	gap: 30px 30px;
	align-items: stretch;

	/* border: 1px solid red; */
	
	margin-bottom: 21px;
	
}

#stacks_in_13566 .flux-item > .stacks_out {
	margin: 0;
	padding: 0;
}


/* These elements will be styled _ONLY_ at their given breakpoints */
/* and will not bleed from one to the other. */

/* Mobile */
@media (max-width: 47.9375em) {
}

/* Tablet */
@media (min-width: 48em) and (max-width: 61.9em) {
}

/* Desktop */
@media (min-width: 62em) {
}



/* ----------------------------------- */

/* These elements will be styled at their given breakpoints */
/* but can bleed from themselves over to wider breakpoints as well. */
/* Mobile */

#stacks_in_13566 .flux-container {
	

	row-gap: 30px;
	column-gap: 30px;
	
	
	
	
	
	
	grid-template-columns: repeat(1, 1fr);
	
	
	
	
	
	grid-auto-rows: auto;
	
	
	
	
	
	
	
	padding: 0px;
	

	
	border-width: 0px;
	

	border-color: rgba(204, 204, 204, 1.00);
	border-style: solid;
	
	
	border-radius: 0px;
	


	
	
	
	
	
	
	

	
	box-shadow: none;
	

}


/* Tablet */
@media (min-width: 48em) {
	
	#stacks_in_13566 .flux-container {
		

		row-gap: 30px;
		column-gap: 30px;
		
		
		
		
		grid-template-columns: repeat(3, 1fr);
		
		
		
		grid-auto-rows: auto;
		
		
		
		
		
			
		

		
			
		
		
		
			
		

		
		
		
		
		
		
		
		
		

		
		box-shadow: none;
		

	}
	
}

@media (min-width: 62em) {
	/* Desktop */
	
}

/* #stacks_in_13566 .flux-container {
	overflow: hidden;
} */







/* Mobile */
.stacks_in_13567-indv-item {
	display: flex;
	flex-flow: column;

	
	grid-column-end: span 1;
	grid-row-end: span 1;
	
	
	


	
	justify-content: flex-start;
	
	
		
	
		
	
	
	
	
	
	
	

	
	
	
	
	
		
	

	
	
	
	border-width: 0px;
	

	
	border-color: rgba(94, 95, 95, 1.00);
	

	border-style: solid;
	
	
}


@media (min-width: 48em) {
	/* Tablet */
	
	.stacks_in_13567-indv-item {
		display: flex;
		flex-flow: column;
		grid-column-end: span 1;
		grid-row-end: span 1;


		
		grid-column-end: span 1;
		grid-row-end: span 1;
		
		
		


		
		justify-content: flex-start;
		
		
		
		
			
		
		
		
		
		
		
		
				
		
	
		
	
		

		
			
		
		
		
	
	}
	

	.stacks_in_13567-indv-item {
		
	}
}

@media (min-width: 62em) {
	/* Desktop */
	

	.stacks_in_13567-indv-item {
		
	}
}











.stacks_in_13567-clickable-item {
	cursor: pointer;
}



.stacks_in_13576 img{width:100%;max-width:250px}




/* Mobile */
.stacks_in_13586-indv-item {
	display: flex;
	flex-flow: column;

	
	grid-column-end: span 1;
	grid-row-end: span 1;
	
	
	


	
	justify-content: flex-start;
	
	
		
	
		
	
	
	
	
	
	
	

	
	
	
	
	
		
	

	
	
	
	border-width: 0px;
	

	
	border-color: rgba(94, 95, 95, 1.00);
	

	border-style: solid;
	
	
}


@media (min-width: 48em) {
	/* Tablet */
	
	.stacks_in_13586-indv-item {
		display: flex;
		flex-flow: column;
		grid-column-end: span 1;
		grid-row-end: span 1;


		
		grid-column-end: span 1;
		grid-row-end: span 1;
		
		
		


		
		justify-content: flex-start;
		
		
		
		
			
		
		
		
		
		
		
		
				
		
	
		
	
		

		
			
		
		
		
	
	}
	

	.stacks_in_13586-indv-item {
		
	}
}

@media (min-width: 62em) {
	/* Desktop */
	

	.stacks_in_13586-indv-item {
		
	}
}











.stacks_in_13586-clickable-item {
	cursor: pointer;
}



.stacks_in_13594 img{width:100%;max-width:250px}




/* Mobile */
.stacks_in_13602-indv-item {
	display: flex;
	flex-flow: column;

	
	grid-column-end: span 1;
	grid-row-end: span 1;
	
	
	


	
	justify-content: flex-start;
	
	
		
	
		
	
	
	
	
	
	
	

	
	
	
	
	
		
	

	
	
	
	border-width: 0px;
	

	
	border-color: rgba(94, 95, 95, 1.00);
	

	border-style: solid;
	
	
}


@media (min-width: 48em) {
	/* Tablet */
	
	.stacks_in_13602-indv-item {
		display: flex;
		flex-flow: column;
		grid-column-end: span 1;
		grid-row-end: span 1;


		
		grid-column-end: span 1;
		grid-row-end: span 1;
		
		
		


		
		justify-content: flex-start;
		
		
		
		
			
		
		
		
		
		
		
		
				
		
	
		
	
		

		
			
		
		
		
	
	}
	

	.stacks_in_13602-indv-item {
		
	}
}

@media (min-width: 62em) {
	/* Desktop */
	

	.stacks_in_13602-indv-item {
		
	}
}











.stacks_in_13602-clickable-item {
	cursor: pointer;
}



.stacks_in_13610 img{width:100%;max-width:250px}




/* CSS GRID */
#stacks_out_13620,
#stacks_in_13620 {
	overflow: visible;
}


#stacks_in_13620 .flux-container {
	overflow: visible;
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	gap: 30px 30px;
	align-items: stretch;

	/* border: 1px solid red; */
	
	margin-bottom: 21px;
	
}

#stacks_in_13620 .flux-item > .stacks_out {
	margin: 0;
	padding: 0;
}


/* These elements will be styled _ONLY_ at their given breakpoints */
/* and will not bleed from one to the other. */

/* Mobile */
@media (max-width: 47.9375em) {
}

/* Tablet */
@media (min-width: 48em) and (max-width: 61.9em) {
}

/* Desktop */
@media (min-width: 62em) {
}



/* ----------------------------------- */

/* These elements will be styled at their given breakpoints */
/* but can bleed from themselves over to wider breakpoints as well. */
/* Mobile */

#stacks_in_13620 .flux-container {
	

	row-gap: 30px;
	column-gap: 30px;
	
	
	
	
	
	
	grid-template-columns: repeat(1, 1fr);
	
	
	
	
	
	grid-auto-rows: auto;
	
	
	
	
	
	
	
	padding: 0px;
	

	
	border-width: 0px;
	

	border-color: rgba(204, 204, 204, 1.00);
	border-style: solid;
	
	
	border-radius: 0px;
	


	
	
	
	
	
	
	

	
	box-shadow: none;
	

}


/* Tablet */
@media (min-width: 48em) {
	
	#stacks_in_13620 .flux-container {
		

		row-gap: 30px;
		column-gap: 30px;
		
		
		
		
		grid-template-columns: repeat(3, 1fr);
		
		
		
		grid-auto-rows: auto;
		
		
		
		
		
			
		

		
			
		
		
		
			
		

		
		
		
		
		
		
		
		
		

		
		box-shadow: none;
		

	}
	
}

@media (min-width: 62em) {
	/* Desktop */
	
}

/* #stacks_in_13620 .flux-container {
	overflow: hidden;
} */







/* Mobile */
.stacks_in_13621-indv-item {
	display: flex;
	flex-flow: column;

	
	grid-column-end: span 1;
	grid-row-end: span 1;
	
	
	


	
	justify-content: flex-start;
	
	
		
	
		
	
	
	
	
	
	
	

	
	
	
	
	
		
	

	
	
	
	border-width: 0px;
	

	
	border-color: rgba(94, 95, 95, 1.00);
	

	border-style: solid;
	
	
}


@media (min-width: 48em) {
	/* Tablet */
	
	.stacks_in_13621-indv-item {
		display: flex;
		flex-flow: column;
		grid-column-end: span 1;
		grid-row-end: span 1;


		
		grid-column-end: span 1;
		grid-row-end: span 1;
		
		
		


		
		justify-content: flex-start;
		
		
		
		
			
		
		
		
		
		
		
		
				
		
	
		
	
		

		
			
		
		
		
	
	}
	

	.stacks_in_13621-indv-item {
		
	}
}

@media (min-width: 62em) {
	/* Desktop */
	

	.stacks_in_13621-indv-item {
		
	}
}











.stacks_in_13621-clickable-item {
	cursor: pointer;
}



.stacks_in_13630 img{width:100%;max-width:250px}




/* Mobile */
.stacks_in_13640-indv-item {
	display: flex;
	flex-flow: column;

	
	grid-column-end: span 1;
	grid-row-end: span 1;
	
	
	


	
	justify-content: flex-start;
	
	
		
	
		
	
	
	
	
	
	
	

	
	
	
	
	
		
	

	
	
	
	border-width: 0px;
	

	
	border-color: rgba(94, 95, 95, 1.00);
	

	border-style: solid;
	
	
}


@media (min-width: 48em) {
	/* Tablet */
	
	.stacks_in_13640-indv-item {
		display: flex;
		flex-flow: column;
		grid-column-end: span 1;
		grid-row-end: span 1;


		
		grid-column-end: span 1;
		grid-row-end: span 1;
		
		
		


		
		justify-content: flex-start;
		
		
		
		
			
		
		
		
		
		
		
		
				
		
	
		
	
		

		
			
		
		
		
	
	}
	

	.stacks_in_13640-indv-item {
		
	}
}

@media (min-width: 62em) {
	/* Desktop */
	

	.stacks_in_13640-indv-item {
		
	}
}











.stacks_in_13640-clickable-item {
	cursor: pointer;
}



.stacks_in_13648 img{width:100%;max-width:250px}




/* Mobile */
.stacks_in_13656-indv-item {
	display: flex;
	flex-flow: column;

	
	grid-column-end: span 1;
	grid-row-end: span 1;
	
	
	


	
	justify-content: flex-start;
	
	
		
	
		
	
	
	
	
	
	
	

	
	
	
	
	
		
	

	
	
	
	border-width: 0px;
	

	
	border-color: rgba(94, 95, 95, 1.00);
	

	border-style: solid;
	
	
}


@media (min-width: 48em) {
	/* Tablet */
	
	.stacks_in_13656-indv-item {
		display: flex;
		flex-flow: column;
		grid-column-end: span 1;
		grid-row-end: span 1;


		
		grid-column-end: span 1;
		grid-row-end: span 1;
		
		
		


		
		justify-content: flex-start;
		
		
		
		
			
		
		
		
		
		
		
		
				
		
	
		
	
		

		
			
		
		
		
	
	}
	

	.stacks_in_13656-indv-item {
		
	}
}

@media (min-width: 62em) {
	/* Desktop */
	

	.stacks_in_13656-indv-item {
		
	}
}











.stacks_in_13656-clickable-item {
	cursor: pointer;
}



.stacks_in_13664 img{width:100%;max-width:250px}




/* CSS GRID */
#stacks_out_13674,
#stacks_in_13674 {
	overflow: visible;
}


#stacks_in_13674 .flux-container {
	overflow: visible;
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	gap: 30px 30px;
	align-items: stretch;

	/* border: 1px solid red; */
	
	margin-bottom: 21px;
	
}

#stacks_in_13674 .flux-item > .stacks_out {
	margin: 0;
	padding: 0;
}


/* These elements will be styled _ONLY_ at their given breakpoints */
/* and will not bleed from one to the other. */

/* Mobile */
@media (max-width: 47.9375em) {
}

/* Tablet */
@media (min-width: 48em) and (max-width: 61.9em) {
}

/* Desktop */
@media (min-width: 62em) {
}



/* ----------------------------------- */

/* These elements will be styled at their given breakpoints */
/* but can bleed from themselves over to wider breakpoints as well. */
/* Mobile */

#stacks_in_13674 .flux-container {
	

	row-gap: 30px;
	column-gap: 30px;
	
	
	
	
	
	
	grid-template-columns: repeat(1, 1fr);
	
	
	
	
	
	grid-auto-rows: auto;
	
	
	
	
	
	
	
	padding: 0px;
	

	
	border-width: 0px;
	

	border-color: rgba(204, 204, 204, 1.00);
	border-style: solid;
	
	
	border-radius: 0px;
	


	
	
	
	
	
	
	

	
	box-shadow: none;
	

}


/* Tablet */
@media (min-width: 48em) {
	
	#stacks_in_13674 .flux-container {
		

		row-gap: 30px;
		column-gap: 30px;
		
		
		
		
		grid-template-columns: repeat(3, 1fr);
		
		
		
		grid-auto-rows: auto;
		
		
		
		
		
			
		

		
			
		
		
		
			
		

		
		
		
		
		
		
		
		
		

		
		box-shadow: none;
		

	}
	
}

@media (min-width: 62em) {
	/* Desktop */
	
}

/* #stacks_in_13674 .flux-container {
	overflow: hidden;
} */







/* Mobile */
.stacks_in_13675-indv-item {
	display: flex;
	flex-flow: column;

	
	grid-column-end: span 1;
	grid-row-end: span 1;
	
	
	


	
	justify-content: flex-start;
	
	
		
	
		
	
	
	
	
	
	
	

	
	
	
	
	
		
	

	
	
	
	border-width: 0px;
	

	
	border-color: rgba(94, 95, 95, 1.00);
	

	border-style: solid;
	
	
}


@media (min-width: 48em) {
	/* Tablet */
	
	.stacks_in_13675-indv-item {
		display: flex;
		flex-flow: column;
		grid-column-end: span 1;
		grid-row-end: span 1;


		
		grid-column-end: span 1;
		grid-row-end: span 1;
		
		
		


		
		justify-content: flex-start;
		
		
		
		
			
		
		
		
		
		
		
		
				
		
	
		
	
		

		
			
		
		
		
	
	}
	

	.stacks_in_13675-indv-item {
		
	}
}

@media (min-width: 62em) {
	/* Desktop */
	

	.stacks_in_13675-indv-item {
		
	}
}











.stacks_in_13675-clickable-item {
	cursor: pointer;
}



.stacks_in_13684 img{width:100%;max-width:250px}




/* Mobile */
.stacks_in_13694-indv-item {
	display: flex;
	flex-flow: column;

	
	grid-column-end: span 1;
	grid-row-end: span 1;
	
	
	


	
	justify-content: flex-start;
	
	
		
	
		
	
	
	
	
	
	
	

	
	
	
	
	
		
	

	
	
	
	border-width: 0px;
	

	
	border-color: rgba(94, 95, 95, 1.00);
	

	border-style: solid;
	
	
}


@media (min-width: 48em) {
	/* Tablet */
	
	.stacks_in_13694-indv-item {
		display: flex;
		flex-flow: column;
		grid-column-end: span 1;
		grid-row-end: span 1;


		
		grid-column-end: span 1;
		grid-row-end: span 1;
		
		
		


		
		justify-content: flex-start;
		
		
		
		
			
		
		
		
		
		
		
		
				
		
	
		
	
		

		
			
		
		
		
	
	}
	

	.stacks_in_13694-indv-item {
		
	}
}

@media (min-width: 62em) {
	/* Desktop */
	

	.stacks_in_13694-indv-item {
		
	}
}











.stacks_in_13694-clickable-item {
	cursor: pointer;
}



.stacks_in_13702 img{width:100%;max-width:250px}




/* Mobile */
.stacks_in_13712-indv-item {
	display: flex;
	flex-flow: column;

	
	grid-column-end: span 1;
	grid-row-end: span 1;
	
	
	


	
	justify-content: flex-start;
	
	
		
	
		
	
	
	
	
	
	
	

	
	
	
	
	
		
	

	
	
	
	border-width: 0px;
	

	
	border-color: rgba(94, 95, 95, 1.00);
	

	border-style: solid;
	
	
}


@media (min-width: 48em) {
	/* Tablet */
	
	.stacks_in_13712-indv-item {
		display: flex;
		flex-flow: column;
		grid-column-end: span 1;
		grid-row-end: span 1;


		
		grid-column-end: span 1;
		grid-row-end: span 1;
		
		
		


		
		justify-content: flex-start;
		
		
		
		
			
		
		
		
		
		
		
		
				
		
	
		
	
		

		
			
		
		
		
	
	}
	

	.stacks_in_13712-indv-item {
		
	}
}

@media (min-width: 62em) {
	/* Desktop */
	

	.stacks_in_13712-indv-item {
		
	}
}











.stacks_in_13712-clickable-item {
	cursor: pointer;
}



.stacks_in_13720 img{width:100%;max-width:250px}




/* CSS GRID */
#stacks_out_13728,
#stacks_in_13728 {
	overflow: visible;
}


#stacks_in_13728 .flux-container {
	overflow: visible;
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	gap: 30px 30px;
	align-items: stretch;

	/* border: 1px solid red; */
	
	margin-bottom: 21px;
	
}

#stacks_in_13728 .flux-item > .stacks_out {
	margin: 0;
	padding: 0;
}


/* These elements will be styled _ONLY_ at their given breakpoints */
/* and will not bleed from one to the other. */

/* Mobile */
@media (max-width: 47.9375em) {
}

/* Tablet */
@media (min-width: 48em) and (max-width: 61.9em) {
}

/* Desktop */
@media (min-width: 62em) {
}



/* ----------------------------------- */

/* These elements will be styled at their given breakpoints */
/* but can bleed from themselves over to wider breakpoints as well. */
/* Mobile */

#stacks_in_13728 .flux-container {
	

	row-gap: 30px;
	column-gap: 30px;
	
	
	
	
	
	
	grid-template-columns: repeat(1, 1fr);
	
	
	
	
	
	grid-auto-rows: auto;
	
	
	
	
	
	
	
	padding: 0px;
	

	
	border-width: 0px;
	

	border-color: rgba(204, 204, 204, 1.00);
	border-style: solid;
	
	
	border-radius: 0px;
	


	
	
	
	
	
	
	

	
	box-shadow: none;
	

}


/* Tablet */
@media (min-width: 48em) {
	
	#stacks_in_13728 .flux-container {
		

		row-gap: 30px;
		column-gap: 30px;
		
		
		
		
		grid-template-columns: repeat(3, 1fr);
		
		
		
		grid-auto-rows: auto;
		
		
		
		
		
			
		

		
			
		
		
		
			
		

		
		
		
		
		
		
		
		
		

		
		box-shadow: none;
		

	}
	
}

@media (min-width: 62em) {
	/* Desktop */
	
}

/* #stacks_in_13728 .flux-container {
	overflow: hidden;
} */







/* Mobile */
.stacks_in_13729-indv-item {
	display: flex;
	flex-flow: column;

	
	grid-column-end: span 1;
	grid-row-end: span 1;
	
	
	


	
	justify-content: flex-start;
	
	
		
	
		
	
	
	
	
	
	
	

	
	
	
	
	
		
	

	
	
	
	border-width: 0px;
	

	
	border-color: rgba(94, 95, 95, 1.00);
	

	border-style: solid;
	
	
}


@media (min-width: 48em) {
	/* Tablet */
	
	.stacks_in_13729-indv-item {
		display: flex;
		flex-flow: column;
		grid-column-end: span 1;
		grid-row-end: span 1;


		
		grid-column-end: span 1;
		grid-row-end: span 1;
		
		
		


		
		justify-content: flex-start;
		
		
		
		
			
		
		
		
		
		
		
		
				
		
	
		
	
		

		
			
		
		
		
	
	}
	

	.stacks_in_13729-indv-item {
		
	}
}

@media (min-width: 62em) {
	/* Desktop */
	

	.stacks_in_13729-indv-item {
		
	}
}











.stacks_in_13729-clickable-item {
	cursor: pointer;
}



.stacks_in_13738 img{width:100%;max-width:250px}




/* Mobile */
.stacks_in_13748-indv-item {
	display: flex;
	flex-flow: column;

	
	grid-column-end: span 1;
	grid-row-end: span 1;
	
	
	


	
	justify-content: flex-start;
	
	
		
	
		
	
	
	
	
	
	
	

	
	
	
	
	
		
	

	
	
	
	border-width: 0px;
	

	
	border-color: rgba(94, 95, 95, 1.00);
	

	border-style: solid;
	
	
}


@media (min-width: 48em) {
	/* Tablet */
	
	.stacks_in_13748-indv-item {
		display: flex;
		flex-flow: column;
		grid-column-end: span 1;
		grid-row-end: span 1;


		
		grid-column-end: span 1;
		grid-row-end: span 1;
		
		
		


		
		justify-content: flex-start;
		
		
		
		
			
		
		
		
		
		
		
		
				
		
	
		
	
		

		
			
		
		
		
	
	}
	

	.stacks_in_13748-indv-item {
		
	}
}

@media (min-width: 62em) {
	/* Desktop */
	

	.stacks_in_13748-indv-item {
		
	}
}











.stacks_in_13748-clickable-item {
	cursor: pointer;
}



.stacks_in_13756 img{width:100%;max-width:250px}




/* Mobile */
.stacks_in_13766-indv-item {
	display: flex;
	flex-flow: column;

	
	grid-column-end: span 1;
	grid-row-end: span 1;
	
	
	


	
	justify-content: flex-start;
	
	
		
	
		
	
	
	
	
	
	
	

	
	
	
	
	
		
	

	
	
	
	border-width: 0px;
	

	
	border-color: rgba(94, 95, 95, 1.00);
	

	border-style: solid;
	
	
}


@media (min-width: 48em) {
	/* Tablet */
	
	.stacks_in_13766-indv-item {
		display: flex;
		flex-flow: column;
		grid-column-end: span 1;
		grid-row-end: span 1;


		
		grid-column-end: span 1;
		grid-row-end: span 1;
		
		
		


		
		justify-content: flex-start;
		
		
		
		
			
		
		
		
		
		
		
		
				
		
	
		
	
		

		
			
		
		
		
	
	}
	

	.stacks_in_13766-indv-item {
		
	}
}

@media (min-width: 62em) {
	/* Desktop */
	

	.stacks_in_13766-indv-item {
		
	}
}











.stacks_in_13766-clickable-item {
	cursor: pointer;
}



.stacks_in_13774 img{width:100%;max-width:250px}




/* CSS GRID */
#stacks_out_13784,
#stacks_in_13784 {
	overflow: visible;
}


#stacks_in_13784 .flux-container {
	overflow: visible;
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	gap: 30px 30px;
	align-items: stretch;

	/* border: 1px solid red; */
	
	margin-bottom: 21px;
	
}

#stacks_in_13784 .flux-item > .stacks_out {
	margin: 0;
	padding: 0;
}


/* These elements will be styled _ONLY_ at their given breakpoints */
/* and will not bleed from one to the other. */

/* Mobile */
@media (max-width: 47.9375em) {
}

/* Tablet */
@media (min-width: 48em) and (max-width: 61.9em) {
}

/* Desktop */
@media (min-width: 62em) {
}



/* ----------------------------------- */

/* These elements will be styled at their given breakpoints */
/* but can bleed from themselves over to wider breakpoints as well. */
/* Mobile */

#stacks_in_13784 .flux-container {
	

	row-gap: 30px;
	column-gap: 30px;
	
	
	
	
	
	
	grid-template-columns: repeat(1, 1fr);
	
	
	
	
	
	grid-auto-rows: auto;
	
	
	
	
	
	
	
	padding: 0px;
	

	
	border-width: 0px;
	

	border-color: rgba(204, 204, 204, 1.00);
	border-style: solid;
	
	
	border-radius: 0px;
	


	
	
	
	
	
	
	

	
	box-shadow: none;
	

}


/* Tablet */
@media (min-width: 48em) {
	
	#stacks_in_13784 .flux-container {
		

		row-gap: 30px;
		column-gap: 30px;
		
		
		
		
		grid-template-columns: repeat(3, 1fr);
		
		
		
		grid-auto-rows: auto;
		
		
		
		
		
			
		

		
			
		
		
		
			
		

		
		
		
		
		
		
		
		
		

		
		box-shadow: none;
		

	}
	
}

@media (min-width: 62em) {
	/* Desktop */
	
}

/* #stacks_in_13784 .flux-container {
	overflow: hidden;
} */







/* Mobile */
.stacks_in_13785-indv-item {
	display: flex;
	flex-flow: column;

	
	grid-column-end: span 1;
	grid-row-end: span 1;
	
	
	


	
	justify-content: flex-start;
	
	
		
	
		
	
	
	
	
	
	
	

	
	
	
	
	
		
	

	
	
	
	border-width: 0px;
	

	
	border-color: rgba(94, 95, 95, 1.00);
	

	border-style: solid;
	
	
}


@media (min-width: 48em) {
	/* Tablet */
	
	.stacks_in_13785-indv-item {
		display: flex;
		flex-flow: column;
		grid-column-end: span 1;
		grid-row-end: span 1;


		
		grid-column-end: span 1;
		grid-row-end: span 1;
		
		
		


		
		justify-content: flex-start;
		
		
		
		
			
		
		
		
		
		
		
		
				
		
	
		
	
		

		
			
		
		
		
	
	}
	

	.stacks_in_13785-indv-item {
		
	}
}

@media (min-width: 62em) {
	/* Desktop */
	

	.stacks_in_13785-indv-item {
		
	}
}











.stacks_in_13785-clickable-item {
	cursor: pointer;
}



.stacks_in_13794 img{width:100%;max-width:250px}




/* Mobile */
.stacks_in_13804-indv-item {
	display: flex;
	flex-flow: column;

	
	grid-column-end: span 1;
	grid-row-end: span 1;
	
	
	


	
	justify-content: flex-start;
	
	
		
	
		
	
	
	
	
	
	
	

	
	
	
	
	
		
	

	
	
	
	border-width: 0px;
	

	
	border-color: rgba(94, 95, 95, 1.00);
	

	border-style: solid;
	
	
}


@media (min-width: 48em) {
	/* Tablet */
	
	.stacks_in_13804-indv-item {
		display: flex;
		flex-flow: column;
		grid-column-end: span 1;
		grid-row-end: span 1;


		
		grid-column-end: span 1;
		grid-row-end: span 1;
		
		
		


		
		justify-content: flex-start;
		
		
		
		
			
		
		
		
		
		
		
		
				
		
	
		
	
		

		
			
		
		
		
	
	}
	

	.stacks_in_13804-indv-item {
		
	}
}

@media (min-width: 62em) {
	/* Desktop */
	

	.stacks_in_13804-indv-item {
		
	}
}











.stacks_in_13804-clickable-item {
	cursor: pointer;
}



.stacks_in_13812 img{width:100%;max-width:250px}




/* Mobile */
.stacks_in_13822-indv-item {
	display: flex;
	flex-flow: column;

	
	grid-column-end: span 1;
	grid-row-end: span 1;
	
	
	


	
	justify-content: flex-start;
	
	
		
	
		
	
	
	
	
	
	
	

	
	
	
	
	
		
	

	
	
	
	border-width: 0px;
	

	
	border-color: rgba(94, 95, 95, 1.00);
	

	border-style: solid;
	
	
}


@media (min-width: 48em) {
	/* Tablet */
	
	.stacks_in_13822-indv-item {
		display: flex;
		flex-flow: column;
		grid-column-end: span 1;
		grid-row-end: span 1;


		
		grid-column-end: span 1;
		grid-row-end: span 1;
		
		
		


		
		justify-content: flex-start;
		
		
		
		
			
		
		
		
		
		
		
		
				
		
	
		
	
		

		
			
		
		
		
	
	}
	

	.stacks_in_13822-indv-item {
		
	}
}

@media (min-width: 62em) {
	/* Desktop */
	

	.stacks_in_13822-indv-item {
		
	}
}











.stacks_in_13822-clickable-item {
	cursor: pointer;
}



.stacks_in_13830 img{width:100%;max-width:250px}




/* CSS GRID */
#stacks_out_13840,
#stacks_in_13840 {
	overflow: visible;
}


#stacks_in_13840 .flux-container {
	overflow: visible;
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	gap: 30px 30px;
	align-items: stretch;

	/* border: 1px solid red; */
	
	margin-bottom: 21px;
	
}

#stacks_in_13840 .flux-item > .stacks_out {
	margin: 0;
	padding: 0;
}


/* These elements will be styled _ONLY_ at their given breakpoints */
/* and will not bleed from one to the other. */

/* Mobile */
@media (max-width: 47.9375em) {
}

/* Tablet */
@media (min-width: 48em) and (max-width: 61.9em) {
}

/* Desktop */
@media (min-width: 62em) {
}



/* ----------------------------------- */

/* These elements will be styled at their given breakpoints */
/* but can bleed from themselves over to wider breakpoints as well. */
/* Mobile */

#stacks_in_13840 .flux-container {
	

	row-gap: 30px;
	column-gap: 30px;
	
	
	
	
	
	
	grid-template-columns: repeat(1, 1fr);
	
	
	
	
	
	grid-auto-rows: auto;
	
	
	
	
	
	
	
	padding: 0px;
	

	
	border-width: 0px;
	

	border-color: rgba(204, 204, 204, 1.00);
	border-style: solid;
	
	
	border-radius: 0px;
	


	
	
	
	
	
	
	

	
	box-shadow: none;
	

}


/* Tablet */
@media (min-width: 48em) {
	
	#stacks_in_13840 .flux-container {
		

		row-gap: 30px;
		column-gap: 30px;
		
		
		
		
		grid-template-columns: repeat(3, 1fr);
		
		
		
		grid-auto-rows: auto;
		
		
		
		
		
			
		

		
			
		
		
		
			
		

		
		
		
		
		
		
		
		
		

		
		box-shadow: none;
		

	}
	
}

@media (min-width: 62em) {
	/* Desktop */
	
}

/* #stacks_in_13840 .flux-container {
	overflow: hidden;
} */







/* Mobile */
.stacks_in_13841-indv-item {
	display: flex;
	flex-flow: column;

	
	grid-column-end: span 1;
	grid-row-end: span 1;
	
	
	


	
	justify-content: flex-start;
	
	
		
	
		
	
	
	
	
	
	
	

	
	
	
	
	
		
	

	
	
	
	border-width: 0px;
	

	
	border-color: rgba(94, 95, 95, 1.00);
	

	border-style: solid;
	
	
}


@media (min-width: 48em) {
	/* Tablet */
	
	.stacks_in_13841-indv-item {
		display: flex;
		flex-flow: column;
		grid-column-end: span 1;
		grid-row-end: span 1;


		
		grid-column-end: span 1;
		grid-row-end: span 1;
		
		
		


		
		justify-content: flex-start;
		
		
		
		
			
		
		
		
		
		
		
		
				
		
	
		
	
		

		
			
		
		
		
	
	}
	

	.stacks_in_13841-indv-item {
		
	}
}

@media (min-width: 62em) {
	/* Desktop */
	

	.stacks_in_13841-indv-item {
		
	}
}











.stacks_in_13841-clickable-item {
	cursor: pointer;
}



.stacks_in_13850 img{width:100%;max-width:250px}




/* Mobile */
.stacks_in_13860-indv-item {
	display: flex;
	flex-flow: column;

	
	grid-column-end: span 1;
	grid-row-end: span 1;
	
	
	


	
	justify-content: flex-start;
	
	
		
	
		
	
	
	
	
	
	
	

	
	
	
	
	
		
	

	
	
	
	border-width: 0px;
	

	
	border-color: rgba(94, 95, 95, 1.00);
	

	border-style: solid;
	
	
}


@media (min-width: 48em) {
	/* Tablet */
	
	.stacks_in_13860-indv-item {
		display: flex;
		flex-flow: column;
		grid-column-end: span 1;
		grid-row-end: span 1;


		
		grid-column-end: span 1;
		grid-row-end: span 1;
		
		
		


		
		justify-content: flex-start;
		
		
		
		
			
		
		
		
		
		
		
		
				
		
	
		
	
		

		
			
		
		
		
	
	}
	

	.stacks_in_13860-indv-item {
		
	}
}

@media (min-width: 62em) {
	/* Desktop */
	

	.stacks_in_13860-indv-item {
		
	}
}











.stacks_in_13860-clickable-item {
	cursor: pointer;
}



.stacks_in_13868 img{width:100%;max-width:250px}




/* Mobile */
.stacks_in_13878-indv-item {
	display: flex;
	flex-flow: column;

	
	grid-column-end: span 1;
	grid-row-end: span 1;
	
	
	


	
	justify-content: flex-start;
	
	
		
	
		
	
	
	
	
	
	
	

	
	
	
	
	
		
	

	
	
	
	border-width: 0px;
	

	
	border-color: rgba(94, 95, 95, 1.00);
	

	border-style: solid;
	
	
}


@media (min-width: 48em) {
	/* Tablet */
	
	.stacks_in_13878-indv-item {
		display: flex;
		flex-flow: column;
		grid-column-end: span 1;
		grid-row-end: span 1;


		
		grid-column-end: span 1;
		grid-row-end: span 1;
		
		
		


		
		justify-content: flex-start;
		
		
		
		
			
		
		
		
		
		
		
		
				
		
	
		
	
		

		
			
		
		
		
	
	}
	

	.stacks_in_13878-indv-item {
		
	}
}

@media (min-width: 62em) {
	/* Desktop */
	

	.stacks_in_13878-indv-item {
		
	}
}











.stacks_in_13878-clickable-item {
	cursor: pointer;
}



.stacks_in_13886 img{width:100%;max-width:250px}

/* custom stuff */


#corner-stacks_in_9162_2 .corner-modal
{
  z-index: 9999;
  max-width:400px;
  max-height:500px;
}



#corner-stacks_in_9162_2 .corner-content {
	border:1px solid rgba(0, 0, 0, 0.40);
	border-radius:2px;
  background-color:rgba(255, 255, 255, 1.00);
  color: rgba(102, 102, 102, 1.00);
  overflow:auto;
}

#corner-stacks_in_9162_2 .corner-button
{
	font-family: Helvetica;
	font-size: 14px;
  font-weight: 700;
	border:2px solid rgba(255, 255, 255, 0.40);
	border-radius:22px;
  background-color:rgba(28, 138, 32, 1.00);
  color: rgba(255, 255, 255, 1.00);
  padding-top: 10px;
  padding-right: 20px;
  padding-bottom: 10px;
  padding-left: 20px;
  margin-top: 20px;
  margin-right: 20px;
  margin-bottom: 20px;
  margin-left: 20px;
  z-index: 9998;
}


#corner-stacks_in_9162_2 .corner-button.corner-tl,
#corner-stacks_in_9162_2 .corner-button.corner-tr {
  margin-top: -60px;
}

#corner-stacks_in_9162_2 .corner-button.corner-bl,
#corner-stacks_in_9162_2 .corner-button.corner-br {
  margin-bottom: -60px;
}


#corner-stacks_in_9162_2 .corner-content {
	padding-top: 10px;
  padding-right: 20px;
  padding-bottom: 10px;
  padding-left: 20px;
  margin-top: 10px;
  margin-right: 20px;
  margin-bottom: 20px;
  margin-left: 20px;
}

#corner-stacks_in_9162_2 .corner-button.corner-tl.corner-show,
#corner-stacks_in_9162_2 .corner-button.corner-tr.corner-show {
  margin-top: 20px;
}

#corner-stacks_in_9162_2 .corner-button.corner-bl.corner-show,
#corner-stacks_in_9162_2 .corner-button.corner-br.corner-show {
  margin-bottom: 20px;
}


/* hide the text in button on smaller screens */
@media only screen and (max-width: 770px)  
{ 
  #corner-stacks_in_9162_2 .corner-modal
  {
    width:100%;
    max-width:100%;
    max-height:100%;
    margin:0;
  }

  #corner-stacks_in_9162_2 .corner-content
  {
    margin:4px;
  }

  #corner-stacks_in_9162_2 span.corner-label { 
    display:none; 
  }
}




.margin-contact{margin:5rem ;}  
label{--header-color:rgba(255, 255, 255, 1.00);--subheader-color:rgba(138, 138, 138, 1.00);--small-color:rgba(202, 202, 202, 1.00);--text-color:rgba(255, 255, 255, 1.00);--link-color:rgba(0, 140, 186, 1.00);--link-color-hover:rgba(0, 102, 136, 1.00);--link-decoration:none;--link-decoration-hover:none}
.bg-grey{background-color:rgba(204, 204, 204, 1.00) ;background-position:center center ;background-origin:padding-box ;background-blend-mode:normal ;background-attachment:scroll   ;background-clip:border-box ;}@media (hover:none) and (pointer:coarse){.bg-grey{background-attachment:scroll!important}}
.white-font{color:rgba(255, 255, 255, 1.00) ;}






/* CSS GRID */
#stacks_out_13006,
#stacks_in_13006 {
	overflow: visible;
}


#stacks_in_13006 .flux-container {
	overflow: visible;
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	gap: 30px 30px;
	align-items: stretch;

	/* border: 1px solid red; */
	
	margin-bottom: 21px;
	
}

#stacks_in_13006 .flux-item > .stacks_out {
	margin: 0;
	padding: 0;
}


/* These elements will be styled _ONLY_ at their given breakpoints */
/* and will not bleed from one to the other. */

/* Mobile */
@media (max-width: 47.9375em) {
}

/* Tablet */
@media (min-width: 48em) and (max-width: 61.9em) {
}

/* Desktop */
@media (min-width: 62em) {
}



/* ----------------------------------- */

/* These elements will be styled at their given breakpoints */
/* but can bleed from themselves over to wider breakpoints as well. */
/* Mobile */

#stacks_in_13006 .flux-container {
	

	row-gap: 30px;
	column-gap: 30px;
	
	
	
	
	
	
	grid-template-columns: repeat(1, 1fr);
	
	
	
	
	
	grid-auto-rows: auto;
	
	
	
	
	
	
	
	padding: 0px;
	

	
	border-width: 0px;
	

	border-color: rgba(204, 204, 204, 1.00);
	border-style: solid;
	
	
	border-radius: 0px;
	


	
	
	
	
	
	
	

	
	box-shadow: none;
	

}


/* Tablet */
@media (min-width: 48em) {
	
	#stacks_in_13006 .flux-container {
		

		row-gap: 30px;
		column-gap: 30px;
		
		
		
		
		grid-template-columns: repeat(3, 1fr);
		
		
		
		grid-auto-rows: auto;
		
		
		
		
		
			
		

		
			
		
		
		
			
		

		
		
		
		
		
		
		
		
		

		
		box-shadow: none;
		

	}
	
}

@media (min-width: 62em) {
	/* Desktop */
	
}

/* #stacks_in_13006 .flux-container {
	overflow: hidden;
} */







/* Mobile */
.stacks_in_13007-indv-item {
	display: flex;
	flex-flow: column;

	
	grid-column-end: span 1;
	grid-row-end: span 1;
	
	
	


	
	justify-content: flex-start;
	
	
		
	
		
	
	
	
	
	
	
	

	
	
	
	
	
		
	

	
	
	
	border-width: 0px;
	

	
	border-color: rgba(94, 95, 95, 1.00);
	

	border-style: solid;
	
	
}


@media (min-width: 48em) {
	/* Tablet */
	
	.stacks_in_13007-indv-item {
		display: flex;
		flex-flow: column;
		grid-column-end: span 1;
		grid-row-end: span 1;


		
		grid-column-end: span 1;
		grid-row-end: span 1;
		
		
		


		
		justify-content: flex-start;
		
		
		
		
			
		
		
		
		
		
		
		
				
		
	
		
	
		

		
			
		
		
		
	
	}
	

	.stacks_in_13007-indv-item {
		
	}
}

@media (min-width: 62em) {
	/* Desktop */
	

	.stacks_in_13007-indv-item {
		
	}
}











.stacks_in_13007-clickable-item {
	cursor: pointer;
}



.stacks_in_13016 img{width:100%;max-width:250px}




/* Mobile */
.stacks_in_13026-indv-item {
	display: flex;
	flex-flow: column;

	
	grid-column-end: span 1;
	grid-row-end: span 1;
	
	
	


	
	justify-content: flex-start;
	
	
		
	
		
	
	
	
	
	
	
	

	
	
	
	
	
		
	

	
	
	
	border-width: 0px;
	

	
	border-color: rgba(94, 95, 95, 1.00);
	

	border-style: solid;
	
	
}


@media (min-width: 48em) {
	/* Tablet */
	
	.stacks_in_13026-indv-item {
		display: flex;
		flex-flow: column;
		grid-column-end: span 1;
		grid-row-end: span 1;


		
		grid-column-end: span 1;
		grid-row-end: span 1;
		
		
		


		
		justify-content: flex-start;
		
		
		
		
			
		
		
		
		
		
		
		
				
		
	
		
	
		

		
			
		
		
		
	
	}
	

	.stacks_in_13026-indv-item {
		
	}
}

@media (min-width: 62em) {
	/* Desktop */
	

	.stacks_in_13026-indv-item {
		
	}
}











.stacks_in_13026-clickable-item {
	cursor: pointer;
}



.stacks_in_13034 img{width:100%;max-width:250px}




/* Mobile */
.stacks_in_13044-indv-item {
	display: flex;
	flex-flow: column;

	
	grid-column-end: span 1;
	grid-row-end: span 1;
	
	
	


	
	justify-content: flex-start;
	
	
		
	
		
	
	
	
	
	
	
	

	
	
	
	
	
		
	

	
	
	
	border-width: 0px;
	

	
	border-color: rgba(94, 95, 95, 1.00);
	

	border-style: solid;
	
	
}


@media (min-width: 48em) {
	/* Tablet */
	
	.stacks_in_13044-indv-item {
		display: flex;
		flex-flow: column;
		grid-column-end: span 1;
		grid-row-end: span 1;


		
		grid-column-end: span 1;
		grid-row-end: span 1;
		
		
		


		
		justify-content: flex-start;
		
		
		
		
			
		
		
		
		
		
		
		
				
		
	
		
	
		

		
			
		
		
		
	
	}
	

	.stacks_in_13044-indv-item {
		
	}
}

@media (min-width: 62em) {
	/* Desktop */
	

	.stacks_in_13044-indv-item {
		
	}
}











.stacks_in_13044-clickable-item {
	cursor: pointer;
}



.stacks_in_13052 img{width:100%;max-width:250px}




/* CSS GRID */
#stacks_out_13064,
#stacks_in_13064 {
	overflow: visible;
}


#stacks_in_13064 .flux-container {
	overflow: visible;
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	gap: 30px 30px;
	align-items: stretch;

	/* border: 1px solid red; */
	
	margin-bottom: 21px;
	
}

#stacks_in_13064 .flux-item > .stacks_out {
	margin: 0;
	padding: 0;
}


/* These elements will be styled _ONLY_ at their given breakpoints */
/* and will not bleed from one to the other. */

/* Mobile */
@media (max-width: 47.9375em) {
}

/* Tablet */
@media (min-width: 48em) and (max-width: 61.9em) {
}

/* Desktop */
@media (min-width: 62em) {
}



/* ----------------------------------- */

/* These elements will be styled at their given breakpoints */
/* but can bleed from themselves over to wider breakpoints as well. */
/* Mobile */

#stacks_in_13064 .flux-container {
	

	row-gap: 30px;
	column-gap: 30px;
	
	
	
	
	
	
	grid-template-columns: repeat(1, 1fr);
	
	
	
	
	
	grid-auto-rows: auto;
	
	
	
	
	
	
	
	padding: 0px;
	

	
	border-width: 0px;
	

	border-color: rgba(204, 204, 204, 1.00);
	border-style: solid;
	
	
	border-radius: 0px;
	


	
	
	
	
	
	
	

	
	box-shadow: none;
	

}


/* Tablet */
@media (min-width: 48em) {
	
	#stacks_in_13064 .flux-container {
		

		row-gap: 30px;
		column-gap: 30px;
		
		
		
		
		grid-template-columns: repeat(3, 1fr);
		
		
		
		grid-auto-rows: auto;
		
		
		
		
		
			
		

		
			
		
		
		
			
		

		
		
		
		
		
		
		
		
		

		
		box-shadow: none;
		

	}
	
}

@media (min-width: 62em) {
	/* Desktop */
	
}

/* #stacks_in_13064 .flux-container {
	overflow: hidden;
} */







/* Mobile */
.stacks_in_13065-indv-item {
	display: flex;
	flex-flow: column;

	
	grid-column-end: span 1;
	grid-row-end: span 1;
	
	
	


	
	justify-content: flex-start;
	
	
		
	
		
	
	
	
	
	
	
	

	
	
	
	
	
		
	

	
	
	
	border-width: 0px;
	

	
	border-color: rgba(94, 95, 95, 1.00);
	

	border-style: solid;
	
	
}


@media (min-width: 48em) {
	/* Tablet */
	
	.stacks_in_13065-indv-item {
		display: flex;
		flex-flow: column;
		grid-column-end: span 1;
		grid-row-end: span 1;


		
		grid-column-end: span 1;
		grid-row-end: span 1;
		
		
		


		
		justify-content: flex-start;
		
		
		
		
			
		
		
		
		
		
		
		
				
		
	
		
	
		

		
			
		
		
		
	
	}
	

	.stacks_in_13065-indv-item {
		
	}
}

@media (min-width: 62em) {
	/* Desktop */
	

	.stacks_in_13065-indv-item {
		
	}
}











.stacks_in_13065-clickable-item {
	cursor: pointer;
}



.stacks_in_16241 img{width:100%;max-width:250px}




/* Mobile */
.stacks_in_13439-indv-item {
	display: flex;
	flex-flow: column;

	
	grid-column-end: span 1;
	grid-row-end: span 1;
	
	
	


	
	justify-content: flex-start;
	
	
		
	
		
	
	
	
	
	
	
	

	
	
	
	
	
		
	

	
	
	
	border-width: 0px;
	

	
	border-color: rgba(94, 95, 95, 1.00);
	

	border-style: solid;
	
	
}


@media (min-width: 48em) {
	/* Tablet */
	
	.stacks_in_13439-indv-item {
		display: flex;
		flex-flow: column;
		grid-column-end: span 1;
		grid-row-end: span 1;


		
		grid-column-end: span 1;
		grid-row-end: span 1;
		
		
		


		
		justify-content: flex-start;
		
		
		
		
			
		
		
		
		
		
		
		
				
		
	
		
	
		

		
			
		
		
		
	
	}
	

	.stacks_in_13439-indv-item {
		
	}
}

@media (min-width: 62em) {
	/* Desktop */
	

	.stacks_in_13439-indv-item {
		
	}
}











.stacks_in_13439-clickable-item {
	cursor: pointer;
}



.stacks_in_13447 img{width:100%;max-width:250px}




/* Mobile */
.stacks_in_13100-indv-item {
	display: flex;
	flex-flow: column;

	
	grid-column-end: span 1;
	grid-row-end: span 1;
	
	
	


	
	justify-content: flex-start;
	
	
		
	
		
	
	
	
	
	
	
	

	
	
	
	
	
		
	

	
	
	
	border-width: 0px;
	

	
	border-color: rgba(94, 95, 95, 1.00);
	

	border-style: solid;
	
	
}


@media (min-width: 48em) {
	/* Tablet */
	
	.stacks_in_13100-indv-item {
		display: flex;
		flex-flow: column;
		grid-column-end: span 1;
		grid-row-end: span 1;


		
		grid-column-end: span 1;
		grid-row-end: span 1;
		
		
		


		
		justify-content: flex-start;
		
		
		
		
			
		
		
		
		
		
		
		
				
		
	
		
	
		

		
			
		
		
		
	
	}
	

	.stacks_in_13100-indv-item {
		
	}
}

@media (min-width: 62em) {
	/* Desktop */
	

	.stacks_in_13100-indv-item {
		
	}
}











.stacks_in_13100-clickable-item {
	cursor: pointer;
}



.stacks_in_13108 img{width:100%;max-width:250px}




/* CSS GRID */
#stacks_out_13118,
#stacks_in_13118 {
	overflow: visible;
}


#stacks_in_13118 .flux-container {
	overflow: visible;
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	gap: 30px 30px;
	align-items: stretch;

	/* border: 1px solid red; */
	
	margin-bottom: 21px;
	
}

#stacks_in_13118 .flux-item > .stacks_out {
	margin: 0;
	padding: 0;
}


/* These elements will be styled _ONLY_ at their given breakpoints */
/* and will not bleed from one to the other. */

/* Mobile */
@media (max-width: 47.9375em) {
}

/* Tablet */
@media (min-width: 48em) and (max-width: 61.9em) {
}

/* Desktop */
@media (min-width: 62em) {
}



/* ----------------------------------- */

/* These elements will be styled at their given breakpoints */
/* but can bleed from themselves over to wider breakpoints as well. */
/* Mobile */

#stacks_in_13118 .flux-container {
	

	row-gap: 30px;
	column-gap: 30px;
	
	
	
	
	
	
	grid-template-columns: repeat(1, 1fr);
	
	
	
	
	
	grid-auto-rows: auto;
	
	
	
	
	
	
	
	padding: 0px;
	

	
	border-width: 0px;
	

	border-color: rgba(204, 204, 204, 1.00);
	border-style: solid;
	
	
	border-radius: 0px;
	


	
	
	
	
	
	
	

	
	box-shadow: none;
	

}


/* Tablet */
@media (min-width: 48em) {
	
	#stacks_in_13118 .flux-container {
		

		row-gap: 30px;
		column-gap: 30px;
		
		
		
		
		grid-template-columns: repeat(3, 1fr);
		
		
		
		grid-auto-rows: auto;
		
		
		
		
		
			
		

		
			
		
		
		
			
		

		
		
		
		
		
		
		
		
		

		
		box-shadow: none;
		

	}
	
}

@media (min-width: 62em) {
	/* Desktop */
	
}

/* #stacks_in_13118 .flux-container {
	overflow: hidden;
} */







/* Mobile */
.stacks_in_13119-indv-item {
	display: flex;
	flex-flow: column;

	
	grid-column-end: span 1;
	grid-row-end: span 1;
	
	
	


	
	justify-content: flex-start;
	
	
		
	
		
	
	
	
	
	
	
	

	
	
	
	
	
		
	

	
	
	
	border-width: 0px;
	

	
	border-color: rgba(94, 95, 95, 1.00);
	

	border-style: solid;
	
	
}


@media (min-width: 48em) {
	/* Tablet */
	
	.stacks_in_13119-indv-item {
		display: flex;
		flex-flow: column;
		grid-column-end: span 1;
		grid-row-end: span 1;


		
		grid-column-end: span 1;
		grid-row-end: span 1;
		
		
		


		
		justify-content: flex-start;
		
		
		
		
			
		
		
		
		
		
		
		
				
		
	
		
	
		

		
			
		
		
		
	
	}
	

	.stacks_in_13119-indv-item {
		
	}
}

@media (min-width: 62em) {
	/* Desktop */
	

	.stacks_in_13119-indv-item {
		
	}
}











.stacks_in_13119-clickable-item {
	cursor: pointer;
}



.stacks_in_13128 img{width:100%;max-width:250px}




/* Mobile */
.stacks_in_13138-indv-item {
	display: flex;
	flex-flow: column;

	
	grid-column-end: span 1;
	grid-row-end: span 1;
	
	
	


	
	justify-content: flex-start;
	
	
		
	
		
	
	
	
	
	
	
	

	
	
	
	
	
		
	

	
	
	
	border-width: 0px;
	

	
	border-color: rgba(94, 95, 95, 1.00);
	

	border-style: solid;
	
	
}


@media (min-width: 48em) {
	/* Tablet */
	
	.stacks_in_13138-indv-item {
		display: flex;
		flex-flow: column;
		grid-column-end: span 1;
		grid-row-end: span 1;


		
		grid-column-end: span 1;
		grid-row-end: span 1;
		
		
		


		
		justify-content: flex-start;
		
		
		
		
			
		
		
		
		
		
		
		
				
		
	
		
	
		

		
			
		
		
		
	
	}
	

	.stacks_in_13138-indv-item {
		
	}
}

@media (min-width: 62em) {
	/* Desktop */
	

	.stacks_in_13138-indv-item {
		
	}
}











.stacks_in_13138-clickable-item {
	cursor: pointer;
}



.stacks_in_13146 img{width:100%;max-width:250px}




/* Mobile */
.stacks_in_13154-indv-item {
	display: flex;
	flex-flow: column;

	
	grid-column-end: span 1;
	grid-row-end: span 1;
	
	
	


	
	justify-content: flex-start;
	
	
		
	
		
	
	
	
	
	
	
	

	
	
	
	
	
		
	

	
	
	
	border-width: 0px;
	

	
	border-color: rgba(94, 95, 95, 1.00);
	

	border-style: solid;
	
	
}


@media (min-width: 48em) {
	/* Tablet */
	
	.stacks_in_13154-indv-item {
		display: flex;
		flex-flow: column;
		grid-column-end: span 1;
		grid-row-end: span 1;


		
		grid-column-end: span 1;
		grid-row-end: span 1;
		
		
		


		
		justify-content: flex-start;
		
		
		
		
			
		
		
		
		
		
		
		
				
		
	
		
	
		

		
			
		
		
		
	
	}
	

	.stacks_in_13154-indv-item {
		
	}
}

@media (min-width: 62em) {
	/* Desktop */
	

	.stacks_in_13154-indv-item {
		
	}
}











.stacks_in_13154-clickable-item {
	cursor: pointer;
}



.stacks_in_13162 img{width:100%;max-width:250px}




/* CSS GRID */
#stacks_out_13172,
#stacks_in_13172 {
	overflow: visible;
}


#stacks_in_13172 .flux-container {
	overflow: visible;
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	gap: 30px 30px;
	align-items: stretch;

	/* border: 1px solid red; */
	
	margin-bottom: 21px;
	
}

#stacks_in_13172 .flux-item > .stacks_out {
	margin: 0;
	padding: 0;
}


/* These elements will be styled _ONLY_ at their given breakpoints */
/* and will not bleed from one to the other. */

/* Mobile */
@media (max-width: 47.9375em) {
}

/* Tablet */
@media (min-width: 48em) and (max-width: 61.9em) {
}

/* Desktop */
@media (min-width: 62em) {
}



/* ----------------------------------- */

/* These elements will be styled at their given breakpoints */
/* but can bleed from themselves over to wider breakpoints as well. */
/* Mobile */

#stacks_in_13172 .flux-container {
	

	row-gap: 30px;
	column-gap: 30px;
	
	
	
	
	
	
	grid-template-columns: repeat(1, 1fr);
	
	
	
	
	
	grid-auto-rows: auto;
	
	
	
	
	
	
	
	padding: 0px;
	

	
	border-width: 0px;
	

	border-color: rgba(204, 204, 204, 1.00);
	border-style: solid;
	
	
	border-radius: 0px;
	


	
	
	
	
	
	
	

	
	box-shadow: none;
	

}


/* Tablet */
@media (min-width: 48em) {
	
	#stacks_in_13172 .flux-container {
		

		row-gap: 30px;
		column-gap: 30px;
		
		
		
		
		grid-template-columns: repeat(3, 1fr);
		
		
		
		grid-auto-rows: auto;
		
		
		
		
		
			
		

		
			
		
		
		
			
		

		
		
		
		
		
		
		
		
		

		
		box-shadow: none;
		

	}
	
}

@media (min-width: 62em) {
	/* Desktop */
	
}

/* #stacks_in_13172 .flux-container {
	overflow: hidden;
} */







/* Mobile */
.stacks_in_13173-indv-item {
	display: flex;
	flex-flow: column;

	
	grid-column-end: span 1;
	grid-row-end: span 1;
	
	
	


	
	justify-content: flex-start;
	
	
		
	
		
	
	
	
	
	
	
	

	
	
	
	
	
		
	

	
	
	
	border-width: 0px;
	

	
	border-color: rgba(94, 95, 95, 1.00);
	

	border-style: solid;
	
	
}


@media (min-width: 48em) {
	/* Tablet */
	
	.stacks_in_13173-indv-item {
		display: flex;
		flex-flow: column;
		grid-column-end: span 1;
		grid-row-end: span 1;


		
		grid-column-end: span 1;
		grid-row-end: span 1;
		
		
		


		
		justify-content: flex-start;
		
		
		
		
			
		
		
		
		
		
		
		
				
		
	
		
	
		

		
			
		
		
		
	
	}
	

	.stacks_in_13173-indv-item {
		
	}
}

@media (min-width: 62em) {
	/* Desktop */
	

	.stacks_in_13173-indv-item {
		
	}
}











.stacks_in_13173-clickable-item {
	cursor: pointer;
}



.stacks_in_13182 img{width:100%;max-width:250px}




/* Mobile */
.stacks_in_13192-indv-item {
	display: flex;
	flex-flow: column;

	
	grid-column-end: span 1;
	grid-row-end: span 1;
	
	
	


	
	justify-content: flex-start;
	
	
		
	
		
	
	
	
	
	
	
	

	
	
	
	
	
		
	

	
	
	
	border-width: 0px;
	

	
	border-color: rgba(94, 95, 95, 1.00);
	

	border-style: solid;
	
	
}


@media (min-width: 48em) {
	/* Tablet */
	
	.stacks_in_13192-indv-item {
		display: flex;
		flex-flow: column;
		grid-column-end: span 1;
		grid-row-end: span 1;


		
		grid-column-end: span 1;
		grid-row-end: span 1;
		
		
		


		
		justify-content: flex-start;
		
		
		
		
			
		
		
		
		
		
		
		
				
		
	
		
	
		

		
			
		
		
		
	
	}
	

	.stacks_in_13192-indv-item {
		
	}
}

@media (min-width: 62em) {
	/* Desktop */
	

	.stacks_in_13192-indv-item {
		
	}
}











.stacks_in_13192-clickable-item {
	cursor: pointer;
}



.stacks_in_13200 img{width:100%;max-width:250px}




/* Mobile */
.stacks_in_13210-indv-item {
	display: flex;
	flex-flow: column;

	
	grid-column-end: span 1;
	grid-row-end: span 1;
	
	
	


	
	justify-content: flex-start;
	
	
		
	
		
	
	
	
	
	
	
	

	
	
	
	
	
		
	

	
	
	
	border-width: 0px;
	

	
	border-color: rgba(94, 95, 95, 1.00);
	

	border-style: solid;
	
	
}


@media (min-width: 48em) {
	/* Tablet */
	
	.stacks_in_13210-indv-item {
		display: flex;
		flex-flow: column;
		grid-column-end: span 1;
		grid-row-end: span 1;


		
		grid-column-end: span 1;
		grid-row-end: span 1;
		
		
		


		
		justify-content: flex-start;
		
		
		
		
			
		
		
		
		
		
		
		
				
		
	
		
	
		

		
			
		
		
		
	
	}
	

	.stacks_in_13210-indv-item {
		
	}
}

@media (min-width: 62em) {
	/* Desktop */
	

	.stacks_in_13210-indv-item {
		
	}
}











.stacks_in_13210-clickable-item {
	cursor: pointer;
}



.stacks_in_13218 img{width:100%;max-width:250px}




/* CSS GRID */
#stacks_out_13226,
#stacks_in_13226 {
	overflow: visible;
}


#stacks_in_13226 .flux-container {
	overflow: visible;
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	gap: 30px 30px;
	align-items: stretch;

	/* border: 1px solid red; */
	
	margin-bottom: 21px;
	
}

#stacks_in_13226 .flux-item > .stacks_out {
	margin: 0;
	padding: 0;
}


/* These elements will be styled _ONLY_ at their given breakpoints */
/* and will not bleed from one to the other. */

/* Mobile */
@media (max-width: 47.9375em) {
}

/* Tablet */
@media (min-width: 48em) and (max-width: 61.9em) {
}

/* Desktop */
@media (min-width: 62em) {
}



/* ----------------------------------- */

/* These elements will be styled at their given breakpoints */
/* but can bleed from themselves over to wider breakpoints as well. */
/* Mobile */

#stacks_in_13226 .flux-container {
	

	row-gap: 30px;
	column-gap: 30px;
	
	
	
	
	
	
	grid-template-columns: repeat(1, 1fr);
	
	
	
	
	
	grid-auto-rows: auto;
	
	
	
	
	
	
	
	padding: 0px;
	

	
	border-width: 0px;
	

	border-color: rgba(204, 204, 204, 1.00);
	border-style: solid;
	
	
	border-radius: 0px;
	


	
	
	
	
	
	
	

	
	box-shadow: none;
	

}


/* Tablet */
@media (min-width: 48em) {
	
	#stacks_in_13226 .flux-container {
		

		row-gap: 30px;
		column-gap: 30px;
		
		
		
		
		grid-template-columns: repeat(3, 1fr);
		
		
		
		grid-auto-rows: auto;
		
		
		
		
		
			
		

		
			
		
		
		
			
		

		
		
		
		
		
		
		
		
		

		
		box-shadow: none;
		

	}
	
}

@media (min-width: 62em) {
	/* Desktop */
	
}

/* #stacks_in_13226 .flux-container {
	overflow: hidden;
} */







/* Mobile */
.stacks_in_13227-indv-item {
	display: flex;
	flex-flow: column;

	
	grid-column-end: span 1;
	grid-row-end: span 1;
	
	
	


	
	justify-content: flex-start;
	
	
		
	
		
	
	
	
	
	
	
	

	
	
	
	
	
		
	

	
	
	
	border-width: 0px;
	

	
	border-color: rgba(94, 95, 95, 1.00);
	

	border-style: solid;
	
	
}


@media (min-width: 48em) {
	/* Tablet */
	
	.stacks_in_13227-indv-item {
		display: flex;
		flex-flow: column;
		grid-column-end: span 1;
		grid-row-end: span 1;


		
		grid-column-end: span 1;
		grid-row-end: span 1;
		
		
		


		
		justify-content: flex-start;
		
		
		
		
			
		
		
		
		
		
		
		
				
		
	
		
	
		

		
			
		
		
		
	
	}
	

	.stacks_in_13227-indv-item {
		
	}
}

@media (min-width: 62em) {
	/* Desktop */
	

	.stacks_in_13227-indv-item {
		
	}
}











.stacks_in_13227-clickable-item {
	cursor: pointer;
}



.stacks_in_13236 img{width:100%;max-width:250px}




/* Mobile */
.stacks_in_13246-indv-item {
	display: flex;
	flex-flow: column;

	
	grid-column-end: span 1;
	grid-row-end: span 1;
	
	
	


	
	justify-content: flex-start;
	
	
		
	
		
	
	
	
	
	
	
	

	
	
	
	
	
		
	

	
	
	
	border-width: 0px;
	

	
	border-color: rgba(94, 95, 95, 1.00);
	

	border-style: solid;
	
	
}


@media (min-width: 48em) {
	/* Tablet */
	
	.stacks_in_13246-indv-item {
		display: flex;
		flex-flow: column;
		grid-column-end: span 1;
		grid-row-end: span 1;


		
		grid-column-end: span 1;
		grid-row-end: span 1;
		
		
		


		
		justify-content: flex-start;
		
		
		
		
			
		
		
		
		
		
		
		
				
		
	
		
	
		

		
			
		
		
		
	
	}
	

	.stacks_in_13246-indv-item {
		
	}
}

@media (min-width: 62em) {
	/* Desktop */
	

	.stacks_in_13246-indv-item {
		
	}
}











.stacks_in_13246-clickable-item {
	cursor: pointer;
}



.stacks_in_13254 img{width:100%;max-width:250px}




/* Mobile */
.stacks_in_13264-indv-item {
	display: flex;
	flex-flow: column;

	
	grid-column-end: span 1;
	grid-row-end: span 1;
	
	
	


	
	justify-content: flex-start;
	
	
		
	
		
	
	
	
	
	
	
	

	
	
	
	
	
		
	

	
	
	
	border-width: 0px;
	

	
	border-color: rgba(94, 95, 95, 1.00);
	

	border-style: solid;
	
	
}


@media (min-width: 48em) {
	/* Tablet */
	
	.stacks_in_13264-indv-item {
		display: flex;
		flex-flow: column;
		grid-column-end: span 1;
		grid-row-end: span 1;


		
		grid-column-end: span 1;
		grid-row-end: span 1;
		
		
		


		
		justify-content: flex-start;
		
		
		
		
			
		
		
		
		
		
		
		
				
		
	
		
	
		

		
			
		
		
		
	
	}
	

	.stacks_in_13264-indv-item {
		
	}
}

@media (min-width: 62em) {
	/* Desktop */
	

	.stacks_in_13264-indv-item {
		
	}
}











.stacks_in_13264-clickable-item {
	cursor: pointer;
}



.stacks_in_13272 img{width:100%;max-width:250px}




/* CSS GRID */
#stacks_out_13282,
#stacks_in_13282 {
	overflow: visible;
}


#stacks_in_13282 .flux-container {
	overflow: visible;
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	gap: 30px 30px;
	align-items: stretch;

	/* border: 1px solid red; */
	
	margin-bottom: 21px;
	
}

#stacks_in_13282 .flux-item > .stacks_out {
	margin: 0;
	padding: 0;
}


/* These elements will be styled _ONLY_ at their given breakpoints */
/* and will not bleed from one to the other. */

/* Mobile */
@media (max-width: 47.9375em) {
}

/* Tablet */
@media (min-width: 48em) and (max-width: 61.9em) {
}

/* Desktop */
@media (min-width: 62em) {
}



/* ----------------------------------- */

/* These elements will be styled at their given breakpoints */
/* but can bleed from themselves over to wider breakpoints as well. */
/* Mobile */

#stacks_in_13282 .flux-container {
	

	row-gap: 30px;
	column-gap: 30px;
	
	
	
	
	
	
	grid-template-columns: repeat(1, 1fr);
	
	
	
	
	
	grid-auto-rows: auto;
	
	
	
	
	
	
	
	padding: 0px;
	

	
	border-width: 0px;
	

	border-color: rgba(204, 204, 204, 1.00);
	border-style: solid;
	
	
	border-radius: 0px;
	


	
	
	
	
	
	
	

	
	box-shadow: none;
	

}


/* Tablet */
@media (min-width: 48em) {
	
	#stacks_in_13282 .flux-container {
		

		row-gap: 30px;
		column-gap: 30px;
		
		
		
		
		grid-template-columns: repeat(3, 1fr);
		
		
		
		grid-auto-rows: auto;
		
		
		
		
		
			
		

		
			
		
		
		
			
		

		
		
		
		
		
		
		
		
		

		
		box-shadow: none;
		

	}
	
}

@media (min-width: 62em) {
	/* Desktop */
	
}

/* #stacks_in_13282 .flux-container {
	overflow: hidden;
} */







/* Mobile */
.stacks_in_13283-indv-item {
	display: flex;
	flex-flow: column;

	
	grid-column-end: span 1;
	grid-row-end: span 1;
	
	
	


	
	justify-content: flex-start;
	
	
		
	
		
	
	
	
	
	
	
	

	
	
	
	
	
		
	

	
	
	
	border-width: 0px;
	

	
	border-color: rgba(94, 95, 95, 1.00);
	

	border-style: solid;
	
	
}


@media (min-width: 48em) {
	/* Tablet */
	
	.stacks_in_13283-indv-item {
		display: flex;
		flex-flow: column;
		grid-column-end: span 1;
		grid-row-end: span 1;


		
		grid-column-end: span 1;
		grid-row-end: span 1;
		
		
		


		
		justify-content: flex-start;
		
		
		
		
			
		
		
		
		
		
		
		
				
		
	
		
	
		

		
			
		
		
		
	
	}
	

	.stacks_in_13283-indv-item {
		
	}
}

@media (min-width: 62em) {
	/* Desktop */
	

	.stacks_in_13283-indv-item {
		
	}
}











.stacks_in_13283-clickable-item {
	cursor: pointer;
}



.stacks_in_13292 img{width:100%;max-width:250px}




/* Mobile */
.stacks_in_13302-indv-item {
	display: flex;
	flex-flow: column;

	
	grid-column-end: span 1;
	grid-row-end: span 1;
	
	
	


	
	justify-content: flex-start;
	
	
		
	
		
	
	
	
	
	
	
	

	
	
	
	
	
		
	

	
	
	
	border-width: 0px;
	

	
	border-color: rgba(94, 95, 95, 1.00);
	

	border-style: solid;
	
	
}


@media (min-width: 48em) {
	/* Tablet */
	
	.stacks_in_13302-indv-item {
		display: flex;
		flex-flow: column;
		grid-column-end: span 1;
		grid-row-end: span 1;


		
		grid-column-end: span 1;
		grid-row-end: span 1;
		
		
		


		
		justify-content: flex-start;
		
		
		
		
			
		
		
		
		
		
		
		
				
		
	
		
	
		

		
			
		
		
		
	
	}
	

	.stacks_in_13302-indv-item {
		
	}
}

@media (min-width: 62em) {
	/* Desktop */
	

	.stacks_in_13302-indv-item {
		
	}
}











.stacks_in_13302-clickable-item {
	cursor: pointer;
}



.stacks_in_13310 img{width:100%;max-width:250px}




/* Mobile */
.stacks_in_13457-indv-item {
	display: flex;
	flex-flow: column;

	
	grid-column-end: span 1;
	grid-row-end: span 1;
	
	
	


	
	justify-content: flex-start;
	
	
		
	
		
	
	
	
	
	
	
	

	
	
	
	
	
		
	

	
	
	
	border-width: 0px;
	

	
	border-color: rgba(94, 95, 95, 1.00);
	

	border-style: solid;
	
	
}


@media (min-width: 48em) {
	/* Tablet */
	
	.stacks_in_13457-indv-item {
		display: flex;
		flex-flow: column;
		grid-column-end: span 1;
		grid-row-end: span 1;


		
		grid-column-end: span 1;
		grid-row-end: span 1;
		
		
		


		
		justify-content: flex-start;
		
		
		
		
			
		
		
		
		
		
		
		
				
		
	
		
	
		

		
			
		
		
		
	
	}
	

	.stacks_in_13457-indv-item {
		
	}
}

@media (min-width: 62em) {
	/* Desktop */
	

	.stacks_in_13457-indv-item {
		
	}
}











.stacks_in_13457-clickable-item {
	cursor: pointer;
}



.stacks_in_13465 img{width:100%;max-width:250px}




/* CSS GRID */
#stacks_out_13338,
#stacks_in_13338 {
	overflow: visible;
}


#stacks_in_13338 .flux-container {
	overflow: visible;
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	gap: 30px 30px;
	align-items: stretch;

	/* border: 1px solid red; */
	
	margin-bottom: 21px;
	
}

#stacks_in_13338 .flux-item > .stacks_out {
	margin: 0;
	padding: 0;
}


/* These elements will be styled _ONLY_ at their given breakpoints */
/* and will not bleed from one to the other. */

/* Mobile */
@media (max-width: 47.9375em) {
}

/* Tablet */
@media (min-width: 48em) and (max-width: 61.9em) {
}

/* Desktop */
@media (min-width: 62em) {
}



/* ----------------------------------- */

/* These elements will be styled at their given breakpoints */
/* but can bleed from themselves over to wider breakpoints as well. */
/* Mobile */

#stacks_in_13338 .flux-container {
	

	row-gap: 30px;
	column-gap: 30px;
	
	
	
	
	
	
	grid-template-columns: repeat(1, 1fr);
	
	
	
	
	
	grid-auto-rows: auto;
	
	
	
	
	
	
	
	padding: 0px;
	

	
	border-width: 0px;
	

	border-color: rgba(204, 204, 204, 1.00);
	border-style: solid;
	
	
	border-radius: 0px;
	


	
	
	
	
	
	
	

	
	box-shadow: none;
	

}


/* Tablet */
@media (min-width: 48em) {
	
	#stacks_in_13338 .flux-container {
		

		row-gap: 30px;
		column-gap: 30px;
		
		
		
		
		grid-template-columns: repeat(3, 1fr);
		
		
		
		grid-auto-rows: auto;
		
		
		
		
		
			
		

		
			
		
		
		
			
		

		
		
		
		
		
		
		
		
		

		
		box-shadow: none;
		

	}
	
}

@media (min-width: 62em) {
	/* Desktop */
	
}

/* #stacks_in_13338 .flux-container {
	overflow: hidden;
} */







/* Mobile */
.stacks_in_13339-indv-item {
	display: flex;
	flex-flow: column;

	
	grid-column-end: span 1;
	grid-row-end: span 1;
	
	
	


	
	justify-content: flex-start;
	
	
		
	
		
	
	
	
	
	
	
	

	
	
	
	
	
		
	

	
	
	
	border-width: 0px;
	

	
	border-color: rgba(94, 95, 95, 1.00);
	

	border-style: solid;
	
	
}


@media (min-width: 48em) {
	/* Tablet */
	
	.stacks_in_13339-indv-item {
		display: flex;
		flex-flow: column;
		grid-column-end: span 1;
		grid-row-end: span 1;


		
		grid-column-end: span 1;
		grid-row-end: span 1;
		
		
		


		
		justify-content: flex-start;
		
		
		
		
			
		
		
		
		
		
		
		
				
		
	
		
	
		

		
			
		
		
		
	
	}
	

	.stacks_in_13339-indv-item {
		
	}
}

@media (min-width: 62em) {
	/* Desktop */
	

	.stacks_in_13339-indv-item {
		
	}
}











.stacks_in_13339-clickable-item {
	cursor: pointer;
}



.stacks_in_13348 img{width:100%;max-width:250px}




/* Mobile */
.stacks_in_13358-indv-item {
	display: flex;
	flex-flow: column;

	
	grid-column-end: span 1;
	grid-row-end: span 1;
	
	
	


	
	justify-content: flex-start;
	
	
		
	
		
	
	
	
	
	
	
	

	
	
	
	
	
		
	

	
	
	
	border-width: 0px;
	

	
	border-color: rgba(94, 95, 95, 1.00);
	

	border-style: solid;
	
	
}


@media (min-width: 48em) {
	/* Tablet */
	
	.stacks_in_13358-indv-item {
		display: flex;
		flex-flow: column;
		grid-column-end: span 1;
		grid-row-end: span 1;


		
		grid-column-end: span 1;
		grid-row-end: span 1;
		
		
		


		
		justify-content: flex-start;
		
		
		
		
			
		
		
		
		
		
		
		
				
		
	
		
	
		

		
			
		
		
		
	
	}
	

	.stacks_in_13358-indv-item {
		
	}
}

@media (min-width: 62em) {
	/* Desktop */
	

	.stacks_in_13358-indv-item {
		
	}
}











.stacks_in_13358-clickable-item {
	cursor: pointer;
}



.stacks_in_13366 img{width:100%;max-width:250px}




/* Mobile */
.stacks_in_13376-indv-item {
	display: flex;
	flex-flow: column;

	
	grid-column-end: span 1;
	grid-row-end: span 1;
	
	
	


	
	justify-content: flex-start;
	
	
		
	
		
	
	
	
	
	
	
	

	
	
	
	
	
		
	

	
	
	
	border-width: 0px;
	

	
	border-color: rgba(94, 95, 95, 1.00);
	

	border-style: solid;
	
	
}


@media (min-width: 48em) {
	/* Tablet */
	
	.stacks_in_13376-indv-item {
		display: flex;
		flex-flow: column;
		grid-column-end: span 1;
		grid-row-end: span 1;


		
		grid-column-end: span 1;
		grid-row-end: span 1;
		
		
		


		
		justify-content: flex-start;
		
		
		
		
			
		
		
		
		
		
		
		
				
		
	
		
	
		

		
			
		
		
		
	
	}
	

	.stacks_in_13376-indv-item {
		
	}
}

@media (min-width: 62em) {
	/* Desktop */
	

	.stacks_in_13376-indv-item {
		
	}
}











.stacks_in_13376-clickable-item {
	cursor: pointer;
}



.stacks_in_13384 img{width:100%;max-width:250px}

/* custom stuff */


#corner-stacks_in_10556_2 .corner-modal
{
  z-index: 9999;
  max-width:400px;
  max-height:500px;
}



#corner-stacks_in_10556_2 .corner-content {
	border:1px solid rgba(0, 0, 0, 0.40);
	border-radius:2px;
  background-color:rgba(255, 255, 255, 1.00);
  color: rgba(102, 102, 102, 1.00);
  overflow:auto;
}

#corner-stacks_in_10556_2 .corner-button
{
	font-family: Helvetica;
	font-size: 14px;
  font-weight: 700;
	border:2px solid rgba(255, 255, 255, 0.40);
	border-radius:22px;
  background-color:rgba(28, 138, 32, 1.00);
  color: rgba(255, 255, 255, 1.00);
  padding-top: 10px;
  padding-right: 20px;
  padding-bottom: 10px;
  padding-left: 20px;
  margin-top: 20px;
  margin-right: 20px;
  margin-bottom: 20px;
  margin-left: 20px;
  z-index: 9998;
}


#corner-stacks_in_10556_2 .corner-button.corner-tl,
#corner-stacks_in_10556_2 .corner-button.corner-tr {
  margin-top: -60px;
}

#corner-stacks_in_10556_2 .corner-button.corner-bl,
#corner-stacks_in_10556_2 .corner-button.corner-br {
  margin-bottom: -60px;
}


#corner-stacks_in_10556_2 .corner-content {
	padding-top: 10px;
  padding-right: 20px;
  padding-bottom: 10px;
  padding-left: 20px;
  margin-top: 10px;
  margin-right: 20px;
  margin-bottom: 20px;
  margin-left: 20px;
}

#corner-stacks_in_10556_2 .corner-button.corner-tl.corner-show,
#corner-stacks_in_10556_2 .corner-button.corner-tr.corner-show {
  margin-top: 20px;
}

#corner-stacks_in_10556_2 .corner-button.corner-bl.corner-show,
#corner-stacks_in_10556_2 .corner-button.corner-br.corner-show {
  margin-bottom: 20px;
}


/* hide the text in button on smaller screens */
@media only screen and (max-width: 770px)  
{ 
  #corner-stacks_in_10556_2 .corner-modal
  {
    width:100%;
    max-width:100%;
    max-height:100%;
    margin:0;
  }

  #corner-stacks_in_10556_2 .corner-content
  {
    margin:4px;
  }

  #corner-stacks_in_10556_2 span.corner-label { 
    display:none; 
  }
}




.margin-contact{margin:5rem ;}  
label{--header-color:rgba(255, 255, 255, 1.00);--subheader-color:rgba(138, 138, 138, 1.00);--small-color:rgba(202, 202, 202, 1.00);--text-color:rgba(255, 255, 255, 1.00);--link-color:rgba(0, 140, 186, 1.00);--link-color-hover:rgba(0, 102, 136, 1.00);--link-decoration:none;--link-decoration-hover:none}
.bg-grey{background-color:rgba(204, 204, 204, 1.00) ;background-position:center center ;background-origin:padding-box ;background-blend-mode:normal ;background-attachment:scroll   ;background-clip:border-box ;}@media (hover:none) and (pointer:coarse){.bg-grey{background-attachment:scroll!important}}
.white-font{color:rgba(255, 255, 255, 1.00) ;}






/* CSS GRID */
#stacks_out_13965,
#stacks_in_13965 {
	overflow: visible;
}


#stacks_in_13965 .flux-container {
	overflow: visible;
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	gap: 30px 30px;
	align-items: stretch;

	/* border: 1px solid red; */
	
	margin-bottom: 21px;
	
}

#stacks_in_13965 .flux-item > .stacks_out {
	margin: 0;
	padding: 0;
}


/* These elements will be styled _ONLY_ at their given breakpoints */
/* and will not bleed from one to the other. */

/* Mobile */
@media (max-width: 47.9375em) {
}

/* Tablet */
@media (min-width: 48em) and (max-width: 61.9em) {
}

/* Desktop */
@media (min-width: 62em) {
}



/* ----------------------------------- */

/* These elements will be styled at their given breakpoints */
/* but can bleed from themselves over to wider breakpoints as well. */
/* Mobile */

#stacks_in_13965 .flux-container {
	

	row-gap: 30px;
	column-gap: 30px;
	
	
	
	
	
	
	grid-template-columns: repeat(1, 1fr);
	
	
	
	
	
	grid-auto-rows: auto;
	
	
	
	
	
	
	
	padding: 0px;
	

	
	border-width: 0px;
	

	border-color: rgba(204, 204, 204, 1.00);
	border-style: solid;
	
	
	border-radius: 0px;
	


	
	
	
	
	
	
	

	
	box-shadow: none;
	

}


/* Tablet */
@media (min-width: 48em) {
	
	#stacks_in_13965 .flux-container {
		

		row-gap: 30px;
		column-gap: 30px;
		
		
		
		
		grid-template-columns: repeat(3, 1fr);
		
		
		
		grid-auto-rows: auto;
		
		
		
		
		
			
		

		
			
		
		
		
			
		

		
		
		
		
		
		
		
		
		

		
		box-shadow: none;
		

	}
	
}

@media (min-width: 62em) {
	/* Desktop */
	
}

/* #stacks_in_13965 .flux-container {
	overflow: hidden;
} */







/* Mobile */
.stacks_in_13966-indv-item {
	display: flex;
	flex-flow: column;

	
	grid-column-end: span 1;
	grid-row-end: span 1;
	
	
	


	
	justify-content: flex-start;
	
	
		
	
		
	
	
	
	
	
	
	

	
	
	
	
	
		
	

	
	
	
	border-width: 0px;
	

	
	border-color: rgba(94, 95, 95, 1.00);
	

	border-style: solid;
	
	
}


@media (min-width: 48em) {
	/* Tablet */
	
	.stacks_in_13966-indv-item {
		display: flex;
		flex-flow: column;
		grid-column-end: span 1;
		grid-row-end: span 1;


		
		grid-column-end: span 1;
		grid-row-end: span 1;
		
		
		


		
		justify-content: flex-start;
		
		
		
		
			
		
		
		
		
		
		
		
				
		
	
		
	
		

		
			
		
		
		
	
	}
	

	.stacks_in_13966-indv-item {
		
	}
}

@media (min-width: 62em) {
	/* Desktop */
	

	.stacks_in_13966-indv-item {
		
	}
}











.stacks_in_13966-clickable-item {
	cursor: pointer;
}



.stacks_in_13975 img{width:100%;max-width:250px}




/* Mobile */
.stacks_in_13985-indv-item {
	display: flex;
	flex-flow: column;

	
	grid-column-end: span 1;
	grid-row-end: span 1;
	
	
	


	
	justify-content: flex-start;
	
	
		
	
		
	
	
	
	
	
	
	

	
	
	
	
	
		
	

	
	
	
	border-width: 0px;
	

	
	border-color: rgba(94, 95, 95, 1.00);
	

	border-style: solid;
	
	
}


@media (min-width: 48em) {
	/* Tablet */
	
	.stacks_in_13985-indv-item {
		display: flex;
		flex-flow: column;
		grid-column-end: span 1;
		grid-row-end: span 1;


		
		grid-column-end: span 1;
		grid-row-end: span 1;
		
		
		


		
		justify-content: flex-start;
		
		
		
		
			
		
		
		
		
		
		
		
				
		
	
		
	
		

		
			
		
		
		
	
	}
	

	.stacks_in_13985-indv-item {
		
	}
}

@media (min-width: 62em) {
	/* Desktop */
	

	.stacks_in_13985-indv-item {
		
	}
}











.stacks_in_13985-clickable-item {
	cursor: pointer;
}



.stacks_in_13993 img{width:100%;max-width:250px}




/* Mobile */
.stacks_in_14003-indv-item {
	display: flex;
	flex-flow: column;

	
	grid-column-end: span 1;
	grid-row-end: span 1;
	
	
	


	
	justify-content: flex-start;
	
	
		
	
		
	
	
	
	
	
	
	

	
	
	
	
	
		
	

	
	
	
	border-width: 0px;
	

	
	border-color: rgba(94, 95, 95, 1.00);
	

	border-style: solid;
	
	
}


@media (min-width: 48em) {
	/* Tablet */
	
	.stacks_in_14003-indv-item {
		display: flex;
		flex-flow: column;
		grid-column-end: span 1;
		grid-row-end: span 1;


		
		grid-column-end: span 1;
		grid-row-end: span 1;
		
		
		


		
		justify-content: flex-start;
		
		
		
		
			
		
		
		
		
		
		
		
				
		
	
		
	
		

		
			
		
		
		
	
	}
	

	.stacks_in_14003-indv-item {
		
	}
}

@media (min-width: 62em) {
	/* Desktop */
	

	.stacks_in_14003-indv-item {
		
	}
}











.stacks_in_14003-clickable-item {
	cursor: pointer;
}



.stacks_in_14011 img{width:100%;max-width:250px}




/* CSS GRID */
#stacks_out_14023,
#stacks_in_14023 {
	overflow: visible;
}


#stacks_in_14023 .flux-container {
	overflow: visible;
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	gap: 30px 30px;
	align-items: stretch;

	/* border: 1px solid red; */
	
	margin-bottom: 21px;
	
}

#stacks_in_14023 .flux-item > .stacks_out {
	margin: 0;
	padding: 0;
}


/* These elements will be styled _ONLY_ at their given breakpoints */
/* and will not bleed from one to the other. */

/* Mobile */
@media (max-width: 47.9375em) {
}

/* Tablet */
@media (min-width: 48em) and (max-width: 61.9em) {
}

/* Desktop */
@media (min-width: 62em) {
}



/* ----------------------------------- */

/* These elements will be styled at their given breakpoints */
/* but can bleed from themselves over to wider breakpoints as well. */
/* Mobile */

#stacks_in_14023 .flux-container {
	

	row-gap: 30px;
	column-gap: 30px;
	
	
	
	
	
	
	grid-template-columns: repeat(1, 1fr);
	
	
	
	
	
	grid-auto-rows: auto;
	
	
	
	
	
	
	
	padding: 0px;
	

	
	border-width: 0px;
	

	border-color: rgba(204, 204, 204, 1.00);
	border-style: solid;
	
	
	border-radius: 0px;
	


	
	
	
	
	
	
	

	
	box-shadow: none;
	

}


/* Tablet */
@media (min-width: 48em) {
	
	#stacks_in_14023 .flux-container {
		

		row-gap: 30px;
		column-gap: 30px;
		
		
		
		
		grid-template-columns: repeat(3, 1fr);
		
		
		
		grid-auto-rows: auto;
		
		
		
		
		
			
		

		
			
		
		
		
			
		

		
		
		
		
		
		
		
		
		

		
		box-shadow: none;
		

	}
	
}

@media (min-width: 62em) {
	/* Desktop */
	
}

/* #stacks_in_14023 .flux-container {
	overflow: hidden;
} */







/* Mobile */
.stacks_in_14024-indv-item {
	display: flex;
	flex-flow: column;

	
	grid-column-end: span 1;
	grid-row-end: span 1;
	
	
	


	
	justify-content: flex-start;
	
	
		
	
		
	
	
	
	
	
	
	

	
	
	
	
	
		
	

	
	
	
	border-width: 0px;
	

	
	border-color: rgba(94, 95, 95, 1.00);
	

	border-style: solid;
	
	
}


@media (min-width: 48em) {
	/* Tablet */
	
	.stacks_in_14024-indv-item {
		display: flex;
		flex-flow: column;
		grid-column-end: span 1;
		grid-row-end: span 1;


		
		grid-column-end: span 1;
		grid-row-end: span 1;
		
		
		


		
		justify-content: flex-start;
		
		
		
		
			
		
		
		
		
		
		
		
				
		
	
		
	
		

		
			
		
		
		
	
	}
	

	.stacks_in_14024-indv-item {
		
	}
}

@media (min-width: 62em) {
	/* Desktop */
	

	.stacks_in_14024-indv-item {
		
	}
}











.stacks_in_14024-clickable-item {
	cursor: pointer;
}



.stacks_in_14033 img{width:100%;max-width:250px}




/* Mobile */
.stacks_in_14043-indv-item {
	display: flex;
	flex-flow: column;

	
	grid-column-end: span 1;
	grid-row-end: span 1;
	
	
	


	
	justify-content: flex-start;
	
	
		
	
		
	
	
	
	
	
	
	

	
	
	
	
	
		
	

	
	
	
	border-width: 0px;
	

	
	border-color: rgba(94, 95, 95, 1.00);
	

	border-style: solid;
	
	
}


@media (min-width: 48em) {
	/* Tablet */
	
	.stacks_in_14043-indv-item {
		display: flex;
		flex-flow: column;
		grid-column-end: span 1;
		grid-row-end: span 1;


		
		grid-column-end: span 1;
		grid-row-end: span 1;
		
		
		


		
		justify-content: flex-start;
		
		
		
		
			
		
		
		
		
		
		
		
				
		
	
		
	
		

		
			
		
		
		
	
	}
	

	.stacks_in_14043-indv-item {
		
	}
}

@media (min-width: 62em) {
	/* Desktop */
	

	.stacks_in_14043-indv-item {
		
	}
}











.stacks_in_14043-clickable-item {
	cursor: pointer;
}



.stacks_in_14051 img{width:100%;max-width:250px}




/* Mobile */
.stacks_in_14059-indv-item {
	display: flex;
	flex-flow: column;

	
	grid-column-end: span 1;
	grid-row-end: span 1;
	
	
	


	
	justify-content: flex-start;
	
	
		
	
		
	
	
	
	
	
	
	

	
	
	
	
	
		
	

	
	
	
	border-width: 0px;
	

	
	border-color: rgba(94, 95, 95, 1.00);
	

	border-style: solid;
	
	
}


@media (min-width: 48em) {
	/* Tablet */
	
	.stacks_in_14059-indv-item {
		display: flex;
		flex-flow: column;
		grid-column-end: span 1;
		grid-row-end: span 1;


		
		grid-column-end: span 1;
		grid-row-end: span 1;
		
		
		


		
		justify-content: flex-start;
		
		
		
		
			
		
		
		
		
		
		
		
				
		
	
		
	
		

		
			
		
		
		
	
	}
	

	.stacks_in_14059-indv-item {
		
	}
}

@media (min-width: 62em) {
	/* Desktop */
	

	.stacks_in_14059-indv-item {
		
	}
}











.stacks_in_14059-clickable-item {
	cursor: pointer;
}



.stacks_in_14067 img{width:100%;max-width:250px}




/* CSS GRID */
#stacks_out_14077,
#stacks_in_14077 {
	overflow: visible;
}


#stacks_in_14077 .flux-container {
	overflow: visible;
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	gap: 30px 30px;
	align-items: stretch;

	/* border: 1px solid red; */
	
	margin-bottom: 21px;
	
}

#stacks_in_14077 .flux-item > .stacks_out {
	margin: 0;
	padding: 0;
}


/* These elements will be styled _ONLY_ at their given breakpoints */
/* and will not bleed from one to the other. */

/* Mobile */
@media (max-width: 47.9375em) {
}

/* Tablet */
@media (min-width: 48em) and (max-width: 61.9em) {
}

/* Desktop */
@media (min-width: 62em) {
}



/* ----------------------------------- */

/* These elements will be styled at their given breakpoints */
/* but can bleed from themselves over to wider breakpoints as well. */
/* Mobile */

#stacks_in_14077 .flux-container {
	

	row-gap: 30px;
	column-gap: 30px;
	
	
	
	
	
	
	grid-template-columns: repeat(1, 1fr);
	
	
	
	
	
	grid-auto-rows: auto;
	
	
	
	
	
	
	
	padding: 0px;
	

	
	border-width: 0px;
	

	border-color: rgba(204, 204, 204, 1.00);
	border-style: solid;
	
	
	border-radius: 0px;
	


	
	
	
	
	
	
	

	
	box-shadow: none;
	

}


/* Tablet */
@media (min-width: 48em) {
	
	#stacks_in_14077 .flux-container {
		

		row-gap: 30px;
		column-gap: 30px;
		
		
		
		
		grid-template-columns: repeat(3, 1fr);
		
		
		
		grid-auto-rows: auto;
		
		
		
		
		
			
		

		
			
		
		
		
			
		

		
		
		
		
		
		
		
		
		

		
		box-shadow: none;
		

	}
	
}

@media (min-width: 62em) {
	/* Desktop */
	
}

/* #stacks_in_14077 .flux-container {
	overflow: hidden;
} */







/* Mobile */
.stacks_in_14078-indv-item {
	display: flex;
	flex-flow: column;

	
	grid-column-end: span 1;
	grid-row-end: span 1;
	
	
	


	
	justify-content: flex-start;
	
	
		
	
		
	
	
	
	
	
	
	

	
	
	
	
	
		
	

	
	
	
	border-width: 0px;
	

	
	border-color: rgba(94, 95, 95, 1.00);
	

	border-style: solid;
	
	
}


@media (min-width: 48em) {
	/* Tablet */
	
	.stacks_in_14078-indv-item {
		display: flex;
		flex-flow: column;
		grid-column-end: span 1;
		grid-row-end: span 1;


		
		grid-column-end: span 1;
		grid-row-end: span 1;
		
		
		


		
		justify-content: flex-start;
		
		
		
		
			
		
		
		
		
		
		
		
				
		
	
		
	
		

		
			
		
		
		
	
	}
	

	.stacks_in_14078-indv-item {
		
	}
}

@media (min-width: 62em) {
	/* Desktop */
	

	.stacks_in_14078-indv-item {
		
	}
}











.stacks_in_14078-clickable-item {
	cursor: pointer;
}



.stacks_in_14087 img{width:100%;max-width:250px}




/* Mobile */
.stacks_in_14097-indv-item {
	display: flex;
	flex-flow: column;

	
	grid-column-end: span 1;
	grid-row-end: span 1;
	
	
	


	
	justify-content: flex-start;
	
	
		
	
		
	
	
	
	
	
	
	

	
	
	
	
	
		
	

	
	
	
	border-width: 0px;
	

	
	border-color: rgba(94, 95, 95, 1.00);
	

	border-style: solid;
	
	
}


@media (min-width: 48em) {
	/* Tablet */
	
	.stacks_in_14097-indv-item {
		display: flex;
		flex-flow: column;
		grid-column-end: span 1;
		grid-row-end: span 1;


		
		grid-column-end: span 1;
		grid-row-end: span 1;
		
		
		


		
		justify-content: flex-start;
		
		
		
		
			
		
		
		
		
		
		
		
				
		
	
		
	
		

		
			
		
		
		
	
	}
	

	.stacks_in_14097-indv-item {
		
	}
}

@media (min-width: 62em) {
	/* Desktop */
	

	.stacks_in_14097-indv-item {
		
	}
}











.stacks_in_14097-clickable-item {
	cursor: pointer;
}



.stacks_in_14105 img{width:100%;max-width:250px}




/* Mobile */
.stacks_in_14113-indv-item {
	display: flex;
	flex-flow: column;

	
	grid-column-end: span 1;
	grid-row-end: span 1;
	
	
	


	
	justify-content: flex-start;
	
	
		
	
		
	
	
	
	
	
	
	

	
	
	
	
	
		
	

	
	
	
	border-width: 0px;
	

	
	border-color: rgba(94, 95, 95, 1.00);
	

	border-style: solid;
	
	
}


@media (min-width: 48em) {
	/* Tablet */
	
	.stacks_in_14113-indv-item {
		display: flex;
		flex-flow: column;
		grid-column-end: span 1;
		grid-row-end: span 1;


		
		grid-column-end: span 1;
		grid-row-end: span 1;
		
		
		


		
		justify-content: flex-start;
		
		
		
		
			
		
		
		
		
		
		
		
				
		
	
		
	
		

		
			
		
		
		
	
	}
	

	.stacks_in_14113-indv-item {
		
	}
}

@media (min-width: 62em) {
	/* Desktop */
	

	.stacks_in_14113-indv-item {
		
	}
}











.stacks_in_14113-clickable-item {
	cursor: pointer;
}



.stacks_in_14121 img{width:100%;max-width:250px}




/* CSS GRID */
#stacks_out_14131,
#stacks_in_14131 {
	overflow: visible;
}


#stacks_in_14131 .flux-container {
	overflow: visible;
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	gap: 30px 30px;
	align-items: stretch;

	/* border: 1px solid red; */
	
	margin-bottom: 21px;
	
}

#stacks_in_14131 .flux-item > .stacks_out {
	margin: 0;
	padding: 0;
}


/* These elements will be styled _ONLY_ at their given breakpoints */
/* and will not bleed from one to the other. */

/* Mobile */
@media (max-width: 47.9375em) {
}

/* Tablet */
@media (min-width: 48em) and (max-width: 61.9em) {
}

/* Desktop */
@media (min-width: 62em) {
}



/* ----------------------------------- */

/* These elements will be styled at their given breakpoints */
/* but can bleed from themselves over to wider breakpoints as well. */
/* Mobile */

#stacks_in_14131 .flux-container {
	

	row-gap: 30px;
	column-gap: 30px;
	
	
	
	
	
	
	grid-template-columns: repeat(1, 1fr);
	
	
	
	
	
	grid-auto-rows: auto;
	
	
	
	
	
	
	
	padding: 0px;
	

	
	border-width: 0px;
	

	border-color: rgba(204, 204, 204, 1.00);
	border-style: solid;
	
	
	border-radius: 0px;
	


	
	
	
	
	
	
	

	
	box-shadow: none;
	

}


/* Tablet */
@media (min-width: 48em) {
	
	#stacks_in_14131 .flux-container {
		

		row-gap: 30px;
		column-gap: 30px;
		
		
		
		
		grid-template-columns: repeat(3, 1fr);
		
		
		
		grid-auto-rows: auto;
		
		
		
		
		
			
		

		
			
		
		
		
			
		

		
		
		
		
		
		
		
		
		

		
		box-shadow: none;
		

	}
	
}

@media (min-width: 62em) {
	/* Desktop */
	
}

/* #stacks_in_14131 .flux-container {
	overflow: hidden;
} */







/* Mobile */
.stacks_in_14132-indv-item {
	display: flex;
	flex-flow: column;

	
	grid-column-end: span 1;
	grid-row-end: span 1;
	
	
	


	
	justify-content: flex-start;
	
	
		
	
		
	
	
	
	
	
	
	

	
	
	
	
	
		
	

	
	
	
	border-width: 0px;
	

	
	border-color: rgba(94, 95, 95, 1.00);
	

	border-style: solid;
	
	
}


@media (min-width: 48em) {
	/* Tablet */
	
	.stacks_in_14132-indv-item {
		display: flex;
		flex-flow: column;
		grid-column-end: span 1;
		grid-row-end: span 1;


		
		grid-column-end: span 1;
		grid-row-end: span 1;
		
		
		


		
		justify-content: flex-start;
		
		
		
		
			
		
		
		
		
		
		
		
				
		
	
		
	
		

		
			
		
		
		
	
	}
	

	.stacks_in_14132-indv-item {
		
	}
}

@media (min-width: 62em) {
	/* Desktop */
	

	.stacks_in_14132-indv-item {
		
	}
}











.stacks_in_14132-clickable-item {
	cursor: pointer;
}



.stacks_in_14141 img{width:100%;max-width:250px}




/* Mobile */
.stacks_in_14151-indv-item {
	display: flex;
	flex-flow: column;

	
	grid-column-end: span 1;
	grid-row-end: span 1;
	
	
	


	
	justify-content: flex-start;
	
	
		
	
		
	
	
	
	
	
	
	

	
	
	
	
	
		
	

	
	
	
	border-width: 0px;
	

	
	border-color: rgba(94, 95, 95, 1.00);
	

	border-style: solid;
	
	
}


@media (min-width: 48em) {
	/* Tablet */
	
	.stacks_in_14151-indv-item {
		display: flex;
		flex-flow: column;
		grid-column-end: span 1;
		grid-row-end: span 1;


		
		grid-column-end: span 1;
		grid-row-end: span 1;
		
		
		


		
		justify-content: flex-start;
		
		
		
		
			
		
		
		
		
		
		
		
				
		
	
		
	
		

		
			
		
		
		
	
	}
	

	.stacks_in_14151-indv-item {
		
	}
}

@media (min-width: 62em) {
	/* Desktop */
	

	.stacks_in_14151-indv-item {
		
	}
}











.stacks_in_14151-clickable-item {
	cursor: pointer;
}



.stacks_in_14159 img{width:100%;max-width:250px}




/* Mobile */
.stacks_in_14169-indv-item {
	display: flex;
	flex-flow: column;

	
	grid-column-end: span 1;
	grid-row-end: span 1;
	
	
	


	
	justify-content: flex-start;
	
	
		
	
		
	
	
	
	
	
	
	

	
	
	
	
	
		
	

	
	
	
	border-width: 0px;
	

	
	border-color: rgba(94, 95, 95, 1.00);
	

	border-style: solid;
	
	
}


@media (min-width: 48em) {
	/* Tablet */
	
	.stacks_in_14169-indv-item {
		display: flex;
		flex-flow: column;
		grid-column-end: span 1;
		grid-row-end: span 1;


		
		grid-column-end: span 1;
		grid-row-end: span 1;
		
		
		


		
		justify-content: flex-start;
		
		
		
		
			
		
		
		
		
		
		
		
				
		
	
		
	
		

		
			
		
		
		
	
	}
	

	.stacks_in_14169-indv-item {
		
	}
}

@media (min-width: 62em) {
	/* Desktop */
	

	.stacks_in_14169-indv-item {
		
	}
}











.stacks_in_14169-clickable-item {
	cursor: pointer;
}



.stacks_in_14177 img{width:100%;max-width:250px}




/* CSS GRID */
#stacks_out_14185,
#stacks_in_14185 {
	overflow: visible;
}


#stacks_in_14185 .flux-container {
	overflow: visible;
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	gap: 30px 30px;
	align-items: stretch;

	/* border: 1px solid red; */
	
	margin-bottom: 21px;
	
}

#stacks_in_14185 .flux-item > .stacks_out {
	margin: 0;
	padding: 0;
}


/* These elements will be styled _ONLY_ at their given breakpoints */
/* and will not bleed from one to the other. */

/* Mobile */
@media (max-width: 47.9375em) {
}

/* Tablet */
@media (min-width: 48em) and (max-width: 61.9em) {
}

/* Desktop */
@media (min-width: 62em) {
}



/* ----------------------------------- */

/* These elements will be styled at their given breakpoints */
/* but can bleed from themselves over to wider breakpoints as well. */
/* Mobile */

#stacks_in_14185 .flux-container {
	

	row-gap: 30px;
	column-gap: 30px;
	
	
	
	
	
	
	grid-template-columns: repeat(1, 1fr);
	
	
	
	
	
	grid-auto-rows: auto;
	
	
	
	
	
	
	
	padding: 0px;
	

	
	border-width: 0px;
	

	border-color: rgba(204, 204, 204, 1.00);
	border-style: solid;
	
	
	border-radius: 0px;
	


	
	
	
	
	
	
	

	
	box-shadow: none;
	

}


/* Tablet */
@media (min-width: 48em) {
	
	#stacks_in_14185 .flux-container {
		

		row-gap: 30px;
		column-gap: 30px;
		
		
		
		
		grid-template-columns: repeat(3, 1fr);
		
		
		
		grid-auto-rows: auto;
		
		
		
		
		
			
		

		
			
		
		
		
			
		

		
		
		
		
		
		
		
		
		

		
		box-shadow: none;
		

	}
	
}

@media (min-width: 62em) {
	/* Desktop */
	
}

/* #stacks_in_14185 .flux-container {
	overflow: hidden;
} */







/* Mobile */
.stacks_in_14186-indv-item {
	display: flex;
	flex-flow: column;

	
	grid-column-end: span 1;
	grid-row-end: span 1;
	
	
	


	
	justify-content: flex-start;
	
	
		
	
		
	
	
	
	
	
	
	

	
	
	
	
	
		
	

	
	
	
	border-width: 0px;
	

	
	border-color: rgba(94, 95, 95, 1.00);
	

	border-style: solid;
	
	
}


@media (min-width: 48em) {
	/* Tablet */
	
	.stacks_in_14186-indv-item {
		display: flex;
		flex-flow: column;
		grid-column-end: span 1;
		grid-row-end: span 1;


		
		grid-column-end: span 1;
		grid-row-end: span 1;
		
		
		


		
		justify-content: flex-start;
		
		
		
		
			
		
		
		
		
		
		
		
				
		
	
		
	
		

		
			
		
		
		
	
	}
	

	.stacks_in_14186-indv-item {
		
	}
}

@media (min-width: 62em) {
	/* Desktop */
	

	.stacks_in_14186-indv-item {
		
	}
}











.stacks_in_14186-clickable-item {
	cursor: pointer;
}



.stacks_in_14195 img{width:100%;max-width:250px}




/* Mobile */
.stacks_in_14205-indv-item {
	display: flex;
	flex-flow: column;

	
	grid-column-end: span 1;
	grid-row-end: span 1;
	
	
	


	
	justify-content: flex-start;
	
	
		
	
		
	
	
	
	
	
	
	

	
	
	
	
	
		
	

	
	
	
	border-width: 0px;
	

	
	border-color: rgba(94, 95, 95, 1.00);
	

	border-style: solid;
	
	
}


@media (min-width: 48em) {
	/* Tablet */
	
	.stacks_in_14205-indv-item {
		display: flex;
		flex-flow: column;
		grid-column-end: span 1;
		grid-row-end: span 1;


		
		grid-column-end: span 1;
		grid-row-end: span 1;
		
		
		


		
		justify-content: flex-start;
		
		
		
		
			
		
		
		
		
		
		
		
				
		
	
		
	
		

		
			
		
		
		
	
	}
	

	.stacks_in_14205-indv-item {
		
	}
}

@media (min-width: 62em) {
	/* Desktop */
	

	.stacks_in_14205-indv-item {
		
	}
}











.stacks_in_14205-clickable-item {
	cursor: pointer;
}



.stacks_in_14213 img{width:100%;max-width:250px}




/* Mobile */
.stacks_in_14223-indv-item {
	display: flex;
	flex-flow: column;

	
	grid-column-end: span 1;
	grid-row-end: span 1;
	
	
	


	
	justify-content: flex-start;
	
	
		
	
		
	
	
	
	
	
	
	

	
	
	
	
	
		
	

	
	
	
	border-width: 0px;
	

	
	border-color: rgba(94, 95, 95, 1.00);
	

	border-style: solid;
	
	
}


@media (min-width: 48em) {
	/* Tablet */
	
	.stacks_in_14223-indv-item {
		display: flex;
		flex-flow: column;
		grid-column-end: span 1;
		grid-row-end: span 1;


		
		grid-column-end: span 1;
		grid-row-end: span 1;
		
		
		


		
		justify-content: flex-start;
		
		
		
		
			
		
		
		
		
		
		
		
				
		
	
		
	
		

		
			
		
		
		
	
	}
	

	.stacks_in_14223-indv-item {
		
	}
}

@media (min-width: 62em) {
	/* Desktop */
	

	.stacks_in_14223-indv-item {
		
	}
}











.stacks_in_14223-clickable-item {
	cursor: pointer;
}



.stacks_in_14231 img{width:100%;max-width:250px}




/* CSS GRID */
#stacks_out_14241,
#stacks_in_14241 {
	overflow: visible;
}


#stacks_in_14241 .flux-container {
	overflow: visible;
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	gap: 30px 30px;
	align-items: stretch;

	/* border: 1px solid red; */
	
	margin-bottom: 21px;
	
}

#stacks_in_14241 .flux-item > .stacks_out {
	margin: 0;
	padding: 0;
}


/* These elements will be styled _ONLY_ at their given breakpoints */
/* and will not bleed from one to the other. */

/* Mobile */
@media (max-width: 47.9375em) {
}

/* Tablet */
@media (min-width: 48em) and (max-width: 61.9em) {
}

/* Desktop */
@media (min-width: 62em) {
}



/* ----------------------------------- */

/* These elements will be styled at their given breakpoints */
/* but can bleed from themselves over to wider breakpoints as well. */
/* Mobile */

#stacks_in_14241 .flux-container {
	

	row-gap: 30px;
	column-gap: 30px;
	
	
	
	
	
	
	grid-template-columns: repeat(1, 1fr);
	
	
	
	
	
	grid-auto-rows: auto;
	
	
	
	
	
	
	
	padding: 0px;
	

	
	border-width: 0px;
	

	border-color: rgba(204, 204, 204, 1.00);
	border-style: solid;
	
	
	border-radius: 0px;
	


	
	
	
	
	
	
	

	
	box-shadow: none;
	

}


/* Tablet */
@media (min-width: 48em) {
	
	#stacks_in_14241 .flux-container {
		

		row-gap: 30px;
		column-gap: 30px;
		
		
		
		
		grid-template-columns: repeat(3, 1fr);
		
		
		
		grid-auto-rows: auto;
		
		
		
		
		
			
		

		
			
		
		
		
			
		

		
		
		
		
		
		
		
		
		

		
		box-shadow: none;
		

	}
	
}

@media (min-width: 62em) {
	/* Desktop */
	
}

/* #stacks_in_14241 .flux-container {
	overflow: hidden;
} */







/* Mobile */
.stacks_in_14242-indv-item {
	display: flex;
	flex-flow: column;

	
	grid-column-end: span 1;
	grid-row-end: span 1;
	
	
	


	
	justify-content: flex-start;
	
	
		
	
		
	
	
	
	
	
	
	

	
	
	
	
	
		
	

	
	
	
	border-width: 0px;
	

	
	border-color: rgba(94, 95, 95, 1.00);
	

	border-style: solid;
	
	
}


@media (min-width: 48em) {
	/* Tablet */
	
	.stacks_in_14242-indv-item {
		display: flex;
		flex-flow: column;
		grid-column-end: span 1;
		grid-row-end: span 1;


		
		grid-column-end: span 1;
		grid-row-end: span 1;
		
		
		


		
		justify-content: flex-start;
		
		
		
		
			
		
		
		
		
		
		
		
				
		
	
		
	
		

		
			
		
		
		
	
	}
	

	.stacks_in_14242-indv-item {
		
	}
}

@media (min-width: 62em) {
	/* Desktop */
	

	.stacks_in_14242-indv-item {
		
	}
}











.stacks_in_14242-clickable-item {
	cursor: pointer;
}



.stacks_in_14251 img{width:100%;max-width:250px}




/* Mobile */
.stacks_in_14261-indv-item {
	display: flex;
	flex-flow: column;

	
	grid-column-end: span 1;
	grid-row-end: span 1;
	
	
	


	
	justify-content: flex-start;
	
	
		
	
		
	
	
	
	
	
	
	

	
	
	
	
	
		
	

	
	
	
	border-width: 0px;
	

	
	border-color: rgba(94, 95, 95, 1.00);
	

	border-style: solid;
	
	
}


@media (min-width: 48em) {
	/* Tablet */
	
	.stacks_in_14261-indv-item {
		display: flex;
		flex-flow: column;
		grid-column-end: span 1;
		grid-row-end: span 1;


		
		grid-column-end: span 1;
		grid-row-end: span 1;
		
		
		


		
		justify-content: flex-start;
		
		
		
		
			
		
		
		
		
		
		
		
				
		
	
		
	
		

		
			
		
		
		
	
	}
	

	.stacks_in_14261-indv-item {
		
	}
}

@media (min-width: 62em) {
	/* Desktop */
	

	.stacks_in_14261-indv-item {
		
	}
}











.stacks_in_14261-clickable-item {
	cursor: pointer;
}



.stacks_in_14269 img{width:100%;max-width:250px}




/* Mobile */
.stacks_in_14279-indv-item {
	display: flex;
	flex-flow: column;

	
	grid-column-end: span 1;
	grid-row-end: span 1;
	
	
	


	
	justify-content: flex-start;
	
	
		
	
		
	
	
	
	
	
	
	

	
	
	
	
	
		
	

	
	
	
	border-width: 0px;
	

	
	border-color: rgba(94, 95, 95, 1.00);
	

	border-style: solid;
	
	
}


@media (min-width: 48em) {
	/* Tablet */
	
	.stacks_in_14279-indv-item {
		display: flex;
		flex-flow: column;
		grid-column-end: span 1;
		grid-row-end: span 1;


		
		grid-column-end: span 1;
		grid-row-end: span 1;
		
		
		


		
		justify-content: flex-start;
		
		
		
		
			
		
		
		
		
		
		
		
				
		
	
		
	
		

		
			
		
		
		
	
	}
	

	.stacks_in_14279-indv-item {
		
	}
}

@media (min-width: 62em) {
	/* Desktop */
	

	.stacks_in_14279-indv-item {
		
	}
}











.stacks_in_14279-clickable-item {
	cursor: pointer;
}



.stacks_in_14287 img{width:100%;max-width:250px}




/* CSS GRID */
#stacks_out_14297,
#stacks_in_14297 {
	overflow: visible;
}


#stacks_in_14297 .flux-container {
	overflow: visible;
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	gap: 30px 30px;
	align-items: stretch;

	/* border: 1px solid red; */
	
	margin-bottom: 21px;
	
}

#stacks_in_14297 .flux-item > .stacks_out {
	margin: 0;
	padding: 0;
}


/* These elements will be styled _ONLY_ at their given breakpoints */
/* and will not bleed from one to the other. */

/* Mobile */
@media (max-width: 47.9375em) {
}

/* Tablet */
@media (min-width: 48em) and (max-width: 61.9em) {
}

/* Desktop */
@media (min-width: 62em) {
}



/* ----------------------------------- */

/* These elements will be styled at their given breakpoints */
/* but can bleed from themselves over to wider breakpoints as well. */
/* Mobile */

#stacks_in_14297 .flux-container {
	

	row-gap: 30px;
	column-gap: 30px;
	
	
	
	
	
	
	grid-template-columns: repeat(1, 1fr);
	
	
	
	
	
	grid-auto-rows: auto;
	
	
	
	
	
	
	
	padding: 0px;
	

	
	border-width: 0px;
	

	border-color: rgba(204, 204, 204, 1.00);
	border-style: solid;
	
	
	border-radius: 0px;
	


	
	
	
	
	
	
	

	
	box-shadow: none;
	

}


/* Tablet */
@media (min-width: 48em) {
	
	#stacks_in_14297 .flux-container {
		

		row-gap: 30px;
		column-gap: 30px;
		
		
		
		
		grid-template-columns: repeat(3, 1fr);
		
		
		
		grid-auto-rows: auto;
		
		
		
		
		
			
		

		
			
		
		
		
			
		

		
		
		
		
		
		
		
		
		

		
		box-shadow: none;
		

	}
	
}

@media (min-width: 62em) {
	/* Desktop */
	
}

/* #stacks_in_14297 .flux-container {
	overflow: hidden;
} */







/* Mobile */
.stacks_in_14298-indv-item {
	display: flex;
	flex-flow: column;

	
	grid-column-end: span 1;
	grid-row-end: span 1;
	
	
	


	
	justify-content: flex-start;
	
	
		
	
		
	
	
	
	
	
	
	

	
	
	
	
	
		
	

	
	
	
	border-width: 0px;
	

	
	border-color: rgba(94, 95, 95, 1.00);
	

	border-style: solid;
	
	
}


@media (min-width: 48em) {
	/* Tablet */
	
	.stacks_in_14298-indv-item {
		display: flex;
		flex-flow: column;
		grid-column-end: span 1;
		grid-row-end: span 1;


		
		grid-column-end: span 1;
		grid-row-end: span 1;
		
		
		


		
		justify-content: flex-start;
		
		
		
		
			
		
		
		
		
		
		
		
				
		
	
		
	
		

		
			
		
		
		
	
	}
	

	.stacks_in_14298-indv-item {
		
	}
}

@media (min-width: 62em) {
	/* Desktop */
	

	.stacks_in_14298-indv-item {
		
	}
}











.stacks_in_14298-clickable-item {
	cursor: pointer;
}



.stacks_in_14307 img{width:100%;max-width:250px}




/* Mobile */
.stacks_in_14317-indv-item {
	display: flex;
	flex-flow: column;

	
	grid-column-end: span 1;
	grid-row-end: span 1;
	
	
	


	
	justify-content: flex-start;
	
	
		
	
		
	
	
	
	
	
	
	

	
	
	
	
	
		
	

	
	
	
	border-width: 0px;
	

	
	border-color: rgba(94, 95, 95, 1.00);
	

	border-style: solid;
	
	
}


@media (min-width: 48em) {
	/* Tablet */
	
	.stacks_in_14317-indv-item {
		display: flex;
		flex-flow: column;
		grid-column-end: span 1;
		grid-row-end: span 1;


		
		grid-column-end: span 1;
		grid-row-end: span 1;
		
		
		


		
		justify-content: flex-start;
		
		
		
		
			
		
		
		
		
		
		
		
				
		
	
		
	
		

		
			
		
		
		
	
	}
	

	.stacks_in_14317-indv-item {
		
	}
}

@media (min-width: 62em) {
	/* Desktop */
	

	.stacks_in_14317-indv-item {
		
	}
}











.stacks_in_14317-clickable-item {
	cursor: pointer;
}



.stacks_in_14325 img{width:100%;max-width:250px}




/* Mobile */
.stacks_in_14335-indv-item {
	display: flex;
	flex-flow: column;

	
	grid-column-end: span 1;
	grid-row-end: span 1;
	
	
	


	
	justify-content: flex-start;
	
	
		
	
		
	
	
	
	
	
	
	

	
	
	
	
	
		
	

	
	
	
	border-width: 0px;
	

	
	border-color: rgba(94, 95, 95, 1.00);
	

	border-style: solid;
	
	
}


@media (min-width: 48em) {
	/* Tablet */
	
	.stacks_in_14335-indv-item {
		display: flex;
		flex-flow: column;
		grid-column-end: span 1;
		grid-row-end: span 1;


		
		grid-column-end: span 1;
		grid-row-end: span 1;
		
		
		


		
		justify-content: flex-start;
		
		
		
		
			
		
		
		
		
		
		
		
				
		
	
		
	
		

		
			
		
		
		
	
	}
	

	.stacks_in_14335-indv-item {
		
	}
}

@media (min-width: 62em) {
	/* Desktop */
	

	.stacks_in_14335-indv-item {
		
	}
}











.stacks_in_14335-clickable-item {
	cursor: pointer;
}



.stacks_in_14343 img{width:100%;max-width:250px}

/* custom stuff */


#corner-stacks_in_10552_2 .corner-modal
{
  z-index: 9999;
  max-width:400px;
  max-height:500px;
}



#corner-stacks_in_10552_2 .corner-content {
	border:1px solid rgba(0, 0, 0, 0.40);
	border-radius:2px;
  background-color:rgba(255, 255, 255, 1.00);
  color: rgba(102, 102, 102, 1.00);
  overflow:auto;
}

#corner-stacks_in_10552_2 .corner-button
{
	font-family: Helvetica;
	font-size: 14px;
  font-weight: 700;
	border:2px solid rgba(255, 255, 255, 0.40);
	border-radius:22px;
  background-color:rgba(28, 138, 32, 1.00);
  color: rgba(255, 255, 255, 1.00);
  padding-top: 10px;
  padding-right: 20px;
  padding-bottom: 10px;
  padding-left: 20px;
  margin-top: 20px;
  margin-right: 20px;
  margin-bottom: 20px;
  margin-left: 20px;
  z-index: 9998;
}


#corner-stacks_in_10552_2 .corner-button.corner-tl,
#corner-stacks_in_10552_2 .corner-button.corner-tr {
  margin-top: -60px;
}

#corner-stacks_in_10552_2 .corner-button.corner-bl,
#corner-stacks_in_10552_2 .corner-button.corner-br {
  margin-bottom: -60px;
}


#corner-stacks_in_10552_2 .corner-content {
	padding-top: 10px;
  padding-right: 20px;
  padding-bottom: 10px;
  padding-left: 20px;
  margin-top: 10px;
  margin-right: 20px;
  margin-bottom: 20px;
  margin-left: 20px;
}

#corner-stacks_in_10552_2 .corner-button.corner-tl.corner-show,
#corner-stacks_in_10552_2 .corner-button.corner-tr.corner-show {
  margin-top: 20px;
}

#corner-stacks_in_10552_2 .corner-button.corner-bl.corner-show,
#corner-stacks_in_10552_2 .corner-button.corner-br.corner-show {
  margin-bottom: 20px;
}


/* hide the text in button on smaller screens */
@media only screen and (max-width: 770px)  
{ 
  #corner-stacks_in_10552_2 .corner-modal
  {
    width:100%;
    max-width:100%;
    max-height:100%;
    margin:0;
  }

  #corner-stacks_in_10552_2 .corner-content
  {
    margin:4px;
  }

  #corner-stacks_in_10552_2 span.corner-label { 
    display:none; 
  }
}




.margin-contact{margin:5rem ;}  
label{--header-color:rgba(255, 255, 255, 1.00);--subheader-color:rgba(138, 138, 138, 1.00);--small-color:rgba(202, 202, 202, 1.00);--text-color:rgba(255, 255, 255, 1.00);--link-color:rgba(0, 140, 186, 1.00);--link-color-hover:rgba(0, 102, 136, 1.00);--link-decoration:none;--link-decoration-hover:none}
.bg-grey{background-color:rgba(204, 204, 204, 1.00) ;background-position:center center ;background-origin:padding-box ;background-blend-mode:normal ;background-attachment:scroll   ;background-clip:border-box ;}@media (hover:none) and (pointer:coarse){.bg-grey{background-attachment:scroll!important}}
.white-font{color:rgba(255, 255, 255, 1.00) ;}


.card-divider{background-color:var(--white-color) ;background-color:rgba(255, 255, 255, 1.00) ;}
.card{box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.20);}
.radius_portrait{border-radius:500px ;}
.margin-top-card{margin-top:3rem ;}  
.card-divider{background-color:var(--white-color) ;background-color:rgba(255, 255, 255, 1.00) ;}
.card-divider{--header-color:rgba(76, 76, 76, 1.00);--subheader-color:rgba(138, 138, 138, 1.00);--small-color:rgba(202, 202, 202, 1.00);--text-color:rgba(102, 102, 102, 1.00);--link-color:rgba(0, 140, 186, 1.00);--link-color-hover:rgba(0, 102, 136, 1.00);--link-decoration:none;--link-decoration-hover:none}
.card{box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.20);}
.radius_portrait{border-radius:500px ;}
.margin-top-card{margin-top:3rem ;}  




/* CSS GRID */
#stacks_out_9290,
#stacks_in_9290 {
	overflow: visible;
}


#stacks_in_9290 .flux-container {
	overflow: visible;
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	gap: 30px 30px;
	align-items: stretch;

	/* border: 1px solid red; */
	
	margin-bottom: 21px;
	
}

#stacks_in_9290 .flux-item > .stacks_out {
	margin: 0;
	padding: 0;
}


/* These elements will be styled _ONLY_ at their given breakpoints */
/* and will not bleed from one to the other. */

/* Mobile */
@media (max-width: 47.9375em) {
}

/* Tablet */
@media (min-width: 48em) and (max-width: 61.9em) {
}

/* Desktop */
@media (min-width: 62em) {
}



/* ----------------------------------- */

/* These elements will be styled at their given breakpoints */
/* but can bleed from themselves over to wider breakpoints as well. */
/* Mobile */

#stacks_in_9290 .flux-container {
	

	row-gap: 30px;
	column-gap: 30px;
	
	
	
	
	
	
	grid-template-columns: repeat(1, 1fr);
	
	
	
	
	
	grid-auto-rows: auto;
	
	
	
	
	
	
	
	padding: 0px;
	

	
	border-width: 0px;
	

	border-color: rgba(204, 204, 204, 1.00);
	border-style: solid;
	
	
	border-radius: 0px;
	


	
	
	
	
	
	
	

	
	box-shadow: none;
	

}


/* Tablet */
@media (min-width: 48em) {
	
	#stacks_in_9290 .flux-container {
		

		row-gap: 30px;
		column-gap: 30px;
		
		
		
		
		grid-template-columns: repeat(3, 1fr);
		
		
		
		grid-auto-rows: auto;
		
		
		
		
		
			
		

		
			
		
		
		
			
		

		
		
		
		
		
		
		
		
		

		
		box-shadow: none;
		

	}
	
}

@media (min-width: 62em) {
	/* Desktop */
	
}

/* #stacks_in_9290 .flux-container {
	overflow: hidden;
} */







/* Mobile */
.stacks_in_9292-indv-item {
	display: flex;
	flex-flow: column;

	
	grid-column-end: span 1;
	grid-row-end: span 1;
	
	
	


	
	justify-content: flex-start;
	
	
		
	
		
	
	
	
	
	
	
	

	
	
	
	
	
		
	

	
	
	
	border-width: 0px;
	

	
	border-color: rgba(94, 95, 95, 1.00);
	

	border-style: solid;
	
	
}


@media (min-width: 48em) {
	/* Tablet */
	
	.stacks_in_9292-indv-item {
		display: flex;
		flex-flow: column;
		grid-column-end: span 1;
		grid-row-end: span 1;


		
		grid-column-end: span 1;
		grid-row-end: span 1;
		
		
		


		
		justify-content: flex-start;
		
		
		
		
			
		
		
		
		
		
		
		
				
		
	
		
	
		

		
			
		
		
		
	
	}
	

	.stacks_in_9292-indv-item {
		
	}
}

@media (min-width: 62em) {
	/* Desktop */
	

	.stacks_in_9292-indv-item {
		
	}
}











.stacks_in_9292-clickable-item {
	cursor: pointer;
}



.stacks_in_9301 img{width:100%;max-width:250px}




/* Mobile */
.stacks_in_9311-indv-item {
	display: flex;
	flex-flow: column;

	
	grid-column-end: span 1;
	grid-row-end: span 1;
	
	
	


	
	justify-content: flex-start;
	
	
		
	
		
	
	
	
	
	
	
	

	
	
	
	
	
		
	

	
	
	
	border-width: 0px;
	

	
	border-color: rgba(94, 95, 95, 1.00);
	

	border-style: solid;
	
	
}


@media (min-width: 48em) {
	/* Tablet */
	
	.stacks_in_9311-indv-item {
		display: flex;
		flex-flow: column;
		grid-column-end: span 1;
		grid-row-end: span 1;


		
		grid-column-end: span 1;
		grid-row-end: span 1;
		
		
		


		
		justify-content: flex-start;
		
		
		
		
			
		
		
		
		
		
		
		
				
		
	
		
	
		

		
			
		
		
		
	
	}
	

	.stacks_in_9311-indv-item {
		
	}
}

@media (min-width: 62em) {
	/* Desktop */
	

	.stacks_in_9311-indv-item {
		
	}
}











.stacks_in_9311-clickable-item {
	cursor: pointer;
}



.stacks_in_9319 img{width:100%;max-width:250px}




/* Mobile */
.stacks_in_9329-indv-item {
	display: flex;
	flex-flow: column;

	
	grid-column-end: span 1;
	grid-row-end: span 1;
	
	
	


	
	justify-content: flex-start;
	
	
		
	
		
	
	
	
	
	
	
	

	
	
	
	
	
		
	

	
	
	
	border-width: 0px;
	

	
	border-color: rgba(94, 95, 95, 1.00);
	

	border-style: solid;
	
	
}


@media (min-width: 48em) {
	/* Tablet */
	
	.stacks_in_9329-indv-item {
		display: flex;
		flex-flow: column;
		grid-column-end: span 1;
		grid-row-end: span 1;


		
		grid-column-end: span 1;
		grid-row-end: span 1;
		
		
		


		
		justify-content: flex-start;
		
		
		
		
			
		
		
		
		
		
		
		
				
		
	
		
	
		

		
			
		
		
		
	
	}
	

	.stacks_in_9329-indv-item {
		
	}
}

@media (min-width: 62em) {
	/* Desktop */
	

	.stacks_in_9329-indv-item {
		
	}
}











.stacks_in_9329-clickable-item {
	cursor: pointer;
}



.stacks_in_9337 img{width:100%;max-width:250px}




/* CSS GRID */
#stacks_out_9347,
#stacks_in_9347 {
	overflow: visible;
}


#stacks_in_9347 .flux-container {
	overflow: visible;
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	gap: 30px 30px;
	align-items: stretch;

	/* border: 1px solid red; */
	
	margin-bottom: 21px;
	
}

#stacks_in_9347 .flux-item > .stacks_out {
	margin: 0;
	padding: 0;
}


/* These elements will be styled _ONLY_ at their given breakpoints */
/* and will not bleed from one to the other. */

/* Mobile */
@media (max-width: 47.9375em) {
}

/* Tablet */
@media (min-width: 48em) and (max-width: 61.9em) {
}

/* Desktop */
@media (min-width: 62em) {
}



/* ----------------------------------- */

/* These elements will be styled at their given breakpoints */
/* but can bleed from themselves over to wider breakpoints as well. */
/* Mobile */

#stacks_in_9347 .flux-container {
	

	row-gap: 30px;
	column-gap: 30px;
	
	
	
	
	
	
	grid-template-columns: repeat(1, 1fr);
	
	
	
	
	
	grid-auto-rows: auto;
	
	
	
	
	
	
	
	padding: 0px;
	

	
	border-width: 0px;
	

	border-color: rgba(204, 204, 204, 1.00);
	border-style: solid;
	
	
	border-radius: 0px;
	


	
	
	
	
	
	
	

	
	box-shadow: none;
	

}


/* Tablet */
@media (min-width: 48em) {
	
	#stacks_in_9347 .flux-container {
		

		row-gap: 30px;
		column-gap: 30px;
		
		
		
		
		grid-template-columns: repeat(3, 1fr);
		
		
		
		grid-auto-rows: auto;
		
		
		
		
		
			
		

		
			
		
		
		
			
		

		
		
		
		
		
		
		
		
		

		
		box-shadow: none;
		

	}
	
}

@media (min-width: 62em) {
	/* Desktop */
	
}

/* #stacks_in_9347 .flux-container {
	overflow: hidden;
} */







/* Mobile */
.stacks_in_9348-indv-item {
	display: flex;
	flex-flow: column;

	
	grid-column-end: span 1;
	grid-row-end: span 1;
	
	
	


	
	justify-content: flex-start;
	
	
		
	
		
	
	
	
	
	
	
	

	
	
	
	
	
		
	

	
	
	
	border-width: 0px;
	

	
	border-color: rgba(94, 95, 95, 1.00);
	

	border-style: solid;
	
	
}


@media (min-width: 48em) {
	/* Tablet */
	
	.stacks_in_9348-indv-item {
		display: flex;
		flex-flow: column;
		grid-column-end: span 1;
		grid-row-end: span 1;


		
		grid-column-end: span 1;
		grid-row-end: span 1;
		
		
		


		
		justify-content: flex-start;
		
		
		
		
			
		
		
		
		
		
		
		
				
		
	
		
	
		

		
			
		
		
		
	
	}
	

	.stacks_in_9348-indv-item {
		
	}
}

@media (min-width: 62em) {
	/* Desktop */
	

	.stacks_in_9348-indv-item {
		
	}
}











.stacks_in_9348-clickable-item {
	cursor: pointer;
}



.stacks_in_9357 img{width:100%;max-width:250px}




/* Mobile */
.stacks_in_9367-indv-item {
	display: flex;
	flex-flow: column;

	
	grid-column-end: span 1;
	grid-row-end: span 1;
	
	
	


	
	justify-content: flex-start;
	
	
		
	
		
	
	
	
	
	
	
	

	
	
	
	
	
		
	

	
	
	
	border-width: 0px;
	

	
	border-color: rgba(94, 95, 95, 1.00);
	

	border-style: solid;
	
	
}


@media (min-width: 48em) {
	/* Tablet */
	
	.stacks_in_9367-indv-item {
		display: flex;
		flex-flow: column;
		grid-column-end: span 1;
		grid-row-end: span 1;


		
		grid-column-end: span 1;
		grid-row-end: span 1;
		
		
		


		
		justify-content: flex-start;
		
		
		
		
			
		
		
		
		
		
		
		
				
		
	
		
	
		

		
			
		
		
		
	
	}
	

	.stacks_in_9367-indv-item {
		
	}
}

@media (min-width: 62em) {
	/* Desktop */
	

	.stacks_in_9367-indv-item {
		
	}
}











.stacks_in_9367-clickable-item {
	cursor: pointer;
}



.stacks_in_9375 img{width:100%;max-width:250px}




/* Mobile */
.stacks_in_9383-indv-item {
	display: flex;
	flex-flow: column;

	
	grid-column-end: span 1;
	grid-row-end: span 1;
	
	
	


	
	justify-content: flex-start;
	
	
		
	
		
	
	
	
	
	
	
	

	
	
	
	
	
		
	

	
	
	
	border-width: 0px;
	

	
	border-color: rgba(94, 95, 95, 1.00);
	

	border-style: solid;
	
	
}


@media (min-width: 48em) {
	/* Tablet */
	
	.stacks_in_9383-indv-item {
		display: flex;
		flex-flow: column;
		grid-column-end: span 1;
		grid-row-end: span 1;


		
		grid-column-end: span 1;
		grid-row-end: span 1;
		
		
		


		
		justify-content: flex-start;
		
		
		
		
			
		
		
		
		
		
		
		
				
		
	
		
	
		

		
			
		
		
		
	
	}
	

	.stacks_in_9383-indv-item {
		
	}
}

@media (min-width: 62em) {
	/* Desktop */
	

	.stacks_in_9383-indv-item {
		
	}
}











.stacks_in_9383-clickable-item {
	cursor: pointer;
}



.stacks_in_9391 img{width:100%;max-width:250px}




/* CSS GRID */
#stacks_out_9401,
#stacks_in_9401 {
	overflow: visible;
}


#stacks_in_9401 .flux-container {
	overflow: visible;
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	gap: 30px 30px;
	align-items: stretch;

	/* border: 1px solid red; */
	
	margin-bottom: 21px;
	
}

#stacks_in_9401 .flux-item > .stacks_out {
	margin: 0;
	padding: 0;
}


/* These elements will be styled _ONLY_ at their given breakpoints */
/* and will not bleed from one to the other. */

/* Mobile */
@media (max-width: 47.9375em) {
}

/* Tablet */
@media (min-width: 48em) and (max-width: 61.9em) {
}

/* Desktop */
@media (min-width: 62em) {
}



/* ----------------------------------- */

/* These elements will be styled at their given breakpoints */
/* but can bleed from themselves over to wider breakpoints as well. */
/* Mobile */

#stacks_in_9401 .flux-container {
	

	row-gap: 30px;
	column-gap: 30px;
	
	
	
	
	
	
	grid-template-columns: repeat(1, 1fr);
	
	
	
	
	
	grid-auto-rows: auto;
	
	
	
	
	
	
	
	padding: 0px;
	

	
	border-width: 0px;
	

	border-color: rgba(204, 204, 204, 1.00);
	border-style: solid;
	
	
	border-radius: 0px;
	


	
	
	
	
	
	
	

	
	box-shadow: none;
	

}


/* Tablet */
@media (min-width: 48em) {
	
	#stacks_in_9401 .flux-container {
		

		row-gap: 30px;
		column-gap: 30px;
		
		
		
		
		grid-template-columns: repeat(3, 1fr);
		
		
		
		grid-auto-rows: auto;
		
		
		
		
		
			
		

		
			
		
		
		
			
		

		
		
		
		
		
		
		
		
		

		
		box-shadow: none;
		

	}
	
}

@media (min-width: 62em) {
	/* Desktop */
	
}

/* #stacks_in_9401 .flux-container {
	overflow: hidden;
} */







/* Mobile */
.stacks_in_9402-indv-item {
	display: flex;
	flex-flow: column;

	
	grid-column-end: span 1;
	grid-row-end: span 1;
	
	
	


	
	justify-content: flex-start;
	
	
		
	
		
	
	
	
	
	
	
	

	
	
	
	
	
		
	

	
	
	
	border-width: 0px;
	

	
	border-color: rgba(94, 95, 95, 1.00);
	

	border-style: solid;
	
	
}


@media (min-width: 48em) {
	/* Tablet */
	
	.stacks_in_9402-indv-item {
		display: flex;
		flex-flow: column;
		grid-column-end: span 1;
		grid-row-end: span 1;


		
		grid-column-end: span 1;
		grid-row-end: span 1;
		
		
		


		
		justify-content: flex-start;
		
		
		
		
			
		
		
		
		
		
		
		
				
		
	
		
	
		

		
			
		
		
		
	
	}
	

	.stacks_in_9402-indv-item {
		
	}
}

@media (min-width: 62em) {
	/* Desktop */
	

	.stacks_in_9402-indv-item {
		
	}
}











.stacks_in_9402-clickable-item {
	cursor: pointer;
}



.stacks_in_9411 img{width:100%;max-width:250px}




/* Mobile */
.stacks_in_9421-indv-item {
	display: flex;
	flex-flow: column;

	
	grid-column-end: span 1;
	grid-row-end: span 1;
	
	
	


	
	justify-content: flex-start;
	
	
		
	
		
	
	
	
	
	
	
	

	
	
	
	
	
		
	

	
	
	
	border-width: 0px;
	

	
	border-color: rgba(94, 95, 95, 1.00);
	

	border-style: solid;
	
	
}


@media (min-width: 48em) {
	/* Tablet */
	
	.stacks_in_9421-indv-item {
		display: flex;
		flex-flow: column;
		grid-column-end: span 1;
		grid-row-end: span 1;


		
		grid-column-end: span 1;
		grid-row-end: span 1;
		
		
		


		
		justify-content: flex-start;
		
		
		
		
			
		
		
		
		
		
		
		
				
		
	
		
	
		

		
			
		
		
		
	
	}
	

	.stacks_in_9421-indv-item {
		
	}
}

@media (min-width: 62em) {
	/* Desktop */
	

	.stacks_in_9421-indv-item {
		
	}
}











.stacks_in_9421-clickable-item {
	cursor: pointer;
}



.stacks_in_9429 img{width:100%;max-width:250px}




/* Mobile */
.stacks_in_9437-indv-item {
	display: flex;
	flex-flow: column;

	
	grid-column-end: span 1;
	grid-row-end: span 1;
	
	
	


	
	justify-content: flex-start;
	
	
		
	
		
	
	
	
	
	
	
	

	
	
	
	
	
		
	

	
	
	
	border-width: 0px;
	

	
	border-color: rgba(94, 95, 95, 1.00);
	

	border-style: solid;
	
	
}


@media (min-width: 48em) {
	/* Tablet */
	
	.stacks_in_9437-indv-item {
		display: flex;
		flex-flow: column;
		grid-column-end: span 1;
		grid-row-end: span 1;


		
		grid-column-end: span 1;
		grid-row-end: span 1;
		
		
		


		
		justify-content: flex-start;
		
		
		
		
			
		
		
		
		
		
		
		
				
		
	
		
	
		

		
			
		
		
		
	
	}
	

	.stacks_in_9437-indv-item {
		
	}
}

@media (min-width: 62em) {
	/* Desktop */
	

	.stacks_in_9437-indv-item {
		
	}
}











.stacks_in_9437-clickable-item {
	cursor: pointer;
}



.stacks_in_11035 img{width:100%;max-width:250px}




/* CSS GRID */
#stacks_out_9439,
#stacks_in_9439 {
	overflow: visible;
}


#stacks_in_9439 .flux-container {
	overflow: visible;
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	gap: 30px 30px;
	align-items: stretch;

	/* border: 1px solid red; */
	
	margin-bottom: 21px;
	
}

#stacks_in_9439 .flux-item > .stacks_out {
	margin: 0;
	padding: 0;
}


/* These elements will be styled _ONLY_ at their given breakpoints */
/* and will not bleed from one to the other. */

/* Mobile */
@media (max-width: 47.9375em) {
}

/* Tablet */
@media (min-width: 48em) and (max-width: 61.9em) {
}

/* Desktop */
@media (min-width: 62em) {
}



/* ----------------------------------- */

/* These elements will be styled at their given breakpoints */
/* but can bleed from themselves over to wider breakpoints as well. */
/* Mobile */

#stacks_in_9439 .flux-container {
	

	row-gap: 30px;
	column-gap: 30px;
	
	
	
	
	
	
	grid-template-columns: repeat(1, 1fr);
	
	
	
	
	
	grid-auto-rows: auto;
	
	
	
	
	
	
	
	padding: 0px;
	

	
	border-width: 0px;
	

	border-color: rgba(204, 204, 204, 1.00);
	border-style: solid;
	
	
	border-radius: 0px;
	


	
	
	
	
	
	
	

	
	box-shadow: none;
	

}


/* Tablet */
@media (min-width: 48em) {
	
	#stacks_in_9439 .flux-container {
		

		row-gap: 30px;
		column-gap: 30px;
		
		
		
		
		grid-template-columns: repeat(3, 1fr);
		
		
		
		grid-auto-rows: auto;
		
		
		
		
		
			
		

		
			
		
		
		
			
		

		
		
		
		
		
		
		
		
		

		
		box-shadow: none;
		

	}
	
}

@media (min-width: 62em) {
	/* Desktop */
	
}

/* #stacks_in_9439 .flux-container {
	overflow: hidden;
} */







/* Mobile */
.stacks_in_9440-indv-item {
	display: flex;
	flex-flow: column;

	
	grid-column-end: span 1;
	grid-row-end: span 1;
	
	
	


	
	justify-content: flex-start;
	
	
		
	
		
	
	
	
	
	
	
	

	
	
	
	
	
		
	

	
	
	
	border-width: 0px;
	

	
	border-color: rgba(94, 95, 95, 1.00);
	

	border-style: solid;
	
	
}


@media (min-width: 48em) {
	/* Tablet */
	
	.stacks_in_9440-indv-item {
		display: flex;
		flex-flow: column;
		grid-column-end: span 1;
		grid-row-end: span 1;


		
		grid-column-end: span 1;
		grid-row-end: span 1;
		
		
		


		
		justify-content: flex-start;
		
		
		
		
			
		
		
		
		
		
		
		
				
		
	
		
	
		

		
			
		
		
		
	
	}
	

	.stacks_in_9440-indv-item {
		
	}
}

@media (min-width: 62em) {
	/* Desktop */
	

	.stacks_in_9440-indv-item {
		
	}
}











.stacks_in_9440-clickable-item {
	cursor: pointer;
}



.stacks_in_9449 img{width:100%;max-width:250px}




/* Mobile */
.stacks_in_9459-indv-item {
	display: flex;
	flex-flow: column;

	
	grid-column-end: span 1;
	grid-row-end: span 1;
	
	
	


	
	justify-content: flex-start;
	
	
		
	
		
	
	
	
	
	
	
	

	
	
	
	
	
		
	

	
	
	
	border-width: 0px;
	

	
	border-color: rgba(94, 95, 95, 1.00);
	

	border-style: solid;
	
	
}


@media (min-width: 48em) {
	/* Tablet */
	
	.stacks_in_9459-indv-item {
		display: flex;
		flex-flow: column;
		grid-column-end: span 1;
		grid-row-end: span 1;


		
		grid-column-end: span 1;
		grid-row-end: span 1;
		
		
		


		
		justify-content: flex-start;
		
		
		
		
			
		
		
		
		
		
		
		
				
		
	
		
	
		

		
			
		
		
		
	
	}
	

	.stacks_in_9459-indv-item {
		
	}
}

@media (min-width: 62em) {
	/* Desktop */
	

	.stacks_in_9459-indv-item {
		
	}
}











.stacks_in_9459-clickable-item {
	cursor: pointer;
}



.stacks_in_9467 img{width:100%;max-width:250px}




/* Mobile */
.stacks_in_9477-indv-item {
	display: flex;
	flex-flow: column;

	
	grid-column-end: span 1;
	grid-row-end: span 1;
	
	
	


	
	justify-content: flex-start;
	
	
		
	
		
	
	
	
	
	
	
	

	
	
	
	
	
		
	

	
	
	
	border-width: 0px;
	

	
	border-color: rgba(94, 95, 95, 1.00);
	

	border-style: solid;
	
	
}


@media (min-width: 48em) {
	/* Tablet */
	
	.stacks_in_9477-indv-item {
		display: flex;
		flex-flow: column;
		grid-column-end: span 1;
		grid-row-end: span 1;


		
		grid-column-end: span 1;
		grid-row-end: span 1;
		
		
		


		
		justify-content: flex-start;
		
		
		
		
			
		
		
		
		
		
		
		
				
		
	
		
	
		

		
			
		
		
		
	
	}
	

	.stacks_in_9477-indv-item {
		
	}
}

@media (min-width: 62em) {
	/* Desktop */
	

	.stacks_in_9477-indv-item {
		
	}
}











.stacks_in_9477-clickable-item {
	cursor: pointer;
}



.stacks_in_9485 img{width:100%;max-width:250px}




/* CSS GRID */
#stacks_out_9493,
#stacks_in_9493 {
	overflow: visible;
}


#stacks_in_9493 .flux-container {
	overflow: visible;
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	gap: 30px 30px;
	align-items: stretch;

	/* border: 1px solid red; */
	
	margin-bottom: 21px;
	
}

#stacks_in_9493 .flux-item > .stacks_out {
	margin: 0;
	padding: 0;
}


/* These elements will be styled _ONLY_ at their given breakpoints */
/* and will not bleed from one to the other. */

/* Mobile */
@media (max-width: 47.9375em) {
}

/* Tablet */
@media (min-width: 48em) and (max-width: 61.9em) {
}

/* Desktop */
@media (min-width: 62em) {
}



/* ----------------------------------- */

/* These elements will be styled at their given breakpoints */
/* but can bleed from themselves over to wider breakpoints as well. */
/* Mobile */

#stacks_in_9493 .flux-container {
	

	row-gap: 30px;
	column-gap: 30px;
	
	
	
	
	
	
	grid-template-columns: repeat(1, 1fr);
	
	
	
	
	
	grid-auto-rows: auto;
	
	
	
	
	
	
	
	padding: 0px;
	

	
	border-width: 0px;
	

	border-color: rgba(204, 204, 204, 1.00);
	border-style: solid;
	
	
	border-radius: 0px;
	


	
	
	
	
	
	
	

	
	box-shadow: none;
	

}


/* Tablet */
@media (min-width: 48em) {
	
	#stacks_in_9493 .flux-container {
		

		row-gap: 30px;
		column-gap: 30px;
		
		
		
		
		grid-template-columns: repeat(3, 1fr);
		
		
		
		grid-auto-rows: auto;
		
		
		
		
		
			
		

		
			
		
		
		
			
		

		
		
		
		
		
		
		
		
		

		
		box-shadow: none;
		

	}
	
}

@media (min-width: 62em) {
	/* Desktop */
	
}

/* #stacks_in_9493 .flux-container {
	overflow: hidden;
} */







/* Mobile */
.stacks_in_9494-indv-item {
	display: flex;
	flex-flow: column;

	
	grid-column-end: span 1;
	grid-row-end: span 1;
	
	
	


	
	justify-content: flex-start;
	
	
		
	
		
	
	
	
	
	
	
	

	
	
	
	
	
		
	

	
	
	
	border-width: 0px;
	

	
	border-color: rgba(94, 95, 95, 1.00);
	

	border-style: solid;
	
	
}


@media (min-width: 48em) {
	/* Tablet */
	
	.stacks_in_9494-indv-item {
		display: flex;
		flex-flow: column;
		grid-column-end: span 1;
		grid-row-end: span 1;


		
		grid-column-end: span 1;
		grid-row-end: span 1;
		
		
		


		
		justify-content: flex-start;
		
		
		
		
			
		
		
		
		
		
		
		
				
		
	
		
	
		

		
			
		
		
		
	
	}
	

	.stacks_in_9494-indv-item {
		
	}
}

@media (min-width: 62em) {
	/* Desktop */
	

	.stacks_in_9494-indv-item {
		
	}
}











.stacks_in_9494-clickable-item {
	cursor: pointer;
}



.stacks_in_9503 img{width:100%;max-width:250px}




/* Mobile */
.stacks_in_9513-indv-item {
	display: flex;
	flex-flow: column;

	
	grid-column-end: span 1;
	grid-row-end: span 1;
	
	
	


	
	justify-content: flex-start;
	
	
		
	
		
	
	
	
	
	
	
	

	
	
	
	
	
		
	

	
	
	
	border-width: 0px;
	

	
	border-color: rgba(94, 95, 95, 1.00);
	

	border-style: solid;
	
	
}


@media (min-width: 48em) {
	/* Tablet */
	
	.stacks_in_9513-indv-item {
		display: flex;
		flex-flow: column;
		grid-column-end: span 1;
		grid-row-end: span 1;


		
		grid-column-end: span 1;
		grid-row-end: span 1;
		
		
		


		
		justify-content: flex-start;
		
		
		
		
			
		
		
		
		
		
		
		
				
		
	
		
	
		

		
			
		
		
		
	
	}
	

	.stacks_in_9513-indv-item {
		
	}
}

@media (min-width: 62em) {
	/* Desktop */
	

	.stacks_in_9513-indv-item {
		
	}
}











.stacks_in_9513-clickable-item {
	cursor: pointer;
}



.stacks_in_9521 img{width:100%;max-width:250px}




/* Mobile */
.stacks_in_9531-indv-item {
	display: flex;
	flex-flow: column;

	
	grid-column-end: span 1;
	grid-row-end: span 1;
	
	
	


	
	justify-content: flex-start;
	
	
		
	
		
	
	
	
	
	
	
	

	
	
	
	
	
		
	

	
	
	
	border-width: 0px;
	

	
	border-color: rgba(94, 95, 95, 1.00);
	

	border-style: solid;
	
	
}


@media (min-width: 48em) {
	/* Tablet */
	
	.stacks_in_9531-indv-item {
		display: flex;
		flex-flow: column;
		grid-column-end: span 1;
		grid-row-end: span 1;


		
		grid-column-end: span 1;
		grid-row-end: span 1;
		
		
		


		
		justify-content: flex-start;
		
		
		
		
			
		
		
		
		
		
		
		
				
		
	
		
	
		

		
			
		
		
		
	
	}
	

	.stacks_in_9531-indv-item {
		
	}
}

@media (min-width: 62em) {
	/* Desktop */
	

	.stacks_in_9531-indv-item {
		
	}
}











.stacks_in_9531-clickable-item {
	cursor: pointer;
}



.stacks_in_9539 img{width:100%;max-width:250px}




/* CSS GRID */
#stacks_out_9549,
#stacks_in_9549 {
	overflow: visible;
}


#stacks_in_9549 .flux-container {
	overflow: visible;
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	gap: 30px 30px;
	align-items: stretch;

	/* border: 1px solid red; */
	
	margin-bottom: 21px;
	
}

#stacks_in_9549 .flux-item > .stacks_out {
	margin: 0;
	padding: 0;
}


/* These elements will be styled _ONLY_ at their given breakpoints */
/* and will not bleed from one to the other. */

/* Mobile */
@media (max-width: 47.9375em) {
}

/* Tablet */
@media (min-width: 48em) and (max-width: 61.9em) {
}

/* Desktop */
@media (min-width: 62em) {
}



/* ----------------------------------- */

/* These elements will be styled at their given breakpoints */
/* but can bleed from themselves over to wider breakpoints as well. */
/* Mobile */

#stacks_in_9549 .flux-container {
	

	row-gap: 30px;
	column-gap: 30px;
	
	
	
	
	
	
	grid-template-columns: repeat(1, 1fr);
	
	
	
	
	
	grid-auto-rows: auto;
	
	
	
	
	
	
	
	padding: 0px;
	

	
	border-width: 0px;
	

	border-color: rgba(204, 204, 204, 1.00);
	border-style: solid;
	
	
	border-radius: 0px;
	


	
	
	
	
	
	
	

	
	box-shadow: none;
	

}


/* Tablet */
@media (min-width: 48em) {
	
	#stacks_in_9549 .flux-container {
		

		row-gap: 30px;
		column-gap: 30px;
		
		
		
		
		grid-template-columns: repeat(3, 1fr);
		
		
		
		grid-auto-rows: auto;
		
		
		
		
		
			
		

		
			
		
		
		
			
		

		
		
		
		
		
		
		
		
		

		
		box-shadow: none;
		

	}
	
}

@media (min-width: 62em) {
	/* Desktop */
	
}

/* #stacks_in_9549 .flux-container {
	overflow: hidden;
} */







/* Mobile */
.stacks_in_9550-indv-item {
	display: flex;
	flex-flow: column;

	
	grid-column-end: span 1;
	grid-row-end: span 1;
	
	
	


	
	justify-content: flex-start;
	
	
		
	
		
	
	
	
	
	
	
	

	
	
	
	
	
		
	

	
	
	
	border-width: 0px;
	

	
	border-color: rgba(94, 95, 95, 1.00);
	

	border-style: solid;
	
	
}


@media (min-width: 48em) {
	/* Tablet */
	
	.stacks_in_9550-indv-item {
		display: flex;
		flex-flow: column;
		grid-column-end: span 1;
		grid-row-end: span 1;


		
		grid-column-end: span 1;
		grid-row-end: span 1;
		
		
		


		
		justify-content: flex-start;
		
		
		
		
			
		
		
		
		
		
		
		
				
		
	
		
	
		

		
			
		
		
		
	
	}
	

	.stacks_in_9550-indv-item {
		
	}
}

@media (min-width: 62em) {
	/* Desktop */
	

	.stacks_in_9550-indv-item {
		
	}
}











.stacks_in_9550-clickable-item {
	cursor: pointer;
}



.stacks_in_9559 img{width:100%;max-width:250px}




/* Mobile */
.stacks_in_9569-indv-item {
	display: flex;
	flex-flow: column;

	
	grid-column-end: span 1;
	grid-row-end: span 1;
	
	
	


	
	justify-content: flex-start;
	
	
		
	
		
	
	
	
	
	
	
	

	
	
	
	
	
		
	

	
	
	
	border-width: 0px;
	

	
	border-color: rgba(94, 95, 95, 1.00);
	

	border-style: solid;
	
	
}


@media (min-width: 48em) {
	/* Tablet */
	
	.stacks_in_9569-indv-item {
		display: flex;
		flex-flow: column;
		grid-column-end: span 1;
		grid-row-end: span 1;


		
		grid-column-end: span 1;
		grid-row-end: span 1;
		
		
		


		
		justify-content: flex-start;
		
		
		
		
			
		
		
		
		
		
		
		
				
		
	
		
	
		

		
			
		
		
		
	
	}
	

	.stacks_in_9569-indv-item {
		
	}
}

@media (min-width: 62em) {
	/* Desktop */
	

	.stacks_in_9569-indv-item {
		
	}
}











.stacks_in_9569-clickable-item {
	cursor: pointer;
}



.stacks_in_9577 img{width:100%;max-width:250px}




/* Mobile */
.stacks_in_9587-indv-item {
	display: flex;
	flex-flow: column;

	
	grid-column-end: span 1;
	grid-row-end: span 1;
	
	
	


	
	justify-content: flex-start;
	
	
		
	
		
	
	
	
	
	
	
	

	
	
	
	
	
		
	

	
	
	
	border-width: 0px;
	

	
	border-color: rgba(94, 95, 95, 1.00);
	

	border-style: solid;
	
	
}


@media (min-width: 48em) {
	/* Tablet */
	
	.stacks_in_9587-indv-item {
		display: flex;
		flex-flow: column;
		grid-column-end: span 1;
		grid-row-end: span 1;


		
		grid-column-end: span 1;
		grid-row-end: span 1;
		
		
		


		
		justify-content: flex-start;
		
		
		
		
			
		
		
		
		
		
		
		
				
		
	
		
	
		

		
			
		
		
		
	
	}
	

	.stacks_in_9587-indv-item {
		
	}
}

@media (min-width: 62em) {
	/* Desktop */
	

	.stacks_in_9587-indv-item {
		
	}
}











.stacks_in_9587-clickable-item {
	cursor: pointer;
}



.stacks_in_9595 img{width:100%;max-width:250px}




/* CSS GRID */
#stacks_out_9605,
#stacks_in_9605 {
	overflow: visible;
}


#stacks_in_9605 .flux-container {
	overflow: visible;
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	gap: 30px 30px;
	align-items: stretch;

	/* border: 1px solid red; */
	
	margin-bottom: 21px;
	
}

#stacks_in_9605 .flux-item > .stacks_out {
	margin: 0;
	padding: 0;
}


/* These elements will be styled _ONLY_ at their given breakpoints */
/* and will not bleed from one to the other. */

/* Mobile */
@media (max-width: 47.9375em) {
}

/* Tablet */
@media (min-width: 48em) and (max-width: 61.9em) {
}

/* Desktop */
@media (min-width: 62em) {
}



/* ----------------------------------- */

/* These elements will be styled at their given breakpoints */
/* but can bleed from themselves over to wider breakpoints as well. */
/* Mobile */

#stacks_in_9605 .flux-container {
	

	row-gap: 30px;
	column-gap: 30px;
	
	
	
	
	
	
	grid-template-columns: repeat(1, 1fr);
	
	
	
	
	
	grid-auto-rows: auto;
	
	
	
	
	
	
	
	padding: 0px;
	

	
	border-width: 0px;
	

	border-color: rgba(204, 204, 204, 1.00);
	border-style: solid;
	
	
	border-radius: 0px;
	


	
	
	
	
	
	
	

	
	box-shadow: none;
	

}


/* Tablet */
@media (min-width: 48em) {
	
	#stacks_in_9605 .flux-container {
		

		row-gap: 30px;
		column-gap: 30px;
		
		
		
		
		grid-template-columns: repeat(3, 1fr);
		
		
		
		grid-auto-rows: auto;
		
		
		
		
		
			
		

		
			
		
		
		
			
		

		
		
		
		
		
		
		
		
		

		
		box-shadow: none;
		

	}
	
}

@media (min-width: 62em) {
	/* Desktop */
	
}

/* #stacks_in_9605 .flux-container {
	overflow: hidden;
} */







/* Mobile */
.stacks_in_9606-indv-item {
	display: flex;
	flex-flow: column;

	
	grid-column-end: span 1;
	grid-row-end: span 1;
	
	
	


	
	justify-content: flex-start;
	
	
		
	
		
	
	
	
	
	
	
	

	
	
	
	
	
		
	

	
	
	
	border-width: 0px;
	

	
	border-color: rgba(94, 95, 95, 1.00);
	

	border-style: solid;
	
	
}


@media (min-width: 48em) {
	/* Tablet */
	
	.stacks_in_9606-indv-item {
		display: flex;
		flex-flow: column;
		grid-column-end: span 1;
		grid-row-end: span 1;


		
		grid-column-end: span 1;
		grid-row-end: span 1;
		
		
		


		
		justify-content: flex-start;
		
		
		
		
			
		
		
		
		
		
		
		
				
		
	
		
	
		

		
			
		
		
		
	
	}
	

	.stacks_in_9606-indv-item {
		
	}
}

@media (min-width: 62em) {
	/* Desktop */
	

	.stacks_in_9606-indv-item {
		
	}
}











.stacks_in_9606-clickable-item {
	cursor: pointer;
}



.stacks_in_9615 img{width:100%;max-width:250px}




/* Mobile */
.stacks_in_9625-indv-item {
	display: flex;
	flex-flow: column;

	
	grid-column-end: span 1;
	grid-row-end: span 1;
	
	
	


	
	justify-content: flex-start;
	
	
		
	
		
	
	
	
	
	
	
	

	
	
	
	
	
		
	

	
	
	
	border-width: 0px;
	

	
	border-color: rgba(94, 95, 95, 1.00);
	

	border-style: solid;
	
	
}


@media (min-width: 48em) {
	/* Tablet */
	
	.stacks_in_9625-indv-item {
		display: flex;
		flex-flow: column;
		grid-column-end: span 1;
		grid-row-end: span 1;


		
		grid-column-end: span 1;
		grid-row-end: span 1;
		
		
		


		
		justify-content: flex-start;
		
		
		
		
			
		
		
		
		
		
		
		
				
		
	
		
	
		

		
			
		
		
		
	
	}
	

	.stacks_in_9625-indv-item {
		
	}
}

@media (min-width: 62em) {
	/* Desktop */
	

	.stacks_in_9625-indv-item {
		
	}
}











.stacks_in_9625-clickable-item {
	cursor: pointer;
}



.stacks_in_9633 img{width:100%;max-width:250px}




/* Mobile */
.stacks_in_10093-indv-item {
	display: flex;
	flex-flow: column;

	
	grid-column-end: span 1;
	grid-row-end: span 1;
	
	
	


	
	justify-content: flex-start;
	
	
		
	
		
	
	
	
	
	
	
	

	
	
	
	
	
		
	

	
	
	
	border-width: 0px;
	

	
	border-color: rgba(94, 95, 95, 1.00);
	

	border-style: solid;
	
	
}


@media (min-width: 48em) {
	/* Tablet */
	
	.stacks_in_10093-indv-item {
		display: flex;
		flex-flow: column;
		grid-column-end: span 1;
		grid-row-end: span 1;


		
		grid-column-end: span 1;
		grid-row-end: span 1;
		
		
		


		
		justify-content: flex-start;
		
		
		
		
			
		
		
		
		
		
		
		
				
		
	
		
	
		

		
			
		
		
		
	
	}
	

	.stacks_in_10093-indv-item {
		
	}
}

@media (min-width: 62em) {
	/* Desktop */
	

	.stacks_in_10093-indv-item {
		
	}
}











.stacks_in_10093-clickable-item {
	cursor: pointer;
}



.stacks_in_10083 img{width:100%;max-width:250px}


.foot{background-color:rgba(204, 204, 204, 1.00) ;background-position:center center ;background-origin:padding-box ;background-blend-mode:normal ;background-attachment:scroll   ;background-clip:border-box ;}@media (hover:none) and (pointer:coarse){.foot{background-attachment:scroll!important}}
 .footermenu>.menu a, .menu.footermenu a{--menu-link-color:rgba(255, 255, 255, 1.00);--menu-link-color-hover:rgba(51, 51, 51, 1.00);--menu-bg-color:rgba(255, 255, 255, 0.00);--menu-caret-color:rgba(248, 246, 247, 1.00);--menu-border-accent:2px solid var(--menu-link-color)} .footermenu>.menu .menu-text, .menu.footermenu .menu-text{--menu-text-color:rgba(255, 255, 255, 1.00)} .footermenu>.menu>li>a, .menu.footermenu>li>a{padding-top:0.5rem;padding-bottom:0.5rem} .footermenu>.menu .submenu>li>a, .menu.footermenu .submenu>li>a{padding-top:0.75rem;padding-bottom:0.75rem} .footermenu>.menu li.active>a, .footermenu>.menu li.is-active>a, .footermenu>.menu a.is-active, .menu.footermenu li.active>a, .menu.footermenu li.is-active>a, .menu.footermenu a.is-active{--menu-bg-color:rgba(108, 108, 108, 1.00);--menu-link-color:rgba(254, 254, 254, 1.00);--menu-caret-color:rgba(255, 255, 255, 1.00);--menu-link-color-hover:rgba(254, 254, 254, 1.00)} .footermenu>.menu .submenu li.active>a, .footermenu>.menu .submenu li.is-active>a, .footermenu>.menu .submenu a.is-active, .menu.footermenu .submenu li.active>a, .menu.footermenu .submenu li.is-active>a, .menu.footermenu .submenu a.is-active{--menu-caret-color:rgba(255, 255, 255, 1.00)} .footermenu>.menu .submenu a, .menu.footermenu .submenu a{--menu-caret-color:rgba(97, 103, 173, 1.00)} .footermenu>.menu .submenu, .menu.footermenu .submenu{--submenu-bg-color:rgba(254, 254, 254, 1.00);--submenu-border:1px solid rgba(202, 202, 202, 1.00)} .footermenu>.menu .submenu a, .menu.footermenu .submenu a{--menu-bg-color:transparent;--menu-link-color:rgba(34, 34, 34, 1.00);--menu-link-color-hover:rgba(68, 68, 68, 1.00)} .footermenu>.menu .submenu .menu-text, .menu.footermenu .submenu .menu-text{--menu-text-color:rgba(68, 68, 68, 1.00)} .footermenu>.menu .submenu li.active>a, .footermenu>.menu .submenu li.is-active>a, .footermenu>.menu .submenu a.is-active, .menu.footermenu .submenu li.active>a, .menu.footermenu .submenu li.is-active>a, .menu.footermenu .submenu a.is-active{--menu-caret-color:rgba(255, 255, 255, 1.00);--menu-bg-color:rgba(97, 103, 173, 1.00);--menu-link-color:rgba(254, 254, 254, 1.00);--menu-link-color-hover:rgba(254, 254, 254, 1.00)}
.white-f{color:rgba(255, 255, 255, 1.00) !important;}
.margin-f{margin:1rem ;}  
            .footermenu{font-size:calc(12rem/16) ;}@media only screen and (min-width:40em) {            .footermenu{font-size:calc(12rem/16) ;line-height:1.50 }}@media only screen and (min-width:64em) {            .footermenu{font-size:calc(12rem/16) ;line-height:1.50 }}
.background-foot{background-color:rgba(76, 76, 76, 1.00) ;background-position:center center ;background-origin:padding-box ;background-blend-mode:normal ;background-attachment:scroll   ;background-clip:border-box ;}@media (hover:none) and (pointer:coarse){.background-foot{background-attachment:scroll!important}}
.background-foot{padding-top:1.5rem ;}  
.tierahs.stacks_in_8749_88,.tierahs-link.stacks_in_8749_88{color:rgba(255, 255, 255, 1.00);font-size:24px;width:24px}.tierahs.stacks_in_8749_88 svg,.tierahs-link.stacks_in_8749_88 svg{max-width:24px;max-height:24px}.tierahs.stacks_in_8749_88 svg *,.tierahs-link.stacks_in_8749_88 svg *{fill:rgba(255, 255, 255, 1.00)}
.tierahs.stacks_in_8749_90,.tierahs-link.stacks_in_8749_90{color:rgba(255, 255, 255, 1.00);font-size:24px;width:24px}.tierahs.stacks_in_8749_90 svg,.tierahs-link.stacks_in_8749_90 svg{max-width:24px;max-height:24px}.tierahs.stacks_in_8749_90 svg *,.tierahs-link.stacks_in_8749_90 svg *{fill:rgba(255, 255, 255, 1.00)}
.tierahs.stacks_in_8749_91,.tierahs-link.stacks_in_8749_91{color:rgba(255, 255, 255, 1.00);font-size:24px;width:24px}.tierahs.stacks_in_8749_91 svg,.tierahs-link.stacks_in_8749_91 svg{max-width:24px;max-height:24px}.tierahs.stacks_in_8749_91 svg *,.tierahs-link.stacks_in_8749_91 svg *{fill:rgba(255, 255, 255, 1.00)}

.foot{background-color:rgba(204, 204, 204, 1.00) ;background-position:center center ;background-origin:padding-box ;background-blend-mode:normal ;background-attachment:scroll   ;background-clip:border-box ;}@media (hover:none) and (pointer:coarse){.foot{background-attachment:scroll!important}}
 .footermenu>.menu a, .menu.footermenu a{--menu-link-color:rgba(255, 255, 255, 1.00);--menu-link-color-hover:rgba(51, 51, 51, 1.00);--menu-bg-color:rgba(255, 255, 255, 0.00);--menu-caret-color:rgba(248, 246, 247, 1.00);--menu-border-accent:2px solid var(--menu-link-color)} .footermenu>.menu .menu-text, .menu.footermenu .menu-text{--menu-text-color:rgba(255, 255, 255, 1.00)} .footermenu>.menu>li>a, .menu.footermenu>li>a{padding-top:0.5rem;padding-bottom:0.5rem} .footermenu>.menu .submenu>li>a, .menu.footermenu .submenu>li>a{padding-top:0.75rem;padding-bottom:0.75rem} .footermenu>.menu li.active>a, .footermenu>.menu li.is-active>a, .footermenu>.menu a.is-active, .menu.footermenu li.active>a, .menu.footermenu li.is-active>a, .menu.footermenu a.is-active{--menu-bg-color:rgba(108, 108, 108, 1.00);--menu-link-color:rgba(254, 254, 254, 1.00);--menu-caret-color:rgba(255, 255, 255, 1.00);--menu-link-color-hover:rgba(254, 254, 254, 1.00)} .footermenu>.menu .submenu li.active>a, .footermenu>.menu .submenu li.is-active>a, .footermenu>.menu .submenu a.is-active, .menu.footermenu .submenu li.active>a, .menu.footermenu .submenu li.is-active>a, .menu.footermenu .submenu a.is-active{--menu-caret-color:rgba(255, 255, 255, 1.00)} .footermenu>.menu .submenu a, .menu.footermenu .submenu a{--menu-caret-color:rgba(97, 103, 173, 1.00)} .footermenu>.menu .submenu, .menu.footermenu .submenu{--submenu-bg-color:rgba(254, 254, 254, 1.00);--submenu-border:1px solid rgba(202, 202, 202, 1.00)} .footermenu>.menu .submenu a, .menu.footermenu .submenu a{--menu-bg-color:transparent;--menu-link-color:rgba(34, 34, 34, 1.00);--menu-link-color-hover:rgba(68, 68, 68, 1.00)} .footermenu>.menu .submenu .menu-text, .menu.footermenu .submenu .menu-text{--menu-text-color:rgba(68, 68, 68, 1.00)} .footermenu>.menu .submenu li.active>a, .footermenu>.menu .submenu li.is-active>a, .footermenu>.menu .submenu a.is-active, .menu.footermenu .submenu li.active>a, .menu.footermenu .submenu li.is-active>a, .menu.footermenu .submenu a.is-active{--menu-caret-color:rgba(255, 255, 255, 1.00);--menu-bg-color:rgba(97, 103, 173, 1.00);--menu-link-color:rgba(254, 254, 254, 1.00);--menu-link-color-hover:rgba(254, 254, 254, 1.00)}
.white-f{color:rgba(255, 255, 255, 1.00) !important;}
.margin-f{margin:1rem ;}  
            .footermenu{font-size:calc(12rem/16) ;}@media only screen and (min-width:40em) {            .footermenu{font-size:calc(12rem/16) ;line-height:1.50 }}@media only screen and (min-width:64em) {            .footermenu{font-size:calc(12rem/16) ;line-height:1.50 }}
.background-foot{background-color:rgba(76, 76, 76, 1.00) ;background-position:center center ;background-origin:padding-box ;background-blend-mode:normal ;background-attachment:scroll   ;background-clip:border-box ;}@media (hover:none) and (pointer:coarse){.background-foot{background-attachment:scroll!important}}
.background-foot{padding-top:1.5rem ;}  
.tierahs.stacks_in_8755_89,.tierahs-link.stacks_in_8755_89{color:rgba(255, 255, 255, 1.00);font-size:24px;width:24px}.tierahs.stacks_in_8755_89 svg,.tierahs-link.stacks_in_8755_89 svg{max-width:24px;max-height:24px}.tierahs.stacks_in_8755_89 svg *,.tierahs-link.stacks_in_8755_89 svg *{fill:rgba(255, 255, 255, 1.00)}
.tierahs.stacks_in_8755_91,.tierahs-link.stacks_in_8755_91{color:rgba(255, 255, 255, 1.00);font-size:24px;width:24px}.tierahs.stacks_in_8755_91 svg,.tierahs-link.stacks_in_8755_91 svg{max-width:24px;max-height:24px}.tierahs.stacks_in_8755_91 svg *,.tierahs-link.stacks_in_8755_91 svg *{fill:rgba(255, 255, 255, 1.00)}
.tierahs.stacks_in_8755_92,.tierahs-link.stacks_in_8755_92{color:rgba(255, 255, 255, 1.00);font-size:24px;width:24px}.tierahs.stacks_in_8755_92 svg,.tierahs-link.stacks_in_8755_92 svg{max-width:24px;max-height:24px}.tierahs.stacks_in_8755_92 svg *,.tierahs-link.stacks_in_8755_92 svg *{fill:rgba(255, 255, 255, 1.00)}

.foot{background-color:rgba(204, 204, 204, 1.00) ;background-position:center center ;background-origin:padding-box ;background-blend-mode:normal ;background-attachment:scroll   ;background-clip:border-box ;}@media (hover:none) and (pointer:coarse){.foot{background-attachment:scroll!important}}
 .footermenu>.menu a, .menu.footermenu a{--menu-link-color:rgba(255, 255, 255, 1.00);--menu-link-color-hover:rgba(51, 51, 51, 1.00);--menu-bg-color:rgba(255, 255, 255, 0.00);--menu-caret-color:rgba(248, 246, 247, 1.00);--menu-border-accent:2px solid var(--menu-link-color)} .footermenu>.menu .menu-text, .menu.footermenu .menu-text{--menu-text-color:rgba(255, 255, 255, 1.00)} .footermenu>.menu>li>a, .menu.footermenu>li>a{padding-top:0.5rem;padding-bottom:0.5rem} .footermenu>.menu .submenu>li>a, .menu.footermenu .submenu>li>a{padding-top:0.75rem;padding-bottom:0.75rem} .footermenu>.menu li.active>a, .footermenu>.menu li.is-active>a, .footermenu>.menu a.is-active, .menu.footermenu li.active>a, .menu.footermenu li.is-active>a, .menu.footermenu a.is-active{--menu-bg-color:rgba(108, 108, 108, 1.00);--menu-link-color:rgba(254, 254, 254, 1.00);--menu-caret-color:rgba(255, 255, 255, 1.00);--menu-link-color-hover:rgba(254, 254, 254, 1.00)} .footermenu>.menu .submenu li.active>a, .footermenu>.menu .submenu li.is-active>a, .footermenu>.menu .submenu a.is-active, .menu.footermenu .submenu li.active>a, .menu.footermenu .submenu li.is-active>a, .menu.footermenu .submenu a.is-active{--menu-caret-color:rgba(255, 255, 255, 1.00)} .footermenu>.menu .submenu a, .menu.footermenu .submenu a{--menu-caret-color:rgba(97, 103, 173, 1.00)} .footermenu>.menu .submenu, .menu.footermenu .submenu{--submenu-bg-color:rgba(254, 254, 254, 1.00);--submenu-border:1px solid rgba(202, 202, 202, 1.00)} .footermenu>.menu .submenu a, .menu.footermenu .submenu a{--menu-bg-color:transparent;--menu-link-color:rgba(34, 34, 34, 1.00);--menu-link-color-hover:rgba(68, 68, 68, 1.00)} .footermenu>.menu .submenu .menu-text, .menu.footermenu .submenu .menu-text{--menu-text-color:rgba(68, 68, 68, 1.00)} .footermenu>.menu .submenu li.active>a, .footermenu>.menu .submenu li.is-active>a, .footermenu>.menu .submenu a.is-active, .menu.footermenu .submenu li.active>a, .menu.footermenu .submenu li.is-active>a, .menu.footermenu .submenu a.is-active{--menu-caret-color:rgba(255, 255, 255, 1.00);--menu-bg-color:rgba(97, 103, 173, 1.00);--menu-link-color:rgba(254, 254, 254, 1.00);--menu-link-color-hover:rgba(254, 254, 254, 1.00)}
.white-f{color:rgba(255, 255, 255, 1.00) !important;}
.margin-f{margin:1rem ;}  
            .footermenu{font-size:calc(12rem/16) ;}@media only screen and (min-width:40em) {            .footermenu{font-size:calc(12rem/16) ;line-height:1.50 }}@media only screen and (min-width:64em) {            .footermenu{font-size:calc(12rem/16) ;line-height:1.50 }}
.background-foot{background-color:rgba(76, 76, 76, 1.00) ;background-position:center center ;background-origin:padding-box ;background-blend-mode:normal ;background-attachment:scroll   ;background-clip:border-box ;}@media (hover:none) and (pointer:coarse){.background-foot{background-attachment:scroll!important}}
.background-foot{padding-top:1.5rem ;}  
.tierahs.stacks_in_8761_88,.tierahs-link.stacks_in_8761_88{color:rgba(255, 255, 255, 1.00);font-size:24px;width:24px}.tierahs.stacks_in_8761_88 svg,.tierahs-link.stacks_in_8761_88 svg{max-width:24px;max-height:24px}.tierahs.stacks_in_8761_88 svg *,.tierahs-link.stacks_in_8761_88 svg *{fill:rgba(255, 255, 255, 1.00)}
.tierahs.stacks_in_8761_90,.tierahs-link.stacks_in_8761_90{color:rgba(255, 255, 255, 1.00);font-size:24px;width:24px}.tierahs.stacks_in_8761_90 svg,.tierahs-link.stacks_in_8761_90 svg{max-width:24px;max-height:24px}.tierahs.stacks_in_8761_90 svg *,.tierahs-link.stacks_in_8761_90 svg *{fill:rgba(255, 255, 255, 1.00)}
.tierahs.stacks_in_8761_91,.tierahs-link.stacks_in_8761_91{color:rgba(255, 255, 255, 1.00);font-size:24px;width:24px}.tierahs.stacks_in_8761_91 svg,.tierahs-link.stacks_in_8761_91 svg{max-width:24px;max-height:24px}.tierahs.stacks_in_8761_91 svg *,.tierahs-link.stacks_in_8761_91 svg *{fill:rgba(255, 255, 255, 1.00)}

.foot{background-color:rgba(204, 204, 204, 1.00) ;background-position:center center ;background-origin:padding-box ;background-blend-mode:normal ;background-attachment:scroll   ;background-clip:border-box ;}@media (hover:none) and (pointer:coarse){.foot{background-attachment:scroll!important}}
 .footermenu>.menu a, .menu.footermenu a{--menu-link-color:rgba(255, 255, 255, 1.00);--menu-link-color-hover:rgba(51, 51, 51, 1.00);--menu-bg-color:rgba(255, 255, 255, 0.00);--menu-caret-color:rgba(248, 246, 247, 1.00);--menu-border-accent:2px solid var(--menu-link-color)} .footermenu>.menu .menu-text, .menu.footermenu .menu-text{--menu-text-color:rgba(255, 255, 255, 1.00)} .footermenu>.menu>li>a, .menu.footermenu>li>a{padding-top:0.5rem;padding-bottom:0.5rem} .footermenu>.menu .submenu>li>a, .menu.footermenu .submenu>li>a{padding-top:0.75rem;padding-bottom:0.75rem} .footermenu>.menu li.active>a, .footermenu>.menu li.is-active>a, .footermenu>.menu a.is-active, .menu.footermenu li.active>a, .menu.footermenu li.is-active>a, .menu.footermenu a.is-active{--menu-bg-color:rgba(108, 108, 108, 1.00);--menu-link-color:rgba(254, 254, 254, 1.00);--menu-caret-color:rgba(255, 255, 255, 1.00);--menu-link-color-hover:rgba(254, 254, 254, 1.00)} .footermenu>.menu .submenu li.active>a, .footermenu>.menu .submenu li.is-active>a, .footermenu>.menu .submenu a.is-active, .menu.footermenu .submenu li.active>a, .menu.footermenu .submenu li.is-active>a, .menu.footermenu .submenu a.is-active{--menu-caret-color:rgba(255, 255, 255, 1.00)} .footermenu>.menu .submenu a, .menu.footermenu .submenu a{--menu-caret-color:rgba(97, 103, 173, 1.00)} .footermenu>.menu .submenu, .menu.footermenu .submenu{--submenu-bg-color:rgba(254, 254, 254, 1.00);--submenu-border:1px solid rgba(202, 202, 202, 1.00)} .footermenu>.menu .submenu a, .menu.footermenu .submenu a{--menu-bg-color:transparent;--menu-link-color:rgba(34, 34, 34, 1.00);--menu-link-color-hover:rgba(68, 68, 68, 1.00)} .footermenu>.menu .submenu .menu-text, .menu.footermenu .submenu .menu-text{--menu-text-color:rgba(68, 68, 68, 1.00)} .footermenu>.menu .submenu li.active>a, .footermenu>.menu .submenu li.is-active>a, .footermenu>.menu .submenu a.is-active, .menu.footermenu .submenu li.active>a, .menu.footermenu .submenu li.is-active>a, .menu.footermenu .submenu a.is-active{--menu-caret-color:rgba(255, 255, 255, 1.00);--menu-bg-color:rgba(97, 103, 173, 1.00);--menu-link-color:rgba(254, 254, 254, 1.00);--menu-link-color-hover:rgba(254, 254, 254, 1.00)}
.white-f{color:rgba(255, 255, 255, 1.00) !important;}
.margin-f{margin:1rem ;}  
            .footermenu{font-size:calc(12rem/16) ;}@media only screen and (min-width:40em) {            .footermenu{font-size:calc(12rem/16) ;line-height:1.50 }}@media only screen and (min-width:64em) {            .footermenu{font-size:calc(12rem/16) ;line-height:1.50 }}
.background-foot{background-color:rgba(76, 76, 76, 1.00) ;background-position:center center ;background-origin:padding-box ;background-blend-mode:normal ;background-attachment:scroll   ;background-clip:border-box ;}@media (hover:none) and (pointer:coarse){.background-foot{background-attachment:scroll!important}}
.background-foot{padding-top:1.5rem ;}  
.tierahs.stacks_in_8742_94,.tierahs-link.stacks_in_8742_94{color:rgba(255, 255, 255, 1.00);font-size:24px;width:24px}.tierahs.stacks_in_8742_94 svg,.tierahs-link.stacks_in_8742_94 svg{max-width:24px;max-height:24px}.tierahs.stacks_in_8742_94 svg *,.tierahs-link.stacks_in_8742_94 svg *{fill:rgba(255, 255, 255, 1.00)}
.tierahs.stacks_in_8742_96,.tierahs-link.stacks_in_8742_96{color:rgba(255, 255, 255, 1.00);font-size:24px;width:24px}.tierahs.stacks_in_8742_96 svg,.tierahs-link.stacks_in_8742_96 svg{max-width:24px;max-height:24px}.tierahs.stacks_in_8742_96 svg *,.tierahs-link.stacks_in_8742_96 svg *{fill:rgba(255, 255, 255, 1.00)}
.tierahs.stacks_in_8742_97,.tierahs-link.stacks_in_8742_97{color:rgba(255, 255, 255, 1.00);font-size:24px;width:24px}.tierahs.stacks_in_8742_97 svg,.tierahs-link.stacks_in_8742_97 svg{max-width:24px;max-height:24px}.tierahs.stacks_in_8742_97 svg *,.tierahs-link.stacks_in_8742_97 svg *{fill:rgba(255, 255, 255, 1.00)}







#stacks_in_8455_1027 {
	font-size: 99%;
}
.stacks_in_8455_159 > .grid-divider-wrapper > .grid-divider{height:calc(100% - 2rem)}

.stacks_in_8455_162 img{width:100%;max-width:200px}




            .fontsize-large-menu{font-size:calc(18rem/16) !important;}@media only screen and (min-width:40em) {            .fontsize-large-menu{font-size:calc(18rem/16) !important;line-height:1.50 !important}}@media only screen and (min-width:64em) {            .fontsize-large-menu{font-size:calc(18rem/16) !important;line-height:1.50 !important}}

#stacks_in_8455_796 {
	padding: 0px 0px 0px 5px;
}

#stacks_in_8455_803 {
	padding: 0px 0px 0px 5px;
}

#stacks_in_8455_810 {
	padding: 0px 0px 0px 5px;
}

#stacks_in_8455_817 {
	padding: 0px 0px 0px 5px;
}


/* custom stuff */


#corner-stacks_in_10568_2 .corner-modal
{
  z-index: 9999;
  max-width:400px;
  max-height:500px;
}



#corner-stacks_in_10568_2 .corner-content {
	border:1px solid rgba(0, 0, 0, 0.40);
	border-radius:2px;
  background-color:rgba(255, 255, 255, 1.00);
  color: rgba(102, 102, 102, 1.00);
  overflow:auto;
}

#corner-stacks_in_10568_2 .corner-button
{
	font-family: Helvetica;
	font-size: 14px;
  font-weight: 700;
	border:2px solid rgba(255, 255, 255, 0.40);
	border-radius:22px;
  background-color:rgba(28, 138, 32, 1.00);
  color: rgba(255, 255, 255, 1.00);
  padding-top: 10px;
  padding-right: 20px;
  padding-bottom: 10px;
  padding-left: 20px;
  margin-top: 20px;
  margin-right: 20px;
  margin-bottom: 20px;
  margin-left: 20px;
  z-index: 9998;
}


#corner-stacks_in_10568_2 .corner-button.corner-tl,
#corner-stacks_in_10568_2 .corner-button.corner-tr {
  margin-top: -60px;
}

#corner-stacks_in_10568_2 .corner-button.corner-bl,
#corner-stacks_in_10568_2 .corner-button.corner-br {
  margin-bottom: -60px;
}


#corner-stacks_in_10568_2 .corner-content {
	padding-top: 10px;
  padding-right: 20px;
  padding-bottom: 10px;
  padding-left: 20px;
  margin-top: 10px;
  margin-right: 20px;
  margin-bottom: 20px;
  margin-left: 20px;
}

#corner-stacks_in_10568_2 .corner-button.corner-tl.corner-show,
#corner-stacks_in_10568_2 .corner-button.corner-tr.corner-show {
  margin-top: 20px;
}

#corner-stacks_in_10568_2 .corner-button.corner-bl.corner-show,
#corner-stacks_in_10568_2 .corner-button.corner-br.corner-show {
  margin-bottom: 20px;
}


/* hide the text in button on smaller screens */
@media only screen and (max-width: 770px)  
{ 
  #corner-stacks_in_10568_2 .corner-modal
  {
    width:100%;
    max-width:100%;
    max-height:100%;
    margin:0;
  }

  #corner-stacks_in_10568_2 .corner-content
  {
    margin:4px;
  }

  #corner-stacks_in_10568_2 span.corner-label { 
    display:none; 
  }
}




.margin-contact{margin:5rem ;}  
label{--header-color:rgba(255, 255, 255, 1.00);--subheader-color:rgba(138, 138, 138, 1.00);--small-color:rgba(202, 202, 202, 1.00);--text-color:rgba(255, 255, 255, 1.00);--link-color:rgba(0, 140, 186, 1.00);--link-color-hover:rgba(0, 102, 136, 1.00);--link-decoration:none;--link-decoration-hover:none}
.bg-grey{background-color:rgba(204, 204, 204, 1.00) ;background-position:center center ;background-origin:padding-box ;background-blend-mode:normal ;background-attachment:scroll   ;background-clip:border-box ;}@media (hover:none) and (pointer:coarse){.bg-grey{background-attachment:scroll!important}}
.white-font{color:rgba(255, 255, 255, 1.00) ;}






/* CSS GRID */
#stacks_out_15661,
#stacks_in_15661 {
	overflow: visible;
}


#stacks_in_15661 .flux-container {
	overflow: visible;
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	gap: 30px 30px;
	align-items: stretch;

	/* border: 1px solid red; */
	
	margin-bottom: 21px;
	
}

#stacks_in_15661 .flux-item > .stacks_out {
	margin: 0;
	padding: 0;
}


/* These elements will be styled _ONLY_ at their given breakpoints */
/* and will not bleed from one to the other. */

/* Mobile */
@media (max-width: 47.9375em) {
}

/* Tablet */
@media (min-width: 48em) and (max-width: 61.9em) {
}

/* Desktop */
@media (min-width: 62em) {
}



/* ----------------------------------- */

/* These elements will be styled at their given breakpoints */
/* but can bleed from themselves over to wider breakpoints as well. */
/* Mobile */

#stacks_in_15661 .flux-container {
	

	row-gap: 30px;
	column-gap: 30px;
	
	
	
	
	
	
	grid-template-columns: repeat(1, 1fr);
	
	
	
	
	
	grid-auto-rows: auto;
	
	
	
	
	
	
	
	padding: 0px;
	

	
	border-width: 0px;
	

	border-color: rgba(204, 204, 204, 1.00);
	border-style: solid;
	
	
	border-radius: 0px;
	


	
	
	
	
	
	
	

	
	box-shadow: none;
	

}


/* Tablet */
@media (min-width: 48em) {
	
	#stacks_in_15661 .flux-container {
		

		row-gap: 30px;
		column-gap: 30px;
		
		
		
		
		grid-template-columns: repeat(3, 1fr);
		
		
		
		grid-auto-rows: auto;
		
		
		
		
		
			
		

		
			
		
		
		
			
		

		
		
		
		
		
		
		
		
		

		
		box-shadow: none;
		

	}
	
}

@media (min-width: 62em) {
	/* Desktop */
	
}

/* #stacks_in_15661 .flux-container {
	overflow: hidden;
} */







/* Mobile */
.stacks_in_15662-indv-item {
	display: flex;
	flex-flow: column;

	
	grid-column-end: span 1;
	grid-row-end: span 1;
	
	
	


	
	justify-content: flex-start;
	
	
		
	
		
	
	
	
	
	
	
	

	
	
	
	
	
		
	

	
	
	
	border-width: 0px;
	

	
	border-color: rgba(94, 95, 95, 1.00);
	

	border-style: solid;
	
	
}


@media (min-width: 48em) {
	/* Tablet */
	
	.stacks_in_15662-indv-item {
		display: flex;
		flex-flow: column;
		grid-column-end: span 1;
		grid-row-end: span 1;


		
		grid-column-end: span 1;
		grid-row-end: span 1;
		
		
		


		
		justify-content: flex-start;
		
		
		
		
			
		
		
		
		
		
		
		
				
		
	
		
	
		

		
			
		
		
		
	
	}
	

	.stacks_in_15662-indv-item {
		
	}
}

@media (min-width: 62em) {
	/* Desktop */
	

	.stacks_in_15662-indv-item {
		
	}
}











.stacks_in_15662-clickable-item {
	cursor: pointer;
}



.stacks_in_15671 img{width:100%;max-width:250px}




/* Mobile */
.stacks_in_15681-indv-item {
	display: flex;
	flex-flow: column;

	
	grid-column-end: span 1;
	grid-row-end: span 1;
	
	
	


	
	justify-content: flex-start;
	
	
		
	
		
	
	
	
	
	
	
	

	
	
	
	
	
		
	

	
	
	
	border-width: 0px;
	

	
	border-color: rgba(94, 95, 95, 1.00);
	

	border-style: solid;
	
	
}


@media (min-width: 48em) {
	/* Tablet */
	
	.stacks_in_15681-indv-item {
		display: flex;
		flex-flow: column;
		grid-column-end: span 1;
		grid-row-end: span 1;


		
		grid-column-end: span 1;
		grid-row-end: span 1;
		
		
		


		
		justify-content: flex-start;
		
		
		
		
			
		
		
		
		
		
		
		
				
		
	
		
	
		

		
			
		
		
		
	
	}
	

	.stacks_in_15681-indv-item {
		
	}
}

@media (min-width: 62em) {
	/* Desktop */
	

	.stacks_in_15681-indv-item {
		
	}
}











.stacks_in_15681-clickable-item {
	cursor: pointer;
}



.stacks_in_15689 img{width:100%;max-width:250px}




/* Mobile */
.stacks_in_15699-indv-item {
	display: flex;
	flex-flow: column;

	
	grid-column-end: span 1;
	grid-row-end: span 1;
	
	
	


	
	justify-content: flex-start;
	
	
		
	
		
	
	
	
	
	
	
	

	
	
	
	
	
		
	

	
	
	
	border-width: 0px;
	

	
	border-color: rgba(94, 95, 95, 1.00);
	

	border-style: solid;
	
	
}


@media (min-width: 48em) {
	/* Tablet */
	
	.stacks_in_15699-indv-item {
		display: flex;
		flex-flow: column;
		grid-column-end: span 1;
		grid-row-end: span 1;


		
		grid-column-end: span 1;
		grid-row-end: span 1;
		
		
		


		
		justify-content: flex-start;
		
		
		
		
			
		
		
		
		
		
		
		
				
		
	
		
	
		

		
			
		
		
		
	
	}
	

	.stacks_in_15699-indv-item {
		
	}
}

@media (min-width: 62em) {
	/* Desktop */
	

	.stacks_in_15699-indv-item {
		
	}
}











.stacks_in_15699-clickable-item {
	cursor: pointer;
}



.stacks_in_15707 img{width:100%;max-width:250px}




/* CSS GRID */
#stacks_out_15719,
#stacks_in_15719 {
	overflow: visible;
}


#stacks_in_15719 .flux-container {
	overflow: visible;
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	gap: 30px 30px;
	align-items: stretch;

	/* border: 1px solid red; */
	
	margin-bottom: 21px;
	
}

#stacks_in_15719 .flux-item > .stacks_out {
	margin: 0;
	padding: 0;
}


/* These elements will be styled _ONLY_ at their given breakpoints */
/* and will not bleed from one to the other. */

/* Mobile */
@media (max-width: 47.9375em) {
}

/* Tablet */
@media (min-width: 48em) and (max-width: 61.9em) {
}

/* Desktop */
@media (min-width: 62em) {
}



/* ----------------------------------- */

/* These elements will be styled at their given breakpoints */
/* but can bleed from themselves over to wider breakpoints as well. */
/* Mobile */

#stacks_in_15719 .flux-container {
	

	row-gap: 30px;
	column-gap: 30px;
	
	
	
	
	
	
	grid-template-columns: repeat(1, 1fr);
	
	
	
	
	
	grid-auto-rows: auto;
	
	
	
	
	
	
	
	padding: 0px;
	

	
	border-width: 0px;
	

	border-color: rgba(204, 204, 204, 1.00);
	border-style: solid;
	
	
	border-radius: 0px;
	


	
	
	
	
	
	
	

	
	box-shadow: none;
	

}


/* Tablet */
@media (min-width: 48em) {
	
	#stacks_in_15719 .flux-container {
		

		row-gap: 30px;
		column-gap: 30px;
		
		
		
		
		grid-template-columns: repeat(3, 1fr);
		
		
		
		grid-auto-rows: auto;
		
		
		
		
		
			
		

		
			
		
		
		
			
		

		
		
		
		
		
		
		
		
		

		
		box-shadow: none;
		

	}
	
}

@media (min-width: 62em) {
	/* Desktop */
	
}

/* #stacks_in_15719 .flux-container {
	overflow: hidden;
} */







/* Mobile */
.stacks_in_15720-indv-item {
	display: flex;
	flex-flow: column;

	
	grid-column-end: span 1;
	grid-row-end: span 1;
	
	
	


	
	justify-content: flex-start;
	
	
		
	
		
	
	
	
	
	
	
	

	
	
	
	
	
		
	

	
	
	
	border-width: 0px;
	

	
	border-color: rgba(94, 95, 95, 1.00);
	

	border-style: solid;
	
	
}


@media (min-width: 48em) {
	/* Tablet */
	
	.stacks_in_15720-indv-item {
		display: flex;
		flex-flow: column;
		grid-column-end: span 1;
		grid-row-end: span 1;


		
		grid-column-end: span 1;
		grid-row-end: span 1;
		
		
		


		
		justify-content: flex-start;
		
		
		
		
			
		
		
		
		
		
		
		
				
		
	
		
	
		

		
			
		
		
		
	
	}
	

	.stacks_in_15720-indv-item {
		
	}
}

@media (min-width: 62em) {
	/* Desktop */
	

	.stacks_in_15720-indv-item {
		
	}
}











.stacks_in_15720-clickable-item {
	cursor: pointer;
}



.stacks_in_15729 img{width:100%;max-width:250px}




/* Mobile */
.stacks_in_15739-indv-item {
	display: flex;
	flex-flow: column;

	
	grid-column-end: span 1;
	grid-row-end: span 1;
	
	
	


	
	justify-content: flex-start;
	
	
		
	
		
	
	
	
	
	
	
	

	
	
	
	
	
		
	

	
	
	
	border-width: 0px;
	

	
	border-color: rgba(94, 95, 95, 1.00);
	

	border-style: solid;
	
	
}


@media (min-width: 48em) {
	/* Tablet */
	
	.stacks_in_15739-indv-item {
		display: flex;
		flex-flow: column;
		grid-column-end: span 1;
		grid-row-end: span 1;


		
		grid-column-end: span 1;
		grid-row-end: span 1;
		
		
		


		
		justify-content: flex-start;
		
		
		
		
			
		
		
		
		
		
		
		
				
		
	
		
	
		

		
			
		
		
		
	
	}
	

	.stacks_in_15739-indv-item {
		
	}
}

@media (min-width: 62em) {
	/* Desktop */
	

	.stacks_in_15739-indv-item {
		
	}
}











.stacks_in_15739-clickable-item {
	cursor: pointer;
}



.stacks_in_15747 img{width:100%;max-width:250px}




/* Mobile */
.stacks_in_15755-indv-item {
	display: flex;
	flex-flow: column;

	
	grid-column-end: span 1;
	grid-row-end: span 1;
	
	
	


	
	justify-content: flex-start;
	
	
		
	
		
	
	
	
	
	
	
	

	
	
	
	
	
		
	

	
	
	
	border-width: 0px;
	

	
	border-color: rgba(94, 95, 95, 1.00);
	

	border-style: solid;
	
	
}


@media (min-width: 48em) {
	/* Tablet */
	
	.stacks_in_15755-indv-item {
		display: flex;
		flex-flow: column;
		grid-column-end: span 1;
		grid-row-end: span 1;


		
		grid-column-end: span 1;
		grid-row-end: span 1;
		
		
		


		
		justify-content: flex-start;
		
		
		
		
			
		
		
		
		
		
		
		
				
		
	
		
	
		

		
			
		
		
		
	
	}
	

	.stacks_in_15755-indv-item {
		
	}
}

@media (min-width: 62em) {
	/* Desktop */
	

	.stacks_in_15755-indv-item {
		
	}
}











.stacks_in_15755-clickable-item {
	cursor: pointer;
}



.stacks_in_15763 img{width:100%;max-width:250px}




/* CSS GRID */
#stacks_out_15773,
#stacks_in_15773 {
	overflow: visible;
}


#stacks_in_15773 .flux-container {
	overflow: visible;
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	gap: 30px 30px;
	align-items: stretch;

	/* border: 1px solid red; */
	
	margin-bottom: 21px;
	
}

#stacks_in_15773 .flux-item > .stacks_out {
	margin: 0;
	padding: 0;
}


/* These elements will be styled _ONLY_ at their given breakpoints */
/* and will not bleed from one to the other. */

/* Mobile */
@media (max-width: 47.9375em) {
}

/* Tablet */
@media (min-width: 48em) and (max-width: 61.9em) {
}

/* Desktop */
@media (min-width: 62em) {
}



/* ----------------------------------- */

/* These elements will be styled at their given breakpoints */
/* but can bleed from themselves over to wider breakpoints as well. */
/* Mobile */

#stacks_in_15773 .flux-container {
	

	row-gap: 30px;
	column-gap: 30px;
	
	
	
	
	
	
	grid-template-columns: repeat(1, 1fr);
	
	
	
	
	
	grid-auto-rows: auto;
	
	
	
	
	
	
	
	padding: 0px;
	

	
	border-width: 0px;
	

	border-color: rgba(204, 204, 204, 1.00);
	border-style: solid;
	
	
	border-radius: 0px;
	


	
	
	
	
	
	
	

	
	box-shadow: none;
	

}


/* Tablet */
@media (min-width: 48em) {
	
	#stacks_in_15773 .flux-container {
		

		row-gap: 30px;
		column-gap: 30px;
		
		
		
		
		grid-template-columns: repeat(3, 1fr);
		
		
		
		grid-auto-rows: auto;
		
		
		
		
		
			
		

		
			
		
		
		
			
		

		
		
		
		
		
		
		
		
		

		
		box-shadow: none;
		

	}
	
}

@media (min-width: 62em) {
	/* Desktop */
	
}

/* #stacks_in_15773 .flux-container {
	overflow: hidden;
} */







/* Mobile */
.stacks_in_15774-indv-item {
	display: flex;
	flex-flow: column;

	
	grid-column-end: span 1;
	grid-row-end: span 1;
	
	
	


	
	justify-content: flex-start;
	
	
		
	
		
	
	
	
	
	
	
	

	
	
	
	
	
		
	

	
	
	
	border-width: 0px;
	

	
	border-color: rgba(94, 95, 95, 1.00);
	

	border-style: solid;
	
	
}


@media (min-width: 48em) {
	/* Tablet */
	
	.stacks_in_15774-indv-item {
		display: flex;
		flex-flow: column;
		grid-column-end: span 1;
		grid-row-end: span 1;


		
		grid-column-end: span 1;
		grid-row-end: span 1;
		
		
		


		
		justify-content: flex-start;
		
		
		
		
			
		
		
		
		
		
		
		
				
		
	
		
	
		

		
			
		
		
		
	
	}
	

	.stacks_in_15774-indv-item {
		
	}
}

@media (min-width: 62em) {
	/* Desktop */
	

	.stacks_in_15774-indv-item {
		
	}
}











.stacks_in_15774-clickable-item {
	cursor: pointer;
}



.stacks_in_15783 img{width:100%;max-width:250px}




/* Mobile */
.stacks_in_15793-indv-item {
	display: flex;
	flex-flow: column;

	
	grid-column-end: span 1;
	grid-row-end: span 1;
	
	
	


	
	justify-content: flex-start;
	
	
		
	
		
	
	
	
	
	
	
	

	
	
	
	
	
		
	

	
	
	
	border-width: 0px;
	

	
	border-color: rgba(94, 95, 95, 1.00);
	

	border-style: solid;
	
	
}


@media (min-width: 48em) {
	/* Tablet */
	
	.stacks_in_15793-indv-item {
		display: flex;
		flex-flow: column;
		grid-column-end: span 1;
		grid-row-end: span 1;


		
		grid-column-end: span 1;
		grid-row-end: span 1;
		
		
		


		
		justify-content: flex-start;
		
		
		
		
			
		
		
		
		
		
		
		
				
		
	
		
	
		

		
			
		
		
		
	
	}
	

	.stacks_in_15793-indv-item {
		
	}
}

@media (min-width: 62em) {
	/* Desktop */
	

	.stacks_in_15793-indv-item {
		
	}
}











.stacks_in_15793-clickable-item {
	cursor: pointer;
}



.stacks_in_15801 img{width:100%;max-width:250px}




/* Mobile */
.stacks_in_15809-indv-item {
	display: flex;
	flex-flow: column;

	
	grid-column-end: span 1;
	grid-row-end: span 1;
	
	
	


	
	justify-content: flex-start;
	
	
		
	
		
	
	
	
	
	
	
	

	
	
	
	
	
		
	

	
	
	
	border-width: 0px;
	

	
	border-color: rgba(94, 95, 95, 1.00);
	

	border-style: solid;
	
	
}


@media (min-width: 48em) {
	/* Tablet */
	
	.stacks_in_15809-indv-item {
		display: flex;
		flex-flow: column;
		grid-column-end: span 1;
		grid-row-end: span 1;


		
		grid-column-end: span 1;
		grid-row-end: span 1;
		
		
		


		
		justify-content: flex-start;
		
		
		
		
			
		
		
		
		
		
		
		
				
		
	
		
	
		

		
			
		
		
		
	
	}
	

	.stacks_in_15809-indv-item {
		
	}
}

@media (min-width: 62em) {
	/* Desktop */
	

	.stacks_in_15809-indv-item {
		
	}
}











.stacks_in_15809-clickable-item {
	cursor: pointer;
}



.stacks_in_15817 img{width:100%;max-width:250px}




/* CSS GRID */
#stacks_out_15827,
#stacks_in_15827 {
	overflow: visible;
}


#stacks_in_15827 .flux-container {
	overflow: visible;
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	gap: 30px 30px;
	align-items: stretch;

	/* border: 1px solid red; */
	
	margin-bottom: 21px;
	
}

#stacks_in_15827 .flux-item > .stacks_out {
	margin: 0;
	padding: 0;
}


/* These elements will be styled _ONLY_ at their given breakpoints */
/* and will not bleed from one to the other. */

/* Mobile */
@media (max-width: 47.9375em) {
}

/* Tablet */
@media (min-width: 48em) and (max-width: 61.9em) {
}

/* Desktop */
@media (min-width: 62em) {
}



/* ----------------------------------- */

/* These elements will be styled at their given breakpoints */
/* but can bleed from themselves over to wider breakpoints as well. */
/* Mobile */

#stacks_in_15827 .flux-container {
	

	row-gap: 30px;
	column-gap: 30px;
	
	
	
	
	
	
	grid-template-columns: repeat(1, 1fr);
	
	
	
	
	
	grid-auto-rows: auto;
	
	
	
	
	
	
	
	padding: 0px;
	

	
	border-width: 0px;
	

	border-color: rgba(204, 204, 204, 1.00);
	border-style: solid;
	
	
	border-radius: 0px;
	


	
	
	
	
	
	
	

	
	box-shadow: none;
	

}


/* Tablet */
@media (min-width: 48em) {
	
	#stacks_in_15827 .flux-container {
		

		row-gap: 30px;
		column-gap: 30px;
		
		
		
		
		grid-template-columns: repeat(3, 1fr);
		
		
		
		grid-auto-rows: auto;
		
		
		
		
		
			
		

		
			
		
		
		
			
		

		
		
		
		
		
		
		
		
		

		
		box-shadow: none;
		

	}
	
}

@media (min-width: 62em) {
	/* Desktop */
	
}

/* #stacks_in_15827 .flux-container {
	overflow: hidden;
} */







/* Mobile */
.stacks_in_15828-indv-item {
	display: flex;
	flex-flow: column;

	
	grid-column-end: span 1;
	grid-row-end: span 1;
	
	
	


	
	justify-content: flex-start;
	
	
		
	
		
	
	
	
	
	
	
	

	
	
	
	
	
		
	

	
	
	
	border-width: 0px;
	

	
	border-color: rgba(94, 95, 95, 1.00);
	

	border-style: solid;
	
	
}


@media (min-width: 48em) {
	/* Tablet */
	
	.stacks_in_15828-indv-item {
		display: flex;
		flex-flow: column;
		grid-column-end: span 1;
		grid-row-end: span 1;


		
		grid-column-end: span 1;
		grid-row-end: span 1;
		
		
		


		
		justify-content: flex-start;
		
		
		
		
			
		
		
		
		
		
		
		
				
		
	
		
	
		

		
			
		
		
		
	
	}
	

	.stacks_in_15828-indv-item {
		
	}
}

@media (min-width: 62em) {
	/* Desktop */
	

	.stacks_in_15828-indv-item {
		
	}
}











.stacks_in_15828-clickable-item {
	cursor: pointer;
}



.stacks_in_15837 img{width:100%;max-width:250px}




/* Mobile */
.stacks_in_15847-indv-item {
	display: flex;
	flex-flow: column;

	
	grid-column-end: span 1;
	grid-row-end: span 1;
	
	
	


	
	justify-content: flex-start;
	
	
		
	
		
	
	
	
	
	
	
	

	
	
	
	
	
		
	

	
	
	
	border-width: 0px;
	

	
	border-color: rgba(94, 95, 95, 1.00);
	

	border-style: solid;
	
	
}


@media (min-width: 48em) {
	/* Tablet */
	
	.stacks_in_15847-indv-item {
		display: flex;
		flex-flow: column;
		grid-column-end: span 1;
		grid-row-end: span 1;


		
		grid-column-end: span 1;
		grid-row-end: span 1;
		
		
		


		
		justify-content: flex-start;
		
		
		
		
			
		
		
		
		
		
		
		
				
		
	
		
	
		

		
			
		
		
		
	
	}
	

	.stacks_in_15847-indv-item {
		
	}
}

@media (min-width: 62em) {
	/* Desktop */
	

	.stacks_in_15847-indv-item {
		
	}
}











.stacks_in_15847-clickable-item {
	cursor: pointer;
}



.stacks_in_15855 img{width:100%;max-width:250px}




/* Mobile */
.stacks_in_15865-indv-item {
	display: flex;
	flex-flow: column;

	
	grid-column-end: span 1;
	grid-row-end: span 1;
	
	
	


	
	justify-content: flex-start;
	
	
		
	
		
	
	
	
	
	
	
	

	
	
	
	
	
		
	

	
	
	
	border-width: 0px;
	

	
	border-color: rgba(94, 95, 95, 1.00);
	

	border-style: solid;
	
	
}


@media (min-width: 48em) {
	/* Tablet */
	
	.stacks_in_15865-indv-item {
		display: flex;
		flex-flow: column;
		grid-column-end: span 1;
		grid-row-end: span 1;


		
		grid-column-end: span 1;
		grid-row-end: span 1;
		
		
		


		
		justify-content: flex-start;
		
		
		
		
			
		
		
		
		
		
		
		
				
		
	
		
	
		

		
			
		
		
		
	
	}
	

	.stacks_in_15865-indv-item {
		
	}
}

@media (min-width: 62em) {
	/* Desktop */
	

	.stacks_in_15865-indv-item {
		
	}
}











.stacks_in_15865-clickable-item {
	cursor: pointer;
}



.stacks_in_15873 img{width:100%;max-width:250px}




/* CSS GRID */
#stacks_out_15881,
#stacks_in_15881 {
	overflow: visible;
}


#stacks_in_15881 .flux-container {
	overflow: visible;
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	gap: 30px 30px;
	align-items: stretch;

	/* border: 1px solid red; */
	
	margin-bottom: 21px;
	
}

#stacks_in_15881 .flux-item > .stacks_out {
	margin: 0;
	padding: 0;
}


/* These elements will be styled _ONLY_ at their given breakpoints */
/* and will not bleed from one to the other. */

/* Mobile */
@media (max-width: 47.9375em) {
}

/* Tablet */
@media (min-width: 48em) and (max-width: 61.9em) {
}

/* Desktop */
@media (min-width: 62em) {
}



/* ----------------------------------- */

/* These elements will be styled at their given breakpoints */
/* but can bleed from themselves over to wider breakpoints as well. */
/* Mobile */

#stacks_in_15881 .flux-container {
	

	row-gap: 30px;
	column-gap: 30px;
	
	
	
	
	
	
	grid-template-columns: repeat(1, 1fr);
	
	
	
	
	
	grid-auto-rows: auto;
	
	
	
	
	
	
	
	padding: 0px;
	

	
	border-width: 0px;
	

	border-color: rgba(204, 204, 204, 1.00);
	border-style: solid;
	
	
	border-radius: 0px;
	


	
	
	
	
	
	
	

	
	box-shadow: none;
	

}


/* Tablet */
@media (min-width: 48em) {
	
	#stacks_in_15881 .flux-container {
		

		row-gap: 30px;
		column-gap: 30px;
		
		
		
		
		grid-template-columns: repeat(3, 1fr);
		
		
		
		grid-auto-rows: auto;
		
		
		
		
		
			
		

		
			
		
		
		
			
		

		
		
		
		
		
		
		
		
		

		
		box-shadow: none;
		

	}
	
}

@media (min-width: 62em) {
	/* Desktop */
	
}

/* #stacks_in_15881 .flux-container {
	overflow: hidden;
} */







/* Mobile */
.stacks_in_15882-indv-item {
	display: flex;
	flex-flow: column;

	
	grid-column-end: span 1;
	grid-row-end: span 1;
	
	
	


	
	justify-content: flex-start;
	
	
		
	
		
	
	
	
	
	
	
	

	
	
	
	
	
		
	

	
	
	
	border-width: 0px;
	

	
	border-color: rgba(94, 95, 95, 1.00);
	

	border-style: solid;
	
	
}


@media (min-width: 48em) {
	/* Tablet */
	
	.stacks_in_15882-indv-item {
		display: flex;
		flex-flow: column;
		grid-column-end: span 1;
		grid-row-end: span 1;


		
		grid-column-end: span 1;
		grid-row-end: span 1;
		
		
		


		
		justify-content: flex-start;
		
		
		
		
			
		
		
		
		
		
		
		
				
		
	
		
	
		

		
			
		
		
		
	
	}
	

	.stacks_in_15882-indv-item {
		
	}
}

@media (min-width: 62em) {
	/* Desktop */
	

	.stacks_in_15882-indv-item {
		
	}
}











.stacks_in_15882-clickable-item {
	cursor: pointer;
}



.stacks_in_15891 img{width:100%;max-width:250px}




/* Mobile */
.stacks_in_15901-indv-item {
	display: flex;
	flex-flow: column;

	
	grid-column-end: span 1;
	grid-row-end: span 1;
	
	
	


	
	justify-content: flex-start;
	
	
		
	
		
	
	
	
	
	
	
	

	
	
	
	
	
		
	

	
	
	
	border-width: 0px;
	

	
	border-color: rgba(94, 95, 95, 1.00);
	

	border-style: solid;
	
	
}


@media (min-width: 48em) {
	/* Tablet */
	
	.stacks_in_15901-indv-item {
		display: flex;
		flex-flow: column;
		grid-column-end: span 1;
		grid-row-end: span 1;


		
		grid-column-end: span 1;
		grid-row-end: span 1;
		
		
		


		
		justify-content: flex-start;
		
		
		
		
			
		
		
		
		
		
		
		
				
		
	
		
	
		

		
			
		
		
		
	
	}
	

	.stacks_in_15901-indv-item {
		
	}
}

@media (min-width: 62em) {
	/* Desktop */
	

	.stacks_in_15901-indv-item {
		
	}
}











.stacks_in_15901-clickable-item {
	cursor: pointer;
}



.stacks_in_15909 img{width:100%;max-width:250px}




/* Mobile */
.stacks_in_15919-indv-item {
	display: flex;
	flex-flow: column;

	
	grid-column-end: span 1;
	grid-row-end: span 1;
	
	
	


	
	justify-content: flex-start;
	
	
		
	
		
	
	
	
	
	
	
	

	
	
	
	
	
		
	

	
	
	
	border-width: 0px;
	

	
	border-color: rgba(94, 95, 95, 1.00);
	

	border-style: solid;
	
	
}


@media (min-width: 48em) {
	/* Tablet */
	
	.stacks_in_15919-indv-item {
		display: flex;
		flex-flow: column;
		grid-column-end: span 1;
		grid-row-end: span 1;


		
		grid-column-end: span 1;
		grid-row-end: span 1;
		
		
		


		
		justify-content: flex-start;
		
		
		
		
			
		
		
		
		
		
		
		
				
		
	
		
	
		

		
			
		
		
		
	
	}
	

	.stacks_in_15919-indv-item {
		
	}
}

@media (min-width: 62em) {
	/* Desktop */
	

	.stacks_in_15919-indv-item {
		
	}
}











.stacks_in_15919-clickable-item {
	cursor: pointer;
}



.stacks_in_15927 img{width:100%;max-width:250px}




/* CSS GRID */
#stacks_out_15937,
#stacks_in_15937 {
	overflow: visible;
}


#stacks_in_15937 .flux-container {
	overflow: visible;
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	gap: 30px 30px;
	align-items: stretch;

	/* border: 1px solid red; */
	
	margin-bottom: 21px;
	
}

#stacks_in_15937 .flux-item > .stacks_out {
	margin: 0;
	padding: 0;
}


/* These elements will be styled _ONLY_ at their given breakpoints */
/* and will not bleed from one to the other. */

/* Mobile */
@media (max-width: 47.9375em) {
}

/* Tablet */
@media (min-width: 48em) and (max-width: 61.9em) {
}

/* Desktop */
@media (min-width: 62em) {
}



/* ----------------------------------- */

/* These elements will be styled at their given breakpoints */
/* but can bleed from themselves over to wider breakpoints as well. */
/* Mobile */

#stacks_in_15937 .flux-container {
	

	row-gap: 30px;
	column-gap: 30px;
	
	
	
	
	
	
	grid-template-columns: repeat(1, 1fr);
	
	
	
	
	
	grid-auto-rows: auto;
	
	
	
	
	
	
	
	padding: 0px;
	

	
	border-width: 0px;
	

	border-color: rgba(204, 204, 204, 1.00);
	border-style: solid;
	
	
	border-radius: 0px;
	


	
	
	
	
	
	
	

	
	box-shadow: none;
	

}


/* Tablet */
@media (min-width: 48em) {
	
	#stacks_in_15937 .flux-container {
		

		row-gap: 30px;
		column-gap: 30px;
		
		
		
		
		grid-template-columns: repeat(3, 1fr);
		
		
		
		grid-auto-rows: auto;
		
		
		
		
		
			
		

		
			
		
		
		
			
		

		
		
		
		
		
		
		
		
		

		
		box-shadow: none;
		

	}
	
}

@media (min-width: 62em) {
	/* Desktop */
	
}

/* #stacks_in_15937 .flux-container {
	overflow: hidden;
} */







/* Mobile */
.stacks_in_15938-indv-item {
	display: flex;
	flex-flow: column;

	
	grid-column-end: span 1;
	grid-row-end: span 1;
	
	
	


	
	justify-content: flex-start;
	
	
		
	
		
	
	
	
	
	
	
	

	
	
	
	
	
		
	

	
	
	
	border-width: 0px;
	

	
	border-color: rgba(94, 95, 95, 1.00);
	

	border-style: solid;
	
	
}


@media (min-width: 48em) {
	/* Tablet */
	
	.stacks_in_15938-indv-item {
		display: flex;
		flex-flow: column;
		grid-column-end: span 1;
		grid-row-end: span 1;


		
		grid-column-end: span 1;
		grid-row-end: span 1;
		
		
		


		
		justify-content: flex-start;
		
		
		
		
			
		
		
		
		
		
		
		
				
		
	
		
	
		

		
			
		
		
		
	
	}
	

	.stacks_in_15938-indv-item {
		
	}
}

@media (min-width: 62em) {
	/* Desktop */
	

	.stacks_in_15938-indv-item {
		
	}
}











.stacks_in_15938-clickable-item {
	cursor: pointer;
}



.stacks_in_15947 img{width:100%;max-width:250px}




/* Mobile */
.stacks_in_15957-indv-item {
	display: flex;
	flex-flow: column;

	
	grid-column-end: span 1;
	grid-row-end: span 1;
	
	
	


	
	justify-content: flex-start;
	
	
		
	
		
	
	
	
	
	
	
	

	
	
	
	
	
		
	

	
	
	
	border-width: 0px;
	

	
	border-color: rgba(94, 95, 95, 1.00);
	

	border-style: solid;
	
	
}


@media (min-width: 48em) {
	/* Tablet */
	
	.stacks_in_15957-indv-item {
		display: flex;
		flex-flow: column;
		grid-column-end: span 1;
		grid-row-end: span 1;


		
		grid-column-end: span 1;
		grid-row-end: span 1;
		
		
		


		
		justify-content: flex-start;
		
		
		
		
			
		
		
		
		
		
		
		
				
		
	
		
	
		

		
			
		
		
		
	
	}
	

	.stacks_in_15957-indv-item {
		
	}
}

@media (min-width: 62em) {
	/* Desktop */
	

	.stacks_in_15957-indv-item {
		
	}
}











.stacks_in_15957-clickable-item {
	cursor: pointer;
}



.stacks_in_15965 img{width:100%;max-width:250px}




/* Mobile */
.stacks_in_15975-indv-item {
	display: flex;
	flex-flow: column;

	
	grid-column-end: span 1;
	grid-row-end: span 1;
	
	
	


	
	justify-content: flex-start;
	
	
		
	
		
	
	
	
	
	
	
	

	
	
	
	
	
		
	

	
	
	
	border-width: 0px;
	

	
	border-color: rgba(94, 95, 95, 1.00);
	

	border-style: solid;
	
	
}


@media (min-width: 48em) {
	/* Tablet */
	
	.stacks_in_15975-indv-item {
		display: flex;
		flex-flow: column;
		grid-column-end: span 1;
		grid-row-end: span 1;


		
		grid-column-end: span 1;
		grid-row-end: span 1;
		
		
		


		
		justify-content: flex-start;
		
		
		
		
			
		
		
		
		
		
		
		
				
		
	
		
	
		

		
			
		
		
		
	
	}
	

	.stacks_in_15975-indv-item {
		
	}
}

@media (min-width: 62em) {
	/* Desktop */
	

	.stacks_in_15975-indv-item {
		
	}
}











.stacks_in_15975-clickable-item {
	cursor: pointer;
}



.stacks_in_15983 img{width:100%;max-width:250px}




/* CSS GRID */
#stacks_out_15993,
#stacks_in_15993 {
	overflow: visible;
}


#stacks_in_15993 .flux-container {
	overflow: visible;
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	gap: 30px 30px;
	align-items: stretch;

	/* border: 1px solid red; */
	
	margin-bottom: 21px;
	
}

#stacks_in_15993 .flux-item > .stacks_out {
	margin: 0;
	padding: 0;
}


/* These elements will be styled _ONLY_ at their given breakpoints */
/* and will not bleed from one to the other. */

/* Mobile */
@media (max-width: 47.9375em) {
}

/* Tablet */
@media (min-width: 48em) and (max-width: 61.9em) {
}

/* Desktop */
@media (min-width: 62em) {
}



/* ----------------------------------- */

/* These elements will be styled at their given breakpoints */
/* but can bleed from themselves over to wider breakpoints as well. */
/* Mobile */

#stacks_in_15993 .flux-container {
	

	row-gap: 30px;
	column-gap: 30px;
	
	
	
	
	
	
	grid-template-columns: repeat(1, 1fr);
	
	
	
	
	
	grid-auto-rows: auto;
	
	
	
	
	
	
	
	padding: 0px;
	

	
	border-width: 0px;
	

	border-color: rgba(204, 204, 204, 1.00);
	border-style: solid;
	
	
	border-radius: 0px;
	


	
	
	
	
	
	
	

	
	box-shadow: none;
	

}


/* Tablet */
@media (min-width: 48em) {
	
	#stacks_in_15993 .flux-container {
		

		row-gap: 30px;
		column-gap: 30px;
		
		
		
		
		grid-template-columns: repeat(3, 1fr);
		
		
		
		grid-auto-rows: auto;
		
		
		
		
		
			
		

		
			
		
		
		
			
		

		
		
		
		
		
		
		
		
		

		
		box-shadow: none;
		

	}
	
}

@media (min-width: 62em) {
	/* Desktop */
	
}

/* #stacks_in_15993 .flux-container {
	overflow: hidden;
} */







/* Mobile */
.stacks_in_15994-indv-item {
	display: flex;
	flex-flow: column;

	
	grid-column-end: span 1;
	grid-row-end: span 1;
	
	
	


	
	justify-content: flex-start;
	
	
		
	
		
	
	
	
	
	
	
	

	
	
	
	
	
		
	

	
	
	
	border-width: 0px;
	

	
	border-color: rgba(94, 95, 95, 1.00);
	

	border-style: solid;
	
	
}


@media (min-width: 48em) {
	/* Tablet */
	
	.stacks_in_15994-indv-item {
		display: flex;
		flex-flow: column;
		grid-column-end: span 1;
		grid-row-end: span 1;


		
		grid-column-end: span 1;
		grid-row-end: span 1;
		
		
		


		
		justify-content: flex-start;
		
		
		
		
			
		
		
		
		
		
		
		
				
		
	
		
	
		

		
			
		
		
		
	
	}
	

	.stacks_in_15994-indv-item {
		
	}
}

@media (min-width: 62em) {
	/* Desktop */
	

	.stacks_in_15994-indv-item {
		
	}
}











.stacks_in_15994-clickable-item {
	cursor: pointer;
}



.stacks_in_16003 img{width:100%;max-width:250px}




/* Mobile */
.stacks_in_16013-indv-item {
	display: flex;
	flex-flow: column;

	
	grid-column-end: span 1;
	grid-row-end: span 1;
	
	
	


	
	justify-content: flex-start;
	
	
		
	
		
	
	
	
	
	
	
	

	
	
	
	
	
		
	

	
	
	
	border-width: 0px;
	

	
	border-color: rgba(94, 95, 95, 1.00);
	

	border-style: solid;
	
	
}


@media (min-width: 48em) {
	/* Tablet */
	
	.stacks_in_16013-indv-item {
		display: flex;
		flex-flow: column;
		grid-column-end: span 1;
		grid-row-end: span 1;


		
		grid-column-end: span 1;
		grid-row-end: span 1;
		
		
		


		
		justify-content: flex-start;
		
		
		
		
			
		
		
		
		
		
		
		
				
		
	
		
	
		

		
			
		
		
		
	
	}
	

	.stacks_in_16013-indv-item {
		
	}
}

@media (min-width: 62em) {
	/* Desktop */
	

	.stacks_in_16013-indv-item {
		
	}
}











.stacks_in_16013-clickable-item {
	cursor: pointer;
}



.stacks_in_16021 img{width:100%;max-width:250px}




/* Mobile */
.stacks_in_16031-indv-item {
	display: flex;
	flex-flow: column;

	
	grid-column-end: span 1;
	grid-row-end: span 1;
	
	
	


	
	justify-content: flex-start;
	
	
		
	
		
	
	
	
	
	
	
	

	
	
	
	
	
		
	

	
	
	
	border-width: 0px;
	

	
	border-color: rgba(94, 95, 95, 1.00);
	

	border-style: solid;
	
	
}


@media (min-width: 48em) {
	/* Tablet */
	
	.stacks_in_16031-indv-item {
		display: flex;
		flex-flow: column;
		grid-column-end: span 1;
		grid-row-end: span 1;


		
		grid-column-end: span 1;
		grid-row-end: span 1;
		
		
		


		
		justify-content: flex-start;
		
		
		
		
			
		
		
		
		
		
		
		
				
		
	
		
	
		

		
			
		
		
		
	
	}
	

	.stacks_in_16031-indv-item {
		
	}
}

@media (min-width: 62em) {
	/* Desktop */
	

	.stacks_in_16031-indv-item {
		
	}
}











.stacks_in_16031-clickable-item {
	cursor: pointer;
}



.stacks_in_16039 img{width:100%;max-width:250px}

/* custom stuff */


#corner-stacks_in_9158_2 .corner-modal
{
  z-index: 9999;
  max-width:400px;
  max-height:500px;
}



#corner-stacks_in_9158_2 .corner-content {
	border:1px solid rgba(0, 0, 0, 0.40);
	border-radius:2px;
  background-color:rgba(255, 255, 255, 1.00);
  color: rgba(102, 102, 102, 1.00);
  overflow:auto;
}

#corner-stacks_in_9158_2 .corner-button
{
	font-family: Helvetica;
	font-size: 14px;
  font-weight: 700;
	border:2px solid rgba(255, 255, 255, 0.40);
	border-radius:22px;
  background-color:rgba(28, 138, 32, 1.00);
  color: rgba(255, 255, 255, 1.00);
  padding-top: 10px;
  padding-right: 20px;
  padding-bottom: 10px;
  padding-left: 20px;
  margin-top: 20px;
  margin-right: 20px;
  margin-bottom: 20px;
  margin-left: 20px;
  z-index: 9998;
}


#corner-stacks_in_9158_2 .corner-button.corner-tl,
#corner-stacks_in_9158_2 .corner-button.corner-tr {
  margin-top: -60px;
}

#corner-stacks_in_9158_2 .corner-button.corner-bl,
#corner-stacks_in_9158_2 .corner-button.corner-br {
  margin-bottom: -60px;
}


#corner-stacks_in_9158_2 .corner-content {
	padding-top: 10px;
  padding-right: 20px;
  padding-bottom: 10px;
  padding-left: 20px;
  margin-top: 10px;
  margin-right: 20px;
  margin-bottom: 20px;
  margin-left: 20px;
}

#corner-stacks_in_9158_2 .corner-button.corner-tl.corner-show,
#corner-stacks_in_9158_2 .corner-button.corner-tr.corner-show {
  margin-top: 20px;
}

#corner-stacks_in_9158_2 .corner-button.corner-bl.corner-show,
#corner-stacks_in_9158_2 .corner-button.corner-br.corner-show {
  margin-bottom: 20px;
}


/* hide the text in button on smaller screens */
@media only screen and (max-width: 770px)  
{ 
  #corner-stacks_in_9158_2 .corner-modal
  {
    width:100%;
    max-width:100%;
    max-height:100%;
    margin:0;
  }

  #corner-stacks_in_9158_2 .corner-content
  {
    margin:4px;
  }

  #corner-stacks_in_9158_2 span.corner-label { 
    display:none; 
  }
}




.margin-contact{margin:5rem ;}  
label{--header-color:rgba(255, 255, 255, 1.00);--subheader-color:rgba(138, 138, 138, 1.00);--small-color:rgba(202, 202, 202, 1.00);--text-color:rgba(255, 255, 255, 1.00);--link-color:rgba(0, 140, 186, 1.00);--link-color-hover:rgba(0, 102, 136, 1.00);--link-decoration:none;--link-decoration-hover:none}
.bg-grey{background-color:rgba(204, 204, 204, 1.00) ;background-position:center center ;background-origin:padding-box ;background-blend-mode:normal ;background-attachment:scroll   ;background-clip:border-box ;}@media (hover:none) and (pointer:coarse){.bg-grey{background-attachment:scroll!important}}
.white-font{color:rgba(255, 255, 255, 1.00) ;}






/* CSS GRID */
#stacks_out_15248,
#stacks_in_15248 {
	overflow: visible;
}


#stacks_in_15248 .flux-container {
	overflow: visible;
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	gap: 30px 30px;
	align-items: stretch;

	/* border: 1px solid red; */
	
	margin-bottom: 21px;
	
}

#stacks_in_15248 .flux-item > .stacks_out {
	margin: 0;
	padding: 0;
}


/* These elements will be styled _ONLY_ at their given breakpoints */
/* and will not bleed from one to the other. */

/* Mobile */
@media (max-width: 47.9375em) {
}

/* Tablet */
@media (min-width: 48em) and (max-width: 61.9em) {
}

/* Desktop */
@media (min-width: 62em) {
}



/* ----------------------------------- */

/* These elements will be styled at their given breakpoints */
/* but can bleed from themselves over to wider breakpoints as well. */
/* Mobile */

#stacks_in_15248 .flux-container {
	

	row-gap: 30px;
	column-gap: 30px;
	
	
	
	
	
	
	grid-template-columns: repeat(1, 1fr);
	
	
	
	
	
	grid-auto-rows: auto;
	
	
	
	
	
	
	
	padding: 0px;
	

	
	border-width: 0px;
	

	border-color: rgba(204, 204, 204, 1.00);
	border-style: solid;
	
	
	border-radius: 0px;
	


	
	
	
	
	
	
	

	
	box-shadow: none;
	

}


/* Tablet */
@media (min-width: 48em) {
	
	#stacks_in_15248 .flux-container {
		

		row-gap: 30px;
		column-gap: 30px;
		
		
		
		
		grid-template-columns: repeat(3, 1fr);
		
		
		
		grid-auto-rows: auto;
		
		
		
		
		
			
		

		
			
		
		
		
			
		

		
		
		
		
		
		
		
		
		

		
		box-shadow: none;
		

	}
	
}

@media (min-width: 62em) {
	/* Desktop */
	
}

/* #stacks_in_15248 .flux-container {
	overflow: hidden;
} */







/* Mobile */
.stacks_in_15249-indv-item {
	display: flex;
	flex-flow: column;

	
	grid-column-end: span 1;
	grid-row-end: span 1;
	
	
	


	
	justify-content: flex-start;
	
	
		
	
		
	
	
	
	
	
	
	

	
	
	
	
	
		
	

	
	
	
	border-width: 0px;
	

	
	border-color: rgba(94, 95, 95, 1.00);
	

	border-style: solid;
	
	
}


@media (min-width: 48em) {
	/* Tablet */
	
	.stacks_in_15249-indv-item {
		display: flex;
		flex-flow: column;
		grid-column-end: span 1;
		grid-row-end: span 1;


		
		grid-column-end: span 1;
		grid-row-end: span 1;
		
		
		


		
		justify-content: flex-start;
		
		
		
		
			
		
		
		
		
		
		
		
				
		
	
		
	
		

		
			
		
		
		
	
	}
	

	.stacks_in_15249-indv-item {
		
	}
}

@media (min-width: 62em) {
	/* Desktop */
	

	.stacks_in_15249-indv-item {
		
	}
}











.stacks_in_15249-clickable-item {
	cursor: pointer;
}



.stacks_in_15258 img{width:100%;max-width:250px}




/* Mobile */
.stacks_in_15268-indv-item {
	display: flex;
	flex-flow: column;

	
	grid-column-end: span 1;
	grid-row-end: span 1;
	
	
	


	
	justify-content: flex-start;
	
	
		
	
		
	
	
	
	
	
	
	

	
	
	
	
	
		
	

	
	
	
	border-width: 0px;
	

	
	border-color: rgba(94, 95, 95, 1.00);
	

	border-style: solid;
	
	
}


@media (min-width: 48em) {
	/* Tablet */
	
	.stacks_in_15268-indv-item {
		display: flex;
		flex-flow: column;
		grid-column-end: span 1;
		grid-row-end: span 1;


		
		grid-column-end: span 1;
		grid-row-end: span 1;
		
		
		


		
		justify-content: flex-start;
		
		
		
		
			
		
		
		
		
		
		
		
				
		
	
		
	
		

		
			
		
		
		
	
	}
	

	.stacks_in_15268-indv-item {
		
	}
}

@media (min-width: 62em) {
	/* Desktop */
	

	.stacks_in_15268-indv-item {
		
	}
}











.stacks_in_15268-clickable-item {
	cursor: pointer;
}



.stacks_in_15276 img{width:100%;max-width:250px}




/* Mobile */
.stacks_in_15286-indv-item {
	display: flex;
	flex-flow: column;

	
	grid-column-end: span 1;
	grid-row-end: span 1;
	
	
	


	
	justify-content: flex-start;
	
	
		
	
		
	
	
	
	
	
	
	

	
	
	
	
	
		
	

	
	
	
	border-width: 0px;
	

	
	border-color: rgba(94, 95, 95, 1.00);
	

	border-style: solid;
	
	
}


@media (min-width: 48em) {
	/* Tablet */
	
	.stacks_in_15286-indv-item {
		display: flex;
		flex-flow: column;
		grid-column-end: span 1;
		grid-row-end: span 1;


		
		grid-column-end: span 1;
		grid-row-end: span 1;
		
		
		


		
		justify-content: flex-start;
		
		
		
		
			
		
		
		
		
		
		
		
				
		
	
		
	
		

		
			
		
		
		
	
	}
	

	.stacks_in_15286-indv-item {
		
	}
}

@media (min-width: 62em) {
	/* Desktop */
	

	.stacks_in_15286-indv-item {
		
	}
}











.stacks_in_15286-clickable-item {
	cursor: pointer;
}



.stacks_in_15294 img{width:100%;max-width:250px}




/* CSS GRID */
#stacks_out_15306,
#stacks_in_15306 {
	overflow: visible;
}


#stacks_in_15306 .flux-container {
	overflow: visible;
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	gap: 30px 30px;
	align-items: stretch;

	/* border: 1px solid red; */
	
	margin-bottom: 21px;
	
}

#stacks_in_15306 .flux-item > .stacks_out {
	margin: 0;
	padding: 0;
}


/* These elements will be styled _ONLY_ at their given breakpoints */
/* and will not bleed from one to the other. */

/* Mobile */
@media (max-width: 47.9375em) {
}

/* Tablet */
@media (min-width: 48em) and (max-width: 61.9em) {
}

/* Desktop */
@media (min-width: 62em) {
}



/* ----------------------------------- */

/* These elements will be styled at their given breakpoints */
/* but can bleed from themselves over to wider breakpoints as well. */
/* Mobile */

#stacks_in_15306 .flux-container {
	

	row-gap: 30px;
	column-gap: 30px;
	
	
	
	
	
	
	grid-template-columns: repeat(1, 1fr);
	
	
	
	
	
	grid-auto-rows: auto;
	
	
	
	
	
	
	
	padding: 0px;
	

	
	border-width: 0px;
	

	border-color: rgba(204, 204, 204, 1.00);
	border-style: solid;
	
	
	border-radius: 0px;
	


	
	
	
	
	
	
	

	
	box-shadow: none;
	

}


/* Tablet */
@media (min-width: 48em) {
	
	#stacks_in_15306 .flux-container {
		

		row-gap: 30px;
		column-gap: 30px;
		
		
		
		
		grid-template-columns: repeat(3, 1fr);
		
		
		
		grid-auto-rows: auto;
		
		
		
		
		
			
		

		
			
		
		
		
			
		

		
		
		
		
		
		
		
		
		

		
		box-shadow: none;
		

	}
	
}

@media (min-width: 62em) {
	/* Desktop */
	
}

/* #stacks_in_15306 .flux-container {
	overflow: hidden;
} */







/* Mobile */
.stacks_in_15307-indv-item {
	display: flex;
	flex-flow: column;

	
	grid-column-end: span 1;
	grid-row-end: span 1;
	
	
	


	
	justify-content: flex-start;
	
	
		
	
		
	
	
	
	
	
	
	

	
	
	
	
	
		
	

	
	
	
	border-width: 0px;
	

	
	border-color: rgba(94, 95, 95, 1.00);
	

	border-style: solid;
	
	
}


@media (min-width: 48em) {
	/* Tablet */
	
	.stacks_in_15307-indv-item {
		display: flex;
		flex-flow: column;
		grid-column-end: span 1;
		grid-row-end: span 1;


		
		grid-column-end: span 1;
		grid-row-end: span 1;
		
		
		


		
		justify-content: flex-start;
		
		
		
		
			
		
		
		
		
		
		
		
				
		
	
		
	
		

		
			
		
		
		
	
	}
	

	.stacks_in_15307-indv-item {
		
	}
}

@media (min-width: 62em) {
	/* Desktop */
	

	.stacks_in_15307-indv-item {
		
	}
}











.stacks_in_15307-clickable-item {
	cursor: pointer;
}



.stacks_in_15316 img{width:100%;max-width:250px}




/* Mobile */
.stacks_in_15326-indv-item {
	display: flex;
	flex-flow: column;

	
	grid-column-end: span 1;
	grid-row-end: span 1;
	
	
	


	
	justify-content: flex-start;
	
	
		
	
		
	
	
	
	
	
	
	

	
	
	
	
	
		
	

	
	
	
	border-width: 0px;
	

	
	border-color: rgba(94, 95, 95, 1.00);
	

	border-style: solid;
	
	
}


@media (min-width: 48em) {
	/* Tablet */
	
	.stacks_in_15326-indv-item {
		display: flex;
		flex-flow: column;
		grid-column-end: span 1;
		grid-row-end: span 1;


		
		grid-column-end: span 1;
		grid-row-end: span 1;
		
		
		


		
		justify-content: flex-start;
		
		
		
		
			
		
		
		
		
		
		
		
				
		
	
		
	
		

		
			
		
		
		
	
	}
	

	.stacks_in_15326-indv-item {
		
	}
}

@media (min-width: 62em) {
	/* Desktop */
	

	.stacks_in_15326-indv-item {
		
	}
}











.stacks_in_15326-clickable-item {
	cursor: pointer;
}



.stacks_in_15334 img{width:100%;max-width:250px}




/* Mobile */
.stacks_in_15344-indv-item {
	display: flex;
	flex-flow: column;

	
	grid-column-end: span 1;
	grid-row-end: span 1;
	
	
	


	
	justify-content: flex-start;
	
	
		
	
		
	
	
	
	
	
	
	

	
	
	
	
	
		
	

	
	
	
	border-width: 0px;
	

	
	border-color: rgba(94, 95, 95, 1.00);
	

	border-style: solid;
	
	
}


@media (min-width: 48em) {
	/* Tablet */
	
	.stacks_in_15344-indv-item {
		display: flex;
		flex-flow: column;
		grid-column-end: span 1;
		grid-row-end: span 1;


		
		grid-column-end: span 1;
		grid-row-end: span 1;
		
		
		


		
		justify-content: flex-start;
		
		
		
		
			
		
		
		
		
		
		
		
				
		
	
		
	
		

		
			
		
		
		
	
	}
	

	.stacks_in_15344-indv-item {
		
	}
}

@media (min-width: 62em) {
	/* Desktop */
	

	.stacks_in_15344-indv-item {
		
	}
}











.stacks_in_15344-clickable-item {
	cursor: pointer;
}



.stacks_in_15352 img{width:100%;max-width:250px}




/* CSS GRID */
#stacks_out_15362,
#stacks_in_15362 {
	overflow: visible;
}


#stacks_in_15362 .flux-container {
	overflow: visible;
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	gap: 30px 30px;
	align-items: stretch;

	/* border: 1px solid red; */
	
	margin-bottom: 21px;
	
}

#stacks_in_15362 .flux-item > .stacks_out {
	margin: 0;
	padding: 0;
}


/* These elements will be styled _ONLY_ at their given breakpoints */
/* and will not bleed from one to the other. */

/* Mobile */
@media (max-width: 47.9375em) {
}

/* Tablet */
@media (min-width: 48em) and (max-width: 61.9em) {
}

/* Desktop */
@media (min-width: 62em) {
}



/* ----------------------------------- */

/* These elements will be styled at their given breakpoints */
/* but can bleed from themselves over to wider breakpoints as well. */
/* Mobile */

#stacks_in_15362 .flux-container {
	

	row-gap: 30px;
	column-gap: 30px;
	
	
	
	
	
	
	grid-template-columns: repeat(1, 1fr);
	
	
	
	
	
	grid-auto-rows: auto;
	
	
	
	
	
	
	
	padding: 0px;
	

	
	border-width: 0px;
	

	border-color: rgba(204, 204, 204, 1.00);
	border-style: solid;
	
	
	border-radius: 0px;
	


	
	
	
	
	
	
	

	
	box-shadow: none;
	

}


/* Tablet */
@media (min-width: 48em) {
	
	#stacks_in_15362 .flux-container {
		

		row-gap: 30px;
		column-gap: 30px;
		
		
		
		
		grid-template-columns: repeat(3, 1fr);
		
		
		
		grid-auto-rows: auto;
		
		
		
		
		
			
		

		
			
		
		
		
			
		

		
		
		
		
		
		
		
		
		

		
		box-shadow: none;
		

	}
	
}

@media (min-width: 62em) {
	/* Desktop */
	
}

/* #stacks_in_15362 .flux-container {
	overflow: hidden;
} */







/* Mobile */
.stacks_in_15363-indv-item {
	display: flex;
	flex-flow: column;

	
	grid-column-end: span 1;
	grid-row-end: span 1;
	
	
	


	
	justify-content: flex-start;
	
	
		
	
		
	
	
	
	
	
	
	

	
	
	
	
	
		
	

	
	
	
	border-width: 0px;
	

	
	border-color: rgba(94, 95, 95, 1.00);
	

	border-style: solid;
	
	
}


@media (min-width: 48em) {
	/* Tablet */
	
	.stacks_in_15363-indv-item {
		display: flex;
		flex-flow: column;
		grid-column-end: span 1;
		grid-row-end: span 1;


		
		grid-column-end: span 1;
		grid-row-end: span 1;
		
		
		


		
		justify-content: flex-start;
		
		
		
		
			
		
		
		
		
		
		
		
				
		
	
		
	
		

		
			
		
		
		
	
	}
	

	.stacks_in_15363-indv-item {
		
	}
}

@media (min-width: 62em) {
	/* Desktop */
	

	.stacks_in_15363-indv-item {
		
	}
}











.stacks_in_15363-clickable-item {
	cursor: pointer;
}



.stacks_in_15372 img{width:100%;max-width:250px}




/* Mobile */
.stacks_in_15382-indv-item {
	display: flex;
	flex-flow: column;

	
	grid-column-end: span 1;
	grid-row-end: span 1;
	
	
	


	
	justify-content: flex-start;
	
	
		
	
		
	
	
	
	
	
	
	

	
	
	
	
	
		
	

	
	
	
	border-width: 0px;
	

	
	border-color: rgba(94, 95, 95, 1.00);
	

	border-style: solid;
	
	
}


@media (min-width: 48em) {
	/* Tablet */
	
	.stacks_in_15382-indv-item {
		display: flex;
		flex-flow: column;
		grid-column-end: span 1;
		grid-row-end: span 1;


		
		grid-column-end: span 1;
		grid-row-end: span 1;
		
		
		


		
		justify-content: flex-start;
		
		
		
		
			
		
		
		
		
		
		
		
				
		
	
		
	
		

		
			
		
		
		
	
	}
	

	.stacks_in_15382-indv-item {
		
	}
}

@media (min-width: 62em) {
	/* Desktop */
	

	.stacks_in_15382-indv-item {
		
	}
}











.stacks_in_15382-clickable-item {
	cursor: pointer;
}



.stacks_in_15390 img{width:100%;max-width:250px}




/* Mobile */
.stacks_in_15398-indv-item {
	display: flex;
	flex-flow: column;

	
	grid-column-end: span 1;
	grid-row-end: span 1;
	
	
	


	
	justify-content: flex-start;
	
	
		
	
		
	
	
	
	
	
	
	

	
	
	
	
	
		
	

	
	
	
	border-width: 0px;
	

	
	border-color: rgba(94, 95, 95, 1.00);
	

	border-style: solid;
	
	
}


@media (min-width: 48em) {
	/* Tablet */
	
	.stacks_in_15398-indv-item {
		display: flex;
		flex-flow: column;
		grid-column-end: span 1;
		grid-row-end: span 1;


		
		grid-column-end: span 1;
		grid-row-end: span 1;
		
		
		


		
		justify-content: flex-start;
		
		
		
		
			
		
		
		
		
		
		
		
				
		
	
		
	
		

		
			
		
		
		
	
	}
	

	.stacks_in_15398-indv-item {
		
	}
}

@media (min-width: 62em) {
	/* Desktop */
	

	.stacks_in_15398-indv-item {
		
	}
}











.stacks_in_15398-clickable-item {
	cursor: pointer;
}



.stacks_in_15406 img{width:100%;max-width:250px}




/* CSS GRID */
#stacks_out_15416,
#stacks_in_15416 {
	overflow: visible;
}


#stacks_in_15416 .flux-container {
	overflow: visible;
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	gap: 30px 30px;
	align-items: stretch;

	/* border: 1px solid red; */
	
	margin-bottom: 21px;
	
}

#stacks_in_15416 .flux-item > .stacks_out {
	margin: 0;
	padding: 0;
}


/* These elements will be styled _ONLY_ at their given breakpoints */
/* and will not bleed from one to the other. */

/* Mobile */
@media (max-width: 47.9375em) {
}

/* Tablet */
@media (min-width: 48em) and (max-width: 61.9em) {
}

/* Desktop */
@media (min-width: 62em) {
}



/* ----------------------------------- */

/* These elements will be styled at their given breakpoints */
/* but can bleed from themselves over to wider breakpoints as well. */
/* Mobile */

#stacks_in_15416 .flux-container {
	

	row-gap: 30px;
	column-gap: 30px;
	
	
	
	
	
	
	grid-template-columns: repeat(1, 1fr);
	
	
	
	
	
	grid-auto-rows: auto;
	
	
	
	
	
	
	
	padding: 0px;
	

	
	border-width: 0px;
	

	border-color: rgba(204, 204, 204, 1.00);
	border-style: solid;
	
	
	border-radius: 0px;
	


	
	
	
	
	
	
	

	
	box-shadow: none;
	

}


/* Tablet */
@media (min-width: 48em) {
	
	#stacks_in_15416 .flux-container {
		

		row-gap: 30px;
		column-gap: 30px;
		
		
		
		
		grid-template-columns: repeat(3, 1fr);
		
		
		
		grid-auto-rows: auto;
		
		
		
		
		
			
		

		
			
		
		
		
			
		

		
		
		
		
		
		
		
		
		

		
		box-shadow: none;
		

	}
	
}

@media (min-width: 62em) {
	/* Desktop */
	
}

/* #stacks_in_15416 .flux-container {
	overflow: hidden;
} */







/* Mobile */
.stacks_in_15417-indv-item {
	display: flex;
	flex-flow: column;

	
	grid-column-end: span 1;
	grid-row-end: span 1;
	
	
	


	
	justify-content: flex-start;
	
	
		
	
		
	
	
	
	
	
	
	

	
	
	
	
	
		
	

	
	
	
	border-width: 0px;
	

	
	border-color: rgba(94, 95, 95, 1.00);
	

	border-style: solid;
	
	
}


@media (min-width: 48em) {
	/* Tablet */
	
	.stacks_in_15417-indv-item {
		display: flex;
		flex-flow: column;
		grid-column-end: span 1;
		grid-row-end: span 1;


		
		grid-column-end: span 1;
		grid-row-end: span 1;
		
		
		


		
		justify-content: flex-start;
		
		
		
		
			
		
		
		
		
		
		
		
				
		
	
		
	
		

		
			
		
		
		
	
	}
	

	.stacks_in_15417-indv-item {
		
	}
}

@media (min-width: 62em) {
	/* Desktop */
	

	.stacks_in_15417-indv-item {
		
	}
}











.stacks_in_15417-clickable-item {
	cursor: pointer;
}



.stacks_in_15426 img{width:100%;max-width:250px}




/* Mobile */
.stacks_in_15436-indv-item {
	display: flex;
	flex-flow: column;

	
	grid-column-end: span 1;
	grid-row-end: span 1;
	
	
	


	
	justify-content: flex-start;
	
	
		
	
		
	
	
	
	
	
	
	

	
	
	
	
	
		
	

	
	
	
	border-width: 0px;
	

	
	border-color: rgba(94, 95, 95, 1.00);
	

	border-style: solid;
	
	
}


@media (min-width: 48em) {
	/* Tablet */
	
	.stacks_in_15436-indv-item {
		display: flex;
		flex-flow: column;
		grid-column-end: span 1;
		grid-row-end: span 1;


		
		grid-column-end: span 1;
		grid-row-end: span 1;
		
		
		


		
		justify-content: flex-start;
		
		
		
		
			
		
		
		
		
		
		
		
				
		
	
		
	
		

		
			
		
		
		
	
	}
	

	.stacks_in_15436-indv-item {
		
	}
}

@media (min-width: 62em) {
	/* Desktop */
	

	.stacks_in_15436-indv-item {
		
	}
}











.stacks_in_15436-clickable-item {
	cursor: pointer;
}



.stacks_in_15444 img{width:100%;max-width:250px}




/* Mobile */
.stacks_in_15454-indv-item {
	display: flex;
	flex-flow: column;

	
	grid-column-end: span 1;
	grid-row-end: span 1;
	
	
	


	
	justify-content: flex-start;
	
	
		
	
		
	
	
	
	
	
	
	

	
	
	
	
	
		
	

	
	
	
	border-width: 0px;
	

	
	border-color: rgba(94, 95, 95, 1.00);
	

	border-style: solid;
	
	
}


@media (min-width: 48em) {
	/* Tablet */
	
	.stacks_in_15454-indv-item {
		display: flex;
		flex-flow: column;
		grid-column-end: span 1;
		grid-row-end: span 1;


		
		grid-column-end: span 1;
		grid-row-end: span 1;
		
		
		


		
		justify-content: flex-start;
		
		
		
		
			
		
		
		
		
		
		
		
				
		
	
		
	
		

		
			
		
		
		
	
	}
	

	.stacks_in_15454-indv-item {
		
	}
}

@media (min-width: 62em) {
	/* Desktop */
	

	.stacks_in_15454-indv-item {
		
	}
}











.stacks_in_15454-clickable-item {
	cursor: pointer;
}



.stacks_in_15462 img{width:100%;max-width:250px}




/* CSS GRID */
#stacks_out_15470,
#stacks_in_15470 {
	overflow: visible;
}


#stacks_in_15470 .flux-container {
	overflow: visible;
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	gap: 30px 30px;
	align-items: stretch;

	/* border: 1px solid red; */
	
	margin-bottom: 21px;
	
}

#stacks_in_15470 .flux-item > .stacks_out {
	margin: 0;
	padding: 0;
}


/* These elements will be styled _ONLY_ at their given breakpoints */
/* and will not bleed from one to the other. */

/* Mobile */
@media (max-width: 47.9375em) {
}

/* Tablet */
@media (min-width: 48em) and (max-width: 61.9em) {
}

/* Desktop */
@media (min-width: 62em) {
}



/* ----------------------------------- */

/* These elements will be styled at their given breakpoints */
/* but can bleed from themselves over to wider breakpoints as well. */
/* Mobile */

#stacks_in_15470 .flux-container {
	

	row-gap: 30px;
	column-gap: 30px;
	
	
	
	
	
	
	grid-template-columns: repeat(1, 1fr);
	
	
	
	
	
	grid-auto-rows: auto;
	
	
	
	
	
	
	
	padding: 0px;
	

	
	border-width: 0px;
	

	border-color: rgba(204, 204, 204, 1.00);
	border-style: solid;
	
	
	border-radius: 0px;
	


	
	
	
	
	
	
	

	
	box-shadow: none;
	

}


/* Tablet */
@media (min-width: 48em) {
	
	#stacks_in_15470 .flux-container {
		

		row-gap: 30px;
		column-gap: 30px;
		
		
		
		
		grid-template-columns: repeat(3, 1fr);
		
		
		
		grid-auto-rows: auto;
		
		
		
		
		
			
		

		
			
		
		
		
			
		

		
		
		
		
		
		
		
		
		

		
		box-shadow: none;
		

	}
	
}

@media (min-width: 62em) {
	/* Desktop */
	
}

/* #stacks_in_15470 .flux-container {
	overflow: hidden;
} */







/* Mobile */
.stacks_in_15471-indv-item {
	display: flex;
	flex-flow: column;

	
	grid-column-end: span 1;
	grid-row-end: span 1;
	
	
	


	
	justify-content: flex-start;
	
	
		
	
		
	
	
	
	
	
	
	

	
	
	
	
	
		
	

	
	
	
	border-width: 0px;
	

	
	border-color: rgba(94, 95, 95, 1.00);
	

	border-style: solid;
	
	
}


@media (min-width: 48em) {
	/* Tablet */
	
	.stacks_in_15471-indv-item {
		display: flex;
		flex-flow: column;
		grid-column-end: span 1;
		grid-row-end: span 1;


		
		grid-column-end: span 1;
		grid-row-end: span 1;
		
		
		


		
		justify-content: flex-start;
		
		
		
		
			
		
		
		
		
		
		
		
				
		
	
		
	
		

		
			
		
		
		
	
	}
	

	.stacks_in_15471-indv-item {
		
	}
}

@media (min-width: 62em) {
	/* Desktop */
	

	.stacks_in_15471-indv-item {
		
	}
}











.stacks_in_15471-clickable-item {
	cursor: pointer;
}



.stacks_in_15480 img{width:100%;max-width:250px}




/* Mobile */
.stacks_in_15490-indv-item {
	display: flex;
	flex-flow: column;

	
	grid-column-end: span 1;
	grid-row-end: span 1;
	
	
	


	
	justify-content: flex-start;
	
	
		
	
		
	
	
	
	
	
	
	

	
	
	
	
	
		
	

	
	
	
	border-width: 0px;
	

	
	border-color: rgba(94, 95, 95, 1.00);
	

	border-style: solid;
	
	
}


@media (min-width: 48em) {
	/* Tablet */
	
	.stacks_in_15490-indv-item {
		display: flex;
		flex-flow: column;
		grid-column-end: span 1;
		grid-row-end: span 1;


		
		grid-column-end: span 1;
		grid-row-end: span 1;
		
		
		


		
		justify-content: flex-start;
		
		
		
		
			
		
		
		
		
		
		
		
				
		
	
		
	
		

		
			
		
		
		
	
	}
	

	.stacks_in_15490-indv-item {
		
	}
}

@media (min-width: 62em) {
	/* Desktop */
	

	.stacks_in_15490-indv-item {
		
	}
}











.stacks_in_15490-clickable-item {
	cursor: pointer;
}



.stacks_in_15498 img{width:100%;max-width:250px}




/* Mobile */
.stacks_in_15508-indv-item {
	display: flex;
	flex-flow: column;

	
	grid-column-end: span 1;
	grid-row-end: span 1;
	
	
	


	
	justify-content: flex-start;
	
	
		
	
		
	
	
	
	
	
	
	

	
	
	
	
	
		
	

	
	
	
	border-width: 0px;
	

	
	border-color: rgba(94, 95, 95, 1.00);
	

	border-style: solid;
	
	
}


@media (min-width: 48em) {
	/* Tablet */
	
	.stacks_in_15508-indv-item {
		display: flex;
		flex-flow: column;
		grid-column-end: span 1;
		grid-row-end: span 1;


		
		grid-column-end: span 1;
		grid-row-end: span 1;
		
		
		


		
		justify-content: flex-start;
		
		
		
		
			
		
		
		
		
		
		
		
				
		
	
		
	
		

		
			
		
		
		
	
	}
	

	.stacks_in_15508-indv-item {
		
	}
}

@media (min-width: 62em) {
	/* Desktop */
	

	.stacks_in_15508-indv-item {
		
	}
}











.stacks_in_15508-clickable-item {
	cursor: pointer;
}



.stacks_in_15516 img{width:100%;max-width:250px}




/* CSS GRID */
#stacks_out_15526,
#stacks_in_15526 {
	overflow: visible;
}


#stacks_in_15526 .flux-container {
	overflow: visible;
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	gap: 30px 30px;
	align-items: stretch;

	/* border: 1px solid red; */
	
	margin-bottom: 21px;
	
}

#stacks_in_15526 .flux-item > .stacks_out {
	margin: 0;
	padding: 0;
}


/* These elements will be styled _ONLY_ at their given breakpoints */
/* and will not bleed from one to the other. */

/* Mobile */
@media (max-width: 47.9375em) {
}

/* Tablet */
@media (min-width: 48em) and (max-width: 61.9em) {
}

/* Desktop */
@media (min-width: 62em) {
}



/* ----------------------------------- */

/* These elements will be styled at their given breakpoints */
/* but can bleed from themselves over to wider breakpoints as well. */
/* Mobile */

#stacks_in_15526 .flux-container {
	

	row-gap: 30px;
	column-gap: 30px;
	
	
	
	
	
	
	grid-template-columns: repeat(1, 1fr);
	
	
	
	
	
	grid-auto-rows: auto;
	
	
	
	
	
	
	
	padding: 0px;
	

	
	border-width: 0px;
	

	border-color: rgba(204, 204, 204, 1.00);
	border-style: solid;
	
	
	border-radius: 0px;
	


	
	
	
	
	
	
	

	
	box-shadow: none;
	

}


/* Tablet */
@media (min-width: 48em) {
	
	#stacks_in_15526 .flux-container {
		

		row-gap: 30px;
		column-gap: 30px;
		
		
		
		
		grid-template-columns: repeat(3, 1fr);
		
		
		
		grid-auto-rows: auto;
		
		
		
		
		
			
		

		
			
		
		
		
			
		

		
		
		
		
		
		
		
		
		

		
		box-shadow: none;
		

	}
	
}

@media (min-width: 62em) {
	/* Desktop */
	
}

/* #stacks_in_15526 .flux-container {
	overflow: hidden;
} */







/* Mobile */
.stacks_in_15527-indv-item {
	display: flex;
	flex-flow: column;

	
	grid-column-end: span 1;
	grid-row-end: span 1;
	
	
	


	
	justify-content: flex-start;
	
	
		
	
		
	
	
	
	
	
	
	

	
	
	
	
	
		
	

	
	
	
	border-width: 0px;
	

	
	border-color: rgba(94, 95, 95, 1.00);
	

	border-style: solid;
	
	
}


@media (min-width: 48em) {
	/* Tablet */
	
	.stacks_in_15527-indv-item {
		display: flex;
		flex-flow: column;
		grid-column-end: span 1;
		grid-row-end: span 1;


		
		grid-column-end: span 1;
		grid-row-end: span 1;
		
		
		


		
		justify-content: flex-start;
		
		
		
		
			
		
		
		
		
		
		
		
				
		
	
		
	
		

		
			
		
		
		
	
	}
	

	.stacks_in_15527-indv-item {
		
	}
}

@media (min-width: 62em) {
	/* Desktop */
	

	.stacks_in_15527-indv-item {
		
	}
}











.stacks_in_15527-clickable-item {
	cursor: pointer;
}



.stacks_in_15536 img{width:100%;max-width:250px}




/* Mobile */
.stacks_in_15546-indv-item {
	display: flex;
	flex-flow: column;

	
	grid-column-end: span 1;
	grid-row-end: span 1;
	
	
	


	
	justify-content: flex-start;
	
	
		
	
		
	
	
	
	
	
	
	

	
	
	
	
	
		
	

	
	
	
	border-width: 0px;
	

	
	border-color: rgba(94, 95, 95, 1.00);
	

	border-style: solid;
	
	
}


@media (min-width: 48em) {
	/* Tablet */
	
	.stacks_in_15546-indv-item {
		display: flex;
		flex-flow: column;
		grid-column-end: span 1;
		grid-row-end: span 1;


		
		grid-column-end: span 1;
		grid-row-end: span 1;
		
		
		


		
		justify-content: flex-start;
		
		
		
		
			
		
		
		
		
		
		
		
				
		
	
		
	
		

		
			
		
		
		
	
	}
	

	.stacks_in_15546-indv-item {
		
	}
}

@media (min-width: 62em) {
	/* Desktop */
	

	.stacks_in_15546-indv-item {
		
	}
}











.stacks_in_15546-clickable-item {
	cursor: pointer;
}



.stacks_in_15554 img{width:100%;max-width:250px}




/* Mobile */
.stacks_in_15564-indv-item {
	display: flex;
	flex-flow: column;

	
	grid-column-end: span 1;
	grid-row-end: span 1;
	
	
	


	
	justify-content: flex-start;
	
	
		
	
		
	
	
	
	
	
	
	

	
	
	
	
	
		
	

	
	
	
	border-width: 0px;
	

	
	border-color: rgba(94, 95, 95, 1.00);
	

	border-style: solid;
	
	
}


@media (min-width: 48em) {
	/* Tablet */
	
	.stacks_in_15564-indv-item {
		display: flex;
		flex-flow: column;
		grid-column-end: span 1;
		grid-row-end: span 1;


		
		grid-column-end: span 1;
		grid-row-end: span 1;
		
		
		


		
		justify-content: flex-start;
		
		
		
		
			
		
		
		
		
		
		
		
				
		
	
		
	
		

		
			
		
		
		
	
	}
	

	.stacks_in_15564-indv-item {
		
	}
}

@media (min-width: 62em) {
	/* Desktop */
	

	.stacks_in_15564-indv-item {
		
	}
}











.stacks_in_15564-clickable-item {
	cursor: pointer;
}



.stacks_in_15572 img{width:100%;max-width:250px}




/* CSS GRID */
#stacks_out_15580,
#stacks_in_15580 {
	overflow: visible;
}


#stacks_in_15580 .flux-container {
	overflow: visible;
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	gap: 30px 30px;
	align-items: stretch;

	/* border: 1px solid red; */
	
	margin-bottom: 21px;
	
}

#stacks_in_15580 .flux-item > .stacks_out {
	margin: 0;
	padding: 0;
}


/* These elements will be styled _ONLY_ at their given breakpoints */
/* and will not bleed from one to the other. */

/* Mobile */
@media (max-width: 47.9375em) {
}

/* Tablet */
@media (min-width: 48em) and (max-width: 61.9em) {
}

/* Desktop */
@media (min-width: 62em) {
}



/* ----------------------------------- */

/* These elements will be styled at their given breakpoints */
/* but can bleed from themselves over to wider breakpoints as well. */
/* Mobile */

#stacks_in_15580 .flux-container {
	

	row-gap: 30px;
	column-gap: 30px;
	
	
	
	
	
	
	grid-template-columns: repeat(1, 1fr);
	
	
	
	
	
	grid-auto-rows: auto;
	
	
	
	
	
	
	
	padding: 0px;
	

	
	border-width: 0px;
	

	border-color: rgba(204, 204, 204, 1.00);
	border-style: solid;
	
	
	border-radius: 0px;
	


	
	
	
	
	
	
	

	
	box-shadow: none;
	

}


/* Tablet */
@media (min-width: 48em) {
	
	#stacks_in_15580 .flux-container {
		

		row-gap: 30px;
		column-gap: 30px;
		
		
		
		
		grid-template-columns: repeat(3, 1fr);
		
		
		
		grid-auto-rows: auto;
		
		
		
		
		
			
		

		
			
		
		
		
			
		

		
		
		
		
		
		
		
		
		

		
		box-shadow: none;
		

	}
	
}

@media (min-width: 62em) {
	/* Desktop */
	
}

/* #stacks_in_15580 .flux-container {
	overflow: hidden;
} */







/* Mobile */
.stacks_in_15581-indv-item {
	display: flex;
	flex-flow: column;

	
	grid-column-end: span 1;
	grid-row-end: span 1;
	
	
	


	
	justify-content: flex-start;
	
	
		
	
		
	
	
	
	
	
	
	

	
	
	
	
	
		
	

	
	
	
	border-width: 0px;
	

	
	border-color: rgba(94, 95, 95, 1.00);
	

	border-style: solid;
	
	
}


@media (min-width: 48em) {
	/* Tablet */
	
	.stacks_in_15581-indv-item {
		display: flex;
		flex-flow: column;
		grid-column-end: span 1;
		grid-row-end: span 1;


		
		grid-column-end: span 1;
		grid-row-end: span 1;
		
		
		


		
		justify-content: flex-start;
		
		
		
		
			
		
		
		
		
		
		
		
				
		
	
		
	
		

		
			
		
		
		
	
	}
	

	.stacks_in_15581-indv-item {
		
	}
}

@media (min-width: 62em) {
	/* Desktop */
	

	.stacks_in_15581-indv-item {
		
	}
}











.stacks_in_15581-clickable-item {
	cursor: pointer;
}



.stacks_in_15590 img{width:100%;max-width:250px}




/* Mobile */
.stacks_in_15600-indv-item {
	display: flex;
	flex-flow: column;

	
	grid-column-end: span 1;
	grid-row-end: span 1;
	
	
	


	
	justify-content: flex-start;
	
	
		
	
		
	
	
	
	
	
	
	

	
	
	
	
	
		
	

	
	
	
	border-width: 0px;
	

	
	border-color: rgba(94, 95, 95, 1.00);
	

	border-style: solid;
	
	
}


@media (min-width: 48em) {
	/* Tablet */
	
	.stacks_in_15600-indv-item {
		display: flex;
		flex-flow: column;
		grid-column-end: span 1;
		grid-row-end: span 1;


		
		grid-column-end: span 1;
		grid-row-end: span 1;
		
		
		


		
		justify-content: flex-start;
		
		
		
		
			
		
		
		
		
		
		
		
				
		
	
		
	
		

		
			
		
		
		
	
	}
	

	.stacks_in_15600-indv-item {
		
	}
}

@media (min-width: 62em) {
	/* Desktop */
	

	.stacks_in_15600-indv-item {
		
	}
}











.stacks_in_15600-clickable-item {
	cursor: pointer;
}



.stacks_in_15608 img{width:100%;max-width:250px}




/* Mobile */
.stacks_in_15618-indv-item {
	display: flex;
	flex-flow: column;

	
	grid-column-end: span 1;
	grid-row-end: span 1;
	
	
	


	
	justify-content: flex-start;
	
	
		
	
		
	
	
	
	
	
	
	

	
	
	
	
	
		
	

	
	
	
	border-width: 0px;
	

	
	border-color: rgba(94, 95, 95, 1.00);
	

	border-style: solid;
	
	
}


@media (min-width: 48em) {
	/* Tablet */
	
	.stacks_in_15618-indv-item {
		display: flex;
		flex-flow: column;
		grid-column-end: span 1;
		grid-row-end: span 1;


		
		grid-column-end: span 1;
		grid-row-end: span 1;
		
		
		


		
		justify-content: flex-start;
		
		
		
		
			
		
		
		
		
		
		
		
				
		
	
		
	
		

		
			
		
		
		
	
	}
	

	.stacks_in_15618-indv-item {
		
	}
}

@media (min-width: 62em) {
	/* Desktop */
	

	.stacks_in_15618-indv-item {
		
	}
}











.stacks_in_15618-clickable-item {
	cursor: pointer;
}



.stacks_in_15626 img{width:100%;max-width:250px}

/* custom stuff */


#corner-stacks_in_8907 .corner-modal
{
  z-index: 9999;
  max-width:400px;
  max-height:500px;
}



#corner-stacks_in_8907 .corner-content {
	border:1px solid rgba(0, 0, 0, 0.40);
	border-radius:2px;
  background-color:rgba(255, 255, 255, 1.00);
  color: rgba(102, 102, 102, 1.00);
  overflow:auto;
}

#corner-stacks_in_8907 .corner-button
{
	font-family: Helvetica;
	font-size: 14px;
  font-weight: 700;
	border:2px solid rgba(255, 255, 255, 0.40);
	border-radius:22px;
  background-color:rgba(28, 138, 32, 1.00);
  color: rgba(255, 255, 255, 1.00);
  padding-top: 10px;
  padding-right: 20px;
  padding-bottom: 10px;
  padding-left: 20px;
  margin-top: 20px;
  margin-right: 20px;
  margin-bottom: 20px;
  margin-left: 20px;
  z-index: 9998;
}


#corner-stacks_in_8907 .corner-button.corner-tl,
#corner-stacks_in_8907 .corner-button.corner-tr {
  margin-top: -60px;
}

#corner-stacks_in_8907 .corner-button.corner-bl,
#corner-stacks_in_8907 .corner-button.corner-br {
  margin-bottom: -60px;
}


#corner-stacks_in_8907 .corner-content {
	padding-top: 10px;
  padding-right: 20px;
  padding-bottom: 10px;
  padding-left: 20px;
  margin-top: 10px;
  margin-right: 20px;
  margin-bottom: 20px;
  margin-left: 20px;
}

#corner-stacks_in_8907 .corner-button.corner-tl.corner-show,
#corner-stacks_in_8907 .corner-button.corner-tr.corner-show {
  margin-top: 20px;
}

#corner-stacks_in_8907 .corner-button.corner-bl.corner-show,
#corner-stacks_in_8907 .corner-button.corner-br.corner-show {
  margin-bottom: 20px;
}


/* hide the text in button on smaller screens */
@media only screen and (max-width: 770px)  
{ 
  #corner-stacks_in_8907 .corner-modal
  {
    width:100%;
    max-width:100%;
    max-height:100%;
    margin:0;
  }

  #corner-stacks_in_8907 .corner-content
  {
    margin:4px;
  }

  #corner-stacks_in_8907 span.corner-label { 
    display:none; 
  }
}




.margin-contact{margin:5rem ;}  
label{--header-color:rgba(255, 255, 255, 1.00);--subheader-color:rgba(138, 138, 138, 1.00);--small-color:rgba(202, 202, 202, 1.00);--text-color:rgba(255, 255, 255, 1.00);--link-color:rgba(0, 140, 186, 1.00);--link-color-hover:rgba(0, 102, 136, 1.00);--link-decoration:none;--link-decoration-hover:none}
.bg-grey{background-color:rgba(204, 204, 204, 1.00) ;background-position:center center ;background-origin:padding-box ;background-blend-mode:normal ;background-attachment:scroll   ;background-clip:border-box ;}@media (hover:none) and (pointer:coarse){.bg-grey{background-attachment:scroll!important}}
.white-font{color:rgba(255, 255, 255, 1.00) ;}






/* CSS GRID */
#stacks_out_14835,
#stacks_in_14835 {
	overflow: visible;
}


#stacks_in_14835 .flux-container {
	overflow: visible;
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	gap: 30px 30px;
	align-items: stretch;

	/* border: 1px solid red; */
	
	margin-bottom: 21px;
	
}

#stacks_in_14835 .flux-item > .stacks_out {
	margin: 0;
	padding: 0;
}


/* These elements will be styled _ONLY_ at their given breakpoints */
/* and will not bleed from one to the other. */

/* Mobile */
@media (max-width: 47.9375em) {
}

/* Tablet */
@media (min-width: 48em) and (max-width: 61.9em) {
}

/* Desktop */
@media (min-width: 62em) {
}



/* ----------------------------------- */

/* These elements will be styled at their given breakpoints */
/* but can bleed from themselves over to wider breakpoints as well. */
/* Mobile */

#stacks_in_14835 .flux-container {
	

	row-gap: 30px;
	column-gap: 30px;
	
	
	
	
	
	
	grid-template-columns: repeat(1, 1fr);
	
	
	
	
	
	grid-auto-rows: auto;
	
	
	
	
	
	
	
	padding: 0px;
	

	
	border-width: 0px;
	

	border-color: rgba(204, 204, 204, 1.00);
	border-style: solid;
	
	
	border-radius: 0px;
	


	
	
	
	
	
	
	

	
	box-shadow: none;
	

}


/* Tablet */
@media (min-width: 48em) {
	
	#stacks_in_14835 .flux-container {
		

		row-gap: 30px;
		column-gap: 30px;
		
		
		
		
		grid-template-columns: repeat(3, 1fr);
		
		
		
		grid-auto-rows: auto;
		
		
		
		
		
			
		

		
			
		
		
		
			
		

		
		
		
		
		
		
		
		
		

		
		box-shadow: none;
		

	}
	
}

@media (min-width: 62em) {
	/* Desktop */
	
}

/* #stacks_in_14835 .flux-container {
	overflow: hidden;
} */







/* Mobile */
.stacks_in_14836-indv-item {
	display: flex;
	flex-flow: column;

	
	grid-column-end: span 1;
	grid-row-end: span 1;
	
	
	


	
	justify-content: flex-start;
	
	
		
	
		
	
	
	
	
	
	
	

	
	
	
	
	
		
	

	
	
	
	border-width: 0px;
	

	
	border-color: rgba(94, 95, 95, 1.00);
	

	border-style: solid;
	
	
}


@media (min-width: 48em) {
	/* Tablet */
	
	.stacks_in_14836-indv-item {
		display: flex;
		flex-flow: column;
		grid-column-end: span 1;
		grid-row-end: span 1;


		
		grid-column-end: span 1;
		grid-row-end: span 1;
		
		
		


		
		justify-content: flex-start;
		
		
		
		
			
		
		
		
		
		
		
		
				
		
	
		
	
		

		
			
		
		
		
	
	}
	

	.stacks_in_14836-indv-item {
		
	}
}

@media (min-width: 62em) {
	/* Desktop */
	

	.stacks_in_14836-indv-item {
		
	}
}











.stacks_in_14836-clickable-item {
	cursor: pointer;
}



.stacks_in_14845 img{width:100%;max-width:250px}




/* Mobile */
.stacks_in_14855-indv-item {
	display: flex;
	flex-flow: column;

	
	grid-column-end: span 1;
	grid-row-end: span 1;
	
	
	


	
	justify-content: flex-start;
	
	
		
	
		
	
	
	
	
	
	
	

	
	
	
	
	
		
	

	
	
	
	border-width: 0px;
	

	
	border-color: rgba(94, 95, 95, 1.00);
	

	border-style: solid;
	
	
}


@media (min-width: 48em) {
	/* Tablet */
	
	.stacks_in_14855-indv-item {
		display: flex;
		flex-flow: column;
		grid-column-end: span 1;
		grid-row-end: span 1;


		
		grid-column-end: span 1;
		grid-row-end: span 1;
		
		
		


		
		justify-content: flex-start;
		
		
		
		
			
		
		
		
		
		
		
		
				
		
	
		
	
		

		
			
		
		
		
	
	}
	

	.stacks_in_14855-indv-item {
		
	}
}

@media (min-width: 62em) {
	/* Desktop */
	

	.stacks_in_14855-indv-item {
		
	}
}











.stacks_in_14855-clickable-item {
	cursor: pointer;
}



.stacks_in_14863 img{width:100%;max-width:250px}




/* Mobile */
.stacks_in_14873-indv-item {
	display: flex;
	flex-flow: column;

	
	grid-column-end: span 1;
	grid-row-end: span 1;
	
	
	


	
	justify-content: flex-start;
	
	
		
	
		
	
	
	
	
	
	
	

	
	
	
	
	
		
	

	
	
	
	border-width: 0px;
	

	
	border-color: rgba(94, 95, 95, 1.00);
	

	border-style: solid;
	
	
}


@media (min-width: 48em) {
	/* Tablet */
	
	.stacks_in_14873-indv-item {
		display: flex;
		flex-flow: column;
		grid-column-end: span 1;
		grid-row-end: span 1;


		
		grid-column-end: span 1;
		grid-row-end: span 1;
		
		
		


		
		justify-content: flex-start;
		
		
		
		
			
		
		
		
		
		
		
		
				
		
	
		
	
		

		
			
		
		
		
	
	}
	

	.stacks_in_14873-indv-item {
		
	}
}

@media (min-width: 62em) {
	/* Desktop */
	

	.stacks_in_14873-indv-item {
		
	}
}











.stacks_in_14873-clickable-item {
	cursor: pointer;
}



.stacks_in_14881 img{width:100%;max-width:250px}




/* CSS GRID */
#stacks_out_14893,
#stacks_in_14893 {
	overflow: visible;
}


#stacks_in_14893 .flux-container {
	overflow: visible;
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	gap: 30px 30px;
	align-items: stretch;

	/* border: 1px solid red; */
	
	margin-bottom: 21px;
	
}

#stacks_in_14893 .flux-item > .stacks_out {
	margin: 0;
	padding: 0;
}


/* These elements will be styled _ONLY_ at their given breakpoints */
/* and will not bleed from one to the other. */

/* Mobile */
@media (max-width: 47.9375em) {
}

/* Tablet */
@media (min-width: 48em) and (max-width: 61.9em) {
}

/* Desktop */
@media (min-width: 62em) {
}



/* ----------------------------------- */

/* These elements will be styled at their given breakpoints */
/* but can bleed from themselves over to wider breakpoints as well. */
/* Mobile */

#stacks_in_14893 .flux-container {
	

	row-gap: 30px;
	column-gap: 30px;
	
	
	
	
	
	
	grid-template-columns: repeat(1, 1fr);
	
	
	
	
	
	grid-auto-rows: auto;
	
	
	
	
	
	
	
	padding: 0px;
	

	
	border-width: 0px;
	

	border-color: rgba(204, 204, 204, 1.00);
	border-style: solid;
	
	
	border-radius: 0px;
	


	
	
	
	
	
	
	

	
	box-shadow: none;
	

}


/* Tablet */
@media (min-width: 48em) {
	
	#stacks_in_14893 .flux-container {
		

		row-gap: 30px;
		column-gap: 30px;
		
		
		
		
		grid-template-columns: repeat(3, 1fr);
		
		
		
		grid-auto-rows: auto;
		
		
		
		
		
			
		

		
			
		
		
		
			
		

		
		
		
		
		
		
		
		
		

		
		box-shadow: none;
		

	}
	
}

@media (min-width: 62em) {
	/* Desktop */
	
}

/* #stacks_in_14893 .flux-container {
	overflow: hidden;
} */







/* Mobile */
.stacks_in_14894-indv-item {
	display: flex;
	flex-flow: column;

	
	grid-column-end: span 1;
	grid-row-end: span 1;
	
	
	


	
	justify-content: flex-start;
	
	
		
	
		
	
	
	
	
	
	
	

	
	
	
	
	
		
	

	
	
	
	border-width: 0px;
	

	
	border-color: rgba(94, 95, 95, 1.00);
	

	border-style: solid;
	
	
}


@media (min-width: 48em) {
	/* Tablet */
	
	.stacks_in_14894-indv-item {
		display: flex;
		flex-flow: column;
		grid-column-end: span 1;
		grid-row-end: span 1;


		
		grid-column-end: span 1;
		grid-row-end: span 1;
		
		
		


		
		justify-content: flex-start;
		
		
		
		
			
		
		
		
		
		
		
		
				
		
	
		
	
		

		
			
		
		
		
	
	}
	

	.stacks_in_14894-indv-item {
		
	}
}

@media (min-width: 62em) {
	/* Desktop */
	

	.stacks_in_14894-indv-item {
		
	}
}











.stacks_in_14894-clickable-item {
	cursor: pointer;
}



.stacks_in_14903 img{width:100%;max-width:250px}




/* Mobile */
.stacks_in_14913-indv-item {
	display: flex;
	flex-flow: column;

	
	grid-column-end: span 1;
	grid-row-end: span 1;
	
	
	


	
	justify-content: flex-start;
	
	
		
	
		
	
	
	
	
	
	
	

	
	
	
	
	
		
	

	
	
	
	border-width: 0px;
	

	
	border-color: rgba(94, 95, 95, 1.00);
	

	border-style: solid;
	
	
}


@media (min-width: 48em) {
	/* Tablet */
	
	.stacks_in_14913-indv-item {
		display: flex;
		flex-flow: column;
		grid-column-end: span 1;
		grid-row-end: span 1;


		
		grid-column-end: span 1;
		grid-row-end: span 1;
		
		
		


		
		justify-content: flex-start;
		
		
		
		
			
		
		
		
		
		
		
		
				
		
	
		
	
		

		
			
		
		
		
	
	}
	

	.stacks_in_14913-indv-item {
		
	}
}

@media (min-width: 62em) {
	/* Desktop */
	

	.stacks_in_14913-indv-item {
		
	}
}











.stacks_in_14913-clickable-item {
	cursor: pointer;
}



.stacks_in_14921 img{width:100%;max-width:250px}




/* Mobile */
.stacks_in_14929-indv-item {
	display: flex;
	flex-flow: column;

	
	grid-column-end: span 1;
	grid-row-end: span 1;
	
	
	


	
	justify-content: flex-start;
	
	
		
	
		
	
	
	
	
	
	
	

	
	
	
	
	
		
	

	
	
	
	border-width: 0px;
	

	
	border-color: rgba(94, 95, 95, 1.00);
	

	border-style: solid;
	
	
}


@media (min-width: 48em) {
	/* Tablet */
	
	.stacks_in_14929-indv-item {
		display: flex;
		flex-flow: column;
		grid-column-end: span 1;
		grid-row-end: span 1;


		
		grid-column-end: span 1;
		grid-row-end: span 1;
		
		
		


		
		justify-content: flex-start;
		
		
		
		
			
		
		
		
		
		
		
		
				
		
	
		
	
		

		
			
		
		
		
	
	}
	

	.stacks_in_14929-indv-item {
		
	}
}

@media (min-width: 62em) {
	/* Desktop */
	

	.stacks_in_14929-indv-item {
		
	}
}











.stacks_in_14929-clickable-item {
	cursor: pointer;
}



.stacks_in_14937 img{width:100%;max-width:250px}




/* CSS GRID */
#stacks_out_14947,
#stacks_in_14947 {
	overflow: visible;
}


#stacks_in_14947 .flux-container {
	overflow: visible;
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	gap: 30px 30px;
	align-items: stretch;

	/* border: 1px solid red; */
	
	margin-bottom: 21px;
	
}

#stacks_in_14947 .flux-item > .stacks_out {
	margin: 0;
	padding: 0;
}


/* These elements will be styled _ONLY_ at their given breakpoints */
/* and will not bleed from one to the other. */

/* Mobile */
@media (max-width: 47.9375em) {
}

/* Tablet */
@media (min-width: 48em) and (max-width: 61.9em) {
}

/* Desktop */
@media (min-width: 62em) {
}



/* ----------------------------------- */

/* These elements will be styled at their given breakpoints */
/* but can bleed from themselves over to wider breakpoints as well. */
/* Mobile */

#stacks_in_14947 .flux-container {
	

	row-gap: 30px;
	column-gap: 30px;
	
	
	
	
	
	
	grid-template-columns: repeat(1, 1fr);
	
	
	
	
	
	grid-auto-rows: auto;
	
	
	
	
	
	
	
	padding: 0px;
	

	
	border-width: 0px;
	

	border-color: rgba(204, 204, 204, 1.00);
	border-style: solid;
	
	
	border-radius: 0px;
	


	
	
	
	
	
	
	

	
	box-shadow: none;
	

}


/* Tablet */
@media (min-width: 48em) {
	
	#stacks_in_14947 .flux-container {
		

		row-gap: 30px;
		column-gap: 30px;
		
		
		
		
		grid-template-columns: repeat(3, 1fr);
		
		
		
		grid-auto-rows: auto;
		
		
		
		
		
			
		

		
			
		
		
		
			
		

		
		
		
		
		
		
		
		
		

		
		box-shadow: none;
		

	}
	
}

@media (min-width: 62em) {
	/* Desktop */
	
}

/* #stacks_in_14947 .flux-container {
	overflow: hidden;
} */







/* Mobile */
.stacks_in_14948-indv-item {
	display: flex;
	flex-flow: column;

	
	grid-column-end: span 1;
	grid-row-end: span 1;
	
	
	


	
	justify-content: flex-start;
	
	
		
	
		
	
	
	
	
	
	
	

	
	
	
	
	
		
	

	
	
	
	border-width: 0px;
	

	
	border-color: rgba(94, 95, 95, 1.00);
	

	border-style: solid;
	
	
}


@media (min-width: 48em) {
	/* Tablet */
	
	.stacks_in_14948-indv-item {
		display: flex;
		flex-flow: column;
		grid-column-end: span 1;
		grid-row-end: span 1;


		
		grid-column-end: span 1;
		grid-row-end: span 1;
		
		
		


		
		justify-content: flex-start;
		
		
		
		
			
		
		
		
		
		
		
		
				
		
	
		
	
		

		
			
		
		
		
	
	}
	

	.stacks_in_14948-indv-item {
		
	}
}

@media (min-width: 62em) {
	/* Desktop */
	

	.stacks_in_14948-indv-item {
		
	}
}











.stacks_in_14948-clickable-item {
	cursor: pointer;
}



.stacks_in_14957 img{width:100%;max-width:250px}




/* Mobile */
.stacks_in_14967-indv-item {
	display: flex;
	flex-flow: column;

	
	grid-column-end: span 1;
	grid-row-end: span 1;
	
	
	


	
	justify-content: flex-start;
	
	
		
	
		
	
	
	
	
	
	
	

	
	
	
	
	
		
	

	
	
	
	border-width: 0px;
	

	
	border-color: rgba(94, 95, 95, 1.00);
	

	border-style: solid;
	
	
}


@media (min-width: 48em) {
	/* Tablet */
	
	.stacks_in_14967-indv-item {
		display: flex;
		flex-flow: column;
		grid-column-end: span 1;
		grid-row-end: span 1;


		
		grid-column-end: span 1;
		grid-row-end: span 1;
		
		
		


		
		justify-content: flex-start;
		
		
		
		
			
		
		
		
		
		
		
		
				
		
	
		
	
		

		
			
		
		
		
	
	}
	

	.stacks_in_14967-indv-item {
		
	}
}

@media (min-width: 62em) {
	/* Desktop */
	

	.stacks_in_14967-indv-item {
		
	}
}











.stacks_in_14967-clickable-item {
	cursor: pointer;
}



.stacks_in_14975 img{width:100%;max-width:250px}




/* Mobile */
.stacks_in_14983-indv-item {
	display: flex;
	flex-flow: column;

	
	grid-column-end: span 1;
	grid-row-end: span 1;
	
	
	


	
	justify-content: flex-start;
	
	
		
	
		
	
	
	
	
	
	
	

	
	
	
	
	
		
	

	
	
	
	border-width: 0px;
	

	
	border-color: rgba(94, 95, 95, 1.00);
	

	border-style: solid;
	
	
}


@media (min-width: 48em) {
	/* Tablet */
	
	.stacks_in_14983-indv-item {
		display: flex;
		flex-flow: column;
		grid-column-end: span 1;
		grid-row-end: span 1;


		
		grid-column-end: span 1;
		grid-row-end: span 1;
		
		
		


		
		justify-content: flex-start;
		
		
		
		
			
		
		
		
		
		
		
		
				
		
	
		
	
		

		
			
		
		
		
	
	}
	

	.stacks_in_14983-indv-item {
		
	}
}

@media (min-width: 62em) {
	/* Desktop */
	

	.stacks_in_14983-indv-item {
		
	}
}











.stacks_in_14983-clickable-item {
	cursor: pointer;
}



.stacks_in_14991 img{width:100%;max-width:250px}




/* CSS GRID */
#stacks_out_15001,
#stacks_in_15001 {
	overflow: visible;
}


#stacks_in_15001 .flux-container {
	overflow: visible;
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	gap: 30px 30px;
	align-items: stretch;

	/* border: 1px solid red; */
	
	margin-bottom: 21px;
	
}

#stacks_in_15001 .flux-item > .stacks_out {
	margin: 0;
	padding: 0;
}


/* These elements will be styled _ONLY_ at their given breakpoints */
/* and will not bleed from one to the other. */

/* Mobile */
@media (max-width: 47.9375em) {
}

/* Tablet */
@media (min-width: 48em) and (max-width: 61.9em) {
}

/* Desktop */
@media (min-width: 62em) {
}



/* ----------------------------------- */

/* These elements will be styled at their given breakpoints */
/* but can bleed from themselves over to wider breakpoints as well. */
/* Mobile */

#stacks_in_15001 .flux-container {
	

	row-gap: 30px;
	column-gap: 30px;
	
	
	
	
	
	
	grid-template-columns: repeat(1, 1fr);
	
	
	
	
	
	grid-auto-rows: auto;
	
	
	
	
	
	
	
	padding: 0px;
	

	
	border-width: 0px;
	

	border-color: rgba(204, 204, 204, 1.00);
	border-style: solid;
	
	
	border-radius: 0px;
	


	
	
	
	
	
	
	

	
	box-shadow: none;
	

}


/* Tablet */
@media (min-width: 48em) {
	
	#stacks_in_15001 .flux-container {
		

		row-gap: 30px;
		column-gap: 30px;
		
		
		
		
		grid-template-columns: repeat(3, 1fr);
		
		
		
		grid-auto-rows: auto;
		
		
		
		
		
			
		

		
			
		
		
		
			
		

		
		
		
		
		
		
		
		
		

		
		box-shadow: none;
		

	}
	
}

@media (min-width: 62em) {
	/* Desktop */
	
}

/* #stacks_in_15001 .flux-container {
	overflow: hidden;
} */







/* Mobile */
.stacks_in_15002-indv-item {
	display: flex;
	flex-flow: column;

	
	grid-column-end: span 1;
	grid-row-end: span 1;
	
	
	


	
	justify-content: flex-start;
	
	
		
	
		
	
	
	
	
	
	
	

	
	
	
	
	
		
	

	
	
	
	border-width: 0px;
	

	
	border-color: rgba(94, 95, 95, 1.00);
	

	border-style: solid;
	
	
}


@media (min-width: 48em) {
	/* Tablet */
	
	.stacks_in_15002-indv-item {
		display: flex;
		flex-flow: column;
		grid-column-end: span 1;
		grid-row-end: span 1;


		
		grid-column-end: span 1;
		grid-row-end: span 1;
		
		
		


		
		justify-content: flex-start;
		
		
		
		
			
		
		
		
		
		
		
		
				
		
	
		
	
		

		
			
		
		
		
	
	}
	

	.stacks_in_15002-indv-item {
		
	}
}

@media (min-width: 62em) {
	/* Desktop */
	

	.stacks_in_15002-indv-item {
		
	}
}











.stacks_in_15002-clickable-item {
	cursor: pointer;
}



.stacks_in_15011 img{width:100%;max-width:250px}




/* Mobile */
.stacks_in_15021-indv-item {
	display: flex;
	flex-flow: column;

	
	grid-column-end: span 1;
	grid-row-end: span 1;
	
	
	


	
	justify-content: flex-start;
	
	
		
	
		
	
	
	
	
	
	
	

	
	
	
	
	
		
	

	
	
	
	border-width: 0px;
	

	
	border-color: rgba(94, 95, 95, 1.00);
	

	border-style: solid;
	
	
}


@media (min-width: 48em) {
	/* Tablet */
	
	.stacks_in_15021-indv-item {
		display: flex;
		flex-flow: column;
		grid-column-end: span 1;
		grid-row-end: span 1;


		
		grid-column-end: span 1;
		grid-row-end: span 1;
		
		
		


		
		justify-content: flex-start;
		
		
		
		
			
		
		
		
		
		
		
		
				
		
	
		
	
		

		
			
		
		
		
	
	}
	

	.stacks_in_15021-indv-item {
		
	}
}

@media (min-width: 62em) {
	/* Desktop */
	

	.stacks_in_15021-indv-item {
		
	}
}











.stacks_in_15021-clickable-item {
	cursor: pointer;
}



.stacks_in_15029 img{width:100%;max-width:250px}




/* Mobile */
.stacks_in_15039-indv-item {
	display: flex;
	flex-flow: column;

	
	grid-column-end: span 1;
	grid-row-end: span 1;
	
	
	


	
	justify-content: flex-start;
	
	
		
	
		
	
	
	
	
	
	
	

	
	
	
	
	
		
	

	
	
	
	border-width: 0px;
	

	
	border-color: rgba(94, 95, 95, 1.00);
	

	border-style: solid;
	
	
}


@media (min-width: 48em) {
	/* Tablet */
	
	.stacks_in_15039-indv-item {
		display: flex;
		flex-flow: column;
		grid-column-end: span 1;
		grid-row-end: span 1;


		
		grid-column-end: span 1;
		grid-row-end: span 1;
		
		
		


		
		justify-content: flex-start;
		
		
		
		
			
		
		
		
		
		
		
		
				
		
	
		
	
		

		
			
		
		
		
	
	}
	

	.stacks_in_15039-indv-item {
		
	}
}

@media (min-width: 62em) {
	/* Desktop */
	

	.stacks_in_15039-indv-item {
		
	}
}











.stacks_in_15039-clickable-item {
	cursor: pointer;
}



.stacks_in_15047 img{width:100%;max-width:250px}




/* CSS GRID */
#stacks_out_15055,
#stacks_in_15055 {
	overflow: visible;
}


#stacks_in_15055 .flux-container {
	overflow: visible;
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	gap: 30px 30px;
	align-items: stretch;

	/* border: 1px solid red; */
	
	margin-bottom: 21px;
	
}

#stacks_in_15055 .flux-item > .stacks_out {
	margin: 0;
	padding: 0;
}


/* These elements will be styled _ONLY_ at their given breakpoints */
/* and will not bleed from one to the other. */

/* Mobile */
@media (max-width: 47.9375em) {
}

/* Tablet */
@media (min-width: 48em) and (max-width: 61.9em) {
}

/* Desktop */
@media (min-width: 62em) {
}



/* ----------------------------------- */

/* These elements will be styled at their given breakpoints */
/* but can bleed from themselves over to wider breakpoints as well. */
/* Mobile */

#stacks_in_15055 .flux-container {
	

	row-gap: 30px;
	column-gap: 30px;
	
	
	
	
	
	
	grid-template-columns: repeat(1, 1fr);
	
	
	
	
	
	grid-auto-rows: auto;
	
	
	
	
	
	
	
	padding: 0px;
	

	
	border-width: 0px;
	

	border-color: rgba(204, 204, 204, 1.00);
	border-style: solid;
	
	
	border-radius: 0px;
	


	
	
	
	
	
	
	

	
	box-shadow: none;
	

}


/* Tablet */
@media (min-width: 48em) {
	
	#stacks_in_15055 .flux-container {
		

		row-gap: 30px;
		column-gap: 30px;
		
		
		
		
		grid-template-columns: repeat(3, 1fr);
		
		
		
		grid-auto-rows: auto;
		
		
		
		
		
			
		

		
			
		
		
		
			
		

		
		
		
		
		
		
		
		
		

		
		box-shadow: none;
		

	}
	
}

@media (min-width: 62em) {
	/* Desktop */
	
}

/* #stacks_in_15055 .flux-container {
	overflow: hidden;
} */







/* Mobile */
.stacks_in_15056-indv-item {
	display: flex;
	flex-flow: column;

	
	grid-column-end: span 1;
	grid-row-end: span 1;
	
	
	


	
	justify-content: flex-start;
	
	
		
	
		
	
	
	
	
	
	
	

	
	
	
	
	
		
	

	
	
	
	border-width: 0px;
	

	
	border-color: rgba(94, 95, 95, 1.00);
	

	border-style: solid;
	
	
}


@media (min-width: 48em) {
	/* Tablet */
	
	.stacks_in_15056-indv-item {
		display: flex;
		flex-flow: column;
		grid-column-end: span 1;
		grid-row-end: span 1;


		
		grid-column-end: span 1;
		grid-row-end: span 1;
		
		
		


		
		justify-content: flex-start;
		
		
		
		
			
		
		
		
		
		
		
		
				
		
	
		
	
		

		
			
		
		
		
	
	}
	

	.stacks_in_15056-indv-item {
		
	}
}

@media (min-width: 62em) {
	/* Desktop */
	

	.stacks_in_15056-indv-item {
		
	}
}











.stacks_in_15056-clickable-item {
	cursor: pointer;
}



.stacks_in_15065 img{width:100%;max-width:250px}




/* Mobile */
.stacks_in_15075-indv-item {
	display: flex;
	flex-flow: column;

	
	grid-column-end: span 1;
	grid-row-end: span 1;
	
	
	


	
	justify-content: flex-start;
	
	
		
	
		
	
	
	
	
	
	
	

	
	
	
	
	
		
	

	
	
	
	border-width: 0px;
	

	
	border-color: rgba(94, 95, 95, 1.00);
	

	border-style: solid;
	
	
}


@media (min-width: 48em) {
	/* Tablet */
	
	.stacks_in_15075-indv-item {
		display: flex;
		flex-flow: column;
		grid-column-end: span 1;
		grid-row-end: span 1;


		
		grid-column-end: span 1;
		grid-row-end: span 1;
		
		
		


		
		justify-content: flex-start;
		
		
		
		
			
		
		
		
		
		
		
		
				
		
	
		
	
		

		
			
		
		
		
	
	}
	

	.stacks_in_15075-indv-item {
		
	}
}

@media (min-width: 62em) {
	/* Desktop */
	

	.stacks_in_15075-indv-item {
		
	}
}











.stacks_in_15075-clickable-item {
	cursor: pointer;
}



.stacks_in_15083 img{width:100%;max-width:250px}




/* Mobile */
.stacks_in_15093-indv-item {
	display: flex;
	flex-flow: column;

	
	grid-column-end: span 1;
	grid-row-end: span 1;
	
	
	


	
	justify-content: flex-start;
	
	
		
	
		
	
	
	
	
	
	
	

	
	
	
	
	
		
	

	
	
	
	border-width: 0px;
	

	
	border-color: rgba(94, 95, 95, 1.00);
	

	border-style: solid;
	
	
}


@media (min-width: 48em) {
	/* Tablet */
	
	.stacks_in_15093-indv-item {
		display: flex;
		flex-flow: column;
		grid-column-end: span 1;
		grid-row-end: span 1;


		
		grid-column-end: span 1;
		grid-row-end: span 1;
		
		
		


		
		justify-content: flex-start;
		
		
		
		
			
		
		
		
		
		
		
		
				
		
	
		
	
		

		
			
		
		
		
	
	}
	

	.stacks_in_15093-indv-item {
		
	}
}

@media (min-width: 62em) {
	/* Desktop */
	

	.stacks_in_15093-indv-item {
		
	}
}











.stacks_in_15093-clickable-item {
	cursor: pointer;
}



.stacks_in_15101 img{width:100%;max-width:250px}




/* CSS GRID */
#stacks_out_15111,
#stacks_in_15111 {
	overflow: visible;
}


#stacks_in_15111 .flux-container {
	overflow: visible;
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	gap: 30px 30px;
	align-items: stretch;

	/* border: 1px solid red; */
	
	margin-bottom: 21px;
	
}

#stacks_in_15111 .flux-item > .stacks_out {
	margin: 0;
	padding: 0;
}


/* These elements will be styled _ONLY_ at their given breakpoints */
/* and will not bleed from one to the other. */

/* Mobile */
@media (max-width: 47.9375em) {
}

/* Tablet */
@media (min-width: 48em) and (max-width: 61.9em) {
}

/* Desktop */
@media (min-width: 62em) {
}



/* ----------------------------------- */

/* These elements will be styled at their given breakpoints */
/* but can bleed from themselves over to wider breakpoints as well. */
/* Mobile */

#stacks_in_15111 .flux-container {
	

	row-gap: 30px;
	column-gap: 30px;
	
	
	
	
	
	
	grid-template-columns: repeat(1, 1fr);
	
	
	
	
	
	grid-auto-rows: auto;
	
	
	
	
	
	
	
	padding: 0px;
	

	
	border-width: 0px;
	

	border-color: rgba(204, 204, 204, 1.00);
	border-style: solid;
	
	
	border-radius: 0px;
	


	
	
	
	
	
	
	

	
	box-shadow: none;
	

}


/* Tablet */
@media (min-width: 48em) {
	
	#stacks_in_15111 .flux-container {
		

		row-gap: 30px;
		column-gap: 30px;
		
		
		
		
		grid-template-columns: repeat(3, 1fr);
		
		
		
		grid-auto-rows: auto;
		
		
		
		
		
			
		

		
			
		
		
		
			
		

		
		
		
		
		
		
		
		
		

		
		box-shadow: none;
		

	}
	
}

@media (min-width: 62em) {
	/* Desktop */
	
}

/* #stacks_in_15111 .flux-container {
	overflow: hidden;
} */







/* Mobile */
.stacks_in_15112-indv-item {
	display: flex;
	flex-flow: column;

	
	grid-column-end: span 1;
	grid-row-end: span 1;
	
	
	


	
	justify-content: flex-start;
	
	
		
	
		
	
	
	
	
	
	
	

	
	
	
	
	
		
	

	
	
	
	border-width: 0px;
	

	
	border-color: rgba(94, 95, 95, 1.00);
	

	border-style: solid;
	
	
}


@media (min-width: 48em) {
	/* Tablet */
	
	.stacks_in_15112-indv-item {
		display: flex;
		flex-flow: column;
		grid-column-end: span 1;
		grid-row-end: span 1;


		
		grid-column-end: span 1;
		grid-row-end: span 1;
		
		
		


		
		justify-content: flex-start;
		
		
		
		
			
		
		
		
		
		
		
		
				
		
	
		
	
		

		
			
		
		
		
	
	}
	

	.stacks_in_15112-indv-item {
		
	}
}

@media (min-width: 62em) {
	/* Desktop */
	

	.stacks_in_15112-indv-item {
		
	}
}











.stacks_in_15112-clickable-item {
	cursor: pointer;
}



.stacks_in_15121 img{width:100%;max-width:250px}




/* Mobile */
.stacks_in_15131-indv-item {
	display: flex;
	flex-flow: column;

	
	grid-column-end: span 1;
	grid-row-end: span 1;
	
	
	


	
	justify-content: flex-start;
	
	
		
	
		
	
	
	
	
	
	
	

	
	
	
	
	
		
	

	
	
	
	border-width: 0px;
	

	
	border-color: rgba(94, 95, 95, 1.00);
	

	border-style: solid;
	
	
}


@media (min-width: 48em) {
	/* Tablet */
	
	.stacks_in_15131-indv-item {
		display: flex;
		flex-flow: column;
		grid-column-end: span 1;
		grid-row-end: span 1;


		
		grid-column-end: span 1;
		grid-row-end: span 1;
		
		
		


		
		justify-content: flex-start;
		
		
		
		
			
		
		
		
		
		
		
		
				
		
	
		
	
		

		
			
		
		
		
	
	}
	

	.stacks_in_15131-indv-item {
		
	}
}

@media (min-width: 62em) {
	/* Desktop */
	

	.stacks_in_15131-indv-item {
		
	}
}











.stacks_in_15131-clickable-item {
	cursor: pointer;
}



.stacks_in_15139 img{width:100%;max-width:250px}




/* Mobile */
.stacks_in_15149-indv-item {
	display: flex;
	flex-flow: column;

	
	grid-column-end: span 1;
	grid-row-end: span 1;
	
	
	


	
	justify-content: flex-start;
	
	
		
	
		
	
	
	
	
	
	
	

	
	
	
	
	
		
	

	
	
	
	border-width: 0px;
	

	
	border-color: rgba(94, 95, 95, 1.00);
	

	border-style: solid;
	
	
}


@media (min-width: 48em) {
	/* Tablet */
	
	.stacks_in_15149-indv-item {
		display: flex;
		flex-flow: column;
		grid-column-end: span 1;
		grid-row-end: span 1;


		
		grid-column-end: span 1;
		grid-row-end: span 1;
		
		
		


		
		justify-content: flex-start;
		
		
		
		
			
		
		
		
		
		
		
		
				
		
	
		
	
		

		
			
		
		
		
	
	}
	

	.stacks_in_15149-indv-item {
		
	}
}

@media (min-width: 62em) {
	/* Desktop */
	

	.stacks_in_15149-indv-item {
		
	}
}











.stacks_in_15149-clickable-item {
	cursor: pointer;
}



.stacks_in_15157 img{width:100%;max-width:250px}




/* CSS GRID */
#stacks_out_15167,
#stacks_in_15167 {
	overflow: visible;
}


#stacks_in_15167 .flux-container {
	overflow: visible;
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	gap: 30px 30px;
	align-items: stretch;

	/* border: 1px solid red; */
	
	margin-bottom: 21px;
	
}

#stacks_in_15167 .flux-item > .stacks_out {
	margin: 0;
	padding: 0;
}


/* These elements will be styled _ONLY_ at their given breakpoints */
/* and will not bleed from one to the other. */

/* Mobile */
@media (max-width: 47.9375em) {
}

/* Tablet */
@media (min-width: 48em) and (max-width: 61.9em) {
}

/* Desktop */
@media (min-width: 62em) {
}



/* ----------------------------------- */

/* These elements will be styled at their given breakpoints */
/* but can bleed from themselves over to wider breakpoints as well. */
/* Mobile */

#stacks_in_15167 .flux-container {
	

	row-gap: 30px;
	column-gap: 30px;
	
	
	
	
	
	
	grid-template-columns: repeat(1, 1fr);
	
	
	
	
	
	grid-auto-rows: auto;
	
	
	
	
	
	
	
	padding: 0px;
	

	
	border-width: 0px;
	

	border-color: rgba(204, 204, 204, 1.00);
	border-style: solid;
	
	
	border-radius: 0px;
	


	
	
	
	
	
	
	

	
	box-shadow: none;
	

}


/* Tablet */
@media (min-width: 48em) {
	
	#stacks_in_15167 .flux-container {
		

		row-gap: 30px;
		column-gap: 30px;
		
		
		
		
		grid-template-columns: repeat(3, 1fr);
		
		
		
		grid-auto-rows: auto;
		
		
		
		
		
			
		

		
			
		
		
		
			
		

		
		
		
		
		
		
		
		
		

		
		box-shadow: none;
		

	}
	
}

@media (min-width: 62em) {
	/* Desktop */
	
}

/* #stacks_in_15167 .flux-container {
	overflow: hidden;
} */







/* Mobile */
.stacks_in_15168-indv-item {
	display: flex;
	flex-flow: column;

	
	grid-column-end: span 1;
	grid-row-end: span 1;
	
	
	


	
	justify-content: flex-start;
	
	
		
	
		
	
	
	
	
	
	
	

	
	
	
	
	
		
	

	
	
	
	border-width: 0px;
	

	
	border-color: rgba(94, 95, 95, 1.00);
	

	border-style: solid;
	
	
}


@media (min-width: 48em) {
	/* Tablet */
	
	.stacks_in_15168-indv-item {
		display: flex;
		flex-flow: column;
		grid-column-end: span 1;
		grid-row-end: span 1;


		
		grid-column-end: span 1;
		grid-row-end: span 1;
		
		
		


		
		justify-content: flex-start;
		
		
		
		
			
		
		
		
		
		
		
		
				
		
	
		
	
		

		
			
		
		
		
	
	}
	

	.stacks_in_15168-indv-item {
		
	}
}

@media (min-width: 62em) {
	/* Desktop */
	

	.stacks_in_15168-indv-item {
		
	}
}











.stacks_in_15168-clickable-item {
	cursor: pointer;
}



.stacks_in_15177 img{width:100%;max-width:250px}




/* Mobile */
.stacks_in_15187-indv-item {
	display: flex;
	flex-flow: column;

	
	grid-column-end: span 1;
	grid-row-end: span 1;
	
	
	


	
	justify-content: flex-start;
	
	
		
	
		
	
	
	
	
	
	
	

	
	
	
	
	
		
	

	
	
	
	border-width: 0px;
	

	
	border-color: rgba(94, 95, 95, 1.00);
	

	border-style: solid;
	
	
}


@media (min-width: 48em) {
	/* Tablet */
	
	.stacks_in_15187-indv-item {
		display: flex;
		flex-flow: column;
		grid-column-end: span 1;
		grid-row-end: span 1;


		
		grid-column-end: span 1;
		grid-row-end: span 1;
		
		
		


		
		justify-content: flex-start;
		
		
		
		
			
		
		
		
		
		
		
		
				
		
	
		
	
		

		
			
		
		
		
	
	}
	

	.stacks_in_15187-indv-item {
		
	}
}

@media (min-width: 62em) {
	/* Desktop */
	

	.stacks_in_15187-indv-item {
		
	}
}











.stacks_in_15187-clickable-item {
	cursor: pointer;
}



.stacks_in_15195 img{width:100%;max-width:250px}




/* Mobile */
.stacks_in_15205-indv-item {
	display: flex;
	flex-flow: column;

	
	grid-column-end: span 1;
	grid-row-end: span 1;
	
	
	


	
	justify-content: flex-start;
	
	
		
	
		
	
	
	
	
	
	
	

	
	
	
	
	
		
	

	
	
	
	border-width: 0px;
	

	
	border-color: rgba(94, 95, 95, 1.00);
	

	border-style: solid;
	
	
}


@media (min-width: 48em) {
	/* Tablet */
	
	.stacks_in_15205-indv-item {
		display: flex;
		flex-flow: column;
		grid-column-end: span 1;
		grid-row-end: span 1;


		
		grid-column-end: span 1;
		grid-row-end: span 1;
		
		
		


		
		justify-content: flex-start;
		
		
		
		
			
		
		
		
		
		
		
		
				
		
	
		
	
		

		
			
		
		
		
	
	}
	

	.stacks_in_15205-indv-item {
		
	}
}

@media (min-width: 62em) {
	/* Desktop */
	

	.stacks_in_15205-indv-item {
		
	}
}











.stacks_in_15205-clickable-item {
	cursor: pointer;
}



.stacks_in_15213 img{width:100%;max-width:250px}

/* custom stuff */


#corner-stacks_in_10548_2 .corner-modal
{
  z-index: 9999;
  max-width:400px;
  max-height:500px;
}



#corner-stacks_in_10548_2 .corner-content {
	border:1px solid rgba(0, 0, 0, 0.40);
	border-radius:2px;
  background-color:rgba(255, 255, 255, 1.00);
  color: rgba(102, 102, 102, 1.00);
  overflow:auto;
}

#corner-stacks_in_10548_2 .corner-button
{
	font-family: Helvetica;
	font-size: 14px;
  font-weight: 700;
	border:2px solid rgba(255, 255, 255, 0.40);
	border-radius:22px;
  background-color:rgba(28, 138, 32, 1.00);
  color: rgba(255, 255, 255, 1.00);
  padding-top: 10px;
  padding-right: 20px;
  padding-bottom: 10px;
  padding-left: 20px;
  margin-top: 20px;
  margin-right: 20px;
  margin-bottom: 20px;
  margin-left: 20px;
  z-index: 9998;
}


#corner-stacks_in_10548_2 .corner-button.corner-tl,
#corner-stacks_in_10548_2 .corner-button.corner-tr {
  margin-top: -60px;
}

#corner-stacks_in_10548_2 .corner-button.corner-bl,
#corner-stacks_in_10548_2 .corner-button.corner-br {
  margin-bottom: -60px;
}


#corner-stacks_in_10548_2 .corner-content {
	padding-top: 10px;
  padding-right: 20px;
  padding-bottom: 10px;
  padding-left: 20px;
  margin-top: 10px;
  margin-right: 20px;
  margin-bottom: 20px;
  margin-left: 20px;
}

#corner-stacks_in_10548_2 .corner-button.corner-tl.corner-show,
#corner-stacks_in_10548_2 .corner-button.corner-tr.corner-show {
  margin-top: 20px;
}

#corner-stacks_in_10548_2 .corner-button.corner-bl.corner-show,
#corner-stacks_in_10548_2 .corner-button.corner-br.corner-show {
  margin-bottom: 20px;
}


/* hide the text in button on smaller screens */
@media only screen and (max-width: 770px)  
{ 
  #corner-stacks_in_10548_2 .corner-modal
  {
    width:100%;
    max-width:100%;
    max-height:100%;
    margin:0;
  }

  #corner-stacks_in_10548_2 .corner-content
  {
    margin:4px;
  }

  #corner-stacks_in_10548_2 span.corner-label { 
    display:none; 
  }
}




.margin-contact{margin:5rem ;}  
label{--header-color:rgba(255, 255, 255, 1.00);--subheader-color:rgba(138, 138, 138, 1.00);--small-color:rgba(202, 202, 202, 1.00);--text-color:rgba(255, 255, 255, 1.00);--link-color:rgba(0, 140, 186, 1.00);--link-color-hover:rgba(0, 102, 136, 1.00);--link-decoration:none;--link-decoration-hover:none}
.bg-grey{background-color:rgba(204, 204, 204, 1.00) ;background-position:center center ;background-origin:padding-box ;background-blend-mode:normal ;background-attachment:scroll   ;background-clip:border-box ;}@media (hover:none) and (pointer:coarse){.bg-grey{background-attachment:scroll!important}}
.white-font{color:rgba(255, 255, 255, 1.00) ;}






/* CSS GRID */
#stacks_out_14422,
#stacks_in_14422 {
	overflow: visible;
}


#stacks_in_14422 .flux-container {
	overflow: visible;
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	gap: 30px 30px;
	align-items: stretch;

	/* border: 1px solid red; */
	
	margin-bottom: 21px;
	
}

#stacks_in_14422 .flux-item > .stacks_out {
	margin: 0;
	padding: 0;
}


/* These elements will be styled _ONLY_ at their given breakpoints */
/* and will not bleed from one to the other. */

/* Mobile */
@media (max-width: 47.9375em) {
}

/* Tablet */
@media (min-width: 48em) and (max-width: 61.9em) {
}

/* Desktop */
@media (min-width: 62em) {
}



/* ----------------------------------- */

/* These elements will be styled at their given breakpoints */
/* but can bleed from themselves over to wider breakpoints as well. */
/* Mobile */

#stacks_in_14422 .flux-container {
	

	row-gap: 30px;
	column-gap: 30px;
	
	
	
	
	
	
	grid-template-columns: repeat(1, 1fr);
	
	
	
	
	
	grid-auto-rows: auto;
	
	
	
	
	
	
	
	padding: 0px;
	

	
	border-width: 0px;
	

	border-color: rgba(204, 204, 204, 1.00);
	border-style: solid;
	
	
	border-radius: 0px;
	


	
	
	
	
	
	
	

	
	box-shadow: none;
	

}


/* Tablet */
@media (min-width: 48em) {
	
	#stacks_in_14422 .flux-container {
		

		row-gap: 30px;
		column-gap: 30px;
		
		
		
		
		grid-template-columns: repeat(3, 1fr);
		
		
		
		grid-auto-rows: auto;
		
		
		
		
		
			
		

		
			
		
		
		
			
		

		
		
		
		
		
		
		
		
		

		
		box-shadow: none;
		

	}
	
}

@media (min-width: 62em) {
	/* Desktop */
	
}

/* #stacks_in_14422 .flux-container {
	overflow: hidden;
} */







/* Mobile */
.stacks_in_14423-indv-item {
	display: flex;
	flex-flow: column;

	
	grid-column-end: span 1;
	grid-row-end: span 1;
	
	
	


	
	justify-content: flex-start;
	
	
		
	
		
	
	
	
	
	
	
	

	
	
	
	
	
		
	

	
	
	
	border-width: 0px;
	

	
	border-color: rgba(94, 95, 95, 1.00);
	

	border-style: solid;
	
	
}


@media (min-width: 48em) {
	/* Tablet */
	
	.stacks_in_14423-indv-item {
		display: flex;
		flex-flow: column;
		grid-column-end: span 1;
		grid-row-end: span 1;


		
		grid-column-end: span 1;
		grid-row-end: span 1;
		
		
		


		
		justify-content: flex-start;
		
		
		
		
			
		
		
		
		
		
		
		
				
		
	
		
	
		

		
			
		
		
		
	
	}
	

	.stacks_in_14423-indv-item {
		
	}
}

@media (min-width: 62em) {
	/* Desktop */
	

	.stacks_in_14423-indv-item {
		
	}
}











.stacks_in_14423-clickable-item {
	cursor: pointer;
}



.stacks_in_14432 img{width:100%;max-width:250px}




/* Mobile */
.stacks_in_14442-indv-item {
	display: flex;
	flex-flow: column;

	
	grid-column-end: span 1;
	grid-row-end: span 1;
	
	
	


	
	justify-content: flex-start;
	
	
		
	
		
	
	
	
	
	
	
	

	
	
	
	
	
		
	

	
	
	
	border-width: 0px;
	

	
	border-color: rgba(94, 95, 95, 1.00);
	

	border-style: solid;
	
	
}


@media (min-width: 48em) {
	/* Tablet */
	
	.stacks_in_14442-indv-item {
		display: flex;
		flex-flow: column;
		grid-column-end: span 1;
		grid-row-end: span 1;


		
		grid-column-end: span 1;
		grid-row-end: span 1;
		
		
		


		
		justify-content: flex-start;
		
		
		
		
			
		
		
		
		
		
		
		
				
		
	
		
	
		

		
			
		
		
		
	
	}
	

	.stacks_in_14442-indv-item {
		
	}
}

@media (min-width: 62em) {
	/* Desktop */
	

	.stacks_in_14442-indv-item {
		
	}
}











.stacks_in_14442-clickable-item {
	cursor: pointer;
}



.stacks_in_14450 img{width:100%;max-width:250px}




/* Mobile */
.stacks_in_14460-indv-item {
	display: flex;
	flex-flow: column;

	
	grid-column-end: span 1;
	grid-row-end: span 1;
	
	
	


	
	justify-content: flex-start;
	
	
		
	
		
	
	
	
	
	
	
	

	
	
	
	
	
		
	

	
	
	
	border-width: 0px;
	

	
	border-color: rgba(94, 95, 95, 1.00);
	

	border-style: solid;
	
	
}


@media (min-width: 48em) {
	/* Tablet */
	
	.stacks_in_14460-indv-item {
		display: flex;
		flex-flow: column;
		grid-column-end: span 1;
		grid-row-end: span 1;


		
		grid-column-end: span 1;
		grid-row-end: span 1;
		
		
		


		
		justify-content: flex-start;
		
		
		
		
			
		
		
		
		
		
		
		
				
		
	
		
	
		

		
			
		
		
		
	
	}
	

	.stacks_in_14460-indv-item {
		
	}
}

@media (min-width: 62em) {
	/* Desktop */
	

	.stacks_in_14460-indv-item {
		
	}
}











.stacks_in_14460-clickable-item {
	cursor: pointer;
}



.stacks_in_14468 img{width:100%;max-width:250px}




/* CSS GRID */
#stacks_out_14480,
#stacks_in_14480 {
	overflow: visible;
}


#stacks_in_14480 .flux-container {
	overflow: visible;
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	gap: 30px 30px;
	align-items: stretch;

	/* border: 1px solid red; */
	
	margin-bottom: 21px;
	
}

#stacks_in_14480 .flux-item > .stacks_out {
	margin: 0;
	padding: 0;
}


/* These elements will be styled _ONLY_ at their given breakpoints */
/* and will not bleed from one to the other. */

/* Mobile */
@media (max-width: 47.9375em) {
}

/* Tablet */
@media (min-width: 48em) and (max-width: 61.9em) {
}

/* Desktop */
@media (min-width: 62em) {
}



/* ----------------------------------- */

/* These elements will be styled at their given breakpoints */
/* but can bleed from themselves over to wider breakpoints as well. */
/* Mobile */

#stacks_in_14480 .flux-container {
	

	row-gap: 30px;
	column-gap: 30px;
	
	
	
	
	
	
	grid-template-columns: repeat(1, 1fr);
	
	
	
	
	
	grid-auto-rows: auto;
	
	
	
	
	
	
	
	padding: 0px;
	

	
	border-width: 0px;
	

	border-color: rgba(204, 204, 204, 1.00);
	border-style: solid;
	
	
	border-radius: 0px;
	


	
	
	
	
	
	
	

	
	box-shadow: none;
	

}


/* Tablet */
@media (min-width: 48em) {
	
	#stacks_in_14480 .flux-container {
		

		row-gap: 30px;
		column-gap: 30px;
		
		
		
		
		grid-template-columns: repeat(3, 1fr);
		
		
		
		grid-auto-rows: auto;
		
		
		
		
		
			
		

		
			
		
		
		
			
		

		
		
		
		
		
		
		
		
		

		
		box-shadow: none;
		

	}
	
}

@media (min-width: 62em) {
	/* Desktop */
	
}

/* #stacks_in_14480 .flux-container {
	overflow: hidden;
} */







/* Mobile */
.stacks_in_14481-indv-item {
	display: flex;
	flex-flow: column;

	
	grid-column-end: span 1;
	grid-row-end: span 1;
	
	
	


	
	justify-content: flex-start;
	
	
		
	
		
	
	
	
	
	
	
	

	
	
	
	
	
		
	

	
	
	
	border-width: 0px;
	

	
	border-color: rgba(94, 95, 95, 1.00);
	

	border-style: solid;
	
	
}


@media (min-width: 48em) {
	/* Tablet */
	
	.stacks_in_14481-indv-item {
		display: flex;
		flex-flow: column;
		grid-column-end: span 1;
		grid-row-end: span 1;


		
		grid-column-end: span 1;
		grid-row-end: span 1;
		
		
		


		
		justify-content: flex-start;
		
		
		
		
			
		
		
		
		
		
		
		
				
		
	
		
	
		

		
			
		
		
		
	
	}
	

	.stacks_in_14481-indv-item {
		
	}
}

@media (min-width: 62em) {
	/* Desktop */
	

	.stacks_in_14481-indv-item {
		
	}
}











.stacks_in_14481-clickable-item {
	cursor: pointer;
}



.stacks_in_14490 img{width:100%;max-width:250px}




/* Mobile */
.stacks_in_14500-indv-item {
	display: flex;
	flex-flow: column;

	
	grid-column-end: span 1;
	grid-row-end: span 1;
	
	
	


	
	justify-content: flex-start;
	
	
		
	
		
	
	
	
	
	
	
	

	
	
	
	
	
		
	

	
	
	
	border-width: 0px;
	

	
	border-color: rgba(94, 95, 95, 1.00);
	

	border-style: solid;
	
	
}


@media (min-width: 48em) {
	/* Tablet */
	
	.stacks_in_14500-indv-item {
		display: flex;
		flex-flow: column;
		grid-column-end: span 1;
		grid-row-end: span 1;


		
		grid-column-end: span 1;
		grid-row-end: span 1;
		
		
		


		
		justify-content: flex-start;
		
		
		
		
			
		
		
		
		
		
		
		
				
		
	
		
	
		

		
			
		
		
		
	
	}
	

	.stacks_in_14500-indv-item {
		
	}
}

@media (min-width: 62em) {
	/* Desktop */
	

	.stacks_in_14500-indv-item {
		
	}
}











.stacks_in_14500-clickable-item {
	cursor: pointer;
}



.stacks_in_14508 img{width:100%;max-width:250px}




/* Mobile */
.stacks_in_14516-indv-item {
	display: flex;
	flex-flow: column;

	
	grid-column-end: span 1;
	grid-row-end: span 1;
	
	
	


	
	justify-content: flex-start;
	
	
		
	
		
	
	
	
	
	
	
	

	
	
	
	
	
		
	

	
	
	
	border-width: 0px;
	

	
	border-color: rgba(94, 95, 95, 1.00);
	

	border-style: solid;
	
	
}


@media (min-width: 48em) {
	/* Tablet */
	
	.stacks_in_14516-indv-item {
		display: flex;
		flex-flow: column;
		grid-column-end: span 1;
		grid-row-end: span 1;


		
		grid-column-end: span 1;
		grid-row-end: span 1;
		
		
		


		
		justify-content: flex-start;
		
		
		
		
			
		
		
		
		
		
		
		
				
		
	
		
	
		

		
			
		
		
		
	
	}
	

	.stacks_in_14516-indv-item {
		
	}
}

@media (min-width: 62em) {
	/* Desktop */
	

	.stacks_in_14516-indv-item {
		
	}
}











.stacks_in_14516-clickable-item {
	cursor: pointer;
}



.stacks_in_14524 img{width:100%;max-width:250px}




/* CSS GRID */
#stacks_out_14534,
#stacks_in_14534 {
	overflow: visible;
}


#stacks_in_14534 .flux-container {
	overflow: visible;
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	gap: 30px 30px;
	align-items: stretch;

	/* border: 1px solid red; */
	
	margin-bottom: 21px;
	
}

#stacks_in_14534 .flux-item > .stacks_out {
	margin: 0;
	padding: 0;
}


/* These elements will be styled _ONLY_ at their given breakpoints */
/* and will not bleed from one to the other. */

/* Mobile */
@media (max-width: 47.9375em) {
}

/* Tablet */
@media (min-width: 48em) and (max-width: 61.9em) {
}

/* Desktop */
@media (min-width: 62em) {
}



/* ----------------------------------- */

/* These elements will be styled at their given breakpoints */
/* but can bleed from themselves over to wider breakpoints as well. */
/* Mobile */

#stacks_in_14534 .flux-container {
	

	row-gap: 30px;
	column-gap: 30px;
	
	
	
	
	
	
	grid-template-columns: repeat(1, 1fr);
	
	
	
	
	
	grid-auto-rows: auto;
	
	
	
	
	
	
	
	padding: 0px;
	

	
	border-width: 0px;
	

	border-color: rgba(204, 204, 204, 1.00);
	border-style: solid;
	
	
	border-radius: 0px;
	


	
	
	
	
	
	
	

	
	box-shadow: none;
	

}


/* Tablet */
@media (min-width: 48em) {
	
	#stacks_in_14534 .flux-container {
		

		row-gap: 30px;
		column-gap: 30px;
		
		
		
		
		grid-template-columns: repeat(3, 1fr);
		
		
		
		grid-auto-rows: auto;
		
		
		
		
		
			
		

		
			
		
		
		
			
		

		
		
		
		
		
		
		
		
		

		
		box-shadow: none;
		

	}
	
}

@media (min-width: 62em) {
	/* Desktop */
	
}

/* #stacks_in_14534 .flux-container {
	overflow: hidden;
} */







/* Mobile */
.stacks_in_14535-indv-item {
	display: flex;
	flex-flow: column;

	
	grid-column-end: span 1;
	grid-row-end: span 1;
	
	
	


	
	justify-content: flex-start;
	
	
		
	
		
	
	
	
	
	
	
	

	
	
	
	
	
		
	

	
	
	
	border-width: 0px;
	

	
	border-color: rgba(94, 95, 95, 1.00);
	

	border-style: solid;
	
	
}


@media (min-width: 48em) {
	/* Tablet */
	
	.stacks_in_14535-indv-item {
		display: flex;
		flex-flow: column;
		grid-column-end: span 1;
		grid-row-end: span 1;


		
		grid-column-end: span 1;
		grid-row-end: span 1;
		
		
		


		
		justify-content: flex-start;
		
		
		
		
			
		
		
		
		
		
		
		
				
		
	
		
	
		

		
			
		
		
		
	
	}
	

	.stacks_in_14535-indv-item {
		
	}
}

@media (min-width: 62em) {
	/* Desktop */
	

	.stacks_in_14535-indv-item {
		
	}
}











.stacks_in_14535-clickable-item {
	cursor: pointer;
}



.stacks_in_14544 img{width:100%;max-width:250px}




/* Mobile */
.stacks_in_14554-indv-item {
	display: flex;
	flex-flow: column;

	
	grid-column-end: span 1;
	grid-row-end: span 1;
	
	
	


	
	justify-content: flex-start;
	
	
		
	
		
	
	
	
	
	
	
	

	
	
	
	
	
		
	

	
	
	
	border-width: 0px;
	

	
	border-color: rgba(94, 95, 95, 1.00);
	

	border-style: solid;
	
	
}


@media (min-width: 48em) {
	/* Tablet */
	
	.stacks_in_14554-indv-item {
		display: flex;
		flex-flow: column;
		grid-column-end: span 1;
		grid-row-end: span 1;


		
		grid-column-end: span 1;
		grid-row-end: span 1;
		
		
		


		
		justify-content: flex-start;
		
		
		
		
			
		
		
		
		
		
		
		
				
		
	
		
	
		

		
			
		
		
		
	
	}
	

	.stacks_in_14554-indv-item {
		
	}
}

@media (min-width: 62em) {
	/* Desktop */
	

	.stacks_in_14554-indv-item {
		
	}
}











.stacks_in_14554-clickable-item {
	cursor: pointer;
}



.stacks_in_14562 img{width:100%;max-width:250px}




/* Mobile */
.stacks_in_14570-indv-item {
	display: flex;
	flex-flow: column;

	
	grid-column-end: span 1;
	grid-row-end: span 1;
	
	
	


	
	justify-content: flex-start;
	
	
		
	
		
	
	
	
	
	
	
	

	
	
	
	
	
		
	

	
	
	
	border-width: 0px;
	

	
	border-color: rgba(94, 95, 95, 1.00);
	

	border-style: solid;
	
	
}


@media (min-width: 48em) {
	/* Tablet */
	
	.stacks_in_14570-indv-item {
		display: flex;
		flex-flow: column;
		grid-column-end: span 1;
		grid-row-end: span 1;


		
		grid-column-end: span 1;
		grid-row-end: span 1;
		
		
		


		
		justify-content: flex-start;
		
		
		
		
			
		
		
		
		
		
		
		
				
		
	
		
	
		

		
			
		
		
		
	
	}
	

	.stacks_in_14570-indv-item {
		
	}
}

@media (min-width: 62em) {
	/* Desktop */
	

	.stacks_in_14570-indv-item {
		
	}
}











.stacks_in_14570-clickable-item {
	cursor: pointer;
}



.stacks_in_14578 img{width:100%;max-width:250px}




/* CSS GRID */
#stacks_out_14588,
#stacks_in_14588 {
	overflow: visible;
}


#stacks_in_14588 .flux-container {
	overflow: visible;
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	gap: 30px 30px;
	align-items: stretch;

	/* border: 1px solid red; */
	
	margin-bottom: 21px;
	
}

#stacks_in_14588 .flux-item > .stacks_out {
	margin: 0;
	padding: 0;
}


/* These elements will be styled _ONLY_ at their given breakpoints */
/* and will not bleed from one to the other. */

/* Mobile */
@media (max-width: 47.9375em) {
}

/* Tablet */
@media (min-width: 48em) and (max-width: 61.9em) {
}

/* Desktop */
@media (min-width: 62em) {
}



/* ----------------------------------- */

/* These elements will be styled at their given breakpoints */
/* but can bleed from themselves over to wider breakpoints as well. */
/* Mobile */

#stacks_in_14588 .flux-container {
	

	row-gap: 30px;
	column-gap: 30px;
	
	
	
	
	
	
	grid-template-columns: repeat(1, 1fr);
	
	
	
	
	
	grid-auto-rows: auto;
	
	
	
	
	
	
	
	padding: 0px;
	

	
	border-width: 0px;
	

	border-color: rgba(204, 204, 204, 1.00);
	border-style: solid;
	
	
	border-radius: 0px;
	


	
	
	
	
	
	
	

	
	box-shadow: none;
	

}


/* Tablet */
@media (min-width: 48em) {
	
	#stacks_in_14588 .flux-container {
		

		row-gap: 30px;
		column-gap: 30px;
		
		
		
		
		grid-template-columns: repeat(3, 1fr);
		
		
		
		grid-auto-rows: auto;
		
		
		
		
		
			
		

		
			
		
		
		
			
		

		
		
		
		
		
		
		
		
		

		
		box-shadow: none;
		

	}
	
}

@media (min-width: 62em) {
	/* Desktop */
	
}

/* #stacks_in_14588 .flux-container {
	overflow: hidden;
} */







/* Mobile */
.stacks_in_14589-indv-item {
	display: flex;
	flex-flow: column;

	
	grid-column-end: span 1;
	grid-row-end: span 1;
	
	
	


	
	justify-content: flex-start;
	
	
		
	
		
	
	
	
	
	
	
	

	
	
	
	
	
		
	

	
	
	
	border-width: 0px;
	

	
	border-color: rgba(94, 95, 95, 1.00);
	

	border-style: solid;
	
	
}


@media (min-width: 48em) {
	/* Tablet */
	
	.stacks_in_14589-indv-item {
		display: flex;
		flex-flow: column;
		grid-column-end: span 1;
		grid-row-end: span 1;


		
		grid-column-end: span 1;
		grid-row-end: span 1;
		
		
		


		
		justify-content: flex-start;
		
		
		
		
			
		
		
		
		
		
		
		
				
		
	
		
	
		

		
			
		
		
		
	
	}
	

	.stacks_in_14589-indv-item {
		
	}
}

@media (min-width: 62em) {
	/* Desktop */
	

	.stacks_in_14589-indv-item {
		
	}
}











.stacks_in_14589-clickable-item {
	cursor: pointer;
}



.stacks_in_14598 img{width:100%;max-width:250px}




/* Mobile */
.stacks_in_14608-indv-item {
	display: flex;
	flex-flow: column;

	
	grid-column-end: span 1;
	grid-row-end: span 1;
	
	
	


	
	justify-content: flex-start;
	
	
		
	
		
	
	
	
	
	
	
	

	
	
	
	
	
		
	

	
	
	
	border-width: 0px;
	

	
	border-color: rgba(94, 95, 95, 1.00);
	

	border-style: solid;
	
	
}


@media (min-width: 48em) {
	/* Tablet */
	
	.stacks_in_14608-indv-item {
		display: flex;
		flex-flow: column;
		grid-column-end: span 1;
		grid-row-end: span 1;


		
		grid-column-end: span 1;
		grid-row-end: span 1;
		
		
		


		
		justify-content: flex-start;
		
		
		
		
			
		
		
		
		
		
		
		
				
		
	
		
	
		

		
			
		
		
		
	
	}
	

	.stacks_in_14608-indv-item {
		
	}
}

@media (min-width: 62em) {
	/* Desktop */
	

	.stacks_in_14608-indv-item {
		
	}
}











.stacks_in_14608-clickable-item {
	cursor: pointer;
}



.stacks_in_14616 img{width:100%;max-width:250px}




/* Mobile */
.stacks_in_14626-indv-item {
	display: flex;
	flex-flow: column;

	
	grid-column-end: span 1;
	grid-row-end: span 1;
	
	
	


	
	justify-content: flex-start;
	
	
		
	
		
	
	
	
	
	
	
	

	
	
	
	
	
		
	

	
	
	
	border-width: 0px;
	

	
	border-color: rgba(94, 95, 95, 1.00);
	

	border-style: solid;
	
	
}


@media (min-width: 48em) {
	/* Tablet */
	
	.stacks_in_14626-indv-item {
		display: flex;
		flex-flow: column;
		grid-column-end: span 1;
		grid-row-end: span 1;


		
		grid-column-end: span 1;
		grid-row-end: span 1;
		
		
		


		
		justify-content: flex-start;
		
		
		
		
			
		
		
		
		
		
		
		
				
		
	
		
	
		

		
			
		
		
		
	
	}
	

	.stacks_in_14626-indv-item {
		
	}
}

@media (min-width: 62em) {
	/* Desktop */
	

	.stacks_in_14626-indv-item {
		
	}
}











.stacks_in_14626-clickable-item {
	cursor: pointer;
}



.stacks_in_14634 img{width:100%;max-width:250px}




/* CSS GRID */
#stacks_out_14642,
#stacks_in_14642 {
	overflow: visible;
}


#stacks_in_14642 .flux-container {
	overflow: visible;
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	gap: 30px 30px;
	align-items: stretch;

	/* border: 1px solid red; */
	
	margin-bottom: 21px;
	
}

#stacks_in_14642 .flux-item > .stacks_out {
	margin: 0;
	padding: 0;
}


/* These elements will be styled _ONLY_ at their given breakpoints */
/* and will not bleed from one to the other. */

/* Mobile */
@media (max-width: 47.9375em) {
}

/* Tablet */
@media (min-width: 48em) and (max-width: 61.9em) {
}

/* Desktop */
@media (min-width: 62em) {
}



/* ----------------------------------- */

/* These elements will be styled at their given breakpoints */
/* but can bleed from themselves over to wider breakpoints as well. */
/* Mobile */

#stacks_in_14642 .flux-container {
	

	row-gap: 30px;
	column-gap: 30px;
	
	
	
	
	
	
	grid-template-columns: repeat(1, 1fr);
	
	
	
	
	
	grid-auto-rows: auto;
	
	
	
	
	
	
	
	padding: 0px;
	

	
	border-width: 0px;
	

	border-color: rgba(204, 204, 204, 1.00);
	border-style: solid;
	
	
	border-radius: 0px;
	


	
	
	
	
	
	
	

	
	box-shadow: none;
	

}


/* Tablet */
@media (min-width: 48em) {
	
	#stacks_in_14642 .flux-container {
		

		row-gap: 30px;
		column-gap: 30px;
		
		
		
		
		grid-template-columns: repeat(3, 1fr);
		
		
		
		grid-auto-rows: auto;
		
		
		
		
		
			
		

		
			
		
		
		
			
		

		
		
		
		
		
		
		
		
		

		
		box-shadow: none;
		

	}
	
}

@media (min-width: 62em) {
	/* Desktop */
	
}

/* #stacks_in_14642 .flux-container {
	overflow: hidden;
} */







/* Mobile */
.stacks_in_14643-indv-item {
	display: flex;
	flex-flow: column;

	
	grid-column-end: span 1;
	grid-row-end: span 1;
	
	
	


	
	justify-content: flex-start;
	
	
		
	
		
	
	
	
	
	
	
	

	
	
	
	
	
		
	

	
	
	
	border-width: 0px;
	

	
	border-color: rgba(94, 95, 95, 1.00);
	

	border-style: solid;
	
	
}


@media (min-width: 48em) {
	/* Tablet */
	
	.stacks_in_14643-indv-item {
		display: flex;
		flex-flow: column;
		grid-column-end: span 1;
		grid-row-end: span 1;


		
		grid-column-end: span 1;
		grid-row-end: span 1;
		
		
		


		
		justify-content: flex-start;
		
		
		
		
			
		
		
		
		
		
		
		
				
		
	
		
	
		

		
			
		
		
		
	
	}
	

	.stacks_in_14643-indv-item {
		
	}
}

@media (min-width: 62em) {
	/* Desktop */
	

	.stacks_in_14643-indv-item {
		
	}
}











.stacks_in_14643-clickable-item {
	cursor: pointer;
}



.stacks_in_14652 img{width:100%;max-width:250px}




/* Mobile */
.stacks_in_14662-indv-item {
	display: flex;
	flex-flow: column;

	
	grid-column-end: span 1;
	grid-row-end: span 1;
	
	
	


	
	justify-content: flex-start;
	
	
		
	
		
	
	
	
	
	
	
	

	
	
	
	
	
		
	

	
	
	
	border-width: 0px;
	

	
	border-color: rgba(94, 95, 95, 1.00);
	

	border-style: solid;
	
	
}


@media (min-width: 48em) {
	/* Tablet */
	
	.stacks_in_14662-indv-item {
		display: flex;
		flex-flow: column;
		grid-column-end: span 1;
		grid-row-end: span 1;


		
		grid-column-end: span 1;
		grid-row-end: span 1;
		
		
		


		
		justify-content: flex-start;
		
		
		
		
			
		
		
		
		
		
		
		
				
		
	
		
	
		

		
			
		
		
		
	
	}
	

	.stacks_in_14662-indv-item {
		
	}
}

@media (min-width: 62em) {
	/* Desktop */
	

	.stacks_in_14662-indv-item {
		
	}
}











.stacks_in_14662-clickable-item {
	cursor: pointer;
}



.stacks_in_14670 img{width:100%;max-width:250px}




/* Mobile */
.stacks_in_14680-indv-item {
	display: flex;
	flex-flow: column;

	
	grid-column-end: span 1;
	grid-row-end: span 1;
	
	
	


	
	justify-content: flex-start;
	
	
		
	
		
	
	
	
	
	
	
	

	
	
	
	
	
		
	

	
	
	
	border-width: 0px;
	

	
	border-color: rgba(94, 95, 95, 1.00);
	

	border-style: solid;
	
	
}


@media (min-width: 48em) {
	/* Tablet */
	
	.stacks_in_14680-indv-item {
		display: flex;
		flex-flow: column;
		grid-column-end: span 1;
		grid-row-end: span 1;


		
		grid-column-end: span 1;
		grid-row-end: span 1;
		
		
		


		
		justify-content: flex-start;
		
		
		
		
			
		
		
		
		
		
		
		
				
		
	
		
	
		

		
			
		
		
		
	
	}
	

	.stacks_in_14680-indv-item {
		
	}
}

@media (min-width: 62em) {
	/* Desktop */
	

	.stacks_in_14680-indv-item {
		
	}
}











.stacks_in_14680-clickable-item {
	cursor: pointer;
}



.stacks_in_14688 img{width:100%;max-width:250px}




/* CSS GRID */
#stacks_out_14698,
#stacks_in_14698 {
	overflow: visible;
}


#stacks_in_14698 .flux-container {
	overflow: visible;
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	gap: 30px 30px;
	align-items: stretch;

	/* border: 1px solid red; */
	
	margin-bottom: 21px;
	
}

#stacks_in_14698 .flux-item > .stacks_out {
	margin: 0;
	padding: 0;
}


/* These elements will be styled _ONLY_ at their given breakpoints */
/* and will not bleed from one to the other. */

/* Mobile */
@media (max-width: 47.9375em) {
}

/* Tablet */
@media (min-width: 48em) and (max-width: 61.9em) {
}

/* Desktop */
@media (min-width: 62em) {
}



/* ----------------------------------- */

/* These elements will be styled at their given breakpoints */
/* but can bleed from themselves over to wider breakpoints as well. */
/* Mobile */

#stacks_in_14698 .flux-container {
	

	row-gap: 30px;
	column-gap: 30px;
	
	
	
	
	
	
	grid-template-columns: repeat(1, 1fr);
	
	
	
	
	
	grid-auto-rows: auto;
	
	
	
	
	
	
	
	padding: 0px;
	

	
	border-width: 0px;
	

	border-color: rgba(204, 204, 204, 1.00);
	border-style: solid;
	
	
	border-radius: 0px;
	


	
	
	
	
	
	
	

	
	box-shadow: none;
	

}


/* Tablet */
@media (min-width: 48em) {
	
	#stacks_in_14698 .flux-container {
		

		row-gap: 30px;
		column-gap: 30px;
		
		
		
		
		grid-template-columns: repeat(3, 1fr);
		
		
		
		grid-auto-rows: auto;
		
		
		
		
		
			
		

		
			
		
		
		
			
		

		
		
		
		
		
		
		
		
		

		
		box-shadow: none;
		

	}
	
}

@media (min-width: 62em) {
	/* Desktop */
	
}

/* #stacks_in_14698 .flux-container {
	overflow: hidden;
} */







/* Mobile */
.stacks_in_14699-indv-item {
	display: flex;
	flex-flow: column;

	
	grid-column-end: span 1;
	grid-row-end: span 1;
	
	
	


	
	justify-content: flex-start;
	
	
		
	
		
	
	
	
	
	
	
	

	
	
	
	
	
		
	

	
	
	
	border-width: 0px;
	

	
	border-color: rgba(94, 95, 95, 1.00);
	

	border-style: solid;
	
	
}


@media (min-width: 48em) {
	/* Tablet */
	
	.stacks_in_14699-indv-item {
		display: flex;
		flex-flow: column;
		grid-column-end: span 1;
		grid-row-end: span 1;


		
		grid-column-end: span 1;
		grid-row-end: span 1;
		
		
		


		
		justify-content: flex-start;
		
		
		
		
			
		
		
		
		
		
		
		
				
		
	
		
	
		

		
			
		
		
		
	
	}
	

	.stacks_in_14699-indv-item {
		
	}
}

@media (min-width: 62em) {
	/* Desktop */
	

	.stacks_in_14699-indv-item {
		
	}
}











.stacks_in_14699-clickable-item {
	cursor: pointer;
}



.stacks_in_14708 img{width:100%;max-width:250px}




/* Mobile */
.stacks_in_14718-indv-item {
	display: flex;
	flex-flow: column;

	
	grid-column-end: span 1;
	grid-row-end: span 1;
	
	
	


	
	justify-content: flex-start;
	
	
		
	
		
	
	
	
	
	
	
	

	
	
	
	
	
		
	

	
	
	
	border-width: 0px;
	

	
	border-color: rgba(94, 95, 95, 1.00);
	

	border-style: solid;
	
	
}


@media (min-width: 48em) {
	/* Tablet */
	
	.stacks_in_14718-indv-item {
		display: flex;
		flex-flow: column;
		grid-column-end: span 1;
		grid-row-end: span 1;


		
		grid-column-end: span 1;
		grid-row-end: span 1;
		
		
		


		
		justify-content: flex-start;
		
		
		
		
			
		
		
		
		
		
		
		
				
		
	
		
	
		

		
			
		
		
		
	
	}
	

	.stacks_in_14718-indv-item {
		
	}
}

@media (min-width: 62em) {
	/* Desktop */
	

	.stacks_in_14718-indv-item {
		
	}
}











.stacks_in_14718-clickable-item {
	cursor: pointer;
}



.stacks_in_14726 img{width:100%;max-width:250px}




/* Mobile */
.stacks_in_14736-indv-item {
	display: flex;
	flex-flow: column;

	
	grid-column-end: span 1;
	grid-row-end: span 1;
	
	
	


	
	justify-content: flex-start;
	
	
		
	
		
	
	
	
	
	
	
	

	
	
	
	
	
		
	

	
	
	
	border-width: 0px;
	

	
	border-color: rgba(94, 95, 95, 1.00);
	

	border-style: solid;
	
	
}


@media (min-width: 48em) {
	/* Tablet */
	
	.stacks_in_14736-indv-item {
		display: flex;
		flex-flow: column;
		grid-column-end: span 1;
		grid-row-end: span 1;


		
		grid-column-end: span 1;
		grid-row-end: span 1;
		
		
		


		
		justify-content: flex-start;
		
		
		
		
			
		
		
		
		
		
		
		
				
		
	
		
	
		

		
			
		
		
		
	
	}
	

	.stacks_in_14736-indv-item {
		
	}
}

@media (min-width: 62em) {
	/* Desktop */
	

	.stacks_in_14736-indv-item {
		
	}
}











.stacks_in_14736-clickable-item {
	cursor: pointer;
}



.stacks_in_14744 img{width:100%;max-width:250px}




/* CSS GRID */
#stacks_out_14754,
#stacks_in_14754 {
	overflow: visible;
}


#stacks_in_14754 .flux-container {
	overflow: visible;
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	gap: 30px 30px;
	align-items: stretch;

	/* border: 1px solid red; */
	
	margin-bottom: 21px;
	
}

#stacks_in_14754 .flux-item > .stacks_out {
	margin: 0;
	padding: 0;
}


/* These elements will be styled _ONLY_ at their given breakpoints */
/* and will not bleed from one to the other. */

/* Mobile */
@media (max-width: 47.9375em) {
}

/* Tablet */
@media (min-width: 48em) and (max-width: 61.9em) {
}

/* Desktop */
@media (min-width: 62em) {
}



/* ----------------------------------- */

/* These elements will be styled at their given breakpoints */
/* but can bleed from themselves over to wider breakpoints as well. */
/* Mobile */

#stacks_in_14754 .flux-container {
	

	row-gap: 30px;
	column-gap: 30px;
	
	
	
	
	
	
	grid-template-columns: repeat(1, 1fr);
	
	
	
	
	
	grid-auto-rows: auto;
	
	
	
	
	
	
	
	padding: 0px;
	

	
	border-width: 0px;
	

	border-color: rgba(204, 204, 204, 1.00);
	border-style: solid;
	
	
	border-radius: 0px;
	


	
	
	
	
	
	
	

	
	box-shadow: none;
	

}


/* Tablet */
@media (min-width: 48em) {
	
	#stacks_in_14754 .flux-container {
		

		row-gap: 30px;
		column-gap: 30px;
		
		
		
		
		grid-template-columns: repeat(3, 1fr);
		
		
		
		grid-auto-rows: auto;
		
		
		
		
		
			
		

		
			
		
		
		
			
		

		
		
		
		
		
		
		
		
		

		
		box-shadow: none;
		

	}
	
}

@media (min-width: 62em) {
	/* Desktop */
	
}

/* #stacks_in_14754 .flux-container {
	overflow: hidden;
} */







/* Mobile */
.stacks_in_14755-indv-item {
	display: flex;
	flex-flow: column;

	
	grid-column-end: span 1;
	grid-row-end: span 1;
	
	
	


	
	justify-content: flex-start;
	
	
		
	
		
	
	
	
	
	
	
	

	
	
	
	
	
		
	

	
	
	
	border-width: 0px;
	

	
	border-color: rgba(94, 95, 95, 1.00);
	

	border-style: solid;
	
	
}


@media (min-width: 48em) {
	/* Tablet */
	
	.stacks_in_14755-indv-item {
		display: flex;
		flex-flow: column;
		grid-column-end: span 1;
		grid-row-end: span 1;


		
		grid-column-end: span 1;
		grid-row-end: span 1;
		
		
		


		
		justify-content: flex-start;
		
		
		
		
			
		
		
		
		
		
		
		
				
		
	
		
	
		

		
			
		
		
		
	
	}
	

	.stacks_in_14755-indv-item {
		
	}
}

@media (min-width: 62em) {
	/* Desktop */
	

	.stacks_in_14755-indv-item {
		
	}
}











.stacks_in_14755-clickable-item {
	cursor: pointer;
}



.stacks_in_14764 img{width:100%;max-width:250px}




/* Mobile */
.stacks_in_14774-indv-item {
	display: flex;
	flex-flow: column;

	
	grid-column-end: span 1;
	grid-row-end: span 1;
	
	
	


	
	justify-content: flex-start;
	
	
		
	
		
	
	
	
	
	
	
	

	
	
	
	
	
		
	

	
	
	
	border-width: 0px;
	

	
	border-color: rgba(94, 95, 95, 1.00);
	

	border-style: solid;
	
	
}


@media (min-width: 48em) {
	/* Tablet */
	
	.stacks_in_14774-indv-item {
		display: flex;
		flex-flow: column;
		grid-column-end: span 1;
		grid-row-end: span 1;


		
		grid-column-end: span 1;
		grid-row-end: span 1;
		
		
		


		
		justify-content: flex-start;
		
		
		
		
			
		
		
		
		
		
		
		
				
		
	
		
	
		

		
			
		
		
		
	
	}
	

	.stacks_in_14774-indv-item {
		
	}
}

@media (min-width: 62em) {
	/* Desktop */
	

	.stacks_in_14774-indv-item {
		
	}
}











.stacks_in_14774-clickable-item {
	cursor: pointer;
}



.stacks_in_14782 img{width:100%;max-width:250px}




/* Mobile */
.stacks_in_14792-indv-item {
	display: flex;
	flex-flow: column;

	
	grid-column-end: span 1;
	grid-row-end: span 1;
	
	
	


	
	justify-content: flex-start;
	
	
		
	
		
	
	
	
	
	
	
	

	
	
	
	
	
		
	

	
	
	
	border-width: 0px;
	

	
	border-color: rgba(94, 95, 95, 1.00);
	

	border-style: solid;
	
	
}


@media (min-width: 48em) {
	/* Tablet */
	
	.stacks_in_14792-indv-item {
		display: flex;
		flex-flow: column;
		grid-column-end: span 1;
		grid-row-end: span 1;


		
		grid-column-end: span 1;
		grid-row-end: span 1;
		
		
		


		
		justify-content: flex-start;
		
		
		
		
			
		
		
		
		
		
		
		
				
		
	
		
	
		

		
			
		
		
		
	
	}
	

	.stacks_in_14792-indv-item {
		
	}
}

@media (min-width: 62em) {
	/* Desktop */
	

	.stacks_in_14792-indv-item {
		
	}
}











.stacks_in_14792-clickable-item {
	cursor: pointer;
}



.stacks_in_14800 img{width:100%;max-width:250px}


.foot{background-color:rgba(204, 204, 204, 1.00) ;background-position:center center ;background-origin:padding-box ;background-blend-mode:normal ;background-attachment:scroll   ;background-clip:border-box ;}@media (hover:none) and (pointer:coarse){.foot{background-attachment:scroll!important}}
 .footermenu>.menu a, .menu.footermenu a{--menu-link-color:rgba(255, 255, 255, 1.00);--menu-link-color-hover:rgba(51, 51, 51, 1.00);--menu-bg-color:rgba(255, 255, 255, 0.00);--menu-caret-color:rgba(248, 246, 247, 1.00);--menu-border-accent:2px solid var(--menu-link-color)} .footermenu>.menu .menu-text, .menu.footermenu .menu-text{--menu-text-color:rgba(255, 255, 255, 1.00)} .footermenu>.menu>li>a, .menu.footermenu>li>a{padding-top:0.5rem;padding-bottom:0.5rem} .footermenu>.menu .submenu>li>a, .menu.footermenu .submenu>li>a{padding-top:0.75rem;padding-bottom:0.75rem} .footermenu>.menu li.active>a, .footermenu>.menu li.is-active>a, .footermenu>.menu a.is-active, .menu.footermenu li.active>a, .menu.footermenu li.is-active>a, .menu.footermenu a.is-active{--menu-bg-color:rgba(108, 108, 108, 1.00);--menu-link-color:rgba(254, 254, 254, 1.00);--menu-caret-color:rgba(255, 255, 255, 1.00);--menu-link-color-hover:rgba(254, 254, 254, 1.00)} .footermenu>.menu .submenu li.active>a, .footermenu>.menu .submenu li.is-active>a, .footermenu>.menu .submenu a.is-active, .menu.footermenu .submenu li.active>a, .menu.footermenu .submenu li.is-active>a, .menu.footermenu .submenu a.is-active{--menu-caret-color:rgba(255, 255, 255, 1.00)} .footermenu>.menu .submenu a, .menu.footermenu .submenu a{--menu-caret-color:rgba(97, 103, 173, 1.00)} .footermenu>.menu .submenu, .menu.footermenu .submenu{--submenu-bg-color:rgba(254, 254, 254, 1.00);--submenu-border:1px solid rgba(202, 202, 202, 1.00)} .footermenu>.menu .submenu a, .menu.footermenu .submenu a{--menu-bg-color:transparent;--menu-link-color:rgba(34, 34, 34, 1.00);--menu-link-color-hover:rgba(68, 68, 68, 1.00)} .footermenu>.menu .submenu .menu-text, .menu.footermenu .submenu .menu-text{--menu-text-color:rgba(68, 68, 68, 1.00)} .footermenu>.menu .submenu li.active>a, .footermenu>.menu .submenu li.is-active>a, .footermenu>.menu .submenu a.is-active, .menu.footermenu .submenu li.active>a, .menu.footermenu .submenu li.is-active>a, .menu.footermenu .submenu a.is-active{--menu-caret-color:rgba(255, 255, 255, 1.00);--menu-bg-color:rgba(97, 103, 173, 1.00);--menu-link-color:rgba(254, 254, 254, 1.00);--menu-link-color-hover:rgba(254, 254, 254, 1.00)}
.white-f{color:rgba(255, 255, 255, 1.00) !important;}
.margin-f{margin:1rem ;}  
            .footermenu{font-size:calc(12rem/16) ;}@media only screen and (min-width:40em) {            .footermenu{font-size:calc(12rem/16) ;line-height:1.50 }}@media only screen and (min-width:64em) {            .footermenu{font-size:calc(12rem/16) ;line-height:1.50 }}
.background-foot{background-color:rgba(76, 76, 76, 1.00) ;background-position:center center ;background-origin:padding-box ;background-blend-mode:normal ;background-attachment:scroll   ;background-clip:border-box ;}@media (hover:none) and (pointer:coarse){.background-foot{background-attachment:scroll!important}}
.background-foot{padding-top:1.5rem ;}  
.tierahs.stacks_in_8721_88,.tierahs-link.stacks_in_8721_88{color:rgba(255, 255, 255, 1.00);font-size:24px;width:24px}.tierahs.stacks_in_8721_88 svg,.tierahs-link.stacks_in_8721_88 svg{max-width:24px;max-height:24px}.tierahs.stacks_in_8721_88 svg *,.tierahs-link.stacks_in_8721_88 svg *{fill:rgba(255, 255, 255, 1.00)}
.tierahs.stacks_in_8721_90,.tierahs-link.stacks_in_8721_90{color:rgba(255, 255, 255, 1.00);font-size:24px;width:24px}.tierahs.stacks_in_8721_90 svg,.tierahs-link.stacks_in_8721_90 svg{max-width:24px;max-height:24px}.tierahs.stacks_in_8721_90 svg *,.tierahs-link.stacks_in_8721_90 svg *{fill:rgba(255, 255, 255, 1.00)}
.tierahs.stacks_in_8721_91,.tierahs-link.stacks_in_8721_91{color:rgba(255, 255, 255, 1.00);font-size:24px;width:24px}.tierahs.stacks_in_8721_91 svg,.tierahs-link.stacks_in_8721_91 svg{max-width:24px;max-height:24px}.tierahs.stacks_in_8721_91 svg *,.tierahs-link.stacks_in_8721_91 svg *{fill:rgba(255, 255, 255, 1.00)}

.foot{background-color:rgba(204, 204, 204, 1.00) ;background-position:center center ;background-origin:padding-box ;background-blend-mode:normal ;background-attachment:scroll   ;background-clip:border-box ;}@media (hover:none) and (pointer:coarse){.foot{background-attachment:scroll!important}}
 .footermenu>.menu a, .menu.footermenu a{--menu-link-color:rgba(255, 255, 255, 1.00);--menu-link-color-hover:rgba(51, 51, 51, 1.00);--menu-bg-color:rgba(255, 255, 255, 0.00);--menu-caret-color:rgba(248, 246, 247, 1.00);--menu-border-accent:2px solid var(--menu-link-color)} .footermenu>.menu .menu-text, .menu.footermenu .menu-text{--menu-text-color:rgba(255, 255, 255, 1.00)} .footermenu>.menu>li>a, .menu.footermenu>li>a{padding-top:0.5rem;padding-bottom:0.5rem} .footermenu>.menu .submenu>li>a, .menu.footermenu .submenu>li>a{padding-top:0.75rem;padding-bottom:0.75rem} .footermenu>.menu li.active>a, .footermenu>.menu li.is-active>a, .footermenu>.menu a.is-active, .menu.footermenu li.active>a, .menu.footermenu li.is-active>a, .menu.footermenu a.is-active{--menu-bg-color:rgba(108, 108, 108, 1.00);--menu-link-color:rgba(254, 254, 254, 1.00);--menu-caret-color:rgba(255, 255, 255, 1.00);--menu-link-color-hover:rgba(254, 254, 254, 1.00)} .footermenu>.menu .submenu li.active>a, .footermenu>.menu .submenu li.is-active>a, .footermenu>.menu .submenu a.is-active, .menu.footermenu .submenu li.active>a, .menu.footermenu .submenu li.is-active>a, .menu.footermenu .submenu a.is-active{--menu-caret-color:rgba(255, 255, 255, 1.00)} .footermenu>.menu .submenu a, .menu.footermenu .submenu a{--menu-caret-color:rgba(97, 103, 173, 1.00)} .footermenu>.menu .submenu, .menu.footermenu .submenu{--submenu-bg-color:rgba(254, 254, 254, 1.00);--submenu-border:1px solid rgba(202, 202, 202, 1.00)} .footermenu>.menu .submenu a, .menu.footermenu .submenu a{--menu-bg-color:transparent;--menu-link-color:rgba(34, 34, 34, 1.00);--menu-link-color-hover:rgba(68, 68, 68, 1.00)} .footermenu>.menu .submenu .menu-text, .menu.footermenu .submenu .menu-text{--menu-text-color:rgba(68, 68, 68, 1.00)} .footermenu>.menu .submenu li.active>a, .footermenu>.menu .submenu li.is-active>a, .footermenu>.menu .submenu a.is-active, .menu.footermenu .submenu li.active>a, .menu.footermenu .submenu li.is-active>a, .menu.footermenu .submenu a.is-active{--menu-caret-color:rgba(255, 255, 255, 1.00);--menu-bg-color:rgba(97, 103, 173, 1.00);--menu-link-color:rgba(254, 254, 254, 1.00);--menu-link-color-hover:rgba(254, 254, 254, 1.00)}
.white-f{color:rgba(255, 255, 255, 1.00) !important;}
.margin-f{margin:1rem ;}  
            .footermenu{font-size:calc(12rem/16) ;}@media only screen and (min-width:40em) {            .footermenu{font-size:calc(12rem/16) ;line-height:1.50 }}@media only screen and (min-width:64em) {            .footermenu{font-size:calc(12rem/16) ;line-height:1.50 }}
.background-foot{background-color:rgba(76, 76, 76, 1.00) ;background-position:center center ;background-origin:padding-box ;background-blend-mode:normal ;background-attachment:scroll   ;background-clip:border-box ;}@media (hover:none) and (pointer:coarse){.background-foot{background-attachment:scroll!important}}
.background-foot{padding-top:1.5rem ;}  
.tierahs.stacks_in_8727_89,.tierahs-link.stacks_in_8727_89{color:rgba(255, 255, 255, 1.00);font-size:24px;width:24px}.tierahs.stacks_in_8727_89 svg,.tierahs-link.stacks_in_8727_89 svg{max-width:24px;max-height:24px}.tierahs.stacks_in_8727_89 svg *,.tierahs-link.stacks_in_8727_89 svg *{fill:rgba(255, 255, 255, 1.00)}
.tierahs.stacks_in_8727_91,.tierahs-link.stacks_in_8727_91{color:rgba(255, 255, 255, 1.00);font-size:24px;width:24px}.tierahs.stacks_in_8727_91 svg,.tierahs-link.stacks_in_8727_91 svg{max-width:24px;max-height:24px}.tierahs.stacks_in_8727_91 svg *,.tierahs-link.stacks_in_8727_91 svg *{fill:rgba(255, 255, 255, 1.00)}
.tierahs.stacks_in_8727_92,.tierahs-link.stacks_in_8727_92{color:rgba(255, 255, 255, 1.00);font-size:24px;width:24px}.tierahs.stacks_in_8727_92 svg,.tierahs-link.stacks_in_8727_92 svg{max-width:24px;max-height:24px}.tierahs.stacks_in_8727_92 svg *,.tierahs-link.stacks_in_8727_92 svg *{fill:rgba(255, 255, 255, 1.00)}

.foot{background-color:rgba(204, 204, 204, 1.00) ;background-position:center center ;background-origin:padding-box ;background-blend-mode:normal ;background-attachment:scroll   ;background-clip:border-box ;}@media (hover:none) and (pointer:coarse){.foot{background-attachment:scroll!important}}
 .footermenu>.menu a, .menu.footermenu a{--menu-link-color:rgba(255, 255, 255, 1.00);--menu-link-color-hover:rgba(51, 51, 51, 1.00);--menu-bg-color:rgba(255, 255, 255, 0.00);--menu-caret-color:rgba(248, 246, 247, 1.00);--menu-border-accent:2px solid var(--menu-link-color)} .footermenu>.menu .menu-text, .menu.footermenu .menu-text{--menu-text-color:rgba(255, 255, 255, 1.00)} .footermenu>.menu>li>a, .menu.footermenu>li>a{padding-top:0.5rem;padding-bottom:0.5rem} .footermenu>.menu .submenu>li>a, .menu.footermenu .submenu>li>a{padding-top:0.75rem;padding-bottom:0.75rem} .footermenu>.menu li.active>a, .footermenu>.menu li.is-active>a, .footermenu>.menu a.is-active, .menu.footermenu li.active>a, .menu.footermenu li.is-active>a, .menu.footermenu a.is-active{--menu-bg-color:rgba(108, 108, 108, 1.00);--menu-link-color:rgba(254, 254, 254, 1.00);--menu-caret-color:rgba(255, 255, 255, 1.00);--menu-link-color-hover:rgba(254, 254, 254, 1.00)} .footermenu>.menu .submenu li.active>a, .footermenu>.menu .submenu li.is-active>a, .footermenu>.menu .submenu a.is-active, .menu.footermenu .submenu li.active>a, .menu.footermenu .submenu li.is-active>a, .menu.footermenu .submenu a.is-active{--menu-caret-color:rgba(255, 255, 255, 1.00)} .footermenu>.menu .submenu a, .menu.footermenu .submenu a{--menu-caret-color:rgba(97, 103, 173, 1.00)} .footermenu>.menu .submenu, .menu.footermenu .submenu{--submenu-bg-color:rgba(254, 254, 254, 1.00);--submenu-border:1px solid rgba(202, 202, 202, 1.00)} .footermenu>.menu .submenu a, .menu.footermenu .submenu a{--menu-bg-color:transparent;--menu-link-color:rgba(34, 34, 34, 1.00);--menu-link-color-hover:rgba(68, 68, 68, 1.00)} .footermenu>.menu .submenu .menu-text, .menu.footermenu .submenu .menu-text{--menu-text-color:rgba(68, 68, 68, 1.00)} .footermenu>.menu .submenu li.active>a, .footermenu>.menu .submenu li.is-active>a, .footermenu>.menu .submenu a.is-active, .menu.footermenu .submenu li.active>a, .menu.footermenu .submenu li.is-active>a, .menu.footermenu .submenu a.is-active{--menu-caret-color:rgba(255, 255, 255, 1.00);--menu-bg-color:rgba(97, 103, 173, 1.00);--menu-link-color:rgba(254, 254, 254, 1.00);--menu-link-color-hover:rgba(254, 254, 254, 1.00)}
.white-f{color:rgba(255, 255, 255, 1.00) !important;}
.margin-f{margin:1rem ;}  
            .footermenu{font-size:calc(12rem/16) ;}@media only screen and (min-width:40em) {            .footermenu{font-size:calc(12rem/16) ;line-height:1.50 }}@media only screen and (min-width:64em) {            .footermenu{font-size:calc(12rem/16) ;line-height:1.50 }}
.background-foot{background-color:rgba(76, 76, 76, 1.00) ;background-position:center center ;background-origin:padding-box ;background-blend-mode:normal ;background-attachment:scroll   ;background-clip:border-box ;}@media (hover:none) and (pointer:coarse){.background-foot{background-attachment:scroll!important}}
.background-foot{padding-top:1.5rem ;}  
.tierahs.stacks_in_8733_88,.tierahs-link.stacks_in_8733_88{color:rgba(255, 255, 255, 1.00);font-size:24px;width:24px}.tierahs.stacks_in_8733_88 svg,.tierahs-link.stacks_in_8733_88 svg{max-width:24px;max-height:24px}.tierahs.stacks_in_8733_88 svg *,.tierahs-link.stacks_in_8733_88 svg *{fill:rgba(255, 255, 255, 1.00)}
.tierahs.stacks_in_8733_90,.tierahs-link.stacks_in_8733_90{color:rgba(255, 255, 255, 1.00);font-size:24px;width:24px}.tierahs.stacks_in_8733_90 svg,.tierahs-link.stacks_in_8733_90 svg{max-width:24px;max-height:24px}.tierahs.stacks_in_8733_90 svg *,.tierahs-link.stacks_in_8733_90 svg *{fill:rgba(255, 255, 255, 1.00)}
.tierahs.stacks_in_8733_91,.tierahs-link.stacks_in_8733_91{color:rgba(255, 255, 255, 1.00);font-size:24px;width:24px}.tierahs.stacks_in_8733_91 svg,.tierahs-link.stacks_in_8733_91 svg{max-width:24px;max-height:24px}.tierahs.stacks_in_8733_91 svg *,.tierahs-link.stacks_in_8733_91 svg *{fill:rgba(255, 255, 255, 1.00)}

.foot{background-color:rgba(204, 204, 204, 1.00) ;background-position:center center ;background-origin:padding-box ;background-blend-mode:normal ;background-attachment:scroll   ;background-clip:border-box ;}@media (hover:none) and (pointer:coarse){.foot{background-attachment:scroll!important}}
 .footermenu>.menu a, .menu.footermenu a{--menu-link-color:rgba(255, 255, 255, 1.00);--menu-link-color-hover:rgba(51, 51, 51, 1.00);--menu-bg-color:rgba(255, 255, 255, 0.00);--menu-caret-color:rgba(248, 246, 247, 1.00);--menu-border-accent:2px solid var(--menu-link-color)} .footermenu>.menu .menu-text, .menu.footermenu .menu-text{--menu-text-color:rgba(255, 255, 255, 1.00)} .footermenu>.menu>li>a, .menu.footermenu>li>a{padding-top:0.5rem;padding-bottom:0.5rem} .footermenu>.menu .submenu>li>a, .menu.footermenu .submenu>li>a{padding-top:0.75rem;padding-bottom:0.75rem} .footermenu>.menu li.active>a, .footermenu>.menu li.is-active>a, .footermenu>.menu a.is-active, .menu.footermenu li.active>a, .menu.footermenu li.is-active>a, .menu.footermenu a.is-active{--menu-bg-color:rgba(108, 108, 108, 1.00);--menu-link-color:rgba(254, 254, 254, 1.00);--menu-caret-color:rgba(255, 255, 255, 1.00);--menu-link-color-hover:rgba(254, 254, 254, 1.00)} .footermenu>.menu .submenu li.active>a, .footermenu>.menu .submenu li.is-active>a, .footermenu>.menu .submenu a.is-active, .menu.footermenu .submenu li.active>a, .menu.footermenu .submenu li.is-active>a, .menu.footermenu .submenu a.is-active{--menu-caret-color:rgba(255, 255, 255, 1.00)} .footermenu>.menu .submenu a, .menu.footermenu .submenu a{--menu-caret-color:rgba(97, 103, 173, 1.00)} .footermenu>.menu .submenu, .menu.footermenu .submenu{--submenu-bg-color:rgba(254, 254, 254, 1.00);--submenu-border:1px solid rgba(202, 202, 202, 1.00)} .footermenu>.menu .submenu a, .menu.footermenu .submenu a{--menu-bg-color:transparent;--menu-link-color:rgba(34, 34, 34, 1.00);--menu-link-color-hover:rgba(68, 68, 68, 1.00)} .footermenu>.menu .submenu .menu-text, .menu.footermenu .submenu .menu-text{--menu-text-color:rgba(68, 68, 68, 1.00)} .footermenu>.menu .submenu li.active>a, .footermenu>.menu .submenu li.is-active>a, .footermenu>.menu .submenu a.is-active, .menu.footermenu .submenu li.active>a, .menu.footermenu .submenu li.is-active>a, .menu.footermenu .submenu a.is-active{--menu-caret-color:rgba(255, 255, 255, 1.00);--menu-bg-color:rgba(97, 103, 173, 1.00);--menu-link-color:rgba(254, 254, 254, 1.00);--menu-link-color-hover:rgba(254, 254, 254, 1.00)}
.white-f{color:rgba(255, 255, 255, 1.00) !important;}
.margin-f{margin:1rem ;}  
            .footermenu{font-size:calc(12rem/16) ;}@media only screen and (min-width:40em) {            .footermenu{font-size:calc(12rem/16) ;line-height:1.50 }}@media only screen and (min-width:64em) {            .footermenu{font-size:calc(12rem/16) ;line-height:1.50 }}
.background-foot{background-color:rgba(76, 76, 76, 1.00) ;background-position:center center ;background-origin:padding-box ;background-blend-mode:normal ;background-attachment:scroll   ;background-clip:border-box ;}@media (hover:none) and (pointer:coarse){.background-foot{background-attachment:scroll!important}}
.background-foot{padding-top:1.5rem ;}  
.tierahs.stacks_in_8714_94,.tierahs-link.stacks_in_8714_94{color:rgba(255, 255, 255, 1.00);font-size:24px;width:24px}.tierahs.stacks_in_8714_94 svg,.tierahs-link.stacks_in_8714_94 svg{max-width:24px;max-height:24px}.tierahs.stacks_in_8714_94 svg *,.tierahs-link.stacks_in_8714_94 svg *{fill:rgba(255, 255, 255, 1.00)}
.tierahs.stacks_in_8714_96,.tierahs-link.stacks_in_8714_96{color:rgba(255, 255, 255, 1.00);font-size:24px;width:24px}.tierahs.stacks_in_8714_96 svg,.tierahs-link.stacks_in_8714_96 svg{max-width:24px;max-height:24px}.tierahs.stacks_in_8714_96 svg *,.tierahs-link.stacks_in_8714_96 svg *{fill:rgba(255, 255, 255, 1.00)}
.tierahs.stacks_in_8714_97,.tierahs-link.stacks_in_8714_97{color:rgba(255, 255, 255, 1.00);font-size:24px;width:24px}.tierahs.stacks_in_8714_97 svg,.tierahs-link.stacks_in_8714_97 svg{max-width:24px;max-height:24px}.tierahs.stacks_in_8714_97 svg *,.tierahs-link.stacks_in_8714_97 svg *{fill:rgba(255, 255, 255, 1.00)}

