/*
 * com.onelittledesigner.vivid_tiles_css
 */

.hf-cards,
.hf-cards * {
  box-sizing: border-box;
}
.hf-cards {
	--hf-point: calc(var(--hf-width)*0.2);
  --hf-point2x: calc(var(--hf-point)*2);
  font-family: helveticaNeue;
}
.hf-cards,
.hf-cards > [tag="node"] {
  display: flex;
  flex-wrap: wrap;
}
.hf-cards > [tag="node"] {
  width: 100%;
}
.hf-cards > [tag="node"] > div {
  margin: 0;
}
.hf-cards > [tag="node"] > div[tag="button"] {
  margin: 24px !important;
}
 .hf-card {
  max-width: 100%;
}
 .hf-card-inner {
  position: relative;
  width: var(--hf-width);
  max-width: 100%;
  height: 100%;
}
 .hf-card-content {
  position: relative;
  z-index: 10;
}
 .hf-card-content-inner {
  padding: 0;
  border-radius: var(--hf-border-radius);
  border-width: var(--hf-bdrSize);
  border-style: solid;
  width: 100%;
}
.hf-v.hf-ext:not(.hf-squared) .hf-card-content-inner {
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}
 .hf-v.hf2-ext:not(.hf2-squared) .hf-card-content-inner {
  border-top-right-radius: 0;
  border-top-left-radius: 0;
}
 .hf-card-content-inner > .hf-grad {
  min-height: calc(var(--hf-point) + var(--hf-lyrSize));
}
 .hf-v.hf-no-point.hf2-no-point .hf-card-content-inner > .hf-grad {
  min-height: calc(60px + var(--hf-lyrSize));
}
.hf-card-content-inner > .hf-grad > div {
  padding: var(--hf-innerPaddingY) var(--hf-innerPaddingX);
}
.hf2-ext .hf-card-content-inner > .hf-grad > div > div:first-child {
  margin-top: var(--hf-innerPaddingYNeg);
}
.hf-ext .hf-card-content-inner > .hf-grad > div > div:last-child {
  margin-bottom: var(--hf-innerPaddingYNeg);
}
.hf-v.hf2-ext:not(.hf2-no-point) .hf-card-content-inner > .hf-grad > div {
  padding-top: calc(var(--hf-innerPaddingY) - var(--hf-border-radius));
}
.hf-v.hf-ext:not(.hf-no-point)  .hf-card-content-inner > .hf-grad > div {
  padding-bottom: calc(var(--hf-innerPaddingY) - var(--hf-border-radius));
}
.hf-v.hf2-ext.hf2-rounded .hf-card-content-inner > .hf-grad > div {
  padding-top: calc(var(--hf-innerPaddingY) + 12px + var(--hf-border-radius));
}
.hf-v.hf-ext.hf-rounded  .hf-card-content-inner > .hf-grad > div {
  padding-bottom: calc(var(--hf-innerPaddingY) + 12px + var(--hf-border-radius));
}
 .hf-card-header,
 .hf-card-footer {
  position: relative;
  min-height: calc(var(--hf-point));
}
 .hf-v.hf2-ext .hf-card-header,
 .hf-v.hf-ext .hf-card-footer {
  min-height: calc(var(--hf-point) + var(--hf-border-radius) + var(--hf-bdrSize));
}
 .hf2-no-point .hf-card-header,
 .hf-no-point .hf-card-footer {
  min-height: 72px;
}
 .hf-v.hf2-no-content .hf-card-header,
 .hf-v.hf-no-content .hf-card-footer {
  min-height: var(--hf-point);
}
 .hf-v.hf2-no-content.hf2-no-point .hf-card-header,
 .hf-v.hf-no-content.hf-no-point .hf-card-footer {
  min-height: 60px;
}
 .hf-v.hf2-split .hf-card-header,
 .hf-v.hf-split .hf-card-footer {
  z-index: 10;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: var(--hf-point2x);
  height: var(--hf-point2x);
  margin-left: auto;
  margin-right: auto;
}
 .hf-v.hf2-split .hf-card-header {
  margin-bottom: calc(var(--hf-point2x)/2 * -1);
}
 .hf-v.hf-split .hf-card-footer {
  margin-top: calc(var(--hf-point2x)/2 * -1);
}
 .hf-v.hf2-split.hf2-no-point .hf-card-header,
 .hf-v.hf-split.hf-no-point .hf-card-footer {
  width: 120px;
  height: 120px;
}
 .hf-v.hf2-split.hf2-no-point .hf-card-header {
  margin-bottom: -60px;
}
 .hf-v.hf-split.hf-no-point .hf-card-footer {
  margin-top: -60px;
}
 .hf-v.hf2-split .hf-card-header > div,
 .hf-v.hf-split .hf-card-footer > div {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  background-size: cover;
  border-radius: var(--hf-border-radius);
  background-position: center;
}

 .hf-v.hf2-detached:not(.hf2-no-content) .hf-card-header,
 .hf-v.hf-detached:not(.hf-no-content) .hf-card-footer {
  display: grid;
  width: 100%;
}
 .hf-v.hf2-detached:not(.hf2-no-content) .hf-card-header > div {
  margin-top: var(--hf-lyrSize);
}
 .hf-v.hf-detached:not(.hf-no-content) .hf-card-footer > div {
  margin-bottom: var(--hf-lyrSize);
}
 .hf-v.hf2-detached.hf2-angle:not(.hf2-no-content) .hf-card-header > div,
 .hf-v.hf2-detached.hf2-angle-alt:not(.hf2-no-content) .hf-card-header > div,
 .hf-v.hf2-detached.hf2-rounded:not(.hf2-no-content) .hf-card-header > div {
  margin-top: calc(var(--hf-lyrSize)*2);
}
 .hf-v.hf-detached.hf-angle:not(.hf-no-content) .hf-card-footer > div,
 .hf-v.hf-detached.hf-angle-alt:not(.hf-no-content) .hf-card-footer > div,
 .hf-v.hf-detached.hf-rounded:not(.hf-no-content) .hf-card-footer > div {
  margin-bottom: calc(var(--hf-lyrSize)*2);
}
 .hf-v.hf2-no-content .hf-card-header > div,
 .hf-v.hf-no-content .hf-card-footer > div,
 .hf-v.hf2-ext .hf-card-header > div,
 .hf-v.hf-ext .hf-card-footer > div {
  display: none;
}
 .hf-card-header h1,
 .hf-card-header h2,
 .hf-card-header h3,
 .hf-card-footer h1,
 .hf-card-footer h2,
 .hf-card-footer h3,
 .hf-card-footer p {
  margin: 0;
}
 .hf-v.hf2-ext .hf-card-content-inner {
  border-top-width: 0px;
}
 .hf-v.hf-ext .hf-card-content-inner {
  border-bottom-width: 0px;
}
 .hf-gfx,
 .hf-div,
 .hf-border,
 .hf-gfx div {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
 .hf-v .hf-bottom {
  top: calc(var(--hf-point) + var(--hf-lyrSize)*2  +  var(--hf-border-radius));
}
 .hf-v .hf-top {
  bottom: calc(var(--hf-point) + var(--hf-lyrSize)*2  +  var(--hf-border-radius));
}




.hf-v:not(.hf2-rounded) .hf-top,
.hf-v:not(.hf-rounded) .hf-bottom {
  clip-path: inset(calc(var(--hf-lyrSize)*2 + var(--hf-point) + var(--hf-border-radius) + 2px) 0 0 0);
  bottom: 0;
  top: 0;
}
/* .hf-v.hf-none .hf-top,
.hf-v.hf2-none .hf-bottom {
  clip-path: inset(0 round var(--hf-border-radius));
} */
/* ANGLE EXT */
.hf-v.hf-angle:not(.hf2-rounded) .hf-top,
.hf-v.hf2-angle:not(.hf-rounded) .hf-bottom {
  clip-path: inset(calc(var(--hf-lyrSize)*2 + var(--hf-point) + var(--hf-border-radius) + 16px) 0 0 0);
}
.hf-v.hf-angle.hf2-no-point .hf-bottom {
  z-index: 3;
}
.hf-v.hf-rounded.hf2-ext .hf-top,
.hf-v.hf2-angle.hf-no-point .hf-top {
  z-index: 4;
}
/* NO POINT */
.hf-v.hf-no-point:not(.hf-split):not(.hf-has-content):not(.hf2-rounded):not(.hf-rounded.hf-no-content) .hf-top {
  clip-path: inset(calc(var(--hf-lyrSize)*2 + var(--hf-border-radius)) 0 0 0);
  bottom: 0;
  top: 0;
}
.hf-v.hf2-no-point:not(.hf2-split):not(.hf2-has-content):not(.hf-rounded):not(.hf2-rounded.hf2-no-content) .hf-bottom {
  clip-path: inset(calc(var(--hf-lyrSize)*2 + var(--hf-border-radius)) 0 0 0);
  bottom: 0;
  top: 0;
}
/*no-point on top is not rotated*/
.hf-v.hf2-no-point:not(.hf-split):not(.hf-has-content):not(.hf2-rounded):not(.hf-rounded.hf-no-content) .hf-top,
.hf-v.hf2-no-point:not(.hf2-rounded) .hf-top {
  clip-path: inset(0 0 calc(var(--hf-lyrSize)*2 + var(--hf-point) + var(--hf-border-radius) + 2px) 0);
  bottom: 0;
  top: 0;
}
/*both no-point*/.hf-v.hf-no-point.hf2-no-point:not(.hf-split):not(.hf-has-content):not(.hf2-rounded):not(.hf2-rounded.hf2-no-content) .hf-top {
  clip-path: inset(0 0 calc(var(--hf-lyrSize)*2 + var(--hf-border-radius)) 0);
  bottom: 0;
  top: 0;
}
/*rounded ext*/.hf-card.hf-v.hf-no-point.hf-rounded.hf-ext:not(.hf2-rounded) .hf-card-inner .hf-border.hf-top {
  clip-path: inset(calc(var(--hf-lyrSize)*3 + var(--hf-border-radius)) 0 0 0);
  bottom: 0;
  top: 0;
}
/*rounded ext*/.hf-card.hf-v.hf2-no-point.hf2-rounded.hf2-ext:not(.hf-rounded) .hf-card-inner .hf-border.hf-bottom {
  clip-path: inset(calc(var(--hf-lyrSize)*3 + var(--hf-border-radius)) 0 0 0);
  bottom: 0;
  top: 0;
}
/*rounded ext squared top */.hf-card.hf-v.hf-no-point.hf-rounded.hf-ext.hf2-squared:not(.hf2-rounded) .hf-card-inner .hf-border.hf-top {
  clip-path: inset(0 0 calc(var(--hf-lyrSize)*3 + var(--hf-border-radius)) 0);
  bottom: 0;
  top: 0;
}
.hf-cards:not(.hf-c) .hf-gfx {
  z-index: 3;
}
 .hf-gfx div {
  width: 100%;
  height: 100%;
}
 .hf-gfx svg {
  overflow: visible;
}
 .hf-border {
  pointer-events: none;
}
/* icon */
.hf-v.hf2-ext.hf-card .hf-card-inner {
 padding-top: calc(var(--hf-lyrSize)*2 - var(--hf-bdrSize));
}
.hf-v.hf-ext.hf-card .hf-card-inner {
 padding-bottom: calc(var(--hf-lyrSize)*2 - var(--hf-bdrSize));
}
 .hf-v.hf2-detached.hf2-no-content.hf-card .hf-card-inner,
 .hf-v.hf2-split.hf-card .hf-card-inner {
  padding-top: calc(var(--hf-lyrSize)*2);
}
 .hf-v.hf-detached.hf-no-content.hf-card .hf-card-inner,
 .hf-v.hf-split.hf-card .hf-card-inner {
  padding-bottom: calc(var(--hf-lyrSize)*2);
}
 .hf-v .hf-card-content {
  height: 100%;
}
/* positioning */
 .hf-v .hf-card-inner .hf-bottom {
  will-change: transform;
}
 .hf-v .hf-top {
  will-change: transform;
  transform: rotateX(180deg);
  transform-origin: center;
}
 .hf-grad:before {
  z-index: 0;
}
 .hf-grad > div {
  position: relative;
  z-index: 1;
  display: grid;
}
 .hf-v.hf2-chevron .hf-top .hf-gfx-lyr2 div,
 .hf-v.hf-chevron .hf-bottom .hf-gfx-lyr2 div {
  top: auto;
  clip-path: polygon(
    0 var(--hf-bdrSize),
    100% var(--hf-bdrSize),
    100% calc(100% - var(--hf-point)),
    50% 100%,
    0 calc(100% - var(--hf-point))
  );
}
 .hf-v.hf2-chevron .hf-top .hf-gfx-lyr1 div,
 .hf-v.hf-chevron .hf-bottom .hf-gfx-lyr1 div {
  top: auto;
  clip-path: polygon(
    0 var(--hf-bdrSize),
    100% var(--hf-bdrSize),
    100% calc(100% - var(--hf-point) - var(--hf-lyrSize)),
    50% calc(100% - var(--hf-lyrSize)),
    0 calc(100% - var(--hf-point) - var(--hf-lyrSize))
    );
}
 .hf-v.hf2-chevron.hf2-ext .hf-top .hf-gfx-bdr div,
 .hf-v.hf-chevron.hf-ext .hf-bottom .hf-gfx-bdr div {
  right: -0.5px;
  width: auto;
  clip-path: polygon(
    0 calc(100% - var(--hf-point2x) - var(--hf-lyrSize)*2),
    100% calc(100% - var(--hf-point2x) - var(--hf-lyrSize)*2),
    100% calc(100% - var(--hf-point) - var(--hf-lyrSize)*2 ),
    50% calc(100% - var(--hf-lyrSize)*2),
    0 calc(100% - var(--hf-point) - var(--hf-lyrSize)*2 )
    );
}
 .hf-v.hf2-chevron.hf2-ext .hf-top .hf-gfx-bg div,
 .hf-v.hf-chevron.hf-ext .hf-bottom .hf-gfx-bg div {
  clip-path: polygon(
    var(--hf-bdrSize) calc(100% - var(--hf-point2x) - var(--hf-lyrSize)*2),
    calc(100% - var(--hf-bdrSize)) calc(100% - var(--hf-point2x) - var(--hf-lyrSize)*2),
    calc(100% - var(--hf-bdrSize)) calc(100% - var(--hf-point) - var(--hf-lyrSize)*2 ),
    50% calc(100% - var(--hf-lyrSize)*2),
    var(--hf-bdrSize) calc(100% - var(--hf-point) - var(--hf-lyrSize)*2 )
    );
}
 .hf-v.hf2-chevron.hf2-detached:not(.hf2-no-content) .hf-card-header {
  padding-top: calc(var(--hf-point) - var(--hf-border-radius));
}
 .hf-v.hf-chevron.hf-detached:not(.hf-no-content)  .hf-card-footer {
  padding-bottom: calc(var(--hf-point) - var(--hf-border-radius));
}
 .hf-v.hf2-chevron-alt .hf-top .hf-gfx-lyr2 div,
 .hf-v.hf-chevron-alt .hf-bottom .hf-gfx-lyr2 div {
  top: auto;
  clip-path: polygon(
    0 var(--hf-bdrSize),
    100% var(--hf-bdrSize),
    100% calc(100% - var(--hf-point) - var(--hf-lyrSize)),
    50% 100%,
    0 calc(100% - var(--hf-point) - var(--hf-lyrSize))
  );
}
 .hf-v.hf2-chevron-alt .hf-top .hf-gfx-lyr1 div,
 .hf-v.hf-chevron-alt .hf-bottom .hf-gfx-lyr1 div {
  top: auto;
  clip-path: polygon(
    0 var(--hf-bdrSize),
    100% var(--hf-bdrSize),
    100% calc(100% - var(--hf-point) - var(--hf-lyrSize)),
    50% calc(100% - var(--hf-lyrSize)),
    0 calc(100% - var(--hf-point) - var(--hf-lyrSize))
    );
}
 .hf-v.hf2-chevron-alt.hf2-ext .hf-top .hf-gfx-bdr div,
 .hf-v.hf-chevron-alt.hf-ext .hf-bottom .hf-gfx-bdr div {
  right: -0.5px;
  width: auto;
  clip-path: polygon(
    0 calc(100% - var(--hf-point2x) - var(--hf-lyrSize)*2),
    100% calc(100% - var(--hf-point2x) - var(--hf-lyrSize)*2),
    100% calc(100% - var(--hf-point) - var(--hf-lyrSize)*2 ),
    50% calc(100% - var(--hf-lyrSize)*2),
    0 calc(100% - var(--hf-point) - var(--hf-lyrSize)*2 )
    );
}
 .hf-v.hf2-chevron-alt.hf2-ext .hf-top .hf-gfx-bg div,
 .hf-v.hf-chevron-alt.hf-ext .hf-bottom .hf-gfx-bg div {
  clip-path: polygon(
    var(--hf-bdrSize) calc(100% - var(--hf-point2x) - var(--hf-lyrSize)*2),
    calc(100% - var(--hf-bdrSize)) calc(100% - var(--hf-point2x) - var(--hf-lyrSize)*2),
    calc(100% - var(--hf-bdrSize)) calc(100% - var(--hf-point) - var(--hf-lyrSize)*2 ),
    50% calc(100% - var(--hf-lyrSize)*2),
    var(--hf-bdrSize) calc(100% - var(--hf-point) - var(--hf-lyrSize)*2 )
    );
}
 .hf-v.hf2-chevron-alt.hf2-detached:not(.hf2-no-content) .hf-card-header {
  padding-top: calc(var(--hf-point) - var(--hf-border-radius));
}
 .hf-v.hf-chevron-alt.hf-detached:not(.hf-no-content)  .hf-card-footer {
  padding-bottom: calc(var(--hf-point) - var(--hf-border-radius));
}
 .hf-v.hf2-no-point .hf-top {
  transform: none;
}
 .hf-v.hf2-no-point .hf-top .hf-gfx,
 .hf-v.hf-no-point .hf-bottom .hf-gfx {
  filter: none;
}
 .hf-v.hf2-no-point .hf-top .hf-gfx-lyr2 div,
 .hf-v.hf-no-point .hf-bottom .hf-gfx-lyr2 div {
  bottom: 0px;
  top: auto;
}
 .hf-v.hf2-no-point .hf-top .hf-gfx-lyr1 div,
 .hf-v.hf-no-point .hf-bottom .hf-gfx-lyr1 div {
  bottom: var(--hf-lyrSize);
  height: auto;
}
 .hf-v.hf2-squared .hf-top .hf-gfx-lyr1 div,
 .hf-v.hf2-squared .hf-top .hf-gfx-lyr2 div {
  border-radius: var(--hf-border-radius) var(--hf-border-radius) 0 0;
}
 .hf-v.hf-squared .hf-bottom .hf-gfx-lyr2 div,
 .hf-v.hf-squared .hf-bottom .hf-gfx-lyr1 div {
  border-radius: 0 0 var(--hf-border-radius) var(--hf-border-radius);
}
 .hf-v.hf2-no-point .hf-top .hf-gfx-lyr2 div {
  bottom: auto;
  top: 0px;
}
 .hf-v.hf2-no-point .hf-top .hf-gfx-lyr1 div {
  top: var(--hf-lyrSize);
  bottom: 0;
  height: auto;
}
 .hf-v.hf2-no-point .hf-card-content-inner {
  border-top-width: var(--hf-bdrSize);
}
 .hf-v.hf-no-point .hf-card-content-inner {
  border-bottom-width: var(--hf-bdrSize);
}
 .hf-v.hf2-no-point .hf-card-header,
 .hf-v.hf-no-point .hf-card-footer {
  min-height: 0;
}
 .hf-v.hf2-squared.hf2-no-content .hf-card-header,
 .hf-v.hf-squared.hf-no-content .hf-card-footer {
  min-height: var(--hf-lyrSize);
}
 .hf-v.hf-no-point.hf-ext.hf2-none .hf-bottom,
 .hf-v.hf2-no-point.hf2-ext.hf-none .hf-top {
   clip-path: none !important;
 }
.hf-v.hf2-rounded .hf-top .hf-gfx-lyr1 div,
.hf-v.hf2-rounded .hf-top .hf-gfx-lyr2 div {
  border-top-right-radius: calc(var(--hf-width)/2) calc((var(--hf-lyrSize)*3 + var(--hf-border-radius))/2);
  border-top-left-radius: calc(var(--hf-width)/2) calc((var(--hf-lyrSize)*3 + var(--hf-border-radius))/2);

}
.hf-v.hf-rounded .hf-bottom .hf-gfx-lyr2 div,
.hf-v.hf-rounded .hf-bottom .hf-gfx-lyr1 div {
  border-bottom-right-radius: calc(var(--hf-width)/2) calc((var(--hf-lyrSize)*3 + var(--hf-border-radius))/2);
  border-bottom-left-radius: calc(var(--hf-width)/2) calc((var(--hf-lyrSize)*3 + var(--hf-border-radius))/2);
}
 .hf-v.hf-rounded.hf-detached.hf-has-content .hf-bottom .hf-gfx-lyr1 div,
 .hf-v.hf-rounded.hf-detached.hf-has-content .hf-bottom .hf-gfx-lyr2 div,
 .hf-v.hf-rounded.hf-ext .hf-card-content-inner {
  border-bottom-right-radius: calc(var(--hf-width)/2) calc((var(--hf-lyrSize)*3 + var(--hf-border-radius))/2);
  border-bottom-left-radius: calc(var(--hf-width)/2) calc((var(--hf-lyrSize)*3 + var(--hf-border-radius))/2);
}
 .hf-v.hf2-rounded.hf2-detached.hf2-has-content .hf-top .hf-gfx-lyr1 div,
 .hf-v.hf2-rounded.hf2-detached.hf2-has-content .hf-top .hf-gfx-lyr2 div,
 .hf-v.hf2-rounded.hf2-ext .hf-card-content-inner {
  border-top-right-radius: calc(var(--hf-width)/2) calc((var(--hf-lyrSize)*3 + var(--hf-border-radius))/2);
  border-top-left-radius: calc(var(--hf-width)/2) calc((var(--hf-lyrSize)*3 + var(--hf-border-radius))/2);
}
 .hf-v.hf2-no-point.hf2-detached:not(.hf2-no-content) .hf-card-header,
 .hf-v.hf-no-point.hf-detached:not(.hf-no-content) .hf-card-footer {
  display: grid;
}
 .hf-v.hf2-no-point.hf2-ext .hf-card-header,
 .hf-v.hf-no-point.hf-ext .hf-card-footer {
  padding-top: 0;
  padding-bottom: 0;
  height: var(--hf-bdrSize);
}
 .hf-v.hf2-ribbon-tail .hf-top .hf-gfx-lyr2 div,
 .hf-v.hf-ribbon-tail .hf-bottom .hf-gfx-lyr2 div {
  top: auto;
  clip-path: polygon(
    0 var(--hf-bdrSize),
    100% var(--hf-bdrSize),
    100% 100%,
    50% calc(100% - var(--hf-point)),
    0 100%
  );
}
 .hf-v.hf2-ribbon-tail .hf-top .hf-gfx-lyr1 div,
 .hf-v.hf-ribbon-tail .hf-bottom .hf-gfx-lyr1 div {
  top: auto;
  clip-path: polygon(
    0 var(--hf-bdrSize),
    100% var(--hf-bdrSize),
    100% calc(100% - var(--hf-lyrSize)),
    50% calc(100% - var(--hf-point) - var(--hf-lyrSize)),
    0 calc(100% - var(--hf-lyrSize))
    );
}
 .hf-v.hf2-ribbon-tail.hf2-ext .hf-top .hf-gfx-bdr div,
 .hf-v.hf-ribbon-tail.hf-ext .hf-bottom .hf-gfx-bdr div {
  right: -0.5px;
  width: auto;
    clip-path: polygon(
      0 calc(100% - var(--hf-point2x) - var(--hf-lyrSize)*2),
      100% calc(100% - var(--hf-point2x) - var(--hf-lyrSize)*2),
      100% calc(100% - var(--hf-lyrSize)*2),
      50% calc(100% - var(--hf-point) - var(--hf-lyrSize)*2),
      0 calc(100% - var(--hf-lyrSize)*2)
      );
}
 .hf-v.hf2-ribbon-tail.hf2-ext .hf-top .hf-gfx-bg div,
 .hf-v.hf-ribbon-tail.hf-ext .hf-bottom .hf-gfx-bg div {
  clip-path: polygon(
    var(--hf-bdrSize) calc(100% - var(--hf-point2x) - var(--hf-lyrSize)*2),
    calc(100% - var(--hf-bdrSize)) calc(100% - var(--hf-point2x) - var(--hf-lyrSize)*2),
    calc(100% - var(--hf-bdrSize)) calc(100% - var(--hf-lyrSize)*2 - var(--hf-bdrSize)),
    50% calc(100% - var(--hf-point) - var(--hf-lyrSize)*2),
    var(--hf-bdrSize)  calc(100% - var(--hf-lyrSize)*2 - var(--hf-bdrSize))
    );
}
 .hf-v.hf2-ribbon-tail.hf2-detached:not(.hf2-no-content) .hf-card-header {
  padding-top: var(--hf-point);
}
 .hf-v.hf-ribbon-tail.hf-detached:not(.hf-no-content)  .hf-card-footer {
  padding-bottom: var(--hf-point);
}
 .hf-v.hf2-ribbon-tail-2 .hf-top .hf-gfx-lyr2 div,
 .hf-v.hf-ribbon-tail-2 .hf-bottom .hf-gfx-lyr2 div {
  top: auto;
  clip-path: polygon(
    0 var(--hf-bdrSize),
    100% var(--hf-bdrSize),
    100% 100%,
    50% calc(100% - var(--hf-point)),
    0 100%
  );
}
 .hf-v.hf2-ribbon-tail-2 .hf-top .hf-gfx-lyr1 div,
 .hf-v.hf-ribbon-tail-2 .hf-bottom .hf-gfx-lyr1 div {
  top: auto;
  clip-path: polygon(
    0 var(--hf-bdrSize),
    100% var(--hf-bdrSize),
    100% calc(100% - var(--hf-point) - var(--hf-lyrSize)),
    50% calc(100% - var(--hf-lyrSize)),
    0 calc(100% - var(--hf-point) - var(--hf-lyrSize))
    );
}
 .hf-v.hf2-ribbon-tail-2.hf2-ext .hf-top .hf-gfx-bdr div,
 .hf-v.hf-ribbon-tail-2.hf-ext .hf-bottom .hf-gfx-bdr div {
  right: -0.5px;
  width: auto;
  clip-path: polygon(
    0 calc(100% - var(--hf-point2x) - var(--hf-lyrSize)*2),
    100% calc(100% - var(--hf-point2x) - var(--hf-lyrSize)*2),
    100% calc(100% - var(--hf-point) - var(--hf-lyrSize)*2 ),
    50% calc(100% - var(--hf-lyrSize)*2),
    0 calc(100% - var(--hf-point) - var(--hf-lyrSize)*2 )
    );
}
 .hf-v.hf2-ribbon-tail-2.hf2-ext .hf-top .hf-gfx-bg div,
 .hf-v.hf-ribbon-tail-2.hf-ext .hf-bottom .hf-gfx-bg div {
  clip-path: polygon(
    var(--hf-bdrSize) calc(100% - var(--hf-point2x) - var(--hf-lyrSize)*2),
    calc(100% - var(--hf-bdrSize)) calc(100% - var(--hf-point2x) - var(--hf-lyrSize)*2),
    calc(100% - var(--hf-bdrSize)) calc(100% - var(--hf-point) - var(--hf-lyrSize)*2 ),
    50% calc(100% - var(--hf-lyrSize)*2),
    var(--hf-bdrSize) calc(100% - var(--hf-point) - var(--hf-lyrSize)*2 )
    );
}
 .hf-v.hf2-ribbon-tail-2.hf2-detached:not(.hf2-no-content) .hf-card-header {
  padding-top: calc(var(--hf-point) - var(--hf-border-radius));
}
 .hf-v.hf-ribbon-tail-2.hf-detached:not(.hf-no-content)  .hf-card-footer {
  padding-bottom: calc(var(--hf-point) - var(--hf-border-radius));
}
 .hf-v.hf2-angle.hf2-ext .hf-card-header,
 .hf-v.hf-angle.hf-ext  .hf-card-footer {
  min-height: calc(var(--hf-point) + 16px);
}
 .hf-v.hf2-angle .hf-top .hf-gfx-lyr2 div,
 .hf-v.hf-angle .hf-bottom .hf-gfx-lyr2 div {
  top: auto;
  clip-path: polygon(
    0 var(--hf-bdrSize),
    100% var(--hf-bdrSize),
    100% calc(100% - var(--hf-point) - var(--hf-lyrSize)),
    0 100%
  );
}
 .hf-v.hf2-angle .hf-top .hf-gfx-lyr1 div,
 .hf-v.hf-angle .hf-bottom .hf-gfx-lyr1 div {
  top: auto;
  clip-path: polygon(
    0 var(--hf-bdrSize),
    100% var(--hf-bdrSize),
    100% calc(100% - var(--hf-point) - var(--hf-lyrSize)),
    0 calc(100% - var(--hf-lyrSize))
    );
}
 .hf-v.hf2-angle.hf2-ext .hf-top .hf-gfx-bdr div,
 .hf-v.hf-angle.hf-ext .hf-bottom .hf-gfx-bdr div {
  right: -0.5px;
  width: auto;
  clip-path: polygon(
    0 calc(100% - var(--hf-point2x) - var(--hf-lyrSize)*2),
    100% calc(100% - var(--hf-point2x) - var(--hf-lyrSize)*2),
    100% calc(100% - var(--hf-point) - var(--hf-lyrSize) ),
    0 calc(100% - var(--hf-lyrSize)*2)
    );
}
 .hf-v.hf2-angle.hf2-ext .hf-top .hf-gfx-bg div,
 .hf-v.hf-angle.hf-ext .hf-bottom .hf-gfx-bg div {
  clip-path: polygon(
    var(--hf-bdrSize) calc(100% - var(--hf-point2x) - var(--hf-lyrSize)*2),
    calc(100% - var(--hf-bdrSize)) calc(100% - var(--hf-point2x) - var(--hf-lyrSize)*2),
    calc(100% - var(--hf-bdrSize)) calc(100% - var(--hf-point) - var(--hf-lyrSize)),
    var(--hf-bdrSize) calc(100% - var(--hf-lyrSize)*2 - var(--hf-bdrSize))
    );
}
 .hf-v.hf2-angle.hf2-flip-top .hf-top .hf-gfx-lyr2 div {
  top: auto;
  clip-path: polygon(
    0 var(--hf-bdrSize),
    100% var(--hf-bdrSize),
    100% 100%,
    0% calc(100% - var(--hf-point) - var(--hf-lyrSize))
  );
}
 .hf-v.hf2-angle.hf2-flip-top .hf-top .hf-gfx-lyr1 div {
  top: auto;
  clip-path: polygon(
    0 var(--hf-bdrSize),
    100% var(--hf-bdrSize),
    100% calc(100% - var(--hf-lyrSize)),
    0 calc(100% - var(--hf-point) - var(--hf-lyrSize))
    );
}
 .hf-v.hf2-angle.hf2-ext.hf2-flip-top .hf-top .hf-gfx-bdr div{
  right: -0.5px;
  width: auto;
  clip-path: polygon(
    0 calc(100% - var(--hf-point2x) - var(--hf-lyrSize)*2),
    100% calc(100% - var(--hf-point2x) - var(--hf-lyrSize)*2),
    100% calc(100% - var(--hf-lyrSize)*2),
    0% calc(100% - var(--hf-point) - var(--hf-lyrSize) )
    );
}
 .hf-v.hf2-angle.hf2-ext.hf2-flip-top .hf-top .hf-gfx-bg div {
  clip-path: polygon(
    var(--hf-bdrSize) calc(100% - var(--hf-point2x) - var(--hf-lyrSize)*2),
    calc(100% - var(--hf-bdrSize)) calc(100% - var(--hf-point2x) - var(--hf-lyrSize)*2),
    calc(100% - var(--hf-bdrSize)) calc(100% - var(--hf-lyrSize)*2 - var(--hf-bdrSize)),
    var(--hf-bdrSize)  calc(100% - var(--hf-point) - var(--hf-lyrSize))
    );
}
 .hf-v.hf-angle.hf-flip-bot .hf-bottom .hf-gfx-lyr2 div {
  top: auto;
  clip-path: polygon(
    0 var(--hf-bdrSize),
    100% var(--hf-bdrSize),
    100% 100%,
    0% calc(100% - var(--hf-point) - var(--hf-lyrSize))
  );
}
 .hf-v.hf-angle.hf-flip-bot .hf-bottom .hf-gfx-lyr1 div {
  top: auto;
  clip-path: polygon(
    0 var(--hf-bdrSize),
    100% var(--hf-bdrSize),
    100% calc(100% - var(--hf-lyrSize)),
    0 calc(100% - var(--hf-point) - var(--hf-lyrSize))
    );
}
 .hf-v.hf-angle.hf-ext.hf-flip-bot .hf-bottom .hf-gfx-bdr div {
  right: -0.5px;
  width: auto;
  clip-path: polygon(
    0 calc(100% - var(--hf-point2x) - var(--hf-lyrSize)*2),
    100% calc(100% - var(--hf-point2x) - var(--hf-lyrSize)*2),
    100% calc(100% - var(--hf-lyrSize)*2),
    0% calc(100% - var(--hf-point) - var(--hf-lyrSize) )
    );
}
 .hf-v.hf-angle.hf-ext.hf-flip-bot .hf-bottom .hf-gfx-bg div {
  clip-path: polygon(
    var(--hf-bdrSize) calc(100% - var(--hf-point2x) - var(--hf-lyrSize)*2),
    calc(100% - var(--hf-bdrSize)) calc(100% - var(--hf-point2x) - var(--hf-lyrSize)*2),
    calc(100% - var(--hf-bdrSize)) calc(100% - var(--hf-lyrSize)*2 - var(--hf-bdrSize)),
    var(--hf-bdrSize)  calc(100% - var(--hf-point) - var(--hf-lyrSize))
    );
}

 .hf-v.hf2-angle.hf2-detached .hf-card-header {
  padding-top: calc(var(--hf-lyrSize)*2);
}
 .hf-v.hf-angle.hf-detached .hf-card-footer {
  padding-bottom: calc(var(--hf-lyrSize)*2);
}
 .hf-v.hf2-angle.hf2-detached:not(.hf2-no-content) .hf-card-header {
  padding-top: var(--hf-point);
}
 .hf-v.hf-angle.hf-detached:not(.hf-no-content)  .hf-card-footer {
  padding-bottom: var(--hf-point);
}
 .hf-v.hf2-angle-alt .hf-top .hf-gfx-lyr2 div,
 .hf-v.hf-angle-alt .hf-bottom .hf-gfx-lyr2 div {
  top: auto;
  clip-path: polygon(
    0 var(--hf-bdrSize),
    100% var(--hf-bdrSize),
    100% 100%,
    0 calc(100% - var(--hf-point) - var(--hf-lyrSize))
  );
}
 .hf-v.hf2-angle-alt .hf-top .hf-gfx-lyr1 div,
 .hf-v.hf-angle-alt .hf-bottom .hf-gfx-lyr1 div {
  top: auto;
  clip-path: polygon(
    0 var(--hf-bdrSize),
    100% var(--hf-bdrSize),
    100% calc(100% - var(--hf-point) - var(--hf-lyrSize)),
    0 calc(100% - var(--hf-lyrSize))
    );
}
 .hf-v.hf2-angle-alt.hf2-ext .hf-top .hf-gfx-bdr div,
 .hf-v.hf-angle-alt.hf-ext .hf-bottom .hf-gfx-bdr div {
  right: -0.5px;
  width: auto;
  clip-path: polygon(
    0 calc(100% - var(--hf-point2x) - var(--hf-lyrSize)*2),
    100% calc(100% - var(--hf-point2x) - var(--hf-lyrSize)*2),
    100% calc(100% - var(--hf-point) - var(--hf-lyrSize) ),
    0 calc(100% - var(--hf-lyrSize)*2)
    );
}
 .hf-v.hf2-angle-alt.hf2-ext .hf-top .hf-gfx-bg div,
 .hf-v.hf-angle-alt.hf-ext .hf-bottom .hf-gfx-bg div {
  clip-path: polygon(
    var(--hf-bdrSize) calc(100% - var(--hf-point2x) - var(--hf-lyrSize)*2),
    calc(100% - var(--hf-bdrSize)) calc(100% - var(--hf-point2x) - var(--hf-lyrSize)*2),
    calc(100% - var(--hf-bdrSize)) calc(100% - var(--hf-point) - var(--hf-lyrSize)),
    var(--hf-bdrSize) calc(100% - var(--hf-lyrSize)*2 - var(--hf-bdrSize))
    );
}
 .hf-v.hf2-angle-alt.hf2-flip-top .hf-top .hf-gfx-lyr2 div {
  clip-path: polygon(
    0 var(--hf-bdrSize),
    100% var(--hf-bdrSize),
    100% calc(100% - var(--hf-point) - var(--hf-lyrSize)),
    0 100%
  );
}
 .hf-v.hf2-angle-alt.hf2-flip-top .hf-top .hf-gfx-lyr1 div {
  clip-path: polygon(
    0 var(--hf-bdrSize),
    100% var(--hf-bdrSize),
    100% calc(100% - var(--hf-lyrSize)),
    0 calc(100% - var(--hf-point) - var(--hf-lyrSize))
    );
}
 .hf-v.hf2-angle-alt.hf2-ext.hf2-flip-top .hf-top .hf-gfx-bdr div{
  clip-path: polygon(
    0 calc(100% - var(--hf-point2x) - var(--hf-lyrSize)*2),
    100% calc(100% - var(--hf-point2x) - var(--hf-lyrSize)*2),
    100% calc(100% - var(--hf-lyrSize)*2),
    0 calc(100% - var(--hf-point) - var(--hf-lyrSize) )
    );
}
 .hf-v.hf2-angle-alt.hf2-ext.hf2-flip-top .hf-top .hf-gfx-bg div {
  clip-path: polygon(
    var(--hf-bdrSize) calc(100% - var(--hf-point2x) - var(--hf-lyrSize)*2),
    calc(100% - var(--hf-bdrSize)) calc(100% - var(--hf-point2x) - var(--hf-lyrSize)*2),
    calc(100% - var(--hf-bdrSize)) calc(100% - var(--hf-lyrSize)*2 - var(--hf-bdrSize)),
    var(--hf-bdrSize)  calc(100% - var(--hf-point) - var(--hf-lyrSize))
    );
}
 .hf-v.hf-angle-alt.hf-flip-bot .hf-bottom .hf-gfx-lyr2 div {
  clip-path: polygon(
    0 var(--hf-bdrSize),
    100% var(--hf-bdrSize),
    100% calc(100% - var(--hf-point) - var(--hf-lyrSize)),
    0 100%
  );
}
 .hf-v.hf-angle-alt.hf-flip-bot .hf-bottom .hf-gfx-lyr1 div {
  clip-path: polygon(
    0 var(--hf-bdrSize),
    100% var(--hf-bdrSize),
    100% calc(100% - var(--hf-lyrSize)),
    0 calc(100% - var(--hf-point) - var(--hf-lyrSize))
    );
}
 .hf-v.hf-angle-alt.hf-ext.hf-flip-bot .hf-bottom .hf-gfx-bdr div{
  clip-path: polygon(
    0 calc(100% - var(--hf-point2x) - var(--hf-lyrSize)*2),
    100% calc(100% - var(--hf-point2x) - var(--hf-lyrSize)*2),
    100% calc(100% - var(--hf-lyrSize)*2),
    0 calc(100% - var(--hf-point) - var(--hf-lyrSize) )
    );
}
 .hf-v.hf-angle-alt.hf-ext.hf-flip-bot .hf-bottom .hf-gfx-bg div {
  clip-path: polygon(
    var(--hf-bdrSize) calc(100% - var(--hf-point2x) - var(--hf-lyrSize)*2),
    calc(100% - var(--hf-bdrSize)) calc(100% - var(--hf-point2x) - var(--hf-lyrSize)*2),
    calc(100% - var(--hf-bdrSize)) calc(100% - var(--hf-lyrSize)*2 - var(--hf-bdrSize)),
    var(--hf-bdrSize)  calc(100% - var(--hf-point) - var(--hf-lyrSize))
    );
}
 .hf-v.hf2-angle-alt.hf2-detached .hf-card-header {
  padding-top: calc(var(--hf-lyrSize)*2);
}
 .hf-v.hf-angle-alt.hf-detached .hf-card-footer {
  padding-bottom: calc(var(--hf-lyrSize)*2);
}
 .hf-v.hf2-angle-alt.hf2-detached:not(.hf2-no-content) .hf-card-header {
  padding-top: var(--hf-point);
}
 .hf-v.hf-angle-alt.hf-detached:not(.hf-no-content)  .hf-card-footer {
  padding-bottom: var(--hf-point);
}
 .hf-v:not(.hf2-ext) .hf-top .hf-gfx-bdr div,
 .hf-v:not(.hf-ext) .hf-bottom .hf-gfx-bdr div,
 .hf-v:not(.hf2-ext) .hf-top .hf-gfx-bg div,
 .hf-v:not(.hf-ext) .hf-bottom .hf-gfx-bg div {
  display: none;
}
/* .hf-v.hf2-none .hf-card-header,
.hf-v.hf-none .hf-card-footer, */
.hf-v.hf2-none .hf-top,
.hf-v.hf-none .hf-bottom {
  display: none;
}
.hf-v.hf2-none .hf-card-header,
.hf-v.hf-none .hf-card-footer {
  min-height: 0;
}
 .hf-v.hf2-none .hf-card-content-inner {
  border-top-width: var(--hf-bdrSize);
  border-top-right-radius: var(--hf-border-radius);
  border-top-left-radius: var(--hf-border-radius);
}
 .hf-v.hf-none .hf-card-content-inner {
  border-bottom-width: var(--hf-bdrSize);
  border-bottom-right-radius: var(--hf-border-radius);
  border-bottom-left-radius: var(--hf-border-radius);
  min-height: calc(var(--hf-point2x) + var(--hf-lyrSize)*2);
}
.hf-v[data-lyr-offset="0"]:not(.hf2-ext):not(.hf2-none) .hf-card-content-inner {
  border-top-right-radius: 0;
  border-top-left-radius: 0;
}
.hf-v[data-lyr-offset="0"]:not(.hf-ext):not(.hf-none) .hf-card-content-inner {
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}
 .hf-v.hf2-none .hf-card-content-inner > .hf-grad,
 .hf-v.hf-none .hf-card-content-inner > .hf-grad {
  min-height: calc(var(--hf-point2x) + var(--hf-lyrSize)*2);
}
 .hf-v.hf-animate {
   opacity: 0;
   transition: opacity 900ms ease;
 }
 .hf-v.hf-animate.hf-out-view {
   opacity: 0;
 }
 .hf-v.hf-animate.hf-in-view {
   opacity: 1;
 }
 .hf-v.hf-animate .hf-gfx-lyr1 {
  transform: translate(0,calc(var(--hf-lyrSize)*-1));
  transition: transform 900ms ease;
}
 .hf-v.hf-animate .hf-gfx-lyr2 {
  transform: translate(0,calc(var(--hf-lyrSize)*-2));
  transition: transform 900ms ease;
}
 .hf-v.hf-animate.hf-out-view .hf-gfx-lyr1 {
  transform: translate(0,calc(var(--hf-lyrSize)*-1));
}
 .hf-v.hf-animate.hf-out-view .hf-gfx-lyr2 {
  transform: translate(0,calc(var(--hf-lyrSize)*-2));
}
 .hf-v.hf-animate.hf2-no-point.hf-out-view .hf-top .hf-gfx-lyr1,
 .hf-v.hf-animate.hf2-no-point .hf-top .hf-gfx-lyr1 {
  transform: translate(0,var(--hf-lyrSize));
}
 .hf-v.hf-animate.hf2-no-point.hf-out-view .hf-top .hf-gfx-lyr2,
 .hf-v.hf-animate.hf2-no-point .hf-top .hf-gfx-lyr2 {
  transform: translate(0,calc(var(--hf-lyrSize)*2));
}
 .hf-v.hf-animate.hf2-no-point.hf-in-view .hf-top .hf-gfx-lyr1,
 .hf-v.hf-animate.hf-in-view .hf-gfx-lyr1 {
  transform: translate(0,0);
}
 .hf-v.hf-animate.hf2-no-point.hf-in-view  .hf-top .hf-gfx-lyr2,
 .hf-v.hf-animate.hf-in-view .hf-gfx-lyr2 {
  transform: translate(0,0);
}



.cookie-jar{display:none;z-index:9999;position:fixed;bottom:0;width:100%}.cookie-jar.cookie-jar-top{bottom:auto;top:0}.cookie-jar-buttons > div{width:49.5%;display:inline-block}



.com_joeworkman_stacks_impact_stack .impact-animate.pre-anim{display:none}.com_joeworkman_stacks_impact_stack .slides-navigation{margin:0 auto;position:absolute;z-index:99;width:100%}.com_joeworkman_stacks_impact_stack .slides-navigation a{position:absolute;display:block;text-decoration:none}.com_joeworkman_stacks_impact_stack .slides-navigation a::before{line-height:1em;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;text-align:center;text-rendering:auto;transform:translate(0,0)}.com_joeworkman_stacks_impact_stack .slides-pagination > a{text-decoration:none}.com_joeworkman_stacks_impact_stack .fg-content{position:absolute;top:0;width:100%}.com_joeworkman_stacks_impact_stack .slides-navigation a:before{font-family:"FontAwesome","Font Awesome 5 Pro";font-weight:900}.com_joeworkman_stacks_impact_stack .impact-scroll:hover{cursor:pointer}.com_joeworkman_stacks_impact_stack .slides-container{display:none}.com_joeworkman_stacks_impact_stack .scrollable{position:relative;top:0;left:0;overflow-y:auto;-webkit-overflow-scrolling:touch;height:100%}.com_joeworkman_stacks_impact_stack .scrollable::after{content:"";display:table;clear:both}.com_joeworkman_stacks_impact_stack .impact-arrow-wrap{position:absolute;z-index:1050;top:0;margin-left:-45px;width:90px;height:90px;padding:0;font-size:9px;display:block}.com_joeworkman_stacks_impact_stack .impact-arrow{float:left;position:absolute;margin-top:20px;margin-left:23px;width:40px;height:40px;border-style:solid;border-bottom-color:transparent;border-left-color:transparent;transform:rotate(135deg)}.com_joeworkman_stacks_impact_stack .impact-arrow-wrap.animates .impact-arrow{animation:impactArrows linear 1.8s 0.4s}.com_joeworkman_stacks_impact_stack .video-container{min-height:100%;min-width:100%;position:absolute;top:0;left:0}.com_joeworkman_stacks_impact_stack .video-container > img{width:100%;height:100%}.com_joeworkman_stacks_impact_stack video{max-width:none}.com_joeworkman_stacks_impact_stack .impact-container{position:absolute}.com_joeworkman_stacks_impact_stack .impact-container.v-full{height:100%}.com_joeworkman_stacks_impact_stack .impact-container.v-full .slide-content{height:100%}.com_joeworkman_stacks_impact_stack .impact-container.v-center{top:50%;transform:translateY(-50%)}.com_joeworkman_stacks_impact_stack .impact-container.h-center{left:50%;transform:translateX(-50%)}.com_joeworkman_stacks_impact_stack .impact-container.h-center.v-center{top:50%;left:50%;transform:translate(-50%,-50%)}.com_joeworkman_stacks_impact_stack .impact-container:not(.h-center):not(.h-left):not(.h-right){width:100%}@keyframes impactArrows{0%{transform:translate(0px,0px) rotate(135deg) scale(1)}15%{transform:translate(0px,22px) rotate(135deg) scale(0.8)}30%{transform:translate(0px,13px) rotate(135deg) scale(0.9)}45%{transform:translate(0px,27px) rotate(135deg) scale(0.8)}60%{transform:translate(0px,13px) rotate(135deg) scale(0.8)}75%{transform:translate(0px,4px) rotate(135deg) scale(0.9)}100%{transform:translate(0px,0px) rotate(135deg) scale(1)}}




:root{--light-gray:rgba(230, 230, 230, 1.00);--medium-gray:rgba(202, 202, 202, 1.00);--dark-gray:rgba(95, 95, 95, 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(203, 0, 35, 1.00);--secondary:rgba(212, 212, 212, 1.00);--success:rgba(67, 172, 106, 1.00);--warning:rgba(240, 138, 36, 1.00);--alert:rgba(240, 65, 36, 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(173, 0, 5, 1.00);--secondary-dark:rgba(182, 182, 182, 1.00);--success-dark:rgba(37, 142, 76, 1.00);--warning-dark:rgba(210, 108, 6, 1.00);--alert-dark:rgba(210, 35, 6, 1.00);--header-color:rgba(34, 34, 34, 1.00);--subheader-color:rgba(138, 138, 138, 1.00);--small-color:rgba(202, 202, 202, 1.00);--text-color:rgba(34, 34, 34, 1.00);--link-color:rgba(0, 140, 186, 1.00);--link-color-hover:rgba(0, 102, 136, 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:3px;--small-gutter:1.25rem;--medium-gutter:2rem;--large-gutter:2rem;--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(0, 140, 186, 1.00);--link-color-hover:rgba(0, 102, 136, 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(12rem/16)}h1,.h1{font-size:calc(20rem/16)}h2,.h2{font-size:calc(20rem/16)}h3,.h3{font-size:calc(14rem/16)}h4,.h4{font-size:calc(14rem/16)}h5,.h5{font-size:calc(13rem/16)}h6,.h6{font-size:calc(12rem/16)}small{font-size:35%}.button{font-size:calc(14rem/16)}.button.tiny{font-size:calc(10rem/16)}.button.small{font-size:calc(12rem/16)}.button.large{font-size:calc(16rem/16)}@media only screen and (min-width:40em){body{font-size:calc(14rem/16)}h1,.h1{font-size:calc(34rem/16)}h2,.h2{font-size:calc(34rem/16)}h3,.h3{font-size:calc(22rem/16)}h4,.h4{font-size:calc(22rem/16)}h5,.h5{font-size:calc(16rem/16)}h6,.h6{font-size:calc(14rem/16)}small{font-size:25%}}@media only screen and (min-width:64em){body{font-size:calc(14rem/16)}h1,.h1{font-size:calc(40rem/16)}h2,.h2{font-size:calc(40rem/16)}h3,.h3{font-size:calc(25rem/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:25%}}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(3rem/16)}body{}
.font-grey> *{color:rgba(153, 149, 144, 1.00) ;}
.fontcolor-white> *{color:rgba(255, 255, 255, 1.00) ;}
.myclass{--header-color:rgba(34, 34, 34, 1.00);--subheader-color:rgba(138, 138, 138, 1.00);--small-color:rgba(202, 202, 202, 1.00);--text-color:rgba(34, 34, 34, 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}

.margin0px{margin:0 ;}  
.margin12px{margin-top:0.75rem ;margin-bottom:0.75rem ;}  

.border10px{border-width:10px ;}
.card-border{border-color:rgba(153, 153, 153, 1.00) ;border-width:0px ;border-style:dotted ;}

.container-backcolor{background-color:rgba(227, 227, 227, 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){.container-backcolor{background-attachment:scroll!important}}
.bg-white{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){.bg-white{background-attachment:scroll!important}}
.bg-black{background-color:rgba(0, 0, 0, 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-black{background-attachment:scroll!important}}
.bg-darkgrey{background-color:rgba(52, 52, 52, 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-darkgrey{background-attachment:scroll!important}}
.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}}
.Streifen Dunkel{background-color:var(--my-color) ;background-image:url('../files/bgimage-37-A1B.jpg') ;background-repeat: repeat-x   ;background-position:center top ;background-origin:padding-box ;background-blend-mode:normal ;background-attachment:  fixed ;background-clip:border-box ; background-size:auto   ; }@media (hover:none) and (pointer:coarse){.Streifen Dunkel{background-attachment:scroll!important}}

.myclass{height:auto ;}  
.height256px{min-height:256px ;max-height:256px ;}
.height128px{min-height:8rem ;max-height:none ;}

.padding20px{padding:1.25rem ;}  
. padding4px> *{padding-top:0.5rem ;padding-right:0 ;padding-bottom:0.5rem ;padding-left:0 ;}  
.padding32px-L-R{padding-top:0 ;padding-right:2rem ;padding-bottom:0 ;padding-left:2rem ;}  
.container-padding-128px-b{padding-top:0 ;padding-bottom:8rem ;}  
.padding12px-T-B{padding-top:0.75rem ;padding-right:0 ;padding-bottom:0.75rem ;padding-left:0 ;}  
.container-padding{padding-top:6rem ;padding-bottom:8rem ;}  
.container-padding-1{padding-top:0.25rem ;padding-bottom:8rem ;}  

.position-top-left{position:fixed   ;z-index:1 ;top:10px ;bottom:unset ;left:50px ;right:unset ;}
.en{position:fixed   ;z-index:1 ;top:10px ;bottom:unset ;left:10px ;right:unset ;}

.border-grey-t-b{border-color:rgba(153, 153, 153, 1.00) ;border-width:1px 0px 1px 0px ;}
.border-white{border-color:rgba(255, 255, 255, 1.00) ;border-style:hidden ;}
.Element-color{--light-gray:rgba(230, 230, 230, 1.00);--medium-gray:rgba(202, 202, 202, 1.00);--dark-gray:rgba(84, 84, 84, 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(0, 140, 186, 1.00);--secondary:rgba(231, 231, 231, 1.00);--success:rgba(67, 172, 106, 1.00);--warning:rgba(240, 138, 36, 1.00);--alert:rgba(240, 65, 36, 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-light:rgba(210, 255, 255, 1.00);--secondary-light:rgba(255, 255, 255, 1.00);--success-light:rgba(255, 255, 255, 1.00);--warning-light:rgba(255, 255, 246, 1.00);--alert-light:rgba(255, 255, 246, 1.00);*/--primary-dark:rgba(0, 110, 156, 1.00);--secondary-dark:rgba(201, 201, 201, 1.00);--success-dark:rgba(37, 142, 76, 1.00);--warning-dark:rgba(210, 108, 6, 1.00);--alert-dark:rgba(210, 35, 6, 1.00);--overlay-color:rgba(0, 0, 0, 0.50)}
#cookiejar_stacks_in_1277_2{padding:20px;background-color:rgba(0, 0, 0, 0.85)}
 #stacks_in_1277_19{ overflow:hidden;height:1000px; } 
 #stacks_in_1277_31{ overflow:hidden;height:500px; } 
/* Start Stats stack CSS code */.stacks_in_1282stats, .stacks_in_1282pagetitle{	display: none;}.stacks_in_1282instructwrapper{	position: relative;	background: url("../files/newstatsbg.png") repeat-x;	height: 100px;	-webkit-border-radius: 4px;	-moz-border-radius: 4px;	border-radius: 4px;}.stacks_in_1282instruct{	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 */

 .mymenu>.menu a, .menu.mymenu a{--menu-link-color:rgba(255, 255, 255, 1.00);--menu-link-color-hover:rgba(255, 255, 255, 1.00);--menu-bg-color:rgba(0, 0, 0, 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(0, 0, 0, 0.90)} .mymenu>.menu>li>a, .menu.mymenu>li>a{padding-top:0.75rem;padding-bottom:0.75rem} .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(0, 0, 0, 0.30);--menu-link-color:rgba(255, 255, 255, 1.00);--menu-caret-color:rgba(97, 103, 173, 1.00);--menu-link-color-hover:rgba(255, 255, 255, 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}
 .mobile-menu>.menu a, .menu.mobile-menu a{--menu-link-color:rgba(34, 34, 34, 1.00);--menu-link-color-hover:rgba(68, 68, 68, 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)} .mobile-menu>.menu .menu-text, .menu.mobile-menu .menu-text{--menu-text-color:rgba(68, 68, 68, 1.00)} .mobile-menu>.menu>li>a, .menu.mobile-menu>li>a{padding-top:1rem;padding-bottom:1rem} .mobile-menu>.menu .submenu>li>a, .menu.mobile-menu .submenu>li>a{padding-top:0.75rem;padding-bottom:0.75rem} .mobile-menu>.menu li.active>a, .mobile-menu>.menu li.is-active>a, .mobile-menu>.menu a.is-active, .menu.mobile-menu li.active>a, .menu.mobile-menu li.is-active>a, .menu.mobile-menu a.is-active{--menu-bg-color:rgba(97, 103, 173, 1.00);--menu-link-color:rgba(254, 254, 254, 1.00);--menu-caret-color:rgba(97, 103, 173, 1.00);--menu-link-color-hover:rgba(254, 254, 254, 1.00)} .mobile-menu>.menu .submenu li.active>a, .mobile-menu>.menu .submenu li.is-active>a, .mobile-menu>.menu .submenu a.is-active, .menu.mobile-menu .submenu li.active>a, .menu.mobile-menu .submenu li.is-active>a, .menu.mobile-menu .submenu a.is-active{--menu-caret-color:rgba(255, 255, 255, 1.00)} .mobile-menu>.menu .submenu a, .menu.mobile-menu .submenu a{--menu-caret-color:rgba(97, 103, 173, 1.00)} .mobile-menu>.menu .submenu, .menu.mobile-menu .submenu{--submenu-bg-color:rgba(254, 254, 254, 1.00);--submenu-border:1px solid rgba(202, 202, 202, 1.00)} .mobile-menu>.menu .submenu a, .menu.mobile-menu .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)} .mobile-menu>.menu .submenu .menu-text, .menu.mobile-menu .submenu .menu-text{--menu-text-color:rgba(68, 68, 68, 1.00)} .mobile-menu>.menu .submenu li.active>a, .mobile-menu>.menu .submenu li.is-active>a, .mobile-menu>.menu .submenu a.is-active, .menu.mobile-menu .submenu li.active>a, .menu.mobile-menu .submenu li.is-active>a, .menu.mobile-menu .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{margin:0.75rem ;}  
            .mymenu{font-size:calc(18rem/16) ;font-weight:600 ;}@media only screen and (min-width:40em){            .mymenu{font-size:calc(18rem/16) }}@media only screen and (min-width:64em){            .mymenu{font-size:calc(18rem/16) }}
.mymenu{position: absolute  !important;z-index:5 !important;top:0px !important;bottom:unset !important;left:unset !important;right:unset !important;}
            .mymenu{font-size:calc(18rem/16) ;}@media only screen and (min-width:40em){            .mymenu{font-size:calc(18rem/16) }}@media only screen and (min-width:64em){            .mymenu{font-size:calc(18rem/16) }}

.mobile-menu-wrapper{height:100% ;}  
            .mobile-menu{font-size:calc(16rem/16) ;}@media only screen and (min-width:40em){            .mobile-menu{font-size:calc(21rem/16) }}@media only screen and (min-width:64em){            .mobile-menu{font-size:calc(24rem/16) }}
            .mobile-menu{font-size:calc(20rem/16) ;font-weight:600 ;}@media only screen and (min-width:40em){            .mobile-menu{font-size:calc(22rem/16) }}@media only screen and (min-width:64em){            .mobile-menu{font-size:calc(22rem/16) }}

.hero-header{display:inline-block;white-space:nowrap}
.hero-overlay{background:none ;}
.hero-overlay{height:75vh ;} @media only screen and (min-width:40em){.hero-overlay{height:75vh }}@media only screen and (min-width:64em){.hero-overlay{height:100vh }} 
.hero-header{color:rgba(255, 255, 255, 0.30) ;}
.hero{background-image:url('../files/bgimage-289.jpg') ;background-repeat:no-repeat    ;background-size:  cover ;background-position:center center ;background-attachment:scroll   ;background-origin:padding-box ;background-blend-mode:screen ;-webkit-background-clip:border-box ;background-clip:border-box ;}@media (hover:none) and (pointer:coarse){.hero{background-attachment:scroll!important}}

.burger{position: absolute  ;z-index:1 ;top:20px ;bottom:unset ;left:unset ;right:20px ;}

.card-balken-weiss{border-color:rgba(0, 0, 0, 1.00) ;}

.introbutton-margin{margin-top:0.5rem ;margin-bottom:0.5rem ;}  
.introbutton{padding-top:0.75rem ;padding-bottom:0.75rem ;}  
#stacks_in_1376 .fg-content.fg-full-height{height:100%}#stacks_in_1376 .slides-container{margin:0}#stacks_in_1376 .slides-container > li{margin:0}#stacks_in_1376 .slides-container > li::before,#stacks_in_1376 .slides-container > li::after{content:"";top:0;left:0;bottom:0;right:0;height:100%;position:absolute;z-index:2;transition:opacity 80ms ease}#stacks_in_1376 .slides-container.ovl-color li::before{background-color:rgba(89, 237, 212, 0.30)}#stacks_in_1376 .slides-container.ovl-tile li::after{background-image:url();opacity:0.30;background-repeat:repeat}#stacks_in_1376 .fg-per-show{position:absolute;z-index:5;width:100%;height:100%}#stacks_in_1376 .impact-wrapper{z-index:0}#stacks_in_1376 .impact-wrapper.fill-container{min-width:100%}#stacks_in_1376 .impact-wrapper.fill-container.hero-header{height:100%;height:100vh;width:100%;width:100vw}@media only screen and (orientation:portrait){#stacks_in_1376 .impact-wrapper.fill-container.hero-header{height:100% !important}}#stacks_in_1376 .impact-wrapper.fixed-height{height:400px;width:100%;min-width:100%}#stacks_in_1376 .impact-wrapper.flexible-height{height:100vh;min-height:300px;width:100%;min-width:100%}#stacks_in_1376 .impact-wrapper.touch-device.cover-touch{background-size:cover;background-position:center center;overflow:hidden}#stacks_in_1376 .impact-wrapper.touch-device.cover-touch:not(.touch-warehouse){background-image:url()}#stacks_in_1376 .impact-wrapper.touch-device.cover-touch.touch-warehouse{background-image:url()}#stacks_in_1376 .impact-wrapper > .pre-loader{position:absolute;text-align:center;top:0;left:0;width:100%;height:100%;opacity:1;visibility:visible;transition:opacity 80ms ease,visibility 0 0.2s}#stacks_in_1376 .impact-wrapper > .pre-loader.hidden{opacity:0;visibility:hidden}#stacks_in_1376 .impact-wrapper > .pre-loader > .pl-spinner{position:absolute;top:36%;margin-left:-32px;color:rgba(251, 251, 251, 0.90)}#stacks_in_1376 .impact-wrapper > .pre-loader > .pl-spinner.hidden{display:none}#stacks_in_1376 .impact-wrapper > .pre-loader.bg-image{background-size:cover;background-position:center center;background-repeat:no-repeat}#stacks_in_1376 .impact-wrapper > .pre-loader.bg-image.custom-image:not(.bg-warehouse){background-image:url()}#stacks_in_1376 .impact-wrapper > .pre-loader.bg-image.custom-image.bg-warehouse{background-image:url()}#stacks_in_1376 .impact-wrapper > .pre-loader.preload-color{background-color:rgba(51, 51, 51, 0.95)}#stacks_in_1376 .impact-wrapper > .pre-loader.bg-overlay{z-index:1}#stacks_in_1376 .impact-wrapper > .pre-loader.bg-overlay::before,#stacks_in_1376 .impact-wrapper > .pre-loader.bg-overlay::after{content:"";top:0;left:0;bottom:0;right:0;height:100%;position:absolute;z-index:0}#stacks_in_1376 .impact-wrapper > .pre-loader.bg-overlay.ovl-color::before{background-color:rgba(89, 237, 212, 0.30)}#stacks_in_1376 .impact-wrapper > .pre-loader.bg-overlay.ovl-tile::after{background-image:url();opacity:0.30;background-repeat:repeat}#stacks_in_1376 .impact-container{z-index:5}#stacks_in_1376 .scrollDown{position:absolute;cursor:pointer;z-index:100;left:50%;width:80px;height:80px;-webkit-touch-callout:none;transform:scale(0.70);transform-origin:left center;-webkit-user-select:none;user-select:none}@media screen and (max-width:640px){#stacks_in_1376 .scrollDown{transform:scale(0.70)}}#stacks_in_1376 .scrollDown.button-bottom{bottom:30px}#stacks_in_1376 .scrollDown.button-top{top:30px}@media screen and (max-width:640px){#stacks_in_1376 .scrollDown.hide-on-mob{display:none}}#stacks_in_1376 .impact-arrow-wrap{background:rgba(0, 0, 0, 0.85);border-radius:50%;border:2px solid rgba(255, 255, 255, 0.96);box-shadow:0px 0px 0px 0px rgba(51, 51, 51, 0.60);transition:all 90ms ease}#stacks_in_1376 .impact-arrow-wrap:hover{background:rgba(40, 40, 40, 0.85);transition:all 90ms ease}#stacks_in_1376 .impact-arrow-wrap:hover .impact-hint{opacity:1 !important}#stacks_in_1376 .impact-arrow-wrap.animates .impact-arrow{animation-delay:3000ms;animation-iteration-count:3}#stacks_in_1376 .impact-arrow{border-top-color:rgba(255, 255, 255, 0.85);border-right-color:rgba(255, 255, 255, 0.85);border-width:2px}#stacks_in_1376 .impact-arrow:hover{border-top-color:rgba(255, 255, 255, 1.00);border-right-color:rgba(255, 255, 255, 1.00)}#stacks_in_1376 .impact-hint{position:absolute;top:0.6em;width:100%;left:0;font-size:2em;font-style:italic;text-align:center;color:rgba(255, 255, 255, 0.85);opacity:0}#stacks_in_1376 .slides-pagination > a{transition:all 6000ms ease}#stacks_in_1376 .slides-pagination > a.current{transition:all 6000ms ease}

#stacks_in_1378 .impact-slide{background-image:url("../files/slideshowImage-1378.jpg")}.slide-stacks_in_1378 .impact-container.v-bottom{bottom:0px}.slide-stacks_in_1378 .impact-container.h-right{right:0px}.slide-stacks_in_1378 .impact-container.h-left{left:0px}.slide-stacks_in_1378 .impact-container.v-top{top:0px}.slide-stacks_in_1378.kb-zoom-in-stacks_in_1378.kb-anim.animated img:not(.impact-fg-img){animation:kb-zoom-in-stacks_in_1378 5000ms ease 1 forwards;transform-origin:50% 50%}.slide-stacks_in_1378.kb-zoom-out-stacks_in_1378.kb-anim.animated img:not(.impact-fg-img){animation:kb-zoom-out-stacks_in_1378 5000ms ease 1 forwards;transform-origin:50% 50%}@keyframes kb-zoom-in-stacks_in_1378{0%{transform:scale(1)}100%{transform:scale(1.26)}}@keyframes kb-zoom-out-stacks_in_1378{0%{transform:scale(1.26)}100%{transform:scale(1)}}
#stacks_in_1380 .impact-slide{background-image:url("../files/slideshowImage-1380.jpg")}.slide-stacks_in_1380 .impact-container.v-bottom{bottom:50px}.slide-stacks_in_1380 .impact-container.h-right{right:0px}.slide-stacks_in_1380 .impact-container.h-left{left:0px}.slide-stacks_in_1380 .impact-container.v-top{top:50px}.slide-stacks_in_1380.kb-zoom-in-stacks_in_1380.kb-anim.animated img:not(.impact-fg-img){animation:kb-zoom-in-stacks_in_1380 5000ms ease 1 forwards;transform-origin:50% 50%}.slide-stacks_in_1380.kb-zoom-out-stacks_in_1380.kb-anim.animated img:not(.impact-fg-img){animation:kb-zoom-out-stacks_in_1380 5000ms ease 1 forwards;transform-origin:50% 50%}@keyframes kb-zoom-in-stacks_in_1380{0%{transform:scale(1)}100%{transform:scale(1.50)}}@keyframes kb-zoom-out-stacks_in_1380{0%{transform:scale(1.50)}100%{transform:scale(1)}}
#stacks_in_1381 .impact-slide{background-image:url("../files/slideshowImage-1381.jpg")}.slide-stacks_in_1381 .impact-container.v-bottom{bottom:0px}.slide-stacks_in_1381 .impact-container.h-right{right:0px}.slide-stacks_in_1381 .impact-container.h-left{left:0px}.slide-stacks_in_1381 .impact-container.v-top{top:0px}.slide-stacks_in_1381.kb-zoom-in-stacks_in_1381.kb-anim.animated img:not(.impact-fg-img){animation:kb-zoom-in-stacks_in_1381 5000ms ease 1 forwards;transform-origin:50% 50%}.slide-stacks_in_1381.kb-zoom-out-stacks_in_1381.kb-anim.animated img:not(.impact-fg-img){animation:kb-zoom-out-stacks_in_1381 5000ms ease 1 forwards;transform-origin:50% 50%}@keyframes kb-zoom-in-stacks_in_1381{0%{transform:scale(1)}100%{transform:scale(1.50)}}@keyframes kb-zoom-out-stacks_in_1381{0%{transform:scale(1.50)}100%{transform:scale(1)}}
#stacks_in_1565 .impact-slide{background-image:url("../files/slideshowImage-1565.jpg")}.slide-stacks_in_1565 .impact-container.v-bottom{bottom:150px}.slide-stacks_in_1565 .impact-container.h-right{right:0px}.slide-stacks_in_1565 .impact-container.h-left{left:0px}.slide-stacks_in_1565 .impact-container.v-top{top:150px}.slide-stacks_in_1565.kb-zoom-in-stacks_in_1565.kb-anim.animated img:not(.impact-fg-img){animation:kb-zoom-in-stacks_in_1565 6000ms ease 1 forwards;transform-origin:50% 50%}.slide-stacks_in_1565.kb-zoom-out-stacks_in_1565.kb-anim.animated img:not(.impact-fg-img){animation:kb-zoom-out-stacks_in_1565 6000ms ease 1 forwards;transform-origin:50% 50%}@keyframes kb-zoom-in-stacks_in_1565{0%{transform:scale(1)}100%{transform:scale(1.20)}}@keyframes kb-zoom-out-stacks_in_1565{0%{transform:scale(1.20)}100%{transform:scale(1)}}
 #stacks_in_1311{ overflow:hidden;height:25px; } 


#stacks_in_1557 {
	font-weight: bold;
}
 #stacks_in_1609{ overflow:hidden;height:30px; } 
 #stacks_in_1539{ overflow:hidden;height:30px; } 
/*
1.0.2.2
- fixes shortcode typo
- after was not loading in if end date had already passed
- fixed a bug that could cause set timezone to miss-calculate if using non-repeating date and time
- updates timed-content.js with clock functions
*/
@font-face {
    font-family: '1ldclockmedium';
    src: url('tc-files/1ldclock-webfont.woff2') format('woff2'),
         url('tc-files/1ldclock-webfont.woff') format('woff'),
        url('tc-files/1ldclock-webfont.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}
/*  */
/*  */
#stacks_in_1541 .timed-content-progress-bar {
  display: none;
}
/*  */
#stacks_in_1541,
#stacks_out_1541,
#stacks_in_1538 {
  overflow: visible;
  clear: both;
}
#stacks_in_1541 .timed-content-number {
  box-shadow: 0px 1px 2px rgba(0,0,0,6%);
}
#stacks_in_1541 .timed-content-rotate .timed-content-number {
  box-shadow: 0px 8px 10px 0px rgba(0,0,0,12%);
}
#stacks_in_1541 .timed-content-rotate.rotate-smooth .timed-content-number:after {
  box-shadow: inset 0px 1px 3px 0px rgba(0,0,0,12%),
              inset 0px -5px 5px -3px rgba(0,0,0,12%);
  /*  */
  background: linear-gradient(to bottom,  rgba(0,0,0,7.998000%) 0%,rgba(0,0,0,1.998000%) 20%,rgba(0,0,0,0%) 40%,rgba(0,0,0,1.998000%) 60%,rgba(0,0,0,6%) 80%,rgba(0,0,0,7.998000%) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
}
#stacks_in_1541 .timed-content-fold .timed-content-number {
  box-shadow: 0px 2px 3px rgba(0,0,0,0.5),
              inset 0px 0px 5px rgba(0,0,0,0.5);
}
#stacks_in_1541 .tc-dark-shadows.timed-content-fold .timed-content-number {
  box-shadow: 0px 2px 3px rgba(0,0,0,0.5),
              inset 0px 0px 5px rgba(0,0,0,0.5);
}
#stacks_in_1541 .timed-content-inline .timed-content-number {
    box-shadow: none;
}
#stacks_in_1541 .timed-content-countdown-wrap {
  color: rgba(117, 117, 117, 1.00);
  padding: 24px 0px;
  border-radius: 0px;
  background-color: rgba(0, 0, 0, 0.00);
}
#stacks_in_1541 .timed-content-countdown-wrap * {
  font-family:  "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif;
}
#stacks_in_1541 .timed-content-digital .timed-content-number div span {
  font-family: '1ldclockmedium';
}
#stacks_in_1541 .timed-content-digital .timed-content-number div span:before {
    content: "88";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    text-align: center;
    z-index: -1;
    color: rgba(255, 255, 255, 1.00);
    opacity: 0.2;
}
#stacks_in_1541 .timed-content-digital .tc-digit-padding .timed-content-number div span:before {
    content: "888888888888888888888";
    overflow: hidden;
    left: 12px;
    right: 12px;
    width: auto;
    top: 0;
}
#stacks_in_1541 .timed-content-number,
#stacks_in_1541 .timed-content-number div,
#stacks_in_1541 .timed-content-fold .timed-content-number > div:after,
#stacks_in_1541 .timed-content-fold .timed-content-number > div:before,
#stacks_in_1541 .timed-content-paper-fall .timed-content-number .timed-content-anim:before {
  background-color: #000000;
  color: rgba(255, 255, 255, 1.00);
  border-radius:  0px;
}
#stacks_in_1541 .timed-content-number div span {
  color: rgba(255, 255, 255, 1.00);
}
#stacks_in_1541 .timed-content-rotate .timed-content-number > div.state-after,
#stacks_in_1541 .timed-content-rotate .timed-content-number > div.state-before {
  background-color: #000000;
  border-radius: 0px;
}
#stacks_in_1541 .timed-content-fold .timed-content-number > div {
  border-radius:  0px 0px 0px 0px;
}
#stacks_in_1541 .timed-content-countdown {
  grid-gap: 15px;
  grid-template-columns: repeat(auto-fit, minmax(70px, max-content));
  /*  */
}
#stacks_in_1541 .timed-content-part div.timed-content-title {
  font-size: 14px;
}
#stacks_in_1541 .timed-content-number,
#stacks_in_1541 .timed-content-number div,
#stacks_in_1541 .timed-content-number div span,
#stacks_in_1541 .timed-content-fold .timed-content-number > div:after,
#stacks_in_1541 .timed-content-fold .timed-content-number > div:before,
#stacks_in_1541 .timed-content-paper-fall .timed-content-number .timed-content-anim:before {
  width: auto;
  min-width: 70px;
  height: 52.500000px;
  line-height: 50.750000px; /* Adjusted for font */
  font-size: 43.750000px;
  font-weight: normal;
  letter-spacing: 0px;
}
#stacks_in_1541 .timed-content-digital .timed-content-number div span {
  line-height: 52.500000px;
  font-size: 52.500000px;
  color:  rgba(255, 255, 255, 1.00);
  text-shadow: 0px 0px 5px rgba(255, 255, 255, 1.00);
}
#stacks_in_1541 .timed-content-number div span {
  min-width: 0px;
}
#stacks_in_1541 .timed-content-number > div {
  padding: 0px 0px;
  box-sizing: border-box;
}
#stacks_in_1541 .tc-digit-padding .timed-content-number > div {
  padding: 0px 12px;
}
#stacks_in_1541 .tc-digit-padding .timed-content-number-5 {
  position: relative;
}
#stacks_in_1541 .timed-content-part:before {
  background-color: rgba(0, 0, 0, 0.00);
  height: 52.500000px;
}
#stacks_in_1541 .timed-content-number:after,
#stacks_in_1541 .timed-content-number:before {
    width: 5px;
    height: 5px;
    background-color: rgba(145, 145, 145, 1.00);
    right: -10px;
    border-radius: 0px;
}
#stacks_in_1541 .timed-content-fold .timed-content-number > div {
  height: 50%;
}
#stacks_in_1541 .timed-content-rotate .timed-content-number div {
  background: transparent;
}
/*  */
#stacks_in_1541 .timed-content-rotate .timed-content-countdown div {
   align-content: top;
   justify-content: top;
}
#stacks_in_1541 .timed-content-rotate .timed-content-number div {
    display: inline-block;
    position: relative;
    margin-top: 0;
}
#stacks_in_1541 .timed-content-rotate .timed-content-number .timed-content-number-1 {
    top: 105.000000px;
}
#stacks_in_1541 .timed-content-rotate .timed-content-number .timed-content-number-2 {
    top: 52.500000px;
}
#stacks_in_1541 .timed-content-rotate .timed-content-number .timed-content-number-3 {
    top: 0px;
}
#stacks_in_1541 .timed-content-rotate .timed-content-number .timed-content-number-4 {
    top: -52.500000px;
}
#stacks_in_1541 .timed-content-rotate .timed-content-number .timed-content-number-5 {
    top: -105.000000px;
}
/*  */
#stacks_in_1541 .timed-content-rotate .timed-content-number {
  perspective: 2000px;
  height: 105.000000px;/* double height */
}
#stacks_in_1541 .timed-content-rotate .timed-content-number .state-out {
  transform: translate3D(0,-94.500000px,0) rotateX(75deg);
}
#stacks_in_1541 .timed-content-rotate .timed-content-number .state-after {
  transform: translate3D(0,-52.500000px,0px) rotateX(37.5deg);
}
#stacks_in_1541 .timed-content-rotate .timed-content-number .state-active {
  transform: translate3D(0,0,0px) rotateX(0deg);
}
#stacks_in_1541 .timed-content-rotate .timed-content-number .state-before {
  transform: translate3D(0,52.500000px,0px) rotateX(-37.5deg);
}
#stacks_in_1541 .timed-content-rotate .timed-content-number > div.state-in {
  transform: translate3D(0,94.500000px,0) rotateX(-75deg);
}
@media all and (max-width: 1000px) {
  #stacks_in_1541 .timed-content-countdown {
    grid-gap: 10px;
    grid-template-columns: repeat(auto-fit, minmax(50px, max-content));
  }
  #stacks_in_1541 .timed-content-part:before {
    height: 37.500000px;
  }
  #stacks_in_1541 .timed-content-number,
  #stacks_in_1541 .timed-content-number div,
  #stacks_in_1541 .timed-content-number div span,
  #stacks_in_1541 .timed-content-fold .timed-content-number > div:after,
  #stacks_in_1541 .timed-content-fold .timed-content-number > div:before,
  #stacks_in_1541 .timed-content-paper-fall .timed-content-number .timed-content-anim:before {
    width: auto;
    min-width: 50px;
    height: 37.500000px;
    line-height: 36.250000px; /* Adjusted for font */
    font-size: 31.250000px;
    letter-spacing: 0px;
  }
  #stacks_in_1541 .timed-content-digital .timed-content-number div span {
    line-height: 37.500000px;
    font-size: 37.500000px;
  }
  #stacks_in_1541 .timed-content-number:after,
  #stacks_in_1541 .timed-content-number:before {
      width: 4px;
      height: 4px;
      right: -7px;
  }
  #stacks_in_1541 .tc-digit-padding .timed-content-number > div {
    padding: 0px 6px;
  }
  #stacks_in_1541 .timed-content-digital .tc-digit-padding .timed-content-number div span:before {
      left: 6px;
      right: 6px;
  }
  /*  */
  #stacks_in_1541 .timed-content-rotate .timed-content-number .timed-content-number-1 {
      top: 75.000000px;
  }
  #stacks_in_1541 .timed-content-rotate .timed-content-number .timed-content-number-2 {
      top: 37.500000px;
  }
  #stacks_in_1541 .timed-content-rotate .timed-content-number .timed-content-number-4 {
      top: -37.500000px;
  }
  #stacks_in_1541 .timed-content-rotate .timed-content-number .timed-content-number-5 {
      top: -75.000000px;
  }
  /*  */
  #stacks_in_1541 .timed-content-rotate .timed-content-number {
    height: 75.000000px;/* double height */
  }
  #stacks_in_1541 .timed-content-rotate .timed-content-number .state-out {
    transform: translate3D(0,-67.500000px,0) rotateX(75deg);
  }
  #stacks_in_1541 .timed-content-rotate .timed-content-number .state-after {
    transform: translate3D(0,-37.500000px,0px) rotateX(37.5deg);
  }
  #stacks_in_1541 .timed-content-rotate .timed-content-number .state-before {
    transform: translate3D(0,37.500000px,0px) rotateX(-37.5deg);
  }
  #stacks_in_1541 .timed-content-rotate .timed-content-number > div.state-in {
    transform: translate3D(0,67.500000px,0) rotateX(-75deg);
  }
}
@media all and (max-width: 600px) {
  #stacks_in_1541 .timed-content-part div.timed-content-title {
    font-size: 12px;
  }
  #stacks_in_1541 .timed-content-number,
  #stacks_in_1541 .timed-content-number div,
  #stacks_in_1541 .timed-content-fold .timed-content-number > div:after,
  #stacks_in_1541 .timed-content-fold .timed-content-number > div:before,
  #stacks_in_1541 .timed-content-paper-fall .timed-content-number .timed-content-anim:before {
    border-radius:  0.000000px;
  }
  #stacks_in_1541 .timed-content-fold .timed-content-number > div {
    border-radius:  0.000000px 0.000000px 0px 0px;
  }
  #stacks_in_1541 .timed-content-countdown {
    grid-gap: 8px;
    grid-template-columns: repeat(auto-fit, minmax(50px, max-content));
  }
  #stacks_in_1541 .timed-content-part:before {
    height: 37.500000px;
  }
  #stacks_in_1541 .timed-content-number,
  #stacks_in_1541 .timed-content-number div,
  #stacks_in_1541 .timed-content-number div span,
  #stacks_in_1541 .timed-content-fold .timed-content-number > div:after,
  #stacks_in_1541 .timed-content-fold .timed-content-number > div:before,
  #stacks_in_1541 .timed-content-paper-fall .timed-content-number .timed-content-anim:before {
    width: auto;
    min-width: 50px;
    height: 37.500000px;
    line-height: 36.250000px; /* Adjusted for font */
    font-size: 31.250000px;
    letter-spacing: 0px;
  }
  #stacks_in_1541 .timed-content-digital .timed-content-number div span {
    line-height: 37.500000px;
    font-size: 37.500000px;
  }
  #stacks_in_1541 .timed-content-number:after,
  #stacks_in_1541 .timed-content-number:before {
      width: 4px;
      height: 4px;
      right: -6px;
  }
  /*  */
  #stacks_in_1541 .timed-content-rotate .timed-content-number .timed-content-number-1 {
      top: 75.000000px;
  }
  #stacks_in_1541 .timed-content-rotate .timed-content-number .timed-content-number-2 {
      top: 37.500000px;
  }
  #stacks_in_1541 .timed-content-rotate .timed-content-number .timed-content-number-4 {
      top: -37.500000px;
  }
  #stacks_in_1541 .timed-content-rotate .timed-content-number .timed-content-number-5 {
      top: -75.000000px;
  }
  /*  */
  #stacks_in_1541 .timed-content-rotate .timed-content-number {
    height: 75.000000px;/* double height */
  }
  #stacks_in_1541 .timed-content-rotate .timed-content-number .state-out {
    transform: translate3D(0,-67.500000px,0) rotateX(75deg);
  }
  #stacks_in_1541 .timed-content-rotate .timed-content-number .state-after {
    transform: translate3D(0,-37.500000px,0px) rotateX(37.5deg);
  }
  #stacks_in_1541 .timed-content-rotate .timed-content-number .state-before {
    transform: translate3D(0,37.500000px,0px) rotateX(-37.5deg);
  }
  #stacks_in_1541 .timed-content-rotate .timed-content-number > div.state-in {
    transform: translate3D(0,67.500000px,0) rotateX(-75deg);
  }
}
@media all and (max-width: 350px) {
  #stacks_in_1541 .timed-content-part div.timed-content-title {
    font-size: 10px;
  }
}
#stacks_in_1541 .timed-content-rotate .timed-content-number:after, #stacks_in_1541 .timed-content-rotate .timed-content-number:before {
  width: 100%;
  height: 100%;
  right: auto;
  transform: translate(0,0);
  display: block;
  top: auto;
  background: transparent;
}
#stacks_in_1541 .timed-content-rotate .timed-content-part:before {
  display: none;
}
/*  */
 #stacks_in_1551{ overflow:hidden;height:30px; } 
 #stacks_in_1554{ overflow:hidden;height:100px; } 

 #stacks_in_1578{ overflow:hidden;height:14px; } 
 #stacks_in_1582{ overflow:hidden;height:14px; } 
 #stacks_in_1601{ overflow:hidden;height:20px; } 
#stacks_in_1355>.s3_row {
	margin: 0 -30px;
}

#stacks_in_1355>.s3_row>.s3_column_left {
	width: 50.00%;
}

#stacks_in_1355>.s3_row>.s3_column_right {
	width: 50.000000%;
}




#stacks_in_1355>.s3_row>.s3_column {
	padding: 0 30px;
}










@media only screen and (max-width: 770px) {



}



@media only screen and (max-width: 400px) {


	#stacks_in_1355>.s3_row  {
		margin: -30px 0;
	}
	#stacks_in_1355>.s3_row>.s3_column {
		padding: 30px 0;
		width:100%;
	}


}






 #stacks_in_1366{ overflow:hidden;height:14px; } 

 #stacks_in_1364{ overflow:hidden;height:14px; } 

 #stacks_in_1358{ overflow:hidden;height:14px; } 
 #stacks_in_1535{ overflow:hidden;height:200px; } 

 #stacks_in_1360{ overflow:hidden;height:14px; } 

 #stacks_in_1362{ overflow:hidden;height:14px; } 
 #stacks_in_1561{ overflow:hidden;height:100px; } 

#stacks_in_1560 {
	font-weight: bold;
}
 #stacks_in_1471{ overflow:hidden;height:100px; } 








#stacks_in_1422.hf-cards {
  padding: 0px 0;
  --hf-width: 380px;
  --hf-border-radius: 0px;
}
#stacks_in_1422.hf-cards,
#stacks_in_1422.hf-cards > [tag="node"] {
  /*  */
  /*  */
  justify-content: center;
  /*  */
  /*  */
  /*  */
  /*  */
  align-items: center;
  /*  */
  /*  */
  /*  */
  gap: 0px;
}
/*  */
/*  */
/**/
.hf-cards #hf_stacks_in_1423 {
  --hf-bdrSize: 4px;
	--hf-lyrSize: 16px;
  --hf-lyrOffset: 16px;

  --hf-innerPaddingY: 12px;
  --hf-innerPaddingX: 24px;
  --hf-innerPaddingYNeg: 0px;
  
  

  --hf-innerBgColor: #FFFFFF;
  --hf-innerGColor1: #333333;
  --hf-innerGColor2: #222222;

  --hf-frontG1: #665BE6;
  --hf-frontG2: #4234E6;
  --hf-backG1: #564BD6;
  --hf-backG2: #3224D6;

  --hf-grad-clip-rad: calc(var(--hf-border-radius) - var(--hf-bdrSize));
  /*  */
  --hp-clip: calc(var(--hf-point2x) + var(--hf-lyrSize)*4);
  --hf-lyrSize-n2: calc(var(--hf-lyrSize) * -2);
}

#hf_stacks_in_1423.hf2-split .hf-card-header > div {
  
  
}
#hf_stacks_in_1423.hf-split .hf-card-footer > div {
  
  
}
#hf_stacks_in_1423.hf-v.hf2-split .hf-card-header > div {
  flex: 0 0 auto;
  width: 120px;
  height: 120px;
  background-color: #FFFFFF;
  border: 0px solid #FFFFFF;
  border-radius: 9999px;
  
}
#hf_stacks_in_1423.hf-v.hf-split .hf-card-footer > div {
  flex: 0 0 auto;
  width: 96px;
  height: 96px;
  background-color: #FFFFFF;
  border: 4px solid #E7E7E7;
  border-radius: 9999px;
  box-shadow: 0px 4px 16px rgba(0,0,0,0.3);
}
#hf_stacks_in_1423.hf-v.hf2-split .hf-card-content-inner > .hf-grad {
  padding-top: calc(120px/2 - var(--hf-bdrSize));
}
#hf_stacks_in_1423.hf-v.hf-split .hf-card-content-inner > .hf-grad {
  padding-bottom: calc(96px/2 - var(--hf-bdrSize));
}
#hf_stacks_in_1423 .hf-card-content-inner {
  
  border-color: #E7E7E7;
  
}
#hf_stacks_in_1423.hf-v .hf-top .hf-gfx-lyr1 div {
  background-color: #CD0A20;
  
}
#hf_stacks_in_1423.hf-v .hf-top .hf-gfx-lyr2 div {
  background-color: #5244F6;
  
}

#hf_stacks_in_1423 .hf-card-content-inner,
#hf_stacks_in_1423.hf-v:not(.hf2-no-point) .hf-top .hf-gfx-bg div,
#hf_stacks_in_1423.hf-v:not(.hf-no-point) .hf-bottom .hf-gfx-bg div {
  background-color: var(--hf-innerBgColor);
}
/*  */

#hf_stacks_in_1423.hf-v:not(.hf2-no-point) .hf-top .hf-gfx-bdr div,
#hf_stacks_in_1423.hf-v:not(.hf-no-point) .hf-bottom .hf-gfx-bdr div {
  
  
  background-color: #E7E7E7;
  
  
}
#hf_stacks_in_1423.hf-v.hf2-no-point .hf-top .hf-gfx-lyr1 div,
#hf_stacks_in_1423.hf-v .hf-bottom .hf-gfx-lyr1 div {
  background-color: #CD0A20;
  
}
#hf_stacks_in_1423.hf-v.hf2-no-point .hf-top .hf-gfx-lyr2 div,
#hf_stacks_in_1423.hf-v .hf-bottom .hf-gfx-lyr2 div {
  background-color: #5244F6;
  
}

#hf_stacks_in_1423.hf2-detached:not(.hf2-no-content) .hf-card-header > div {
  padding: 12px 24px;
}
#hf_stacks_in_1423.hf-detached:not(.hf-no-content) .hf-card-footer > div {
  padding: 12px 24px;
}
#hf_stacks_in_1423.hf2-detached:not(.hf2-no-content) .hf-card-header {
  padding-left: var(--hf-lyrOffset);
  padding-right: var(--hf-lyrOffset);
}
#hf_stacks_in_1423.hf-detached:not(.hf-no-content) .hf-card-footer {
  padding-left: var(--hf-lyrOffset);
  padding-right: var(--hf-lyrOffset);
}
#hf_stacks_in_1423.hf-v .hf-bottom .hf-gfx-lyr2,
#hf_stacks_in_1423.hf-v .hf-top .hf-gfx-lyr2 {
  left: calc(var(--hf-lyrOffset) * 2);
  right: calc(var(--hf-lyrOffset) * 2);
}
#hf_stacks_in_1423.hf-v.hf-angle-alt .hf-bottom .hf-gfx-lyr2,
#hf_stacks_in_1423.hf-v.hf2-angle-alt .hf-top .hf-gfx-lyr2 {
  left: var(--hf-lyrOffset);
  right: var(--hf-lyrOffset);
}
#hf_stacks_in_1423.hf-v .hf-bottom .hf-gfx-lyr1,
#hf_stacks_in_1423.hf-v .hf-top .hf-gfx-lyr1 {
  left: var(--hf-lyrOffset);
  right: var(--hf-lyrOffset);
}
/*  */
#hf_stacks_in_1423.hf-v .hf-border .hf-gfx-lyr2 > div {opacity: 0;}
#hf_stacks_in_1423.hf-v:not(.hf2-has-content) > .hf-card-inner {margin-top: calc(var(--hf-lyrSize) * -1);margin-bottom: calc(var(--hf-lyrSize) * -1)}
/*  */
/*  */
#hf_stacks_in_1423.hf-v .hf-border .hf-gfx-lyr1 > div {opacity: 0;}
/*  */
/*  */
#hf_stacks_in_1423.hf-v > .hf-card-inner {margin-top: calc(var(--hf-lyrSize) * -2);margin-bottom: calc(var(--hf-lyrSize) * -2);}
/*  */
/*  */
/*  */
 #stacks_in_1432{ overflow:hidden;height:20px; } 
#stacks_in_1434.hf-cards {
  padding: 0px 0;
  --hf-width: 380px;
  --hf-border-radius: 0px;
}
#stacks_in_1434.hf-cards,
#stacks_in_1434.hf-cards > [tag="node"] {
  /*  */
  /*  */
  justify-content: center;
  /*  */
  /*  */
  /*  */
  /*  */
  align-items: center;
  /*  */
  /*  */
  /*  */
  gap: 0px;
}
/*  */
/*  */
/**/
.hf-cards #hf_stacks_in_1435 {
  --hf-bdrSize: 4px;
	--hf-lyrSize: 16px;
  --hf-lyrOffset: 16px;

  --hf-innerPaddingY: 12px;
  --hf-innerPaddingX: 24px;
  --hf-innerPaddingYNeg: 0px;
  
  

  --hf-innerBgColor: #FFFFFF;
  --hf-innerGColor1: #333333;
  --hf-innerGColor2: #222222;

  --hf-frontG1: #665BE6;
  --hf-frontG2: #4234E6;
  --hf-backG1: #564BD6;
  --hf-backG2: #3224D6;

  --hf-grad-clip-rad: calc(var(--hf-border-radius) - var(--hf-bdrSize));
  /*  */
  --hp-clip: calc(var(--hf-point2x) + var(--hf-lyrSize)*4);
  --hf-lyrSize-n2: calc(var(--hf-lyrSize) * -2);
}

#hf_stacks_in_1435.hf2-split .hf-card-header > div {
  
  
}
#hf_stacks_in_1435.hf-split .hf-card-footer > div {
  
  
}
#hf_stacks_in_1435.hf-v.hf2-split .hf-card-header > div {
  flex: 0 0 auto;
  width: 120px;
  height: 120px;
  background-color: #FFFFFF;
  border: 0px solid #FFFFFF;
  border-radius: 9999px;
  
}
#hf_stacks_in_1435.hf-v.hf-split .hf-card-footer > div {
  flex: 0 0 auto;
  width: 96px;
  height: 96px;
  background-color: #FFFFFF;
  border: 4px solid #E7E7E7;
  border-radius: 9999px;
  box-shadow: 0px 4px 16px rgba(0,0,0,0.3);
}
#hf_stacks_in_1435.hf-v.hf2-split .hf-card-content-inner > .hf-grad {
  padding-top: calc(120px/2 - var(--hf-bdrSize));
}
#hf_stacks_in_1435.hf-v.hf-split .hf-card-content-inner > .hf-grad {
  padding-bottom: calc(96px/2 - var(--hf-bdrSize));
}
#hf_stacks_in_1435 .hf-card-content-inner {
  
  border-color: #E7E7E7;
  
}
#hf_stacks_in_1435.hf-v .hf-top .hf-gfx-lyr1 div {
  background-color: #CD0A20;
  
}
#hf_stacks_in_1435.hf-v .hf-top .hf-gfx-lyr2 div {
  background-color: #5244F6;
  
}

#hf_stacks_in_1435 .hf-card-content-inner,
#hf_stacks_in_1435.hf-v:not(.hf2-no-point) .hf-top .hf-gfx-bg div,
#hf_stacks_in_1435.hf-v:not(.hf-no-point) .hf-bottom .hf-gfx-bg div {
  background-color: var(--hf-innerBgColor);
}
/*  */

#hf_stacks_in_1435.hf-v:not(.hf2-no-point) .hf-top .hf-gfx-bdr div,
#hf_stacks_in_1435.hf-v:not(.hf-no-point) .hf-bottom .hf-gfx-bdr div {
  
  
  background-color: #E7E7E7;
  
  
}
#hf_stacks_in_1435.hf-v.hf2-no-point .hf-top .hf-gfx-lyr1 div,
#hf_stacks_in_1435.hf-v .hf-bottom .hf-gfx-lyr1 div {
  background-color: #CD0A20;
  
}
#hf_stacks_in_1435.hf-v.hf2-no-point .hf-top .hf-gfx-lyr2 div,
#hf_stacks_in_1435.hf-v .hf-bottom .hf-gfx-lyr2 div {
  background-color: #5244F6;
  
}

#hf_stacks_in_1435.hf2-detached:not(.hf2-no-content) .hf-card-header > div {
  padding: 12px 24px;
}
#hf_stacks_in_1435.hf-detached:not(.hf-no-content) .hf-card-footer > div {
  padding: 12px 24px;
}
#hf_stacks_in_1435.hf2-detached:not(.hf2-no-content) .hf-card-header {
  padding-left: var(--hf-lyrOffset);
  padding-right: var(--hf-lyrOffset);
}
#hf_stacks_in_1435.hf-detached:not(.hf-no-content) .hf-card-footer {
  padding-left: var(--hf-lyrOffset);
  padding-right: var(--hf-lyrOffset);
}
#hf_stacks_in_1435.hf-v .hf-bottom .hf-gfx-lyr2,
#hf_stacks_in_1435.hf-v .hf-top .hf-gfx-lyr2 {
  left: calc(var(--hf-lyrOffset) * 2);
  right: calc(var(--hf-lyrOffset) * 2);
}
#hf_stacks_in_1435.hf-v.hf-angle-alt .hf-bottom .hf-gfx-lyr2,
#hf_stacks_in_1435.hf-v.hf2-angle-alt .hf-top .hf-gfx-lyr2 {
  left: var(--hf-lyrOffset);
  right: var(--hf-lyrOffset);
}
#hf_stacks_in_1435.hf-v .hf-bottom .hf-gfx-lyr1,
#hf_stacks_in_1435.hf-v .hf-top .hf-gfx-lyr1 {
  left: var(--hf-lyrOffset);
  right: var(--hf-lyrOffset);
}
/*  */
#hf_stacks_in_1435.hf-v .hf-border .hf-gfx-lyr2 > div {opacity: 0;}
#hf_stacks_in_1435.hf-v:not(.hf2-has-content) > .hf-card-inner {margin-top: calc(var(--hf-lyrSize) * -1);margin-bottom: calc(var(--hf-lyrSize) * -1)}
/*  */
/*  */
#hf_stacks_in_1435.hf-v .hf-border .hf-gfx-lyr1 > div {opacity: 0;}
/*  */
/*  */
#hf_stacks_in_1435.hf-v > .hf-card-inner {margin-top: calc(var(--hf-lyrSize) * -2);margin-bottom: calc(var(--hf-lyrSize) * -2);}
/*  */
/*  */
/*  */
 #stacks_in_1440{ overflow:hidden;height:20px; } 













 #stacks_in_1022_320{ overflow:hidden;height:100px; } 


#stacks_in_1022_330 {
	letter-spacing: 3px;
	font-size: 80%;
}
 #stacks_in_1022_331{ overflow:hidden;height:100px; } 
 #stacks_in_1022_334{ overflow:hidden;height:100px; } 

#stacks_in_1022_89 {
	letter-spacing: 3px;
	font-size: 80%;
}
