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


.topyenoh{opacity:0;position:absolute;top:0;left:0;height:0;width:0;padding:0;margin:0;z-index:-1}
.com_bigwhiteduck_stacks_FoundationButtonPlus2_stack{position:relative}.b-p.icon-only{-webkit-box-sizing:content-box!important;box-sizing:content-box!important}.bp-wrap.bp-txt-left>.b-p:not(.icon-only){text-align:left!important}.bp-wrap.bp-txt-center>.b-p:not(.icon-only){text-align:center!important}.bp-wrap.bp-txt-right>.b-p:not(.icon-only){text-align:right!important}.bp-wrap.noclick-active>.b-p.active{pointer-events:none!important} .bp-wrap.inline-wrap{display:inline-block}

.vast_hide.vast_video_player,.vast_standby.vast_video_player{opacity:0}.vast_video_wrapper{position:relative;background-size:cover;overflow:hidden}.vast_video_wrapper:before{-webkit-box-shadow:inset 0 0 0 1px rgba(0,0,0,0.1);box-shadow:inset 0 0 0 1px rgba(0,0,0,0.1);content:'';position:absolute;top:0;left:0;right:0;bottom:0;z-index:1}.vast_video_tint{position:absolute;top:0;left:0;right:0;bottom:0;z-index:1;-webkit-transform:scale(1.05);transform:scale(1.05)}.vast_video_slice{margin:0 auto;position:relative;z-index:2;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.vast_video_background{background-position:center;background-size:cover;position:absolute;-webkit-transform:scale(1.05);transform:scale(1.05);opacity:1;top:0;left:0;right:0;pointer-events:none;bottom:0;-webkit-transition:opacity 500ms 500ms;transition:opacity 500ms 500ms}[data-status="ready"] ~ .vast_video_background{opacity:0}[data-status="ready"].vast_hide ~ .vast_video_background{opacity:1}#vast-log{position:fixed;width:200px;bottom:40px;right:40px;background:#fff;color:#000;padding:0 0 5px;border-radius:9px;-webkit-box-shadow:0 1px 4px -2px #000;box-shadow:0 1px 4px -2px #000;z-index:10000;overflow:hidden}#vast-log p{font-size:13px;padding:7px 20px;margin:0;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Helvetica,Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol"}#vast-log p ~ p{border-top:1px solid #eee}#vast-log p#log-header{font-weight:bolder;text-align:center}.vast-icon{width:8px;height:8px;display:inline-block;margin-right:3px;border:2px solid #f3f3f3;border-top:2px solid #3498db;border-radius:50%;width:8px;height:8px;-webkit-animation:spin 1s linear infinite;animation:spin 1s linear infinite}@-webkit-keyframes spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}@keyframes spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}.vast-loaded .vast-icon{background:rgb(255,221,7);-webkit-animation:none;animation:none;border:none}.vast-loaded.vast-pause .vast-icon{background:rgb(206,205,204);-webkit-animation:none;animation:none;border:none}.vast-loaded.vast-play .vast-icon{background:transparent;width:0;height:0;border-radius:0;-webkit-animation:none;animation:none;border-right:0;border-top:5px solid transparent;border-bottom:5px solid transparent;border-left:8px solid rgb(85,211,94)}.vast-pause{opacity:0.4}
.com_bigwhiteduck_stacks_headerpro_stack .text-center{text-align:center}.com_bigwhiteduck_stacks_headerpro_stack .text-left{text-align:left}.com_bigwhiteduck_stacks_headerpro_stack .text-right{text-align:right}.com_bigwhiteduck_stacks_headerpro_stack .text-justify{text-align:justify}.com_bigwhiteduck_stacks_headerpro_stack .text-inherit{text-align:inherit}

.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}
.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)}
.com_bigwhiteduck_stacks_paragraphpro_stack p.text-center{text-align:center}.com_bigwhiteduck_stacks_paragraphpro_stack p.text-left{text-align:left}.com_bigwhiteduck_stacks_paragraphpro_stack p.text-right{text-align:right}.com_bigwhiteduck_stacks_paragraphpro_stack p.text-justify{text-align:justify}.com_bigwhiteduck_stacks_paragraphpro_stack p.text-inherit{text-align:inherit}@media only screen and (max-width:640px){.com_bigwhiteduck_stacks_paragraphpro_stack p.small-only-text-center{text-align:center}.com_bigwhiteduck_stacks_paragraphpro_stack p.small-only-text-center + ul{display:table;margin:0 auto;text-align:left}}@media only screen and (max-width:640px){.com_bigwhiteduck_stacks_paragraphpro_stack p.text-justify.small-only-just-left{text-align:left !important}}



/* Start Stats stack CSS code */.stacks_in_27449stats, .stacks_in_27449pagetitle{	display: none;}.stacks_in_27449instructwrapper{	position: relative;	background: url("../files/newstatsbg.png") repeat-x;	height: 100px;	-webkit-border-radius: 4px;	-moz-border-radius: 4px;	border-radius: 4px;}.stacks_in_27449instruct{	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(255, 255, 255, 1.00);--black-color:var(--black);--white:rgba(254, 254, 254, 1.00);--white-color:var(--white);--primary:rgba(21, 47, 103, 1.00);--secondary:rgba(205, 41, 27, 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(255, 255, 255, 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, 17, 73, 1.00);--secondary-dark:rgba(175, 11, 0, 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(255, 255, 255, 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(16rem/16)}h1,.h1{font-size:calc(44rem/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(10rem/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(20rem/16)}h1,.h1{font-size:calc(58rem/16)}h2,.h2{font-size:calc(48rem/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(20rem/16)}h1,.h1{font-size:calc(58rem/16)}h2,.h2{font-size:calc(48rem/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(3rem/16)}body{background-color:rgba(255, 255, 255, 1.00);}
  h1,.h1,          .h1{font-family:"Archivo Black",sans-serif }
   h2,.h2,         .h2{font-family:"Francois One",sans-serif }
  h1,.h1,  h3,.h3,        .h3{font-family:"Archivo Black",sans-serif }
     h4,.h4,       .h4{font-family:"Francois One",sans-serif }
 p,.p,           .ph{font-family:"Cabin",sans-serif }
 p,.p,           .ph2{font-family:"Cabin",sans-serif }
.white{color:rgba(255, 255, 255, 1.00) ;}
.black{color:rgba(51, 51, 51, 1.00) ;}
.blue{color:rgba(21, 47, 103, 1.00) ;}
  h1,.h1,          .h1{font-size:calc(30rem/16) ;font-weight:400 ;}@media only screen and (min-width:40em) {  h1,.h1,          .h1{font-size:calc(50rem/16) }}@media only screen and (min-width:64em) {  h1,.h1,          .h1{font-size:calc(50rem/16) }}
   h2,.h2,         .h2{font-size:calc(20rem/16) ;font-weight:400 ;}@media only screen and (min-width:40em) {   h2,.h2,         .h2{font-size:calc(30rem/16) }}@media only screen and (min-width:64em) {   h2,.h2,         .h2{font-size:calc(30rem/16) }}
    h3,.h3,        .h3{font-size:calc(30rem/16) ;font-weight:400 ;}@media only screen and (min-width:40em) {    h3,.h3,        .h3{font-size:calc(30rem/16) }}@media only screen and (min-width:64em) {    h3,.h3,        .h3{font-size:calc(30rem/16) }}
     h4,.h4,       .h4{font-size:calc(20rem/16) ;font-weight:400 ;}@media only screen and (min-width:40em) {     h4,.h4,       .h4{font-size:calc(20rem/16) }}@media only screen and (min-width:64em) {     h4,.h4,       .h4{font-size:calc(20rem/16) }}
 p,.p,           .ph{font-size:calc(17rem/16) ;font-weight:400 ;}@media only screen and (min-width:40em) { p,.p,           .ph{font-size:calc(18rem/16) }}@media only screen and (min-width:64em) { p,.p,           .ph{font-size:calc(20rem/16) }}
 p,.p,           .ph2{font-size:calc(18rem/16) ;}@media only screen and (min-width:40em) { p,.p,           .ph2{font-size:calc(18rem/16) }}@media only screen and (min-width:64em) { p,.p,           .ph2{font-size:calc(18rem/16) }}
.bordercolor{border-color:rgba(190, 0, 4, 1.00) rgba(190, 0, 4, 1.00) rgba(255, 255, 255, 1.00) rgba(255, 255, 255, 1.00) ;border-width:6px ;border-style:solid ;}
.grey{background-color:rgba(239, 235, 231, 0.75) ;background-position:center center ;background-origin:padding-box ;background-blend-mode:normal ;background-attachment:scroll   ;-webkit-background-clip:border-box ;background-clip:border-box ;}@media (hover:none) and (pointer:coarse){.grey{background-attachment:scroll!important}}
.borderlight{border-color:rgba(220, 222, 220, 1.00) rgba(220, 222, 220, 1.00) rgba(220, 222, 220, 1.00) rgba(222, 220, 220, 1.00) ;border-width:4px ;border-style:solid ;}
.myclass{}
.myclass{}  
.myclass{opacity:0.70 }
.myclass{padding:0 ;}  
.formcolor{background-color:rgba(239, 239, 239, 1.00) ;background-position:center center ;background-origin:padding-box ;background-blend-mode:normal ;background-attachment:scroll   ;-webkit-background-clip:border-box ;background-clip:border-box ;}@media (hover:none) and (pointer:coarse){.formcolor{background-attachment:scroll!important}}
.formcolorblue{background-color:rgba(0, 37, 87, 1.00) ;background-position:center center ;background-origin:padding-box ;background-blend-mode:normal ;background-attachment:scroll   ;-webkit-background-clip:border-box ;background-clip:border-box ;}@media (hover:none) and (pointer:coarse){.formcolorblue{background-attachment:scroll!important}}
.footercolor{background-color:rgba(11, 11, 11, 1.00) ;background-position:center center ;background-origin:padding-box ;background-blend-mode:normal ;background-attachment:scroll   ;-webkit-background-clip:border-box ;background-clip:border-box ;}@media (hover:none) and (pointer:coarse){.footercolor{background-attachment:scroll!important}}
.rounding{border-radius:10px ;}
.bgcolor{background-image:url('../files/bgimage-29460.png') ;background-repeat:no-repeat    ;background-position:center center ;background-origin:padding-box ;background-blend-mode:normal ;background-attachment:scroll   ;-webkit-background-clip:border-box ;background-clip:border-box ; background-size:  cover ; }@media (hover:none) and (pointer:coarse){.bgcolor{background-attachment:scroll!important}}
.bgimage{background-color:rgba(204, 204, 204, 1.00) ;background-image:url('../files/bgimage-29461.jpg') ;background-repeat:no-repeat    ;background-position:center center ;background-origin:padding-box ;background-blend-mode:normal ;background-attachment:scroll   ;-webkit-background-clip:border-box ;background-clip:border-box ; background-size:  cover ; }@media (hover:none) and (pointer:coarse){.bgimage{background-attachment:scroll!important}}
.paddingcolumm{padding-top:0.00% ;padding-right:0.00% ;padding-bottom:0.00% ;padding-left:0.00% ;}@media only screen and (min-width:40em){.paddingcolumm{padding-top:0.00% ;padding-right:4.00% ;padding-bottom:0.00% ;padding-left:4.00% }}@media only screen and (min-width:64em){.paddingcolumm{padding-top:0.00% ;padding-right:8.00% ;padding-bottom:0.00% ;padding-left:8.00% }}
.light{background-color:rgba(240, 237, 232, 1.00) ;background-position:center center ;background-origin:padding-box ;background-blend-mode:normal ;background-attachment:scroll   ;-webkit-background-clip:border-box ;background-clip:border-box ;}@media (hover:none) and (pointer:coarse){.light{background-attachment:scroll!important}}
.button.b-p {
  box-sizing: border-box;
  -webkit-font-smoothing: subpixel-antialiased;
  -moz-osx-font-smoothing: auto; }

.button.b-p {
  overflow: visible;
  -webkit-appearance: button;
  cursor: pointer; }

.button.b-p[disabled] {
  cursor: default; }

.button.b-p::-moz-focus-inner {
  border: 0;
  padding: 0; }

.button.b-p {
  -webkit-appearance: none;
  -moz-appearance: none;
  border-radius: 0;
  border-style: solid;
  border-width: 0;
  cursor: pointer;
  font-family: inherit;
  font-weight: inherit;
  line-height: normal;
  margin: 0 0 1.25rem;
  position: relative;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  padding: 1rem 2rem 1.0625rem 2rem;
  font-size: 1rem;
  transition: all 300ms ease-out; }
  .button.b-p.large {
    padding: 1.125rem 2.25rem 1.1875rem 2.25rem;
    font-size: 1.25rem; }
  .button.b-p.small {
    padding: .875rem 1.75rem .9375rem 1.75rem;
    font-size: .8125rem; }
  .button.b-p.tiny {
    padding: .625rem 1.25rem .6875rem 1.25rem;
    font-size: .6875rem; }
  .button.b-p.expand {
    padding-left: 1rem;
    padding-right: 1rem;
    width: 100%; }
  .button.b-p.left-align {
    text-align: left;
    text-indent: .75rem; }
  .button.b-p.right-align {
    text-align: right;
    padding-right: .75rem; }
  .button.b-p.radius, .button.b-p.radius::before, .button.b-p.radius::after {
    border-radius: 3px; }
  .button.b-p.round, .button.b-p.radius::before, .button.b-p.round::after {
    border-radius: 1000px; }
  .button.b-p.disabled, .button.b-p[disabled] {
    background-color: #008CBA;
    border-color: #007095;
    color: #fff;
    box-shadow: none;
    cursor: default;
    opacity: .7; }
  .button.b-p.right {
    float: right !important; }

.button.b-p::-moz-focus-inner {
  border: 0;
  padding: 0; }

@media only screen and (min-width: 40.063em) {
  .button.b-p {
    display: inline-block; } }

.bp-styles-warning {
  display: none; }

.button.b-p:not(.custom) {
  background-color: rgba(213, 0, 0, 1.00);
  color: rgba(255, 255, 255, 1.00); }
  .button.b-p:not(.custom):hover {
    color: rgba(255, 255, 255, 1.00);
    background-color: #890000; }
  .button.b-p.secondary:not(.custom) {
    background-color: rgba(21, 47, 103, 1.00);
    color: rgba(255, 255, 255, 1.00); }
    .button.b-p.secondary:not(.custom):hover {
      color: rgba(255, 255, 255, 1.00);
      background-color: #081227; }
  .button.b-p.alert:not(.custom) {
    background-color: rgba(217, 83, 79, 1.00); }
    .button.b-p.alert:not(.custom):hover {
      background-color: #b52b27; }
  .button.b-p.success:not(.custom) {
    background-color: rgba(92, 184, 92, 1.00); }
    .button.b-p.success:not(.custom):hover {
      background-color: #3d8b3d; }
  .button.b-p.radius:not(.custom) {
    border-radius: 4px; }
  .button.b-p.ghost:not(.custom) {
    background-color: transparent;
    border-width: 1px;
    border-color: rgba(213, 0, 0, 1.00);
    color: rgba(213, 0, 0, 1.00); }
    .button.b-p.ghost:not(.custom):hover {
      color: rgba(255, 255, 255, 1.00);
      border-color: #890000;
      background-color: #890000; }
    .button.b-p.ghost.secondary:not(.custom) {
      border-color: rgba(21, 47, 103, 1.00);
      color: rgba(21, 47, 103, 1.00); }
      .button.b-p.ghost.secondary:not(.custom):hover {
        color: rgba(255, 255, 255, 1.00);
        border-color: #081227;
        background-color: #081227; }
    .button.b-p.ghost.alert:not(.custom) {
      border-color: rgba(217, 83, 79, 1.00);
      color: rgba(217, 83, 79, 1.00); }
      .button.b-p.ghost.alert:not(.custom):hover {
        color: rgba(255, 255, 255, 1.00);
        border-color: #b52b27;
        background-color: #b52b27; }
    .button.b-p.ghost.success:not(.custom) {
      border-color: rgba(92, 184, 92, 1.00);
      color: rgba(92, 184, 92, 1.00); }
      .button.b-p.ghost.success:not(.custom):hover {
        color: rgba(255, 255, 255, 1.00);
        border-color: #3d8b3d;
        background-color: #3d8b3d; }
  .button.b-p.outline-ghost:not(.custom) {
    border-color: rgba(255, 255, 255, 1.00);
    border-width: 1px;
    color: rgba(255, 255, 255, 1.00);
    background-color: transparent; }
    .button.b-p.outline-ghost:not(.custom):hover {
      color: #d9d9d9;
      border-color: #d9d9d9;
      background-color: rgba(212, 212, 212, 0.00); }
@font-face {
  font-family: 'Material Icons';
  font-style: normal;
  font-weight: 400;
  src: url(iconfont/MaterialIcons-Regular.eot); /* For IE6-8 */
  src: local('Material Icons'),
    local('MaterialIcons-Regular'),
    url(actionmenu-files/MaterialIcons-Regular.woff2) format('woff2'),
    url(actionmenu-files/MaterialIcons-Regular.woff) format('woff'),
    url(actionmenu-files/MaterialIcons-Regular.ttf) format('truetype');
}
.material-icons {
  font-family: 'Material Icons';
  font-weight: normal;
  font-style: normal;
  font-size: 24px;  /* Preferred icon size */
  display: inline-block;
  line-height: 1;
  text-transform: none;
  letter-spacing: normal;
  word-wrap: normal;
  white-space: nowrap;
  direction: ltr;

  /* Support for all WebKit browsers. */
  -webkit-font-smoothing: antialiased;
  /* Support for Safari and Chrome. */
  text-rendering: optimizeLegibility;

  /* Support for Firefox. */
  -moz-osx-font-smoothing: grayscale;

  /* Support for IE. */
  -webkit-font-feature-settings: 'liga';
  font-feature-settings: 'liga';
}
@font-face{font-family:"Ionicons";src:url("actionmenu-files/ionicons.eot?v=2.0.1");src:url("actionmenu-files/ionicons.eot?v=2.0.1#iefix") format("embedded-opentype"),url("actionmenu-files/ionicons.ttf?v=2.0.1") format("truetype"),url("actionmenu-files/ionicons.woff?v=2.0.1") format("woff"),url("actionmenu-files/ionicons.svg?v=2.0.1#Ionicons") format("svg");font-weight:normal;font-style:normal}
#actionMenu_stacks_in_29987 .actionMenu_toggle_icon {
  color: #FFFFFF;
  /*  */
  background: #0C2175;
  /*  */
  /*  */
  /*  */ }

#stacks_in_1 {
  clear: both; }

#actionMenu_stacks_in_29987_inline_wrap {
  display: inline-block;
  padding: 10px 5px;
  position: relative;
  height: 50px; }

#actionMenu_stacks_in_29987 {
  cursor: pointer;
  font-family: "Roboto", sans-serif; }
  #actionMenu_stacks_in_29987 .actionMenu_toggle_icon {
    display: block;
    text-align: center;
    width: 50px;
    height: 50px;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    line-height: 50px;
    font-size: 25px;
    border-radius: 100px;
    -webkit-box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4); }
    #actionMenu_stacks_in_29987 .actionMenu_toggle_icon::before {
      -webkit-transition: all 0.3s ease;
      transition: all 0.3s ease;
      line-height: 50px; }
    #actionMenu_stacks_in_29987 .actionMenu_toggle_icon.material-icons::before {
      content: attr(data-icon); }
    #actionMenu_stacks_in_29987 .actionMenu_toggle_icon.hidden::before {
      display: none; }
    #actionMenu_stacks_in_29987 .actionMenu_toggle_icon.rotate {
      -webkit-transform: rotate(0deg);
              transform: rotate(0deg); }
    #actionMenu_stacks_in_29987 .actionMenu_toggle_icon.no-shadow {
      -webkit-box-shadow: none !important;
      box-shadow: none !important; }
  #actionMenu_stacks_in_29987 .actionMenu_menu li a {
    padding: 0;
    display: inline-block;
    width: 40px;
    height: 40px; }
  #actionMenu_stacks_in_29987 .actionMenu_menu li a.inner-icon, #actionMenu_stacks_in_29987 .actionMenu_menu li span.inner-icon {
    padding: 0;
    display: inline-block;
    width: 40px;
    height: 40px;
    border-radius: 100px;
    -webkit-box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.3);
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.3); }
    #actionMenu_stacks_in_29987 .actionMenu_menu li a.inner-icon i, #actionMenu_stacks_in_29987 .actionMenu_menu li a.inner-icon i::before, #actionMenu_stacks_in_29987 .actionMenu_menu li span.inner-icon i, #actionMenu_stacks_in_29987 .actionMenu_menu li span.inner-icon i::before {
      text-align: center;
      width: 40px;
      height: 40px;
      font-size: 18px;
      line-height: 40px !important; }
    #actionMenu_stacks_in_29987 .actionMenu_menu li a.inner-icon i.hidden, #actionMenu_stacks_in_29987 .actionMenu_menu li span.inner-icon i.hidden {
      display: none; }
  #actionMenu_stacks_in_29987 .actionMenu_menu li a.inner-icon.hide-box-shadow-hover:hover, #actionMenu_stacks_in_29987 .actionMenu_menu li span.inner-icon.hide-box-shadow-hover:hover {
    -webkit-box-shadow: none !important;
    box-shadow: none !important; }
  #actionMenu_stacks_in_29987 .actionMenu_menu li span.inner-link {
    padding: 0; }
    #actionMenu_stacks_in_29987 .actionMenu_menu li span.inner-link a {
      width: auto; }
  #actionMenu_stacks_in_29987 .actionMenu_menu.actionMenu_link_only {
    width: 50px; }
    #actionMenu_stacks_in_29987 .actionMenu_menu.actionMenu_link_only li {
      width: 50px; }
    #actionMenu_stacks_in_29987 .actionMenu_menu.actionMenu_link_only li a {
      padding: 0;
      display: inline-block;
      width: 40px;
      height: 40px; }
    #actionMenu_stacks_in_29987 .actionMenu_menu.actionMenu_link_only li a.inner-icon, #actionMenu_stacks_in_29987 .actionMenu_menu.actionMenu_link_only li span.inner-icon {
      display: none !important; }
    #actionMenu_stacks_in_29987 .actionMenu_menu.actionMenu_link_only li span.inner-link {
      opacity: 1 !important;
      visibility: visible !important;
      -webkit-transition-delay: 0.5s !important;
              transition-delay: 0.5s !important; }
      #actionMenu_stacks_in_29987 .actionMenu_menu.actionMenu_link_only li span.inner-link a {
        -webkit-transition-delay: 0.05s;
                transition-delay: 0.05s;
        -webkit-transition: all 0.3s ease;
        transition: all 0.3s ease;
        /*  */
        padding: 0 12px !important;
        /*  */ }

/* " */
/*  */
#actionMenu_stacks_in_29987 {
  /*  */
  position: fixed;
  z-index: 9999999999999999 !important;
  /* " */ }
  #actionMenu_stacks_in_29987 .actionMenu_toggle_icon {
    -webkit-box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4); }
    #actionMenu_stacks_in_29987 .actionMenu_toggle_icon::before {
      -webkit-transition: all 0.3s ease;
      transition: all 0.3s ease;
      line-height: 50px; }
    #actionMenu_stacks_in_29987 .actionMenu_toggle_icon.material-icons::before {
      content: attr(data-icon); }
    #actionMenu_stacks_in_29987 .actionMenu_toggle_icon.rotate {
      -webkit-transform: rotate(0deg);
              transform: rotate(0deg); }
  #actionMenu_stacks_in_29987 .actionMenu_menu {
    left: 50%;
    padding: 0;
    z-index: -1;
    margin: 0 auto;
    overflow: visible;
    max-height: 100px;
    position: absolute;
    text-align: center;
    width: 40px;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%); }
    #actionMenu_stacks_in_29987 .actionMenu_menu li {
      position: absolute;
      width: 40px;
      height: 40px;
      float: left;
      clear: none;
      opacity: 0;
      -webkit-user-select: none;
         -moz-user-select: none;
          -ms-user-select: none;
              user-select: none;
      touch-callout: none;
      pointer-events: none;
      list-style-type: none; }
      #actionMenu_stacks_in_29987 .actionMenu_menu li:nth-child(1) {
        -webkit-transition-duration: %( 0.500000 * 0.0.80 )%s;
                transition-duration: %( 0.500000 * 0.0.80 )%s; }
      #actionMenu_stacks_in_29987 .actionMenu_menu li:nth-child(2) {
        -webkit-transition-duration: %( 1.000000 * 0.0.80 )%s;
                transition-duration: %( 1.000000 * 0.0.80 )%s; }
      #actionMenu_stacks_in_29987 .actionMenu_menu li:nth-child(3) {
        -webkit-transition-duration: %( 1.500000 * 0.0.80 )%s;
                transition-duration: %( 1.500000 * 0.0.80 )%s; }
      #actionMenu_stacks_in_29987 .actionMenu_menu li:nth-child(4) {
        -webkit-transition-duration: %( 2.000000 * 0.0.80 )%s;
                transition-duration: %( 2.000000 * 0.0.80 )%s; }
      #actionMenu_stacks_in_29987 .actionMenu_menu li:nth-child(5) {
        -webkit-transition-duration: %( 2.500000 * 0.0.80 )%s;
                transition-duration: %( 2.500000 * 0.0.80 )%s; }
      #actionMenu_stacks_in_29987 .actionMenu_menu li:nth-child(6) {
        -webkit-transition-duration: %( 3.000000 * 0.0.80 )%s;
                transition-duration: %( 3.000000 * 0.0.80 )%s; }
      #actionMenu_stacks_in_29987 .actionMenu_menu li:nth-child(7) {
        -webkit-transition-duration: %( 3.500000 * 0.0.80 )%s;
                transition-duration: %( 3.500000 * 0.0.80 )%s; }
      #actionMenu_stacks_in_29987 .actionMenu_menu li:nth-child(8) {
        -webkit-transition-duration: %( 4.000000 * 0.0.80 )%s;
                transition-duration: %( 4.000000 * 0.0.80 )%s; }
      #actionMenu_stacks_in_29987 .actionMenu_menu li:nth-child(9) {
        -webkit-transition-duration: %( 4.500000 * 0.0.80 )%s;
                transition-duration: %( 4.500000 * 0.0.80 )%s; }
      #actionMenu_stacks_in_29987 .actionMenu_menu li:nth-child(10) {
        -webkit-transition-duration: %( 5.000000 * 0.0.80 )%s;
                transition-duration: %( 5.000000 * 0.0.80 )%s; }
      #actionMenu_stacks_in_29987 .actionMenu_menu li:nth-child(11) {
        -webkit-transition-duration: %( 5.500000 * 0.0.80 )%s;
                transition-duration: %( 5.500000 * 0.0.80 )%s; }
      #actionMenu_stacks_in_29987 .actionMenu_menu li:nth-child(12) {
        -webkit-transition-duration: %( 6.000000 * 0.0.80 )%s;
                transition-duration: %( 6.000000 * 0.0.80 )%s; }
      #actionMenu_stacks_in_29987 .actionMenu_menu li:nth-child(13) {
        -webkit-transition-duration: %( 6.500000 * 0.0.80 )%s;
                transition-duration: %( 6.500000 * 0.0.80 )%s; }
      #actionMenu_stacks_in_29987 .actionMenu_menu li:nth-child(14) {
        -webkit-transition-duration: %( 7.000000 * 0.0.80 )%s;
                transition-duration: %( 7.000000 * 0.0.80 )%s; }
      #actionMenu_stacks_in_29987 .actionMenu_menu li:nth-child(15) {
        -webkit-transition-duration: %( 7.500000 * 0.0.80 )%s;
                transition-duration: %( 7.500000 * 0.0.80 )%s; }
      #actionMenu_stacks_in_29987 .actionMenu_menu li:nth-child(16) {
        -webkit-transition-duration: %( 8.000000 * 0.0.80 )%s;
                transition-duration: %( 8.000000 * 0.0.80 )%s; }
      #actionMenu_stacks_in_29987 .actionMenu_menu li:nth-child(17) {
        -webkit-transition-duration: %( 8.500000 * 0.0.80 )%s;
                transition-duration: %( 8.500000 * 0.0.80 )%s; }
      #actionMenu_stacks_in_29987 .actionMenu_menu li:nth-child(18) {
        -webkit-transition-duration: %( 9.000000 * 0.0.80 )%s;
                transition-duration: %( 9.000000 * 0.0.80 )%s; }
      #actionMenu_stacks_in_29987 .actionMenu_menu li:nth-child(19) {
        -webkit-transition-duration: %( 9.500000 * 0.0.80 )%s;
                transition-duration: %( 9.500000 * 0.0.80 )%s; }
      #actionMenu_stacks_in_29987 .actionMenu_menu li:nth-child(20) {
        -webkit-transition-duration: %( 10.000000 * 0.0.80 )%s;
                transition-duration: %( 10.000000 * 0.0.80 )%s; }
      #actionMenu_stacks_in_29987 .actionMenu_menu li:nth-child(21) {
        -webkit-transition-duration: %( 10.500000 * 0.0.80 )%s;
                transition-duration: %( 10.500000 * 0.0.80 )%s; }
      #actionMenu_stacks_in_29987 .actionMenu_menu li:nth-child(22) {
        -webkit-transition-duration: %( 11.000000 * 0.0.80 )%s;
                transition-duration: %( 11.000000 * 0.0.80 )%s; }
      #actionMenu_stacks_in_29987 .actionMenu_menu li:nth-child(23) {
        -webkit-transition-duration: %( 11.500000 * 0.0.80 )%s;
                transition-duration: %( 11.500000 * 0.0.80 )%s; }
      #actionMenu_stacks_in_29987 .actionMenu_menu li:nth-child(24) {
        -webkit-transition-duration: %( 12.000000 * 0.0.80 )%s;
                transition-duration: %( 12.000000 * 0.0.80 )%s; }
      #actionMenu_stacks_in_29987 .actionMenu_menu li span.inner-link a {
        display: block;
        color: inherit;
        text-decoration: none;
        line-height: 40px; }
        #actionMenu_stacks_in_29987 .actionMenu_menu li span.inner-link a:hover {
          text-decoration: underline; }
      #actionMenu_stacks_in_29987 .actionMenu_menu li span.inner-link {
        top: 0;
        opacity: 0;
        padding: 0;
        z-index: -1;
        width: auto;
        font-size: 14px;
        visibility: hidden;
        position: absolute;
        white-space: nowrap;
        height: 40px;
        -webkit-transition-delay: 0.5s;
                transition-delay: 0.5s;
        -webkit-transition: all 0.3s ease;
        transition: all 0.3s ease;
        line-height: 40px;
        border-radius: 100px;
        color: #FFFFFF;
        /*  */
        background: #5C13A1;
        /*  */
        /*  */ }
        #actionMenu_stacks_in_29987 .actionMenu_menu li span.inner-link a:hover {
          text-decoration: none; }
        #actionMenu_stacks_in_29987 .actionMenu_menu li span.inner-link a {
          padding: 0px 20px;
          -webkit-transition-delay: 0.5s;
                  transition-delay: 0.5s;
          -webkit-transition: all 0.3s ease;
          transition: all 0.3s ease; }
      #actionMenu_stacks_in_29987 .actionMenu_menu li a.inner-icon, #actionMenu_stacks_in_29987 .actionMenu_menu li span.inner-icon {
        -webkit-box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.3);
        box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.3); }
      #actionMenu_stacks_in_29987 .actionMenu_menu li a.inner-icon.hide-box-shadow, #actionMenu_stacks_in_29987 .actionMenu_menu li span.inner-icon.hide-box-shadow {
        -webkit-box-shadow: none !important;
        box-shadow: none !important; }
      #actionMenu_stacks_in_29987 .actionMenu_menu li a.inner-icon.hide-box-shadow-hover:hover, #actionMenu_stacks_in_29987 .actionMenu_menu li span.inner-icon.hide-box-shadow-hover:hover {
        -webkit-box-shadow: none !important;
        box-shadow: none !important; }

#actionMenu_stacks_in_29987.open {
  z-index: 999999999 !important; }
  #actionMenu_stacks_in_29987.open.overlay::after {
    cursor: default;
    content: '';
    z-index: -1;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: block;
    position: fixed;
    border: none !important;
    -webkit-transform: none !important;
            transform: none !important;
    -webkit-transition: opacity 0.3s ease;
    transition: opacity 0.3s ease;
    opacity: 0.80;
    background: #FFFFFF; }
  #actionMenu_stacks_in_29987.open .actionMenu_toggle_icon.material-icons::before {
    content: 'close' !important; }
  #actionMenu_stacks_in_29987.open .actionMenu_toggle_icon.icon-ionic::before {
    content: "\f12a" !important; }
  #actionMenu_stacks_in_29987.open .actionMenu_toggle_icon.fa::before {
    content: "\f00d" !important; }
  #actionMenu_stacks_in_29987.open .actionMenu_toggle_icon.rotate {
    -webkit-transform: rotate(90deg);
            transform: rotate(90deg);
    -webkit-box-shadow: 4px 0px 10px rgba(0, 0, 0, 0.4);
    box-shadow: 4px 0px 10px rgba(0, 0, 0, 0.4); }
  #actionMenu_stacks_in_29987.open .actionMenu_menu {
    max-height: 500px;
    z-index: auto; }
    #actionMenu_stacks_in_29987.open .actionMenu_menu li {
      opacity: 1;
      pointer-events: auto;
      -webkit-transform: rotate(0deg);
              transform: rotate(0deg); }
      #actionMenu_stacks_in_29987.open .actionMenu_menu li:hover span.inner-link {
        opacity: 1;
        visibility: visible; }

@media screen and (max-width: 1028px) {
  #actionMenu_stacks_in_29987.open.ho-left .actionMenu_menu.actionMenu_mobile_text_on li span.inner-link {
    opacity: 1;
    visibility: visible;
    -webkit-transition-delay: 0.5s !important;
            transition-delay: 0.5s !important; }
    #actionMenu_stacks_in_29987.open.ho-left .actionMenu_menu.actionMenu_mobile_text_on li span.inner-link a {
      opacity: 1;
      visibility: visible;
      -webkit-transition-delay: 0.5s !important;
              transition-delay: 0.5s !important;
      padding-left: 55px !important; }
  #actionMenu_stacks_in_29987.open.ho-left .actionMenu_menu.actionMenu_mobile_text_on li a.inner-icon.hide-box-shadow-hover, #actionMenu_stacks_in_29987.open.ho-left .actionMenu_menu.actionMenu_mobile_text_on li span.inner-icon.hide-box-shadow-hover {
    -webkit-box-shadow: none !important;
    box-shadow: none !important; }
  #actionMenu_stacks_in_29987.open.ho-left .actionMenu_menu.actionMenu_mobile_text_on.actionMenu_link_only li span.inner-link a {
    /*  */
    padding-left: 12px !important;
    /*  */ }
  #actionMenu_stacks_in_29987.open.ho-right .actionMenu_menu.actionMenu_mobile_text_on li span.inner-link {
    opacity: 1;
    visibility: visible;
    -webkit-transition-delay: 0.5s !important;
            transition-delay: 0.5s !important; }
    #actionMenu_stacks_in_29987.open.ho-right .actionMenu_menu.actionMenu_mobile_text_on li span.inner-link a {
      opacity: 1;
      visibility: visible;
      -webkit-transition-delay: 0.5s !important;
              transition-delay: 0.5s !important;
      padding-right: 55px !important; }
  #actionMenu_stacks_in_29987.open.ho-right .actionMenu_menu.actionMenu_mobile_text_on li a.inner-icon.hide-box-shadow-hover, #actionMenu_stacks_in_29987.open.ho-right .actionMenu_menu.actionMenu_mobile_text_on li span.inner-icon.hide-box-shadow-hover {
    -webkit-box-shadow: none !important;
    box-shadow: none !important; }
  #actionMenu_stacks_in_29987.open.ho-right .actionMenu_menu.actionMenu_mobile_text_on.actionMenu_link_only li span.inner-link a {
    /*  */
    padding-right: 12px !important;
    /*  */ } }

#actionMenu_stacks_in_29987.ho-left {
  left: 30px; }
  #actionMenu_stacks_in_29987.ho-left .actionMenu_menu span.inner-link {
    left: 1px;
    text-align: left; }
  #actionMenu_stacks_in_29987.ho-left .actionMenu_menu.actionMenu_text_on li span.inner-link, #actionMenu_stacks_in_29987.ho-left .actionMenu_menu.actionMenu_mobile_text_on li span.inner-link {
    opacity: 0;
    visibility: hidden;
    -webkit-transition-delay: none;
            transition-delay: none; }
    #actionMenu_stacks_in_29987.ho-left .actionMenu_menu.actionMenu_text_on li span.inner-link a, #actionMenu_stacks_in_29987.ho-left .actionMenu_menu.actionMenu_mobile_text_on li span.inner-link a {
      -webkit-transition-delay: none;
              transition-delay: none; }
  #actionMenu_stacks_in_29987.ho-left .actionMenu_menu.actionMenu_text_on li .inner-icon.hide-box-shadow, #actionMenu_stacks_in_29987.ho-left .actionMenu_menu.actionMenu_mobile_text_on li .inner-icon.hide-box-shadow {
    -webkit-box-shadow: none !important;
    box-shadow: none !important; }
  #actionMenu_stacks_in_29987.ho-left .actionMenu_menu.actionMenu_text_on li .inner-icon.hide-box-shadow-hover:hover, #actionMenu_stacks_in_29987.ho-left .actionMenu_menu.actionMenu_mobile_text_on li .inner-icon.hide-box-shadow-hover:hover {
    -webkit-box-shadow: none !important;
    box-shadow: none !important; }

#actionMenu_stacks_in_29987.open.ho-left .actionMenu_menu li:hover span.inner-link {
  opacity: 1;
  visibility: visible;
  -webkit-transition-delay: none;
          transition-delay: none; }
  #actionMenu_stacks_in_29987.open.ho-left .actionMenu_menu li:hover span.inner-link a {
    -webkit-transition-delay: 0.5s;
            transition-delay: 0.5s;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    padding-left: 55px !important; }

#actionMenu_stacks_in_29987.open.ho-left .actionMenu_menu.actionMenu_text_on li span.inner-link {
  opacity: 1;
  visibility: visible;
  -webkit-transition-delay: 0.5s !important;
          transition-delay: 0.5s !important; }
  #actionMenu_stacks_in_29987.open.ho-left .actionMenu_menu.actionMenu_text_on li span.inner-link a {
    opacity: 1;
    visibility: visible;
    -webkit-transition-delay: 0.5s !important;
            transition-delay: 0.5s !important;
    padding-left: 55px !important; }

#actionMenu_stacks_in_29987.open.ho-left .actionMenu_menu.actionMenu_link_only li:hover span.inner-link a {
  text-decoration: underline;
  /*  */
  padding-left: 12px !important;
  /*  */ }

#actionMenu_stacks_in_29987.ho-right {
  right: 30px; }
  #actionMenu_stacks_in_29987.ho-right .actionMenu_menu span.inner-link {
    right: 1px;
    text-align: right; }
  #actionMenu_stacks_in_29987.ho-right .actionMenu_menu.actionMenu_text_on li span.inner-link, #actionMenu_stacks_in_29987.ho-right .actionMenu_menu.actionMenu_mobile_text_on li span.inner-link {
    opacity: 0;
    visibility: hidden;
    -webkit-transition-delay: none;
            transition-delay: none; }
    #actionMenu_stacks_in_29987.ho-right .actionMenu_menu.actionMenu_text_on li span.inner-link a, #actionMenu_stacks_in_29987.ho-right .actionMenu_menu.actionMenu_mobile_text_on li span.inner-link a {
      -webkit-transition-delay: none;
              transition-delay: none; }
  #actionMenu_stacks_in_29987.ho-right .actionMenu_menu.actionMenu_text_on li .inner-icon.hide-box-shadow, #actionMenu_stacks_in_29987.ho-right .actionMenu_menu.actionMenu_mobile_text_on li .inner-icon.hide-box-shadow {
    -webkit-box-shadow: none !important;
    box-shadow: none !important; }
  #actionMenu_stacks_in_29987.ho-right .actionMenu_menu.actionMenu_text_on li .inner-icon.hide-box-shadow-hover:hover, #actionMenu_stacks_in_29987.ho-right .actionMenu_menu.actionMenu_mobile_text_on li .inner-icon.hide-box-shadow-hover:hover {
    -webkit-box-shadow: none !important;
    box-shadow: none !important; }

#actionMenu_stacks_in_29987.open.ho-right .actionMenu_menu li:hover span.inner-link {
  opacity: 1;
  visibility: visible;
  -webkit-transition-delay: none;
          transition-delay: none; }
  #actionMenu_stacks_in_29987.open.ho-right .actionMenu_menu li:hover span.inner-link a {
    -webkit-transition-delay: 0.5s;
            transition-delay: 0.5s;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    padding-right: 55px !important; }

#actionMenu_stacks_in_29987.open.ho-right .actionMenu_menu.actionMenu_text_on li span.inner-link {
  opacity: 1;
  visibility: visible;
  -webkit-transition-delay: 0.5s !important;
          transition-delay: 0.5s !important; }
  #actionMenu_stacks_in_29987.open.ho-right .actionMenu_menu.actionMenu_text_on li span.inner-link a {
    opacity: 1;
    visibility: visible;
    -webkit-transition-delay: 0.5s !important;
            transition-delay: 0.5s !important;
    padding-right: 55px !important; }

#actionMenu_stacks_in_29987.open.ho-right .actionMenu_menu.actionMenu_link_only li:hover span.inner-link a {
  text-decoration: underline;
  /*  */
  padding-right: 12px !important;
  /*  */ }

#actionMenu_stacks_in_29987.vo-top {
  top: 30px; }
  #actionMenu_stacks_in_29987.vo-top .actionMenu_menu {
    top: 45px; }
    #actionMenu_stacks_in_29987.vo-top .actionMenu_menu li {
      top: -40px; }
  #actionMenu_stacks_in_29987.vo-top.ho-left .actionMenu_menu li {
    -webkit-transform: rotate(-90deg);
            transform: rotate(-90deg); }
  #actionMenu_stacks_in_29987.vo-top.ho-right .actionMenu_menu li {
    -webkit-transform: rotate(90deg);
            transform: rotate(90deg); }

#actionMenu_stacks_in_29987.open.vo-top .actionMenu_menu {
  top: 100%; }
  #actionMenu_stacks_in_29987.open.vo-top .actionMenu_menu li {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
    -webkit-transition: all ease, opacity 0.2s ease-in;
    transition: all ease, opacity 0.2s ease-in; }
    #actionMenu_stacks_in_29987.open.vo-top .actionMenu_menu li:nth-child(1) {
      top: 12px;
      -webkit-transition-duration: 0.250000s;
              transition-duration: 0.250000s; }
    #actionMenu_stacks_in_29987.open.vo-top .actionMenu_menu li:nth-child(2) {
      top: 64px;
      -webkit-transition-duration: 0.300000s;
              transition-duration: 0.300000s; }
    #actionMenu_stacks_in_29987.open.vo-top .actionMenu_menu li:nth-child(3) {
      top: 116px;
      -webkit-transition-duration: 0.350000s;
              transition-duration: 0.350000s; }
    #actionMenu_stacks_in_29987.open.vo-top .actionMenu_menu li:nth-child(4) {
      top: 168px;
      -webkit-transition-duration: 0.400000s;
              transition-duration: 0.400000s; }
    #actionMenu_stacks_in_29987.open.vo-top .actionMenu_menu li:nth-child(5) {
      top: 220px;
      -webkit-transition-duration: 0.450000s;
              transition-duration: 0.450000s; }
    #actionMenu_stacks_in_29987.open.vo-top .actionMenu_menu li:nth-child(6) {
      top: 272px;
      -webkit-transition-duration: 0.500000s;
              transition-duration: 0.500000s; }
    #actionMenu_stacks_in_29987.open.vo-top .actionMenu_menu li:nth-child(7) {
      top: 324px;
      -webkit-transition-duration: 0.550000s;
              transition-duration: 0.550000s; }
    #actionMenu_stacks_in_29987.open.vo-top .actionMenu_menu li:nth-child(8) {
      top: 376px;
      -webkit-transition-duration: 0.600000s;
              transition-duration: 0.600000s; }
    #actionMenu_stacks_in_29987.open.vo-top .actionMenu_menu li:nth-child(9) {
      top: 428px;
      -webkit-transition-duration: 0.650000s;
              transition-duration: 0.650000s; }
    #actionMenu_stacks_in_29987.open.vo-top .actionMenu_menu li:nth-child(10) {
      top: 480px;
      -webkit-transition-duration: 0.700000s;
              transition-duration: 0.700000s; }
    #actionMenu_stacks_in_29987.open.vo-top .actionMenu_menu li:nth-child(11) {
      top: 532px;
      -webkit-transition-duration: 0.750000s;
              transition-duration: 0.750000s; }
    #actionMenu_stacks_in_29987.open.vo-top .actionMenu_menu li:nth-child(12) {
      top: 584px;
      -webkit-transition-duration: 0.800000s;
              transition-duration: 0.800000s; }
    #actionMenu_stacks_in_29987.open.vo-top .actionMenu_menu li:nth-child(13) {
      top: 636px;
      -webkit-transition-duration: 0.850000s;
              transition-duration: 0.850000s; }
    #actionMenu_stacks_in_29987.open.vo-top .actionMenu_menu li:nth-child(14) {
      top: 688px;
      -webkit-transition-duration: 0.900000s;
              transition-duration: 0.900000s; }
    #actionMenu_stacks_in_29987.open.vo-top .actionMenu_menu li:nth-child(15) {
      top: 740px;
      -webkit-transition-duration: 0.950000s;
              transition-duration: 0.950000s; }
    #actionMenu_stacks_in_29987.open.vo-top .actionMenu_menu li:nth-child(16) {
      top: 792px;
      -webkit-transition-duration: 1.000000s;
              transition-duration: 1.000000s; }
    #actionMenu_stacks_in_29987.open.vo-top .actionMenu_menu li:nth-child(17) {
      top: 844px;
      -webkit-transition-duration: 1.050000s;
              transition-duration: 1.050000s; }
    #actionMenu_stacks_in_29987.open.vo-top .actionMenu_menu li:nth-child(18) {
      top: 896px;
      -webkit-transition-duration: 1.100000s;
              transition-duration: 1.100000s; }
    #actionMenu_stacks_in_29987.open.vo-top .actionMenu_menu li:nth-child(19) {
      top: 948px;
      -webkit-transition-duration: 1.150000s;
              transition-duration: 1.150000s; }
    #actionMenu_stacks_in_29987.open.vo-top .actionMenu_menu li:nth-child(20) {
      top: 1000px;
      -webkit-transition-duration: 1.200000s;
              transition-duration: 1.200000s; }
    #actionMenu_stacks_in_29987.open.vo-top .actionMenu_menu li:nth-child(21) {
      top: 1052px;
      -webkit-transition-duration: 1.250000s;
              transition-duration: 1.250000s; }
    #actionMenu_stacks_in_29987.open.vo-top .actionMenu_menu li:nth-child(22) {
      top: 1104px;
      -webkit-transition-duration: 1.300000s;
              transition-duration: 1.300000s; }
    #actionMenu_stacks_in_29987.open.vo-top .actionMenu_menu li:nth-child(23) {
      top: 1156px;
      -webkit-transition-duration: 1.350000s;
              transition-duration: 1.350000s; }
    #actionMenu_stacks_in_29987.open.vo-top .actionMenu_menu li:nth-child(24) {
      top: 1208px;
      -webkit-transition-duration: 1.400000s;
              transition-duration: 1.400000s; }

#actionMenu_stacks_in_29987.vo-bottom {
  bottom: 30px; }
  #actionMenu_stacks_in_29987.vo-bottom .actionMenu_menu {
    bottom: 45px; }
    #actionMenu_stacks_in_29987.vo-bottom .actionMenu_menu li {
      bottom: -40px; }
  #actionMenu_stacks_in_29987.vo-bottom.ho-left .actionMenu_menu li {
    -webkit-transform: rotate(90deg);
            transform: rotate(90deg); }
  #actionMenu_stacks_in_29987.vo-bottom.ho-right .actionMenu_menu li {
    -webkit-transform: rotate(-90deg);
            transform: rotate(-90deg); }

#actionMenu_stacks_in_29987.open.vo-bottom .actionMenu_menu {
  bottom: 100%; }
  #actionMenu_stacks_in_29987.open.vo-bottom .actionMenu_menu li {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
    -webkit-transition: all ease, opacity 0.2s ease-in;
    transition: all ease, opacity 0.2s ease-in; }
    #actionMenu_stacks_in_29987.open.vo-bottom .actionMenu_menu li:nth-child(1) {
      bottom: 12px;
      -webkit-transition-duration: 0.250000s;
              transition-duration: 0.250000s; }
    #actionMenu_stacks_in_29987.open.vo-bottom .actionMenu_menu li:nth-child(2) {
      bottom: 64px;
      -webkit-transition-duration: 0.300000s;
              transition-duration: 0.300000s; }
    #actionMenu_stacks_in_29987.open.vo-bottom .actionMenu_menu li:nth-child(3) {
      bottom: 116px;
      -webkit-transition-duration: 0.350000s;
              transition-duration: 0.350000s; }
    #actionMenu_stacks_in_29987.open.vo-bottom .actionMenu_menu li:nth-child(4) {
      bottom: 168px;
      -webkit-transition-duration: 0.400000s;
              transition-duration: 0.400000s; }
    #actionMenu_stacks_in_29987.open.vo-bottom .actionMenu_menu li:nth-child(5) {
      bottom: 220px;
      -webkit-transition-duration: 0.450000s;
              transition-duration: 0.450000s; }
    #actionMenu_stacks_in_29987.open.vo-bottom .actionMenu_menu li:nth-child(6) {
      bottom: 272px;
      -webkit-transition-duration: 0.500000s;
              transition-duration: 0.500000s; }
    #actionMenu_stacks_in_29987.open.vo-bottom .actionMenu_menu li:nth-child(7) {
      bottom: 324px;
      -webkit-transition-duration: 0.550000s;
              transition-duration: 0.550000s; }
    #actionMenu_stacks_in_29987.open.vo-bottom .actionMenu_menu li:nth-child(8) {
      bottom: 376px;
      -webkit-transition-duration: 0.600000s;
              transition-duration: 0.600000s; }
    #actionMenu_stacks_in_29987.open.vo-bottom .actionMenu_menu li:nth-child(9) {
      bottom: 428px;
      -webkit-transition-duration: 0.650000s;
              transition-duration: 0.650000s; }
    #actionMenu_stacks_in_29987.open.vo-bottom .actionMenu_menu li:nth-child(10) {
      bottom: 480px;
      -webkit-transition-duration: 0.700000s;
              transition-duration: 0.700000s; }
    #actionMenu_stacks_in_29987.open.vo-bottom .actionMenu_menu li:nth-child(11) {
      bottom: 532px;
      -webkit-transition-duration: 0.750000s;
              transition-duration: 0.750000s; }
    #actionMenu_stacks_in_29987.open.vo-bottom .actionMenu_menu li:nth-child(12) {
      bottom: 584px;
      -webkit-transition-duration: 0.800000s;
              transition-duration: 0.800000s; }
    #actionMenu_stacks_in_29987.open.vo-bottom .actionMenu_menu li:nth-child(13) {
      bottom: 636px;
      -webkit-transition-duration: 0.850000s;
              transition-duration: 0.850000s; }
    #actionMenu_stacks_in_29987.open.vo-bottom .actionMenu_menu li:nth-child(14) {
      bottom: 688px;
      -webkit-transition-duration: 0.900000s;
              transition-duration: 0.900000s; }
    #actionMenu_stacks_in_29987.open.vo-bottom .actionMenu_menu li:nth-child(15) {
      bottom: 740px;
      -webkit-transition-duration: 0.950000s;
              transition-duration: 0.950000s; }
    #actionMenu_stacks_in_29987.open.vo-bottom .actionMenu_menu li:nth-child(16) {
      bottom: 792px;
      -webkit-transition-duration: 1.000000s;
              transition-duration: 1.000000s; }
    #actionMenu_stacks_in_29987.open.vo-bottom .actionMenu_menu li:nth-child(17) {
      bottom: 844px;
      -webkit-transition-duration: 1.050000s;
              transition-duration: 1.050000s; }
    #actionMenu_stacks_in_29987.open.vo-bottom .actionMenu_menu li:nth-child(18) {
      bottom: 896px;
      -webkit-transition-duration: 1.100000s;
              transition-duration: 1.100000s; }
    #actionMenu_stacks_in_29987.open.vo-bottom .actionMenu_menu li:nth-child(19) {
      bottom: 948px;
      -webkit-transition-duration: 1.150000s;
              transition-duration: 1.150000s; }
    #actionMenu_stacks_in_29987.open.vo-bottom .actionMenu_menu li:nth-child(20) {
      bottom: 1000px;
      -webkit-transition-duration: 1.200000s;
              transition-duration: 1.200000s; }
    #actionMenu_stacks_in_29987.open.vo-bottom .actionMenu_menu li:nth-child(21) {
      bottom: 1052px;
      -webkit-transition-duration: 1.250000s;
              transition-duration: 1.250000s; }
    #actionMenu_stacks_in_29987.open.vo-bottom .actionMenu_menu li:nth-child(22) {
      bottom: 1104px;
      -webkit-transition-duration: 1.300000s;
              transition-duration: 1.300000s; }
    #actionMenu_stacks_in_29987.open.vo-bottom .actionMenu_menu li:nth-child(23) {
      bottom: 1156px;
      -webkit-transition-duration: 1.350000s;
              transition-duration: 1.350000s; }
    #actionMenu_stacks_in_29987.open.vo-bottom .actionMenu_menu li:nth-child(24) {
      bottom: 1208px;
      -webkit-transition-duration: 1.400000s;
              transition-duration: 1.400000s; }

/*  */
#item_stacks_in_29990 a.inner-icon, #item_stacks_in_29990 span.inner-icon {
  color: #FFFFFF;
  /*  */
  background: #0C2175;
  /*  */
  /*  */
  /*  */ }

/*  */
#item_stacks_in_29992 a.inner-icon, #item_stacks_in_29992 span.inner-icon {
  color: #FFFFFF;
  /*  */
  background: #BF1516;
  /*  */
  /*  */
  /*  */ }

/*  */
#item_stacks_in_29994 a.inner-icon, #item_stacks_in_29994 span.inner-icon {
  color: #FFFFFF;
  /*  */
  background: #00AEC4;
  /*  */
  /*  */
  /*  */ }

/*  */
 #stacks_in_29997 .shear-mag{position:absolute;top:-50px}#stacks_in_29997 a.shear-mag.offset-override{top:-50px!important} .mg-menu .mgicon-inicio{vertical-align:middle;font-size:1.60rem; padding-right:1.00rem;}    
/*
1.5.0.1
- hotfix: display bug with dropdown items in edit mode
*/
#stacks_in_29998 {
  width: 100%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
#stacks_in_29998 > * {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
*:focus {
  outline-style:none;
  box-shadow:none;
  border-color:transparent;
}

#stacks_in_29998 .clean-menu-extra {
  display: none;
}
#clean-menu_stacks_in_29998 .clean-menu-logo .cm-logo-right {
  white-space: nowrap;
}
#clean-menu_stacks_in_29998 .clean-menu-logo .cm-logo-right * {
  margin: 0;
  display: flex;
  align-self: center;
}
#clean-menu-full_stacks_in_29998.cm-full-menu li > a:hover,
#clean-menu_stacks_in_29998 li > a:hover {
  text-decoration: none;
}

#stacks_in_29998 nav {
  border: 0px solid transparent;
}
#clean-menu_stacks_in_29998 {
  max-width: 1320px;
  box-sizing: border-box;
  padding: 0px 20px;
  
  margin: 0 auto;
  
}
/* compatability fixes */
#clean-menu_stacks_in_29998 ul {
  margin: 0;
}
#clean-menu-full_stacks_in_29998.cm-full-menu ul,
#clean-menu_stacks_in_29998 .clean-menu-top-level > ul > li > ul {
  -webkit-transform: translate(0px, 0px);
  transform: translate(0px, 0px);
}
#clean-menu_stacks_in_29998 ul li > a:after,
#clean-menu_stacks_in_29998 .clean-menu-top-level > ul > li > ul li > a:after {
  align-self: center;
}
/* --- */
#clean-menu-full_stacks_in_29998.cm-full-menu,
#clean-menu_stacks_in_29998 .clean-menu-top-level > ul > li > ul {
  position: absolute;
  top: 0;
  left: 0;
}
#clean-menu-full_stacks_in_29998.cm-full-menu ul,
#clean-menu_stacks_in_29998 .clean-menu-top-level > ul > li > ul {
  text-decoration: none;
  list-style: none;
  margin: 0;
  display: block;
  padding: 0px 0px;
  background: transparent;
}
#clean-menu-full_stacks_in_29998.cm-full-menu ul {
  padding: 6px 0px;
}
#clean-menu-full_stacks_in_29998.cm-full-menu ul li,
#clean-menu_stacks_in_29998 .clean-menu-top-level > ul > li > ul li {
  display: block;
  margin: 0;
  padding: 0;
  float: none;
  background: transparent;
}
#clean-menu-full_stacks_in_29998.cm-full-menu ul li > a,
#clean-menu_stacks_in_29998 .clean-menu-top-level > ul > li > ul li > a {
  padding: 5px 20px;
  margin: 0;
  line-height: 1;
  background: transparent;
  display: inline-block;
}
#clean-menu_stacks_in_29998 .clean-menu-top-level > ul > li.clean-menu-dropdown > ul {
  padding: 6px 0px;
}
#clean-menu_stacks_in_29998 .clean-menu-top-level > ul > li > ul li > a {
  padding: 6px 20px;
}
#clean-menu-full_stacks_in_29998.cm-full-menu ul > li > a {
  font-weight: bold;
}
#clean-menu-full_stacks_in_29998.cm-full-menu ul > li > .cm-custom-content {
  padding: 4px 20px 4px 20px;
}
#clean-menu-full_stacks_in_29998.cm-full-menu ul ul > li > .cm-custom-content {
  padding: 4px 20px 4px 30px;
}
#clean-menu-full_stacks_in_29998.cm-full-menu ul > li.cm-grouped-item > .cm-custom-content  {
  padding: 4px 20px 4px 0px;
}
#clean-menu-full_stacks_in_29998.cm-full-menu ul ul > li > a,
#clean-menu_stacks_in_29998 .clean-menu-top-level > ul > li > ul ul {
  padding: 6px 20px;
  font-weight: normal;
  line-height: 1;
  height: auto;
}
#clean-menu-full_stacks_in_29998.cm-full-menu ul > div,
#clean-menu_stacks_in_29998 .clean-menu-top-level > ul > li > ul > div {
  padding: 20px;
}
#clean-menu-full_stacks_in_29998.cm-full-menu ul > div a,
#clean-menu_stacks_in_29998 .clean-menu-top-level > ul > li > ul > div a {
  display: block;
  padding: 0;
}
#clean-menu-full_stacks_in_29998.cm-full-menu ul ul,
#clean-menu_stacks_in_29998 .clean-menu-top-level > ul > li > ul ul {
  display: block;
  padding: 0px 0px 10px 10px;
  margin: 0;
}
#clean-menu-full_stacks_in_29998.cm-full-menu,
#clean-menu_stacks_in_29998 .clean-menu-top-level > ul > li > ul {
  position: absolute;
  z-index: 9999;
  pointer-events: none;
  opacity: 0;
  -webkit-transition: -webkit-transform 300ms ease, opacity 300ms ease;
  transition: -webkit-transform 300ms ease, opacity 300ms ease;
  transition: transform 300ms ease, opacity 300ms ease;
  transition: transform 300ms ease, -webkit-transform 300ms ease, opacity 300ms ease;
  -webkit-transform: translate(0, 50px);
  transform: translate(0, 50px);
  min-width: 250px;
  border-radius: 4px;
  box-shadow: 0px 10px 20px rgba(0,0,0,0.4);
}
#clean-menu-full_stacks_in_29998.cm-full-menu.clean-menu-active {
  -webkit-transform: translate(0px, 5px);
  transform: translate(0px, 5px);
  pointer-events: all;
  opacity: 1;
}
#clean-menu-full_stacks_in_29998.cm-full-menu {
  height: 0;
  overflow: hidden;
}
#clean-menu-full_stacks_in_29998.cm-full-menu.clean-menu-active {
  height: auto;
}



#clean-menu-full_stacks_in_29998.cm-full-menu.clean-menu-active ul {
  pointer-events: all;
  opacity: 1;
}
#clean-menu-full_stacks_in_29998 ul {
  opacity: 0;
  pointer-events: none;
  z-index: 0;
  -webkit-transition: opacity 450ms ease;
  transition: opacity 450ms ease;
}
#clean-menu-full_stacks_in_29998.clean-menu-active ul {
  opacity: 1;
  pointer-events: all;
}
.cm-toggle {
  width: 30px;
  height: 28px;
  position: relative;
  margin: 0px;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: .5s ease-in-out;
  -moz-transition: .5s ease-in-out;
  -o-transition: .5s ease-in-out;
  transition: .5s ease-in-out;
  cursor: pointer;
}
.cm-toggle span {
  display: block;
  position: absolute;
  height: 5px;
  width: 100%;
  background: #333;
  border-radius: 4px;
  opacity: 1;
  left: 0;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: .25s ease-in-out;
  -moz-transition: .25s ease-in-out;
  -o-transition: .25s ease-in-out;
  transition: .25s ease-in-out;
}
.cm-toggle span:nth-child(1) {
  top: 0px;
}
.cm-toggle span:nth-child(2),.cm-toggle span:nth-child(3) {
  top: 10px;
}
.cm-toggle span:nth-child(4) {
  top: 20px;
}
.cm-toggle.open span:nth-child(1) {
  opacity: 0;
}
.cm-toggle.open span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}
.cm-toggle.open span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.cm-toggle.open span:nth-child(4) {
  opacity: 0;
}



#clean-menu_stacks_in_29998 {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
#clean-menu_stacks_in_29998 > div {
  align-self: center;
}
#clean-menu_stacks_in_29998 .clean-menu-full .cm-menu-toggle {
  width: 30px;
  height: 25px;
  box-sizing: border-box;
  padding: 0;
/*  border: 1px solid #000;*/
  border-radius: 3px;
  cursor: pointer;
}
#clean-menu_stacks_in_29998 > div {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  margin: 10px 0;
  flex-grow: 1;
  transition: margin 300ms ease;
}
#clean-menu_stacks_in_29998 .clean-menu-logo {
  max-width: 220px;
  min-width: 220px;
  margin: 0;
}
#clean-menu_stacks_in_29998 .clean-menu-logo .cm-logo-wrap {
  max-width: 220px;
  min-width: 220px;
  -webkit-box-flex: none;
  -ms-flex: none;
  flex: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  justify-content: center;
}
#clean-menu_stacks_in_29998 .clean-menu-logo a {
  text-decoration: none;
  display: block;
}
/*
div[tag="slice"] > .mez > #stacks_in_29998.com_onelittledesigner_stacks_Clean_Menu_stack > .clean-menu .clean-menu-logo {
  width: 300px; max-width: 300px;
}
*/
#clean-menu_stacks_in_29998 .clean-menu-logo > div > div {
  align-self: center;
}
#clean-menu_stacks_in_29998 .clean-menu-logo .cm-logo-left {
  max-width: 73px;
  
  
  max-width: 9999px;
  
  margin: 10px 0;
}
div[tag="slice"] > .mez > #stacks_in_29998.com_onelittledesigner_stacks_Clean_Menu_stack > .clean-menu .clean-menu-logo .cm-logo-left  {
  max-width: 128px;
  
  max-width: 9999px;
  
}
#clean-menu_stacks_in_29998 .clean-menu-logo .cm-logo-right {
  
  display: none;
  
  margin: 10px 0;
}
#clean-menu_stacks_in_29998 .clean-menu-top-level ul {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: flex-end;
  
  
  display: -ms-flexbox;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-direction: row;
  
  -ms-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  list-style: none;
  padding: 0;
  text-decoration: none;
}
#clean-menu_stacks_in_29998 .clean-menu-top-level ul > div {
  display: none;
}
#clean-menu_stacks_in_29998 .clean-menu-top-level ul ul {
  display: none;
}
#clean-menu_stacks_in_29998 .clean-menu-top-level ul li {
  margin: 0 15px;
  align-self: center;
  line-height: 1;
}
#clean-menu_stacks_in_29998 .clean-menu-top-level ul li:first-child {
  margin-left: 0;
}
#clean-menu_stacks_in_29998 .clean-menu-top-level ul li:last-child {
  margin-right: 0;
}
#clean-menu_stacks_in_29998 .clean-menu-top-level ul li:last-child.cm-group-True {
  margin: 0;
}


div[tag="slice"] > .mez > #stacks_in_29998.com_onelittledesigner_stacks_Clean_Menu_stack > .clean-menu .clean-menu-top-level ul li {
  margin: 0 0 0 15px;
}
#clean-menu_stacks_in_29998 .clean-menu-top-level ul li > a,
#clean-menu_stacks_in_29998 .clean-menu-top-level ul li > a:visited {
  transition: color 150ms ease;
  text-decoration: none;
  color: rgba(21, 47, 103, 1.00);
  font-size: 18px;
  
  font-weight: bold;
  
  line-height: 25px;
  align-items: center;
  padding: 0;
  display: -ms-flexbox;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  white-space: nowrap;
}
#clean-menu-full_stacks_in_29998.cm-full-menu ul li > a {
  font-size: 18px;
}
#clean-menu_stacks_in_29998 .clean-menu-top-level ul li > a,
#clean-menu-full_stacks_in_29998.cm-full-menu ul li > a {
  font-family: inherit;
}
#clean-menu-full_stacks_in_29998.cm-full-menu > ul > li > a {
  
  font-weight: bold;
  
}
#clean-menu_stacks_in_29998 .clean-menu-top-level ul li > a svg,
#clean-menu-full_stacks_in_29998.cm-full-menu ul li > a svg,
#clean-menu_stacks_in_29998 .clean-menu-top-level > ul > li > ul li > a svg {
  fill: rgba(21, 47, 103, 1.00);
  align-self: center;
  vertical-align: middle;
}
#clean-menu-full_stacks_in_29998.cm-full-menu ul li > a,
#clean-menu_stacks_in_29998 .clean-menu-top-level > ul > li > ul li > a{
  transition: color 150ms ease;
}
#clean-menu_stacks_in_29998 .clean-menu-top-level ul li.cm-grouped-item,
#clean-menu-full_stacks_in_29998.cm-full-menu ul li.cm-grouped-item,
#clean-menu_stacks_in_29998 .clean-menu-top-level > ul > li > ul li.cm-grouped-item {
  white-space: nowrap;
  display: flex;
  align-items: center;
}
#clean-menu-full_stacks_in_29998.cm-full-menu ul li.cm-grouped-item,
#clean-menu_stacks_in_29998 .clean-menu-top-level > ul > li > ul li.cm-grouped-item {
  padding: 5px 20px;
}
#clean-menu_stacks_in_29998 .clean-menu-top-level ul li.cm-grouped-item > a,
#clean-menu-full_stacks_in_29998.cm-full-menu ul li.cm-grouped-item > a {
  display: inline-block;
  margin-left: 8px;
}
#clean-menu_stacks_in_29998 .clean-menu-top-level ul li.cm-grouped-item > a {
  padding: 0;
}
#clean-menu_stacks_in_29998 .clean-menu-top-level ul li.cm-grouped-item > a:first-child,
#clean-menu-full_stacks_in_29998.cm-full-menu ul li.cm-grouped-item > a:first-child {
  margin-left: 0px;
}
#clean-menu-full_stacks_in_29998.cm-full-menu ul li.cm-grouped-item > a {
  padding: 4px 30px 4px 0;
}
#clean-menu_stacks_in_29998 .clean-menu-top-level ul li > a ion-icon, #clean-menu_stacks_in_29998 .clean-menu-top-level ul li > a i,
#clean-menu-full_stacks_in_29998.cm-full-menu ul li > a ion-icon, #clean-menu-full_stacks_in_29998.cm-full-menu ul li > a i {
  font-size: 25px;
  line-height: 25px;
  
  font-size: 18px;
  line-height: 18px;
  

}
#stacks_in_29998 li > a svg,
#clean-menu_stacks_in_29998 .clean-menu-top-level ul li > a svg,
#clean-menu-full_stacks_in_29998.cm-full-menu ul li > a svg,
#clean-menu_stacks_in_29998 .clean-menu-top-level > ul > li > ul li > a svg {
  
  width: 18px;
  height: 18px;
  
}

#clean-menu_stacks_in_29998 .clean-menu-top-level ul li > a:hover {
  transition: color 150ms ease;
  text-decoration: none;
  color: rgba(213, 0, 0, 1.00);
}
#clean-menu_stacks_in_29998 .clean-menu-top-level ul li > a:hover svg,
#clean-menu-full_stacks_in_29998.cm-full-menu ul li > a:hover svg {
  fill: rgba(213, 0, 0, 1.00);
}
#clean-menu_stacks_in_29998 .clean-menu-top-level ul li > a.cm-heading {
  pointer-events: none;
}
#clean-menu_stacks_in_29998 .clean-menu-top-level ul li.cm-current > a {
  transition: color 150ms ease;
  text-decoration: none;
  color: rgba(205, 41, 27, 1.00);
}
#clean-menu_stacks_in_29998 .clean-menu-top-level ul li.cm-current > a svg,
#clean-menu-full_stacks_in_29998.cm-full-menu ul li.cm-current > a svg {
  fill: rgba(205, 41, 27, 1.00);
}
#clean-menu_stacks_in_29998 .cm-toggle span {
  background: #CD291B;
}
#clean-menu_stacks_in_29998 h1, #clean-menu_stacks_in_29998 h2, #clean-menu_stacks_in_29998 h3, #clean-menu_stacks_in_29998 h4, #clean-menu_stacks_in_29998 h5, #clean-menu_stacks_in_29998 h6, #clean-menu_stacks_in_29998 .layouts-text, #clean-menu_stacks_in_29998 p {
  color: rgba(0, 0, 0, 0.60);
  font-size: inherit;
  margin: 0;
}
#clean-menu-full_stacks_in_29998.cm-full-menu,
#clean-menu_stacks_in_29998 .clean-menu-top-level > ul > li > ul {
  background: rgba(10, 33, 88, 1.00);
}
#clean-menu-full_stacks_in_29998.cm-full-menu > ul > li,
#clean-menu_stacks_in_29998 .clean-menu-top-level > ul > li > ul > li {
  border-bottom: 1px solid rgba(255,255,255,0.15)
}
#clean-menu-full_stacks_in_29998.cm-full-menu > ul > li:last-child,
#clean-menu_stacks_in_29998 .clean-menu-top-level > ul > li > ul > li:last-child {
  border-bottom: 0px solid transparent;
}
#clean-menu-full_stacks_in_29998.cm-full-menu ul li > a,
#clean-menu-full_stacks_in_29998.cm-full-menu ul li > a:visited,
#clean-menu-full_stacks_in_29998.cm-full-menu ul li > a svg,
#clean-menu_stacks_in_29998 .clean-menu-top-level > ul > li > ul li > a,
#clean-menu_stacks_in_29998 .clean-menu-top-level > ul > li > ul li > a:visited,
#clean-menu_stacks_in_29998 .clean-menu-top-level > ul > li > ul li > a svg,
#clean-menu-full_stacks_in_29998.cm-full-menu ul ul li:before {
  color: rgba(255, 255, 255, 1.00);
  fill: rgba(255, 255, 255, 1.00);
}
#clean-menu-full_stacks_in_29998.cm-full-menu ul li > a:hover,
#clean-menu_stacks_in_29998 .clean-menu-top-level > ul > li > ul li > a:hover,
#clean-menu_stacks_in_29998 .clean-menu-top-level > ul > li > ul li > a:hover svg {
  color: rgba(0, 0, 0, 0.20);
  fill:  rgba(0, 0, 0, 0.20);
}
/* #clean-menu-full_stacks_in_29998.cm-full-menu ul li > a.cm-heading:hover,
#clean-menu-full_stacks_in_29998.cm-full-menu ul li > a.cm-heading:hover svg,
#clean-menu_stacks_in_29998 .clean-menu-top-level > ul > li > ul li > a.cm-heading:hover {
  color: rgba(255, 255, 255, 1.00);
  cursor: default;
} */
#clean-menu-full_stacks_in_29998.cm-full-menu ul li.cm-current > a,
#clean-menu_stacks_in_29998 .clean-menu-top-level > ul > li > ul li.cm-current > a,
#clean-menu_stacks_in_29998 .clean-menu-top-level > ul > li > ul li.cm-current > a svg {
  color: rgba(207, 224, 39, 1.00);
  fill:  rgba(207, 224, 39, 1.00);
}
#clean-menu_stacks_in_29998 .clean-menu-top-level > ul > li > a.parent:after {
  border-color: rgba(21, 47, 103, 1.00);
}
#clean-menu_stacks_in_29998 .clean-menu-top-level > ul > li > a.parent:hover:after {
  border-color: rgba(213, 0, 0, 1.00);
}
/* #clean-menu_stacks_in_29998 .clean-menu-top-level > ul > li > a.cm-heading.parent:hover:after {
  border-color: rgba(21, 47, 103, 1.00);
} */
#clean-menu_stacks_in_29998 .clean-menu-top-level > ul > li > a.parent.cm-current:after {
  border-color: rgba(205, 41, 27, 1.00);
}
.disable-parents #clean-menu_stacks_in_29998 .clean-menu-top-level > ul > li > ul li > a.parent:hover:after,
.disable-parents #clean-menu_stacks_in_29998 .clean-menu-top-level > ul > li > ul li > a.parent:hover,
#clean-menu-full_stacks_in_29998.cm-full-menu.disable-parents  ul li > a.parent:hover {
  color: rgba(255, 255, 255, 1.00);
  border-color: rgba(255, 255, 255, 1.00);
}
.disable-parents #clean-menu_stacks_in_29998 .clean-menu-top-level ul li > a.parent:hover,
.disable-parents #clean-menu_stacks_in_29998 .clean-menu-top-level ul li > a.parent:hover:after {
  color: rgba(21, 47, 103, 1.00);
  border-color: rgba(21, 47, 103, 1.00);
}










.cm-sticky-wrap_stacks_in_29998 {
  transition: background 300ms ease;
  background: transparent;
}
.cm-sticky-wrap_stacks_in_29998.cm-sticky {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: rgba(255, 255, 255, 1.00);
}
.cm-sticky-wrap_stacks_in_29998.cm-sticky > #clean-menu-full_stacks_in_29998.cm-full-menu {
  z-index: 9999;
}
.cm-sticky-wrap_stacks_in_29998.cm-sticky #clean-menu_stacks_in_29998.clean-menu {
  max-width: 1320px;
  box-sizing: border-box;
  padding: 0px 20px;
  
  margin: 0 auto;
  
}



@media all and (min-width: 771px) {
  body:not(.cm-mobile-example) #clean-menu-full_stacks_in_29998.cm-full-menu ul li {
    border-width: 0;
  }
  body:not(.cm-mobile-example) #clean-menu-full_stacks_in_29998 {
    padding: 10px 0px;
  }
  body:not(.cm-mobile-example) #clean-menu-full_stacks_in_29998.cm-full-menu ul li.cm-hide-dropdown-menu,
  body:not(.cm-mobile-example) #clean-menu_stacks_in_29998 ul li.cm-hide-menu {
    display: none;
  }
  
  #clean-menu_stacks_in_29998 .clean-menu-top-level > ul > li > ul.cm-wide {
    display: grid;
  }
  #clean-menu_stacks_in_29998 .clean-menu-top-level > ul > li > ul.cm-wide > li {
    text-align: left;
    align-self: flex-start;
  }
}

@media all and (max-width: 770px) {
  
  #clean-menu_stacks_in_29998.clean-menu {
    flex-wrap: wrap-reverse;
  }
  #clean-menu_stacks_in_29998 > div  {
    
    
  }
  
  #clean-menu_stacks_in_29998.clean-menu {
    gap: 0 16px;
  }
  #clean-menu-full_stacks_in_29998 {
    min-width: 300px;
  }
  #clean-menu_stacks_in_29998 .clean-menu-full {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    margin: 10px 0;
  }
  #clean-menu_stacks_in_29998 > div:last-child {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
  }
  #clean-menu_stacks_in_29998 .clean-menu-full .cm-menu-toggle {
    display: block;
  }
  #clean-menu_stacks_in_29998 .clean-menu-top-level {
    display: none;
  }
  
  
  #clean-menu-full_stacks_in_29998.cm-full-menu ul li {
    display: block;
  }
  #clean-menu-full_stacks_in_29998.cm-full-menu ul {
    padding: 12px 0px;
  }
  #clean-menu-full_stacks_in_29998.cm-full-menu ul > li > .cm-custom-content {
    padding: 4px 24px 4px 24px;
  }
  #clean-menu-full_stacks_in_29998.cm-full-menu ul ul > li > .cm-custom-content {
    padding: 4px 24px 4px 34px;
  }
  #clean-menu-full_stacks_in_29998.cm-full-menu ul > li.cm-grouped-item > .cm-custom-content  {
    padding: 4px 24px 4px 0px;
  }
  #clean-menu-full_stacks_in_29998.cm-full-menu ul li.cm-grouped-item{
    padding: 4px 24px;
  }
  #clean-menu-full_stacks_in_29998.cm-full-menu ul li > a {
    font-size: calc(18px + 2 );
    line-height: calc(18px + 2 );
    padding: 12px 24px;
    width: 100%;
    box-sizing: border-box;
  }
  #clean-menu-full_stacks_in_29998.cm-full-menu ul ul > li > a {
    padding: 12px 24px;
    width: 100%;
    box-sizing: border-box;
  }
  #clean-menu-full_stacks_in_29998.cm-full-menu ul li.cm-grouped-item > a {
    width: auto;
  }
  #clean-menu-full_stacks_in_29998.cm-full-menu {
    -webkit-transform: translate(0, 50px);
    transform: translate(0, 50px);
  }
  #clean-menu-full_stacks_in_29998.cm-full-menu.clean-menu-active {
    -webkit-transform: translate(0px, 5px);
    transform: translate(0px, 5px);
  }
  #clean-menu-full_stacks_in_29998.cm-full-menu ul li.cm-grouped-item > a {
    padding: 8px 30px 8px 0;
  }
}






.cm-mobile-example #clean-menu-full_stacks_in_29998 {
  min-width: 300px;
}
.cm-mobile-example #clean-menu_stacks_in_29998 .clean-menu-full {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
.cm-mobile-example #clean-menu_stacks_in_29998 > div:last-child {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
.cm-mobile-example #clean-menu_stacks_in_29998 .clean-menu-full .cm-menu-toggle {
  display: block;
}
.cm-mobile-example #clean-menu_stacks_in_29998 .clean-menu-top-level {
  display: none;
}
.cm-mobile-example #clean-menu-full_stacks_in_29998.cm-full-menu ul li {
  display: block;
}
.cm-mobile-example #clean-menu-full_stacks_in_29998.cm-full-menu ul li > a {
  padding: 10px 20px;
  width: 100%;
  box-sizing: border-box;
}
.cm-mobile-example #clean-menu-full_stacks_in_29998.cm-full-menu ul ul > li > a {
  padding: 10px 20px;
  width: 100%;
  box-sizing: border-box;
}
.cm-mobile-example #clean-menu-full_stacks_in_29998.cm-full-menu ul li.cm-grouped-item > a {
  width: auto;
}
.cm-mobile-example #clean-menu-full_stacks_in_29998.cm-full-menu {
  -webkit-transform: translate(0, 50px);
  transform: translate(0, 50px);
}
.cm-mobile-example #clean-menu-full_stacks_in_29998.cm-full-menu.clean-menu-active {
  -webkit-transform: translate(0px, 5px);
  transform: translate(0px, 5px);
}
.cm-mobile-example #clean-menu-full_stacks_in_29998.cm-full-menu ul li.cm-grouped-item > a {
  padding: 8px 30px 8px 0;
}









#clean-menu_stacks_in_29998 .clean-menu-top-level ul li.cm-current > a {
  
}






.clean-menu-top-level #cta_stacks_in_30275.clean-menu-cta.clean-menu-cta-style a {
  transition: all 150ms ease;
  color: rgba(255, 255, 255, 1.00);
  background-color: rgba(205, 41, 27, 1.00);
  border: 1px solid rgba(34, 34, 34, 0.00);
  border-radius: 4px;
  padding: 6px 12px;
}
.clean-menu-top-level #cta_stacks_in_30275.clean-menu-cta.clean-menu-cta-style.cm-grouped-item > a {
  padding: 0;
}
.clean-menu-top-level #cta_stacks_in_30275.clean-menu-cta.clean-menu-cta-style a svg {
  fill: rgba(255, 255, 255, 1.00);
}
.clean-menu-top-level #cta_stacks_in_30275.clean-menu-cta.clean-menu-cta-style a:hover,
.clean-menu-top-level #cta_stacks_in_30275.clean-menu-cta.clean-menu-cta-style.current a {
  color: rgba(255, 255, 255, 1.00);
  background-color: rgba(21, 47, 103, 1.00);
  border: 1px solid rgba(34, 34, 34, 0.00);
}
.clean-menu-top-level #cta_stacks_in_30275.clean-menu-cta.clean-menu-cta-style a:hover svg,
.clean-menu-top-level #cta_stacks_in_30275.clean-menu-cta.clean-menu-cta-style.current a svg {
  fill: rgba(255, 255, 255, 1.00);
}
.clean-menu-top-level #cta_stacks_in_30275.clean-menu-cta {
  margin: 0 9px;
}
.clean-menu-top-level #cta_stacks_in_30275.clean-menu-cta.clean-menu-cta-style a:hover {

}
.clean-menu-top-level #cta_stacks_in_30275.clean-menu-cta.clean-menu-cta-style a:active {
  transform: translate(0,1px);
}
.cm-full-menu #cta_stacks_in_30275.clean-menu-cta.clean-menu-cta-style {
  padding: 10px 18px 10px 18px;
}
.cm-full-menu #cta_stacks_in_30275.clean-menu-cta.clean-menu-cta-style a {
  transition: all 150ms ease;
  color: rgba(255, 255, 255, 1.00);
  background-color: rgba(205, 41, 27, 1.00);
  border: 1px solid rgba(34, 34, 34, 0.00);
  border-radius: 4px;
  display: block;
  text-align: center;
  padding: 6px 12px;
}
.cm-vert-bottom > .clean-menu-top-level > ul:has(> #cta_stacks_in_30275) {
  margin-bottom: -6px;
}
.cm-full-menu #cta_stacks_in_30275.clean-menu-cta.clean-menu-cta-style.cm-grouped-item > a {
  display: inline-block;
}
.cm-full-menu #cta_stacks_in_30275.clean-menu-cta.clean-menu-cta-style a svg {
  fill: rgba(255, 255, 255, 1.00);
}
.cm-full-menu #cta_stacks_in_30275.clean-menu-cta.clean-menu-cta-style a:hover,
.cm-full-menu #cta_stacks_in_30275.clean-menu-cta.clean-menu-cta-style.current a {
  color: rgba(255, 255, 255, 1.00);
  background-color: rgba(21, 47, 103, 1.00);
  border: 1px solid rgba(34, 34, 34, 0.00);
}
.cm-full-menu #cta_stacks_in_30275.clean-menu-cta.clean-menu-cta-style a:hover svg,
.cm-full-menu #cta_stacks_in_30275.clean-menu-cta.clean-menu-cta-style a.current a svg {
  fill: rgba(255, 255, 255, 1.00);
}
.cm-full-menu #cta_stacks_in_30275.clean-menu-cta.clean-menu-cta-style a:hover {

}
.cm-full-menu #cta_stacks_in_30275.clean-menu-cta.clean-menu-cta-style a:active {
  transform: translate(0,1px);
}


#stacks_in_30013.vast_video_wrapper,#stacks_in_30013.vast_video_wrapper strong,#stacks_in_30013.vast_video_wrapper b,#stacks_in_30013.vast_video_wrapper h1,#stacks_in_30013.vast_video_wrapper h2,#stacks_in_30013.vast_video_wrapper h3,#stacks_in_30013.vast_video_wrapper h4,#stacks_in_30013.vast_video_wrapper h5,#stacks_in_30013.vast_video_wrapper h6{color:rgba(255, 255, 255, 1.00)}#stacks_in_30013 .vast_video_player,#stacks_in_30013.vast_video_wrapper .vast_video_background{filter:blur(0px)}#stacks_in_30013 .vast_video_tint,#stacks_in_30013 .vast_video_player,#stacks_in_30013.vast_video_wrapper,#stacks_in_30013.vast_video_wrapper:before{border-radius:0px}#stacks_in_30013.vast_video_wrapper a{color:rgba(52, 188, 255, 1.00)}#stacks_in_30013.vast_video_wrapper a:hover{color:rgba(95, 211, 255, 1.00)}#stacks_in_30013 .vast_video_tint{background:rgba(0, 0, 0, 0.00)}#stacks_in_30013 .vast_video_slice{min-height:100vh;max-width:550px}#stacks_in_30013 .vast_video_player{opacity:1;width:100% !important;height:100%;max-height:100%;min-height:100%;position:absolute;display:block;font-family:"object-fit:cover";max-width:none;object-fit:cover;transition:opacity 500ms;transform:scale(1.05);}#stacks_in_30013 .vast_video_slice{flex-direction:column}
#stacks_in_30017.vast_video_wrapper,#stacks_in_30017.vast_video_wrapper strong,#stacks_in_30017.vast_video_wrapper b,#stacks_in_30017.vast_video_wrapper h1,#stacks_in_30017.vast_video_wrapper h2,#stacks_in_30017.vast_video_wrapper h3,#stacks_in_30017.vast_video_wrapper h4,#stacks_in_30017.vast_video_wrapper h5,#stacks_in_30017.vast_video_wrapper h6{color:rgba(255, 255, 255, 1.00)}#stacks_in_30017 .vast_video_player,#stacks_in_30017.vast_video_wrapper .vast_video_background{filter:blur(0px)}#stacks_in_30017 .vast_video_tint,#stacks_in_30017 .vast_video_player,#stacks_in_30017.vast_video_wrapper,#stacks_in_30017.vast_video_wrapper:before{border-radius:0px}#stacks_in_30017.vast_video_wrapper a{color:rgba(52, 188, 255, 1.00)}#stacks_in_30017.vast_video_wrapper a:hover{color:rgba(95, 211, 255, 1.00)}#stacks_in_30017 .vast_video_tint{background:rgba(0, 0, 0, 0.00)}#stacks_in_30017 .vast_video_slice{min-height:100vh;max-width:550px}#stacks_in_30017 .vast_video_player{opacity:1;width:100% !important;height:100%;max-height:100%;min-height:100%;position:absolute;display:block;font-family:"object-fit:cover";max-width:none;object-fit:cover;transition:opacity 500ms;transform:scale(1.05);}#stacks_in_30017 .vast_video_slice{flex-direction:column}
 #stacks_in_30051 .shear-mag{position:absolute;top:0px}#stacks_in_30051 a.shear-mag.offset-override{top:0px!important} .mg-menu .mgicon-servicios{vertical-align:middle;font-size:1.60rem; padding-right:1.00rem;}    
/* 1.0.1
 - removed a bunch of API calls to try and help with load time in edit and preview modes
 - Added svg refresh to resolve display issues in safari and RW preview
 - added hardware acceleration to svg graphics to increase performance
 - fixed a bug that could cause the stack to load into the editor slowly
 1.0.2
 - hotfix, editmode display bug
 1.0.5
 - Added Experimental responsive defintion feature
*/

.svg-metamorph.svgm_stacks_in_30033 .svgm-group {
    display: none;
}
.svg-metamorph.svgm_stacks_in_30033 .svgm-group.svgm-wide-1,
.svg-metamorph.svgm_stacks_in_30033 .svgm-group.svgm-pattern-6,
.svg-metamorph.svgm_stacks_in_30033 .svgm-group.svgm-special-23 {
    display: block;
}
.svg-metamorph.svgm_stacks_in_30033,
.svg-metamorph.svgm_stacks_in_30033 .svgm-content {
  position: relative;
  z-index: 1;
}
#stacks_in_30033, #stacks_out_30033 {
  overflow: visible;
}
.svg-metamorph.svgm_stacks_in_30033 {
  display: inline-block;
  width: calc(100% - 1px);
  position: relative;
  margin-top: -0px;
  margin-bottom: -0px;
  
  
  margin-bottom: calc(60px - 0px);
  
  
  
}

.svg-metamorph.svgm_stacks_in_30033 > .svgm-wrap-outer > .svgm-wrap {
  position: absolute;
  height: 100%;
  width: 100%;
  overflow: hidden;
}
.svg-metamorph.svgm_stacks_in_30033 > .svgm-wrap-outer > .svgm-wrap svg {
  width: 100%;
  height: calc(100% + 60px + 60px);
  stroke: none;
  fill: white;
}
.svg-metamorph.svgm_stacks_in_30033 > .svgm-wrap-outer > .svgm-wrap svg path.svgm-opacity {
  stroke: none;
  stroke-width: 0;
}
.svg-metamorph.svgm_stacks_in_30033 > .svgm-wrap-outer > .svgm-wrap.svgm-wrap-top {
  top: 0;
  z-index: 1;
  transform: translateY(-60px);
}
.svg-metamorph.svgm_stacks_in_30033 > .svgm-wrap-outer > .svgm-wrap.svgm-wrap-center {
  z-index: 2;
  height: calc(100% + 3px);
  /* top: -1.5px; */
}
.svg-metamorph.svgm_stacks_in_30033 > .svgm-wrap-outer > .svgm-wrap.svgm-wrap-bottom {
  bottom: 0;
  z-index: 0;
  transform: translateY(60px) rotateZ(180deg);
}
.svg-metamorph.svgm_stacks_in_30033 > .svgm-wrap-outer > .svgm-wrap.svgm-wrap-center svg {
  transform: translateY(-60px);
  /* margin-top: 1px; */
}
.svg-metamorph.svgm_stacks_in_30033 > .svgm-wrap-outer > .svgm-wrap > svg {
  width: 100%;
  overflow: visible;
}
.svg-metamorph.svgm_stacks_in_30033 > .svgm-wrap-outer > .svgm-wrap:after {
  background: #8F00AB;
}
.svg-metamorph.svgm_stacks_in_30033 .svgm-content {
  position: relative;
  z-index: 3;
  min-height: 60px;
  display: grid;
  align-items: center;
  
}


.svg-metamorph.svgm_stacks_in_30033 .svgm-content > div {
  
  
  padding: 64px 0px;
  
  
}
.svg-metamorph.svgm_stacks_in_30033 .svgm-mask {
  transform-origin: center;
}
.svg-metamorph.svgm_stacks_in_30033 > .svgm-wrap-outer {
  height: calc(100% - 0px - 0px );
  min-height: 60px;
  position: absolute;
  width: 100%;
  top: 0px;
  
  top: auto;
  bottom: 0px;
  
  transform: translateZ(0);
}


.svg-metamorph.svgm_stacks_in_30033 image:not(.svgm-pattern):not(.svgm-off) {
  transform-origin: center;
}
.svg-metamorph.svgm_stacks_in_30033 image.svgm-off {
  transform-origin: center;
}
.svg-metamorph.svgm_stacks_in_30033 .svgm-pattern {
  width: 100px;
  height: 100px;
}
.svg-metamorph.svgm_stacks_in_30033 .svgm-custom-pattern-1a {
  transform-origin: center;
  transform: translate(-358.000000px, 0);
}
.svg-metamorph.svgm_stacks_in_30033 .svgm-custom-pattern-1b {
  transform-origin: center;
  transform: translate(-362.000000px, 0);
}
.svg-metamorph.svgm_stacks_in_30033 .svgm-custom-pattern-2a {
  transform-origin: center;
  transform: translate(-358.000000px, 0) rotateY(180deg);
}
.svg-metamorph.svgm_stacks_in_30033 .svgm-custom-pattern-2b {
  transform-origin: center;
  transform: translate(-362.000000px, 0) rotateY(180deg);
}
.svg-metamorph.svgm_stacks_in_30033 .svgm-custom-pattern-3a {
  transform-origin: center;
  transform: translate(2518.000000px, 0);
}
.svg-metamorph.svgm_stacks_in_30033 .svgm-custom-pattern-3b {
  transform-origin: center;
  transform: translate(2522.000000px, 0);
}
.svg-metamorph.svgm_stacks_in_30033 .svgm-custom-pattern-opacity-1 {
  transform-origin: center;
  transform: translate(0, 38.000000px);
}
.svg-metamorph.svgm_stacks_in_30033 .svgm-custom-pattern-opacity-2 {
  transform-origin: center;
  transform: translate(0, 38.000000px) rotateY(180deg);
}
.svg-metamorph.svgm_stacks_in_30033 .svgm-use-r {
  transform: scale(-1,1);
  transform-origin: 960px 0;
}
.svg-metamorph.svgm_stacks_in_30033 .svgm-mask-top {
  transform: translate(0,4px) scaleX(1);
}
.svg-metamorph.svgm_stacks_in_30033 .svgm-mask-bottom {
  transform: translate(0,-1px) scaleX(1);
}

@media all and (max-width: 1920px) {
  .svg-metamorph.svgm_stacks_in_30033 .svgm-use {
    transform: scaleX(1);
    transform-origin: 960px bottom;
  }
  .svg-metamorph.svgm_stacks_in_30033 .svgm-use-r {
    transform: scaleX(1) rotateY(180deg);
    transform-origin: 960px 0;
  }
}
@media all and (max-width: 1680px) {
  .svg-metamorph.svgm_stacks_in_30033 .svgm-use {
    transform: scaleX(0.875);
    transform-origin: 960px bottom;
  }
  .svg-metamorph.svgm_stacks_in_30033 .svgm-use-r {
    transform: scaleX(0.875) rotateY(180deg);
    transform-origin: 960px 0;
  }
}
@media all and (max-width: 1440px) {
  .svg-metamorph.svgm_stacks_in_30033 .svgm-use {
    transform: scaleX(0.75);
    transform-origin: 960px bottom;
  }
  .svg-metamorph.svgm_stacks_in_30033 .svgm-use-r {
    transform: scaleX(0.75) rotateY(180deg);
    transform-origin: 960px 0;
  }
}
@media all and (max-width: 1280px) {
  .svg-metamorph.svgm_stacks_in_30033 .svgm-use {
    transform: scaleX(0.667);
    transform-origin: 960px bottom;
  }
  .svg-metamorph.svgm_stacks_in_30033 .svgm-use-r {
    transform: scaleX(0.667) rotateY(180deg);
    transform-origin: 960px 0;
  }
}
@media all and (max-width: 1152px) {
  .svg-metamorph.svgm_stacks_in_30033 .svgm-use {
    transform: scaleX(0.6);
    transform-origin: 960px bottom;
  }
  .svg-metamorph.svgm_stacks_in_30033 .svgm-use-r {
    transform: scaleX(0.6) rotateY(180deg);
    transform-origin: 960px 0;
  }
}
@media all and (min-width: 1921px) {
  .svg-metamorph.svgm_stacks_in_30033 .svgm-mask {
    transform: scaleX(1.34);
  }
  .svg-metamorph.svgm_stacks_in_30033 .svgm-mask-top {
    transform: translate(0,4px) scaleX(1.34);
  }
  .svg-metamorph.svgm_stacks_in_30033 .svgm-mask-bottom {
    transform: translate(0,-1px) scaleX(1.34);
  }
}
@media all and (min-width: 2561px) {
  .svg-metamorph.svgm_stacks_in_30033 .svgm-mask {
    transform: scaleX(1.67);
  }
  .svg-metamorph.svgm_stacks_in_30033 .svgm-mask-top {
    transform: translate(0,4px) scaleX(1.67);
  }
  .svg-metamorph.svgm_stacks_in_30033 .svgm-mask-bottom {
    transform: translate(0,-1px) scaleX(1.67);
  }
}
@media all and (min-width: 3201px) {
  .svg-metamorph.svgm_stacks_in_30033 .svgm-mask {
    transform: scaleX(2);
  }
  .svg-metamorph.svgm_stacks_in_30033 .svgm-mask-top {
    transform: translate(0,4px) scaleX(2);
  }
  .svg-metamorph.svgm_stacks_in_30033 .svgm-mask-bottom {
    transform: translate(0,-1px) scaleX(2);
  }
}


.svg-metamorph.svgm_stacks_in_30033 .svgm-opacity {
  display: none;
}
.svg-metamorph.svgm_stacks_in_30033 > .svgm-wrap-outer {
  opacity: 100%;
}



/**/
#stacks_in_30071 h1,#stacks_in_30071 .hTxt:not(.segment) div{font-size:3.00rem}@media all and (max-width:640px){#stacks_in_30071 h1,#stacks_in_30071 .hTxt:not(.segment) div{font-size:1.50rem}}@media only screen and (max-width:667px){#stacks_in_30071 h1,#stacks_in_30071 div{text-align:center !important}#stacks_out_30071{display:block !important}}#stacks_in_30071 h1,#stacks_in_30071 div{color:rgba(205, 41, 27, 1.00)}#stacks_in_30071 h1 a,#stacks_in_30071 div a{color:rgba(205, 41, 27, 1.00)}#stacks_in_30071 h1 a:hover,#stacks_in_30071 div a:hover{color:rgba(153, 30, 20, 1.00)}#stacks_in_30071 small,#stacks_in_30071 small div{color:rgba(111, 111, 111, 1.00)}#stacks_in_30071 .hTxt:not(.vault-font),.no-default:not(.custom-font) .hTxt:not(.vault-font){font-family:"Archivo Black",Sans-Serif;font-weight:400;font-style:normal}#stacks_in_30071 .hTxt.segment[data-seg="segment1"]{font-family:"Roboto ",Sans-Serif;font-weight:400;font-style:normal}#stacks_in_30071 .primary,#stacks_in_30071 .segment{display:inline-block}#stacks_in_30071 .primary.sub-title,#stacks_in_30071 .segment.sub-title{display:block}#stacks_in_30071 [data-seg="segment2"].last-title{display:block}#stacks_in_30071 .segment.no-shadow{text-shadow:none !important}#stacks_in_30071 .segment *{}#stacks_in_30071 .hTxt.primary{vertical-align:baseline}#stacks_in_30071 .segment[data-seg="segment1"]{font-size:100%;color:rgba(10, 33, 88, 1.00);padding:0px 0px 0px 13px;margin:0px 0px 0px 0px;vertical-align:baseline;}#stacks_in_30071 .segment[data-seg="segment1"] div{color:rgba(10, 33, 88, 1.00)}#stacks_in_30071 .segment[data-seg="segment1"] div.mez{font-size:100%}

#stacks_in_30235.hf-cards {
  padding: 64px 0;
  --hf-width: 320px;
  --hf-border-radius: 8px;
}
#stacks_in_30235.hf-cards,
#stacks_in_30235.hf-cards > [tag="node"] {
  /*  */
  /*  */
  justify-content: center;
  /*  */
  /*  */
  /*  */
  /*  */
  align-items: center;
  /*  */
  /*  */
  /*  */
  gap: 64px;
}
/*  */
/*  */
#stacks_in_30235.hf-cards:not(.hf-c) .hf-gfx {
  filter: url('#round-corners_stacks_in_30235');
}
#stacks_in_30235 .hf-grad:before {
  filter: url('#round-corners_stacks_in_30235');
}
/*  */
/**/
.hf-cards #hf_stacks_in_30236 {
  --hf-bdrSize: 4px;
	--hf-lyrSize: 16px;
  --hf-lyrOffset: 16px;

  --hf-innerPaddingY: 0px;
  --hf-innerPaddingX: 0px;
  --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_30236.hf2-split .hf-card-header > div {
  
  
}
#hf_stacks_in_30236.hf-split .hf-card-footer > div {
  
  
}
#hf_stacks_in_30236.hf-v.hf2-split .hf-card-header > 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_30236.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_30236.hf-v.hf2-split .hf-card-content-inner > .hf-grad {
  padding-top: calc(96px/2 - var(--hf-bdrSize));
}
#hf_stacks_in_30236.hf-v.hf-split .hf-card-content-inner > .hf-grad {
  padding-bottom: calc(96px/2 - var(--hf-bdrSize));
}
#hf_stacks_in_30236 .hf-card-content-inner {
  
  border-color: #E7E7E7;
  
}
#hf_stacks_in_30236.hf-v .hf-top .hf-gfx-lyr1 div {
  background-color: #CD291B;
  
}
#hf_stacks_in_30236.hf-v .hf-top .hf-gfx-lyr2 div {
  background-color: #152F67;
  
}

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

#hf_stacks_in_30236.hf-v:not(.hf2-no-point) .hf-top .hf-gfx-bdr div,
#hf_stacks_in_30236.hf-v:not(.hf-no-point) .hf-bottom .hf-gfx-bdr div {
  
  
  background-color: #E7E7E7;
  
  
}
#hf_stacks_in_30236.hf-v.hf2-no-point .hf-top .hf-gfx-lyr1 div,
#hf_stacks_in_30236.hf-v .hf-bottom .hf-gfx-lyr1 div {
  background-color: #CD291B;
  
}
#hf_stacks_in_30236.hf-v.hf2-no-point .hf-top .hf-gfx-lyr2 div,
#hf_stacks_in_30236.hf-v .hf-bottom .hf-gfx-lyr2 div {
  background-color: #152F67;
  
}

#hf_stacks_in_30236.hf2-detached:not(.hf2-no-content) .hf-card-header > div {
  padding: 12px 24px;
}
#hf_stacks_in_30236.hf-detached:not(.hf-no-content) .hf-card-footer > div {
  padding: 12px 24px;
}
#hf_stacks_in_30236.hf2-detached:not(.hf2-no-content) .hf-card-header {
  padding-left: var(--hf-lyrOffset);
  padding-right: var(--hf-lyrOffset);
}
#hf_stacks_in_30236.hf-detached:not(.hf-no-content) .hf-card-footer {
  padding-left: var(--hf-lyrOffset);
  padding-right: var(--hf-lyrOffset);
}
#hf_stacks_in_30236.hf-v .hf-bottom .hf-gfx-lyr2,
#hf_stacks_in_30236.hf-v .hf-top .hf-gfx-lyr2 {
  left: calc(var(--hf-lyrOffset) * 2);
  right: calc(var(--hf-lyrOffset) * 2);
}
#hf_stacks_in_30236.hf-v.hf-angle-alt .hf-bottom .hf-gfx-lyr2,
#hf_stacks_in_30236.hf-v.hf2-angle-alt .hf-top .hf-gfx-lyr2 {
  left: var(--hf-lyrOffset);
  right: var(--hf-lyrOffset);
}
#hf_stacks_in_30236.hf-v .hf-bottom .hf-gfx-lyr1,
#hf_stacks_in_30236.hf-v .hf-top .hf-gfx-lyr1 {
  left: var(--hf-lyrOffset);
  right: var(--hf-lyrOffset);
}
/*  */
/*  */
/*  */
/*  */
/*  */


  #stacks_in_30246{text-align:center}          @media screen and (max-width:641px){#stacks_in_30246>.button.b-p.expand-mob:not(.icon-only),#stacks_in_30246>.dd-wrap>.button.b-p.expand-mob:not(.icon-only){width:100%!important}}@media screen and (min-width:641px){#stacks_in_30246 .button.b-p.expand-large:not(.icon-only),#stacks_in_30246>.dd-wrap>.button.b-p.expand-large:not(.icon-only){width:100%!important}}
   @media screen and (max-width:641px){#stacks_in_30246.bp-wrap{padding:20px 0px 0px 0px}}  @media screen and (min-width:641px){#stacks_in_30246.bp-wrap{padding:20px 0px 0px 0px}}         
  #stacks_in_30246 .button.b-p.custom{border:0px solid rgba(179, 179, 177, 1.00)}#stacks_in_30246 .button.b-p.custom:hover{border:0px solid rgba(179, 179, 177, 1.00)} #stacks_in_30246 .button.b-p{color:rgba(255, 255, 255, 1.00);background-color:rgba(205, 41, 27, 1.00)}#stacks_in_30246 .button.b-p:not(.d-hov){-webkit-transition:color 200ms ease,background-color 200ms ease,box-shadow 200ms ease,border 200ms ease;-webkit-transition:color 200ms ease,background-color 200ms ease,border 200ms ease,-webkit-box-shadow 200ms ease;transition:color 200ms ease,background-color 200ms ease,border 200ms ease,-webkit-box-shadow 200ms ease;transition:color 200ms ease,background-color 200ms ease,box-shadow 200ms ease,border 200ms ease;transition:color 200ms ease,background-color 200ms ease,box-shadow 200ms ease,border 200ms ease,-webkit-box-shadow 200ms ease}  #stacks_in_30246 .button.b-p:not(.bp-hover):hover{color:rgba(255, 255, 255, 0.90)!important; background-color:rgba(21, 47, 103, 1.00);}     
       
  #stacks_in_30246 .d-hov,#stacks_in_30246 .d-hov::before,#stacks_in_30246 .d-hov::after{-webkit-transition-duration:300ms;transition-duration:300ms}#stacks_in_30246 .d-hov.active,#stacks_in_30246 .d-hov.active::before,#stacks_in_30246 .d-hov.active::after{-webkit-transition-duration:0ms;transition-duration:0ms}#stacks_in_30246 .hover-col:not(.button.b-p):not(.bp-zone-item)::before{background:rgba(239, 181, 10, 1.00)!important}#stacks_in_30246 .hover-col::before,#stacks_in_30246 .hover-col::after{-webkit-transition-property:all;transition-property:all;-webkit-transition-duration:.3s;transition-duration:.3s;-webkit-transition-timing-function:ease-out;transition-timing-function:ease-out}#stacks_in_30246 .hover-col:hover::before{background:rgba(239, 181, 10, 1.00)}#stacks_in_30246 .hover-col.active::before{background:rgba(207, 0, 32, 1.00)}#stacks_in_30246 .d-hov-ripple-out:hover::before{border:rgba(239, 181, 10, 1.00) solid 2px}#stacks_in_30246 .d-hov-pop:hover,#stacks_in_30246 .d-hov-pop:focus,#stacks_in_30246 .d-hov-pop.active{-webkit-animation-duration:300ms;animation-duration:300ms}#stacks_in_30246 .d-hov[class*="d-hov-underline-"]::before,#stacks_in_30246 .d-hov[class*="d-hov-overline-"]::before{height:4px!important}#stacks_in_30246 .d-hov[class*="d-hov-text-underline-"]>.bp-text::before,#stacks_in_30246 .d-hov[class*="d-hov-text-underline-"] .ml-text::before{bottom:-6px;border-bottom-color:rgba(239, 181, 10, 1.00)!important;border-bottom-width:4px;-webkit-transition-duration:300ms;transition-duration:300ms}#stacks_in_30246 .d-hov[class*="d-hov-text-underline-"].active>.bp-text::before,#stacks_in_30246 .d-hov[class*="d-hov-text-underline-"].active .ml-text::before{-webkit-transition-duration:0ms;transition-duration:0ms;border-bottom-color:rgba(207, 0, 32, 1.00)!important}#stacks_in_30246 .d-hov-reveal:hover::before,#stacks_in_30246 .d-hov-reveal.active::before{border-width:4px!important} 
               
@important "partials/maps";
.animated {
  animation-duration: 1s;
  animation-fill-mode: both; }
  .animated.infinite {
    animation-iteration-count: infinite; }
  .animated.hinge {
    animation-duration: 2s; }
  .animated.flipOutX, .animated.flipOutY, .animated.bounceIn, .animated.bounceOut {
    animation-duration: .75s; }

@keyframes bounce {
  from, 20%, 53%, 80%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transform: translate3d(0, 0, 0); }
  40%, 43% {
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    transform: translate3d(0, -30px, 0); }
  70% {
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    transform: translate3d(0, -15px, 0); }
  90% {
    transform: translate3d(0, -4px, 0); } }

.bounce {
  animation-name: bounce;
  transform-origin: center bottom; }

@keyframes flash {
  from, 50%, to {
    opacity: 1; }
  25%, 75% {
    opacity: 0; } }

.flash {
  animation-name: flash; }

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */

@keyframes pulse {
  from {
    transform: scale3d(1, 1, 1); }
  50% {
    transform: scale3d(1.05, 1.05, 1.05); }
  to {
    transform: scale3d(1, 1, 1); } }

.pulse {
  animation-name: pulse; }

@keyframes rubberBand {
  from {
    transform: scale3d(1, 1, 1); }
  30% {
    transform: scale3d(1.25, 0.75, 1); }
  40% {
    transform: scale3d(0.75, 1.25, 1); }
  50% {
    transform: scale3d(1.15, 0.85, 1); }
  65% {
    transform: scale3d(0.95, 1.05, 1); }
  75% {
    transform: scale3d(1.05, 0.95, 1); }
  to {
    transform: scale3d(1, 1, 1); } }

.rubberBand {
  animation-name: rubberBand; }

@keyframes shake {
  from, to {
    transform: translate3d(0, 0, 0); }
  10%, 30%, 50%, 70%, 90% {
    transform: translate3d(-10px, 0, 0); }
  20%, 40%, 60%, 80% {
    transform: translate3d(10px, 0, 0); } }

.shake {
  animation-name: shake; }

@keyframes headShake {
  0% {
    transform: translateX(0); }
  6.5% {
    transform: translateX(-6px) rotateY(-9deg); }
  18.5% {
    transform: translateX(5px) rotateY(7deg); }
  31.5% {
    transform: translateX(-3px) rotateY(-5deg); }
  43.5% {
    transform: translateX(2px) rotateY(3deg); }
  50% {
    transform: translateX(0); } }

.headShake {
  animation-timing-function: ease-in-out;
  animation-name: headShake; }

@keyframes swing {
  20% {
    transform: rotate3d(0, 0, 1, 15deg); }
  40% {
    transform: rotate3d(0, 0, 1, -10deg); }
  60% {
    transform: rotate3d(0, 0, 1, 5deg); }
  80% {
    transform: rotate3d(0, 0, 1, -5deg); }
  to {
    transform: rotate3d(0, 0, 1, 0deg); } }

.swing {
  transform-origin: top center;
  animation-name: swing; }

@keyframes tada {
  from {
    transform: scale3d(1, 1, 1); }
  10%, 20% {
    transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg); }
  30%, 50%, 70%, 90% {
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg); }
  40%, 60%, 80% {
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg); }
  to {
    transform: scale3d(1, 1, 1); } }

.tada {
  animation-name: tada; }

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */

@keyframes wobble {
  from {
    transform: none; }
  15% {
    transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg); }
  30% {
    transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg); }
  45% {
    transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg); }
  60% {
    transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg); }
  75% {
    transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg); }
  to {
    transform: none; } }

.wobble {
  animation-name: wobble; }

@keyframes jello {
  from, 11.1%, to {
    transform: none; }
  22.2% {
    transform: skewX(-12.5deg) skewY(-12.5deg); }
  33.3% {
    transform: skewX(6.25deg) skewY(6.25deg); }
  44.4% {
    transform: skewX(-3.125deg) skewY(-3.125deg); }
  55.5% {
    transform: skewX(1.5625deg) skewY(1.5625deg); }
  66.6% {
    transform: skewX(-0.78125deg) skewY(-0.78125deg); }
  77.7% {
    transform: skewX(0.39063deg) skewY(0.39063deg); }
  88.8% {
    transform: skewX(-0.19531deg) skewY(-0.19531deg); } }

.jello {
  animation-name: jello;
  transform-origin: center; }

@keyframes bounceIn {
  from, 20%, 40%, 60%, 80%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  0% {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3); }
  20% {
    transform: scale3d(1.1, 1.1, 1.1); }
  40% {
    transform: scale3d(0.9, 0.9, 0.9); }
  60% {
    opacity: 1;
    transform: scale3d(1.03, 1.03, 1.03); }
  80% {
    transform: scale3d(0.97, 0.97, 0.97); }
  to {
    opacity: 1;
    transform: scale3d(1, 1, 1); } }

.bounceIn {
  animation-name: bounceIn; }

@keyframes bounceInDown {
  from, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  0% {
    opacity: 0;
    transform: translate3d(0, -3000px, 0); }
  60% {
    opacity: 1;
    transform: translate3d(0, 25px, 0); }
  75% {
    transform: translate3d(0, -10px, 0); }
  90% {
    transform: translate3d(0, 5px, 0); }
  to {
    transform: none; } }

.bounceInDown {
  animation-name: bounceInDown; }

@keyframes bounceInLeft {
  from, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  0% {
    opacity: 0;
    transform: translate3d(-3000px, 0, 0); }
  60% {
    opacity: 1;
    transform: translate3d(25px, 0, 0); }
  75% {
    transform: translate3d(-10px, 0, 0); }
  90% {
    transform: translate3d(5px, 0, 0); }
  to {
    transform: none; } }

.bounceInLeft {
  animation-name: bounceInLeft; }

@keyframes bounceInRight {
  from, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  from {
    opacity: 0;
    transform: translate3d(3000px, 0, 0); }
  60% {
    opacity: 1;
    transform: translate3d(-25px, 0, 0); }
  75% {
    transform: translate3d(10px, 0, 0); }
  90% {
    transform: translate3d(-5px, 0, 0); }
  to {
    transform: none; } }

.bounceInRight {
  animation-name: bounceInRight; }

@keyframes bounceInUp {
  from, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  from {
    opacity: 0;
    transform: translate3d(0, 3000px, 0); }
  60% {
    opacity: 1;
    transform: translate3d(0, -20px, 0); }
  75% {
    transform: translate3d(0, 10px, 0); }
  90% {
    transform: translate3d(0, -5px, 0); }
  to {
    transform: translate3d(0, 0, 0); } }

.bounceInUp {
  animation-name: bounceInUp; }

@keyframes bounceOut {
  20% {
    transform: scale3d(0.9, 0.9, 0.9); }
  50%, 55% {
    opacity: 1;
    transform: scale3d(1.1, 1.1, 1.1); }
  to {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3); } }

.bounceOut {
  animation-name: bounceOut; }

@keyframes bounceOutDown {
  20% {
    transform: translate3d(0, 10px, 0); }
  40%, 45% {
    opacity: 1;
    transform: translate3d(0, -20px, 0); }
  to {
    opacity: 0;
    transform: translate3d(0, 2000px, 0); } }

.bounceOutDown {
  animation-name: bounceOutDown; }

@keyframes bounceOutLeft {
  20% {
    opacity: 1;
    transform: translate3d(20px, 0, 0); }
  to {
    opacity: 0;
    transform: translate3d(-2000px, 0, 0); } }

.bounceOutLeft {
  animation-name: bounceOutLeft; }

@keyframes bounceOutRight {
  20% {
    opacity: 1;
    transform: translate3d(-20px, 0, 0); }
  to {
    opacity: 0;
    transform: translate3d(2000px, 0, 0); } }

.bounceOutRight {
  animation-name: bounceOutRight; }

@keyframes bounceOutUp {
  20% {
    transform: translate3d(0, -10px, 0); }
  40%, 45% {
    opacity: 1;
    transform: translate3d(0, 20px, 0); }
  to {
    opacity: 0;
    transform: translate3d(0, -2000px, 0); } }

.bounceOutUp {
  animation-name: bounceOutUp; }

@keyframes fadeIn {
  from {
    opacity: 0; }
  to {
    opacity: 1; } }

.fadeIn {
  animation-name: fadeIn; }

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translate3d(0, -100%, 0); }
  to {
    opacity: 1;
    transform: none; } }

.fadeInDown {
  animation-name: fadeInDown; }

@keyframes fadeInDownBig {
  from {
    opacity: 0;
    transform: translate3d(0, -2000px, 0); }
  to {
    opacity: 1;
    transform: none; } }

.fadeInDownBig {
  animation-name: fadeInDownBig; }

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translate3d(-100%, 0, 0); }
  to {
    opacity: 1;
    transform: none; } }

.fadeInLeft {
  animation-name: fadeInLeft; }

@keyframes fadeInLeftBig {
  from {
    opacity: 0;
    transform: translate3d(-2000px, 0, 0); }
  to {
    opacity: 1;
    transform: none; } }

.fadeInLeftBig {
  animation-name: fadeInLeftBig; }

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translate3d(100%, 0, 0); }
  to {
    opacity: 1;
    transform: none; } }

.fadeInRight {
  animation-name: fadeInRight; }

@keyframes fadeInRightBig {
  from {
    opacity: 0;
    transform: translate3d(2000px, 0, 0); }
  to {
    opacity: 1;
    transform: none; } }

.fadeInRightBig {
  animation-name: fadeInRightBig; }

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translate3d(0, 100%, 0); }
  to {
    opacity: 1;
    transform: none; } }

.fadeInUp {
  animation-name: fadeInUp; }

@keyframes fadeInUpBig {
  from {
    opacity: 0;
    transform: translate3d(0, 2000px, 0); }
  to {
    opacity: 1;
    transform: none; } }

.fadeInUpBig {
  animation-name: fadeInUpBig; }

@keyframes fadeOut {
  from {
    opacity: 1; }
  to {
    opacity: 0; } }

.fadeOut {
  animation-name: fadeOut; }

@keyframes fadeOutDown {
  from {
    opacity: 1; }
  to {
    opacity: 0;
    transform: translate3d(0, 100%, 0); } }

.fadeOutDown {
  animation-name: fadeOutDown; }

@keyframes fadeOutDownBig {
  from {
    opacity: 1; }
  to {
    opacity: 0;
    transform: translate3d(0, 2000px, 0); } }

.fadeOutDownBig {
  animation-name: fadeOutDownBig; }

@keyframes fadeOutLeft {
  from {
    opacity: 1; }
  to {
    opacity: 0;
    transform: translate3d(-100%, 0, 0); } }

.fadeOutLeft {
  animation-name: fadeOutLeft; }

@keyframes fadeOutLeftBig {
  from {
    opacity: 1; }
  to {
    opacity: 0;
    transform: translate3d(-2000px, 0, 0); } }

.fadeOutLeftBig {
  animation-name: fadeOutLeftBig; }

@keyframes fadeOutRight {
  from {
    opacity: 1; }
  to {
    opacity: 0;
    transform: translate3d(100%, 0, 0); } }

.fadeOutRight {
  animation-name: fadeOutRight; }

@keyframes fadeOutRightBig {
  from {
    opacity: 1; }
  to {
    opacity: 0;
    transform: translate3d(2000px, 0, 0); } }

.fadeOutRightBig {
  animation-name: fadeOutRightBig; }

@keyframes fadeOutUp {
  from {
    opacity: 1; }
  to {
    opacity: 0;
    transform: translate3d(0, -100%, 0); } }

.fadeOutUp {
  animation-name: fadeOutUp; }

@keyframes fadeOutUpBig {
  from {
    opacity: 1; }
  to {
    opacity: 0;
    transform: translate3d(0, -2000px, 0); } }

.fadeOutUpBig {
  animation-name: fadeOutUpBig; }

@keyframes flip {
  from {
    transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    animation-timing-function: ease-out; }
  40% {
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    animation-timing-function: ease-out; }
  50% {
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    animation-timing-function: ease-in; }
  80% {
    transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
    animation-timing-function: ease-in; }
  to {
    transform: perspective(400px);
    animation-timing-function: ease-in; } }

.animated.flip {
  -webkit-backface-visibility: visible;
  backface-visibility: visible;
  animation-name: flip; }

@keyframes flipInX {
  from {
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    animation-timing-function: ease-in;
    opacity: 0; }
  40% {
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    animation-timing-function: ease-in; }
  60% {
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1; }
  80% {
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg); }
  to {
    transform: perspective(400px); } }

.flipInX {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  animation-name: flipInX; }

@keyframes flipInY {
  from {
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    animation-timing-function: ease-in;
    opacity: 0; }
  40% {
    transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    animation-timing-function: ease-in; }
  60% {
    transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    opacity: 1; }
  80% {
    transform: perspective(400px) rotate3d(0, 1, 0, -5deg); }
  to {
    transform: perspective(400px); } }

.flipInY {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  animation-name: flipInY; }

@keyframes flipOutX {
  from {
    transform: perspective(400px); }
  30% {
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    opacity: 1; }
  to {
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0; } }

.flipOutX {
  animation-name: flipOutX;
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important; }

@keyframes flipOutY {
  from {
    transform: perspective(400px); }
  30% {
    transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    opacity: 1; }
  to {
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    opacity: 0; } }

.flipOutY {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  animation-name: flipOutY; }

@keyframes lightSpeedIn {
  from {
    transform: translate3d(100%, 0, 0) skewX(-30deg);
    opacity: 0; }
  60% {
    transform: skewX(20deg);
    opacity: 1; }
  80% {
    transform: skewX(-5deg);
    opacity: 1; }
  to {
    transform: none;
    opacity: 1; } }

.lightSpeedIn {
  animation-name: lightSpeedIn;
  animation-timing-function: ease-out; }

@keyframes lightSpeedOut {
  from {
    opacity: 1; }
  to {
    transform: translate3d(100%, 0, 0) skewX(30deg);
    opacity: 0; } }

.lightSpeedOut {
  animation-name: lightSpeedOut;
  animation-timing-function: ease-in; }

@keyframes rotateIn {
  from {
    transform-origin: center;
    transform: rotate3d(0, 0, 1, -200deg);
    opacity: 0; }
  to {
    transform-origin: center;
    transform: none;
    opacity: 1; } }

.rotateIn {
  animation-name: rotateIn; }

@keyframes rotateInDownLeft {
  from {
    transform-origin: left bottom;
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0; }
  to {
    transform-origin: left bottom;
    transform: none;
    opacity: 1; } }

.rotateInDownLeft {
  animation-name: rotateInDownLeft; }

@keyframes rotateInDownRight {
  from {
    transform-origin: right bottom;
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0; }
  to {
    transform-origin: right bottom;
    transform: none;
    opacity: 1; } }

.rotateInDownRight {
  animation-name: rotateInDownRight; }

@keyframes rotateInUpLeft {
  from {
    transform-origin: left bottom;
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0; }
  to {
    transform-origin: left bottom;
    transform: none;
    opacity: 1; } }

.rotateInUpLeft {
  animation-name: rotateInUpLeft; }

@keyframes rotateInUpRight {
  from {
    transform-origin: right bottom;
    transform: rotate3d(0, 0, 1, -90deg);
    opacity: 0; }
  to {
    transform-origin: right bottom;
    transform: none;
    opacity: 1; } }

.rotateInUpRight {
  animation-name: rotateInUpRight; }

@keyframes rotateOut {
  from {
    transform-origin: center;
    opacity: 1; }
  to {
    transform-origin: center;
    transform: rotate3d(0, 0, 1, 200deg);
    opacity: 0; } }

.rotateOut {
  animation-name: rotateOut; }

@keyframes rotateOutDownLeft {
  from {
    transform-origin: left bottom;
    opacity: 1; }
  to {
    transform-origin: left bottom;
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0; } }

.rotateOutDownLeft {
  animation-name: rotateOutDownLeft; }

@keyframes rotateOutDownRight {
  from {
    transform-origin: right bottom;
    opacity: 1; }
  to {
    transform-origin: right bottom;
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0; } }

.rotateOutDownRight {
  animation-name: rotateOutDownRight; }

@keyframes rotateOutUpLeft {
  from {
    transform-origin: left bottom;
    opacity: 1; }
  to {
    transform-origin: left bottom;
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0; } }

.rotateOutUpLeft {
  animation-name: rotateOutUpLeft; }

@keyframes rotateOutUpRight {
  from {
    transform-origin: right bottom;
    opacity: 1; }
  to {
    transform-origin: right bottom;
    transform: rotate3d(0, 0, 1, 90deg);
    opacity: 0; } }

.rotateOutUpRight {
  animation-name: rotateOutUpRight; }

@keyframes hinge {
  0% {
    transform-origin: top left;
    animation-timing-function: ease-in-out; }
  20%, 60% {
    transform: rotate3d(0, 0, 1, 80deg);
    transform-origin: top left;
    animation-timing-function: ease-in-out; }
  40%, 80% {
    transform: rotate3d(0, 0, 1, 60deg);
    transform-origin: top left;
    animation-timing-function: ease-in-out;
    opacity: 1; }
  to {
    transform: translate3d(0, 700px, 0);
    opacity: 0; } }

.hinge {
  animation-name: hinge; }

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */

@keyframes rollIn {
  from {
    opacity: 0;
    transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg); }
  to {
    opacity: 1;
    transform: none; } }

.rollIn {
  animation-name: rollIn; }

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */

@keyframes rollOut {
  from {
    opacity: 1; }
  to {
    opacity: 0;
    transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg); } }

.rollOut {
  animation-name: rollOut; }

@keyframes zoomIn {
  from {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3); }
  50% {
    opacity: 1; } }

.zoomIn {
  animation-name: zoomIn; }

@keyframes zoomInDown {
  from {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  60% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); } }

.zoomInDown {
  animation-name: zoomInDown; }

@keyframes zoomInLeft {
  from {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  60% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); } }

.zoomInLeft {
  animation-name: zoomInLeft; }

@keyframes zoomInRight {
  from {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  60% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); } }

.zoomInRight {
  animation-name: zoomInRight; }

@keyframes zoomInUp {
  from {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  60% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); } }

.zoomInUp {
  animation-name: zoomInUp; }

@keyframes zoomOut {
  from {
    opacity: 1; }
  50% {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3); }
  to {
    opacity: 0; } }

.zoomOut {
  animation-name: zoomOut; }

@keyframes zoomOutDown {
  40% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  to {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    transform-origin: center bottom;
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); } }

.zoomOutDown {
  animation-name: zoomOutDown; }

@keyframes zoomOutLeft {
  40% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0); }
  to {
    opacity: 0;
    transform: scale(0.1) translate3d(-2000px, 0, 0);
    transform-origin: left center; } }

.zoomOutLeft {
  animation-name: zoomOutLeft; }

@keyframes zoomOutRight {
  40% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0); }
  to {
    opacity: 0;
    transform: scale(0.1) translate3d(2000px, 0, 0);
    transform-origin: right center; } }

.zoomOutRight {
  animation-name: zoomOutRight; }

@keyframes zoomOutUp {
  40% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  to {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    transform-origin: center bottom;
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); } }

.zoomOutUp {
  animation-name: zoomOutUp; }

@keyframes slideInDown {
  from {
    transform: translate3d(0, -100%, 0);
    visibility: visible; }
  to {
    transform: translate3d(0, 0, 0); } }

.slideInDown {
  animation-name: slideInDown; }

@keyframes slideInLeft {
  from {
    transform: translate3d(-100%, 0, 0);
    visibility: visible; }
  to {
    transform: translate3d(0, 0, 0); } }

.slideInLeft {
  animation-name: slideInLeft; }

@keyframes slideInRight {
  from {
    transform: translate3d(100%, 0, 0);
    visibility: visible; }
  to {
    transform: translate3d(0, 0, 0); } }

.slideInRight {
  animation-name: slideInRight; }

@keyframes slideInUp {
  from {
    transform: translate3d(0, 100%, 0);
    visibility: visible; }
  to {
    transform: translate3d(0, 0, 0); } }

.slideInUp {
  animation-name: slideInUp; }

@keyframes slideOutDown {
  from {
    transform: translate3d(0, 0, 0); }
  to {
    visibility: hidden;
    transform: translate3d(0, 100%, 0); } }

.slideOutDown {
  animation-name: slideOutDown; }

@keyframes slideOutLeft {
  from {
    transform: translate3d(0, 0, 0); }
  to {
    visibility: hidden;
    transform: translate3d(-100%, 0, 0); } }

.slideOutLeft {
  animation-name: slideOutLeft; }

@keyframes slideOutRight {
  from {
    transform: translate3d(0, 0, 0); }
  to {
    visibility: hidden;
    transform: translate3d(100%, 0, 0); } }

.slideOutRight {
  animation-name: slideOutRight; }

@keyframes slideOutUp {
  from {
    transform: translate3d(0, 0, 0); }
  to {
    visibility: hidden;
    transform: translate3d(0, -100%, 0); } }

.slideOutUp {
  animation-name: slideOutUp; }

#noticeContainer_stacks_in_30249 {
  /*  */
  display: block;
  position: relative; }
  #noticeContainer_stacks_in_30249 .clearfix:before {
    content: " ";
    display: table; }
  #noticeContainer_stacks_in_30249 .clearfix:after {
    content: " ";
    display: table;
    clear: both; }

#notice_stacks_in_30249 {
  /*  */
  /*  */
  opacity: 0;
  left: 0px;
  right: 0px;
  max-height: 100%;
  /*  */
  position: fixed;
  /*  */
  overflow-y: auto;
  visibility: hidden;
  /*  */
  z-index: 999999;
  /*  */
  max-width: 100%;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  bottom: 0px;
  /*  */
  /*  */
  /*  */
  /*  */
  margin-left: auto;
  margin-right: auto;
  /*  */
  /*  */
  /*  */
  /*  */
  background: rgba(21, 47, 103, 0.90);
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  font-family: "Nunito";
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  color: rgba(255, 255, 255, 1.00);
  border-radius: 0px 0px 0px 0px; }
  #notice_stacks_in_30249.show {
    opacity: 1;
    visibility: visible; }
  #notice_stacks_in_30249.hide {
    opacity: 0;
    visibility: hidden; }
  #notice_stacks_in_30249.cookie-hide {
    display: none; }

#notice_stacks_in_30249 .notice-inner-stacks {
  clear: both;
  margin: 0 auto;
  max-width: 960px;
  padding: 10px 10px 35px 10px; }

#notice_stacks_in_30249 .notice-inner {
  clear: both;
  margin: 0 auto;
  max-width: 960px;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
  padding: 10px 10px 35px 10px;
  /*  */
  /*  */
  text-align: center;
  /*  */
  /*  */
  /*  */
  display: -ms-flexbox;
  display: flex;
  /*  */
  /*  */ }
  #notice_stacks_in_30249 .notice-inner-text {
    -ms-flex: 0 1 auto;
        flex: 0 1 auto;
    max-width: 100%;
    font-size: 16px;
    line-height: 22px; }
  #notice_stacks_in_30249 .notice-inner-icon {
    /*  */
    /*  */
    /*  */
    -ms-flex-item-align: center;
        -ms-grid-row-align: center;
        align-self: center;
    /*  */
    /*  */
    -ms-flex: 0 1 auto;
        flex: 0 1 auto;
    color: rgba(255, 255, 255, 1.00);
    padding: 5px 20px 5px 10px; }
    #notice_stacks_in_30249 .notice-inner-icon i {
      font-size: 32px;
      vertical-align: middle; }

#notice_stacks_in_30249 .notice-close-btn {
  float: right;
  cursor: pointer;
  color: rgba(255, 255, 255, 1.00);
  padding: 10px 10px 0px 10px; }
  #notice_stacks_in_30249 .notice-close-btn i {
    cursor: pointer;
    vertical-align: middle; }

#notice_stacks_in_30249 .notice-action {
  height: 40px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  /*  */
  color: inherit;
  background: none;
  /*  */ }
  #notice_stacks_in_30249 .notice-action i {
    vertical-align: middle; }
  #notice_stacks_in_30249 .notice-action-close {
    border-style: solid;
    border-width: 1px 0 0 0;
    border-color: rgba(255, 255, 255, 0.30); }
    #notice_stacks_in_30249 .notice-action-close:hover {
      /*  */ }
  #notice_stacks_in_30249 .notice-action-custom {
    border-style: solid;
    border-width: 1px 0 0 1px;
    border-color: rgba(255, 255, 255, 0.30); }
    #notice_stacks_in_30249 .notice-action-custom:hover {
      /*  */ }
    #notice_stacks_in_30249 .notice-action-custom a {
      color: inherit;
      width: 100%;
      height: 100%;
      /*  */
      display: -ms-flexbox;
      display: flex;
      -ms-flex-align: center;
          align-items: center;
      text-decoration: none;
      -ms-flex-pack: center;
          justify-content: center;
      /*  */ }
  #notice_stacks_in_30249 .notice-action-btn {
    height: 100%;
    display: -ms-flexbox;
    display: flex;
    -ms-flex: 1 0 auto;
        flex: 1 0 auto;
    text-align: center;
    -ms-flex-align: center;
        align-items: center;
    box-sizing: border-box;
    -ms-flex-pack: center;
        justify-content: center; }
    #notice_stacks_in_30249 .notice-action-btn:hover {
      cursor: pointer; }

@media (max-width: 480px) {
  #notice_stacks_in_30249 .notice-action {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    height: 90px; }
    #notice_stacks_in_30249 .notice-action-custom {
      border-width: 1px 0 0 0; }
    #notice_stacks_in_30249 .notice-action div {
      height: 50%;
      width: 100%; } }

/*  */
@media all and (-ms-high-contrast: none) {
  #notice_stacks_in_30249 {
    width: 100%; }
    #notice_stacks_in_30249 *::-ms-backdrop, #notice_stacks_in_30249 #notice_stacks_in_30249 {
      width: 100%; } }

/*  */
#stacks_in_30254 h1,#stacks_in_30254 .hTxt:not(.segment) div{font-size:3.00rem}@media all and (max-width:640px){#stacks_in_30254 h1,#stacks_in_30254 .hTxt:not(.segment) div{font-size:1.50rem}}#stacks_in_30254 h1,#stacks_in_30254 div{color:rgba(205, 41, 27, 1.00)}#stacks_in_30254 h1 a,#stacks_in_30254 div a{color:rgba(205, 41, 27, 1.00)}#stacks_in_30254 h1 a:hover,#stacks_in_30254 div a:hover{color:rgba(153, 30, 20, 1.00)}#stacks_in_30254 small,#stacks_in_30254 small div{color:rgba(111, 111, 111, 1.00)}#stacks_in_30254 .hTxt:not(.vault-font),.no-default:not(.custom-font) .hTxt:not(.vault-font){font-family:"Archivo Black",Sans-Serif;font-weight:400;font-style:normal}#stacks_in_30254 .hTxt.segment[data-seg="segment1"]{font-family:"Roboto ",Sans-Serif;font-weight:400;font-style:normal}#stacks_in_30254 .primary,#stacks_in_30254 .segment{display:inline-block}#stacks_in_30254 .primary.sub-title,#stacks_in_30254 .segment.sub-title{display:block}#stacks_in_30254 [data-seg="segment2"].last-title{display:block}#stacks_in_30254 .segment.no-shadow{text-shadow:none !important}#stacks_in_30254 .segment *{}#stacks_in_30254 .hTxt.primary{vertical-align:baseline}#stacks_in_30254 .segment[data-seg="segment1"]{font-size:100%;color:rgba(10, 33, 88, 1.00);padding:0px 0px 0px 13px;margin:0px 0px 0px 0px;vertical-align:baseline;}#stacks_in_30254 .segment[data-seg="segment1"] div{color:rgba(10, 33, 88, 1.00)}#stacks_in_30254 .segment[data-seg="segment1"] div.mez{font-size:100%}


  #stacks_in_30269{text-align:center}          @media screen and (max-width:641px){#stacks_in_30269>.button.b-p.expand-mob:not(.icon-only),#stacks_in_30269>.dd-wrap>.button.b-p.expand-mob:not(.icon-only){width:100%!important}}@media screen and (min-width:641px){#stacks_in_30269 .button.b-p.expand-large:not(.icon-only),#stacks_in_30269>.dd-wrap>.button.b-p.expand-large:not(.icon-only){width:100%!important}}
   @media screen and (max-width:641px){#stacks_in_30269.bp-wrap{padding:20px 0px 0px 0px}}  @media screen and (min-width:641px){#stacks_in_30269.bp-wrap{padding:20px 0px 0px 0px}}         
  #stacks_in_30269 .button.b-p.custom{border:0px solid rgba(179, 179, 177, 1.00)}#stacks_in_30269 .button.b-p.custom:hover{border:0px solid rgba(179, 179, 177, 1.00)} #stacks_in_30269 .button.b-p{color:rgba(255, 255, 255, 1.00);background-color:rgba(205, 41, 27, 1.00)}#stacks_in_30269 .button.b-p:not(.d-hov){-webkit-transition:color 200ms ease,background-color 200ms ease,box-shadow 200ms ease,border 200ms ease;-webkit-transition:color 200ms ease,background-color 200ms ease,border 200ms ease,-webkit-box-shadow 200ms ease;transition:color 200ms ease,background-color 200ms ease,border 200ms ease,-webkit-box-shadow 200ms ease;transition:color 200ms ease,background-color 200ms ease,box-shadow 200ms ease,border 200ms ease;transition:color 200ms ease,background-color 200ms ease,box-shadow 200ms ease,border 200ms ease,-webkit-box-shadow 200ms ease}  #stacks_in_30269 .button.b-p:not(.bp-hover):hover{color:rgba(255, 255, 255, 0.90)!important; background-color:rgba(21, 47, 103, 1.00);}     
       
  #stacks_in_30269 .d-hov,#stacks_in_30269 .d-hov::before,#stacks_in_30269 .d-hov::after{-webkit-transition-duration:300ms;transition-duration:300ms}#stacks_in_30269 .d-hov.active,#stacks_in_30269 .d-hov.active::before,#stacks_in_30269 .d-hov.active::after{-webkit-transition-duration:0ms;transition-duration:0ms}#stacks_in_30269 .hover-col:not(.button.b-p):not(.bp-zone-item)::before{background:rgba(239, 181, 10, 1.00)!important}#stacks_in_30269 .hover-col::before,#stacks_in_30269 .hover-col::after{-webkit-transition-property:all;transition-property:all;-webkit-transition-duration:.3s;transition-duration:.3s;-webkit-transition-timing-function:ease-out;transition-timing-function:ease-out}#stacks_in_30269 .hover-col:hover::before{background:rgba(239, 181, 10, 1.00)}#stacks_in_30269 .hover-col.active::before{background:rgba(207, 0, 32, 1.00)}#stacks_in_30269 .d-hov-ripple-out:hover::before{border:rgba(239, 181, 10, 1.00) solid 2px}#stacks_in_30269 .d-hov-pop:hover,#stacks_in_30269 .d-hov-pop:focus,#stacks_in_30269 .d-hov-pop.active{-webkit-animation-duration:300ms;animation-duration:300ms}#stacks_in_30269 .d-hov[class*="d-hov-underline-"]::before,#stacks_in_30269 .d-hov[class*="d-hov-overline-"]::before{height:4px!important}#stacks_in_30269 .d-hov[class*="d-hov-text-underline-"]>.bp-text::before,#stacks_in_30269 .d-hov[class*="d-hov-text-underline-"] .ml-text::before{bottom:-6px;border-bottom-color:rgba(239, 181, 10, 1.00)!important;border-bottom-width:4px;-webkit-transition-duration:300ms;transition-duration:300ms}#stacks_in_30269 .d-hov[class*="d-hov-text-underline-"].active>.bp-text::before,#stacks_in_30269 .d-hov[class*="d-hov-text-underline-"].active .ml-text::before{-webkit-transition-duration:0ms;transition-duration:0ms;border-bottom-color:rgba(207, 0, 32, 1.00)!important}#stacks_in_30269 .d-hov-reveal:hover::before,#stacks_in_30269 .d-hov-reveal.active::before{border-width:4px!important} 
               
#stacks_in_30106.hf-cards {
  padding: 64px 0;
  --hf-width: 320px;
  --hf-border-radius: 8px;
}
#stacks_in_30106.hf-cards,
#stacks_in_30106.hf-cards > [tag="node"] {
  /*  */
  /*  */
  justify-content: center;
  /*  */
  /*  */
  /*  */
  /*  */
  align-items: center;
  /*  */
  /*  */
  /*  */
  gap: 64px;
}
/*  */
/*  */
#stacks_in_30106.hf-cards:not(.hf-c) .hf-gfx {
  filter: url('#round-corners_stacks_in_30106');
}
#stacks_in_30106 .hf-grad:before {
  filter: url('#round-corners_stacks_in_30106');
}
/*  */
/**/
.hf-cards #hf_stacks_in_30107 {
  --hf-bdrSize: 4px;
	--hf-lyrSize: 16px;
  --hf-lyrOffset: 16px;

  --hf-innerPaddingY: 12px;
  --hf-innerPaddingX: 12px;
  --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_30107.hf2-split .hf-card-header > div {
  
  
}
#hf_stacks_in_30107.hf-split .hf-card-footer > div {
  
  
}
#hf_stacks_in_30107.hf-v.hf2-split .hf-card-header > 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_30107.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_30107.hf-v.hf2-split .hf-card-content-inner > .hf-grad {
  padding-top: calc(96px/2 - var(--hf-bdrSize));
}
#hf_stacks_in_30107.hf-v.hf-split .hf-card-content-inner > .hf-grad {
  padding-bottom: calc(96px/2 - var(--hf-bdrSize));
}
#hf_stacks_in_30107 .hf-card-content-inner {
  
  border-color: #E7E7E7;
  
}
#hf_stacks_in_30107.hf-v .hf-top .hf-gfx-lyr1 div {
  background-color: #CD291B;
  
}
#hf_stacks_in_30107.hf-v .hf-top .hf-gfx-lyr2 div {
  background-color: #152F67;
  
}

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

#hf_stacks_in_30107.hf-v:not(.hf2-no-point) .hf-top .hf-gfx-bdr div,
#hf_stacks_in_30107.hf-v:not(.hf-no-point) .hf-bottom .hf-gfx-bdr div {
  
  
  background-color: #E7E7E7;
  
  
}
#hf_stacks_in_30107.hf-v.hf2-no-point .hf-top .hf-gfx-lyr1 div,
#hf_stacks_in_30107.hf-v .hf-bottom .hf-gfx-lyr1 div {
  background-color: #CD291B;
  
}
#hf_stacks_in_30107.hf-v.hf2-no-point .hf-top .hf-gfx-lyr2 div,
#hf_stacks_in_30107.hf-v .hf-bottom .hf-gfx-lyr2 div {
  background-color: #152F67;
  
}

#hf_stacks_in_30107.hf2-detached:not(.hf2-no-content) .hf-card-header > div {
  padding: 12px 24px;
}
#hf_stacks_in_30107.hf-detached:not(.hf-no-content) .hf-card-footer > div {
  padding: 12px 24px;
}
#hf_stacks_in_30107.hf2-detached:not(.hf2-no-content) .hf-card-header {
  padding-left: var(--hf-lyrOffset);
  padding-right: var(--hf-lyrOffset);
}
#hf_stacks_in_30107.hf-detached:not(.hf-no-content) .hf-card-footer {
  padding-left: var(--hf-lyrOffset);
  padding-right: var(--hf-lyrOffset);
}
#hf_stacks_in_30107.hf-v .hf-bottom .hf-gfx-lyr2,
#hf_stacks_in_30107.hf-v .hf-top .hf-gfx-lyr2 {
  left: calc(var(--hf-lyrOffset) * 2);
  right: calc(var(--hf-lyrOffset) * 2);
}
#hf_stacks_in_30107.hf-v.hf-angle-alt .hf-bottom .hf-gfx-lyr2,
#hf_stacks_in_30107.hf-v.hf2-angle-alt .hf-top .hf-gfx-lyr2 {
  left: var(--hf-lyrOffset);
  right: var(--hf-lyrOffset);
}
#hf_stacks_in_30107.hf-v .hf-bottom .hf-gfx-lyr1,
#hf_stacks_in_30107.hf-v .hf-top .hf-gfx-lyr1 {
  left: var(--hf-lyrOffset);
  right: var(--hf-lyrOffset);
}
/*  */
/*  */
/*  */
/*  */
/*  */


  #stacks_in_30164{text-align:center}          @media screen and (max-width:641px){#stacks_in_30164>.button.b-p.expand-mob:not(.icon-only),#stacks_in_30164>.dd-wrap>.button.b-p.expand-mob:not(.icon-only){width:100%!important}}@media screen and (min-width:641px){#stacks_in_30164 .button.b-p.expand-large:not(.icon-only),#stacks_in_30164>.dd-wrap>.button.b-p.expand-large:not(.icon-only){width:100%!important}}
   @media screen and (max-width:641px){#stacks_in_30164.bp-wrap{padding:20px 0px 0px 0px}}  @media screen and (min-width:641px){#stacks_in_30164.bp-wrap{padding:20px 0px 0px 0px}}         
  #stacks_in_30164 .button.b-p.custom{border:0px solid rgba(179, 179, 177, 1.00)}#stacks_in_30164 .button.b-p.custom:hover{border:0px solid rgba(179, 179, 177, 1.00)} #stacks_in_30164 .button.b-p{color:rgba(255, 255, 255, 1.00);background-color:rgba(205, 41, 27, 1.00)}#stacks_in_30164 .button.b-p:not(.d-hov){-webkit-transition:color 200ms ease,background-color 200ms ease,box-shadow 200ms ease,border 200ms ease;-webkit-transition:color 200ms ease,background-color 200ms ease,border 200ms ease,-webkit-box-shadow 200ms ease;transition:color 200ms ease,background-color 200ms ease,border 200ms ease,-webkit-box-shadow 200ms ease;transition:color 200ms ease,background-color 200ms ease,box-shadow 200ms ease,border 200ms ease;transition:color 200ms ease,background-color 200ms ease,box-shadow 200ms ease,border 200ms ease,-webkit-box-shadow 200ms ease}  #stacks_in_30164 .button.b-p:not(.bp-hover):hover{color:rgba(255, 255, 255, 0.90)!important; background-color:rgba(21, 47, 103, 1.00);}     
       
  #stacks_in_30164 .d-hov,#stacks_in_30164 .d-hov::before,#stacks_in_30164 .d-hov::after{-webkit-transition-duration:300ms;transition-duration:300ms}#stacks_in_30164 .d-hov.active,#stacks_in_30164 .d-hov.active::before,#stacks_in_30164 .d-hov.active::after{-webkit-transition-duration:0ms;transition-duration:0ms}#stacks_in_30164 .hover-col:not(.button.b-p):not(.bp-zone-item)::before{background:rgba(239, 181, 10, 1.00)!important}#stacks_in_30164 .hover-col::before,#stacks_in_30164 .hover-col::after{-webkit-transition-property:all;transition-property:all;-webkit-transition-duration:.3s;transition-duration:.3s;-webkit-transition-timing-function:ease-out;transition-timing-function:ease-out}#stacks_in_30164 .hover-col:hover::before{background:rgba(239, 181, 10, 1.00)}#stacks_in_30164 .hover-col.active::before{background:rgba(207, 0, 32, 1.00)}#stacks_in_30164 .d-hov-ripple-out:hover::before{border:rgba(239, 181, 10, 1.00) solid 2px}#stacks_in_30164 .d-hov-pop:hover,#stacks_in_30164 .d-hov-pop:focus,#stacks_in_30164 .d-hov-pop.active{-webkit-animation-duration:300ms;animation-duration:300ms}#stacks_in_30164 .d-hov[class*="d-hov-underline-"]::before,#stacks_in_30164 .d-hov[class*="d-hov-overline-"]::before{height:4px!important}#stacks_in_30164 .d-hov[class*="d-hov-text-underline-"]>.bp-text::before,#stacks_in_30164 .d-hov[class*="d-hov-text-underline-"] .ml-text::before{bottom:-6px;border-bottom-color:rgba(239, 181, 10, 1.00)!important;border-bottom-width:4px;-webkit-transition-duration:300ms;transition-duration:300ms}#stacks_in_30164 .d-hov[class*="d-hov-text-underline-"].active>.bp-text::before,#stacks_in_30164 .d-hov[class*="d-hov-text-underline-"].active .ml-text::before{-webkit-transition-duration:0ms;transition-duration:0ms;border-bottom-color:rgba(207, 0, 32, 1.00)!important}#stacks_in_30164 .d-hov-reveal:hover::before,#stacks_in_30164 .d-hov-reveal.active::before{border-width:4px!important} 
               
@important "partials/maps";
.animated {
  animation-duration: 1s;
  animation-fill-mode: both; }
  .animated.infinite {
    animation-iteration-count: infinite; }
  .animated.hinge {
    animation-duration: 2s; }
  .animated.flipOutX, .animated.flipOutY, .animated.bounceIn, .animated.bounceOut {
    animation-duration: .75s; }

@keyframes bounce {
  from, 20%, 53%, 80%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transform: translate3d(0, 0, 0); }
  40%, 43% {
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    transform: translate3d(0, -30px, 0); }
  70% {
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    transform: translate3d(0, -15px, 0); }
  90% {
    transform: translate3d(0, -4px, 0); } }

.bounce {
  animation-name: bounce;
  transform-origin: center bottom; }

@keyframes flash {
  from, 50%, to {
    opacity: 1; }
  25%, 75% {
    opacity: 0; } }

.flash {
  animation-name: flash; }

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */

@keyframes pulse {
  from {
    transform: scale3d(1, 1, 1); }
  50% {
    transform: scale3d(1.05, 1.05, 1.05); }
  to {
    transform: scale3d(1, 1, 1); } }

.pulse {
  animation-name: pulse; }

@keyframes rubberBand {
  from {
    transform: scale3d(1, 1, 1); }
  30% {
    transform: scale3d(1.25, 0.75, 1); }
  40% {
    transform: scale3d(0.75, 1.25, 1); }
  50% {
    transform: scale3d(1.15, 0.85, 1); }
  65% {
    transform: scale3d(0.95, 1.05, 1); }
  75% {
    transform: scale3d(1.05, 0.95, 1); }
  to {
    transform: scale3d(1, 1, 1); } }

.rubberBand {
  animation-name: rubberBand; }

@keyframes shake {
  from, to {
    transform: translate3d(0, 0, 0); }
  10%, 30%, 50%, 70%, 90% {
    transform: translate3d(-10px, 0, 0); }
  20%, 40%, 60%, 80% {
    transform: translate3d(10px, 0, 0); } }

.shake {
  animation-name: shake; }

@keyframes headShake {
  0% {
    transform: translateX(0); }
  6.5% {
    transform: translateX(-6px) rotateY(-9deg); }
  18.5% {
    transform: translateX(5px) rotateY(7deg); }
  31.5% {
    transform: translateX(-3px) rotateY(-5deg); }
  43.5% {
    transform: translateX(2px) rotateY(3deg); }
  50% {
    transform: translateX(0); } }

.headShake {
  animation-timing-function: ease-in-out;
  animation-name: headShake; }

@keyframes swing {
  20% {
    transform: rotate3d(0, 0, 1, 15deg); }
  40% {
    transform: rotate3d(0, 0, 1, -10deg); }
  60% {
    transform: rotate3d(0, 0, 1, 5deg); }
  80% {
    transform: rotate3d(0, 0, 1, -5deg); }
  to {
    transform: rotate3d(0, 0, 1, 0deg); } }

.swing {
  transform-origin: top center;
  animation-name: swing; }

@keyframes tada {
  from {
    transform: scale3d(1, 1, 1); }
  10%, 20% {
    transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg); }
  30%, 50%, 70%, 90% {
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg); }
  40%, 60%, 80% {
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg); }
  to {
    transform: scale3d(1, 1, 1); } }

.tada {
  animation-name: tada; }

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */

@keyframes wobble {
  from {
    transform: none; }
  15% {
    transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg); }
  30% {
    transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg); }
  45% {
    transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg); }
  60% {
    transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg); }
  75% {
    transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg); }
  to {
    transform: none; } }

.wobble {
  animation-name: wobble; }

@keyframes jello {
  from, 11.1%, to {
    transform: none; }
  22.2% {
    transform: skewX(-12.5deg) skewY(-12.5deg); }
  33.3% {
    transform: skewX(6.25deg) skewY(6.25deg); }
  44.4% {
    transform: skewX(-3.125deg) skewY(-3.125deg); }
  55.5% {
    transform: skewX(1.5625deg) skewY(1.5625deg); }
  66.6% {
    transform: skewX(-0.78125deg) skewY(-0.78125deg); }
  77.7% {
    transform: skewX(0.39063deg) skewY(0.39063deg); }
  88.8% {
    transform: skewX(-0.19531deg) skewY(-0.19531deg); } }

.jello {
  animation-name: jello;
  transform-origin: center; }

@keyframes bounceIn {
  from, 20%, 40%, 60%, 80%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  0% {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3); }
  20% {
    transform: scale3d(1.1, 1.1, 1.1); }
  40% {
    transform: scale3d(0.9, 0.9, 0.9); }
  60% {
    opacity: 1;
    transform: scale3d(1.03, 1.03, 1.03); }
  80% {
    transform: scale3d(0.97, 0.97, 0.97); }
  to {
    opacity: 1;
    transform: scale3d(1, 1, 1); } }

.bounceIn {
  animation-name: bounceIn; }

@keyframes bounceInDown {
  from, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  0% {
    opacity: 0;
    transform: translate3d(0, -3000px, 0); }
  60% {
    opacity: 1;
    transform: translate3d(0, 25px, 0); }
  75% {
    transform: translate3d(0, -10px, 0); }
  90% {
    transform: translate3d(0, 5px, 0); }
  to {
    transform: none; } }

.bounceInDown {
  animation-name: bounceInDown; }

@keyframes bounceInLeft {
  from, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  0% {
    opacity: 0;
    transform: translate3d(-3000px, 0, 0); }
  60% {
    opacity: 1;
    transform: translate3d(25px, 0, 0); }
  75% {
    transform: translate3d(-10px, 0, 0); }
  90% {
    transform: translate3d(5px, 0, 0); }
  to {
    transform: none; } }

.bounceInLeft {
  animation-name: bounceInLeft; }

@keyframes bounceInRight {
  from, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  from {
    opacity: 0;
    transform: translate3d(3000px, 0, 0); }
  60% {
    opacity: 1;
    transform: translate3d(-25px, 0, 0); }
  75% {
    transform: translate3d(10px, 0, 0); }
  90% {
    transform: translate3d(-5px, 0, 0); }
  to {
    transform: none; } }

.bounceInRight {
  animation-name: bounceInRight; }

@keyframes bounceInUp {
  from, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  from {
    opacity: 0;
    transform: translate3d(0, 3000px, 0); }
  60% {
    opacity: 1;
    transform: translate3d(0, -20px, 0); }
  75% {
    transform: translate3d(0, 10px, 0); }
  90% {
    transform: translate3d(0, -5px, 0); }
  to {
    transform: translate3d(0, 0, 0); } }

.bounceInUp {
  animation-name: bounceInUp; }

@keyframes bounceOut {
  20% {
    transform: scale3d(0.9, 0.9, 0.9); }
  50%, 55% {
    opacity: 1;
    transform: scale3d(1.1, 1.1, 1.1); }
  to {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3); } }

.bounceOut {
  animation-name: bounceOut; }

@keyframes bounceOutDown {
  20% {
    transform: translate3d(0, 10px, 0); }
  40%, 45% {
    opacity: 1;
    transform: translate3d(0, -20px, 0); }
  to {
    opacity: 0;
    transform: translate3d(0, 2000px, 0); } }

.bounceOutDown {
  animation-name: bounceOutDown; }

@keyframes bounceOutLeft {
  20% {
    opacity: 1;
    transform: translate3d(20px, 0, 0); }
  to {
    opacity: 0;
    transform: translate3d(-2000px, 0, 0); } }

.bounceOutLeft {
  animation-name: bounceOutLeft; }

@keyframes bounceOutRight {
  20% {
    opacity: 1;
    transform: translate3d(-20px, 0, 0); }
  to {
    opacity: 0;
    transform: translate3d(2000px, 0, 0); } }

.bounceOutRight {
  animation-name: bounceOutRight; }

@keyframes bounceOutUp {
  20% {
    transform: translate3d(0, -10px, 0); }
  40%, 45% {
    opacity: 1;
    transform: translate3d(0, 20px, 0); }
  to {
    opacity: 0;
    transform: translate3d(0, -2000px, 0); } }

.bounceOutUp {
  animation-name: bounceOutUp; }

@keyframes fadeIn {
  from {
    opacity: 0; }
  to {
    opacity: 1; } }

.fadeIn {
  animation-name: fadeIn; }

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translate3d(0, -100%, 0); }
  to {
    opacity: 1;
    transform: none; } }

.fadeInDown {
  animation-name: fadeInDown; }

@keyframes fadeInDownBig {
  from {
    opacity: 0;
    transform: translate3d(0, -2000px, 0); }
  to {
    opacity: 1;
    transform: none; } }

.fadeInDownBig {
  animation-name: fadeInDownBig; }

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translate3d(-100%, 0, 0); }
  to {
    opacity: 1;
    transform: none; } }

.fadeInLeft {
  animation-name: fadeInLeft; }

@keyframes fadeInLeftBig {
  from {
    opacity: 0;
    transform: translate3d(-2000px, 0, 0); }
  to {
    opacity: 1;
    transform: none; } }

.fadeInLeftBig {
  animation-name: fadeInLeftBig; }

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translate3d(100%, 0, 0); }
  to {
    opacity: 1;
    transform: none; } }

.fadeInRight {
  animation-name: fadeInRight; }

@keyframes fadeInRightBig {
  from {
    opacity: 0;
    transform: translate3d(2000px, 0, 0); }
  to {
    opacity: 1;
    transform: none; } }

.fadeInRightBig {
  animation-name: fadeInRightBig; }

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translate3d(0, 100%, 0); }
  to {
    opacity: 1;
    transform: none; } }

.fadeInUp {
  animation-name: fadeInUp; }

@keyframes fadeInUpBig {
  from {
    opacity: 0;
    transform: translate3d(0, 2000px, 0); }
  to {
    opacity: 1;
    transform: none; } }

.fadeInUpBig {
  animation-name: fadeInUpBig; }

@keyframes fadeOut {
  from {
    opacity: 1; }
  to {
    opacity: 0; } }

.fadeOut {
  animation-name: fadeOut; }

@keyframes fadeOutDown {
  from {
    opacity: 1; }
  to {
    opacity: 0;
    transform: translate3d(0, 100%, 0); } }

.fadeOutDown {
  animation-name: fadeOutDown; }

@keyframes fadeOutDownBig {
  from {
    opacity: 1; }
  to {
    opacity: 0;
    transform: translate3d(0, 2000px, 0); } }

.fadeOutDownBig {
  animation-name: fadeOutDownBig; }

@keyframes fadeOutLeft {
  from {
    opacity: 1; }
  to {
    opacity: 0;
    transform: translate3d(-100%, 0, 0); } }

.fadeOutLeft {
  animation-name: fadeOutLeft; }

@keyframes fadeOutLeftBig {
  from {
    opacity: 1; }
  to {
    opacity: 0;
    transform: translate3d(-2000px, 0, 0); } }

.fadeOutLeftBig {
  animation-name: fadeOutLeftBig; }

@keyframes fadeOutRight {
  from {
    opacity: 1; }
  to {
    opacity: 0;
    transform: translate3d(100%, 0, 0); } }

.fadeOutRight {
  animation-name: fadeOutRight; }

@keyframes fadeOutRightBig {
  from {
    opacity: 1; }
  to {
    opacity: 0;
    transform: translate3d(2000px, 0, 0); } }

.fadeOutRightBig {
  animation-name: fadeOutRightBig; }

@keyframes fadeOutUp {
  from {
    opacity: 1; }
  to {
    opacity: 0;
    transform: translate3d(0, -100%, 0); } }

.fadeOutUp {
  animation-name: fadeOutUp; }

@keyframes fadeOutUpBig {
  from {
    opacity: 1; }
  to {
    opacity: 0;
    transform: translate3d(0, -2000px, 0); } }

.fadeOutUpBig {
  animation-name: fadeOutUpBig; }

@keyframes flip {
  from {
    transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    animation-timing-function: ease-out; }
  40% {
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    animation-timing-function: ease-out; }
  50% {
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    animation-timing-function: ease-in; }
  80% {
    transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
    animation-timing-function: ease-in; }
  to {
    transform: perspective(400px);
    animation-timing-function: ease-in; } }

.animated.flip {
  -webkit-backface-visibility: visible;
  backface-visibility: visible;
  animation-name: flip; }

@keyframes flipInX {
  from {
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    animation-timing-function: ease-in;
    opacity: 0; }
  40% {
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    animation-timing-function: ease-in; }
  60% {
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1; }
  80% {
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg); }
  to {
    transform: perspective(400px); } }

.flipInX {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  animation-name: flipInX; }

@keyframes flipInY {
  from {
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    animation-timing-function: ease-in;
    opacity: 0; }
  40% {
    transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    animation-timing-function: ease-in; }
  60% {
    transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    opacity: 1; }
  80% {
    transform: perspective(400px) rotate3d(0, 1, 0, -5deg); }
  to {
    transform: perspective(400px); } }

.flipInY {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  animation-name: flipInY; }

@keyframes flipOutX {
  from {
    transform: perspective(400px); }
  30% {
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    opacity: 1; }
  to {
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0; } }

.flipOutX {
  animation-name: flipOutX;
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important; }

@keyframes flipOutY {
  from {
    transform: perspective(400px); }
  30% {
    transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    opacity: 1; }
  to {
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    opacity: 0; } }

.flipOutY {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  animation-name: flipOutY; }

@keyframes lightSpeedIn {
  from {
    transform: translate3d(100%, 0, 0) skewX(-30deg);
    opacity: 0; }
  60% {
    transform: skewX(20deg);
    opacity: 1; }
  80% {
    transform: skewX(-5deg);
    opacity: 1; }
  to {
    transform: none;
    opacity: 1; } }

.lightSpeedIn {
  animation-name: lightSpeedIn;
  animation-timing-function: ease-out; }

@keyframes lightSpeedOut {
  from {
    opacity: 1; }
  to {
    transform: translate3d(100%, 0, 0) skewX(30deg);
    opacity: 0; } }

.lightSpeedOut {
  animation-name: lightSpeedOut;
  animation-timing-function: ease-in; }

@keyframes rotateIn {
  from {
    transform-origin: center;
    transform: rotate3d(0, 0, 1, -200deg);
    opacity: 0; }
  to {
    transform-origin: center;
    transform: none;
    opacity: 1; } }

.rotateIn {
  animation-name: rotateIn; }

@keyframes rotateInDownLeft {
  from {
    transform-origin: left bottom;
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0; }
  to {
    transform-origin: left bottom;
    transform: none;
    opacity: 1; } }

.rotateInDownLeft {
  animation-name: rotateInDownLeft; }

@keyframes rotateInDownRight {
  from {
    transform-origin: right bottom;
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0; }
  to {
    transform-origin: right bottom;
    transform: none;
    opacity: 1; } }

.rotateInDownRight {
  animation-name: rotateInDownRight; }

@keyframes rotateInUpLeft {
  from {
    transform-origin: left bottom;
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0; }
  to {
    transform-origin: left bottom;
    transform: none;
    opacity: 1; } }

.rotateInUpLeft {
  animation-name: rotateInUpLeft; }

@keyframes rotateInUpRight {
  from {
    transform-origin: right bottom;
    transform: rotate3d(0, 0, 1, -90deg);
    opacity: 0; }
  to {
    transform-origin: right bottom;
    transform: none;
    opacity: 1; } }

.rotateInUpRight {
  animation-name: rotateInUpRight; }

@keyframes rotateOut {
  from {
    transform-origin: center;
    opacity: 1; }
  to {
    transform-origin: center;
    transform: rotate3d(0, 0, 1, 200deg);
    opacity: 0; } }

.rotateOut {
  animation-name: rotateOut; }

@keyframes rotateOutDownLeft {
  from {
    transform-origin: left bottom;
    opacity: 1; }
  to {
    transform-origin: left bottom;
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0; } }

.rotateOutDownLeft {
  animation-name: rotateOutDownLeft; }

@keyframes rotateOutDownRight {
  from {
    transform-origin: right bottom;
    opacity: 1; }
  to {
    transform-origin: right bottom;
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0; } }

.rotateOutDownRight {
  animation-name: rotateOutDownRight; }

@keyframes rotateOutUpLeft {
  from {
    transform-origin: left bottom;
    opacity: 1; }
  to {
    transform-origin: left bottom;
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0; } }

.rotateOutUpLeft {
  animation-name: rotateOutUpLeft; }

@keyframes rotateOutUpRight {
  from {
    transform-origin: right bottom;
    opacity: 1; }
  to {
    transform-origin: right bottom;
    transform: rotate3d(0, 0, 1, 90deg);
    opacity: 0; } }

.rotateOutUpRight {
  animation-name: rotateOutUpRight; }

@keyframes hinge {
  0% {
    transform-origin: top left;
    animation-timing-function: ease-in-out; }
  20%, 60% {
    transform: rotate3d(0, 0, 1, 80deg);
    transform-origin: top left;
    animation-timing-function: ease-in-out; }
  40%, 80% {
    transform: rotate3d(0, 0, 1, 60deg);
    transform-origin: top left;
    animation-timing-function: ease-in-out;
    opacity: 1; }
  to {
    transform: translate3d(0, 700px, 0);
    opacity: 0; } }

.hinge {
  animation-name: hinge; }

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */

@keyframes rollIn {
  from {
    opacity: 0;
    transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg); }
  to {
    opacity: 1;
    transform: none; } }

.rollIn {
  animation-name: rollIn; }

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */

@keyframes rollOut {
  from {
    opacity: 1; }
  to {
    opacity: 0;
    transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg); } }

.rollOut {
  animation-name: rollOut; }

@keyframes zoomIn {
  from {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3); }
  50% {
    opacity: 1; } }

.zoomIn {
  animation-name: zoomIn; }

@keyframes zoomInDown {
  from {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  60% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); } }

.zoomInDown {
  animation-name: zoomInDown; }

@keyframes zoomInLeft {
  from {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  60% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); } }

.zoomInLeft {
  animation-name: zoomInLeft; }

@keyframes zoomInRight {
  from {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  60% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); } }

.zoomInRight {
  animation-name: zoomInRight; }

@keyframes zoomInUp {
  from {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  60% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); } }

.zoomInUp {
  animation-name: zoomInUp; }

@keyframes zoomOut {
  from {
    opacity: 1; }
  50% {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3); }
  to {
    opacity: 0; } }

.zoomOut {
  animation-name: zoomOut; }

@keyframes zoomOutDown {
  40% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  to {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    transform-origin: center bottom;
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); } }

.zoomOutDown {
  animation-name: zoomOutDown; }

@keyframes zoomOutLeft {
  40% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0); }
  to {
    opacity: 0;
    transform: scale(0.1) translate3d(-2000px, 0, 0);
    transform-origin: left center; } }

.zoomOutLeft {
  animation-name: zoomOutLeft; }

@keyframes zoomOutRight {
  40% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0); }
  to {
    opacity: 0;
    transform: scale(0.1) translate3d(2000px, 0, 0);
    transform-origin: right center; } }

.zoomOutRight {
  animation-name: zoomOutRight; }

@keyframes zoomOutUp {
  40% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  to {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    transform-origin: center bottom;
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); } }

.zoomOutUp {
  animation-name: zoomOutUp; }

@keyframes slideInDown {
  from {
    transform: translate3d(0, -100%, 0);
    visibility: visible; }
  to {
    transform: translate3d(0, 0, 0); } }

.slideInDown {
  animation-name: slideInDown; }

@keyframes slideInLeft {
  from {
    transform: translate3d(-100%, 0, 0);
    visibility: visible; }
  to {
    transform: translate3d(0, 0, 0); } }

.slideInLeft {
  animation-name: slideInLeft; }

@keyframes slideInRight {
  from {
    transform: translate3d(100%, 0, 0);
    visibility: visible; }
  to {
    transform: translate3d(0, 0, 0); } }

.slideInRight {
  animation-name: slideInRight; }

@keyframes slideInUp {
  from {
    transform: translate3d(0, 100%, 0);
    visibility: visible; }
  to {
    transform: translate3d(0, 0, 0); } }

.slideInUp {
  animation-name: slideInUp; }

@keyframes slideOutDown {
  from {
    transform: translate3d(0, 0, 0); }
  to {
    visibility: hidden;
    transform: translate3d(0, 100%, 0); } }

.slideOutDown {
  animation-name: slideOutDown; }

@keyframes slideOutLeft {
  from {
    transform: translate3d(0, 0, 0); }
  to {
    visibility: hidden;
    transform: translate3d(-100%, 0, 0); } }

.slideOutLeft {
  animation-name: slideOutLeft; }

@keyframes slideOutRight {
  from {
    transform: translate3d(0, 0, 0); }
  to {
    visibility: hidden;
    transform: translate3d(100%, 0, 0); } }

.slideOutRight {
  animation-name: slideOutRight; }

@keyframes slideOutUp {
  from {
    transform: translate3d(0, 0, 0); }
  to {
    visibility: hidden;
    transform: translate3d(0, -100%, 0); } }

.slideOutUp {
  animation-name: slideOutUp; }

#noticeContainer_stacks_in_30167 {
  /*  */
  display: block;
  position: relative; }
  #noticeContainer_stacks_in_30167 .clearfix:before {
    content: " ";
    display: table; }
  #noticeContainer_stacks_in_30167 .clearfix:after {
    content: " ";
    display: table;
    clear: both; }

#notice_stacks_in_30167 {
  /*  */
  /*  */
  opacity: 0;
  left: 0px;
  right: 0px;
  max-height: 100%;
  /*  */
  position: fixed;
  /*  */
  overflow-y: auto;
  visibility: hidden;
  /*  */
  z-index: 999999;
  /*  */
  max-width: 100%;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  bottom: 0px;
  /*  */
  /*  */
  /*  */
  /*  */
  margin-left: auto;
  margin-right: auto;
  /*  */
  /*  */
  /*  */
  /*  */
  background: rgba(21, 47, 103, 0.90);
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  font-family: "Nunito";
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  color: rgba(255, 255, 255, 1.00);
  border-radius: 0px 0px 0px 0px; }
  #notice_stacks_in_30167.show {
    opacity: 1;
    visibility: visible; }
  #notice_stacks_in_30167.hide {
    opacity: 0;
    visibility: hidden; }
  #notice_stacks_in_30167.cookie-hide {
    display: none; }

#notice_stacks_in_30167 .notice-inner-stacks {
  clear: both;
  margin: 0 auto;
  max-width: 960px;
  padding: 10px 10px 35px 10px; }

#notice_stacks_in_30167 .notice-inner {
  clear: both;
  margin: 0 auto;
  max-width: 960px;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
  padding: 10px 10px 35px 10px;
  /*  */
  /*  */
  text-align: center;
  /*  */
  /*  */
  /*  */
  display: -ms-flexbox;
  display: flex;
  /*  */
  /*  */ }
  #notice_stacks_in_30167 .notice-inner-text {
    -ms-flex: 0 1 auto;
        flex: 0 1 auto;
    max-width: 100%;
    font-size: 16px;
    line-height: 22px; }
  #notice_stacks_in_30167 .notice-inner-icon {
    /*  */
    /*  */
    /*  */
    -ms-flex-item-align: center;
        -ms-grid-row-align: center;
        align-self: center;
    /*  */
    /*  */
    -ms-flex: 0 1 auto;
        flex: 0 1 auto;
    color: rgba(255, 255, 255, 1.00);
    padding: 5px 20px 5px 10px; }
    #notice_stacks_in_30167 .notice-inner-icon i {
      font-size: 32px;
      vertical-align: middle; }

#notice_stacks_in_30167 .notice-close-btn {
  float: right;
  cursor: pointer;
  color: rgba(255, 255, 255, 1.00);
  padding: 10px 10px 0px 10px; }
  #notice_stacks_in_30167 .notice-close-btn i {
    cursor: pointer;
    vertical-align: middle; }

#notice_stacks_in_30167 .notice-action {
  height: 40px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  /*  */
  color: inherit;
  background: none;
  /*  */ }
  #notice_stacks_in_30167 .notice-action i {
    vertical-align: middle; }
  #notice_stacks_in_30167 .notice-action-close {
    border-style: solid;
    border-width: 1px 0 0 0;
    border-color: rgba(255, 255, 255, 0.30); }
    #notice_stacks_in_30167 .notice-action-close:hover {
      /*  */ }
  #notice_stacks_in_30167 .notice-action-custom {
    border-style: solid;
    border-width: 1px 0 0 1px;
    border-color: rgba(255, 255, 255, 0.30); }
    #notice_stacks_in_30167 .notice-action-custom:hover {
      /*  */ }
    #notice_stacks_in_30167 .notice-action-custom a {
      color: inherit;
      width: 100%;
      height: 100%;
      /*  */
      display: -ms-flexbox;
      display: flex;
      -ms-flex-align: center;
          align-items: center;
      text-decoration: none;
      -ms-flex-pack: center;
          justify-content: center;
      /*  */ }
  #notice_stacks_in_30167 .notice-action-btn {
    height: 100%;
    display: -ms-flexbox;
    display: flex;
    -ms-flex: 1 0 auto;
        flex: 1 0 auto;
    text-align: center;
    -ms-flex-align: center;
        align-items: center;
    box-sizing: border-box;
    -ms-flex-pack: center;
        justify-content: center; }
    #notice_stacks_in_30167 .notice-action-btn:hover {
      cursor: pointer; }

@media (max-width: 480px) {
  #notice_stacks_in_30167 .notice-action {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    height: 90px; }
    #notice_stacks_in_30167 .notice-action-custom {
      border-width: 1px 0 0 0; }
    #notice_stacks_in_30167 .notice-action div {
      height: 50%;
      width: 100%; } }

/*  */
@media all and (-ms-high-contrast: none) {
  #notice_stacks_in_30167 {
    width: 100%; }
    #notice_stacks_in_30167 *::-ms-backdrop, #notice_stacks_in_30167 #notice_stacks_in_30167 {
      width: 100%; } }

/*  */
#stacks_in_30207 h1,#stacks_in_30207 .hTxt:not(.segment) div{font-size:3.00rem}@media all and (max-width:640px){#stacks_in_30207 h1,#stacks_in_30207 .hTxt:not(.segment) div{font-size:1.50rem}}#stacks_in_30207 h1,#stacks_in_30207 div{color:rgba(205, 41, 27, 1.00)}#stacks_in_30207 h1 a,#stacks_in_30207 div a{color:rgba(205, 41, 27, 1.00)}#stacks_in_30207 h1 a:hover,#stacks_in_30207 div a:hover{color:rgba(153, 30, 20, 1.00)}#stacks_in_30207 small,#stacks_in_30207 small div{color:rgba(111, 111, 111, 1.00)}#stacks_in_30207 .hTxt:not(.vault-font),.no-default:not(.custom-font) .hTxt:not(.vault-font){font-family:"Archivo Black",Sans-Serif;font-weight:400;font-style:normal}#stacks_in_30207 .hTxt.segment[data-seg="segment1"]{font-family:"Roboto ",Sans-Serif;font-weight:400;font-style:normal}#stacks_in_30207 .primary,#stacks_in_30207 .segment{display:inline-block}#stacks_in_30207 .primary.sub-title,#stacks_in_30207 .segment.sub-title{display:block}#stacks_in_30207 [data-seg="segment2"].last-title{display:block}#stacks_in_30207 .segment.no-shadow{text-shadow:none !important}#stacks_in_30207 .segment *{}#stacks_in_30207 .hTxt.primary{vertical-align:baseline}#stacks_in_30207 .segment[data-seg="segment1"]{font-size:100%;color:rgba(10, 33, 88, 1.00);padding:0px 0px 0px 13px;margin:0px 0px 0px 0px;vertical-align:baseline;}#stacks_in_30207 .segment[data-seg="segment1"] div{color:rgba(10, 33, 88, 1.00)}#stacks_in_30207 .segment[data-seg="segment1"] div.mez{font-size:100%}


  #stacks_in_30224{text-align:center}          @media screen and (max-width:641px){#stacks_in_30224>.button.b-p.expand-mob:not(.icon-only),#stacks_in_30224>.dd-wrap>.button.b-p.expand-mob:not(.icon-only){width:100%!important}}@media screen and (min-width:641px){#stacks_in_30224 .button.b-p.expand-large:not(.icon-only),#stacks_in_30224>.dd-wrap>.button.b-p.expand-large:not(.icon-only){width:100%!important}}
   @media screen and (max-width:641px){#stacks_in_30224.bp-wrap{padding:20px 0px 0px 0px}}  @media screen and (min-width:641px){#stacks_in_30224.bp-wrap{padding:20px 0px 0px 0px}}         
  #stacks_in_30224 .button.b-p.custom{border:0px solid rgba(179, 179, 177, 1.00)}#stacks_in_30224 .button.b-p.custom:hover{border:0px solid rgba(179, 179, 177, 1.00)} #stacks_in_30224 .button.b-p{color:rgba(255, 255, 255, 1.00);background-color:rgba(205, 41, 27, 1.00)}#stacks_in_30224 .button.b-p:not(.d-hov){-webkit-transition:color 200ms ease,background-color 200ms ease,box-shadow 200ms ease,border 200ms ease;-webkit-transition:color 200ms ease,background-color 200ms ease,border 200ms ease,-webkit-box-shadow 200ms ease;transition:color 200ms ease,background-color 200ms ease,border 200ms ease,-webkit-box-shadow 200ms ease;transition:color 200ms ease,background-color 200ms ease,box-shadow 200ms ease,border 200ms ease;transition:color 200ms ease,background-color 200ms ease,box-shadow 200ms ease,border 200ms ease,-webkit-box-shadow 200ms ease}  #stacks_in_30224 .button.b-p:not(.bp-hover):hover{color:rgba(255, 255, 255, 0.90)!important; background-color:rgba(21, 47, 103, 1.00);}     
       
  #stacks_in_30224 .d-hov,#stacks_in_30224 .d-hov::before,#stacks_in_30224 .d-hov::after{-webkit-transition-duration:300ms;transition-duration:300ms}#stacks_in_30224 .d-hov.active,#stacks_in_30224 .d-hov.active::before,#stacks_in_30224 .d-hov.active::after{-webkit-transition-duration:0ms;transition-duration:0ms}#stacks_in_30224 .hover-col:not(.button.b-p):not(.bp-zone-item)::before{background:rgba(239, 181, 10, 1.00)!important}#stacks_in_30224 .hover-col::before,#stacks_in_30224 .hover-col::after{-webkit-transition-property:all;transition-property:all;-webkit-transition-duration:.3s;transition-duration:.3s;-webkit-transition-timing-function:ease-out;transition-timing-function:ease-out}#stacks_in_30224 .hover-col:hover::before{background:rgba(239, 181, 10, 1.00)}#stacks_in_30224 .hover-col.active::before{background:rgba(207, 0, 32, 1.00)}#stacks_in_30224 .d-hov-ripple-out:hover::before{border:rgba(239, 181, 10, 1.00) solid 2px}#stacks_in_30224 .d-hov-pop:hover,#stacks_in_30224 .d-hov-pop:focus,#stacks_in_30224 .d-hov-pop.active{-webkit-animation-duration:300ms;animation-duration:300ms}#stacks_in_30224 .d-hov[class*="d-hov-underline-"]::before,#stacks_in_30224 .d-hov[class*="d-hov-overline-"]::before{height:4px!important}#stacks_in_30224 .d-hov[class*="d-hov-text-underline-"]>.bp-text::before,#stacks_in_30224 .d-hov[class*="d-hov-text-underline-"] .ml-text::before{bottom:-6px;border-bottom-color:rgba(239, 181, 10, 1.00)!important;border-bottom-width:4px;-webkit-transition-duration:300ms;transition-duration:300ms}#stacks_in_30224 .d-hov[class*="d-hov-text-underline-"].active>.bp-text::before,#stacks_in_30224 .d-hov[class*="d-hov-text-underline-"].active .ml-text::before{-webkit-transition-duration:0ms;transition-duration:0ms;border-bottom-color:rgba(207, 0, 32, 1.00)!important}#stacks_in_30224 .d-hov-reveal:hover::before,#stacks_in_30224 .d-hov-reveal.active::before{border-width:4px!important} 
               
#stacks_in_30287.hf-cards {
  padding: 64px 0;
  --hf-width: 320px;
  --hf-border-radius: 8px;
}
#stacks_in_30287.hf-cards,
#stacks_in_30287.hf-cards > [tag="node"] {
  /*  */
  /*  */
  justify-content: center;
  /*  */
  /*  */
  /*  */
  /*  */
  align-items: center;
  /*  */
  /*  */
  /*  */
  gap: 64px;
}
/*  */
/*  */
#stacks_in_30287.hf-cards:not(.hf-c) .hf-gfx {
  filter: url('#round-corners_stacks_in_30287');
}
#stacks_in_30287 .hf-grad:before {
  filter: url('#round-corners_stacks_in_30287');
}
/*  */
/**/
.hf-cards #hf_stacks_in_30288 {
  --hf-bdrSize: 4px;
	--hf-lyrSize: 16px;
  --hf-lyrOffset: 16px;

  --hf-innerPaddingY: 12px;
  --hf-innerPaddingX: 12px;
  --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_30288.hf2-split .hf-card-header > div {
  
  
}
#hf_stacks_in_30288.hf-split .hf-card-footer > div {
  
  
}
#hf_stacks_in_30288.hf-v.hf2-split .hf-card-header > 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_30288.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_30288.hf-v.hf2-split .hf-card-content-inner > .hf-grad {
  padding-top: calc(96px/2 - var(--hf-bdrSize));
}
#hf_stacks_in_30288.hf-v.hf-split .hf-card-content-inner > .hf-grad {
  padding-bottom: calc(96px/2 - var(--hf-bdrSize));
}
#hf_stacks_in_30288 .hf-card-content-inner {
  
  border-color: #E7E7E7;
  
}
#hf_stacks_in_30288.hf-v .hf-top .hf-gfx-lyr1 div {
  background-color: #CD291B;
  
}
#hf_stacks_in_30288.hf-v .hf-top .hf-gfx-lyr2 div {
  background-color: #152F67;
  
}

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

#hf_stacks_in_30288.hf-v:not(.hf2-no-point) .hf-top .hf-gfx-bdr div,
#hf_stacks_in_30288.hf-v:not(.hf-no-point) .hf-bottom .hf-gfx-bdr div {
  
  
  background-color: #E7E7E7;
  
  
}
#hf_stacks_in_30288.hf-v.hf2-no-point .hf-top .hf-gfx-lyr1 div,
#hf_stacks_in_30288.hf-v .hf-bottom .hf-gfx-lyr1 div {
  background-color: #CD291B;
  
}
#hf_stacks_in_30288.hf-v.hf2-no-point .hf-top .hf-gfx-lyr2 div,
#hf_stacks_in_30288.hf-v .hf-bottom .hf-gfx-lyr2 div {
  background-color: #152F67;
  
}

#hf_stacks_in_30288.hf2-detached:not(.hf2-no-content) .hf-card-header > div {
  padding: 12px 24px;
}
#hf_stacks_in_30288.hf-detached:not(.hf-no-content) .hf-card-footer > div {
  padding: 12px 24px;
}
#hf_stacks_in_30288.hf2-detached:not(.hf2-no-content) .hf-card-header {
  padding-left: var(--hf-lyrOffset);
  padding-right: var(--hf-lyrOffset);
}
#hf_stacks_in_30288.hf-detached:not(.hf-no-content) .hf-card-footer {
  padding-left: var(--hf-lyrOffset);
  padding-right: var(--hf-lyrOffset);
}
#hf_stacks_in_30288.hf-v .hf-bottom .hf-gfx-lyr2,
#hf_stacks_in_30288.hf-v .hf-top .hf-gfx-lyr2 {
  left: calc(var(--hf-lyrOffset) * 2);
  right: calc(var(--hf-lyrOffset) * 2);
}
#hf_stacks_in_30288.hf-v.hf-angle-alt .hf-bottom .hf-gfx-lyr2,
#hf_stacks_in_30288.hf-v.hf2-angle-alt .hf-top .hf-gfx-lyr2 {
  left: var(--hf-lyrOffset);
  right: var(--hf-lyrOffset);
}
#hf_stacks_in_30288.hf-v .hf-bottom .hf-gfx-lyr1,
#hf_stacks_in_30288.hf-v .hf-top .hf-gfx-lyr1 {
  left: var(--hf-lyrOffset);
  right: var(--hf-lyrOffset);
}
/*  */
/*  */
/*  */
/*  */
/*  */


  #stacks_in_30298{text-align:center}          @media screen and (max-width:641px){#stacks_in_30298>.button.b-p.expand-mob:not(.icon-only),#stacks_in_30298>.dd-wrap>.button.b-p.expand-mob:not(.icon-only){width:100%!important}}@media screen and (min-width:641px){#stacks_in_30298 .button.b-p.expand-large:not(.icon-only),#stacks_in_30298>.dd-wrap>.button.b-p.expand-large:not(.icon-only){width:100%!important}}
   @media screen and (max-width:641px){#stacks_in_30298.bp-wrap{padding:20px 0px 0px 0px}}  @media screen and (min-width:641px){#stacks_in_30298.bp-wrap{padding:20px 0px 0px 0px}}         
  #stacks_in_30298 .button.b-p.custom{border:0px solid rgba(179, 179, 177, 1.00)}#stacks_in_30298 .button.b-p.custom:hover{border:0px solid rgba(179, 179, 177, 1.00)} #stacks_in_30298 .button.b-p{color:rgba(255, 255, 255, 1.00);background-color:rgba(205, 41, 27, 1.00)}#stacks_in_30298 .button.b-p:not(.d-hov){-webkit-transition:color 200ms ease,background-color 200ms ease,box-shadow 200ms ease,border 200ms ease;-webkit-transition:color 200ms ease,background-color 200ms ease,border 200ms ease,-webkit-box-shadow 200ms ease;transition:color 200ms ease,background-color 200ms ease,border 200ms ease,-webkit-box-shadow 200ms ease;transition:color 200ms ease,background-color 200ms ease,box-shadow 200ms ease,border 200ms ease;transition:color 200ms ease,background-color 200ms ease,box-shadow 200ms ease,border 200ms ease,-webkit-box-shadow 200ms ease}  #stacks_in_30298 .button.b-p:not(.bp-hover):hover{color:rgba(255, 255, 255, 0.90)!important; background-color:rgba(21, 47, 103, 1.00);}     
       
  #stacks_in_30298 .d-hov,#stacks_in_30298 .d-hov::before,#stacks_in_30298 .d-hov::after{-webkit-transition-duration:300ms;transition-duration:300ms}#stacks_in_30298 .d-hov.active,#stacks_in_30298 .d-hov.active::before,#stacks_in_30298 .d-hov.active::after{-webkit-transition-duration:0ms;transition-duration:0ms}#stacks_in_30298 .hover-col:not(.button.b-p):not(.bp-zone-item)::before{background:rgba(239, 181, 10, 1.00)!important}#stacks_in_30298 .hover-col::before,#stacks_in_30298 .hover-col::after{-webkit-transition-property:all;transition-property:all;-webkit-transition-duration:.3s;transition-duration:.3s;-webkit-transition-timing-function:ease-out;transition-timing-function:ease-out}#stacks_in_30298 .hover-col:hover::before{background:rgba(239, 181, 10, 1.00)}#stacks_in_30298 .hover-col.active::before{background:rgba(207, 0, 32, 1.00)}#stacks_in_30298 .d-hov-ripple-out:hover::before{border:rgba(239, 181, 10, 1.00) solid 2px}#stacks_in_30298 .d-hov-pop:hover,#stacks_in_30298 .d-hov-pop:focus,#stacks_in_30298 .d-hov-pop.active{-webkit-animation-duration:300ms;animation-duration:300ms}#stacks_in_30298 .d-hov[class*="d-hov-underline-"]::before,#stacks_in_30298 .d-hov[class*="d-hov-overline-"]::before{height:4px!important}#stacks_in_30298 .d-hov[class*="d-hov-text-underline-"]>.bp-text::before,#stacks_in_30298 .d-hov[class*="d-hov-text-underline-"] .ml-text::before{bottom:-6px;border-bottom-color:rgba(239, 181, 10, 1.00)!important;border-bottom-width:4px;-webkit-transition-duration:300ms;transition-duration:300ms}#stacks_in_30298 .d-hov[class*="d-hov-text-underline-"].active>.bp-text::before,#stacks_in_30298 .d-hov[class*="d-hov-text-underline-"].active .ml-text::before{-webkit-transition-duration:0ms;transition-duration:0ms;border-bottom-color:rgba(207, 0, 32, 1.00)!important}#stacks_in_30298 .d-hov-reveal:hover::before,#stacks_in_30298 .d-hov-reveal.active::before{border-width:4px!important} 
               
@important "partials/maps";
.animated {
  animation-duration: 1s;
  animation-fill-mode: both; }
  .animated.infinite {
    animation-iteration-count: infinite; }
  .animated.hinge {
    animation-duration: 2s; }
  .animated.flipOutX, .animated.flipOutY, .animated.bounceIn, .animated.bounceOut {
    animation-duration: .75s; }

@keyframes bounce {
  from, 20%, 53%, 80%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transform: translate3d(0, 0, 0); }
  40%, 43% {
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    transform: translate3d(0, -30px, 0); }
  70% {
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    transform: translate3d(0, -15px, 0); }
  90% {
    transform: translate3d(0, -4px, 0); } }

.bounce {
  animation-name: bounce;
  transform-origin: center bottom; }

@keyframes flash {
  from, 50%, to {
    opacity: 1; }
  25%, 75% {
    opacity: 0; } }

.flash {
  animation-name: flash; }

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */

@keyframes pulse {
  from {
    transform: scale3d(1, 1, 1); }
  50% {
    transform: scale3d(1.05, 1.05, 1.05); }
  to {
    transform: scale3d(1, 1, 1); } }

.pulse {
  animation-name: pulse; }

@keyframes rubberBand {
  from {
    transform: scale3d(1, 1, 1); }
  30% {
    transform: scale3d(1.25, 0.75, 1); }
  40% {
    transform: scale3d(0.75, 1.25, 1); }
  50% {
    transform: scale3d(1.15, 0.85, 1); }
  65% {
    transform: scale3d(0.95, 1.05, 1); }
  75% {
    transform: scale3d(1.05, 0.95, 1); }
  to {
    transform: scale3d(1, 1, 1); } }

.rubberBand {
  animation-name: rubberBand; }

@keyframes shake {
  from, to {
    transform: translate3d(0, 0, 0); }
  10%, 30%, 50%, 70%, 90% {
    transform: translate3d(-10px, 0, 0); }
  20%, 40%, 60%, 80% {
    transform: translate3d(10px, 0, 0); } }

.shake {
  animation-name: shake; }

@keyframes headShake {
  0% {
    transform: translateX(0); }
  6.5% {
    transform: translateX(-6px) rotateY(-9deg); }
  18.5% {
    transform: translateX(5px) rotateY(7deg); }
  31.5% {
    transform: translateX(-3px) rotateY(-5deg); }
  43.5% {
    transform: translateX(2px) rotateY(3deg); }
  50% {
    transform: translateX(0); } }

.headShake {
  animation-timing-function: ease-in-out;
  animation-name: headShake; }

@keyframes swing {
  20% {
    transform: rotate3d(0, 0, 1, 15deg); }
  40% {
    transform: rotate3d(0, 0, 1, -10deg); }
  60% {
    transform: rotate3d(0, 0, 1, 5deg); }
  80% {
    transform: rotate3d(0, 0, 1, -5deg); }
  to {
    transform: rotate3d(0, 0, 1, 0deg); } }

.swing {
  transform-origin: top center;
  animation-name: swing; }

@keyframes tada {
  from {
    transform: scale3d(1, 1, 1); }
  10%, 20% {
    transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg); }
  30%, 50%, 70%, 90% {
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg); }
  40%, 60%, 80% {
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg); }
  to {
    transform: scale3d(1, 1, 1); } }

.tada {
  animation-name: tada; }

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */

@keyframes wobble {
  from {
    transform: none; }
  15% {
    transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg); }
  30% {
    transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg); }
  45% {
    transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg); }
  60% {
    transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg); }
  75% {
    transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg); }
  to {
    transform: none; } }

.wobble {
  animation-name: wobble; }

@keyframes jello {
  from, 11.1%, to {
    transform: none; }
  22.2% {
    transform: skewX(-12.5deg) skewY(-12.5deg); }
  33.3% {
    transform: skewX(6.25deg) skewY(6.25deg); }
  44.4% {
    transform: skewX(-3.125deg) skewY(-3.125deg); }
  55.5% {
    transform: skewX(1.5625deg) skewY(1.5625deg); }
  66.6% {
    transform: skewX(-0.78125deg) skewY(-0.78125deg); }
  77.7% {
    transform: skewX(0.39063deg) skewY(0.39063deg); }
  88.8% {
    transform: skewX(-0.19531deg) skewY(-0.19531deg); } }

.jello {
  animation-name: jello;
  transform-origin: center; }

@keyframes bounceIn {
  from, 20%, 40%, 60%, 80%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  0% {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3); }
  20% {
    transform: scale3d(1.1, 1.1, 1.1); }
  40% {
    transform: scale3d(0.9, 0.9, 0.9); }
  60% {
    opacity: 1;
    transform: scale3d(1.03, 1.03, 1.03); }
  80% {
    transform: scale3d(0.97, 0.97, 0.97); }
  to {
    opacity: 1;
    transform: scale3d(1, 1, 1); } }

.bounceIn {
  animation-name: bounceIn; }

@keyframes bounceInDown {
  from, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  0% {
    opacity: 0;
    transform: translate3d(0, -3000px, 0); }
  60% {
    opacity: 1;
    transform: translate3d(0, 25px, 0); }
  75% {
    transform: translate3d(0, -10px, 0); }
  90% {
    transform: translate3d(0, 5px, 0); }
  to {
    transform: none; } }

.bounceInDown {
  animation-name: bounceInDown; }

@keyframes bounceInLeft {
  from, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  0% {
    opacity: 0;
    transform: translate3d(-3000px, 0, 0); }
  60% {
    opacity: 1;
    transform: translate3d(25px, 0, 0); }
  75% {
    transform: translate3d(-10px, 0, 0); }
  90% {
    transform: translate3d(5px, 0, 0); }
  to {
    transform: none; } }

.bounceInLeft {
  animation-name: bounceInLeft; }

@keyframes bounceInRight {
  from, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  from {
    opacity: 0;
    transform: translate3d(3000px, 0, 0); }
  60% {
    opacity: 1;
    transform: translate3d(-25px, 0, 0); }
  75% {
    transform: translate3d(10px, 0, 0); }
  90% {
    transform: translate3d(-5px, 0, 0); }
  to {
    transform: none; } }

.bounceInRight {
  animation-name: bounceInRight; }

@keyframes bounceInUp {
  from, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  from {
    opacity: 0;
    transform: translate3d(0, 3000px, 0); }
  60% {
    opacity: 1;
    transform: translate3d(0, -20px, 0); }
  75% {
    transform: translate3d(0, 10px, 0); }
  90% {
    transform: translate3d(0, -5px, 0); }
  to {
    transform: translate3d(0, 0, 0); } }

.bounceInUp {
  animation-name: bounceInUp; }

@keyframes bounceOut {
  20% {
    transform: scale3d(0.9, 0.9, 0.9); }
  50%, 55% {
    opacity: 1;
    transform: scale3d(1.1, 1.1, 1.1); }
  to {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3); } }

.bounceOut {
  animation-name: bounceOut; }

@keyframes bounceOutDown {
  20% {
    transform: translate3d(0, 10px, 0); }
  40%, 45% {
    opacity: 1;
    transform: translate3d(0, -20px, 0); }
  to {
    opacity: 0;
    transform: translate3d(0, 2000px, 0); } }

.bounceOutDown {
  animation-name: bounceOutDown; }

@keyframes bounceOutLeft {
  20% {
    opacity: 1;
    transform: translate3d(20px, 0, 0); }
  to {
    opacity: 0;
    transform: translate3d(-2000px, 0, 0); } }

.bounceOutLeft {
  animation-name: bounceOutLeft; }

@keyframes bounceOutRight {
  20% {
    opacity: 1;
    transform: translate3d(-20px, 0, 0); }
  to {
    opacity: 0;
    transform: translate3d(2000px, 0, 0); } }

.bounceOutRight {
  animation-name: bounceOutRight; }

@keyframes bounceOutUp {
  20% {
    transform: translate3d(0, -10px, 0); }
  40%, 45% {
    opacity: 1;
    transform: translate3d(0, 20px, 0); }
  to {
    opacity: 0;
    transform: translate3d(0, -2000px, 0); } }

.bounceOutUp {
  animation-name: bounceOutUp; }

@keyframes fadeIn {
  from {
    opacity: 0; }
  to {
    opacity: 1; } }

.fadeIn {
  animation-name: fadeIn; }

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translate3d(0, -100%, 0); }
  to {
    opacity: 1;
    transform: none; } }

.fadeInDown {
  animation-name: fadeInDown; }

@keyframes fadeInDownBig {
  from {
    opacity: 0;
    transform: translate3d(0, -2000px, 0); }
  to {
    opacity: 1;
    transform: none; } }

.fadeInDownBig {
  animation-name: fadeInDownBig; }

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translate3d(-100%, 0, 0); }
  to {
    opacity: 1;
    transform: none; } }

.fadeInLeft {
  animation-name: fadeInLeft; }

@keyframes fadeInLeftBig {
  from {
    opacity: 0;
    transform: translate3d(-2000px, 0, 0); }
  to {
    opacity: 1;
    transform: none; } }

.fadeInLeftBig {
  animation-name: fadeInLeftBig; }

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translate3d(100%, 0, 0); }
  to {
    opacity: 1;
    transform: none; } }

.fadeInRight {
  animation-name: fadeInRight; }

@keyframes fadeInRightBig {
  from {
    opacity: 0;
    transform: translate3d(2000px, 0, 0); }
  to {
    opacity: 1;
    transform: none; } }

.fadeInRightBig {
  animation-name: fadeInRightBig; }

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translate3d(0, 100%, 0); }
  to {
    opacity: 1;
    transform: none; } }

.fadeInUp {
  animation-name: fadeInUp; }

@keyframes fadeInUpBig {
  from {
    opacity: 0;
    transform: translate3d(0, 2000px, 0); }
  to {
    opacity: 1;
    transform: none; } }

.fadeInUpBig {
  animation-name: fadeInUpBig; }

@keyframes fadeOut {
  from {
    opacity: 1; }
  to {
    opacity: 0; } }

.fadeOut {
  animation-name: fadeOut; }

@keyframes fadeOutDown {
  from {
    opacity: 1; }
  to {
    opacity: 0;
    transform: translate3d(0, 100%, 0); } }

.fadeOutDown {
  animation-name: fadeOutDown; }

@keyframes fadeOutDownBig {
  from {
    opacity: 1; }
  to {
    opacity: 0;
    transform: translate3d(0, 2000px, 0); } }

.fadeOutDownBig {
  animation-name: fadeOutDownBig; }

@keyframes fadeOutLeft {
  from {
    opacity: 1; }
  to {
    opacity: 0;
    transform: translate3d(-100%, 0, 0); } }

.fadeOutLeft {
  animation-name: fadeOutLeft; }

@keyframes fadeOutLeftBig {
  from {
    opacity: 1; }
  to {
    opacity: 0;
    transform: translate3d(-2000px, 0, 0); } }

.fadeOutLeftBig {
  animation-name: fadeOutLeftBig; }

@keyframes fadeOutRight {
  from {
    opacity: 1; }
  to {
    opacity: 0;
    transform: translate3d(100%, 0, 0); } }

.fadeOutRight {
  animation-name: fadeOutRight; }

@keyframes fadeOutRightBig {
  from {
    opacity: 1; }
  to {
    opacity: 0;
    transform: translate3d(2000px, 0, 0); } }

.fadeOutRightBig {
  animation-name: fadeOutRightBig; }

@keyframes fadeOutUp {
  from {
    opacity: 1; }
  to {
    opacity: 0;
    transform: translate3d(0, -100%, 0); } }

.fadeOutUp {
  animation-name: fadeOutUp; }

@keyframes fadeOutUpBig {
  from {
    opacity: 1; }
  to {
    opacity: 0;
    transform: translate3d(0, -2000px, 0); } }

.fadeOutUpBig {
  animation-name: fadeOutUpBig; }

@keyframes flip {
  from {
    transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    animation-timing-function: ease-out; }
  40% {
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    animation-timing-function: ease-out; }
  50% {
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    animation-timing-function: ease-in; }
  80% {
    transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
    animation-timing-function: ease-in; }
  to {
    transform: perspective(400px);
    animation-timing-function: ease-in; } }

.animated.flip {
  -webkit-backface-visibility: visible;
  backface-visibility: visible;
  animation-name: flip; }

@keyframes flipInX {
  from {
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    animation-timing-function: ease-in;
    opacity: 0; }
  40% {
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    animation-timing-function: ease-in; }
  60% {
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1; }
  80% {
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg); }
  to {
    transform: perspective(400px); } }

.flipInX {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  animation-name: flipInX; }

@keyframes flipInY {
  from {
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    animation-timing-function: ease-in;
    opacity: 0; }
  40% {
    transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    animation-timing-function: ease-in; }
  60% {
    transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    opacity: 1; }
  80% {
    transform: perspective(400px) rotate3d(0, 1, 0, -5deg); }
  to {
    transform: perspective(400px); } }

.flipInY {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  animation-name: flipInY; }

@keyframes flipOutX {
  from {
    transform: perspective(400px); }
  30% {
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    opacity: 1; }
  to {
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0; } }

.flipOutX {
  animation-name: flipOutX;
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important; }

@keyframes flipOutY {
  from {
    transform: perspective(400px); }
  30% {
    transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    opacity: 1; }
  to {
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    opacity: 0; } }

.flipOutY {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  animation-name: flipOutY; }

@keyframes lightSpeedIn {
  from {
    transform: translate3d(100%, 0, 0) skewX(-30deg);
    opacity: 0; }
  60% {
    transform: skewX(20deg);
    opacity: 1; }
  80% {
    transform: skewX(-5deg);
    opacity: 1; }
  to {
    transform: none;
    opacity: 1; } }

.lightSpeedIn {
  animation-name: lightSpeedIn;
  animation-timing-function: ease-out; }

@keyframes lightSpeedOut {
  from {
    opacity: 1; }
  to {
    transform: translate3d(100%, 0, 0) skewX(30deg);
    opacity: 0; } }

.lightSpeedOut {
  animation-name: lightSpeedOut;
  animation-timing-function: ease-in; }

@keyframes rotateIn {
  from {
    transform-origin: center;
    transform: rotate3d(0, 0, 1, -200deg);
    opacity: 0; }
  to {
    transform-origin: center;
    transform: none;
    opacity: 1; } }

.rotateIn {
  animation-name: rotateIn; }

@keyframes rotateInDownLeft {
  from {
    transform-origin: left bottom;
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0; }
  to {
    transform-origin: left bottom;
    transform: none;
    opacity: 1; } }

.rotateInDownLeft {
  animation-name: rotateInDownLeft; }

@keyframes rotateInDownRight {
  from {
    transform-origin: right bottom;
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0; }
  to {
    transform-origin: right bottom;
    transform: none;
    opacity: 1; } }

.rotateInDownRight {
  animation-name: rotateInDownRight; }

@keyframes rotateInUpLeft {
  from {
    transform-origin: left bottom;
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0; }
  to {
    transform-origin: left bottom;
    transform: none;
    opacity: 1; } }

.rotateInUpLeft {
  animation-name: rotateInUpLeft; }

@keyframes rotateInUpRight {
  from {
    transform-origin: right bottom;
    transform: rotate3d(0, 0, 1, -90deg);
    opacity: 0; }
  to {
    transform-origin: right bottom;
    transform: none;
    opacity: 1; } }

.rotateInUpRight {
  animation-name: rotateInUpRight; }

@keyframes rotateOut {
  from {
    transform-origin: center;
    opacity: 1; }
  to {
    transform-origin: center;
    transform: rotate3d(0, 0, 1, 200deg);
    opacity: 0; } }

.rotateOut {
  animation-name: rotateOut; }

@keyframes rotateOutDownLeft {
  from {
    transform-origin: left bottom;
    opacity: 1; }
  to {
    transform-origin: left bottom;
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0; } }

.rotateOutDownLeft {
  animation-name: rotateOutDownLeft; }

@keyframes rotateOutDownRight {
  from {
    transform-origin: right bottom;
    opacity: 1; }
  to {
    transform-origin: right bottom;
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0; } }

.rotateOutDownRight {
  animation-name: rotateOutDownRight; }

@keyframes rotateOutUpLeft {
  from {
    transform-origin: left bottom;
    opacity: 1; }
  to {
    transform-origin: left bottom;
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0; } }

.rotateOutUpLeft {
  animation-name: rotateOutUpLeft; }

@keyframes rotateOutUpRight {
  from {
    transform-origin: right bottom;
    opacity: 1; }
  to {
    transform-origin: right bottom;
    transform: rotate3d(0, 0, 1, 90deg);
    opacity: 0; } }

.rotateOutUpRight {
  animation-name: rotateOutUpRight; }

@keyframes hinge {
  0% {
    transform-origin: top left;
    animation-timing-function: ease-in-out; }
  20%, 60% {
    transform: rotate3d(0, 0, 1, 80deg);
    transform-origin: top left;
    animation-timing-function: ease-in-out; }
  40%, 80% {
    transform: rotate3d(0, 0, 1, 60deg);
    transform-origin: top left;
    animation-timing-function: ease-in-out;
    opacity: 1; }
  to {
    transform: translate3d(0, 700px, 0);
    opacity: 0; } }

.hinge {
  animation-name: hinge; }

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */

@keyframes rollIn {
  from {
    opacity: 0;
    transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg); }
  to {
    opacity: 1;
    transform: none; } }

.rollIn {
  animation-name: rollIn; }

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */

@keyframes rollOut {
  from {
    opacity: 1; }
  to {
    opacity: 0;
    transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg); } }

.rollOut {
  animation-name: rollOut; }

@keyframes zoomIn {
  from {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3); }
  50% {
    opacity: 1; } }

.zoomIn {
  animation-name: zoomIn; }

@keyframes zoomInDown {
  from {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  60% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); } }

.zoomInDown {
  animation-name: zoomInDown; }

@keyframes zoomInLeft {
  from {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  60% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); } }

.zoomInLeft {
  animation-name: zoomInLeft; }

@keyframes zoomInRight {
  from {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  60% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); } }

.zoomInRight {
  animation-name: zoomInRight; }

@keyframes zoomInUp {
  from {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  60% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); } }

.zoomInUp {
  animation-name: zoomInUp; }

@keyframes zoomOut {
  from {
    opacity: 1; }
  50% {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3); }
  to {
    opacity: 0; } }

.zoomOut {
  animation-name: zoomOut; }

@keyframes zoomOutDown {
  40% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  to {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    transform-origin: center bottom;
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); } }

.zoomOutDown {
  animation-name: zoomOutDown; }

@keyframes zoomOutLeft {
  40% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0); }
  to {
    opacity: 0;
    transform: scale(0.1) translate3d(-2000px, 0, 0);
    transform-origin: left center; } }

.zoomOutLeft {
  animation-name: zoomOutLeft; }

@keyframes zoomOutRight {
  40% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0); }
  to {
    opacity: 0;
    transform: scale(0.1) translate3d(2000px, 0, 0);
    transform-origin: right center; } }

.zoomOutRight {
  animation-name: zoomOutRight; }

@keyframes zoomOutUp {
  40% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  to {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    transform-origin: center bottom;
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); } }

.zoomOutUp {
  animation-name: zoomOutUp; }

@keyframes slideInDown {
  from {
    transform: translate3d(0, -100%, 0);
    visibility: visible; }
  to {
    transform: translate3d(0, 0, 0); } }

.slideInDown {
  animation-name: slideInDown; }

@keyframes slideInLeft {
  from {
    transform: translate3d(-100%, 0, 0);
    visibility: visible; }
  to {
    transform: translate3d(0, 0, 0); } }

.slideInLeft {
  animation-name: slideInLeft; }

@keyframes slideInRight {
  from {
    transform: translate3d(100%, 0, 0);
    visibility: visible; }
  to {
    transform: translate3d(0, 0, 0); } }

.slideInRight {
  animation-name: slideInRight; }

@keyframes slideInUp {
  from {
    transform: translate3d(0, 100%, 0);
    visibility: visible; }
  to {
    transform: translate3d(0, 0, 0); } }

.slideInUp {
  animation-name: slideInUp; }

@keyframes slideOutDown {
  from {
    transform: translate3d(0, 0, 0); }
  to {
    visibility: hidden;
    transform: translate3d(0, 100%, 0); } }

.slideOutDown {
  animation-name: slideOutDown; }

@keyframes slideOutLeft {
  from {
    transform: translate3d(0, 0, 0); }
  to {
    visibility: hidden;
    transform: translate3d(-100%, 0, 0); } }

.slideOutLeft {
  animation-name: slideOutLeft; }

@keyframes slideOutRight {
  from {
    transform: translate3d(0, 0, 0); }
  to {
    visibility: hidden;
    transform: translate3d(100%, 0, 0); } }

.slideOutRight {
  animation-name: slideOutRight; }

@keyframes slideOutUp {
  from {
    transform: translate3d(0, 0, 0); }
  to {
    visibility: hidden;
    transform: translate3d(0, -100%, 0); } }

.slideOutUp {
  animation-name: slideOutUp; }

#noticeContainer_stacks_in_30301 {
  /*  */
  display: block;
  position: relative; }
  #noticeContainer_stacks_in_30301 .clearfix:before {
    content: " ";
    display: table; }
  #noticeContainer_stacks_in_30301 .clearfix:after {
    content: " ";
    display: table;
    clear: both; }

#notice_stacks_in_30301 {
  /*  */
  /*  */
  opacity: 0;
  left: 0px;
  right: 0px;
  max-height: 100%;
  /*  */
  position: fixed;
  /*  */
  overflow-y: auto;
  visibility: hidden;
  /*  */
  z-index: 999999;
  /*  */
  max-width: 100%;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  bottom: 0px;
  /*  */
  /*  */
  /*  */
  /*  */
  margin-left: auto;
  margin-right: auto;
  /*  */
  /*  */
  /*  */
  /*  */
  background: rgba(21, 47, 103, 0.90);
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  font-family: "Nunito";
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  color: rgba(255, 255, 255, 1.00);
  border-radius: 0px 0px 0px 0px; }
  #notice_stacks_in_30301.show {
    opacity: 1;
    visibility: visible; }
  #notice_stacks_in_30301.hide {
    opacity: 0;
    visibility: hidden; }
  #notice_stacks_in_30301.cookie-hide {
    display: none; }

#notice_stacks_in_30301 .notice-inner-stacks {
  clear: both;
  margin: 0 auto;
  max-width: 960px;
  padding: 10px 10px 35px 10px; }

#notice_stacks_in_30301 .notice-inner {
  clear: both;
  margin: 0 auto;
  max-width: 960px;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
  padding: 10px 10px 35px 10px;
  /*  */
  /*  */
  text-align: center;
  /*  */
  /*  */
  /*  */
  display: -ms-flexbox;
  display: flex;
  /*  */
  /*  */ }
  #notice_stacks_in_30301 .notice-inner-text {
    -ms-flex: 0 1 auto;
        flex: 0 1 auto;
    max-width: 100%;
    font-size: 16px;
    line-height: 22px; }
  #notice_stacks_in_30301 .notice-inner-icon {
    /*  */
    /*  */
    /*  */
    -ms-flex-item-align: center;
        -ms-grid-row-align: center;
        align-self: center;
    /*  */
    /*  */
    -ms-flex: 0 1 auto;
        flex: 0 1 auto;
    color: rgba(255, 255, 255, 1.00);
    padding: 5px 20px 5px 10px; }
    #notice_stacks_in_30301 .notice-inner-icon i {
      font-size: 32px;
      vertical-align: middle; }

#notice_stacks_in_30301 .notice-close-btn {
  float: right;
  cursor: pointer;
  color: rgba(255, 255, 255, 1.00);
  padding: 10px 10px 0px 10px; }
  #notice_stacks_in_30301 .notice-close-btn i {
    cursor: pointer;
    vertical-align: middle; }

#notice_stacks_in_30301 .notice-action {
  height: 40px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  /*  */
  color: inherit;
  background: none;
  /*  */ }
  #notice_stacks_in_30301 .notice-action i {
    vertical-align: middle; }
  #notice_stacks_in_30301 .notice-action-close {
    border-style: solid;
    border-width: 1px 0 0 0;
    border-color: rgba(255, 255, 255, 0.30); }
    #notice_stacks_in_30301 .notice-action-close:hover {
      /*  */ }
  #notice_stacks_in_30301 .notice-action-custom {
    border-style: solid;
    border-width: 1px 0 0 1px;
    border-color: rgba(255, 255, 255, 0.30); }
    #notice_stacks_in_30301 .notice-action-custom:hover {
      /*  */ }
    #notice_stacks_in_30301 .notice-action-custom a {
      color: inherit;
      width: 100%;
      height: 100%;
      /*  */
      display: -ms-flexbox;
      display: flex;
      -ms-flex-align: center;
          align-items: center;
      text-decoration: none;
      -ms-flex-pack: center;
          justify-content: center;
      /*  */ }
  #notice_stacks_in_30301 .notice-action-btn {
    height: 100%;
    display: -ms-flexbox;
    display: flex;
    -ms-flex: 1 0 auto;
        flex: 1 0 auto;
    text-align: center;
    -ms-flex-align: center;
        align-items: center;
    box-sizing: border-box;
    -ms-flex-pack: center;
        justify-content: center; }
    #notice_stacks_in_30301 .notice-action-btn:hover {
      cursor: pointer; }

@media (max-width: 480px) {
  #notice_stacks_in_30301 .notice-action {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    height: 90px; }
    #notice_stacks_in_30301 .notice-action-custom {
      border-width: 1px 0 0 0; }
    #notice_stacks_in_30301 .notice-action div {
      height: 50%;
      width: 100%; } }

/*  */
@media all and (-ms-high-contrast: none) {
  #notice_stacks_in_30301 {
    width: 100%; }
    #notice_stacks_in_30301 *::-ms-backdrop, #notice_stacks_in_30301 #notice_stacks_in_30301 {
      width: 100%; } }

/*  */
#stacks_in_30306 h1,#stacks_in_30306 .hTxt:not(.segment) div{font-size:3.00rem}@media all and (max-width:640px){#stacks_in_30306 h1,#stacks_in_30306 .hTxt:not(.segment) div{font-size:1.50rem}}#stacks_in_30306 h1,#stacks_in_30306 div{color:rgba(205, 41, 27, 1.00)}#stacks_in_30306 h1 a,#stacks_in_30306 div a{color:rgba(205, 41, 27, 1.00)}#stacks_in_30306 h1 a:hover,#stacks_in_30306 div a:hover{color:rgba(153, 30, 20, 1.00)}#stacks_in_30306 small,#stacks_in_30306 small div{color:rgba(111, 111, 111, 1.00)}#stacks_in_30306 .hTxt:not(.vault-font),.no-default:not(.custom-font) .hTxt:not(.vault-font){font-family:"Archivo Black",Sans-Serif;font-weight:400;font-style:normal}#stacks_in_30306 .hTxt.segment[data-seg="segment1"]{font-family:"Roboto ",Sans-Serif;font-weight:400;font-style:normal}#stacks_in_30306 .primary,#stacks_in_30306 .segment{display:inline-block}#stacks_in_30306 .primary.sub-title,#stacks_in_30306 .segment.sub-title{display:block}#stacks_in_30306 [data-seg="segment2"].last-title{display:block}#stacks_in_30306 .segment.no-shadow{text-shadow:none !important}#stacks_in_30306 .segment *{}#stacks_in_30306 .hTxt.primary{vertical-align:baseline}#stacks_in_30306 .segment[data-seg="segment1"]{font-size:100%;color:rgba(10, 33, 88, 1.00);padding:0px 0px 0px 13px;margin:0px 0px 0px 0px;vertical-align:baseline;}#stacks_in_30306 .segment[data-seg="segment1"] div{color:rgba(10, 33, 88, 1.00)}#stacks_in_30306 .segment[data-seg="segment1"] div.mez{font-size:100%}


  #stacks_in_30321{text-align:center}          @media screen and (max-width:641px){#stacks_in_30321>.button.b-p.expand-mob:not(.icon-only),#stacks_in_30321>.dd-wrap>.button.b-p.expand-mob:not(.icon-only){width:100%!important}}@media screen and (min-width:641px){#stacks_in_30321 .button.b-p.expand-large:not(.icon-only),#stacks_in_30321>.dd-wrap>.button.b-p.expand-large:not(.icon-only){width:100%!important}}
   @media screen and (max-width:641px){#stacks_in_30321.bp-wrap{padding:20px 0px 0px 0px}}  @media screen and (min-width:641px){#stacks_in_30321.bp-wrap{padding:20px 0px 0px 0px}}         
  #stacks_in_30321 .button.b-p.custom{border:0px solid rgba(179, 179, 177, 1.00)}#stacks_in_30321 .button.b-p.custom:hover{border:0px solid rgba(179, 179, 177, 1.00)} #stacks_in_30321 .button.b-p{color:rgba(255, 255, 255, 1.00);background-color:rgba(205, 41, 27, 1.00)}#stacks_in_30321 .button.b-p:not(.d-hov){-webkit-transition:color 200ms ease,background-color 200ms ease,box-shadow 200ms ease,border 200ms ease;-webkit-transition:color 200ms ease,background-color 200ms ease,border 200ms ease,-webkit-box-shadow 200ms ease;transition:color 200ms ease,background-color 200ms ease,border 200ms ease,-webkit-box-shadow 200ms ease;transition:color 200ms ease,background-color 200ms ease,box-shadow 200ms ease,border 200ms ease;transition:color 200ms ease,background-color 200ms ease,box-shadow 200ms ease,border 200ms ease,-webkit-box-shadow 200ms ease}  #stacks_in_30321 .button.b-p:not(.bp-hover):hover{color:rgba(255, 255, 255, 0.90)!important; background-color:rgba(21, 47, 103, 1.00);}     
       
  #stacks_in_30321 .d-hov,#stacks_in_30321 .d-hov::before,#stacks_in_30321 .d-hov::after{-webkit-transition-duration:300ms;transition-duration:300ms}#stacks_in_30321 .d-hov.active,#stacks_in_30321 .d-hov.active::before,#stacks_in_30321 .d-hov.active::after{-webkit-transition-duration:0ms;transition-duration:0ms}#stacks_in_30321 .hover-col:not(.button.b-p):not(.bp-zone-item)::before{background:rgba(239, 181, 10, 1.00)!important}#stacks_in_30321 .hover-col::before,#stacks_in_30321 .hover-col::after{-webkit-transition-property:all;transition-property:all;-webkit-transition-duration:.3s;transition-duration:.3s;-webkit-transition-timing-function:ease-out;transition-timing-function:ease-out}#stacks_in_30321 .hover-col:hover::before{background:rgba(239, 181, 10, 1.00)}#stacks_in_30321 .hover-col.active::before{background:rgba(207, 0, 32, 1.00)}#stacks_in_30321 .d-hov-ripple-out:hover::before{border:rgba(239, 181, 10, 1.00) solid 2px}#stacks_in_30321 .d-hov-pop:hover,#stacks_in_30321 .d-hov-pop:focus,#stacks_in_30321 .d-hov-pop.active{-webkit-animation-duration:300ms;animation-duration:300ms}#stacks_in_30321 .d-hov[class*="d-hov-underline-"]::before,#stacks_in_30321 .d-hov[class*="d-hov-overline-"]::before{height:4px!important}#stacks_in_30321 .d-hov[class*="d-hov-text-underline-"]>.bp-text::before,#stacks_in_30321 .d-hov[class*="d-hov-text-underline-"] .ml-text::before{bottom:-6px;border-bottom-color:rgba(239, 181, 10, 1.00)!important;border-bottom-width:4px;-webkit-transition-duration:300ms;transition-duration:300ms}#stacks_in_30321 .d-hov[class*="d-hov-text-underline-"].active>.bp-text::before,#stacks_in_30321 .d-hov[class*="d-hov-text-underline-"].active .ml-text::before{-webkit-transition-duration:0ms;transition-duration:0ms;border-bottom-color:rgba(207, 0, 32, 1.00)!important}#stacks_in_30321 .d-hov-reveal:hover::before,#stacks_in_30321 .d-hov-reveal.active::before{border-width:4px!important} 
               
/* 1.0.1
 - removed a bunch of API calls to try and help with load time in edit and preview modes
 - Added svg refresh to resolve display issues in safari and RW preview
 - added hardware acceleration to svg graphics to increase performance
 - fixed a bug that could cause the stack to load into the editor slowly
 1.0.2
 - hotfix, editmode display bug
 1.0.5
 - Added Experimental responsive defintion feature
*/

.svg-metamorph.svgm_stacks_in_30327 .svgm-group {
    display: none;
}
.svg-metamorph.svgm_stacks_in_30327 .svgm-group.svgm-wide-5,
.svg-metamorph.svgm_stacks_in_30327 .svgm-group.svgm-pattern-6,
.svg-metamorph.svgm_stacks_in_30327 .svgm-group.svgm-special-23 {
    display: block;
}
.svg-metamorph.svgm_stacks_in_30327,
.svg-metamorph.svgm_stacks_in_30327 .svgm-content {
  position: relative;
  z-index: 1;
}
#stacks_in_30327, #stacks_out_30327 {
  overflow: visible;
}
.svg-metamorph.svgm_stacks_in_30327 {
  display: inline-block;
  width: calc(100% - 1px);
  position: relative;
  margin-top: -0px;
  margin-bottom: -0px;
  
  
  margin-bottom: calc(60px - 0px);
  
  
  
}

.svg-metamorph.svgm_stacks_in_30327 > .svgm-wrap-outer > .svgm-wrap {
  position: absolute;
  height: 100%;
  width: 100%;
  overflow: hidden;
}
.svg-metamorph.svgm_stacks_in_30327 > .svgm-wrap-outer > .svgm-wrap svg {
  width: 100%;
  height: calc(100% + 60px + 60px);
  stroke: none;
  fill: white;
}
.svg-metamorph.svgm_stacks_in_30327 > .svgm-wrap-outer > .svgm-wrap svg path.svgm-opacity {
  stroke: none;
  stroke-width: 0;
}
.svg-metamorph.svgm_stacks_in_30327 > .svgm-wrap-outer > .svgm-wrap.svgm-wrap-top {
  top: 0;
  z-index: 1;
  transform: translateY(-60px);
}
.svg-metamorph.svgm_stacks_in_30327 > .svgm-wrap-outer > .svgm-wrap.svgm-wrap-center {
  z-index: 2;
  height: calc(100% + 3px);
  /* top: -1.5px; */
}
.svg-metamorph.svgm_stacks_in_30327 > .svgm-wrap-outer > .svgm-wrap.svgm-wrap-bottom {
  bottom: 0;
  z-index: 0;
  transform: translateY(60px) rotateZ(180deg);
}
.svg-metamorph.svgm_stacks_in_30327 > .svgm-wrap-outer > .svgm-wrap.svgm-wrap-center svg {
  transform: translateY(-60px);
  /* margin-top: 1px; */
}
.svg-metamorph.svgm_stacks_in_30327 > .svgm-wrap-outer > .svgm-wrap > svg {
  width: 100%;
  overflow: visible;
}
.svg-metamorph.svgm_stacks_in_30327 > .svgm-wrap-outer > .svgm-wrap:after {
  background: #8F00AB;
}
.svg-metamorph.svgm_stacks_in_30327 .svgm-content {
  position: relative;
  z-index: 3;
  min-height: 60px;
  display: grid;
  align-items: center;
  
}


.svg-metamorph.svgm_stacks_in_30327 .svgm-content > div {
  
  
  
}
.svg-metamorph.svgm_stacks_in_30327 .svgm-mask {
  transform-origin: center;
}
.svg-metamorph.svgm_stacks_in_30327 > .svgm-wrap-outer {
  height: calc(100% - 0px - 0px );
  min-height: 60px;
  position: absolute;
  width: 100%;
  top: 0px;
  
  top: auto;
  bottom: 0px;
  
  transform: translateZ(0);
}


.svg-metamorph.svgm_stacks_in_30327 image:not(.svgm-pattern):not(.svgm-off) {
  transform-origin: center;
}
.svg-metamorph.svgm_stacks_in_30327 image.svgm-off {
  transform-origin: center;
}
.svg-metamorph.svgm_stacks_in_30327 .svgm-pattern {
  width: 100px;
  height: 100px;
}
.svg-metamorph.svgm_stacks_in_30327 .svgm-custom-pattern-1a {
  transform-origin: center;
  transform: translate(-358.000000px, 0);
}
.svg-metamorph.svgm_stacks_in_30327 .svgm-custom-pattern-1b {
  transform-origin: center;
  transform: translate(-362.000000px, 0);
}
.svg-metamorph.svgm_stacks_in_30327 .svgm-custom-pattern-2a {
  transform-origin: center;
  transform: translate(-358.000000px, 0) rotateY(180deg);
}
.svg-metamorph.svgm_stacks_in_30327 .svgm-custom-pattern-2b {
  transform-origin: center;
  transform: translate(-362.000000px, 0) rotateY(180deg);
}
.svg-metamorph.svgm_stacks_in_30327 .svgm-custom-pattern-3a {
  transform-origin: center;
  transform: translate(2518.000000px, 0);
}
.svg-metamorph.svgm_stacks_in_30327 .svgm-custom-pattern-3b {
  transform-origin: center;
  transform: translate(2522.000000px, 0);
}
.svg-metamorph.svgm_stacks_in_30327 .svgm-custom-pattern-opacity-1 {
  transform-origin: center;
  transform: translate(0, 38.000000px);
}
.svg-metamorph.svgm_stacks_in_30327 .svgm-custom-pattern-opacity-2 {
  transform-origin: center;
  transform: translate(0, 38.000000px) rotateY(180deg);
}
.svg-metamorph.svgm_stacks_in_30327 .svgm-use-r {
  transform: scale(-1,1);
  transform-origin: 960px 0;
}
.svg-metamorph.svgm_stacks_in_30327 .svgm-mask-top {
  transform: translate(0,4px) scaleX(1);
}
.svg-metamorph.svgm_stacks_in_30327 .svgm-mask-bottom {
  transform: translate(0,-1px) scaleX(1);
}

@media all and (max-width: 1920px) {
  .svg-metamorph.svgm_stacks_in_30327 .svgm-use {
    transform: scaleX(1);
    transform-origin: 960px bottom;
  }
  .svg-metamorph.svgm_stacks_in_30327 .svgm-use-r {
    transform: scaleX(1) rotateY(180deg);
    transform-origin: 960px 0;
  }
}
@media all and (max-width: 1680px) {
  .svg-metamorph.svgm_stacks_in_30327 .svgm-use {
    transform: scaleX(0.875);
    transform-origin: 960px bottom;
  }
  .svg-metamorph.svgm_stacks_in_30327 .svgm-use-r {
    transform: scaleX(0.875) rotateY(180deg);
    transform-origin: 960px 0;
  }
}
@media all and (max-width: 1440px) {
  .svg-metamorph.svgm_stacks_in_30327 .svgm-use {
    transform: scaleX(0.75);
    transform-origin: 960px bottom;
  }
  .svg-metamorph.svgm_stacks_in_30327 .svgm-use-r {
    transform: scaleX(0.75) rotateY(180deg);
    transform-origin: 960px 0;
  }
}
@media all and (max-width: 1280px) {
  .svg-metamorph.svgm_stacks_in_30327 .svgm-use {
    transform: scaleX(0.667);
    transform-origin: 960px bottom;
  }
  .svg-metamorph.svgm_stacks_in_30327 .svgm-use-r {
    transform: scaleX(0.667) rotateY(180deg);
    transform-origin: 960px 0;
  }
}
@media all and (max-width: 1152px) {
  .svg-metamorph.svgm_stacks_in_30327 .svgm-use {
    transform: scaleX(0.6);
    transform-origin: 960px bottom;
  }
  .svg-metamorph.svgm_stacks_in_30327 .svgm-use-r {
    transform: scaleX(0.6) rotateY(180deg);
    transform-origin: 960px 0;
  }
}
@media all and (min-width: 1921px) {
  .svg-metamorph.svgm_stacks_in_30327 .svgm-mask {
    transform: scaleX(1.34);
  }
  .svg-metamorph.svgm_stacks_in_30327 .svgm-mask-top {
    transform: translate(0,4px) scaleX(1.34);
  }
  .svg-metamorph.svgm_stacks_in_30327 .svgm-mask-bottom {
    transform: translate(0,-1px) scaleX(1.34);
  }
}
@media all and (min-width: 2561px) {
  .svg-metamorph.svgm_stacks_in_30327 .svgm-mask {
    transform: scaleX(1.67);
  }
  .svg-metamorph.svgm_stacks_in_30327 .svgm-mask-top {
    transform: translate(0,4px) scaleX(1.67);
  }
  .svg-metamorph.svgm_stacks_in_30327 .svgm-mask-bottom {
    transform: translate(0,-1px) scaleX(1.67);
  }
}
@media all and (min-width: 3201px) {
  .svg-metamorph.svgm_stacks_in_30327 .svgm-mask {
    transform: scaleX(2);
  }
  .svg-metamorph.svgm_stacks_in_30327 .svgm-mask-top {
    transform: translate(0,4px) scaleX(2);
  }
  .svg-metamorph.svgm_stacks_in_30327 .svgm-mask-bottom {
    transform: translate(0,-1px) scaleX(2);
  }
}


.svg-metamorph.svgm_stacks_in_30327 .svgm-opacity {
  display: none;
}
.svg-metamorph.svgm_stacks_in_30327 > .svgm-wrap-outer {
  opacity: 100%;
}



/**/

#stacks_in_30351 h1,#stacks_in_30351 .hTxt:not(.segment) div{font-size:4.00rem}@media all and (max-width:640px){#stacks_in_30351 h1,#stacks_in_30351 .hTxt:not(.segment) div{font-size:1.50rem}}#stacks_in_30351 h1,#stacks_in_30351 div{color:rgba(255, 255, 255, 1.00)}#stacks_in_30351 h1 a,#stacks_in_30351 div a{color:rgba(255, 255, 255, 1.00)}#stacks_in_30351 h1 a:hover,#stacks_in_30351 div a:hover{color:rgba(191, 191, 191, 1.00)}#stacks_in_30351 small,#stacks_in_30351 small div{color:rgba(111, 111, 111, 1.00)}#stacks_in_30351 .hTxt:not(.vault-font),.no-default:not(.custom-font) .hTxt:not(.vault-font){font-family:"Archivo Black",Sans-Serif;font-weight:400;font-style:normal}#stacks_in_30351 .hTxt.segment[data-seg="segment1"]{font-family:"Archivo Black",Sans-Serif;font-weight:400;font-style:normal}#stacks_in_30351 .primary,#stacks_in_30351 .segment{display:inline-block}#stacks_in_30351 .primary.sub-title,#stacks_in_30351 .segment.sub-title{display:block}#stacks_in_30351 [data-seg="segment2"].last-title{display:block}#stacks_in_30351 .segment.no-shadow{text-shadow:none !important}#stacks_in_30351 .segment *{}#stacks_in_30351 .hTxt.primary{vertical-align:baseline}#stacks_in_30351 .segment[data-seg="segment1"]{font-size:100%;color:rgba(255, 255, 255, 1.00);padding:0px 0px 0px 13px;margin:0px 0px 0px 0px;vertical-align:baseline;}#stacks_in_30351 .segment[data-seg="segment1"] div{color:rgba(255, 255, 255, 1.00)}#stacks_in_30351 .segment[data-seg="segment1"] div.mez{font-size:100%}


#stacks_in_30351 {
	padding: 0px 0px 20px 0px;
}
 #stacks_in_30362 .shear-mag{position:absolute;top:-70px}#stacks_in_30362 a.shear-mag.offset-override{top:-70px!important} .mg-menu .mgicon-hoy{vertical-align:middle;font-size:1.60rem; padding-right:1.00rem;}    
#stacks_in_30042 h1,#stacks_in_30042 .hTxt:not(.segment) div{font-size:3.00rem}@media all and (max-width:640px){#stacks_in_30042 h1,#stacks_in_30042 .hTxt:not(.segment) div{font-size:1.50rem}}@media only screen and (max-width:667px){#stacks_in_30042 h1,#stacks_in_30042 div{text-align:center !important}#stacks_out_30042{display:block !important}}#stacks_in_30042 h1,#stacks_in_30042 div{color:rgba(21, 47, 103, 1.00)}#stacks_in_30042 h1 a,#stacks_in_30042 div a{color:rgba(21, 47, 103, 1.00)}#stacks_in_30042 h1 a:hover,#stacks_in_30042 div a:hover{color:rgba(15, 35, 77, 1.00)}#stacks_in_30042 small,#stacks_in_30042 small div{color:rgba(111, 111, 111, 1.00)}#stacks_in_30042 .hTxt:not(.vault-font),.no-default:not(.custom-font) .hTxt:not(.vault-font){font-family:"Roboto",Sans-Serif;font-weight:400;font-style:normal}#stacks_in_30042 .hTxt.segment[data-seg="segment1"]{font-family:"Archivo Black",Sans-Serif;font-weight:400;font-style:normal}#stacks_in_30042 .primary,#stacks_in_30042 .segment{display:inline-block}#stacks_in_30042 .primary.sub-title,#stacks_in_30042 .segment.sub-title{display:block}#stacks_in_30042 [data-seg="segment2"].last-title{display:block}#stacks_in_30042 .segment.no-shadow{text-shadow:none !important}#stacks_in_30042 .segment *{}#stacks_in_30042 .hTxt.primary{vertical-align:baseline}#stacks_in_30042 .segment[data-seg="segment1"]{font-size:100%;color:rgba(213, 0, 0, 1.00);padding:0px 0px 0px 13px;margin:0px 0px 0px 0px;vertical-align:baseline;}#stacks_in_30042 .segment[data-seg="segment1"] div{color:rgba(213, 0, 0, 1.00)}#stacks_in_30042 .segment[data-seg="segment1"] div.mez{font-size:100%}


  #stacks_in_30374{text-align:center}    #stacks_in_30374 .button.b-p>.bp-icon>.bp-glyph{color:rgba(255, 255, 255, 1.00)}#stacks_in_30374 .button.b-p>.bp-icon>.bp-glyph{-webkit-transition:color 200ms ease,-webkit-transform 200ms ease;transition:color 200ms ease,-webkit-transform 200ms ease;transition:transform 200ms ease,color 200ms ease;transition:transform 200ms ease,color 200ms ease,-webkit-transform 200ms ease} #stacks_in_30374 .button.b-p:hover>.bp-icon>.bp-glyph{color:rgba(255, 255, 255, 1.00)}       #stacks_in_30374.bp-wrap:not(.block-icon) .button.b-p>.bp-icon{padding-right:12.00px}#stacks_in_30374.bp-wrap.block-icon .button.b-p>.bp-icon{display:block;width:100%;padding-bottom:12.00px}         @media screen and (max-width:641px){#stacks_in_30374>.button.b-p.expand-mob:not(.icon-only),#stacks_in_30374>.dd-wrap>.button.b-p.expand-mob:not(.icon-only){width:100%!important}}@media screen and (min-width:641px){#stacks_in_30374 .button.b-p.expand-large:not(.icon-only),#stacks_in_30374>.dd-wrap>.button.b-p.expand-large:not(.icon-only){width:100%!important}}
   @media screen and (max-width:641px){#stacks_in_30374.bp-wrap{padding:20px 0px 0px 0px}}  @media screen and (min-width:641px){#stacks_in_30374.bp-wrap{padding:20px 0px 0px 0px}}         
  #stacks_in_30374 .button.b-p.custom{border:0px solid rgba(179, 179, 177, 1.00)}#stacks_in_30374 .button.b-p.custom:hover{border:0px solid rgba(179, 179, 177, 1.00)} #stacks_in_30374 .button.b-p{color:rgba(255, 255, 255, 1.00);background-color:rgba(205, 41, 27, 1.00)}#stacks_in_30374 .button.b-p:not(.d-hov){-webkit-transition:color 200ms ease,background-color 200ms ease,box-shadow 200ms ease,border 200ms ease;-webkit-transition:color 200ms ease,background-color 200ms ease,border 200ms ease,-webkit-box-shadow 200ms ease;transition:color 200ms ease,background-color 200ms ease,border 200ms ease,-webkit-box-shadow 200ms ease;transition:color 200ms ease,background-color 200ms ease,box-shadow 200ms ease,border 200ms ease;transition:color 200ms ease,background-color 200ms ease,box-shadow 200ms ease,border 200ms ease,-webkit-box-shadow 200ms ease}  #stacks_in_30374 .button.b-p:not(.bp-hover):hover{color:rgba(255, 255, 255, 0.90)!important; background-color:rgba(21, 47, 103, 1.00);}     
       
  #stacks_in_30374 .d-hov,#stacks_in_30374 .d-hov::before,#stacks_in_30374 .d-hov::after{-webkit-transition-duration:300ms;transition-duration:300ms}#stacks_in_30374 .d-hov.active,#stacks_in_30374 .d-hov.active::before,#stacks_in_30374 .d-hov.active::after{-webkit-transition-duration:0ms;transition-duration:0ms}#stacks_in_30374 .hover-col:not(.button.b-p):not(.bp-zone-item)::before{background:rgba(239, 181, 10, 1.00)!important}#stacks_in_30374 .hover-col::before,#stacks_in_30374 .hover-col::after{-webkit-transition-property:all;transition-property:all;-webkit-transition-duration:.3s;transition-duration:.3s;-webkit-transition-timing-function:ease-out;transition-timing-function:ease-out}#stacks_in_30374 .hover-col:hover::before{background:rgba(239, 181, 10, 1.00)}#stacks_in_30374 .hover-col.active::before{background:rgba(207, 0, 32, 1.00)}#stacks_in_30374 .d-hov-ripple-out:hover::before{border:rgba(239, 181, 10, 1.00) solid 2px}#stacks_in_30374 .d-hov-pop:hover,#stacks_in_30374 .d-hov-pop:focus,#stacks_in_30374 .d-hov-pop.active{-webkit-animation-duration:300ms;animation-duration:300ms}#stacks_in_30374 .d-hov[class*="d-hov-underline-"]::before,#stacks_in_30374 .d-hov[class*="d-hov-overline-"]::before{height:4px!important}#stacks_in_30374 .d-hov[class*="d-hov-text-underline-"]>.bp-text::before,#stacks_in_30374 .d-hov[class*="d-hov-text-underline-"] .ml-text::before{bottom:-6px;border-bottom-color:rgba(239, 181, 10, 1.00)!important;border-bottom-width:4px;-webkit-transition-duration:300ms;transition-duration:300ms}#stacks_in_30374 .d-hov[class*="d-hov-text-underline-"].active>.bp-text::before,#stacks_in_30374 .d-hov[class*="d-hov-text-underline-"].active .ml-text::before{-webkit-transition-duration:0ms;transition-duration:0ms;border-bottom-color:rgba(207, 0, 32, 1.00)!important}#stacks_in_30374 .d-hov-reveal:hover::before,#stacks_in_30374 .d-hov-reveal.active::before{border-width:4px!important} 
               
@important "partials/maps";
.animated {
  animation-duration: 1s;
  animation-fill-mode: both; }
  .animated.infinite {
    animation-iteration-count: infinite; }
  .animated.hinge {
    animation-duration: 2s; }
  .animated.flipOutX, .animated.flipOutY, .animated.bounceIn, .animated.bounceOut {
    animation-duration: .75s; }

@keyframes bounce {
  from, 20%, 53%, 80%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transform: translate3d(0, 0, 0); }
  40%, 43% {
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    transform: translate3d(0, -30px, 0); }
  70% {
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    transform: translate3d(0, -15px, 0); }
  90% {
    transform: translate3d(0, -4px, 0); } }

.bounce {
  animation-name: bounce;
  transform-origin: center bottom; }

@keyframes flash {
  from, 50%, to {
    opacity: 1; }
  25%, 75% {
    opacity: 0; } }

.flash {
  animation-name: flash; }

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */

@keyframes pulse {
  from {
    transform: scale3d(1, 1, 1); }
  50% {
    transform: scale3d(1.05, 1.05, 1.05); }
  to {
    transform: scale3d(1, 1, 1); } }

.pulse {
  animation-name: pulse; }

@keyframes rubberBand {
  from {
    transform: scale3d(1, 1, 1); }
  30% {
    transform: scale3d(1.25, 0.75, 1); }
  40% {
    transform: scale3d(0.75, 1.25, 1); }
  50% {
    transform: scale3d(1.15, 0.85, 1); }
  65% {
    transform: scale3d(0.95, 1.05, 1); }
  75% {
    transform: scale3d(1.05, 0.95, 1); }
  to {
    transform: scale3d(1, 1, 1); } }

.rubberBand {
  animation-name: rubberBand; }

@keyframes shake {
  from, to {
    transform: translate3d(0, 0, 0); }
  10%, 30%, 50%, 70%, 90% {
    transform: translate3d(-10px, 0, 0); }
  20%, 40%, 60%, 80% {
    transform: translate3d(10px, 0, 0); } }

.shake {
  animation-name: shake; }

@keyframes headShake {
  0% {
    transform: translateX(0); }
  6.5% {
    transform: translateX(-6px) rotateY(-9deg); }
  18.5% {
    transform: translateX(5px) rotateY(7deg); }
  31.5% {
    transform: translateX(-3px) rotateY(-5deg); }
  43.5% {
    transform: translateX(2px) rotateY(3deg); }
  50% {
    transform: translateX(0); } }

.headShake {
  animation-timing-function: ease-in-out;
  animation-name: headShake; }

@keyframes swing {
  20% {
    transform: rotate3d(0, 0, 1, 15deg); }
  40% {
    transform: rotate3d(0, 0, 1, -10deg); }
  60% {
    transform: rotate3d(0, 0, 1, 5deg); }
  80% {
    transform: rotate3d(0, 0, 1, -5deg); }
  to {
    transform: rotate3d(0, 0, 1, 0deg); } }

.swing {
  transform-origin: top center;
  animation-name: swing; }

@keyframes tada {
  from {
    transform: scale3d(1, 1, 1); }
  10%, 20% {
    transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg); }
  30%, 50%, 70%, 90% {
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg); }
  40%, 60%, 80% {
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg); }
  to {
    transform: scale3d(1, 1, 1); } }

.tada {
  animation-name: tada; }

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */

@keyframes wobble {
  from {
    transform: none; }
  15% {
    transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg); }
  30% {
    transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg); }
  45% {
    transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg); }
  60% {
    transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg); }
  75% {
    transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg); }
  to {
    transform: none; } }

.wobble {
  animation-name: wobble; }

@keyframes jello {
  from, 11.1%, to {
    transform: none; }
  22.2% {
    transform: skewX(-12.5deg) skewY(-12.5deg); }
  33.3% {
    transform: skewX(6.25deg) skewY(6.25deg); }
  44.4% {
    transform: skewX(-3.125deg) skewY(-3.125deg); }
  55.5% {
    transform: skewX(1.5625deg) skewY(1.5625deg); }
  66.6% {
    transform: skewX(-0.78125deg) skewY(-0.78125deg); }
  77.7% {
    transform: skewX(0.39063deg) skewY(0.39063deg); }
  88.8% {
    transform: skewX(-0.19531deg) skewY(-0.19531deg); } }

.jello {
  animation-name: jello;
  transform-origin: center; }

@keyframes bounceIn {
  from, 20%, 40%, 60%, 80%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  0% {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3); }
  20% {
    transform: scale3d(1.1, 1.1, 1.1); }
  40% {
    transform: scale3d(0.9, 0.9, 0.9); }
  60% {
    opacity: 1;
    transform: scale3d(1.03, 1.03, 1.03); }
  80% {
    transform: scale3d(0.97, 0.97, 0.97); }
  to {
    opacity: 1;
    transform: scale3d(1, 1, 1); } }

.bounceIn {
  animation-name: bounceIn; }

@keyframes bounceInDown {
  from, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  0% {
    opacity: 0;
    transform: translate3d(0, -3000px, 0); }
  60% {
    opacity: 1;
    transform: translate3d(0, 25px, 0); }
  75% {
    transform: translate3d(0, -10px, 0); }
  90% {
    transform: translate3d(0, 5px, 0); }
  to {
    transform: none; } }

.bounceInDown {
  animation-name: bounceInDown; }

@keyframes bounceInLeft {
  from, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  0% {
    opacity: 0;
    transform: translate3d(-3000px, 0, 0); }
  60% {
    opacity: 1;
    transform: translate3d(25px, 0, 0); }
  75% {
    transform: translate3d(-10px, 0, 0); }
  90% {
    transform: translate3d(5px, 0, 0); }
  to {
    transform: none; } }

.bounceInLeft {
  animation-name: bounceInLeft; }

@keyframes bounceInRight {
  from, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  from {
    opacity: 0;
    transform: translate3d(3000px, 0, 0); }
  60% {
    opacity: 1;
    transform: translate3d(-25px, 0, 0); }
  75% {
    transform: translate3d(10px, 0, 0); }
  90% {
    transform: translate3d(-5px, 0, 0); }
  to {
    transform: none; } }

.bounceInRight {
  animation-name: bounceInRight; }

@keyframes bounceInUp {
  from, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  from {
    opacity: 0;
    transform: translate3d(0, 3000px, 0); }
  60% {
    opacity: 1;
    transform: translate3d(0, -20px, 0); }
  75% {
    transform: translate3d(0, 10px, 0); }
  90% {
    transform: translate3d(0, -5px, 0); }
  to {
    transform: translate3d(0, 0, 0); } }

.bounceInUp {
  animation-name: bounceInUp; }

@keyframes bounceOut {
  20% {
    transform: scale3d(0.9, 0.9, 0.9); }
  50%, 55% {
    opacity: 1;
    transform: scale3d(1.1, 1.1, 1.1); }
  to {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3); } }

.bounceOut {
  animation-name: bounceOut; }

@keyframes bounceOutDown {
  20% {
    transform: translate3d(0, 10px, 0); }
  40%, 45% {
    opacity: 1;
    transform: translate3d(0, -20px, 0); }
  to {
    opacity: 0;
    transform: translate3d(0, 2000px, 0); } }

.bounceOutDown {
  animation-name: bounceOutDown; }

@keyframes bounceOutLeft {
  20% {
    opacity: 1;
    transform: translate3d(20px, 0, 0); }
  to {
    opacity: 0;
    transform: translate3d(-2000px, 0, 0); } }

.bounceOutLeft {
  animation-name: bounceOutLeft; }

@keyframes bounceOutRight {
  20% {
    opacity: 1;
    transform: translate3d(-20px, 0, 0); }
  to {
    opacity: 0;
    transform: translate3d(2000px, 0, 0); } }

.bounceOutRight {
  animation-name: bounceOutRight; }

@keyframes bounceOutUp {
  20% {
    transform: translate3d(0, -10px, 0); }
  40%, 45% {
    opacity: 1;
    transform: translate3d(0, 20px, 0); }
  to {
    opacity: 0;
    transform: translate3d(0, -2000px, 0); } }

.bounceOutUp {
  animation-name: bounceOutUp; }

@keyframes fadeIn {
  from {
    opacity: 0; }
  to {
    opacity: 1; } }

.fadeIn {
  animation-name: fadeIn; }

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translate3d(0, -100%, 0); }
  to {
    opacity: 1;
    transform: none; } }

.fadeInDown {
  animation-name: fadeInDown; }

@keyframes fadeInDownBig {
  from {
    opacity: 0;
    transform: translate3d(0, -2000px, 0); }
  to {
    opacity: 1;
    transform: none; } }

.fadeInDownBig {
  animation-name: fadeInDownBig; }

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translate3d(-100%, 0, 0); }
  to {
    opacity: 1;
    transform: none; } }

.fadeInLeft {
  animation-name: fadeInLeft; }

@keyframes fadeInLeftBig {
  from {
    opacity: 0;
    transform: translate3d(-2000px, 0, 0); }
  to {
    opacity: 1;
    transform: none; } }

.fadeInLeftBig {
  animation-name: fadeInLeftBig; }

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translate3d(100%, 0, 0); }
  to {
    opacity: 1;
    transform: none; } }

.fadeInRight {
  animation-name: fadeInRight; }

@keyframes fadeInRightBig {
  from {
    opacity: 0;
    transform: translate3d(2000px, 0, 0); }
  to {
    opacity: 1;
    transform: none; } }

.fadeInRightBig {
  animation-name: fadeInRightBig; }

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translate3d(0, 100%, 0); }
  to {
    opacity: 1;
    transform: none; } }

.fadeInUp {
  animation-name: fadeInUp; }

@keyframes fadeInUpBig {
  from {
    opacity: 0;
    transform: translate3d(0, 2000px, 0); }
  to {
    opacity: 1;
    transform: none; } }

.fadeInUpBig {
  animation-name: fadeInUpBig; }

@keyframes fadeOut {
  from {
    opacity: 1; }
  to {
    opacity: 0; } }

.fadeOut {
  animation-name: fadeOut; }

@keyframes fadeOutDown {
  from {
    opacity: 1; }
  to {
    opacity: 0;
    transform: translate3d(0, 100%, 0); } }

.fadeOutDown {
  animation-name: fadeOutDown; }

@keyframes fadeOutDownBig {
  from {
    opacity: 1; }
  to {
    opacity: 0;
    transform: translate3d(0, 2000px, 0); } }

.fadeOutDownBig {
  animation-name: fadeOutDownBig; }

@keyframes fadeOutLeft {
  from {
    opacity: 1; }
  to {
    opacity: 0;
    transform: translate3d(-100%, 0, 0); } }

.fadeOutLeft {
  animation-name: fadeOutLeft; }

@keyframes fadeOutLeftBig {
  from {
    opacity: 1; }
  to {
    opacity: 0;
    transform: translate3d(-2000px, 0, 0); } }

.fadeOutLeftBig {
  animation-name: fadeOutLeftBig; }

@keyframes fadeOutRight {
  from {
    opacity: 1; }
  to {
    opacity: 0;
    transform: translate3d(100%, 0, 0); } }

.fadeOutRight {
  animation-name: fadeOutRight; }

@keyframes fadeOutRightBig {
  from {
    opacity: 1; }
  to {
    opacity: 0;
    transform: translate3d(2000px, 0, 0); } }

.fadeOutRightBig {
  animation-name: fadeOutRightBig; }

@keyframes fadeOutUp {
  from {
    opacity: 1; }
  to {
    opacity: 0;
    transform: translate3d(0, -100%, 0); } }

.fadeOutUp {
  animation-name: fadeOutUp; }

@keyframes fadeOutUpBig {
  from {
    opacity: 1; }
  to {
    opacity: 0;
    transform: translate3d(0, -2000px, 0); } }

.fadeOutUpBig {
  animation-name: fadeOutUpBig; }

@keyframes flip {
  from {
    transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    animation-timing-function: ease-out; }
  40% {
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    animation-timing-function: ease-out; }
  50% {
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    animation-timing-function: ease-in; }
  80% {
    transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
    animation-timing-function: ease-in; }
  to {
    transform: perspective(400px);
    animation-timing-function: ease-in; } }

.animated.flip {
  -webkit-backface-visibility: visible;
  backface-visibility: visible;
  animation-name: flip; }

@keyframes flipInX {
  from {
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    animation-timing-function: ease-in;
    opacity: 0; }
  40% {
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    animation-timing-function: ease-in; }
  60% {
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1; }
  80% {
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg); }
  to {
    transform: perspective(400px); } }

.flipInX {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  animation-name: flipInX; }

@keyframes flipInY {
  from {
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    animation-timing-function: ease-in;
    opacity: 0; }
  40% {
    transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    animation-timing-function: ease-in; }
  60% {
    transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    opacity: 1; }
  80% {
    transform: perspective(400px) rotate3d(0, 1, 0, -5deg); }
  to {
    transform: perspective(400px); } }

.flipInY {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  animation-name: flipInY; }

@keyframes flipOutX {
  from {
    transform: perspective(400px); }
  30% {
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    opacity: 1; }
  to {
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0; } }

.flipOutX {
  animation-name: flipOutX;
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important; }

@keyframes flipOutY {
  from {
    transform: perspective(400px); }
  30% {
    transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    opacity: 1; }
  to {
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    opacity: 0; } }

.flipOutY {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  animation-name: flipOutY; }

@keyframes lightSpeedIn {
  from {
    transform: translate3d(100%, 0, 0) skewX(-30deg);
    opacity: 0; }
  60% {
    transform: skewX(20deg);
    opacity: 1; }
  80% {
    transform: skewX(-5deg);
    opacity: 1; }
  to {
    transform: none;
    opacity: 1; } }

.lightSpeedIn {
  animation-name: lightSpeedIn;
  animation-timing-function: ease-out; }

@keyframes lightSpeedOut {
  from {
    opacity: 1; }
  to {
    transform: translate3d(100%, 0, 0) skewX(30deg);
    opacity: 0; } }

.lightSpeedOut {
  animation-name: lightSpeedOut;
  animation-timing-function: ease-in; }

@keyframes rotateIn {
  from {
    transform-origin: center;
    transform: rotate3d(0, 0, 1, -200deg);
    opacity: 0; }
  to {
    transform-origin: center;
    transform: none;
    opacity: 1; } }

.rotateIn {
  animation-name: rotateIn; }

@keyframes rotateInDownLeft {
  from {
    transform-origin: left bottom;
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0; }
  to {
    transform-origin: left bottom;
    transform: none;
    opacity: 1; } }

.rotateInDownLeft {
  animation-name: rotateInDownLeft; }

@keyframes rotateInDownRight {
  from {
    transform-origin: right bottom;
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0; }
  to {
    transform-origin: right bottom;
    transform: none;
    opacity: 1; } }

.rotateInDownRight {
  animation-name: rotateInDownRight; }

@keyframes rotateInUpLeft {
  from {
    transform-origin: left bottom;
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0; }
  to {
    transform-origin: left bottom;
    transform: none;
    opacity: 1; } }

.rotateInUpLeft {
  animation-name: rotateInUpLeft; }

@keyframes rotateInUpRight {
  from {
    transform-origin: right bottom;
    transform: rotate3d(0, 0, 1, -90deg);
    opacity: 0; }
  to {
    transform-origin: right bottom;
    transform: none;
    opacity: 1; } }

.rotateInUpRight {
  animation-name: rotateInUpRight; }

@keyframes rotateOut {
  from {
    transform-origin: center;
    opacity: 1; }
  to {
    transform-origin: center;
    transform: rotate3d(0, 0, 1, 200deg);
    opacity: 0; } }

.rotateOut {
  animation-name: rotateOut; }

@keyframes rotateOutDownLeft {
  from {
    transform-origin: left bottom;
    opacity: 1; }
  to {
    transform-origin: left bottom;
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0; } }

.rotateOutDownLeft {
  animation-name: rotateOutDownLeft; }

@keyframes rotateOutDownRight {
  from {
    transform-origin: right bottom;
    opacity: 1; }
  to {
    transform-origin: right bottom;
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0; } }

.rotateOutDownRight {
  animation-name: rotateOutDownRight; }

@keyframes rotateOutUpLeft {
  from {
    transform-origin: left bottom;
    opacity: 1; }
  to {
    transform-origin: left bottom;
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0; } }

.rotateOutUpLeft {
  animation-name: rotateOutUpLeft; }

@keyframes rotateOutUpRight {
  from {
    transform-origin: right bottom;
    opacity: 1; }
  to {
    transform-origin: right bottom;
    transform: rotate3d(0, 0, 1, 90deg);
    opacity: 0; } }

.rotateOutUpRight {
  animation-name: rotateOutUpRight; }

@keyframes hinge {
  0% {
    transform-origin: top left;
    animation-timing-function: ease-in-out; }
  20%, 60% {
    transform: rotate3d(0, 0, 1, 80deg);
    transform-origin: top left;
    animation-timing-function: ease-in-out; }
  40%, 80% {
    transform: rotate3d(0, 0, 1, 60deg);
    transform-origin: top left;
    animation-timing-function: ease-in-out;
    opacity: 1; }
  to {
    transform: translate3d(0, 700px, 0);
    opacity: 0; } }

.hinge {
  animation-name: hinge; }

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */

@keyframes rollIn {
  from {
    opacity: 0;
    transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg); }
  to {
    opacity: 1;
    transform: none; } }

.rollIn {
  animation-name: rollIn; }

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */

@keyframes rollOut {
  from {
    opacity: 1; }
  to {
    opacity: 0;
    transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg); } }

.rollOut {
  animation-name: rollOut; }

@keyframes zoomIn {
  from {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3); }
  50% {
    opacity: 1; } }

.zoomIn {
  animation-name: zoomIn; }

@keyframes zoomInDown {
  from {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  60% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); } }

.zoomInDown {
  animation-name: zoomInDown; }

@keyframes zoomInLeft {
  from {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  60% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); } }

.zoomInLeft {
  animation-name: zoomInLeft; }

@keyframes zoomInRight {
  from {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  60% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); } }

.zoomInRight {
  animation-name: zoomInRight; }

@keyframes zoomInUp {
  from {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  60% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); } }

.zoomInUp {
  animation-name: zoomInUp; }

@keyframes zoomOut {
  from {
    opacity: 1; }
  50% {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3); }
  to {
    opacity: 0; } }

.zoomOut {
  animation-name: zoomOut; }

@keyframes zoomOutDown {
  40% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  to {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    transform-origin: center bottom;
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); } }

.zoomOutDown {
  animation-name: zoomOutDown; }

@keyframes zoomOutLeft {
  40% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0); }
  to {
    opacity: 0;
    transform: scale(0.1) translate3d(-2000px, 0, 0);
    transform-origin: left center; } }

.zoomOutLeft {
  animation-name: zoomOutLeft; }

@keyframes zoomOutRight {
  40% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0); }
  to {
    opacity: 0;
    transform: scale(0.1) translate3d(2000px, 0, 0);
    transform-origin: right center; } }

.zoomOutRight {
  animation-name: zoomOutRight; }

@keyframes zoomOutUp {
  40% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  to {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    transform-origin: center bottom;
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); } }

.zoomOutUp {
  animation-name: zoomOutUp; }

@keyframes slideInDown {
  from {
    transform: translate3d(0, -100%, 0);
    visibility: visible; }
  to {
    transform: translate3d(0, 0, 0); } }

.slideInDown {
  animation-name: slideInDown; }

@keyframes slideInLeft {
  from {
    transform: translate3d(-100%, 0, 0);
    visibility: visible; }
  to {
    transform: translate3d(0, 0, 0); } }

.slideInLeft {
  animation-name: slideInLeft; }

@keyframes slideInRight {
  from {
    transform: translate3d(100%, 0, 0);
    visibility: visible; }
  to {
    transform: translate3d(0, 0, 0); } }

.slideInRight {
  animation-name: slideInRight; }

@keyframes slideInUp {
  from {
    transform: translate3d(0, 100%, 0);
    visibility: visible; }
  to {
    transform: translate3d(0, 0, 0); } }

.slideInUp {
  animation-name: slideInUp; }

@keyframes slideOutDown {
  from {
    transform: translate3d(0, 0, 0); }
  to {
    visibility: hidden;
    transform: translate3d(0, 100%, 0); } }

.slideOutDown {
  animation-name: slideOutDown; }

@keyframes slideOutLeft {
  from {
    transform: translate3d(0, 0, 0); }
  to {
    visibility: hidden;
    transform: translate3d(-100%, 0, 0); } }

.slideOutLeft {
  animation-name: slideOutLeft; }

@keyframes slideOutRight {
  from {
    transform: translate3d(0, 0, 0); }
  to {
    visibility: hidden;
    transform: translate3d(100%, 0, 0); } }

.slideOutRight {
  animation-name: slideOutRight; }

@keyframes slideOutUp {
  from {
    transform: translate3d(0, 0, 0); }
  to {
    visibility: hidden;
    transform: translate3d(0, -100%, 0); } }

.slideOutUp {
  animation-name: slideOutUp; }

#noticeContainer_stacks_in_30378 {
  /*  */
  display: block;
  position: relative; }
  #noticeContainer_stacks_in_30378 .clearfix:before {
    content: " ";
    display: table; }
  #noticeContainer_stacks_in_30378 .clearfix:after {
    content: " ";
    display: table;
    clear: both; }

#notice_stacks_in_30378 {
  /*  */
  /*  */
  opacity: 0;
  left: 0px;
  right: 0px;
  max-height: 100%;
  /*  */
  position: fixed;
  /*  */
  overflow-y: auto;
  visibility: hidden;
  /*  */
  z-index: 999999;
  /*  */
  max-width: 100%;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  bottom: 0px;
  /*  */
  /*  */
  /*  */
  /*  */
  margin-left: auto;
  margin-right: auto;
  /*  */
  /*  */
  /*  */
  /*  */
  background: rgba(21, 47, 103, 0.90);
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  font-family: "Nunito";
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  color: rgba(255, 255, 255, 1.00);
  border-radius: 0px 0px 0px 0px; }
  #notice_stacks_in_30378.show {
    opacity: 1;
    visibility: visible; }
  #notice_stacks_in_30378.hide {
    opacity: 0;
    visibility: hidden; }
  #notice_stacks_in_30378.cookie-hide {
    display: none; }

#notice_stacks_in_30378 .notice-inner-stacks {
  clear: both;
  margin: 0 auto;
  max-width: 960px;
  padding: 10px 10px 35px 10px; }

#notice_stacks_in_30378 .notice-inner {
  clear: both;
  margin: 0 auto;
  max-width: 960px;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
  padding: 10px 10px 35px 10px;
  /*  */
  /*  */
  text-align: center;
  /*  */
  /*  */
  /*  */
  display: -ms-flexbox;
  display: flex;
  /*  */
  /*  */ }
  #notice_stacks_in_30378 .notice-inner-text {
    -ms-flex: 0 1 auto;
        flex: 0 1 auto;
    max-width: 100%;
    font-size: 16px;
    line-height: 22px; }
  #notice_stacks_in_30378 .notice-inner-icon {
    /*  */
    /*  */
    /*  */
    -ms-flex-item-align: center;
        -ms-grid-row-align: center;
        align-self: center;
    /*  */
    /*  */
    -ms-flex: 0 1 auto;
        flex: 0 1 auto;
    color: rgba(255, 255, 255, 1.00);
    padding: 5px 20px 5px 10px; }
    #notice_stacks_in_30378 .notice-inner-icon i {
      font-size: 32px;
      vertical-align: middle; }

#notice_stacks_in_30378 .notice-close-btn {
  float: right;
  cursor: pointer;
  color: rgba(255, 255, 255, 1.00);
  padding: 10px 10px 0px 10px; }
  #notice_stacks_in_30378 .notice-close-btn i {
    cursor: pointer;
    vertical-align: middle; }

#notice_stacks_in_30378 .notice-action {
  height: 40px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  /*  */
  color: inherit;
  background: none;
  /*  */ }
  #notice_stacks_in_30378 .notice-action i {
    vertical-align: middle; }
  #notice_stacks_in_30378 .notice-action-close {
    border-style: solid;
    border-width: 1px 0 0 0;
    border-color: rgba(255, 255, 255, 0.30); }
    #notice_stacks_in_30378 .notice-action-close:hover {
      /*  */ }
  #notice_stacks_in_30378 .notice-action-custom {
    border-style: solid;
    border-width: 1px 0 0 1px;
    border-color: rgba(255, 255, 255, 0.30); }
    #notice_stacks_in_30378 .notice-action-custom:hover {
      /*  */ }
    #notice_stacks_in_30378 .notice-action-custom a {
      color: inherit;
      width: 100%;
      height: 100%;
      /*  */
      display: -ms-flexbox;
      display: flex;
      -ms-flex-align: center;
          align-items: center;
      text-decoration: none;
      -ms-flex-pack: center;
          justify-content: center;
      /*  */ }
  #notice_stacks_in_30378 .notice-action-btn {
    height: 100%;
    display: -ms-flexbox;
    display: flex;
    -ms-flex: 1 0 auto;
        flex: 1 0 auto;
    text-align: center;
    -ms-flex-align: center;
        align-items: center;
    box-sizing: border-box;
    -ms-flex-pack: center;
        justify-content: center; }
    #notice_stacks_in_30378 .notice-action-btn:hover {
      cursor: pointer; }

@media (max-width: 480px) {
  #notice_stacks_in_30378 .notice-action {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    height: 90px; }
    #notice_stacks_in_30378 .notice-action-custom {
      border-width: 1px 0 0 0; }
    #notice_stacks_in_30378 .notice-action div {
      height: 50%;
      width: 100%; } }

/*  */
@media all and (-ms-high-contrast: none) {
  #notice_stacks_in_30378 {
    width: 100%; }
    #notice_stacks_in_30378 *::-ms-backdrop, #notice_stacks_in_30378 #notice_stacks_in_30378 {
      width: 100%; } }

/*  */
#stacks_in_30436 h1,#stacks_in_30436 .hTxt:not(.segment) div{font-size:3.00rem}@media all and (max-width:640px){#stacks_in_30436 h1,#stacks_in_30436 .hTxt:not(.segment) div{font-size:1.50rem}}#stacks_in_30436 h1,#stacks_in_30436 div{color:rgba(205, 41, 27, 1.00)}#stacks_in_30436 h1 a,#stacks_in_30436 div a{color:rgba(205, 41, 27, 1.00)}#stacks_in_30436 h1 a:hover,#stacks_in_30436 div a:hover{color:rgba(153, 30, 20, 1.00)}#stacks_in_30436 small,#stacks_in_30436 small div{color:rgba(111, 111, 111, 1.00)}#stacks_in_30436 .hTxt:not(.vault-font),.no-default:not(.custom-font) .hTxt:not(.vault-font){font-family:"Archivo Black",Sans-Serif;font-weight:400;font-style:normal}#stacks_in_30436 .hTxt.segment[data-seg="segment1"]{font-family:"Roboto ",Sans-Serif;font-weight:400;font-style:normal}#stacks_in_30436 .primary,#stacks_in_30436 .segment{display:inline-block}#stacks_in_30436 .primary.sub-title,#stacks_in_30436 .segment.sub-title{display:block}#stacks_in_30436 [data-seg="segment2"].last-title{display:block}#stacks_in_30436 .segment.no-shadow{text-shadow:none !important}#stacks_in_30436 .segment *{}#stacks_in_30436 .hTxt.primary{vertical-align:baseline}#stacks_in_30436 .segment[data-seg="segment1"]{font-size:100%;color:rgba(10, 33, 88, 1.00);padding:0px 0px 0px 13px;margin:0px 0px 0px 0px;vertical-align:baseline;}#stacks_in_30436 .segment[data-seg="segment1"] div{color:rgba(10, 33, 88, 1.00)}#stacks_in_30436 .segment[data-seg="segment1"] div.mez{font-size:100%}


#stacks_in_30397 {
	padding: 20px 0px 0px 0px;
}

#stacks_in_30491 h1,#stacks_in_30491 .hTxt:not(.segment) div{font-size:3.00rem}@media all and (max-width:640px){#stacks_in_30491 h1,#stacks_in_30491 .hTxt:not(.segment) div{font-size:1.50rem}}#stacks_in_30491 h1,#stacks_in_30491 div{color:rgba(21, 47, 103, 1.00)}#stacks_in_30491 h1 a,#stacks_in_30491 div a{color:rgba(21, 47, 103, 1.00)}#stacks_in_30491 h1 a:hover,#stacks_in_30491 div a:hover{color:rgba(15, 35, 77, 1.00)}#stacks_in_30491 small,#stacks_in_30491 small div{color:rgba(111, 111, 111, 1.00)}#stacks_in_30491 .hTxt:not(.vault-font),.no-default:not(.custom-font) .hTxt:not(.vault-font){font-family:"Roboto",Sans-Serif;font-weight:400;font-style:normal}#stacks_in_30491 .hTxt.segment[data-seg="segment1"]{font-family:"Archivo Black",Sans-Serif;font-weight:400;font-style:normal}#stacks_in_30491 .primary,#stacks_in_30491 .segment{display:inline-block}#stacks_in_30491 .primary.sub-title,#stacks_in_30491 .segment.sub-title{display:block}#stacks_in_30491 [data-seg="segment2"].last-title{display:block}#stacks_in_30491 .segment.no-shadow{text-shadow:none !important}#stacks_in_30491 .segment *{}#stacks_in_30491 .hTxt.primary{vertical-align:baseline}#stacks_in_30491 .segment[data-seg="segment1"]{font-size:100%;color:rgba(213, 0, 0, 1.00);padding:0px 0px 0px 13px;margin:0px 0px 0px 0px;vertical-align:baseline;}#stacks_in_30491 .segment[data-seg="segment1"] div{color:rgba(213, 0, 0, 1.00)}#stacks_in_30491 .segment[data-seg="segment1"] div.mez{font-size:100%}

/*
1.0.0
*/
.hlh-margin_stacks_in_30517 {
  margin: 50px 50px 50px 50px;
}
.halo-hyperlink_stacks_in_30517 {
  position: relative;
  z-index: 0;
  max-width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.halo-hyperlink_stacks_in_30517[hlh-aspect="1"] .halo-hyperlink-content-wrap {
  /* aspect-ratio: 1;
  width: 200px;
  max-width: 100%; */
}
.halo-hyperlink_stacks_in_30517 > a,
.halo-hyperlink_stacks_in_30517 > .observer {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  pointer-events: none;
}
.halo-hyperlink_stacks_in_30517 > a {
  pointer-events: auto;
  cursor: pointer;
  display: block;
  z-index: 4;
}
.halo-hyperlink_stacks_in_30517 > .halo-hyperlink-effect-wrap {
  position: absolute;
  left: -50px;
  top: -50px;
  bottom: -50px;
  right: -50px;
  z-index: 1;
  pointer-events: none;
}
.halo-hyperlink_stacks_in_30517 > .halo-hyperlink-effect-wrap.hhw-75 {
  left: -75px;
  top: -75px;
  bottom: -75px;
  right: -75px;
}
.halo-hyperlink_stacks_in_30517 > .halo-hyperlink-effect-wrap.hhw-150 {
  left: -150px;
  top: -150px;
  bottom: -150px;
  right: -150px;
}

.halo-hyperlink_stacks_in_30517 .halo-hyperlink-bg-inactive > div:nth-child(2),
.halo-hyperlink_stacks_in_30517 .halo-hyperlink-effect .halo-hyperlink-svg,
.halo-hyperlink_stacks_in_30517 .halo-hyperlink-inactive {
  
  transition: opacity 300ms ease;
  
}
.halo-hyperlink_stacks_in_30517 .halo-hyperlink-bg-wrap {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%,-50%);
  z-index: 0;
  opacity: 1;
  
  height: 200px;
  width: 200px;
  
}
.halo-hyperlink_stacks_in_30517 .halo-hyperlink-bg-inactive,
.halo-hyperlink_stacks_in_30517 .halo-hyperlink-bg {
  position: absolute;
  left: calc(3px / 2 - 1px);
  right: calc(3px / 2 - 1px);
  bottom: calc(3px / 2 - 1px);
  top: calc(3px / 2 - 1px);
  border-radius: 50%;
  
  overflow: hidden;
  
}
.halo-hyperlink_stacks_in_30517 .halo-hyperlink-bg-inactive {
  left: -1px;
  right: -1px;
  bottom: -1px;
  top: -1px;
}
.halo-hyperlink_stacks_in_30517 .halo-hyperlink-bg > div {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
}




.halo-hyperlink_stacks_in_30517 .halo-hyperlink-bg-inactive > div:nth-child(1) {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  pointer-events: none;
  background-color: rgba(0, 0, 0, 0.00);
}

.halo-hyperlink_stacks_in_30517 .halo-hyperlink-inactive {
  display: none;
}

.halo-hyperlink_stacks_in_30517 .halo-hyperlink-bg > div {
  
  
  background-color : transparent;
  
  background-image : url();
  
  opacity: 1.000000;
  background-position: center;
  
  
  background-size: cover;
}
.halo-hyperlink_stacks_in_30517 > .halo-hyperlink-effect-wrap > .halo-hyperlink-wrap {
  position: absolute;
  height: 100%;
  width: 100%;
  /* overflow: hidden; */
}
.halo-hyperlink_stacks_in_30517 > .halo-hyperlink-effect-wrap > .halo-hyperlink-wrap svg {
  width: 100%;
  height: 100%;
  stroke: none;
  fill: white;
  display: block;
  position: absolute;
}
.halo-hyperlink_stacks_in_30517 > .halo-hyperlink-effect-wrap > .halo-hyperlink-wrap > svg {
  width: 100%;
  overflow: visible;
  position: relative;
  z-index: 1;
}
/* .halo-hyperlink_stacks_in_30517 > .halo-hyperlink-effect-wrap > .halo-hyperlink-wrap:after {
  background: #FFFFFF;
} */
.halo-hyperlink_stacks_in_30517 .halo-hyperlink-content-wrap {
  position: relative;
  z-index: 3;
  /* z-index: 0; */
  display: grid;
  height: 100%;
  width: 100%;
  align-items: center;
  justify-content: center;
  

}


.halo-hyperlink_stacks_in_30517 .halo-hyperlink-content-wrap > div:nth-child(2) {
  
}


#stacks_in_30525 h1,#stacks_in_30525 .hTxt:not(.segment) div{font-size:2.00rem}@media all and (max-width:640px){#stacks_in_30525 h1,#stacks_in_30525 .hTxt:not(.segment) div{font-size:1.50rem}}#stacks_in_30525 h1,#stacks_in_30525 div{color:rgba(205, 41, 27, 1.00)}#stacks_in_30525 h1 a,#stacks_in_30525 div a{color:rgba(205, 41, 27, 1.00)}#stacks_in_30525 h1 a:hover,#stacks_in_30525 div a:hover{color:rgba(153, 30, 20, 1.00)}#stacks_in_30525 small,#stacks_in_30525 small div{color:rgba(111, 111, 111, 1.00)}#stacks_in_30525 .hTxt:not(.vault-font),.no-default:not(.custom-font) .hTxt:not(.vault-font){font-family:"Roboto",Sans-Serif;font-weight:400;font-style:normal}#stacks_in_30525 .hTxt.segment[data-seg="segment1"]{font-family:"Archivo Black",Sans-Serif;font-weight:400;font-style:normal}#stacks_in_30525 .primary,#stacks_in_30525 .segment{display:inline-block}#stacks_in_30525 .primary.sub-title,#stacks_in_30525 .segment.sub-title{display:block}#stacks_in_30525 [data-seg="segment2"].last-title{display:block}#stacks_in_30525 .segment.no-shadow{text-shadow:none !important}#stacks_in_30525 .segment *{}#stacks_in_30525 .hTxt.primary{vertical-align:baseline}#stacks_in_30525 .segment[data-seg="segment1"]{font-size:100%;color:rgba(10, 33, 88, 1.00);padding:0px 0px 0px 13px;margin:0px 0px 0px 0px;vertical-align:baseline;}#stacks_in_30525 .segment[data-seg="segment1"] div{color:rgba(10, 33, 88, 1.00)}#stacks_in_30525 .segment[data-seg="segment1"] div.mez{font-size:100%}

/*
1.0.0
*/
.hlh-margin_stacks_in_30531 {
  margin: 50px 50px 50px 50px;
}
.halo-hyperlink_stacks_in_30531 {
  position: relative;
  z-index: 0;
  max-width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.halo-hyperlink_stacks_in_30531[hlh-aspect="1"] .halo-hyperlink-content-wrap {
  /* aspect-ratio: 1;
  width: 200px;
  max-width: 100%; */
}
.halo-hyperlink_stacks_in_30531 > a,
.halo-hyperlink_stacks_in_30531 > .observer {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  pointer-events: none;
}
.halo-hyperlink_stacks_in_30531 > a {
  pointer-events: auto;
  cursor: pointer;
  display: block;
  z-index: 4;
}
.halo-hyperlink_stacks_in_30531 > .halo-hyperlink-effect-wrap {
  position: absolute;
  left: -50px;
  top: -50px;
  bottom: -50px;
  right: -50px;
  z-index: 1;
  pointer-events: none;
}
.halo-hyperlink_stacks_in_30531 > .halo-hyperlink-effect-wrap.hhw-75 {
  left: -75px;
  top: -75px;
  bottom: -75px;
  right: -75px;
}
.halo-hyperlink_stacks_in_30531 > .halo-hyperlink-effect-wrap.hhw-150 {
  left: -150px;
  top: -150px;
  bottom: -150px;
  right: -150px;
}

.halo-hyperlink_stacks_in_30531 .halo-hyperlink-bg-inactive > div:nth-child(2),
.halo-hyperlink_stacks_in_30531 .halo-hyperlink-effect .halo-hyperlink-svg,
.halo-hyperlink_stacks_in_30531 .halo-hyperlink-inactive {
  
  transition: opacity 300ms ease;
  
}
.halo-hyperlink_stacks_in_30531 .halo-hyperlink-bg-wrap {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%,-50%);
  z-index: 0;
  opacity: 1;
  
  height: 200px;
  width: 200px;
  
}
.halo-hyperlink_stacks_in_30531 .halo-hyperlink-bg-inactive,
.halo-hyperlink_stacks_in_30531 .halo-hyperlink-bg {
  position: absolute;
  left: calc(3px / 2 - 1px);
  right: calc(3px / 2 - 1px);
  bottom: calc(3px / 2 - 1px);
  top: calc(3px / 2 - 1px);
  border-radius: 50%;
  
  overflow: hidden;
  
}
.halo-hyperlink_stacks_in_30531 .halo-hyperlink-bg-inactive {
  left: -1px;
  right: -1px;
  bottom: -1px;
  top: -1px;
}
.halo-hyperlink_stacks_in_30531 .halo-hyperlink-bg > div {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
}




.halo-hyperlink_stacks_in_30531 .halo-hyperlink-bg-inactive > div:nth-child(1) {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  pointer-events: none;
  background-color: rgba(0, 0, 0, 0.00);
}

.halo-hyperlink_stacks_in_30531 .halo-hyperlink-inactive {
  display: none;
}

.halo-hyperlink_stacks_in_30531 .halo-hyperlink-bg > div {
  
  
  background-color : transparent;
  
  background-image : url();
  
  opacity: 1.000000;
  background-position: center;
  
  
  background-size: cover;
}
.halo-hyperlink_stacks_in_30531 > .halo-hyperlink-effect-wrap > .halo-hyperlink-wrap {
  position: absolute;
  height: 100%;
  width: 100%;
  /* overflow: hidden; */
}
.halo-hyperlink_stacks_in_30531 > .halo-hyperlink-effect-wrap > .halo-hyperlink-wrap svg {
  width: 100%;
  height: 100%;
  stroke: none;
  fill: white;
  display: block;
  position: absolute;
}
.halo-hyperlink_stacks_in_30531 > .halo-hyperlink-effect-wrap > .halo-hyperlink-wrap > svg {
  width: 100%;
  overflow: visible;
  position: relative;
  z-index: 1;
}
/* .halo-hyperlink_stacks_in_30531 > .halo-hyperlink-effect-wrap > .halo-hyperlink-wrap:after {
  background: #FFFFFF;
} */
.halo-hyperlink_stacks_in_30531 .halo-hyperlink-content-wrap {
  position: relative;
  z-index: 3;
  /* z-index: 0; */
  display: grid;
  height: 100%;
  width: 100%;
  align-items: center;
  justify-content: center;
  

}


.halo-hyperlink_stacks_in_30531 .halo-hyperlink-content-wrap > div:nth-child(2) {
  
}


#stacks_in_30536 h1,#stacks_in_30536 .hTxt:not(.segment) div{font-size:2.00rem}@media all and (max-width:640px){#stacks_in_30536 h1,#stacks_in_30536 .hTxt:not(.segment) div{font-size:1.50rem}}#stacks_in_30536 h1,#stacks_in_30536 div{color:rgba(205, 41, 27, 1.00)}#stacks_in_30536 h1 a,#stacks_in_30536 div a{color:rgba(205, 41, 27, 1.00)}#stacks_in_30536 h1 a:hover,#stacks_in_30536 div a:hover{color:rgba(153, 30, 20, 1.00)}#stacks_in_30536 small,#stacks_in_30536 small div{color:rgba(111, 111, 111, 1.00)}#stacks_in_30536 .hTxt:not(.vault-font),.no-default:not(.custom-font) .hTxt:not(.vault-font){font-family:"Roboto",Sans-Serif;font-weight:400;font-style:normal}#stacks_in_30536 .hTxt.segment[data-seg="segment1"]{font-family:"Archivo Black",Sans-Serif;font-weight:400;font-style:normal}#stacks_in_30536 .primary,#stacks_in_30536 .segment{display:inline-block}#stacks_in_30536 .primary.sub-title,#stacks_in_30536 .segment.sub-title{display:block}#stacks_in_30536 [data-seg="segment2"].last-title{display:block}#stacks_in_30536 .segment.no-shadow{text-shadow:none !important}#stacks_in_30536 .segment *{}#stacks_in_30536 .hTxt.primary{vertical-align:baseline}#stacks_in_30536 .segment[data-seg="segment1"]{font-size:100%;color:rgba(10, 33, 88, 1.00);padding:0px 0px 0px 13px;margin:0px 0px 0px 0px;vertical-align:baseline;}#stacks_in_30536 .segment[data-seg="segment1"] div{color:rgba(10, 33, 88, 1.00)}#stacks_in_30536 .segment[data-seg="segment1"] div.mez{font-size:100%}

/*
1.0.0
*/
.hlh-margin_stacks_in_30548 {
  margin: 50px 50px 50px 50px;
}
.halo-hyperlink_stacks_in_30548 {
  position: relative;
  z-index: 0;
  max-width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.halo-hyperlink_stacks_in_30548[hlh-aspect="1"] .halo-hyperlink-content-wrap {
  /* aspect-ratio: 1;
  width: 200px;
  max-width: 100%; */
}
.halo-hyperlink_stacks_in_30548 > a,
.halo-hyperlink_stacks_in_30548 > .observer {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  pointer-events: none;
}
.halo-hyperlink_stacks_in_30548 > a {
  pointer-events: auto;
  cursor: pointer;
  display: block;
  z-index: 4;
}
.halo-hyperlink_stacks_in_30548 > .halo-hyperlink-effect-wrap {
  position: absolute;
  left: -50px;
  top: -50px;
  bottom: -50px;
  right: -50px;
  z-index: 1;
  pointer-events: none;
}
.halo-hyperlink_stacks_in_30548 > .halo-hyperlink-effect-wrap.hhw-75 {
  left: -75px;
  top: -75px;
  bottom: -75px;
  right: -75px;
}
.halo-hyperlink_stacks_in_30548 > .halo-hyperlink-effect-wrap.hhw-150 {
  left: -150px;
  top: -150px;
  bottom: -150px;
  right: -150px;
}

.halo-hyperlink_stacks_in_30548 .halo-hyperlink-bg-inactive > div:nth-child(2),
.halo-hyperlink_stacks_in_30548 .halo-hyperlink-effect .halo-hyperlink-svg,
.halo-hyperlink_stacks_in_30548 .halo-hyperlink-inactive {
  
  transition: opacity 300ms ease;
  
}
.halo-hyperlink_stacks_in_30548 .halo-hyperlink-bg-wrap {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%,-50%);
  z-index: 0;
  opacity: 1;
  
  height: 200px;
  width: 200px;
  
}
.halo-hyperlink_stacks_in_30548 .halo-hyperlink-bg-inactive,
.halo-hyperlink_stacks_in_30548 .halo-hyperlink-bg {
  position: absolute;
  left: calc(3px / 2 - 1px);
  right: calc(3px / 2 - 1px);
  bottom: calc(3px / 2 - 1px);
  top: calc(3px / 2 - 1px);
  border-radius: 50%;
  
  overflow: hidden;
  
}
.halo-hyperlink_stacks_in_30548 .halo-hyperlink-bg-inactive {
  left: -1px;
  right: -1px;
  bottom: -1px;
  top: -1px;
}
.halo-hyperlink_stacks_in_30548 .halo-hyperlink-bg > div {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
}




.halo-hyperlink_stacks_in_30548 .halo-hyperlink-bg-inactive > div:nth-child(1) {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  pointer-events: none;
  background-color: rgba(0, 0, 0, 0.00);
}

.halo-hyperlink_stacks_in_30548 .halo-hyperlink-inactive {
  display: none;
}

.halo-hyperlink_stacks_in_30548 .halo-hyperlink-bg > div {
  
  
  background-color : transparent;
  
  background-image : url();
  
  opacity: 1.000000;
  background-position: center;
  
  
  background-size: cover;
}
.halo-hyperlink_stacks_in_30548 > .halo-hyperlink-effect-wrap > .halo-hyperlink-wrap {
  position: absolute;
  height: 100%;
  width: 100%;
  /* overflow: hidden; */
}
.halo-hyperlink_stacks_in_30548 > .halo-hyperlink-effect-wrap > .halo-hyperlink-wrap svg {
  width: 100%;
  height: 100%;
  stroke: none;
  fill: white;
  display: block;
  position: absolute;
}
.halo-hyperlink_stacks_in_30548 > .halo-hyperlink-effect-wrap > .halo-hyperlink-wrap > svg {
  width: 100%;
  overflow: visible;
  position: relative;
  z-index: 1;
}
/* .halo-hyperlink_stacks_in_30548 > .halo-hyperlink-effect-wrap > .halo-hyperlink-wrap:after {
  background: #FFFFFF;
} */
.halo-hyperlink_stacks_in_30548 .halo-hyperlink-content-wrap {
  position: relative;
  z-index: 3;
  /* z-index: 0; */
  display: grid;
  height: 100%;
  width: 100%;
  align-items: center;
  justify-content: center;
  

}


.halo-hyperlink_stacks_in_30548 .halo-hyperlink-content-wrap > div:nth-child(2) {
  
}


#stacks_in_30557 h1,#stacks_in_30557 .hTxt:not(.segment) div{font-size:2.00rem}@media all and (max-width:640px){#stacks_in_30557 h1,#stacks_in_30557 .hTxt:not(.segment) div{font-size:1.50rem}}#stacks_in_30557 h1,#stacks_in_30557 div{color:rgba(205, 41, 27, 1.00)}#stacks_in_30557 h1 a,#stacks_in_30557 div a{color:rgba(205, 41, 27, 1.00)}#stacks_in_30557 h1 a:hover,#stacks_in_30557 div a:hover{color:rgba(153, 30, 20, 1.00)}#stacks_in_30557 small,#stacks_in_30557 small div{color:rgba(111, 111, 111, 1.00)}#stacks_in_30557 .hTxt:not(.vault-font),.no-default:not(.custom-font) .hTxt:not(.vault-font){font-family:"Roboto",Sans-Serif;font-weight:400;font-style:normal}#stacks_in_30557 .hTxt.segment[data-seg="segment1"]{font-family:"Archivo Black",Sans-Serif;font-weight:400;font-style:normal}#stacks_in_30557 .primary,#stacks_in_30557 .segment{display:inline-block}#stacks_in_30557 .primary.sub-title,#stacks_in_30557 .segment.sub-title{display:block}#stacks_in_30557 [data-seg="segment2"].last-title{display:block}#stacks_in_30557 .segment.no-shadow{text-shadow:none !important}#stacks_in_30557 .segment *{}#stacks_in_30557 .hTxt.primary{vertical-align:baseline}#stacks_in_30557 .segment[data-seg="segment1"]{font-size:100%;color:rgba(10, 33, 88, 1.00);padding:0px 0px 0px 13px;margin:0px 0px 0px 0px;vertical-align:baseline;}#stacks_in_30557 .segment[data-seg="segment1"] div{color:rgba(10, 33, 88, 1.00)}#stacks_in_30557 .segment[data-seg="segment1"] div.mez{font-size:100%}

/*
1.0.0
*/
.hlh-margin_stacks_in_30552 {
  margin: 50px 50px 50px 50px;
}
.halo-hyperlink_stacks_in_30552 {
  position: relative;
  z-index: 0;
  max-width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.halo-hyperlink_stacks_in_30552[hlh-aspect="1"] .halo-hyperlink-content-wrap {
  /* aspect-ratio: 1;
  width: 200px;
  max-width: 100%; */
}
.halo-hyperlink_stacks_in_30552 > a,
.halo-hyperlink_stacks_in_30552 > .observer {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  pointer-events: none;
}
.halo-hyperlink_stacks_in_30552 > a {
  pointer-events: auto;
  cursor: pointer;
  display: block;
  z-index: 4;
}
.halo-hyperlink_stacks_in_30552 > .halo-hyperlink-effect-wrap {
  position: absolute;
  left: -50px;
  top: -50px;
  bottom: -50px;
  right: -50px;
  z-index: 1;
  pointer-events: none;
}
.halo-hyperlink_stacks_in_30552 > .halo-hyperlink-effect-wrap.hhw-75 {
  left: -75px;
  top: -75px;
  bottom: -75px;
  right: -75px;
}
.halo-hyperlink_stacks_in_30552 > .halo-hyperlink-effect-wrap.hhw-150 {
  left: -150px;
  top: -150px;
  bottom: -150px;
  right: -150px;
}

.halo-hyperlink_stacks_in_30552 .halo-hyperlink-bg-inactive > div:nth-child(2),
.halo-hyperlink_stacks_in_30552 .halo-hyperlink-effect .halo-hyperlink-svg,
.halo-hyperlink_stacks_in_30552 .halo-hyperlink-inactive {
  
  transition: opacity 300ms ease;
  
}
.halo-hyperlink_stacks_in_30552 .halo-hyperlink-bg-wrap {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%,-50%);
  z-index: 0;
  opacity: 1;
  
  height: 200px;
  width: 200px;
  
}
.halo-hyperlink_stacks_in_30552 .halo-hyperlink-bg-inactive,
.halo-hyperlink_stacks_in_30552 .halo-hyperlink-bg {
  position: absolute;
  left: calc(3px / 2 - 1px);
  right: calc(3px / 2 - 1px);
  bottom: calc(3px / 2 - 1px);
  top: calc(3px / 2 - 1px);
  border-radius: 50%;
  
  overflow: hidden;
  
}
.halo-hyperlink_stacks_in_30552 .halo-hyperlink-bg-inactive {
  left: -1px;
  right: -1px;
  bottom: -1px;
  top: -1px;
}
.halo-hyperlink_stacks_in_30552 .halo-hyperlink-bg > div {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
}




.halo-hyperlink_stacks_in_30552 .halo-hyperlink-bg-inactive > div:nth-child(1) {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  pointer-events: none;
  background-color: rgba(0, 0, 0, 0.00);
}

.halo-hyperlink_stacks_in_30552 .halo-hyperlink-inactive {
  display: none;
}

.halo-hyperlink_stacks_in_30552 .halo-hyperlink-bg > div {
  
  
  background-color : transparent;
  
  background-image : url();
  
  opacity: 1.000000;
  background-position: center;
  
  
  background-size: cover;
}
.halo-hyperlink_stacks_in_30552 > .halo-hyperlink-effect-wrap > .halo-hyperlink-wrap {
  position: absolute;
  height: 100%;
  width: 100%;
  /* overflow: hidden; */
}
.halo-hyperlink_stacks_in_30552 > .halo-hyperlink-effect-wrap > .halo-hyperlink-wrap svg {
  width: 100%;
  height: 100%;
  stroke: none;
  fill: white;
  display: block;
  position: absolute;
}
.halo-hyperlink_stacks_in_30552 > .halo-hyperlink-effect-wrap > .halo-hyperlink-wrap > svg {
  width: 100%;
  overflow: visible;
  position: relative;
  z-index: 1;
}
/* .halo-hyperlink_stacks_in_30552 > .halo-hyperlink-effect-wrap > .halo-hyperlink-wrap:after {
  background: #FFFFFF;
} */
.halo-hyperlink_stacks_in_30552 .halo-hyperlink-content-wrap {
  position: relative;
  z-index: 3;
  /* z-index: 0; */
  display: grid;
  height: 100%;
  width: 100%;
  align-items: center;
  justify-content: center;
  

}


.halo-hyperlink_stacks_in_30552 .halo-hyperlink-content-wrap > div:nth-child(2) {
  
}


#stacks_in_30563 h1,#stacks_in_30563 .hTxt:not(.segment) div{font-size:2.00rem}@media all and (max-width:640px){#stacks_in_30563 h1,#stacks_in_30563 .hTxt:not(.segment) div{font-size:1.50rem}}#stacks_in_30563 h1,#stacks_in_30563 div{color:rgba(205, 41, 27, 1.00)}#stacks_in_30563 h1 a,#stacks_in_30563 div a{color:rgba(205, 41, 27, 1.00)}#stacks_in_30563 h1 a:hover,#stacks_in_30563 div a:hover{color:rgba(153, 30, 20, 1.00)}#stacks_in_30563 small,#stacks_in_30563 small div{color:rgba(111, 111, 111, 1.00)}#stacks_in_30563 .hTxt:not(.vault-font),.no-default:not(.custom-font) .hTxt:not(.vault-font){font-family:"Roboto",Sans-Serif;font-weight:400;font-style:normal}#stacks_in_30563 .hTxt.segment[data-seg="segment1"]{font-family:"Archivo Black",Sans-Serif;font-weight:400;font-style:normal}#stacks_in_30563 .primary,#stacks_in_30563 .segment{display:inline-block}#stacks_in_30563 .primary.sub-title,#stacks_in_30563 .segment.sub-title{display:block}#stacks_in_30563 [data-seg="segment2"].last-title{display:block}#stacks_in_30563 .segment.no-shadow{text-shadow:none !important}#stacks_in_30563 .segment *{}#stacks_in_30563 .hTxt.primary{vertical-align:baseline}#stacks_in_30563 .segment[data-seg="segment1"]{font-size:100%;color:rgba(10, 33, 88, 1.00);padding:0px 0px 0px 13px;margin:0px 0px 0px 0px;vertical-align:baseline;}#stacks_in_30563 .segment[data-seg="segment1"] div{color:rgba(10, 33, 88, 1.00)}#stacks_in_30563 .segment[data-seg="segment1"] div.mez{font-size:100%}

 #stacks_in_30585 .shear-mag{position:absolute;top:-70px}#stacks_in_30585 a.shear-mag.offset-override{top:-70px!important} .mg-menu .mgicon-quienes-somos{vertical-align:middle;font-size:1.60rem; padding-right:1.00rem;}    

#stacks_in_30597 h1,#stacks_in_30597 .hTxt:not(.segment) div{font-size:3.00rem}@media all and (max-width:640px){#stacks_in_30597 h1,#stacks_in_30597 .hTxt:not(.segment) div{font-size:1.50rem}}@media only screen and (max-width:414px){#stacks_in_30597 h1,#stacks_in_30597 div{text-align:center !important}#stacks_out_30597{display:block !important}}#stacks_in_30597 h1,#stacks_in_30597 div{color:rgba(21, 47, 103, 1.00)}#stacks_in_30597 h1 a,#stacks_in_30597 div a{color:rgba(21, 47, 103, 1.00)}#stacks_in_30597 h1 a:hover,#stacks_in_30597 div a:hover{color:rgba(15, 35, 77, 1.00)}#stacks_in_30597 small,#stacks_in_30597 small div{color:rgba(111, 111, 111, 1.00)}#stacks_in_30597 .hTxt:not(.vault-font),.no-default:not(.custom-font) .hTxt:not(.vault-font){font-family:"Roboto",Sans-Serif;font-weight:400;font-style:normal}#stacks_in_30597 .hTxt.segment[data-seg="segment1"]{font-family:"Archivo Black",Sans-Serif;font-weight:400;font-style:normal}#stacks_in_30597 .primary,#stacks_in_30597 .segment{display:inline-block}#stacks_in_30597 .primary.sub-title,#stacks_in_30597 .segment.sub-title{display:block}#stacks_in_30597 [data-seg="segment2"].last-title{display:block}#stacks_in_30597 .segment.no-shadow{text-shadow:none !important}#stacks_in_30597 .segment *{}#stacks_in_30597 .hTxt.primary{vertical-align:baseline}#stacks_in_30597 .segment[data-seg="segment1"]{font-size:100%;color:rgba(213, 0, 0, 1.00);padding:0px 0px 0px 13px;margin:0px 0px 0px 0px;vertical-align:baseline;}#stacks_in_30597 .segment[data-seg="segment1"] div{color:rgba(213, 0, 0, 1.00)}#stacks_in_30597 .segment[data-seg="segment1"] div.mez{font-size:100%}

/* 1.0.1
 - removed a bunch of API calls to try and help with load time in edit and preview modes
 - Added svg refresh to resolve display issues in safari and RW preview
 - added hardware acceleration to svg graphics to increase performance
 - fixed a bug that could cause the stack to load into the editor slowly
 1.0.2
 - hotfix, editmode display bug
 1.0.5
 - Added Experimental responsive defintion feature
*/

.svg-metamorph.svgm_stacks_in_30662 .svgm-group {
    display: none;
}
.svg-metamorph.svgm_stacks_in_30662 .svgm-group.svgm-wide-14,
.svg-metamorph.svgm_stacks_in_30662 .svgm-group.svgm-pattern-6,
.svg-metamorph.svgm_stacks_in_30662 .svgm-group.svgm-special-23 {
    display: block;
}
.svg-metamorph.svgm_stacks_in_30662,
.svg-metamorph.svgm_stacks_in_30662 .svgm-content {
  position: relative;
  z-index: 1;
}
#stacks_in_30662, #stacks_out_30662 {
  overflow: visible;
}
.svg-metamorph.svgm_stacks_in_30662 {
  display: inline-block;
  width: calc(100% - 1px);
  position: relative;
  margin-top: -0px;
  margin-bottom: -0px;
  
  
  z-index: 10;
  
  
  
}

.svg-metamorph.svgm_stacks_in_30662 > .svgm-wrap-outer > .svgm-wrap {
  position: absolute;
  height: 100%;
  width: 100%;
  overflow: hidden;
}
.svg-metamorph.svgm_stacks_in_30662 > .svgm-wrap-outer > .svgm-wrap svg {
  width: 100%;
  height: calc(100% + 60px + 60px);
  stroke: none;
  fill: white;
}
.svg-metamorph.svgm_stacks_in_30662 > .svgm-wrap-outer > .svgm-wrap svg path.svgm-opacity {
  stroke: none;
  stroke-width: 0;
}
.svg-metamorph.svgm_stacks_in_30662 > .svgm-wrap-outer > .svgm-wrap.svgm-wrap-top {
  top: 0;
  z-index: 1;
  transform: translateY(-60px);
}
.svg-metamorph.svgm_stacks_in_30662 > .svgm-wrap-outer > .svgm-wrap.svgm-wrap-center {
  z-index: 2;
  height: calc(100% + 3px);
  /* top: -1.5px; */
}
.svg-metamorph.svgm_stacks_in_30662 > .svgm-wrap-outer > .svgm-wrap.svgm-wrap-bottom {
  bottom: 0;
  z-index: 0;
  transform: translateY(60px) rotateZ(180deg);
}
.svg-metamorph.svgm_stacks_in_30662 > .svgm-wrap-outer > .svgm-wrap.svgm-wrap-center svg {
  transform: translateY(-60px);
  /* margin-top: 1px; */
}
.svg-metamorph.svgm_stacks_in_30662 > .svgm-wrap-outer > .svgm-wrap > svg {
  width: 100%;
  overflow: visible;
}
.svg-metamorph.svgm_stacks_in_30662 > .svgm-wrap-outer > .svgm-wrap:after {
  background: #152F67;
}
.svg-metamorph.svgm_stacks_in_30662 .svgm-content {
  position: relative;
  z-index: 3;
  min-height: 60px;
  display: grid;
  align-items: center;
  
}


.svg-metamorph.svgm_stacks_in_30662 .svgm-content > div {
  
  
  
}
.svg-metamorph.svgm_stacks_in_30662 .svgm-mask {
  transform-origin: center;
}
.svg-metamorph.svgm_stacks_in_30662 > .svgm-wrap-outer {
  height: calc(100% - 0px - 0px );
  min-height: 60px;
  position: absolute;
  width: 100%;
  top: 0px;
  
  top: auto;
  bottom: 0px;
  
  transform: translateZ(0);
}


.svg-metamorph.svgm_stacks_in_30662 image:not(.svgm-pattern):not(.svgm-off) {
  transform-origin: center;
}
.svg-metamorph.svgm_stacks_in_30662 image.svgm-off {
  transform-origin: center;
}
.svg-metamorph.svgm_stacks_in_30662 .svgm-pattern {
  width: 100px;
  height: 100px;
}
.svg-metamorph.svgm_stacks_in_30662 .svgm-custom-pattern-1a {
  transform-origin: center;
  transform: translate(-358.000000px, 0);
}
.svg-metamorph.svgm_stacks_in_30662 .svgm-custom-pattern-1b {
  transform-origin: center;
  transform: translate(-362.000000px, 0);
}
.svg-metamorph.svgm_stacks_in_30662 .svgm-custom-pattern-2a {
  transform-origin: center;
  transform: translate(-358.000000px, 0) rotateY(180deg);
}
.svg-metamorph.svgm_stacks_in_30662 .svgm-custom-pattern-2b {
  transform-origin: center;
  transform: translate(-362.000000px, 0) rotateY(180deg);
}
.svg-metamorph.svgm_stacks_in_30662 .svgm-custom-pattern-3a {
  transform-origin: center;
  transform: translate(2518.000000px, 0);
}
.svg-metamorph.svgm_stacks_in_30662 .svgm-custom-pattern-3b {
  transform-origin: center;
  transform: translate(2522.000000px, 0);
}
.svg-metamorph.svgm_stacks_in_30662 .svgm-custom-pattern-opacity-1 {
  transform-origin: center;
  transform: translate(0, 38.000000px);
}
.svg-metamorph.svgm_stacks_in_30662 .svgm-custom-pattern-opacity-2 {
  transform-origin: center;
  transform: translate(0, 38.000000px) rotateY(180deg);
}
.svg-metamorph.svgm_stacks_in_30662 .svgm-use-r {
  transform: scale(-1,1);
  transform-origin: 960px 0;
}
.svg-metamorph.svgm_stacks_in_30662 .svgm-mask-top {
  transform: translate(0,4px) scaleX(1);
}
.svg-metamorph.svgm_stacks_in_30662 .svgm-mask-bottom {
  transform: translate(0,-1px) scaleX(1);
}

@media all and (max-width: 1920px) {
  .svg-metamorph.svgm_stacks_in_30662 .svgm-use {
    transform: scaleX(1);
    transform-origin: 960px bottom;
  }
  .svg-metamorph.svgm_stacks_in_30662 .svgm-use-r {
    transform: scaleX(1) rotateY(180deg);
    transform-origin: 960px 0;
  }
}
@media all and (max-width: 1680px) {
  .svg-metamorph.svgm_stacks_in_30662 .svgm-use {
    transform: scaleX(0.875);
    transform-origin: 960px bottom;
  }
  .svg-metamorph.svgm_stacks_in_30662 .svgm-use-r {
    transform: scaleX(0.875) rotateY(180deg);
    transform-origin: 960px 0;
  }
}
@media all and (max-width: 1440px) {
  .svg-metamorph.svgm_stacks_in_30662 .svgm-use {
    transform: scaleX(0.75);
    transform-origin: 960px bottom;
  }
  .svg-metamorph.svgm_stacks_in_30662 .svgm-use-r {
    transform: scaleX(0.75) rotateY(180deg);
    transform-origin: 960px 0;
  }
}
@media all and (max-width: 1280px) {
  .svg-metamorph.svgm_stacks_in_30662 .svgm-use {
    transform: scaleX(0.667);
    transform-origin: 960px bottom;
  }
  .svg-metamorph.svgm_stacks_in_30662 .svgm-use-r {
    transform: scaleX(0.667) rotateY(180deg);
    transform-origin: 960px 0;
  }
}
@media all and (max-width: 1152px) {
  .svg-metamorph.svgm_stacks_in_30662 .svgm-use {
    transform: scaleX(0.6);
    transform-origin: 960px bottom;
  }
  .svg-metamorph.svgm_stacks_in_30662 .svgm-use-r {
    transform: scaleX(0.6) rotateY(180deg);
    transform-origin: 960px 0;
  }
}
@media all and (min-width: 1921px) {
  .svg-metamorph.svgm_stacks_in_30662 .svgm-mask {
    transform: scaleX(1.34);
  }
  .svg-metamorph.svgm_stacks_in_30662 .svgm-mask-top {
    transform: translate(0,4px) scaleX(1.34);
  }
  .svg-metamorph.svgm_stacks_in_30662 .svgm-mask-bottom {
    transform: translate(0,-1px) scaleX(1.34);
  }
}
@media all and (min-width: 2561px) {
  .svg-metamorph.svgm_stacks_in_30662 .svgm-mask {
    transform: scaleX(1.67);
  }
  .svg-metamorph.svgm_stacks_in_30662 .svgm-mask-top {
    transform: translate(0,4px) scaleX(1.67);
  }
  .svg-metamorph.svgm_stacks_in_30662 .svgm-mask-bottom {
    transform: translate(0,-1px) scaleX(1.67);
  }
}
@media all and (min-width: 3201px) {
  .svg-metamorph.svgm_stacks_in_30662 .svgm-mask {
    transform: scaleX(2);
  }
  .svg-metamorph.svgm_stacks_in_30662 .svgm-mask-top {
    transform: translate(0,4px) scaleX(2);
  }
  .svg-metamorph.svgm_stacks_in_30662 .svgm-mask-bottom {
    transform: translate(0,-1px) scaleX(2);
  }
}


.svg-metamorph.svgm_stacks_in_30662 .svgm-opacity {
  display: none;
}
.svg-metamorph.svgm_stacks_in_30662 > .svgm-wrap-outer {
  opacity: 100%;
}



/**/
#stacks_in_30672 h1,#stacks_in_30672 .hTxt:not(.segment) div{font-size:3.00rem}@media all and (max-width:640px){#stacks_in_30672 h1,#stacks_in_30672 .hTxt:not(.segment) div{font-size:1.50rem}}@media only screen and (max-width:667px){#stacks_in_30672 h1,#stacks_in_30672 div{text-align:center !important}#stacks_out_30672{display:block !important}}#stacks_in_30672 h1,#stacks_in_30672 div{color:rgba(205, 41, 27, 1.00)}#stacks_in_30672 h1 a,#stacks_in_30672 div a{color:rgba(205, 41, 27, 1.00)}#stacks_in_30672 h1 a:hover,#stacks_in_30672 div a:hover{color:rgba(153, 30, 20, 1.00)}#stacks_in_30672 small,#stacks_in_30672 small div{color:rgba(111, 111, 111, 1.00)}#stacks_in_30672 .hTxt:not(.vault-font),.no-default:not(.custom-font) .hTxt:not(.vault-font){font-family:"Archivo Black",Sans-Serif;font-weight:400;font-style:normal}#stacks_in_30672 .hTxt.segment[data-seg="segment1"]{font-family:"Roboto ",Sans-Serif;font-weight:400;font-style:normal}#stacks_in_30672 .primary,#stacks_in_30672 .segment{display:inline-block}#stacks_in_30672 .primary.sub-title,#stacks_in_30672 .segment.sub-title{display:block}#stacks_in_30672 [data-seg="segment2"].last-title{display:block}#stacks_in_30672 .segment.no-shadow{text-shadow:none !important}#stacks_in_30672 .segment *{}#stacks_in_30672 .hTxt.primary{vertical-align:baseline}#stacks_in_30672 .segment[data-seg="segment1"]{font-size:100%;color:rgba(255, 255, 255, 1.00);padding:0px 0px 0px 13px;margin:0px 0px 0px 0px;vertical-align:baseline;}#stacks_in_30672 .segment[data-seg="segment1"] div{color:rgba(255, 255, 255, 1.00)}#stacks_in_30672 .segment[data-seg="segment1"] div.mez{font-size:100%}


  #stacks_in_30820{text-align:center}          @media screen and (max-width:641px){#stacks_in_30820>.button.b-p.expand-mob:not(.icon-only),#stacks_in_30820>.dd-wrap>.button.b-p.expand-mob:not(.icon-only){width:100%!important}}@media screen and (min-width:641px){#stacks_in_30820 .button.b-p.expand-large:not(.icon-only),#stacks_in_30820>.dd-wrap>.button.b-p.expand-large:not(.icon-only){width:100%!important}}
   @media screen and (max-width:641px){#stacks_in_30820.bp-wrap{padding:20px 0px 0px 0px}}  @media screen and (min-width:641px){#stacks_in_30820.bp-wrap{padding:20px 0px 0px 0px}}         
  #stacks_in_30820 .button.b-p.custom{border:0px solid rgba(179, 179, 177, 1.00)}#stacks_in_30820 .button.b-p.custom:hover{border:0px solid rgba(179, 179, 177, 1.00)} #stacks_in_30820 .button.b-p{color:rgba(255, 255, 255, 1.00);background-color:rgba(205, 41, 27, 1.00)}#stacks_in_30820 .button.b-p:not(.d-hov){-webkit-transition:color 200ms ease,background-color 200ms ease,box-shadow 200ms ease,border 200ms ease;-webkit-transition:color 200ms ease,background-color 200ms ease,border 200ms ease,-webkit-box-shadow 200ms ease;transition:color 200ms ease,background-color 200ms ease,border 200ms ease,-webkit-box-shadow 200ms ease;transition:color 200ms ease,background-color 200ms ease,box-shadow 200ms ease,border 200ms ease;transition:color 200ms ease,background-color 200ms ease,box-shadow 200ms ease,border 200ms ease,-webkit-box-shadow 200ms ease}  #stacks_in_30820 .button.b-p:not(.bp-hover):hover{color:rgba(255, 255, 255, 0.90)!important; background-color:rgba(21, 47, 103, 1.00);}     
       
  #stacks_in_30820 .d-hov,#stacks_in_30820 .d-hov::before,#stacks_in_30820 .d-hov::after{-webkit-transition-duration:300ms;transition-duration:300ms}#stacks_in_30820 .d-hov.active,#stacks_in_30820 .d-hov.active::before,#stacks_in_30820 .d-hov.active::after{-webkit-transition-duration:0ms;transition-duration:0ms}#stacks_in_30820 .hover-col:not(.button.b-p):not(.bp-zone-item)::before{background:rgba(239, 181, 10, 1.00)!important}#stacks_in_30820 .hover-col::before,#stacks_in_30820 .hover-col::after{-webkit-transition-property:all;transition-property:all;-webkit-transition-duration:.3s;transition-duration:.3s;-webkit-transition-timing-function:ease-out;transition-timing-function:ease-out}#stacks_in_30820 .hover-col:hover::before{background:rgba(239, 181, 10, 1.00)}#stacks_in_30820 .hover-col.active::before{background:rgba(207, 0, 32, 1.00)}#stacks_in_30820 .d-hov-ripple-out:hover::before{border:rgba(239, 181, 10, 1.00) solid 2px}#stacks_in_30820 .d-hov-pop:hover,#stacks_in_30820 .d-hov-pop:focus,#stacks_in_30820 .d-hov-pop.active{-webkit-animation-duration:300ms;animation-duration:300ms}#stacks_in_30820 .d-hov[class*="d-hov-underline-"]::before,#stacks_in_30820 .d-hov[class*="d-hov-overline-"]::before{height:4px!important}#stacks_in_30820 .d-hov[class*="d-hov-text-underline-"]>.bp-text::before,#stacks_in_30820 .d-hov[class*="d-hov-text-underline-"] .ml-text::before{bottom:-6px;border-bottom-color:rgba(239, 181, 10, 1.00)!important;border-bottom-width:4px;-webkit-transition-duration:300ms;transition-duration:300ms}#stacks_in_30820 .d-hov[class*="d-hov-text-underline-"].active>.bp-text::before,#stacks_in_30820 .d-hov[class*="d-hov-text-underline-"].active .ml-text::before{-webkit-transition-duration:0ms;transition-duration:0ms;border-bottom-color:rgba(207, 0, 32, 1.00)!important}#stacks_in_30820 .d-hov-reveal:hover::before,#stacks_in_30820 .d-hov-reveal.active::before{border-width:4px!important} 
               
@important "partials/maps";
.animated {
  animation-duration: 1s;
  animation-fill-mode: both; }
  .animated.infinite {
    animation-iteration-count: infinite; }
  .animated.hinge {
    animation-duration: 2s; }
  .animated.flipOutX, .animated.flipOutY, .animated.bounceIn, .animated.bounceOut {
    animation-duration: .75s; }

@keyframes bounce {
  from, 20%, 53%, 80%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transform: translate3d(0, 0, 0); }
  40%, 43% {
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    transform: translate3d(0, -30px, 0); }
  70% {
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    transform: translate3d(0, -15px, 0); }
  90% {
    transform: translate3d(0, -4px, 0); } }

.bounce {
  animation-name: bounce;
  transform-origin: center bottom; }

@keyframes flash {
  from, 50%, to {
    opacity: 1; }
  25%, 75% {
    opacity: 0; } }

.flash {
  animation-name: flash; }

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */

@keyframes pulse {
  from {
    transform: scale3d(1, 1, 1); }
  50% {
    transform: scale3d(1.05, 1.05, 1.05); }
  to {
    transform: scale3d(1, 1, 1); } }

.pulse {
  animation-name: pulse; }

@keyframes rubberBand {
  from {
    transform: scale3d(1, 1, 1); }
  30% {
    transform: scale3d(1.25, 0.75, 1); }
  40% {
    transform: scale3d(0.75, 1.25, 1); }
  50% {
    transform: scale3d(1.15, 0.85, 1); }
  65% {
    transform: scale3d(0.95, 1.05, 1); }
  75% {
    transform: scale3d(1.05, 0.95, 1); }
  to {
    transform: scale3d(1, 1, 1); } }

.rubberBand {
  animation-name: rubberBand; }

@keyframes shake {
  from, to {
    transform: translate3d(0, 0, 0); }
  10%, 30%, 50%, 70%, 90% {
    transform: translate3d(-10px, 0, 0); }
  20%, 40%, 60%, 80% {
    transform: translate3d(10px, 0, 0); } }

.shake {
  animation-name: shake; }

@keyframes headShake {
  0% {
    transform: translateX(0); }
  6.5% {
    transform: translateX(-6px) rotateY(-9deg); }
  18.5% {
    transform: translateX(5px) rotateY(7deg); }
  31.5% {
    transform: translateX(-3px) rotateY(-5deg); }
  43.5% {
    transform: translateX(2px) rotateY(3deg); }
  50% {
    transform: translateX(0); } }

.headShake {
  animation-timing-function: ease-in-out;
  animation-name: headShake; }

@keyframes swing {
  20% {
    transform: rotate3d(0, 0, 1, 15deg); }
  40% {
    transform: rotate3d(0, 0, 1, -10deg); }
  60% {
    transform: rotate3d(0, 0, 1, 5deg); }
  80% {
    transform: rotate3d(0, 0, 1, -5deg); }
  to {
    transform: rotate3d(0, 0, 1, 0deg); } }

.swing {
  transform-origin: top center;
  animation-name: swing; }

@keyframes tada {
  from {
    transform: scale3d(1, 1, 1); }
  10%, 20% {
    transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg); }
  30%, 50%, 70%, 90% {
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg); }
  40%, 60%, 80% {
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg); }
  to {
    transform: scale3d(1, 1, 1); } }

.tada {
  animation-name: tada; }

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */

@keyframes wobble {
  from {
    transform: none; }
  15% {
    transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg); }
  30% {
    transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg); }
  45% {
    transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg); }
  60% {
    transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg); }
  75% {
    transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg); }
  to {
    transform: none; } }

.wobble {
  animation-name: wobble; }

@keyframes jello {
  from, 11.1%, to {
    transform: none; }
  22.2% {
    transform: skewX(-12.5deg) skewY(-12.5deg); }
  33.3% {
    transform: skewX(6.25deg) skewY(6.25deg); }
  44.4% {
    transform: skewX(-3.125deg) skewY(-3.125deg); }
  55.5% {
    transform: skewX(1.5625deg) skewY(1.5625deg); }
  66.6% {
    transform: skewX(-0.78125deg) skewY(-0.78125deg); }
  77.7% {
    transform: skewX(0.39063deg) skewY(0.39063deg); }
  88.8% {
    transform: skewX(-0.19531deg) skewY(-0.19531deg); } }

.jello {
  animation-name: jello;
  transform-origin: center; }

@keyframes bounceIn {
  from, 20%, 40%, 60%, 80%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  0% {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3); }
  20% {
    transform: scale3d(1.1, 1.1, 1.1); }
  40% {
    transform: scale3d(0.9, 0.9, 0.9); }
  60% {
    opacity: 1;
    transform: scale3d(1.03, 1.03, 1.03); }
  80% {
    transform: scale3d(0.97, 0.97, 0.97); }
  to {
    opacity: 1;
    transform: scale3d(1, 1, 1); } }

.bounceIn {
  animation-name: bounceIn; }

@keyframes bounceInDown {
  from, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  0% {
    opacity: 0;
    transform: translate3d(0, -3000px, 0); }
  60% {
    opacity: 1;
    transform: translate3d(0, 25px, 0); }
  75% {
    transform: translate3d(0, -10px, 0); }
  90% {
    transform: translate3d(0, 5px, 0); }
  to {
    transform: none; } }

.bounceInDown {
  animation-name: bounceInDown; }

@keyframes bounceInLeft {
  from, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  0% {
    opacity: 0;
    transform: translate3d(-3000px, 0, 0); }
  60% {
    opacity: 1;
    transform: translate3d(25px, 0, 0); }
  75% {
    transform: translate3d(-10px, 0, 0); }
  90% {
    transform: translate3d(5px, 0, 0); }
  to {
    transform: none; } }

.bounceInLeft {
  animation-name: bounceInLeft; }

@keyframes bounceInRight {
  from, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  from {
    opacity: 0;
    transform: translate3d(3000px, 0, 0); }
  60% {
    opacity: 1;
    transform: translate3d(-25px, 0, 0); }
  75% {
    transform: translate3d(10px, 0, 0); }
  90% {
    transform: translate3d(-5px, 0, 0); }
  to {
    transform: none; } }

.bounceInRight {
  animation-name: bounceInRight; }

@keyframes bounceInUp {
  from, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  from {
    opacity: 0;
    transform: translate3d(0, 3000px, 0); }
  60% {
    opacity: 1;
    transform: translate3d(0, -20px, 0); }
  75% {
    transform: translate3d(0, 10px, 0); }
  90% {
    transform: translate3d(0, -5px, 0); }
  to {
    transform: translate3d(0, 0, 0); } }

.bounceInUp {
  animation-name: bounceInUp; }

@keyframes bounceOut {
  20% {
    transform: scale3d(0.9, 0.9, 0.9); }
  50%, 55% {
    opacity: 1;
    transform: scale3d(1.1, 1.1, 1.1); }
  to {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3); } }

.bounceOut {
  animation-name: bounceOut; }

@keyframes bounceOutDown {
  20% {
    transform: translate3d(0, 10px, 0); }
  40%, 45% {
    opacity: 1;
    transform: translate3d(0, -20px, 0); }
  to {
    opacity: 0;
    transform: translate3d(0, 2000px, 0); } }

.bounceOutDown {
  animation-name: bounceOutDown; }

@keyframes bounceOutLeft {
  20% {
    opacity: 1;
    transform: translate3d(20px, 0, 0); }
  to {
    opacity: 0;
    transform: translate3d(-2000px, 0, 0); } }

.bounceOutLeft {
  animation-name: bounceOutLeft; }

@keyframes bounceOutRight {
  20% {
    opacity: 1;
    transform: translate3d(-20px, 0, 0); }
  to {
    opacity: 0;
    transform: translate3d(2000px, 0, 0); } }

.bounceOutRight {
  animation-name: bounceOutRight; }

@keyframes bounceOutUp {
  20% {
    transform: translate3d(0, -10px, 0); }
  40%, 45% {
    opacity: 1;
    transform: translate3d(0, 20px, 0); }
  to {
    opacity: 0;
    transform: translate3d(0, -2000px, 0); } }

.bounceOutUp {
  animation-name: bounceOutUp; }

@keyframes fadeIn {
  from {
    opacity: 0; }
  to {
    opacity: 1; } }

.fadeIn {
  animation-name: fadeIn; }

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translate3d(0, -100%, 0); }
  to {
    opacity: 1;
    transform: none; } }

.fadeInDown {
  animation-name: fadeInDown; }

@keyframes fadeInDownBig {
  from {
    opacity: 0;
    transform: translate3d(0, -2000px, 0); }
  to {
    opacity: 1;
    transform: none; } }

.fadeInDownBig {
  animation-name: fadeInDownBig; }

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translate3d(-100%, 0, 0); }
  to {
    opacity: 1;
    transform: none; } }

.fadeInLeft {
  animation-name: fadeInLeft; }

@keyframes fadeInLeftBig {
  from {
    opacity: 0;
    transform: translate3d(-2000px, 0, 0); }
  to {
    opacity: 1;
    transform: none; } }

.fadeInLeftBig {
  animation-name: fadeInLeftBig; }

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translate3d(100%, 0, 0); }
  to {
    opacity: 1;
    transform: none; } }

.fadeInRight {
  animation-name: fadeInRight; }

@keyframes fadeInRightBig {
  from {
    opacity: 0;
    transform: translate3d(2000px, 0, 0); }
  to {
    opacity: 1;
    transform: none; } }

.fadeInRightBig {
  animation-name: fadeInRightBig; }

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translate3d(0, 100%, 0); }
  to {
    opacity: 1;
    transform: none; } }

.fadeInUp {
  animation-name: fadeInUp; }

@keyframes fadeInUpBig {
  from {
    opacity: 0;
    transform: translate3d(0, 2000px, 0); }
  to {
    opacity: 1;
    transform: none; } }

.fadeInUpBig {
  animation-name: fadeInUpBig; }

@keyframes fadeOut {
  from {
    opacity: 1; }
  to {
    opacity: 0; } }

.fadeOut {
  animation-name: fadeOut; }

@keyframes fadeOutDown {
  from {
    opacity: 1; }
  to {
    opacity: 0;
    transform: translate3d(0, 100%, 0); } }

.fadeOutDown {
  animation-name: fadeOutDown; }

@keyframes fadeOutDownBig {
  from {
    opacity: 1; }
  to {
    opacity: 0;
    transform: translate3d(0, 2000px, 0); } }

.fadeOutDownBig {
  animation-name: fadeOutDownBig; }

@keyframes fadeOutLeft {
  from {
    opacity: 1; }
  to {
    opacity: 0;
    transform: translate3d(-100%, 0, 0); } }

.fadeOutLeft {
  animation-name: fadeOutLeft; }

@keyframes fadeOutLeftBig {
  from {
    opacity: 1; }
  to {
    opacity: 0;
    transform: translate3d(-2000px, 0, 0); } }

.fadeOutLeftBig {
  animation-name: fadeOutLeftBig; }

@keyframes fadeOutRight {
  from {
    opacity: 1; }
  to {
    opacity: 0;
    transform: translate3d(100%, 0, 0); } }

.fadeOutRight {
  animation-name: fadeOutRight; }

@keyframes fadeOutRightBig {
  from {
    opacity: 1; }
  to {
    opacity: 0;
    transform: translate3d(2000px, 0, 0); } }

.fadeOutRightBig {
  animation-name: fadeOutRightBig; }

@keyframes fadeOutUp {
  from {
    opacity: 1; }
  to {
    opacity: 0;
    transform: translate3d(0, -100%, 0); } }

.fadeOutUp {
  animation-name: fadeOutUp; }

@keyframes fadeOutUpBig {
  from {
    opacity: 1; }
  to {
    opacity: 0;
    transform: translate3d(0, -2000px, 0); } }

.fadeOutUpBig {
  animation-name: fadeOutUpBig; }

@keyframes flip {
  from {
    transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    animation-timing-function: ease-out; }
  40% {
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    animation-timing-function: ease-out; }
  50% {
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    animation-timing-function: ease-in; }
  80% {
    transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
    animation-timing-function: ease-in; }
  to {
    transform: perspective(400px);
    animation-timing-function: ease-in; } }

.animated.flip {
  -webkit-backface-visibility: visible;
  backface-visibility: visible;
  animation-name: flip; }

@keyframes flipInX {
  from {
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    animation-timing-function: ease-in;
    opacity: 0; }
  40% {
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    animation-timing-function: ease-in; }
  60% {
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1; }
  80% {
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg); }
  to {
    transform: perspective(400px); } }

.flipInX {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  animation-name: flipInX; }

@keyframes flipInY {
  from {
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    animation-timing-function: ease-in;
    opacity: 0; }
  40% {
    transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    animation-timing-function: ease-in; }
  60% {
    transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    opacity: 1; }
  80% {
    transform: perspective(400px) rotate3d(0, 1, 0, -5deg); }
  to {
    transform: perspective(400px); } }

.flipInY {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  animation-name: flipInY; }

@keyframes flipOutX {
  from {
    transform: perspective(400px); }
  30% {
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    opacity: 1; }
  to {
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0; } }

.flipOutX {
  animation-name: flipOutX;
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important; }

@keyframes flipOutY {
  from {
    transform: perspective(400px); }
  30% {
    transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    opacity: 1; }
  to {
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    opacity: 0; } }

.flipOutY {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  animation-name: flipOutY; }

@keyframes lightSpeedIn {
  from {
    transform: translate3d(100%, 0, 0) skewX(-30deg);
    opacity: 0; }
  60% {
    transform: skewX(20deg);
    opacity: 1; }
  80% {
    transform: skewX(-5deg);
    opacity: 1; }
  to {
    transform: none;
    opacity: 1; } }

.lightSpeedIn {
  animation-name: lightSpeedIn;
  animation-timing-function: ease-out; }

@keyframes lightSpeedOut {
  from {
    opacity: 1; }
  to {
    transform: translate3d(100%, 0, 0) skewX(30deg);
    opacity: 0; } }

.lightSpeedOut {
  animation-name: lightSpeedOut;
  animation-timing-function: ease-in; }

@keyframes rotateIn {
  from {
    transform-origin: center;
    transform: rotate3d(0, 0, 1, -200deg);
    opacity: 0; }
  to {
    transform-origin: center;
    transform: none;
    opacity: 1; } }

.rotateIn {
  animation-name: rotateIn; }

@keyframes rotateInDownLeft {
  from {
    transform-origin: left bottom;
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0; }
  to {
    transform-origin: left bottom;
    transform: none;
    opacity: 1; } }

.rotateInDownLeft {
  animation-name: rotateInDownLeft; }

@keyframes rotateInDownRight {
  from {
    transform-origin: right bottom;
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0; }
  to {
    transform-origin: right bottom;
    transform: none;
    opacity: 1; } }

.rotateInDownRight {
  animation-name: rotateInDownRight; }

@keyframes rotateInUpLeft {
  from {
    transform-origin: left bottom;
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0; }
  to {
    transform-origin: left bottom;
    transform: none;
    opacity: 1; } }

.rotateInUpLeft {
  animation-name: rotateInUpLeft; }

@keyframes rotateInUpRight {
  from {
    transform-origin: right bottom;
    transform: rotate3d(0, 0, 1, -90deg);
    opacity: 0; }
  to {
    transform-origin: right bottom;
    transform: none;
    opacity: 1; } }

.rotateInUpRight {
  animation-name: rotateInUpRight; }

@keyframes rotateOut {
  from {
    transform-origin: center;
    opacity: 1; }
  to {
    transform-origin: center;
    transform: rotate3d(0, 0, 1, 200deg);
    opacity: 0; } }

.rotateOut {
  animation-name: rotateOut; }

@keyframes rotateOutDownLeft {
  from {
    transform-origin: left bottom;
    opacity: 1; }
  to {
    transform-origin: left bottom;
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0; } }

.rotateOutDownLeft {
  animation-name: rotateOutDownLeft; }

@keyframes rotateOutDownRight {
  from {
    transform-origin: right bottom;
    opacity: 1; }
  to {
    transform-origin: right bottom;
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0; } }

.rotateOutDownRight {
  animation-name: rotateOutDownRight; }

@keyframes rotateOutUpLeft {
  from {
    transform-origin: left bottom;
    opacity: 1; }
  to {
    transform-origin: left bottom;
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0; } }

.rotateOutUpLeft {
  animation-name: rotateOutUpLeft; }

@keyframes rotateOutUpRight {
  from {
    transform-origin: right bottom;
    opacity: 1; }
  to {
    transform-origin: right bottom;
    transform: rotate3d(0, 0, 1, 90deg);
    opacity: 0; } }

.rotateOutUpRight {
  animation-name: rotateOutUpRight; }

@keyframes hinge {
  0% {
    transform-origin: top left;
    animation-timing-function: ease-in-out; }
  20%, 60% {
    transform: rotate3d(0, 0, 1, 80deg);
    transform-origin: top left;
    animation-timing-function: ease-in-out; }
  40%, 80% {
    transform: rotate3d(0, 0, 1, 60deg);
    transform-origin: top left;
    animation-timing-function: ease-in-out;
    opacity: 1; }
  to {
    transform: translate3d(0, 700px, 0);
    opacity: 0; } }

.hinge {
  animation-name: hinge; }

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */

@keyframes rollIn {
  from {
    opacity: 0;
    transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg); }
  to {
    opacity: 1;
    transform: none; } }

.rollIn {
  animation-name: rollIn; }

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */

@keyframes rollOut {
  from {
    opacity: 1; }
  to {
    opacity: 0;
    transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg); } }

.rollOut {
  animation-name: rollOut; }

@keyframes zoomIn {
  from {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3); }
  50% {
    opacity: 1; } }

.zoomIn {
  animation-name: zoomIn; }

@keyframes zoomInDown {
  from {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  60% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); } }

.zoomInDown {
  animation-name: zoomInDown; }

@keyframes zoomInLeft {
  from {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  60% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); } }

.zoomInLeft {
  animation-name: zoomInLeft; }

@keyframes zoomInRight {
  from {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  60% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); } }

.zoomInRight {
  animation-name: zoomInRight; }

@keyframes zoomInUp {
  from {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  60% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); } }

.zoomInUp {
  animation-name: zoomInUp; }

@keyframes zoomOut {
  from {
    opacity: 1; }
  50% {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3); }
  to {
    opacity: 0; } }

.zoomOut {
  animation-name: zoomOut; }

@keyframes zoomOutDown {
  40% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  to {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    transform-origin: center bottom;
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); } }

.zoomOutDown {
  animation-name: zoomOutDown; }

@keyframes zoomOutLeft {
  40% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0); }
  to {
    opacity: 0;
    transform: scale(0.1) translate3d(-2000px, 0, 0);
    transform-origin: left center; } }

.zoomOutLeft {
  animation-name: zoomOutLeft; }

@keyframes zoomOutRight {
  40% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0); }
  to {
    opacity: 0;
    transform: scale(0.1) translate3d(2000px, 0, 0);
    transform-origin: right center; } }

.zoomOutRight {
  animation-name: zoomOutRight; }

@keyframes zoomOutUp {
  40% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  to {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    transform-origin: center bottom;
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); } }

.zoomOutUp {
  animation-name: zoomOutUp; }

@keyframes slideInDown {
  from {
    transform: translate3d(0, -100%, 0);
    visibility: visible; }
  to {
    transform: translate3d(0, 0, 0); } }

.slideInDown {
  animation-name: slideInDown; }

@keyframes slideInLeft {
  from {
    transform: translate3d(-100%, 0, 0);
    visibility: visible; }
  to {
    transform: translate3d(0, 0, 0); } }

.slideInLeft {
  animation-name: slideInLeft; }

@keyframes slideInRight {
  from {
    transform: translate3d(100%, 0, 0);
    visibility: visible; }
  to {
    transform: translate3d(0, 0, 0); } }

.slideInRight {
  animation-name: slideInRight; }

@keyframes slideInUp {
  from {
    transform: translate3d(0, 100%, 0);
    visibility: visible; }
  to {
    transform: translate3d(0, 0, 0); } }

.slideInUp {
  animation-name: slideInUp; }

@keyframes slideOutDown {
  from {
    transform: translate3d(0, 0, 0); }
  to {
    visibility: hidden;
    transform: translate3d(0, 100%, 0); } }

.slideOutDown {
  animation-name: slideOutDown; }

@keyframes slideOutLeft {
  from {
    transform: translate3d(0, 0, 0); }
  to {
    visibility: hidden;
    transform: translate3d(-100%, 0, 0); } }

.slideOutLeft {
  animation-name: slideOutLeft; }

@keyframes slideOutRight {
  from {
    transform: translate3d(0, 0, 0); }
  to {
    visibility: hidden;
    transform: translate3d(100%, 0, 0); } }

.slideOutRight {
  animation-name: slideOutRight; }

@keyframes slideOutUp {
  from {
    transform: translate3d(0, 0, 0); }
  to {
    visibility: hidden;
    transform: translate3d(0, -100%, 0); } }

.slideOutUp {
  animation-name: slideOutUp; }

#noticeContainer_stacks_in_30823 {
  /*  */
  display: block;
  position: relative; }
  #noticeContainer_stacks_in_30823 .clearfix:before {
    content: " ";
    display: table; }
  #noticeContainer_stacks_in_30823 .clearfix:after {
    content: " ";
    display: table;
    clear: both; }

#notice_stacks_in_30823 {
  /*  */
  /*  */
  opacity: 0;
  left: 0px;
  right: 0px;
  max-height: 100%;
  /*  */
  position: fixed;
  /*  */
  overflow-y: auto;
  visibility: hidden;
  /*  */
  z-index: 999999;
  /*  */
  max-width: 100%;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  bottom: 0px;
  /*  */
  /*  */
  /*  */
  /*  */
  margin-left: auto;
  margin-right: auto;
  /*  */
  /*  */
  /*  */
  /*  */
  background: rgba(21, 47, 103, 0.90);
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  font-family: "Nunito";
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  color: rgba(255, 255, 255, 1.00);
  border-radius: 0px 0px 0px 0px; }
  #notice_stacks_in_30823.show {
    opacity: 1;
    visibility: visible; }
  #notice_stacks_in_30823.hide {
    opacity: 0;
    visibility: hidden; }
  #notice_stacks_in_30823.cookie-hide {
    display: none; }

#notice_stacks_in_30823 .notice-inner-stacks {
  clear: both;
  margin: 0 auto;
  max-width: 960px;
  padding: 10px 10px 35px 10px; }

#notice_stacks_in_30823 .notice-inner {
  clear: both;
  margin: 0 auto;
  max-width: 960px;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
  padding: 10px 10px 35px 10px;
  /*  */
  /*  */
  text-align: center;
  /*  */
  /*  */
  /*  */
  display: -ms-flexbox;
  display: flex;
  /*  */
  /*  */ }
  #notice_stacks_in_30823 .notice-inner-text {
    -ms-flex: 0 1 auto;
        flex: 0 1 auto;
    max-width: 100%;
    font-size: 16px;
    line-height: 22px; }
  #notice_stacks_in_30823 .notice-inner-icon {
    /*  */
    /*  */
    /*  */
    -ms-flex-item-align: center;
        -ms-grid-row-align: center;
        align-self: center;
    /*  */
    /*  */
    -ms-flex: 0 1 auto;
        flex: 0 1 auto;
    color: rgba(255, 255, 255, 1.00);
    padding: 5px 20px 5px 10px; }
    #notice_stacks_in_30823 .notice-inner-icon i {
      font-size: 32px;
      vertical-align: middle; }

#notice_stacks_in_30823 .notice-close-btn {
  float: right;
  cursor: pointer;
  color: rgba(255, 255, 255, 1.00);
  padding: 10px 10px 0px 10px; }
  #notice_stacks_in_30823 .notice-close-btn i {
    cursor: pointer;
    vertical-align: middle; }

#notice_stacks_in_30823 .notice-action {
  height: 40px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  /*  */
  color: inherit;
  background: none;
  /*  */ }
  #notice_stacks_in_30823 .notice-action i {
    vertical-align: middle; }
  #notice_stacks_in_30823 .notice-action-close {
    border-style: solid;
    border-width: 1px 0 0 0;
    border-color: rgba(255, 255, 255, 0.30); }
    #notice_stacks_in_30823 .notice-action-close:hover {
      /*  */ }
  #notice_stacks_in_30823 .notice-action-custom {
    border-style: solid;
    border-width: 1px 0 0 1px;
    border-color: rgba(255, 255, 255, 0.30); }
    #notice_stacks_in_30823 .notice-action-custom:hover {
      /*  */ }
    #notice_stacks_in_30823 .notice-action-custom a {
      color: inherit;
      width: 100%;
      height: 100%;
      /*  */
      display: -ms-flexbox;
      display: flex;
      -ms-flex-align: center;
          align-items: center;
      text-decoration: none;
      -ms-flex-pack: center;
          justify-content: center;
      /*  */ }
  #notice_stacks_in_30823 .notice-action-btn {
    height: 100%;
    display: -ms-flexbox;
    display: flex;
    -ms-flex: 1 0 auto;
        flex: 1 0 auto;
    text-align: center;
    -ms-flex-align: center;
        align-items: center;
    box-sizing: border-box;
    -ms-flex-pack: center;
        justify-content: center; }
    #notice_stacks_in_30823 .notice-action-btn:hover {
      cursor: pointer; }

@media (max-width: 480px) {
  #notice_stacks_in_30823 .notice-action {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    height: 90px; }
    #notice_stacks_in_30823 .notice-action-custom {
      border-width: 1px 0 0 0; }
    #notice_stacks_in_30823 .notice-action div {
      height: 50%;
      width: 100%; } }

/*  */
@media all and (-ms-high-contrast: none) {
  #notice_stacks_in_30823 {
    width: 100%; }
    #notice_stacks_in_30823 *::-ms-backdrop, #notice_stacks_in_30823 #notice_stacks_in_30823 {
      width: 100%; } }

/*  */
#stacks_in_30828 h1,#stacks_in_30828 .hTxt:not(.segment) div{font-size:3.00rem}@media all and (max-width:640px){#stacks_in_30828 h1,#stacks_in_30828 .hTxt:not(.segment) div{font-size:1.50rem}}#stacks_in_30828 h1,#stacks_in_30828 div{color:rgba(205, 41, 27, 1.00)}#stacks_in_30828 h1 a,#stacks_in_30828 div a{color:rgba(205, 41, 27, 1.00)}#stacks_in_30828 h1 a:hover,#stacks_in_30828 div a:hover{color:rgba(153, 30, 20, 1.00)}#stacks_in_30828 small,#stacks_in_30828 small div{color:rgba(111, 111, 111, 1.00)}#stacks_in_30828 .hTxt:not(.vault-font),.no-default:not(.custom-font) .hTxt:not(.vault-font){font-family:"Archivo Black",Sans-Serif;font-weight:400;font-style:normal}#stacks_in_30828 .hTxt.segment[data-seg="segment1"]{font-family:"Roboto ",Sans-Serif;font-weight:400;font-style:normal}#stacks_in_30828 .primary,#stacks_in_30828 .segment{display:inline-block}#stacks_in_30828 .primary.sub-title,#stacks_in_30828 .segment.sub-title{display:block}#stacks_in_30828 [data-seg="segment2"].last-title{display:block}#stacks_in_30828 .segment.no-shadow{text-shadow:none !important}#stacks_in_30828 .segment *{}#stacks_in_30828 .hTxt.primary{vertical-align:baseline}#stacks_in_30828 .segment[data-seg="segment1"]{font-size:100%;color:rgba(10, 33, 88, 1.00);padding:0px 0px 0px 13px;margin:0px 0px 0px 0px;vertical-align:baseline;}#stacks_in_30828 .segment[data-seg="segment1"] div{color:rgba(10, 33, 88, 1.00)}#stacks_in_30828 .segment[data-seg="segment1"] div.mez{font-size:100%}


  #stacks_in_30843{text-align:center}          @media screen and (max-width:641px){#stacks_in_30843>.button.b-p.expand-mob:not(.icon-only),#stacks_in_30843>.dd-wrap>.button.b-p.expand-mob:not(.icon-only){width:100%!important}}@media screen and (min-width:641px){#stacks_in_30843 .button.b-p.expand-large:not(.icon-only),#stacks_in_30843>.dd-wrap>.button.b-p.expand-large:not(.icon-only){width:100%!important}}
   @media screen and (max-width:641px){#stacks_in_30843.bp-wrap{padding:20px 0px 0px 0px}}  @media screen and (min-width:641px){#stacks_in_30843.bp-wrap{padding:20px 0px 0px 0px}}         
  #stacks_in_30843 .button.b-p.custom{border:0px solid rgba(179, 179, 177, 1.00)}#stacks_in_30843 .button.b-p.custom:hover{border:0px solid rgba(179, 179, 177, 1.00)} #stacks_in_30843 .button.b-p{color:rgba(255, 255, 255, 1.00);background-color:rgba(205, 41, 27, 1.00)}#stacks_in_30843 .button.b-p:not(.d-hov){-webkit-transition:color 200ms ease,background-color 200ms ease,box-shadow 200ms ease,border 200ms ease;-webkit-transition:color 200ms ease,background-color 200ms ease,border 200ms ease,-webkit-box-shadow 200ms ease;transition:color 200ms ease,background-color 200ms ease,border 200ms ease,-webkit-box-shadow 200ms ease;transition:color 200ms ease,background-color 200ms ease,box-shadow 200ms ease,border 200ms ease;transition:color 200ms ease,background-color 200ms ease,box-shadow 200ms ease,border 200ms ease,-webkit-box-shadow 200ms ease}  #stacks_in_30843 .button.b-p:not(.bp-hover):hover{color:rgba(255, 255, 255, 0.90)!important; background-color:rgba(21, 47, 103, 1.00);}     
       
  #stacks_in_30843 .d-hov,#stacks_in_30843 .d-hov::before,#stacks_in_30843 .d-hov::after{-webkit-transition-duration:300ms;transition-duration:300ms}#stacks_in_30843 .d-hov.active,#stacks_in_30843 .d-hov.active::before,#stacks_in_30843 .d-hov.active::after{-webkit-transition-duration:0ms;transition-duration:0ms}#stacks_in_30843 .hover-col:not(.button.b-p):not(.bp-zone-item)::before{background:rgba(239, 181, 10, 1.00)!important}#stacks_in_30843 .hover-col::before,#stacks_in_30843 .hover-col::after{-webkit-transition-property:all;transition-property:all;-webkit-transition-duration:.3s;transition-duration:.3s;-webkit-transition-timing-function:ease-out;transition-timing-function:ease-out}#stacks_in_30843 .hover-col:hover::before{background:rgba(239, 181, 10, 1.00)}#stacks_in_30843 .hover-col.active::before{background:rgba(207, 0, 32, 1.00)}#stacks_in_30843 .d-hov-ripple-out:hover::before{border:rgba(239, 181, 10, 1.00) solid 2px}#stacks_in_30843 .d-hov-pop:hover,#stacks_in_30843 .d-hov-pop:focus,#stacks_in_30843 .d-hov-pop.active{-webkit-animation-duration:300ms;animation-duration:300ms}#stacks_in_30843 .d-hov[class*="d-hov-underline-"]::before,#stacks_in_30843 .d-hov[class*="d-hov-overline-"]::before{height:4px!important}#stacks_in_30843 .d-hov[class*="d-hov-text-underline-"]>.bp-text::before,#stacks_in_30843 .d-hov[class*="d-hov-text-underline-"] .ml-text::before{bottom:-6px;border-bottom-color:rgba(239, 181, 10, 1.00)!important;border-bottom-width:4px;-webkit-transition-duration:300ms;transition-duration:300ms}#stacks_in_30843 .d-hov[class*="d-hov-text-underline-"].active>.bp-text::before,#stacks_in_30843 .d-hov[class*="d-hov-text-underline-"].active .ml-text::before{-webkit-transition-duration:0ms;transition-duration:0ms;border-bottom-color:rgba(207, 0, 32, 1.00)!important}#stacks_in_30843 .d-hov-reveal:hover::before,#stacks_in_30843 .d-hov-reveal.active::before{border-width:4px!important} 
               

  #stacks_in_30694{text-align:center}          @media screen and (max-width:641px){#stacks_in_30694>.button.b-p.expand-mob:not(.icon-only),#stacks_in_30694>.dd-wrap>.button.b-p.expand-mob:not(.icon-only){width:100%!important}}@media screen and (min-width:641px){#stacks_in_30694 .button.b-p.expand-large:not(.icon-only),#stacks_in_30694>.dd-wrap>.button.b-p.expand-large:not(.icon-only){width:100%!important}}
   @media screen and (max-width:641px){#stacks_in_30694.bp-wrap{padding:20px 0px 0px 0px}}  @media screen and (min-width:641px){#stacks_in_30694.bp-wrap{padding:20px 0px 0px 0px}}         
  #stacks_in_30694 .button.b-p.custom{border:0px solid rgba(179, 179, 177, 1.00)}#stacks_in_30694 .button.b-p.custom:hover{border:0px solid rgba(179, 179, 177, 1.00)} #stacks_in_30694 .button.b-p{color:rgba(255, 255, 255, 1.00);background-color:rgba(205, 41, 27, 1.00)}#stacks_in_30694 .button.b-p:not(.d-hov){-webkit-transition:color 200ms ease,background-color 200ms ease,box-shadow 200ms ease,border 200ms ease;-webkit-transition:color 200ms ease,background-color 200ms ease,border 200ms ease,-webkit-box-shadow 200ms ease;transition:color 200ms ease,background-color 200ms ease,border 200ms ease,-webkit-box-shadow 200ms ease;transition:color 200ms ease,background-color 200ms ease,box-shadow 200ms ease,border 200ms ease;transition:color 200ms ease,background-color 200ms ease,box-shadow 200ms ease,border 200ms ease,-webkit-box-shadow 200ms ease}  #stacks_in_30694 .button.b-p:not(.bp-hover):hover{color:rgba(255, 255, 255, 0.90)!important; background-color:rgba(21, 47, 103, 1.00);}     
       
  #stacks_in_30694 .d-hov,#stacks_in_30694 .d-hov::before,#stacks_in_30694 .d-hov::after{-webkit-transition-duration:300ms;transition-duration:300ms}#stacks_in_30694 .d-hov.active,#stacks_in_30694 .d-hov.active::before,#stacks_in_30694 .d-hov.active::after{-webkit-transition-duration:0ms;transition-duration:0ms}#stacks_in_30694 .hover-col:not(.button.b-p):not(.bp-zone-item)::before{background:rgba(239, 181, 10, 1.00)!important}#stacks_in_30694 .hover-col::before,#stacks_in_30694 .hover-col::after{-webkit-transition-property:all;transition-property:all;-webkit-transition-duration:.3s;transition-duration:.3s;-webkit-transition-timing-function:ease-out;transition-timing-function:ease-out}#stacks_in_30694 .hover-col:hover::before{background:rgba(239, 181, 10, 1.00)}#stacks_in_30694 .hover-col.active::before{background:rgba(207, 0, 32, 1.00)}#stacks_in_30694 .d-hov-ripple-out:hover::before{border:rgba(239, 181, 10, 1.00) solid 2px}#stacks_in_30694 .d-hov-pop:hover,#stacks_in_30694 .d-hov-pop:focus,#stacks_in_30694 .d-hov-pop.active{-webkit-animation-duration:300ms;animation-duration:300ms}#stacks_in_30694 .d-hov[class*="d-hov-underline-"]::before,#stacks_in_30694 .d-hov[class*="d-hov-overline-"]::before{height:4px!important}#stacks_in_30694 .d-hov[class*="d-hov-text-underline-"]>.bp-text::before,#stacks_in_30694 .d-hov[class*="d-hov-text-underline-"] .ml-text::before{bottom:-6px;border-bottom-color:rgba(239, 181, 10, 1.00)!important;border-bottom-width:4px;-webkit-transition-duration:300ms;transition-duration:300ms}#stacks_in_30694 .d-hov[class*="d-hov-text-underline-"].active>.bp-text::before,#stacks_in_30694 .d-hov[class*="d-hov-text-underline-"].active .ml-text::before{-webkit-transition-duration:0ms;transition-duration:0ms;border-bottom-color:rgba(207, 0, 32, 1.00)!important}#stacks_in_30694 .d-hov-reveal:hover::before,#stacks_in_30694 .d-hov-reveal.active::before{border-width:4px!important} 
               
@important "partials/maps";
.animated {
  animation-duration: 1s;
  animation-fill-mode: both; }
  .animated.infinite {
    animation-iteration-count: infinite; }
  .animated.hinge {
    animation-duration: 2s; }
  .animated.flipOutX, .animated.flipOutY, .animated.bounceIn, .animated.bounceOut {
    animation-duration: .75s; }

@keyframes bounce {
  from, 20%, 53%, 80%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transform: translate3d(0, 0, 0); }
  40%, 43% {
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    transform: translate3d(0, -30px, 0); }
  70% {
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    transform: translate3d(0, -15px, 0); }
  90% {
    transform: translate3d(0, -4px, 0); } }

.bounce {
  animation-name: bounce;
  transform-origin: center bottom; }

@keyframes flash {
  from, 50%, to {
    opacity: 1; }
  25%, 75% {
    opacity: 0; } }

.flash {
  animation-name: flash; }

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */

@keyframes pulse {
  from {
    transform: scale3d(1, 1, 1); }
  50% {
    transform: scale3d(1.05, 1.05, 1.05); }
  to {
    transform: scale3d(1, 1, 1); } }

.pulse {
  animation-name: pulse; }

@keyframes rubberBand {
  from {
    transform: scale3d(1, 1, 1); }
  30% {
    transform: scale3d(1.25, 0.75, 1); }
  40% {
    transform: scale3d(0.75, 1.25, 1); }
  50% {
    transform: scale3d(1.15, 0.85, 1); }
  65% {
    transform: scale3d(0.95, 1.05, 1); }
  75% {
    transform: scale3d(1.05, 0.95, 1); }
  to {
    transform: scale3d(1, 1, 1); } }

.rubberBand {
  animation-name: rubberBand; }

@keyframes shake {
  from, to {
    transform: translate3d(0, 0, 0); }
  10%, 30%, 50%, 70%, 90% {
    transform: translate3d(-10px, 0, 0); }
  20%, 40%, 60%, 80% {
    transform: translate3d(10px, 0, 0); } }

.shake {
  animation-name: shake; }

@keyframes headShake {
  0% {
    transform: translateX(0); }
  6.5% {
    transform: translateX(-6px) rotateY(-9deg); }
  18.5% {
    transform: translateX(5px) rotateY(7deg); }
  31.5% {
    transform: translateX(-3px) rotateY(-5deg); }
  43.5% {
    transform: translateX(2px) rotateY(3deg); }
  50% {
    transform: translateX(0); } }

.headShake {
  animation-timing-function: ease-in-out;
  animation-name: headShake; }

@keyframes swing {
  20% {
    transform: rotate3d(0, 0, 1, 15deg); }
  40% {
    transform: rotate3d(0, 0, 1, -10deg); }
  60% {
    transform: rotate3d(0, 0, 1, 5deg); }
  80% {
    transform: rotate3d(0, 0, 1, -5deg); }
  to {
    transform: rotate3d(0, 0, 1, 0deg); } }

.swing {
  transform-origin: top center;
  animation-name: swing; }

@keyframes tada {
  from {
    transform: scale3d(1, 1, 1); }
  10%, 20% {
    transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg); }
  30%, 50%, 70%, 90% {
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg); }
  40%, 60%, 80% {
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg); }
  to {
    transform: scale3d(1, 1, 1); } }

.tada {
  animation-name: tada; }

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */

@keyframes wobble {
  from {
    transform: none; }
  15% {
    transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg); }
  30% {
    transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg); }
  45% {
    transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg); }
  60% {
    transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg); }
  75% {
    transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg); }
  to {
    transform: none; } }

.wobble {
  animation-name: wobble; }

@keyframes jello {
  from, 11.1%, to {
    transform: none; }
  22.2% {
    transform: skewX(-12.5deg) skewY(-12.5deg); }
  33.3% {
    transform: skewX(6.25deg) skewY(6.25deg); }
  44.4% {
    transform: skewX(-3.125deg) skewY(-3.125deg); }
  55.5% {
    transform: skewX(1.5625deg) skewY(1.5625deg); }
  66.6% {
    transform: skewX(-0.78125deg) skewY(-0.78125deg); }
  77.7% {
    transform: skewX(0.39063deg) skewY(0.39063deg); }
  88.8% {
    transform: skewX(-0.19531deg) skewY(-0.19531deg); } }

.jello {
  animation-name: jello;
  transform-origin: center; }

@keyframes bounceIn {
  from, 20%, 40%, 60%, 80%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  0% {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3); }
  20% {
    transform: scale3d(1.1, 1.1, 1.1); }
  40% {
    transform: scale3d(0.9, 0.9, 0.9); }
  60% {
    opacity: 1;
    transform: scale3d(1.03, 1.03, 1.03); }
  80% {
    transform: scale3d(0.97, 0.97, 0.97); }
  to {
    opacity: 1;
    transform: scale3d(1, 1, 1); } }

.bounceIn {
  animation-name: bounceIn; }

@keyframes bounceInDown {
  from, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  0% {
    opacity: 0;
    transform: translate3d(0, -3000px, 0); }
  60% {
    opacity: 1;
    transform: translate3d(0, 25px, 0); }
  75% {
    transform: translate3d(0, -10px, 0); }
  90% {
    transform: translate3d(0, 5px, 0); }
  to {
    transform: none; } }

.bounceInDown {
  animation-name: bounceInDown; }

@keyframes bounceInLeft {
  from, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  0% {
    opacity: 0;
    transform: translate3d(-3000px, 0, 0); }
  60% {
    opacity: 1;
    transform: translate3d(25px, 0, 0); }
  75% {
    transform: translate3d(-10px, 0, 0); }
  90% {
    transform: translate3d(5px, 0, 0); }
  to {
    transform: none; } }

.bounceInLeft {
  animation-name: bounceInLeft; }

@keyframes bounceInRight {
  from, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  from {
    opacity: 0;
    transform: translate3d(3000px, 0, 0); }
  60% {
    opacity: 1;
    transform: translate3d(-25px, 0, 0); }
  75% {
    transform: translate3d(10px, 0, 0); }
  90% {
    transform: translate3d(-5px, 0, 0); }
  to {
    transform: none; } }

.bounceInRight {
  animation-name: bounceInRight; }

@keyframes bounceInUp {
  from, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  from {
    opacity: 0;
    transform: translate3d(0, 3000px, 0); }
  60% {
    opacity: 1;
    transform: translate3d(0, -20px, 0); }
  75% {
    transform: translate3d(0, 10px, 0); }
  90% {
    transform: translate3d(0, -5px, 0); }
  to {
    transform: translate3d(0, 0, 0); } }

.bounceInUp {
  animation-name: bounceInUp; }

@keyframes bounceOut {
  20% {
    transform: scale3d(0.9, 0.9, 0.9); }
  50%, 55% {
    opacity: 1;
    transform: scale3d(1.1, 1.1, 1.1); }
  to {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3); } }

.bounceOut {
  animation-name: bounceOut; }

@keyframes bounceOutDown {
  20% {
    transform: translate3d(0, 10px, 0); }
  40%, 45% {
    opacity: 1;
    transform: translate3d(0, -20px, 0); }
  to {
    opacity: 0;
    transform: translate3d(0, 2000px, 0); } }

.bounceOutDown {
  animation-name: bounceOutDown; }

@keyframes bounceOutLeft {
  20% {
    opacity: 1;
    transform: translate3d(20px, 0, 0); }
  to {
    opacity: 0;
    transform: translate3d(-2000px, 0, 0); } }

.bounceOutLeft {
  animation-name: bounceOutLeft; }

@keyframes bounceOutRight {
  20% {
    opacity: 1;
    transform: translate3d(-20px, 0, 0); }
  to {
    opacity: 0;
    transform: translate3d(2000px, 0, 0); } }

.bounceOutRight {
  animation-name: bounceOutRight; }

@keyframes bounceOutUp {
  20% {
    transform: translate3d(0, -10px, 0); }
  40%, 45% {
    opacity: 1;
    transform: translate3d(0, 20px, 0); }
  to {
    opacity: 0;
    transform: translate3d(0, -2000px, 0); } }

.bounceOutUp {
  animation-name: bounceOutUp; }

@keyframes fadeIn {
  from {
    opacity: 0; }
  to {
    opacity: 1; } }

.fadeIn {
  animation-name: fadeIn; }

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translate3d(0, -100%, 0); }
  to {
    opacity: 1;
    transform: none; } }

.fadeInDown {
  animation-name: fadeInDown; }

@keyframes fadeInDownBig {
  from {
    opacity: 0;
    transform: translate3d(0, -2000px, 0); }
  to {
    opacity: 1;
    transform: none; } }

.fadeInDownBig {
  animation-name: fadeInDownBig; }

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translate3d(-100%, 0, 0); }
  to {
    opacity: 1;
    transform: none; } }

.fadeInLeft {
  animation-name: fadeInLeft; }

@keyframes fadeInLeftBig {
  from {
    opacity: 0;
    transform: translate3d(-2000px, 0, 0); }
  to {
    opacity: 1;
    transform: none; } }

.fadeInLeftBig {
  animation-name: fadeInLeftBig; }

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translate3d(100%, 0, 0); }
  to {
    opacity: 1;
    transform: none; } }

.fadeInRight {
  animation-name: fadeInRight; }

@keyframes fadeInRightBig {
  from {
    opacity: 0;
    transform: translate3d(2000px, 0, 0); }
  to {
    opacity: 1;
    transform: none; } }

.fadeInRightBig {
  animation-name: fadeInRightBig; }

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translate3d(0, 100%, 0); }
  to {
    opacity: 1;
    transform: none; } }

.fadeInUp {
  animation-name: fadeInUp; }

@keyframes fadeInUpBig {
  from {
    opacity: 0;
    transform: translate3d(0, 2000px, 0); }
  to {
    opacity: 1;
    transform: none; } }

.fadeInUpBig {
  animation-name: fadeInUpBig; }

@keyframes fadeOut {
  from {
    opacity: 1; }
  to {
    opacity: 0; } }

.fadeOut {
  animation-name: fadeOut; }

@keyframes fadeOutDown {
  from {
    opacity: 1; }
  to {
    opacity: 0;
    transform: translate3d(0, 100%, 0); } }

.fadeOutDown {
  animation-name: fadeOutDown; }

@keyframes fadeOutDownBig {
  from {
    opacity: 1; }
  to {
    opacity: 0;
    transform: translate3d(0, 2000px, 0); } }

.fadeOutDownBig {
  animation-name: fadeOutDownBig; }

@keyframes fadeOutLeft {
  from {
    opacity: 1; }
  to {
    opacity: 0;
    transform: translate3d(-100%, 0, 0); } }

.fadeOutLeft {
  animation-name: fadeOutLeft; }

@keyframes fadeOutLeftBig {
  from {
    opacity: 1; }
  to {
    opacity: 0;
    transform: translate3d(-2000px, 0, 0); } }

.fadeOutLeftBig {
  animation-name: fadeOutLeftBig; }

@keyframes fadeOutRight {
  from {
    opacity: 1; }
  to {
    opacity: 0;
    transform: translate3d(100%, 0, 0); } }

.fadeOutRight {
  animation-name: fadeOutRight; }

@keyframes fadeOutRightBig {
  from {
    opacity: 1; }
  to {
    opacity: 0;
    transform: translate3d(2000px, 0, 0); } }

.fadeOutRightBig {
  animation-name: fadeOutRightBig; }

@keyframes fadeOutUp {
  from {
    opacity: 1; }
  to {
    opacity: 0;
    transform: translate3d(0, -100%, 0); } }

.fadeOutUp {
  animation-name: fadeOutUp; }

@keyframes fadeOutUpBig {
  from {
    opacity: 1; }
  to {
    opacity: 0;
    transform: translate3d(0, -2000px, 0); } }

.fadeOutUpBig {
  animation-name: fadeOutUpBig; }

@keyframes flip {
  from {
    transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    animation-timing-function: ease-out; }
  40% {
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    animation-timing-function: ease-out; }
  50% {
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    animation-timing-function: ease-in; }
  80% {
    transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
    animation-timing-function: ease-in; }
  to {
    transform: perspective(400px);
    animation-timing-function: ease-in; } }

.animated.flip {
  -webkit-backface-visibility: visible;
  backface-visibility: visible;
  animation-name: flip; }

@keyframes flipInX {
  from {
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    animation-timing-function: ease-in;
    opacity: 0; }
  40% {
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    animation-timing-function: ease-in; }
  60% {
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1; }
  80% {
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg); }
  to {
    transform: perspective(400px); } }

.flipInX {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  animation-name: flipInX; }

@keyframes flipInY {
  from {
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    animation-timing-function: ease-in;
    opacity: 0; }
  40% {
    transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    animation-timing-function: ease-in; }
  60% {
    transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    opacity: 1; }
  80% {
    transform: perspective(400px) rotate3d(0, 1, 0, -5deg); }
  to {
    transform: perspective(400px); } }

.flipInY {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  animation-name: flipInY; }

@keyframes flipOutX {
  from {
    transform: perspective(400px); }
  30% {
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    opacity: 1; }
  to {
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0; } }

.flipOutX {
  animation-name: flipOutX;
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important; }

@keyframes flipOutY {
  from {
    transform: perspective(400px); }
  30% {
    transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    opacity: 1; }
  to {
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    opacity: 0; } }

.flipOutY {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  animation-name: flipOutY; }

@keyframes lightSpeedIn {
  from {
    transform: translate3d(100%, 0, 0) skewX(-30deg);
    opacity: 0; }
  60% {
    transform: skewX(20deg);
    opacity: 1; }
  80% {
    transform: skewX(-5deg);
    opacity: 1; }
  to {
    transform: none;
    opacity: 1; } }

.lightSpeedIn {
  animation-name: lightSpeedIn;
  animation-timing-function: ease-out; }

@keyframes lightSpeedOut {
  from {
    opacity: 1; }
  to {
    transform: translate3d(100%, 0, 0) skewX(30deg);
    opacity: 0; } }

.lightSpeedOut {
  animation-name: lightSpeedOut;
  animation-timing-function: ease-in; }

@keyframes rotateIn {
  from {
    transform-origin: center;
    transform: rotate3d(0, 0, 1, -200deg);
    opacity: 0; }
  to {
    transform-origin: center;
    transform: none;
    opacity: 1; } }

.rotateIn {
  animation-name: rotateIn; }

@keyframes rotateInDownLeft {
  from {
    transform-origin: left bottom;
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0; }
  to {
    transform-origin: left bottom;
    transform: none;
    opacity: 1; } }

.rotateInDownLeft {
  animation-name: rotateInDownLeft; }

@keyframes rotateInDownRight {
  from {
    transform-origin: right bottom;
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0; }
  to {
    transform-origin: right bottom;
    transform: none;
    opacity: 1; } }

.rotateInDownRight {
  animation-name: rotateInDownRight; }

@keyframes rotateInUpLeft {
  from {
    transform-origin: left bottom;
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0; }
  to {
    transform-origin: left bottom;
    transform: none;
    opacity: 1; } }

.rotateInUpLeft {
  animation-name: rotateInUpLeft; }

@keyframes rotateInUpRight {
  from {
    transform-origin: right bottom;
    transform: rotate3d(0, 0, 1, -90deg);
    opacity: 0; }
  to {
    transform-origin: right bottom;
    transform: none;
    opacity: 1; } }

.rotateInUpRight {
  animation-name: rotateInUpRight; }

@keyframes rotateOut {
  from {
    transform-origin: center;
    opacity: 1; }
  to {
    transform-origin: center;
    transform: rotate3d(0, 0, 1, 200deg);
    opacity: 0; } }

.rotateOut {
  animation-name: rotateOut; }

@keyframes rotateOutDownLeft {
  from {
    transform-origin: left bottom;
    opacity: 1; }
  to {
    transform-origin: left bottom;
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0; } }

.rotateOutDownLeft {
  animation-name: rotateOutDownLeft; }

@keyframes rotateOutDownRight {
  from {
    transform-origin: right bottom;
    opacity: 1; }
  to {
    transform-origin: right bottom;
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0; } }

.rotateOutDownRight {
  animation-name: rotateOutDownRight; }

@keyframes rotateOutUpLeft {
  from {
    transform-origin: left bottom;
    opacity: 1; }
  to {
    transform-origin: left bottom;
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0; } }

.rotateOutUpLeft {
  animation-name: rotateOutUpLeft; }

@keyframes rotateOutUpRight {
  from {
    transform-origin: right bottom;
    opacity: 1; }
  to {
    transform-origin: right bottom;
    transform: rotate3d(0, 0, 1, 90deg);
    opacity: 0; } }

.rotateOutUpRight {
  animation-name: rotateOutUpRight; }

@keyframes hinge {
  0% {
    transform-origin: top left;
    animation-timing-function: ease-in-out; }
  20%, 60% {
    transform: rotate3d(0, 0, 1, 80deg);
    transform-origin: top left;
    animation-timing-function: ease-in-out; }
  40%, 80% {
    transform: rotate3d(0, 0, 1, 60deg);
    transform-origin: top left;
    animation-timing-function: ease-in-out;
    opacity: 1; }
  to {
    transform: translate3d(0, 700px, 0);
    opacity: 0; } }

.hinge {
  animation-name: hinge; }

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */

@keyframes rollIn {
  from {
    opacity: 0;
    transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg); }
  to {
    opacity: 1;
    transform: none; } }

.rollIn {
  animation-name: rollIn; }

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */

@keyframes rollOut {
  from {
    opacity: 1; }
  to {
    opacity: 0;
    transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg); } }

.rollOut {
  animation-name: rollOut; }

@keyframes zoomIn {
  from {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3); }
  50% {
    opacity: 1; } }

.zoomIn {
  animation-name: zoomIn; }

@keyframes zoomInDown {
  from {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  60% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); } }

.zoomInDown {
  animation-name: zoomInDown; }

@keyframes zoomInLeft {
  from {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  60% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); } }

.zoomInLeft {
  animation-name: zoomInLeft; }

@keyframes zoomInRight {
  from {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  60% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); } }

.zoomInRight {
  animation-name: zoomInRight; }

@keyframes zoomInUp {
  from {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  60% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); } }

.zoomInUp {
  animation-name: zoomInUp; }

@keyframes zoomOut {
  from {
    opacity: 1; }
  50% {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3); }
  to {
    opacity: 0; } }

.zoomOut {
  animation-name: zoomOut; }

@keyframes zoomOutDown {
  40% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  to {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    transform-origin: center bottom;
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); } }

.zoomOutDown {
  animation-name: zoomOutDown; }

@keyframes zoomOutLeft {
  40% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0); }
  to {
    opacity: 0;
    transform: scale(0.1) translate3d(-2000px, 0, 0);
    transform-origin: left center; } }

.zoomOutLeft {
  animation-name: zoomOutLeft; }

@keyframes zoomOutRight {
  40% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0); }
  to {
    opacity: 0;
    transform: scale(0.1) translate3d(2000px, 0, 0);
    transform-origin: right center; } }

.zoomOutRight {
  animation-name: zoomOutRight; }

@keyframes zoomOutUp {
  40% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  to {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    transform-origin: center bottom;
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); } }

.zoomOutUp {
  animation-name: zoomOutUp; }

@keyframes slideInDown {
  from {
    transform: translate3d(0, -100%, 0);
    visibility: visible; }
  to {
    transform: translate3d(0, 0, 0); } }

.slideInDown {
  animation-name: slideInDown; }

@keyframes slideInLeft {
  from {
    transform: translate3d(-100%, 0, 0);
    visibility: visible; }
  to {
    transform: translate3d(0, 0, 0); } }

.slideInLeft {
  animation-name: slideInLeft; }

@keyframes slideInRight {
  from {
    transform: translate3d(100%, 0, 0);
    visibility: visible; }
  to {
    transform: translate3d(0, 0, 0); } }

.slideInRight {
  animation-name: slideInRight; }

@keyframes slideInUp {
  from {
    transform: translate3d(0, 100%, 0);
    visibility: visible; }
  to {
    transform: translate3d(0, 0, 0); } }

.slideInUp {
  animation-name: slideInUp; }

@keyframes slideOutDown {
  from {
    transform: translate3d(0, 0, 0); }
  to {
    visibility: hidden;
    transform: translate3d(0, 100%, 0); } }

.slideOutDown {
  animation-name: slideOutDown; }

@keyframes slideOutLeft {
  from {
    transform: translate3d(0, 0, 0); }
  to {
    visibility: hidden;
    transform: translate3d(-100%, 0, 0); } }

.slideOutLeft {
  animation-name: slideOutLeft; }

@keyframes slideOutRight {
  from {
    transform: translate3d(0, 0, 0); }
  to {
    visibility: hidden;
    transform: translate3d(100%, 0, 0); } }

.slideOutRight {
  animation-name: slideOutRight; }

@keyframes slideOutUp {
  from {
    transform: translate3d(0, 0, 0); }
  to {
    visibility: hidden;
    transform: translate3d(0, -100%, 0); } }

.slideOutUp {
  animation-name: slideOutUp; }

#noticeContainer_stacks_in_30697 {
  /*  */
  display: block;
  position: relative; }
  #noticeContainer_stacks_in_30697 .clearfix:before {
    content: " ";
    display: table; }
  #noticeContainer_stacks_in_30697 .clearfix:after {
    content: " ";
    display: table;
    clear: both; }

#notice_stacks_in_30697 {
  /*  */
  /*  */
  opacity: 0;
  left: 0px;
  right: 0px;
  max-height: 100%;
  /*  */
  position: fixed;
  /*  */
  overflow-y: auto;
  visibility: hidden;
  /*  */
  z-index: 999999;
  /*  */
  max-width: 100%;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  bottom: 0px;
  /*  */
  /*  */
  /*  */
  /*  */
  margin-left: auto;
  margin-right: auto;
  /*  */
  /*  */
  /*  */
  /*  */
  background: rgba(21, 47, 103, 0.90);
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  font-family: "Nunito";
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  color: rgba(255, 255, 255, 1.00);
  border-radius: 0px 0px 0px 0px; }
  #notice_stacks_in_30697.show {
    opacity: 1;
    visibility: visible; }
  #notice_stacks_in_30697.hide {
    opacity: 0;
    visibility: hidden; }
  #notice_stacks_in_30697.cookie-hide {
    display: none; }

#notice_stacks_in_30697 .notice-inner-stacks {
  clear: both;
  margin: 0 auto;
  max-width: 960px;
  padding: 10px 10px 35px 10px; }

#notice_stacks_in_30697 .notice-inner {
  clear: both;
  margin: 0 auto;
  max-width: 960px;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
  padding: 10px 10px 35px 10px;
  /*  */
  /*  */
  text-align: center;
  /*  */
  /*  */
  /*  */
  display: -ms-flexbox;
  display: flex;
  /*  */
  /*  */ }
  #notice_stacks_in_30697 .notice-inner-text {
    -ms-flex: 0 1 auto;
        flex: 0 1 auto;
    max-width: 100%;
    font-size: 16px;
    line-height: 22px; }
  #notice_stacks_in_30697 .notice-inner-icon {
    /*  */
    /*  */
    /*  */
    -ms-flex-item-align: center;
        -ms-grid-row-align: center;
        align-self: center;
    /*  */
    /*  */
    -ms-flex: 0 1 auto;
        flex: 0 1 auto;
    color: rgba(255, 255, 255, 1.00);
    padding: 5px 20px 5px 10px; }
    #notice_stacks_in_30697 .notice-inner-icon i {
      font-size: 32px;
      vertical-align: middle; }

#notice_stacks_in_30697 .notice-close-btn {
  float: right;
  cursor: pointer;
  color: rgba(255, 255, 255, 1.00);
  padding: 10px 10px 0px 10px; }
  #notice_stacks_in_30697 .notice-close-btn i {
    cursor: pointer;
    vertical-align: middle; }

#notice_stacks_in_30697 .notice-action {
  height: 40px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  /*  */
  color: inherit;
  background: none;
  /*  */ }
  #notice_stacks_in_30697 .notice-action i {
    vertical-align: middle; }
  #notice_stacks_in_30697 .notice-action-close {
    border-style: solid;
    border-width: 1px 0 0 0;
    border-color: rgba(255, 255, 255, 0.30); }
    #notice_stacks_in_30697 .notice-action-close:hover {
      /*  */ }
  #notice_stacks_in_30697 .notice-action-custom {
    border-style: solid;
    border-width: 1px 0 0 1px;
    border-color: rgba(255, 255, 255, 0.30); }
    #notice_stacks_in_30697 .notice-action-custom:hover {
      /*  */ }
    #notice_stacks_in_30697 .notice-action-custom a {
      color: inherit;
      width: 100%;
      height: 100%;
      /*  */
      display: -ms-flexbox;
      display: flex;
      -ms-flex-align: center;
          align-items: center;
      text-decoration: none;
      -ms-flex-pack: center;
          justify-content: center;
      /*  */ }
  #notice_stacks_in_30697 .notice-action-btn {
    height: 100%;
    display: -ms-flexbox;
    display: flex;
    -ms-flex: 1 0 auto;
        flex: 1 0 auto;
    text-align: center;
    -ms-flex-align: center;
        align-items: center;
    box-sizing: border-box;
    -ms-flex-pack: center;
        justify-content: center; }
    #notice_stacks_in_30697 .notice-action-btn:hover {
      cursor: pointer; }

@media (max-width: 480px) {
  #notice_stacks_in_30697 .notice-action {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    height: 90px; }
    #notice_stacks_in_30697 .notice-action-custom {
      border-width: 1px 0 0 0; }
    #notice_stacks_in_30697 .notice-action div {
      height: 50%;
      width: 100%; } }

/*  */
@media all and (-ms-high-contrast: none) {
  #notice_stacks_in_30697 {
    width: 100%; }
    #notice_stacks_in_30697 *::-ms-backdrop, #notice_stacks_in_30697 #notice_stacks_in_30697 {
      width: 100%; } }

/*  */
#stacks_in_30903 h1,#stacks_in_30903 .hTxt:not(.segment) div{font-size:3.00rem}@media all and (max-width:640px){#stacks_in_30903 h1,#stacks_in_30903 .hTxt:not(.segment) div{font-size:1.50rem}}#stacks_in_30903 h1,#stacks_in_30903 div{color:rgba(205, 41, 27, 1.00)}#stacks_in_30903 h1 a,#stacks_in_30903 div a{color:rgba(205, 41, 27, 1.00)}#stacks_in_30903 h1 a:hover,#stacks_in_30903 div a:hover{color:rgba(153, 30, 20, 1.00)}#stacks_in_30903 small,#stacks_in_30903 small div{color:rgba(111, 111, 111, 1.00)}#stacks_in_30903 .hTxt:not(.vault-font),.no-default:not(.custom-font) .hTxt:not(.vault-font){font-family:"Archivo Black",Sans-Serif;font-weight:400;font-style:normal}#stacks_in_30903 .hTxt.segment[data-seg="segment1"]{font-family:"Roboto ",Sans-Serif;font-weight:400;font-style:normal}#stacks_in_30903 .primary,#stacks_in_30903 .segment{display:inline-block}#stacks_in_30903 .primary.sub-title,#stacks_in_30903 .segment.sub-title{display:block}#stacks_in_30903 [data-seg="segment2"].last-title{display:block}#stacks_in_30903 .segment.no-shadow{text-shadow:none !important}#stacks_in_30903 .segment *{}#stacks_in_30903 .hTxt.primary{vertical-align:baseline}#stacks_in_30903 .segment[data-seg="segment1"]{font-size:100%;color:rgba(10, 33, 88, 1.00);padding:0px 0px 0px 13px;margin:0px 0px 0px 0px;vertical-align:baseline;}#stacks_in_30903 .segment[data-seg="segment1"] div{color:rgba(10, 33, 88, 1.00)}#stacks_in_30903 .segment[data-seg="segment1"] div.mez{font-size:100%}


  #stacks_in_30930{text-align:center}          @media screen and (max-width:641px){#stacks_in_30930>.button.b-p.expand-mob:not(.icon-only),#stacks_in_30930>.dd-wrap>.button.b-p.expand-mob:not(.icon-only){width:100%!important}}@media screen and (min-width:641px){#stacks_in_30930 .button.b-p.expand-large:not(.icon-only),#stacks_in_30930>.dd-wrap>.button.b-p.expand-large:not(.icon-only){width:100%!important}}
   @media screen and (max-width:641px){#stacks_in_30930.bp-wrap{padding:20px 0px 0px 0px}}  @media screen and (min-width:641px){#stacks_in_30930.bp-wrap{padding:20px 0px 0px 0px}}         
  #stacks_in_30930 .button.b-p.custom{border:0px solid rgba(179, 179, 177, 1.00)}#stacks_in_30930 .button.b-p.custom:hover{border:0px solid rgba(179, 179, 177, 1.00)} #stacks_in_30930 .button.b-p{color:rgba(255, 255, 255, 1.00);background-color:rgba(205, 41, 27, 1.00)}#stacks_in_30930 .button.b-p:not(.d-hov){-webkit-transition:color 200ms ease,background-color 200ms ease,box-shadow 200ms ease,border 200ms ease;-webkit-transition:color 200ms ease,background-color 200ms ease,border 200ms ease,-webkit-box-shadow 200ms ease;transition:color 200ms ease,background-color 200ms ease,border 200ms ease,-webkit-box-shadow 200ms ease;transition:color 200ms ease,background-color 200ms ease,box-shadow 200ms ease,border 200ms ease;transition:color 200ms ease,background-color 200ms ease,box-shadow 200ms ease,border 200ms ease,-webkit-box-shadow 200ms ease}  #stacks_in_30930 .button.b-p:not(.bp-hover):hover{color:rgba(255, 255, 255, 0.90)!important; background-color:rgba(21, 47, 103, 1.00);}     
       
  #stacks_in_30930 .d-hov,#stacks_in_30930 .d-hov::before,#stacks_in_30930 .d-hov::after{-webkit-transition-duration:300ms;transition-duration:300ms}#stacks_in_30930 .d-hov.active,#stacks_in_30930 .d-hov.active::before,#stacks_in_30930 .d-hov.active::after{-webkit-transition-duration:0ms;transition-duration:0ms}#stacks_in_30930 .hover-col:not(.button.b-p):not(.bp-zone-item)::before{background:rgba(239, 181, 10, 1.00)!important}#stacks_in_30930 .hover-col::before,#stacks_in_30930 .hover-col::after{-webkit-transition-property:all;transition-property:all;-webkit-transition-duration:.3s;transition-duration:.3s;-webkit-transition-timing-function:ease-out;transition-timing-function:ease-out}#stacks_in_30930 .hover-col:hover::before{background:rgba(239, 181, 10, 1.00)}#stacks_in_30930 .hover-col.active::before{background:rgba(207, 0, 32, 1.00)}#stacks_in_30930 .d-hov-ripple-out:hover::before{border:rgba(239, 181, 10, 1.00) solid 2px}#stacks_in_30930 .d-hov-pop:hover,#stacks_in_30930 .d-hov-pop:focus,#stacks_in_30930 .d-hov-pop.active{-webkit-animation-duration:300ms;animation-duration:300ms}#stacks_in_30930 .d-hov[class*="d-hov-underline-"]::before,#stacks_in_30930 .d-hov[class*="d-hov-overline-"]::before{height:4px!important}#stacks_in_30930 .d-hov[class*="d-hov-text-underline-"]>.bp-text::before,#stacks_in_30930 .d-hov[class*="d-hov-text-underline-"] .ml-text::before{bottom:-6px;border-bottom-color:rgba(239, 181, 10, 1.00)!important;border-bottom-width:4px;-webkit-transition-duration:300ms;transition-duration:300ms}#stacks_in_30930 .d-hov[class*="d-hov-text-underline-"].active>.bp-text::before,#stacks_in_30930 .d-hov[class*="d-hov-text-underline-"].active .ml-text::before{-webkit-transition-duration:0ms;transition-duration:0ms;border-bottom-color:rgba(207, 0, 32, 1.00)!important}#stacks_in_30930 .d-hov-reveal:hover::before,#stacks_in_30930 .d-hov-reveal.active::before{border-width:4px!important} 
               

  #stacks_in_30850{text-align:center}          @media screen and (max-width:641px){#stacks_in_30850>.button.b-p.expand-mob:not(.icon-only),#stacks_in_30850>.dd-wrap>.button.b-p.expand-mob:not(.icon-only){width:100%!important}}@media screen and (min-width:641px){#stacks_in_30850 .button.b-p.expand-large:not(.icon-only),#stacks_in_30850>.dd-wrap>.button.b-p.expand-large:not(.icon-only){width:100%!important}}
   @media screen and (max-width:641px){#stacks_in_30850.bp-wrap{padding:20px 0px 0px 0px}}  @media screen and (min-width:641px){#stacks_in_30850.bp-wrap{padding:20px 0px 0px 0px}}         
  #stacks_in_30850 .button.b-p.custom{border:0px solid rgba(179, 179, 177, 1.00)}#stacks_in_30850 .button.b-p.custom:hover{border:0px solid rgba(179, 179, 177, 1.00)} #stacks_in_30850 .button.b-p{color:rgba(255, 255, 255, 1.00);background-color:rgba(205, 41, 27, 1.00)}#stacks_in_30850 .button.b-p:not(.d-hov){-webkit-transition:color 200ms ease,background-color 200ms ease,box-shadow 200ms ease,border 200ms ease;-webkit-transition:color 200ms ease,background-color 200ms ease,border 200ms ease,-webkit-box-shadow 200ms ease;transition:color 200ms ease,background-color 200ms ease,border 200ms ease,-webkit-box-shadow 200ms ease;transition:color 200ms ease,background-color 200ms ease,box-shadow 200ms ease,border 200ms ease;transition:color 200ms ease,background-color 200ms ease,box-shadow 200ms ease,border 200ms ease,-webkit-box-shadow 200ms ease}  #stacks_in_30850 .button.b-p:not(.bp-hover):hover{color:rgba(255, 255, 255, 0.90)!important; background-color:rgba(21, 47, 103, 1.00);}     
       
  #stacks_in_30850 .d-hov,#stacks_in_30850 .d-hov::before,#stacks_in_30850 .d-hov::after{-webkit-transition-duration:300ms;transition-duration:300ms}#stacks_in_30850 .d-hov.active,#stacks_in_30850 .d-hov.active::before,#stacks_in_30850 .d-hov.active::after{-webkit-transition-duration:0ms;transition-duration:0ms}#stacks_in_30850 .hover-col:not(.button.b-p):not(.bp-zone-item)::before{background:rgba(239, 181, 10, 1.00)!important}#stacks_in_30850 .hover-col::before,#stacks_in_30850 .hover-col::after{-webkit-transition-property:all;transition-property:all;-webkit-transition-duration:.3s;transition-duration:.3s;-webkit-transition-timing-function:ease-out;transition-timing-function:ease-out}#stacks_in_30850 .hover-col:hover::before{background:rgba(239, 181, 10, 1.00)}#stacks_in_30850 .hover-col.active::before{background:rgba(207, 0, 32, 1.00)}#stacks_in_30850 .d-hov-ripple-out:hover::before{border:rgba(239, 181, 10, 1.00) solid 2px}#stacks_in_30850 .d-hov-pop:hover,#stacks_in_30850 .d-hov-pop:focus,#stacks_in_30850 .d-hov-pop.active{-webkit-animation-duration:300ms;animation-duration:300ms}#stacks_in_30850 .d-hov[class*="d-hov-underline-"]::before,#stacks_in_30850 .d-hov[class*="d-hov-overline-"]::before{height:4px!important}#stacks_in_30850 .d-hov[class*="d-hov-text-underline-"]>.bp-text::before,#stacks_in_30850 .d-hov[class*="d-hov-text-underline-"] .ml-text::before{bottom:-6px;border-bottom-color:rgba(239, 181, 10, 1.00)!important;border-bottom-width:4px;-webkit-transition-duration:300ms;transition-duration:300ms}#stacks_in_30850 .d-hov[class*="d-hov-text-underline-"].active>.bp-text::before,#stacks_in_30850 .d-hov[class*="d-hov-text-underline-"].active .ml-text::before{-webkit-transition-duration:0ms;transition-duration:0ms;border-bottom-color:rgba(207, 0, 32, 1.00)!important}#stacks_in_30850 .d-hov-reveal:hover::before,#stacks_in_30850 .d-hov-reveal.active::before{border-width:4px!important} 
               
@important "partials/maps";
.animated {
  animation-duration: 1s;
  animation-fill-mode: both; }
  .animated.infinite {
    animation-iteration-count: infinite; }
  .animated.hinge {
    animation-duration: 2s; }
  .animated.flipOutX, .animated.flipOutY, .animated.bounceIn, .animated.bounceOut {
    animation-duration: .75s; }

@keyframes bounce {
  from, 20%, 53%, 80%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transform: translate3d(0, 0, 0); }
  40%, 43% {
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    transform: translate3d(0, -30px, 0); }
  70% {
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    transform: translate3d(0, -15px, 0); }
  90% {
    transform: translate3d(0, -4px, 0); } }

.bounce {
  animation-name: bounce;
  transform-origin: center bottom; }

@keyframes flash {
  from, 50%, to {
    opacity: 1; }
  25%, 75% {
    opacity: 0; } }

.flash {
  animation-name: flash; }

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */

@keyframes pulse {
  from {
    transform: scale3d(1, 1, 1); }
  50% {
    transform: scale3d(1.05, 1.05, 1.05); }
  to {
    transform: scale3d(1, 1, 1); } }

.pulse {
  animation-name: pulse; }

@keyframes rubberBand {
  from {
    transform: scale3d(1, 1, 1); }
  30% {
    transform: scale3d(1.25, 0.75, 1); }
  40% {
    transform: scale3d(0.75, 1.25, 1); }
  50% {
    transform: scale3d(1.15, 0.85, 1); }
  65% {
    transform: scale3d(0.95, 1.05, 1); }
  75% {
    transform: scale3d(1.05, 0.95, 1); }
  to {
    transform: scale3d(1, 1, 1); } }

.rubberBand {
  animation-name: rubberBand; }

@keyframes shake {
  from, to {
    transform: translate3d(0, 0, 0); }
  10%, 30%, 50%, 70%, 90% {
    transform: translate3d(-10px, 0, 0); }
  20%, 40%, 60%, 80% {
    transform: translate3d(10px, 0, 0); } }

.shake {
  animation-name: shake; }

@keyframes headShake {
  0% {
    transform: translateX(0); }
  6.5% {
    transform: translateX(-6px) rotateY(-9deg); }
  18.5% {
    transform: translateX(5px) rotateY(7deg); }
  31.5% {
    transform: translateX(-3px) rotateY(-5deg); }
  43.5% {
    transform: translateX(2px) rotateY(3deg); }
  50% {
    transform: translateX(0); } }

.headShake {
  animation-timing-function: ease-in-out;
  animation-name: headShake; }

@keyframes swing {
  20% {
    transform: rotate3d(0, 0, 1, 15deg); }
  40% {
    transform: rotate3d(0, 0, 1, -10deg); }
  60% {
    transform: rotate3d(0, 0, 1, 5deg); }
  80% {
    transform: rotate3d(0, 0, 1, -5deg); }
  to {
    transform: rotate3d(0, 0, 1, 0deg); } }

.swing {
  transform-origin: top center;
  animation-name: swing; }

@keyframes tada {
  from {
    transform: scale3d(1, 1, 1); }
  10%, 20% {
    transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg); }
  30%, 50%, 70%, 90% {
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg); }
  40%, 60%, 80% {
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg); }
  to {
    transform: scale3d(1, 1, 1); } }

.tada {
  animation-name: tada; }

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */

@keyframes wobble {
  from {
    transform: none; }
  15% {
    transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg); }
  30% {
    transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg); }
  45% {
    transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg); }
  60% {
    transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg); }
  75% {
    transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg); }
  to {
    transform: none; } }

.wobble {
  animation-name: wobble; }

@keyframes jello {
  from, 11.1%, to {
    transform: none; }
  22.2% {
    transform: skewX(-12.5deg) skewY(-12.5deg); }
  33.3% {
    transform: skewX(6.25deg) skewY(6.25deg); }
  44.4% {
    transform: skewX(-3.125deg) skewY(-3.125deg); }
  55.5% {
    transform: skewX(1.5625deg) skewY(1.5625deg); }
  66.6% {
    transform: skewX(-0.78125deg) skewY(-0.78125deg); }
  77.7% {
    transform: skewX(0.39063deg) skewY(0.39063deg); }
  88.8% {
    transform: skewX(-0.19531deg) skewY(-0.19531deg); } }

.jello {
  animation-name: jello;
  transform-origin: center; }

@keyframes bounceIn {
  from, 20%, 40%, 60%, 80%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  0% {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3); }
  20% {
    transform: scale3d(1.1, 1.1, 1.1); }
  40% {
    transform: scale3d(0.9, 0.9, 0.9); }
  60% {
    opacity: 1;
    transform: scale3d(1.03, 1.03, 1.03); }
  80% {
    transform: scale3d(0.97, 0.97, 0.97); }
  to {
    opacity: 1;
    transform: scale3d(1, 1, 1); } }

.bounceIn {
  animation-name: bounceIn; }

@keyframes bounceInDown {
  from, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  0% {
    opacity: 0;
    transform: translate3d(0, -3000px, 0); }
  60% {
    opacity: 1;
    transform: translate3d(0, 25px, 0); }
  75% {
    transform: translate3d(0, -10px, 0); }
  90% {
    transform: translate3d(0, 5px, 0); }
  to {
    transform: none; } }

.bounceInDown {
  animation-name: bounceInDown; }

@keyframes bounceInLeft {
  from, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  0% {
    opacity: 0;
    transform: translate3d(-3000px, 0, 0); }
  60% {
    opacity: 1;
    transform: translate3d(25px, 0, 0); }
  75% {
    transform: translate3d(-10px, 0, 0); }
  90% {
    transform: translate3d(5px, 0, 0); }
  to {
    transform: none; } }

.bounceInLeft {
  animation-name: bounceInLeft; }

@keyframes bounceInRight {
  from, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  from {
    opacity: 0;
    transform: translate3d(3000px, 0, 0); }
  60% {
    opacity: 1;
    transform: translate3d(-25px, 0, 0); }
  75% {
    transform: translate3d(10px, 0, 0); }
  90% {
    transform: translate3d(-5px, 0, 0); }
  to {
    transform: none; } }

.bounceInRight {
  animation-name: bounceInRight; }

@keyframes bounceInUp {
  from, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  from {
    opacity: 0;
    transform: translate3d(0, 3000px, 0); }
  60% {
    opacity: 1;
    transform: translate3d(0, -20px, 0); }
  75% {
    transform: translate3d(0, 10px, 0); }
  90% {
    transform: translate3d(0, -5px, 0); }
  to {
    transform: translate3d(0, 0, 0); } }

.bounceInUp {
  animation-name: bounceInUp; }

@keyframes bounceOut {
  20% {
    transform: scale3d(0.9, 0.9, 0.9); }
  50%, 55% {
    opacity: 1;
    transform: scale3d(1.1, 1.1, 1.1); }
  to {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3); } }

.bounceOut {
  animation-name: bounceOut; }

@keyframes bounceOutDown {
  20% {
    transform: translate3d(0, 10px, 0); }
  40%, 45% {
    opacity: 1;
    transform: translate3d(0, -20px, 0); }
  to {
    opacity: 0;
    transform: translate3d(0, 2000px, 0); } }

.bounceOutDown {
  animation-name: bounceOutDown; }

@keyframes bounceOutLeft {
  20% {
    opacity: 1;
    transform: translate3d(20px, 0, 0); }
  to {
    opacity: 0;
    transform: translate3d(-2000px, 0, 0); } }

.bounceOutLeft {
  animation-name: bounceOutLeft; }

@keyframes bounceOutRight {
  20% {
    opacity: 1;
    transform: translate3d(-20px, 0, 0); }
  to {
    opacity: 0;
    transform: translate3d(2000px, 0, 0); } }

.bounceOutRight {
  animation-name: bounceOutRight; }

@keyframes bounceOutUp {
  20% {
    transform: translate3d(0, -10px, 0); }
  40%, 45% {
    opacity: 1;
    transform: translate3d(0, 20px, 0); }
  to {
    opacity: 0;
    transform: translate3d(0, -2000px, 0); } }

.bounceOutUp {
  animation-name: bounceOutUp; }

@keyframes fadeIn {
  from {
    opacity: 0; }
  to {
    opacity: 1; } }

.fadeIn {
  animation-name: fadeIn; }

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translate3d(0, -100%, 0); }
  to {
    opacity: 1;
    transform: none; } }

.fadeInDown {
  animation-name: fadeInDown; }

@keyframes fadeInDownBig {
  from {
    opacity: 0;
    transform: translate3d(0, -2000px, 0); }
  to {
    opacity: 1;
    transform: none; } }

.fadeInDownBig {
  animation-name: fadeInDownBig; }

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translate3d(-100%, 0, 0); }
  to {
    opacity: 1;
    transform: none; } }

.fadeInLeft {
  animation-name: fadeInLeft; }

@keyframes fadeInLeftBig {
  from {
    opacity: 0;
    transform: translate3d(-2000px, 0, 0); }
  to {
    opacity: 1;
    transform: none; } }

.fadeInLeftBig {
  animation-name: fadeInLeftBig; }

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translate3d(100%, 0, 0); }
  to {
    opacity: 1;
    transform: none; } }

.fadeInRight {
  animation-name: fadeInRight; }

@keyframes fadeInRightBig {
  from {
    opacity: 0;
    transform: translate3d(2000px, 0, 0); }
  to {
    opacity: 1;
    transform: none; } }

.fadeInRightBig {
  animation-name: fadeInRightBig; }

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translate3d(0, 100%, 0); }
  to {
    opacity: 1;
    transform: none; } }

.fadeInUp {
  animation-name: fadeInUp; }

@keyframes fadeInUpBig {
  from {
    opacity: 0;
    transform: translate3d(0, 2000px, 0); }
  to {
    opacity: 1;
    transform: none; } }

.fadeInUpBig {
  animation-name: fadeInUpBig; }

@keyframes fadeOut {
  from {
    opacity: 1; }
  to {
    opacity: 0; } }

.fadeOut {
  animation-name: fadeOut; }

@keyframes fadeOutDown {
  from {
    opacity: 1; }
  to {
    opacity: 0;
    transform: translate3d(0, 100%, 0); } }

.fadeOutDown {
  animation-name: fadeOutDown; }

@keyframes fadeOutDownBig {
  from {
    opacity: 1; }
  to {
    opacity: 0;
    transform: translate3d(0, 2000px, 0); } }

.fadeOutDownBig {
  animation-name: fadeOutDownBig; }

@keyframes fadeOutLeft {
  from {
    opacity: 1; }
  to {
    opacity: 0;
    transform: translate3d(-100%, 0, 0); } }

.fadeOutLeft {
  animation-name: fadeOutLeft; }

@keyframes fadeOutLeftBig {
  from {
    opacity: 1; }
  to {
    opacity: 0;
    transform: translate3d(-2000px, 0, 0); } }

.fadeOutLeftBig {
  animation-name: fadeOutLeftBig; }

@keyframes fadeOutRight {
  from {
    opacity: 1; }
  to {
    opacity: 0;
    transform: translate3d(100%, 0, 0); } }

.fadeOutRight {
  animation-name: fadeOutRight; }

@keyframes fadeOutRightBig {
  from {
    opacity: 1; }
  to {
    opacity: 0;
    transform: translate3d(2000px, 0, 0); } }

.fadeOutRightBig {
  animation-name: fadeOutRightBig; }

@keyframes fadeOutUp {
  from {
    opacity: 1; }
  to {
    opacity: 0;
    transform: translate3d(0, -100%, 0); } }

.fadeOutUp {
  animation-name: fadeOutUp; }

@keyframes fadeOutUpBig {
  from {
    opacity: 1; }
  to {
    opacity: 0;
    transform: translate3d(0, -2000px, 0); } }

.fadeOutUpBig {
  animation-name: fadeOutUpBig; }

@keyframes flip {
  from {
    transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    animation-timing-function: ease-out; }
  40% {
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    animation-timing-function: ease-out; }
  50% {
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    animation-timing-function: ease-in; }
  80% {
    transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
    animation-timing-function: ease-in; }
  to {
    transform: perspective(400px);
    animation-timing-function: ease-in; } }

.animated.flip {
  -webkit-backface-visibility: visible;
  backface-visibility: visible;
  animation-name: flip; }

@keyframes flipInX {
  from {
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    animation-timing-function: ease-in;
    opacity: 0; }
  40% {
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    animation-timing-function: ease-in; }
  60% {
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1; }
  80% {
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg); }
  to {
    transform: perspective(400px); } }

.flipInX {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  animation-name: flipInX; }

@keyframes flipInY {
  from {
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    animation-timing-function: ease-in;
    opacity: 0; }
  40% {
    transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    animation-timing-function: ease-in; }
  60% {
    transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    opacity: 1; }
  80% {
    transform: perspective(400px) rotate3d(0, 1, 0, -5deg); }
  to {
    transform: perspective(400px); } }

.flipInY {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  animation-name: flipInY; }

@keyframes flipOutX {
  from {
    transform: perspective(400px); }
  30% {
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    opacity: 1; }
  to {
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0; } }

.flipOutX {
  animation-name: flipOutX;
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important; }

@keyframes flipOutY {
  from {
    transform: perspective(400px); }
  30% {
    transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    opacity: 1; }
  to {
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    opacity: 0; } }

.flipOutY {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  animation-name: flipOutY; }

@keyframes lightSpeedIn {
  from {
    transform: translate3d(100%, 0, 0) skewX(-30deg);
    opacity: 0; }
  60% {
    transform: skewX(20deg);
    opacity: 1; }
  80% {
    transform: skewX(-5deg);
    opacity: 1; }
  to {
    transform: none;
    opacity: 1; } }

.lightSpeedIn {
  animation-name: lightSpeedIn;
  animation-timing-function: ease-out; }

@keyframes lightSpeedOut {
  from {
    opacity: 1; }
  to {
    transform: translate3d(100%, 0, 0) skewX(30deg);
    opacity: 0; } }

.lightSpeedOut {
  animation-name: lightSpeedOut;
  animation-timing-function: ease-in; }

@keyframes rotateIn {
  from {
    transform-origin: center;
    transform: rotate3d(0, 0, 1, -200deg);
    opacity: 0; }
  to {
    transform-origin: center;
    transform: none;
    opacity: 1; } }

.rotateIn {
  animation-name: rotateIn; }

@keyframes rotateInDownLeft {
  from {
    transform-origin: left bottom;
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0; }
  to {
    transform-origin: left bottom;
    transform: none;
    opacity: 1; } }

.rotateInDownLeft {
  animation-name: rotateInDownLeft; }

@keyframes rotateInDownRight {
  from {
    transform-origin: right bottom;
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0; }
  to {
    transform-origin: right bottom;
    transform: none;
    opacity: 1; } }

.rotateInDownRight {
  animation-name: rotateInDownRight; }

@keyframes rotateInUpLeft {
  from {
    transform-origin: left bottom;
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0; }
  to {
    transform-origin: left bottom;
    transform: none;
    opacity: 1; } }

.rotateInUpLeft {
  animation-name: rotateInUpLeft; }

@keyframes rotateInUpRight {
  from {
    transform-origin: right bottom;
    transform: rotate3d(0, 0, 1, -90deg);
    opacity: 0; }
  to {
    transform-origin: right bottom;
    transform: none;
    opacity: 1; } }

.rotateInUpRight {
  animation-name: rotateInUpRight; }

@keyframes rotateOut {
  from {
    transform-origin: center;
    opacity: 1; }
  to {
    transform-origin: center;
    transform: rotate3d(0, 0, 1, 200deg);
    opacity: 0; } }

.rotateOut {
  animation-name: rotateOut; }

@keyframes rotateOutDownLeft {
  from {
    transform-origin: left bottom;
    opacity: 1; }
  to {
    transform-origin: left bottom;
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0; } }

.rotateOutDownLeft {
  animation-name: rotateOutDownLeft; }

@keyframes rotateOutDownRight {
  from {
    transform-origin: right bottom;
    opacity: 1; }
  to {
    transform-origin: right bottom;
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0; } }

.rotateOutDownRight {
  animation-name: rotateOutDownRight; }

@keyframes rotateOutUpLeft {
  from {
    transform-origin: left bottom;
    opacity: 1; }
  to {
    transform-origin: left bottom;
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0; } }

.rotateOutUpLeft {
  animation-name: rotateOutUpLeft; }

@keyframes rotateOutUpRight {
  from {
    transform-origin: right bottom;
    opacity: 1; }
  to {
    transform-origin: right bottom;
    transform: rotate3d(0, 0, 1, 90deg);
    opacity: 0; } }

.rotateOutUpRight {
  animation-name: rotateOutUpRight; }

@keyframes hinge {
  0% {
    transform-origin: top left;
    animation-timing-function: ease-in-out; }
  20%, 60% {
    transform: rotate3d(0, 0, 1, 80deg);
    transform-origin: top left;
    animation-timing-function: ease-in-out; }
  40%, 80% {
    transform: rotate3d(0, 0, 1, 60deg);
    transform-origin: top left;
    animation-timing-function: ease-in-out;
    opacity: 1; }
  to {
    transform: translate3d(0, 700px, 0);
    opacity: 0; } }

.hinge {
  animation-name: hinge; }

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */

@keyframes rollIn {
  from {
    opacity: 0;
    transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg); }
  to {
    opacity: 1;
    transform: none; } }

.rollIn {
  animation-name: rollIn; }

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */

@keyframes rollOut {
  from {
    opacity: 1; }
  to {
    opacity: 0;
    transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg); } }

.rollOut {
  animation-name: rollOut; }

@keyframes zoomIn {
  from {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3); }
  50% {
    opacity: 1; } }

.zoomIn {
  animation-name: zoomIn; }

@keyframes zoomInDown {
  from {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  60% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); } }

.zoomInDown {
  animation-name: zoomInDown; }

@keyframes zoomInLeft {
  from {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  60% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); } }

.zoomInLeft {
  animation-name: zoomInLeft; }

@keyframes zoomInRight {
  from {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  60% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); } }

.zoomInRight {
  animation-name: zoomInRight; }

@keyframes zoomInUp {
  from {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  60% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); } }

.zoomInUp {
  animation-name: zoomInUp; }

@keyframes zoomOut {
  from {
    opacity: 1; }
  50% {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3); }
  to {
    opacity: 0; } }

.zoomOut {
  animation-name: zoomOut; }

@keyframes zoomOutDown {
  40% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  to {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    transform-origin: center bottom;
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); } }

.zoomOutDown {
  animation-name: zoomOutDown; }

@keyframes zoomOutLeft {
  40% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0); }
  to {
    opacity: 0;
    transform: scale(0.1) translate3d(-2000px, 0, 0);
    transform-origin: left center; } }

.zoomOutLeft {
  animation-name: zoomOutLeft; }

@keyframes zoomOutRight {
  40% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0); }
  to {
    opacity: 0;
    transform: scale(0.1) translate3d(2000px, 0, 0);
    transform-origin: right center; } }

.zoomOutRight {
  animation-name: zoomOutRight; }

@keyframes zoomOutUp {
  40% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  to {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    transform-origin: center bottom;
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); } }

.zoomOutUp {
  animation-name: zoomOutUp; }

@keyframes slideInDown {
  from {
    transform: translate3d(0, -100%, 0);
    visibility: visible; }
  to {
    transform: translate3d(0, 0, 0); } }

.slideInDown {
  animation-name: slideInDown; }

@keyframes slideInLeft {
  from {
    transform: translate3d(-100%, 0, 0);
    visibility: visible; }
  to {
    transform: translate3d(0, 0, 0); } }

.slideInLeft {
  animation-name: slideInLeft; }

@keyframes slideInRight {
  from {
    transform: translate3d(100%, 0, 0);
    visibility: visible; }
  to {
    transform: translate3d(0, 0, 0); } }

.slideInRight {
  animation-name: slideInRight; }

@keyframes slideInUp {
  from {
    transform: translate3d(0, 100%, 0);
    visibility: visible; }
  to {
    transform: translate3d(0, 0, 0); } }

.slideInUp {
  animation-name: slideInUp; }

@keyframes slideOutDown {
  from {
    transform: translate3d(0, 0, 0); }
  to {
    visibility: hidden;
    transform: translate3d(0, 100%, 0); } }

.slideOutDown {
  animation-name: slideOutDown; }

@keyframes slideOutLeft {
  from {
    transform: translate3d(0, 0, 0); }
  to {
    visibility: hidden;
    transform: translate3d(-100%, 0, 0); } }

.slideOutLeft {
  animation-name: slideOutLeft; }

@keyframes slideOutRight {
  from {
    transform: translate3d(0, 0, 0); }
  to {
    visibility: hidden;
    transform: translate3d(100%, 0, 0); } }

.slideOutRight {
  animation-name: slideOutRight; }

@keyframes slideOutUp {
  from {
    transform: translate3d(0, 0, 0); }
  to {
    visibility: hidden;
    transform: translate3d(0, -100%, 0); } }

.slideOutUp {
  animation-name: slideOutUp; }

#noticeContainer_stacks_in_30853 {
  /*  */
  display: block;
  position: relative; }
  #noticeContainer_stacks_in_30853 .clearfix:before {
    content: " ";
    display: table; }
  #noticeContainer_stacks_in_30853 .clearfix:after {
    content: " ";
    display: table;
    clear: both; }

#notice_stacks_in_30853 {
  /*  */
  /*  */
  opacity: 0;
  left: 0px;
  right: 0px;
  max-height: 100%;
  /*  */
  position: fixed;
  /*  */
  overflow-y: auto;
  visibility: hidden;
  /*  */
  z-index: 999999;
  /*  */
  max-width: 100%;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  bottom: 0px;
  /*  */
  /*  */
  /*  */
  /*  */
  margin-left: auto;
  margin-right: auto;
  /*  */
  /*  */
  /*  */
  /*  */
  background: rgba(21, 47, 103, 0.90);
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  font-family: "Nunito";
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  color: rgba(255, 255, 255, 1.00);
  border-radius: 0px 0px 0px 0px; }
  #notice_stacks_in_30853.show {
    opacity: 1;
    visibility: visible; }
  #notice_stacks_in_30853.hide {
    opacity: 0;
    visibility: hidden; }
  #notice_stacks_in_30853.cookie-hide {
    display: none; }

#notice_stacks_in_30853 .notice-inner-stacks {
  clear: both;
  margin: 0 auto;
  max-width: 960px;
  padding: 10px 10px 35px 10px; }

#notice_stacks_in_30853 .notice-inner {
  clear: both;
  margin: 0 auto;
  max-width: 960px;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
  padding: 10px 10px 35px 10px;
  /*  */
  /*  */
  text-align: center;
  /*  */
  /*  */
  /*  */
  display: -ms-flexbox;
  display: flex;
  /*  */
  /*  */ }
  #notice_stacks_in_30853 .notice-inner-text {
    -ms-flex: 0 1 auto;
        flex: 0 1 auto;
    max-width: 100%;
    font-size: 16px;
    line-height: 22px; }
  #notice_stacks_in_30853 .notice-inner-icon {
    /*  */
    /*  */
    /*  */
    -ms-flex-item-align: center;
        -ms-grid-row-align: center;
        align-self: center;
    /*  */
    /*  */
    -ms-flex: 0 1 auto;
        flex: 0 1 auto;
    color: rgba(255, 255, 255, 1.00);
    padding: 5px 20px 5px 10px; }
    #notice_stacks_in_30853 .notice-inner-icon i {
      font-size: 32px;
      vertical-align: middle; }

#notice_stacks_in_30853 .notice-close-btn {
  float: right;
  cursor: pointer;
  color: rgba(255, 255, 255, 1.00);
  padding: 10px 10px 0px 10px; }
  #notice_stacks_in_30853 .notice-close-btn i {
    cursor: pointer;
    vertical-align: middle; }

#notice_stacks_in_30853 .notice-action {
  height: 40px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  /*  */
  color: inherit;
  background: none;
  /*  */ }
  #notice_stacks_in_30853 .notice-action i {
    vertical-align: middle; }
  #notice_stacks_in_30853 .notice-action-close {
    border-style: solid;
    border-width: 1px 0 0 0;
    border-color: rgba(255, 255, 255, 0.30); }
    #notice_stacks_in_30853 .notice-action-close:hover {
      /*  */ }
  #notice_stacks_in_30853 .notice-action-custom {
    border-style: solid;
    border-width: 1px 0 0 1px;
    border-color: rgba(255, 255, 255, 0.30); }
    #notice_stacks_in_30853 .notice-action-custom:hover {
      /*  */ }
    #notice_stacks_in_30853 .notice-action-custom a {
      color: inherit;
      width: 100%;
      height: 100%;
      /*  */
      display: -ms-flexbox;
      display: flex;
      -ms-flex-align: center;
          align-items: center;
      text-decoration: none;
      -ms-flex-pack: center;
          justify-content: center;
      /*  */ }
  #notice_stacks_in_30853 .notice-action-btn {
    height: 100%;
    display: -ms-flexbox;
    display: flex;
    -ms-flex: 1 0 auto;
        flex: 1 0 auto;
    text-align: center;
    -ms-flex-align: center;
        align-items: center;
    box-sizing: border-box;
    -ms-flex-pack: center;
        justify-content: center; }
    #notice_stacks_in_30853 .notice-action-btn:hover {
      cursor: pointer; }

@media (max-width: 480px) {
  #notice_stacks_in_30853 .notice-action {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    height: 90px; }
    #notice_stacks_in_30853 .notice-action-custom {
      border-width: 1px 0 0 0; }
    #notice_stacks_in_30853 .notice-action div {
      height: 50%;
      width: 100%; } }

/*  */
@media all and (-ms-high-contrast: none) {
  #notice_stacks_in_30853 {
    width: 100%; }
    #notice_stacks_in_30853 *::-ms-backdrop, #notice_stacks_in_30853 #notice_stacks_in_30853 {
      width: 100%; } }

/*  */
#stacks_in_30947 h1,#stacks_in_30947 .hTxt:not(.segment) div{font-size:3.00rem}@media all and (max-width:640px){#stacks_in_30947 h1,#stacks_in_30947 .hTxt:not(.segment) div{font-size:1.50rem}}#stacks_in_30947 h1,#stacks_in_30947 div{color:rgba(205, 41, 27, 1.00)}#stacks_in_30947 h1 a,#stacks_in_30947 div a{color:rgba(205, 41, 27, 1.00)}#stacks_in_30947 h1 a:hover,#stacks_in_30947 div a:hover{color:rgba(153, 30, 20, 1.00)}#stacks_in_30947 small,#stacks_in_30947 small div{color:rgba(111, 111, 111, 1.00)}#stacks_in_30947 .hTxt:not(.vault-font),.no-default:not(.custom-font) .hTxt:not(.vault-font){font-family:"Archivo Black",Sans-Serif;font-weight:400;font-style:normal}#stacks_in_30947 .hTxt.segment[data-seg="segment1"]{font-family:"Roboto ",Sans-Serif;font-weight:400;font-style:normal}#stacks_in_30947 .primary,#stacks_in_30947 .segment{display:inline-block}#stacks_in_30947 .primary.sub-title,#stacks_in_30947 .segment.sub-title{display:block}#stacks_in_30947 [data-seg="segment2"].last-title{display:block}#stacks_in_30947 .segment.no-shadow{text-shadow:none !important}#stacks_in_30947 .segment *{}#stacks_in_30947 .hTxt.primary{vertical-align:baseline}#stacks_in_30947 .segment[data-seg="segment1"]{font-size:100%;color:rgba(10, 33, 88, 1.00);padding:0px 0px 0px 13px;margin:0px 0px 0px 0px;vertical-align:baseline;}#stacks_in_30947 .segment[data-seg="segment1"] div{color:rgba(10, 33, 88, 1.00)}#stacks_in_30947 .segment[data-seg="segment1"] div.mez{font-size:100%}


  #stacks_in_30973{text-align:center}          @media screen and (max-width:641px){#stacks_in_30973>.button.b-p.expand-mob:not(.icon-only),#stacks_in_30973>.dd-wrap>.button.b-p.expand-mob:not(.icon-only){width:100%!important}}@media screen and (min-width:641px){#stacks_in_30973 .button.b-p.expand-large:not(.icon-only),#stacks_in_30973>.dd-wrap>.button.b-p.expand-large:not(.icon-only){width:100%!important}}
   @media screen and (max-width:641px){#stacks_in_30973.bp-wrap{padding:20px 0px 0px 0px}}  @media screen and (min-width:641px){#stacks_in_30973.bp-wrap{padding:20px 0px 0px 0px}}         
  #stacks_in_30973 .button.b-p.custom{border:0px solid rgba(179, 179, 177, 1.00)}#stacks_in_30973 .button.b-p.custom:hover{border:0px solid rgba(179, 179, 177, 1.00)} #stacks_in_30973 .button.b-p{color:rgba(255, 255, 255, 1.00);background-color:rgba(205, 41, 27, 1.00)}#stacks_in_30973 .button.b-p:not(.d-hov){-webkit-transition:color 200ms ease,background-color 200ms ease,box-shadow 200ms ease,border 200ms ease;-webkit-transition:color 200ms ease,background-color 200ms ease,border 200ms ease,-webkit-box-shadow 200ms ease;transition:color 200ms ease,background-color 200ms ease,border 200ms ease,-webkit-box-shadow 200ms ease;transition:color 200ms ease,background-color 200ms ease,box-shadow 200ms ease,border 200ms ease;transition:color 200ms ease,background-color 200ms ease,box-shadow 200ms ease,border 200ms ease,-webkit-box-shadow 200ms ease}  #stacks_in_30973 .button.b-p:not(.bp-hover):hover{color:rgba(255, 255, 255, 0.90)!important; background-color:rgba(21, 47, 103, 1.00);}     
       
  #stacks_in_30973 .d-hov,#stacks_in_30973 .d-hov::before,#stacks_in_30973 .d-hov::after{-webkit-transition-duration:300ms;transition-duration:300ms}#stacks_in_30973 .d-hov.active,#stacks_in_30973 .d-hov.active::before,#stacks_in_30973 .d-hov.active::after{-webkit-transition-duration:0ms;transition-duration:0ms}#stacks_in_30973 .hover-col:not(.button.b-p):not(.bp-zone-item)::before{background:rgba(239, 181, 10, 1.00)!important}#stacks_in_30973 .hover-col::before,#stacks_in_30973 .hover-col::after{-webkit-transition-property:all;transition-property:all;-webkit-transition-duration:.3s;transition-duration:.3s;-webkit-transition-timing-function:ease-out;transition-timing-function:ease-out}#stacks_in_30973 .hover-col:hover::before{background:rgba(239, 181, 10, 1.00)}#stacks_in_30973 .hover-col.active::before{background:rgba(207, 0, 32, 1.00)}#stacks_in_30973 .d-hov-ripple-out:hover::before{border:rgba(239, 181, 10, 1.00) solid 2px}#stacks_in_30973 .d-hov-pop:hover,#stacks_in_30973 .d-hov-pop:focus,#stacks_in_30973 .d-hov-pop.active{-webkit-animation-duration:300ms;animation-duration:300ms}#stacks_in_30973 .d-hov[class*="d-hov-underline-"]::before,#stacks_in_30973 .d-hov[class*="d-hov-overline-"]::before{height:4px!important}#stacks_in_30973 .d-hov[class*="d-hov-text-underline-"]>.bp-text::before,#stacks_in_30973 .d-hov[class*="d-hov-text-underline-"] .ml-text::before{bottom:-6px;border-bottom-color:rgba(239, 181, 10, 1.00)!important;border-bottom-width:4px;-webkit-transition-duration:300ms;transition-duration:300ms}#stacks_in_30973 .d-hov[class*="d-hov-text-underline-"].active>.bp-text::before,#stacks_in_30973 .d-hov[class*="d-hov-text-underline-"].active .ml-text::before{-webkit-transition-duration:0ms;transition-duration:0ms;border-bottom-color:rgba(207, 0, 32, 1.00)!important}#stacks_in_30973 .d-hov-reveal:hover::before,#stacks_in_30973 .d-hov-reveal.active::before{border-width:4px!important} 
               

  #stacks_in_31009{text-align:center}          @media screen and (max-width:641px){#stacks_in_31009>.button.b-p.expand-mob:not(.icon-only),#stacks_in_31009>.dd-wrap>.button.b-p.expand-mob:not(.icon-only){width:100%!important}}@media screen and (min-width:641px){#stacks_in_31009 .button.b-p.expand-large:not(.icon-only),#stacks_in_31009>.dd-wrap>.button.b-p.expand-large:not(.icon-only){width:100%!important}}
   @media screen and (max-width:641px){#stacks_in_31009.bp-wrap{padding:20px 0px 0px 0px}}  @media screen and (min-width:641px){#stacks_in_31009.bp-wrap{padding:20px 0px 0px 0px}}         
  #stacks_in_31009 .button.b-p.custom{border:0px solid rgba(179, 179, 177, 1.00)}#stacks_in_31009 .button.b-p.custom:hover{border:0px solid rgba(179, 179, 177, 1.00)} #stacks_in_31009 .button.b-p{color:rgba(255, 255, 255, 1.00);background-color:rgba(205, 41, 27, 1.00)}#stacks_in_31009 .button.b-p:not(.d-hov){-webkit-transition:color 200ms ease,background-color 200ms ease,box-shadow 200ms ease,border 200ms ease;-webkit-transition:color 200ms ease,background-color 200ms ease,border 200ms ease,-webkit-box-shadow 200ms ease;transition:color 200ms ease,background-color 200ms ease,border 200ms ease,-webkit-box-shadow 200ms ease;transition:color 200ms ease,background-color 200ms ease,box-shadow 200ms ease,border 200ms ease;transition:color 200ms ease,background-color 200ms ease,box-shadow 200ms ease,border 200ms ease,-webkit-box-shadow 200ms ease}  #stacks_in_31009 .button.b-p:not(.bp-hover):hover{color:rgba(255, 255, 255, 0.90)!important; background-color:rgba(21, 47, 103, 1.00);}     
       
  #stacks_in_31009 .d-hov,#stacks_in_31009 .d-hov::before,#stacks_in_31009 .d-hov::after{-webkit-transition-duration:300ms;transition-duration:300ms}#stacks_in_31009 .d-hov.active,#stacks_in_31009 .d-hov.active::before,#stacks_in_31009 .d-hov.active::after{-webkit-transition-duration:0ms;transition-duration:0ms}#stacks_in_31009 .hover-col:not(.button.b-p):not(.bp-zone-item)::before{background:rgba(239, 181, 10, 1.00)!important}#stacks_in_31009 .hover-col::before,#stacks_in_31009 .hover-col::after{-webkit-transition-property:all;transition-property:all;-webkit-transition-duration:.3s;transition-duration:.3s;-webkit-transition-timing-function:ease-out;transition-timing-function:ease-out}#stacks_in_31009 .hover-col:hover::before{background:rgba(239, 181, 10, 1.00)}#stacks_in_31009 .hover-col.active::before{background:rgba(207, 0, 32, 1.00)}#stacks_in_31009 .d-hov-ripple-out:hover::before{border:rgba(239, 181, 10, 1.00) solid 2px}#stacks_in_31009 .d-hov-pop:hover,#stacks_in_31009 .d-hov-pop:focus,#stacks_in_31009 .d-hov-pop.active{-webkit-animation-duration:300ms;animation-duration:300ms}#stacks_in_31009 .d-hov[class*="d-hov-underline-"]::before,#stacks_in_31009 .d-hov[class*="d-hov-overline-"]::before{height:4px!important}#stacks_in_31009 .d-hov[class*="d-hov-text-underline-"]>.bp-text::before,#stacks_in_31009 .d-hov[class*="d-hov-text-underline-"] .ml-text::before{bottom:-6px;border-bottom-color:rgba(239, 181, 10, 1.00)!important;border-bottom-width:4px;-webkit-transition-duration:300ms;transition-duration:300ms}#stacks_in_31009 .d-hov[class*="d-hov-text-underline-"].active>.bp-text::before,#stacks_in_31009 .d-hov[class*="d-hov-text-underline-"].active .ml-text::before{-webkit-transition-duration:0ms;transition-duration:0ms;border-bottom-color:rgba(207, 0, 32, 1.00)!important}#stacks_in_31009 .d-hov-reveal:hover::before,#stacks_in_31009 .d-hov-reveal.active::before{border-width:4px!important} 
               
@important "partials/maps";
.animated {
  animation-duration: 1s;
  animation-fill-mode: both; }
  .animated.infinite {
    animation-iteration-count: infinite; }
  .animated.hinge {
    animation-duration: 2s; }
  .animated.flipOutX, .animated.flipOutY, .animated.bounceIn, .animated.bounceOut {
    animation-duration: .75s; }

@keyframes bounce {
  from, 20%, 53%, 80%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transform: translate3d(0, 0, 0); }
  40%, 43% {
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    transform: translate3d(0, -30px, 0); }
  70% {
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    transform: translate3d(0, -15px, 0); }
  90% {
    transform: translate3d(0, -4px, 0); } }

.bounce {
  animation-name: bounce;
  transform-origin: center bottom; }

@keyframes flash {
  from, 50%, to {
    opacity: 1; }
  25%, 75% {
    opacity: 0; } }

.flash {
  animation-name: flash; }

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */

@keyframes pulse {
  from {
    transform: scale3d(1, 1, 1); }
  50% {
    transform: scale3d(1.05, 1.05, 1.05); }
  to {
    transform: scale3d(1, 1, 1); } }

.pulse {
  animation-name: pulse; }

@keyframes rubberBand {
  from {
    transform: scale3d(1, 1, 1); }
  30% {
    transform: scale3d(1.25, 0.75, 1); }
  40% {
    transform: scale3d(0.75, 1.25, 1); }
  50% {
    transform: scale3d(1.15, 0.85, 1); }
  65% {
    transform: scale3d(0.95, 1.05, 1); }
  75% {
    transform: scale3d(1.05, 0.95, 1); }
  to {
    transform: scale3d(1, 1, 1); } }

.rubberBand {
  animation-name: rubberBand; }

@keyframes shake {
  from, to {
    transform: translate3d(0, 0, 0); }
  10%, 30%, 50%, 70%, 90% {
    transform: translate3d(-10px, 0, 0); }
  20%, 40%, 60%, 80% {
    transform: translate3d(10px, 0, 0); } }

.shake {
  animation-name: shake; }

@keyframes headShake {
  0% {
    transform: translateX(0); }
  6.5% {
    transform: translateX(-6px) rotateY(-9deg); }
  18.5% {
    transform: translateX(5px) rotateY(7deg); }
  31.5% {
    transform: translateX(-3px) rotateY(-5deg); }
  43.5% {
    transform: translateX(2px) rotateY(3deg); }
  50% {
    transform: translateX(0); } }

.headShake {
  animation-timing-function: ease-in-out;
  animation-name: headShake; }

@keyframes swing {
  20% {
    transform: rotate3d(0, 0, 1, 15deg); }
  40% {
    transform: rotate3d(0, 0, 1, -10deg); }
  60% {
    transform: rotate3d(0, 0, 1, 5deg); }
  80% {
    transform: rotate3d(0, 0, 1, -5deg); }
  to {
    transform: rotate3d(0, 0, 1, 0deg); } }

.swing {
  transform-origin: top center;
  animation-name: swing; }

@keyframes tada {
  from {
    transform: scale3d(1, 1, 1); }
  10%, 20% {
    transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg); }
  30%, 50%, 70%, 90% {
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg); }
  40%, 60%, 80% {
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg); }
  to {
    transform: scale3d(1, 1, 1); } }

.tada {
  animation-name: tada; }

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */

@keyframes wobble {
  from {
    transform: none; }
  15% {
    transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg); }
  30% {
    transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg); }
  45% {
    transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg); }
  60% {
    transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg); }
  75% {
    transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg); }
  to {
    transform: none; } }

.wobble {
  animation-name: wobble; }

@keyframes jello {
  from, 11.1%, to {
    transform: none; }
  22.2% {
    transform: skewX(-12.5deg) skewY(-12.5deg); }
  33.3% {
    transform: skewX(6.25deg) skewY(6.25deg); }
  44.4% {
    transform: skewX(-3.125deg) skewY(-3.125deg); }
  55.5% {
    transform: skewX(1.5625deg) skewY(1.5625deg); }
  66.6% {
    transform: skewX(-0.78125deg) skewY(-0.78125deg); }
  77.7% {
    transform: skewX(0.39063deg) skewY(0.39063deg); }
  88.8% {
    transform: skewX(-0.19531deg) skewY(-0.19531deg); } }

.jello {
  animation-name: jello;
  transform-origin: center; }

@keyframes bounceIn {
  from, 20%, 40%, 60%, 80%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  0% {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3); }
  20% {
    transform: scale3d(1.1, 1.1, 1.1); }
  40% {
    transform: scale3d(0.9, 0.9, 0.9); }
  60% {
    opacity: 1;
    transform: scale3d(1.03, 1.03, 1.03); }
  80% {
    transform: scale3d(0.97, 0.97, 0.97); }
  to {
    opacity: 1;
    transform: scale3d(1, 1, 1); } }

.bounceIn {
  animation-name: bounceIn; }

@keyframes bounceInDown {
  from, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  0% {
    opacity: 0;
    transform: translate3d(0, -3000px, 0); }
  60% {
    opacity: 1;
    transform: translate3d(0, 25px, 0); }
  75% {
    transform: translate3d(0, -10px, 0); }
  90% {
    transform: translate3d(0, 5px, 0); }
  to {
    transform: none; } }

.bounceInDown {
  animation-name: bounceInDown; }

@keyframes bounceInLeft {
  from, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  0% {
    opacity: 0;
    transform: translate3d(-3000px, 0, 0); }
  60% {
    opacity: 1;
    transform: translate3d(25px, 0, 0); }
  75% {
    transform: translate3d(-10px, 0, 0); }
  90% {
    transform: translate3d(5px, 0, 0); }
  to {
    transform: none; } }

.bounceInLeft {
  animation-name: bounceInLeft; }

@keyframes bounceInRight {
  from, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  from {
    opacity: 0;
    transform: translate3d(3000px, 0, 0); }
  60% {
    opacity: 1;
    transform: translate3d(-25px, 0, 0); }
  75% {
    transform: translate3d(10px, 0, 0); }
  90% {
    transform: translate3d(-5px, 0, 0); }
  to {
    transform: none; } }

.bounceInRight {
  animation-name: bounceInRight; }

@keyframes bounceInUp {
  from, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  from {
    opacity: 0;
    transform: translate3d(0, 3000px, 0); }
  60% {
    opacity: 1;
    transform: translate3d(0, -20px, 0); }
  75% {
    transform: translate3d(0, 10px, 0); }
  90% {
    transform: translate3d(0, -5px, 0); }
  to {
    transform: translate3d(0, 0, 0); } }

.bounceInUp {
  animation-name: bounceInUp; }

@keyframes bounceOut {
  20% {
    transform: scale3d(0.9, 0.9, 0.9); }
  50%, 55% {
    opacity: 1;
    transform: scale3d(1.1, 1.1, 1.1); }
  to {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3); } }

.bounceOut {
  animation-name: bounceOut; }

@keyframes bounceOutDown {
  20% {
    transform: translate3d(0, 10px, 0); }
  40%, 45% {
    opacity: 1;
    transform: translate3d(0, -20px, 0); }
  to {
    opacity: 0;
    transform: translate3d(0, 2000px, 0); } }

.bounceOutDown {
  animation-name: bounceOutDown; }

@keyframes bounceOutLeft {
  20% {
    opacity: 1;
    transform: translate3d(20px, 0, 0); }
  to {
    opacity: 0;
    transform: translate3d(-2000px, 0, 0); } }

.bounceOutLeft {
  animation-name: bounceOutLeft; }

@keyframes bounceOutRight {
  20% {
    opacity: 1;
    transform: translate3d(-20px, 0, 0); }
  to {
    opacity: 0;
    transform: translate3d(2000px, 0, 0); } }

.bounceOutRight {
  animation-name: bounceOutRight; }

@keyframes bounceOutUp {
  20% {
    transform: translate3d(0, -10px, 0); }
  40%, 45% {
    opacity: 1;
    transform: translate3d(0, 20px, 0); }
  to {
    opacity: 0;
    transform: translate3d(0, -2000px, 0); } }

.bounceOutUp {
  animation-name: bounceOutUp; }

@keyframes fadeIn {
  from {
    opacity: 0; }
  to {
    opacity: 1; } }

.fadeIn {
  animation-name: fadeIn; }

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translate3d(0, -100%, 0); }
  to {
    opacity: 1;
    transform: none; } }

.fadeInDown {
  animation-name: fadeInDown; }

@keyframes fadeInDownBig {
  from {
    opacity: 0;
    transform: translate3d(0, -2000px, 0); }
  to {
    opacity: 1;
    transform: none; } }

.fadeInDownBig {
  animation-name: fadeInDownBig; }

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translate3d(-100%, 0, 0); }
  to {
    opacity: 1;
    transform: none; } }

.fadeInLeft {
  animation-name: fadeInLeft; }

@keyframes fadeInLeftBig {
  from {
    opacity: 0;
    transform: translate3d(-2000px, 0, 0); }
  to {
    opacity: 1;
    transform: none; } }

.fadeInLeftBig {
  animation-name: fadeInLeftBig; }

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translate3d(100%, 0, 0); }
  to {
    opacity: 1;
    transform: none; } }

.fadeInRight {
  animation-name: fadeInRight; }

@keyframes fadeInRightBig {
  from {
    opacity: 0;
    transform: translate3d(2000px, 0, 0); }
  to {
    opacity: 1;
    transform: none; } }

.fadeInRightBig {
  animation-name: fadeInRightBig; }

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translate3d(0, 100%, 0); }
  to {
    opacity: 1;
    transform: none; } }

.fadeInUp {
  animation-name: fadeInUp; }

@keyframes fadeInUpBig {
  from {
    opacity: 0;
    transform: translate3d(0, 2000px, 0); }
  to {
    opacity: 1;
    transform: none; } }

.fadeInUpBig {
  animation-name: fadeInUpBig; }

@keyframes fadeOut {
  from {
    opacity: 1; }
  to {
    opacity: 0; } }

.fadeOut {
  animation-name: fadeOut; }

@keyframes fadeOutDown {
  from {
    opacity: 1; }
  to {
    opacity: 0;
    transform: translate3d(0, 100%, 0); } }

.fadeOutDown {
  animation-name: fadeOutDown; }

@keyframes fadeOutDownBig {
  from {
    opacity: 1; }
  to {
    opacity: 0;
    transform: translate3d(0, 2000px, 0); } }

.fadeOutDownBig {
  animation-name: fadeOutDownBig; }

@keyframes fadeOutLeft {
  from {
    opacity: 1; }
  to {
    opacity: 0;
    transform: translate3d(-100%, 0, 0); } }

.fadeOutLeft {
  animation-name: fadeOutLeft; }

@keyframes fadeOutLeftBig {
  from {
    opacity: 1; }
  to {
    opacity: 0;
    transform: translate3d(-2000px, 0, 0); } }

.fadeOutLeftBig {
  animation-name: fadeOutLeftBig; }

@keyframes fadeOutRight {
  from {
    opacity: 1; }
  to {
    opacity: 0;
    transform: translate3d(100%, 0, 0); } }

.fadeOutRight {
  animation-name: fadeOutRight; }

@keyframes fadeOutRightBig {
  from {
    opacity: 1; }
  to {
    opacity: 0;
    transform: translate3d(2000px, 0, 0); } }

.fadeOutRightBig {
  animation-name: fadeOutRightBig; }

@keyframes fadeOutUp {
  from {
    opacity: 1; }
  to {
    opacity: 0;
    transform: translate3d(0, -100%, 0); } }

.fadeOutUp {
  animation-name: fadeOutUp; }

@keyframes fadeOutUpBig {
  from {
    opacity: 1; }
  to {
    opacity: 0;
    transform: translate3d(0, -2000px, 0); } }

.fadeOutUpBig {
  animation-name: fadeOutUpBig; }

@keyframes flip {
  from {
    transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    animation-timing-function: ease-out; }
  40% {
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    animation-timing-function: ease-out; }
  50% {
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    animation-timing-function: ease-in; }
  80% {
    transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
    animation-timing-function: ease-in; }
  to {
    transform: perspective(400px);
    animation-timing-function: ease-in; } }

.animated.flip {
  -webkit-backface-visibility: visible;
  backface-visibility: visible;
  animation-name: flip; }

@keyframes flipInX {
  from {
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    animation-timing-function: ease-in;
    opacity: 0; }
  40% {
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    animation-timing-function: ease-in; }
  60% {
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1; }
  80% {
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg); }
  to {
    transform: perspective(400px); } }

.flipInX {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  animation-name: flipInX; }

@keyframes flipInY {
  from {
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    animation-timing-function: ease-in;
    opacity: 0; }
  40% {
    transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    animation-timing-function: ease-in; }
  60% {
    transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    opacity: 1; }
  80% {
    transform: perspective(400px) rotate3d(0, 1, 0, -5deg); }
  to {
    transform: perspective(400px); } }

.flipInY {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  animation-name: flipInY; }

@keyframes flipOutX {
  from {
    transform: perspective(400px); }
  30% {
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    opacity: 1; }
  to {
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0; } }

.flipOutX {
  animation-name: flipOutX;
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important; }

@keyframes flipOutY {
  from {
    transform: perspective(400px); }
  30% {
    transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    opacity: 1; }
  to {
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    opacity: 0; } }

.flipOutY {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  animation-name: flipOutY; }

@keyframes lightSpeedIn {
  from {
    transform: translate3d(100%, 0, 0) skewX(-30deg);
    opacity: 0; }
  60% {
    transform: skewX(20deg);
    opacity: 1; }
  80% {
    transform: skewX(-5deg);
    opacity: 1; }
  to {
    transform: none;
    opacity: 1; } }

.lightSpeedIn {
  animation-name: lightSpeedIn;
  animation-timing-function: ease-out; }

@keyframes lightSpeedOut {
  from {
    opacity: 1; }
  to {
    transform: translate3d(100%, 0, 0) skewX(30deg);
    opacity: 0; } }

.lightSpeedOut {
  animation-name: lightSpeedOut;
  animation-timing-function: ease-in; }

@keyframes rotateIn {
  from {
    transform-origin: center;
    transform: rotate3d(0, 0, 1, -200deg);
    opacity: 0; }
  to {
    transform-origin: center;
    transform: none;
    opacity: 1; } }

.rotateIn {
  animation-name: rotateIn; }

@keyframes rotateInDownLeft {
  from {
    transform-origin: left bottom;
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0; }
  to {
    transform-origin: left bottom;
    transform: none;
    opacity: 1; } }

.rotateInDownLeft {
  animation-name: rotateInDownLeft; }

@keyframes rotateInDownRight {
  from {
    transform-origin: right bottom;
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0; }
  to {
    transform-origin: right bottom;
    transform: none;
    opacity: 1; } }

.rotateInDownRight {
  animation-name: rotateInDownRight; }

@keyframes rotateInUpLeft {
  from {
    transform-origin: left bottom;
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0; }
  to {
    transform-origin: left bottom;
    transform: none;
    opacity: 1; } }

.rotateInUpLeft {
  animation-name: rotateInUpLeft; }

@keyframes rotateInUpRight {
  from {
    transform-origin: right bottom;
    transform: rotate3d(0, 0, 1, -90deg);
    opacity: 0; }
  to {
    transform-origin: right bottom;
    transform: none;
    opacity: 1; } }

.rotateInUpRight {
  animation-name: rotateInUpRight; }

@keyframes rotateOut {
  from {
    transform-origin: center;
    opacity: 1; }
  to {
    transform-origin: center;
    transform: rotate3d(0, 0, 1, 200deg);
    opacity: 0; } }

.rotateOut {
  animation-name: rotateOut; }

@keyframes rotateOutDownLeft {
  from {
    transform-origin: left bottom;
    opacity: 1; }
  to {
    transform-origin: left bottom;
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0; } }

.rotateOutDownLeft {
  animation-name: rotateOutDownLeft; }

@keyframes rotateOutDownRight {
  from {
    transform-origin: right bottom;
    opacity: 1; }
  to {
    transform-origin: right bottom;
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0; } }

.rotateOutDownRight {
  animation-name: rotateOutDownRight; }

@keyframes rotateOutUpLeft {
  from {
    transform-origin: left bottom;
    opacity: 1; }
  to {
    transform-origin: left bottom;
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0; } }

.rotateOutUpLeft {
  animation-name: rotateOutUpLeft; }

@keyframes rotateOutUpRight {
  from {
    transform-origin: right bottom;
    opacity: 1; }
  to {
    transform-origin: right bottom;
    transform: rotate3d(0, 0, 1, 90deg);
    opacity: 0; } }

.rotateOutUpRight {
  animation-name: rotateOutUpRight; }

@keyframes hinge {
  0% {
    transform-origin: top left;
    animation-timing-function: ease-in-out; }
  20%, 60% {
    transform: rotate3d(0, 0, 1, 80deg);
    transform-origin: top left;
    animation-timing-function: ease-in-out; }
  40%, 80% {
    transform: rotate3d(0, 0, 1, 60deg);
    transform-origin: top left;
    animation-timing-function: ease-in-out;
    opacity: 1; }
  to {
    transform: translate3d(0, 700px, 0);
    opacity: 0; } }

.hinge {
  animation-name: hinge; }

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */

@keyframes rollIn {
  from {
    opacity: 0;
    transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg); }
  to {
    opacity: 1;
    transform: none; } }

.rollIn {
  animation-name: rollIn; }

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */

@keyframes rollOut {
  from {
    opacity: 1; }
  to {
    opacity: 0;
    transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg); } }

.rollOut {
  animation-name: rollOut; }

@keyframes zoomIn {
  from {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3); }
  50% {
    opacity: 1; } }

.zoomIn {
  animation-name: zoomIn; }

@keyframes zoomInDown {
  from {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  60% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); } }

.zoomInDown {
  animation-name: zoomInDown; }

@keyframes zoomInLeft {
  from {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  60% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); } }

.zoomInLeft {
  animation-name: zoomInLeft; }

@keyframes zoomInRight {
  from {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  60% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); } }

.zoomInRight {
  animation-name: zoomInRight; }

@keyframes zoomInUp {
  from {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  60% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); } }

.zoomInUp {
  animation-name: zoomInUp; }

@keyframes zoomOut {
  from {
    opacity: 1; }
  50% {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3); }
  to {
    opacity: 0; } }

.zoomOut {
  animation-name: zoomOut; }

@keyframes zoomOutDown {
  40% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  to {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    transform-origin: center bottom;
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); } }

.zoomOutDown {
  animation-name: zoomOutDown; }

@keyframes zoomOutLeft {
  40% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0); }
  to {
    opacity: 0;
    transform: scale(0.1) translate3d(-2000px, 0, 0);
    transform-origin: left center; } }

.zoomOutLeft {
  animation-name: zoomOutLeft; }

@keyframes zoomOutRight {
  40% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0); }
  to {
    opacity: 0;
    transform: scale(0.1) translate3d(2000px, 0, 0);
    transform-origin: right center; } }

.zoomOutRight {
  animation-name: zoomOutRight; }

@keyframes zoomOutUp {
  40% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  to {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    transform-origin: center bottom;
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); } }

.zoomOutUp {
  animation-name: zoomOutUp; }

@keyframes slideInDown {
  from {
    transform: translate3d(0, -100%, 0);
    visibility: visible; }
  to {
    transform: translate3d(0, 0, 0); } }

.slideInDown {
  animation-name: slideInDown; }

@keyframes slideInLeft {
  from {
    transform: translate3d(-100%, 0, 0);
    visibility: visible; }
  to {
    transform: translate3d(0, 0, 0); } }

.slideInLeft {
  animation-name: slideInLeft; }

@keyframes slideInRight {
  from {
    transform: translate3d(100%, 0, 0);
    visibility: visible; }
  to {
    transform: translate3d(0, 0, 0); } }

.slideInRight {
  animation-name: slideInRight; }

@keyframes slideInUp {
  from {
    transform: translate3d(0, 100%, 0);
    visibility: visible; }
  to {
    transform: translate3d(0, 0, 0); } }

.slideInUp {
  animation-name: slideInUp; }

@keyframes slideOutDown {
  from {
    transform: translate3d(0, 0, 0); }
  to {
    visibility: hidden;
    transform: translate3d(0, 100%, 0); } }

.slideOutDown {
  animation-name: slideOutDown; }

@keyframes slideOutLeft {
  from {
    transform: translate3d(0, 0, 0); }
  to {
    visibility: hidden;
    transform: translate3d(-100%, 0, 0); } }

.slideOutLeft {
  animation-name: slideOutLeft; }

@keyframes slideOutRight {
  from {
    transform: translate3d(0, 0, 0); }
  to {
    visibility: hidden;
    transform: translate3d(100%, 0, 0); } }

.slideOutRight {
  animation-name: slideOutRight; }

@keyframes slideOutUp {
  from {
    transform: translate3d(0, 0, 0); }
  to {
    visibility: hidden;
    transform: translate3d(0, -100%, 0); } }

.slideOutUp {
  animation-name: slideOutUp; }

#noticeContainer_stacks_in_31012 {
  /*  */
  display: block;
  position: relative; }
  #noticeContainer_stacks_in_31012 .clearfix:before {
    content: " ";
    display: table; }
  #noticeContainer_stacks_in_31012 .clearfix:after {
    content: " ";
    display: table;
    clear: both; }

#notice_stacks_in_31012 {
  /*  */
  /*  */
  opacity: 0;
  left: 0px;
  right: 0px;
  max-height: 100%;
  /*  */
  position: fixed;
  /*  */
  overflow-y: auto;
  visibility: hidden;
  /*  */
  z-index: 999999;
  /*  */
  max-width: 100%;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  bottom: 0px;
  /*  */
  /*  */
  /*  */
  /*  */
  margin-left: auto;
  margin-right: auto;
  /*  */
  /*  */
  /*  */
  /*  */
  background: rgba(21, 47, 103, 0.90);
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  font-family: "Nunito";
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  color: rgba(255, 255, 255, 1.00);
  border-radius: 0px 0px 0px 0px; }
  #notice_stacks_in_31012.show {
    opacity: 1;
    visibility: visible; }
  #notice_stacks_in_31012.hide {
    opacity: 0;
    visibility: hidden; }
  #notice_stacks_in_31012.cookie-hide {
    display: none; }

#notice_stacks_in_31012 .notice-inner-stacks {
  clear: both;
  margin: 0 auto;
  max-width: 960px;
  padding: 10px 10px 35px 10px; }

#notice_stacks_in_31012 .notice-inner {
  clear: both;
  margin: 0 auto;
  max-width: 960px;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
  padding: 10px 10px 35px 10px;
  /*  */
  /*  */
  text-align: center;
  /*  */
  /*  */
  /*  */
  display: -ms-flexbox;
  display: flex;
  /*  */
  /*  */ }
  #notice_stacks_in_31012 .notice-inner-text {
    -ms-flex: 0 1 auto;
        flex: 0 1 auto;
    max-width: 100%;
    font-size: 16px;
    line-height: 22px; }
  #notice_stacks_in_31012 .notice-inner-icon {
    /*  */
    /*  */
    /*  */
    -ms-flex-item-align: center;
        -ms-grid-row-align: center;
        align-self: center;
    /*  */
    /*  */
    -ms-flex: 0 1 auto;
        flex: 0 1 auto;
    color: rgba(255, 255, 255, 1.00);
    padding: 5px 20px 5px 10px; }
    #notice_stacks_in_31012 .notice-inner-icon i {
      font-size: 32px;
      vertical-align: middle; }

#notice_stacks_in_31012 .notice-close-btn {
  float: right;
  cursor: pointer;
  color: rgba(255, 255, 255, 1.00);
  padding: 10px 10px 0px 10px; }
  #notice_stacks_in_31012 .notice-close-btn i {
    cursor: pointer;
    vertical-align: middle; }

#notice_stacks_in_31012 .notice-action {
  height: 40px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  /*  */
  color: inherit;
  background: none;
  /*  */ }
  #notice_stacks_in_31012 .notice-action i {
    vertical-align: middle; }
  #notice_stacks_in_31012 .notice-action-close {
    border-style: solid;
    border-width: 1px 0 0 0;
    border-color: rgba(255, 255, 255, 0.30); }
    #notice_stacks_in_31012 .notice-action-close:hover {
      /*  */ }
  #notice_stacks_in_31012 .notice-action-custom {
    border-style: solid;
    border-width: 1px 0 0 1px;
    border-color: rgba(255, 255, 255, 0.30); }
    #notice_stacks_in_31012 .notice-action-custom:hover {
      /*  */ }
    #notice_stacks_in_31012 .notice-action-custom a {
      color: inherit;
      width: 100%;
      height: 100%;
      /*  */
      display: -ms-flexbox;
      display: flex;
      -ms-flex-align: center;
          align-items: center;
      text-decoration: none;
      -ms-flex-pack: center;
          justify-content: center;
      /*  */ }
  #notice_stacks_in_31012 .notice-action-btn {
    height: 100%;
    display: -ms-flexbox;
    display: flex;
    -ms-flex: 1 0 auto;
        flex: 1 0 auto;
    text-align: center;
    -ms-flex-align: center;
        align-items: center;
    box-sizing: border-box;
    -ms-flex-pack: center;
        justify-content: center; }
    #notice_stacks_in_31012 .notice-action-btn:hover {
      cursor: pointer; }

@media (max-width: 480px) {
  #notice_stacks_in_31012 .notice-action {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    height: 90px; }
    #notice_stacks_in_31012 .notice-action-custom {
      border-width: 1px 0 0 0; }
    #notice_stacks_in_31012 .notice-action div {
      height: 50%;
      width: 100%; } }

/*  */
@media all and (-ms-high-contrast: none) {
  #notice_stacks_in_31012 {
    width: 100%; }
    #notice_stacks_in_31012 *::-ms-backdrop, #notice_stacks_in_31012 #notice_stacks_in_31012 {
      width: 100%; } }

/*  */
#stacks_in_31017 h1,#stacks_in_31017 .hTxt:not(.segment) div{font-size:3.00rem}@media all and (max-width:640px){#stacks_in_31017 h1,#stacks_in_31017 .hTxt:not(.segment) div{font-size:1.50rem}}#stacks_in_31017 h1,#stacks_in_31017 div{color:rgba(205, 41, 27, 1.00)}#stacks_in_31017 h1 a,#stacks_in_31017 div a{color:rgba(205, 41, 27, 1.00)}#stacks_in_31017 h1 a:hover,#stacks_in_31017 div a:hover{color:rgba(153, 30, 20, 1.00)}#stacks_in_31017 small,#stacks_in_31017 small div{color:rgba(111, 111, 111, 1.00)}#stacks_in_31017 .hTxt:not(.vault-font),.no-default:not(.custom-font) .hTxt:not(.vault-font){font-family:"Archivo Black",Sans-Serif;font-weight:400;font-style:normal}#stacks_in_31017 .hTxt.segment[data-seg="segment1"]{font-family:"Roboto ",Sans-Serif;font-weight:400;font-style:normal}#stacks_in_31017 .primary,#stacks_in_31017 .segment{display:inline-block}#stacks_in_31017 .primary.sub-title,#stacks_in_31017 .segment.sub-title{display:block}#stacks_in_31017 [data-seg="segment2"].last-title{display:block}#stacks_in_31017 .segment.no-shadow{text-shadow:none !important}#stacks_in_31017 .segment *{}#stacks_in_31017 .hTxt.primary{vertical-align:baseline}#stacks_in_31017 .segment[data-seg="segment1"]{font-size:100%;color:rgba(10, 33, 88, 1.00);padding:0px 0px 0px 13px;margin:0px 0px 0px 0px;vertical-align:baseline;}#stacks_in_31017 .segment[data-seg="segment1"] div{color:rgba(10, 33, 88, 1.00)}#stacks_in_31017 .segment[data-seg="segment1"] div.mez{font-size:100%}


  #stacks_in_31044{text-align:center}          @media screen and (max-width:641px){#stacks_in_31044>.button.b-p.expand-mob:not(.icon-only),#stacks_in_31044>.dd-wrap>.button.b-p.expand-mob:not(.icon-only){width:100%!important}}@media screen and (min-width:641px){#stacks_in_31044 .button.b-p.expand-large:not(.icon-only),#stacks_in_31044>.dd-wrap>.button.b-p.expand-large:not(.icon-only){width:100%!important}}
   @media screen and (max-width:641px){#stacks_in_31044.bp-wrap{padding:20px 0px 0px 0px}}  @media screen and (min-width:641px){#stacks_in_31044.bp-wrap{padding:20px 0px 0px 0px}}         
  #stacks_in_31044 .button.b-p.custom{border:0px solid rgba(179, 179, 177, 1.00)}#stacks_in_31044 .button.b-p.custom:hover{border:0px solid rgba(179, 179, 177, 1.00)} #stacks_in_31044 .button.b-p{color:rgba(255, 255, 255, 1.00);background-color:rgba(205, 41, 27, 1.00)}#stacks_in_31044 .button.b-p:not(.d-hov){-webkit-transition:color 200ms ease,background-color 200ms ease,box-shadow 200ms ease,border 200ms ease;-webkit-transition:color 200ms ease,background-color 200ms ease,border 200ms ease,-webkit-box-shadow 200ms ease;transition:color 200ms ease,background-color 200ms ease,border 200ms ease,-webkit-box-shadow 200ms ease;transition:color 200ms ease,background-color 200ms ease,box-shadow 200ms ease,border 200ms ease;transition:color 200ms ease,background-color 200ms ease,box-shadow 200ms ease,border 200ms ease,-webkit-box-shadow 200ms ease}  #stacks_in_31044 .button.b-p:not(.bp-hover):hover{color:rgba(255, 255, 255, 0.90)!important; background-color:rgba(21, 47, 103, 1.00);}     
       
  #stacks_in_31044 .d-hov,#stacks_in_31044 .d-hov::before,#stacks_in_31044 .d-hov::after{-webkit-transition-duration:300ms;transition-duration:300ms}#stacks_in_31044 .d-hov.active,#stacks_in_31044 .d-hov.active::before,#stacks_in_31044 .d-hov.active::after{-webkit-transition-duration:0ms;transition-duration:0ms}#stacks_in_31044 .hover-col:not(.button.b-p):not(.bp-zone-item)::before{background:rgba(239, 181, 10, 1.00)!important}#stacks_in_31044 .hover-col::before,#stacks_in_31044 .hover-col::after{-webkit-transition-property:all;transition-property:all;-webkit-transition-duration:.3s;transition-duration:.3s;-webkit-transition-timing-function:ease-out;transition-timing-function:ease-out}#stacks_in_31044 .hover-col:hover::before{background:rgba(239, 181, 10, 1.00)}#stacks_in_31044 .hover-col.active::before{background:rgba(207, 0, 32, 1.00)}#stacks_in_31044 .d-hov-ripple-out:hover::before{border:rgba(239, 181, 10, 1.00) solid 2px}#stacks_in_31044 .d-hov-pop:hover,#stacks_in_31044 .d-hov-pop:focus,#stacks_in_31044 .d-hov-pop.active{-webkit-animation-duration:300ms;animation-duration:300ms}#stacks_in_31044 .d-hov[class*="d-hov-underline-"]::before,#stacks_in_31044 .d-hov[class*="d-hov-overline-"]::before{height:4px!important}#stacks_in_31044 .d-hov[class*="d-hov-text-underline-"]>.bp-text::before,#stacks_in_31044 .d-hov[class*="d-hov-text-underline-"] .ml-text::before{bottom:-6px;border-bottom-color:rgba(239, 181, 10, 1.00)!important;border-bottom-width:4px;-webkit-transition-duration:300ms;transition-duration:300ms}#stacks_in_31044 .d-hov[class*="d-hov-text-underline-"].active>.bp-text::before,#stacks_in_31044 .d-hov[class*="d-hov-text-underline-"].active .ml-text::before{-webkit-transition-duration:0ms;transition-duration:0ms;border-bottom-color:rgba(207, 0, 32, 1.00)!important}#stacks_in_31044 .d-hov-reveal:hover::before,#stacks_in_31044 .d-hov-reveal.active::before{border-width:4px!important} 
               

  #stacks_in_31068{text-align:center}          @media screen and (max-width:641px){#stacks_in_31068>.button.b-p.expand-mob:not(.icon-only),#stacks_in_31068>.dd-wrap>.button.b-p.expand-mob:not(.icon-only){width:100%!important}}@media screen and (min-width:641px){#stacks_in_31068 .button.b-p.expand-large:not(.icon-only),#stacks_in_31068>.dd-wrap>.button.b-p.expand-large:not(.icon-only){width:100%!important}}
   @media screen and (max-width:641px){#stacks_in_31068.bp-wrap{padding:20px 0px 0px 0px}}  @media screen and (min-width:641px){#stacks_in_31068.bp-wrap{padding:20px 0px 0px 0px}}         
  #stacks_in_31068 .button.b-p.custom{border:0px solid rgba(179, 179, 177, 1.00)}#stacks_in_31068 .button.b-p.custom:hover{border:0px solid rgba(179, 179, 177, 1.00)} #stacks_in_31068 .button.b-p{color:rgba(255, 255, 255, 1.00);background-color:rgba(205, 41, 27, 1.00)}#stacks_in_31068 .button.b-p:not(.d-hov){-webkit-transition:color 200ms ease,background-color 200ms ease,box-shadow 200ms ease,border 200ms ease;-webkit-transition:color 200ms ease,background-color 200ms ease,border 200ms ease,-webkit-box-shadow 200ms ease;transition:color 200ms ease,background-color 200ms ease,border 200ms ease,-webkit-box-shadow 200ms ease;transition:color 200ms ease,background-color 200ms ease,box-shadow 200ms ease,border 200ms ease;transition:color 200ms ease,background-color 200ms ease,box-shadow 200ms ease,border 200ms ease,-webkit-box-shadow 200ms ease}  #stacks_in_31068 .button.b-p:not(.bp-hover):hover{color:rgba(255, 255, 255, 0.90)!important; background-color:rgba(21, 47, 103, 1.00);}     
       
  #stacks_in_31068 .d-hov,#stacks_in_31068 .d-hov::before,#stacks_in_31068 .d-hov::after{-webkit-transition-duration:300ms;transition-duration:300ms}#stacks_in_31068 .d-hov.active,#stacks_in_31068 .d-hov.active::before,#stacks_in_31068 .d-hov.active::after{-webkit-transition-duration:0ms;transition-duration:0ms}#stacks_in_31068 .hover-col:not(.button.b-p):not(.bp-zone-item)::before{background:rgba(239, 181, 10, 1.00)!important}#stacks_in_31068 .hover-col::before,#stacks_in_31068 .hover-col::after{-webkit-transition-property:all;transition-property:all;-webkit-transition-duration:.3s;transition-duration:.3s;-webkit-transition-timing-function:ease-out;transition-timing-function:ease-out}#stacks_in_31068 .hover-col:hover::before{background:rgba(239, 181, 10, 1.00)}#stacks_in_31068 .hover-col.active::before{background:rgba(207, 0, 32, 1.00)}#stacks_in_31068 .d-hov-ripple-out:hover::before{border:rgba(239, 181, 10, 1.00) solid 2px}#stacks_in_31068 .d-hov-pop:hover,#stacks_in_31068 .d-hov-pop:focus,#stacks_in_31068 .d-hov-pop.active{-webkit-animation-duration:300ms;animation-duration:300ms}#stacks_in_31068 .d-hov[class*="d-hov-underline-"]::before,#stacks_in_31068 .d-hov[class*="d-hov-overline-"]::before{height:4px!important}#stacks_in_31068 .d-hov[class*="d-hov-text-underline-"]>.bp-text::before,#stacks_in_31068 .d-hov[class*="d-hov-text-underline-"] .ml-text::before{bottom:-6px;border-bottom-color:rgba(239, 181, 10, 1.00)!important;border-bottom-width:4px;-webkit-transition-duration:300ms;transition-duration:300ms}#stacks_in_31068 .d-hov[class*="d-hov-text-underline-"].active>.bp-text::before,#stacks_in_31068 .d-hov[class*="d-hov-text-underline-"].active .ml-text::before{-webkit-transition-duration:0ms;transition-duration:0ms;border-bottom-color:rgba(207, 0, 32, 1.00)!important}#stacks_in_31068 .d-hov-reveal:hover::before,#stacks_in_31068 .d-hov-reveal.active::before{border-width:4px!important} 
               
@important "partials/maps";
.animated {
  animation-duration: 1s;
  animation-fill-mode: both; }
  .animated.infinite {
    animation-iteration-count: infinite; }
  .animated.hinge {
    animation-duration: 2s; }
  .animated.flipOutX, .animated.flipOutY, .animated.bounceIn, .animated.bounceOut {
    animation-duration: .75s; }

@keyframes bounce {
  from, 20%, 53%, 80%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transform: translate3d(0, 0, 0); }
  40%, 43% {
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    transform: translate3d(0, -30px, 0); }
  70% {
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    transform: translate3d(0, -15px, 0); }
  90% {
    transform: translate3d(0, -4px, 0); } }

.bounce {
  animation-name: bounce;
  transform-origin: center bottom; }

@keyframes flash {
  from, 50%, to {
    opacity: 1; }
  25%, 75% {
    opacity: 0; } }

.flash {
  animation-name: flash; }

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */

@keyframes pulse {
  from {
    transform: scale3d(1, 1, 1); }
  50% {
    transform: scale3d(1.05, 1.05, 1.05); }
  to {
    transform: scale3d(1, 1, 1); } }

.pulse {
  animation-name: pulse; }

@keyframes rubberBand {
  from {
    transform: scale3d(1, 1, 1); }
  30% {
    transform: scale3d(1.25, 0.75, 1); }
  40% {
    transform: scale3d(0.75, 1.25, 1); }
  50% {
    transform: scale3d(1.15, 0.85, 1); }
  65% {
    transform: scale3d(0.95, 1.05, 1); }
  75% {
    transform: scale3d(1.05, 0.95, 1); }
  to {
    transform: scale3d(1, 1, 1); } }

.rubberBand {
  animation-name: rubberBand; }

@keyframes shake {
  from, to {
    transform: translate3d(0, 0, 0); }
  10%, 30%, 50%, 70%, 90% {
    transform: translate3d(-10px, 0, 0); }
  20%, 40%, 60%, 80% {
    transform: translate3d(10px, 0, 0); } }

.shake {
  animation-name: shake; }

@keyframes headShake {
  0% {
    transform: translateX(0); }
  6.5% {
    transform: translateX(-6px) rotateY(-9deg); }
  18.5% {
    transform: translateX(5px) rotateY(7deg); }
  31.5% {
    transform: translateX(-3px) rotateY(-5deg); }
  43.5% {
    transform: translateX(2px) rotateY(3deg); }
  50% {
    transform: translateX(0); } }

.headShake {
  animation-timing-function: ease-in-out;
  animation-name: headShake; }

@keyframes swing {
  20% {
    transform: rotate3d(0, 0, 1, 15deg); }
  40% {
    transform: rotate3d(0, 0, 1, -10deg); }
  60% {
    transform: rotate3d(0, 0, 1, 5deg); }
  80% {
    transform: rotate3d(0, 0, 1, -5deg); }
  to {
    transform: rotate3d(0, 0, 1, 0deg); } }

.swing {
  transform-origin: top center;
  animation-name: swing; }

@keyframes tada {
  from {
    transform: scale3d(1, 1, 1); }
  10%, 20% {
    transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg); }
  30%, 50%, 70%, 90% {
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg); }
  40%, 60%, 80% {
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg); }
  to {
    transform: scale3d(1, 1, 1); } }

.tada {
  animation-name: tada; }

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */

@keyframes wobble {
  from {
    transform: none; }
  15% {
    transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg); }
  30% {
    transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg); }
  45% {
    transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg); }
  60% {
    transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg); }
  75% {
    transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg); }
  to {
    transform: none; } }

.wobble {
  animation-name: wobble; }

@keyframes jello {
  from, 11.1%, to {
    transform: none; }
  22.2% {
    transform: skewX(-12.5deg) skewY(-12.5deg); }
  33.3% {
    transform: skewX(6.25deg) skewY(6.25deg); }
  44.4% {
    transform: skewX(-3.125deg) skewY(-3.125deg); }
  55.5% {
    transform: skewX(1.5625deg) skewY(1.5625deg); }
  66.6% {
    transform: skewX(-0.78125deg) skewY(-0.78125deg); }
  77.7% {
    transform: skewX(0.39063deg) skewY(0.39063deg); }
  88.8% {
    transform: skewX(-0.19531deg) skewY(-0.19531deg); } }

.jello {
  animation-name: jello;
  transform-origin: center; }

@keyframes bounceIn {
  from, 20%, 40%, 60%, 80%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  0% {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3); }
  20% {
    transform: scale3d(1.1, 1.1, 1.1); }
  40% {
    transform: scale3d(0.9, 0.9, 0.9); }
  60% {
    opacity: 1;
    transform: scale3d(1.03, 1.03, 1.03); }
  80% {
    transform: scale3d(0.97, 0.97, 0.97); }
  to {
    opacity: 1;
    transform: scale3d(1, 1, 1); } }

.bounceIn {
  animation-name: bounceIn; }

@keyframes bounceInDown {
  from, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  0% {
    opacity: 0;
    transform: translate3d(0, -3000px, 0); }
  60% {
    opacity: 1;
    transform: translate3d(0, 25px, 0); }
  75% {
    transform: translate3d(0, -10px, 0); }
  90% {
    transform: translate3d(0, 5px, 0); }
  to {
    transform: none; } }

.bounceInDown {
  animation-name: bounceInDown; }

@keyframes bounceInLeft {
  from, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  0% {
    opacity: 0;
    transform: translate3d(-3000px, 0, 0); }
  60% {
    opacity: 1;
    transform: translate3d(25px, 0, 0); }
  75% {
    transform: translate3d(-10px, 0, 0); }
  90% {
    transform: translate3d(5px, 0, 0); }
  to {
    transform: none; } }

.bounceInLeft {
  animation-name: bounceInLeft; }

@keyframes bounceInRight {
  from, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  from {
    opacity: 0;
    transform: translate3d(3000px, 0, 0); }
  60% {
    opacity: 1;
    transform: translate3d(-25px, 0, 0); }
  75% {
    transform: translate3d(10px, 0, 0); }
  90% {
    transform: translate3d(-5px, 0, 0); }
  to {
    transform: none; } }

.bounceInRight {
  animation-name: bounceInRight; }

@keyframes bounceInUp {
  from, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  from {
    opacity: 0;
    transform: translate3d(0, 3000px, 0); }
  60% {
    opacity: 1;
    transform: translate3d(0, -20px, 0); }
  75% {
    transform: translate3d(0, 10px, 0); }
  90% {
    transform: translate3d(0, -5px, 0); }
  to {
    transform: translate3d(0, 0, 0); } }

.bounceInUp {
  animation-name: bounceInUp; }

@keyframes bounceOut {
  20% {
    transform: scale3d(0.9, 0.9, 0.9); }
  50%, 55% {
    opacity: 1;
    transform: scale3d(1.1, 1.1, 1.1); }
  to {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3); } }

.bounceOut {
  animation-name: bounceOut; }

@keyframes bounceOutDown {
  20% {
    transform: translate3d(0, 10px, 0); }
  40%, 45% {
    opacity: 1;
    transform: translate3d(0, -20px, 0); }
  to {
    opacity: 0;
    transform: translate3d(0, 2000px, 0); } }

.bounceOutDown {
  animation-name: bounceOutDown; }

@keyframes bounceOutLeft {
  20% {
    opacity: 1;
    transform: translate3d(20px, 0, 0); }
  to {
    opacity: 0;
    transform: translate3d(-2000px, 0, 0); } }

.bounceOutLeft {
  animation-name: bounceOutLeft; }

@keyframes bounceOutRight {
  20% {
    opacity: 1;
    transform: translate3d(-20px, 0, 0); }
  to {
    opacity: 0;
    transform: translate3d(2000px, 0, 0); } }

.bounceOutRight {
  animation-name: bounceOutRight; }

@keyframes bounceOutUp {
  20% {
    transform: translate3d(0, -10px, 0); }
  40%, 45% {
    opacity: 1;
    transform: translate3d(0, 20px, 0); }
  to {
    opacity: 0;
    transform: translate3d(0, -2000px, 0); } }

.bounceOutUp {
  animation-name: bounceOutUp; }

@keyframes fadeIn {
  from {
    opacity: 0; }
  to {
    opacity: 1; } }

.fadeIn {
  animation-name: fadeIn; }

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translate3d(0, -100%, 0); }
  to {
    opacity: 1;
    transform: none; } }

.fadeInDown {
  animation-name: fadeInDown; }

@keyframes fadeInDownBig {
  from {
    opacity: 0;
    transform: translate3d(0, -2000px, 0); }
  to {
    opacity: 1;
    transform: none; } }

.fadeInDownBig {
  animation-name: fadeInDownBig; }

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translate3d(-100%, 0, 0); }
  to {
    opacity: 1;
    transform: none; } }

.fadeInLeft {
  animation-name: fadeInLeft; }

@keyframes fadeInLeftBig {
  from {
    opacity: 0;
    transform: translate3d(-2000px, 0, 0); }
  to {
    opacity: 1;
    transform: none; } }

.fadeInLeftBig {
  animation-name: fadeInLeftBig; }

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translate3d(100%, 0, 0); }
  to {
    opacity: 1;
    transform: none; } }

.fadeInRight {
  animation-name: fadeInRight; }

@keyframes fadeInRightBig {
  from {
    opacity: 0;
    transform: translate3d(2000px, 0, 0); }
  to {
    opacity: 1;
    transform: none; } }

.fadeInRightBig {
  animation-name: fadeInRightBig; }

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translate3d(0, 100%, 0); }
  to {
    opacity: 1;
    transform: none; } }

.fadeInUp {
  animation-name: fadeInUp; }

@keyframes fadeInUpBig {
  from {
    opacity: 0;
    transform: translate3d(0, 2000px, 0); }
  to {
    opacity: 1;
    transform: none; } }

.fadeInUpBig {
  animation-name: fadeInUpBig; }

@keyframes fadeOut {
  from {
    opacity: 1; }
  to {
    opacity: 0; } }

.fadeOut {
  animation-name: fadeOut; }

@keyframes fadeOutDown {
  from {
    opacity: 1; }
  to {
    opacity: 0;
    transform: translate3d(0, 100%, 0); } }

.fadeOutDown {
  animation-name: fadeOutDown; }

@keyframes fadeOutDownBig {
  from {
    opacity: 1; }
  to {
    opacity: 0;
    transform: translate3d(0, 2000px, 0); } }

.fadeOutDownBig {
  animation-name: fadeOutDownBig; }

@keyframes fadeOutLeft {
  from {
    opacity: 1; }
  to {
    opacity: 0;
    transform: translate3d(-100%, 0, 0); } }

.fadeOutLeft {
  animation-name: fadeOutLeft; }

@keyframes fadeOutLeftBig {
  from {
    opacity: 1; }
  to {
    opacity: 0;
    transform: translate3d(-2000px, 0, 0); } }

.fadeOutLeftBig {
  animation-name: fadeOutLeftBig; }

@keyframes fadeOutRight {
  from {
    opacity: 1; }
  to {
    opacity: 0;
    transform: translate3d(100%, 0, 0); } }

.fadeOutRight {
  animation-name: fadeOutRight; }

@keyframes fadeOutRightBig {
  from {
    opacity: 1; }
  to {
    opacity: 0;
    transform: translate3d(2000px, 0, 0); } }

.fadeOutRightBig {
  animation-name: fadeOutRightBig; }

@keyframes fadeOutUp {
  from {
    opacity: 1; }
  to {
    opacity: 0;
    transform: translate3d(0, -100%, 0); } }

.fadeOutUp {
  animation-name: fadeOutUp; }

@keyframes fadeOutUpBig {
  from {
    opacity: 1; }
  to {
    opacity: 0;
    transform: translate3d(0, -2000px, 0); } }

.fadeOutUpBig {
  animation-name: fadeOutUpBig; }

@keyframes flip {
  from {
    transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    animation-timing-function: ease-out; }
  40% {
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    animation-timing-function: ease-out; }
  50% {
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    animation-timing-function: ease-in; }
  80% {
    transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
    animation-timing-function: ease-in; }
  to {
    transform: perspective(400px);
    animation-timing-function: ease-in; } }

.animated.flip {
  -webkit-backface-visibility: visible;
  backface-visibility: visible;
  animation-name: flip; }

@keyframes flipInX {
  from {
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    animation-timing-function: ease-in;
    opacity: 0; }
  40% {
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    animation-timing-function: ease-in; }
  60% {
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1; }
  80% {
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg); }
  to {
    transform: perspective(400px); } }

.flipInX {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  animation-name: flipInX; }

@keyframes flipInY {
  from {
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    animation-timing-function: ease-in;
    opacity: 0; }
  40% {
    transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    animation-timing-function: ease-in; }
  60% {
    transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    opacity: 1; }
  80% {
    transform: perspective(400px) rotate3d(0, 1, 0, -5deg); }
  to {
    transform: perspective(400px); } }

.flipInY {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  animation-name: flipInY; }

@keyframes flipOutX {
  from {
    transform: perspective(400px); }
  30% {
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    opacity: 1; }
  to {
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0; } }

.flipOutX {
  animation-name: flipOutX;
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important; }

@keyframes flipOutY {
  from {
    transform: perspective(400px); }
  30% {
    transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    opacity: 1; }
  to {
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    opacity: 0; } }

.flipOutY {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  animation-name: flipOutY; }

@keyframes lightSpeedIn {
  from {
    transform: translate3d(100%, 0, 0) skewX(-30deg);
    opacity: 0; }
  60% {
    transform: skewX(20deg);
    opacity: 1; }
  80% {
    transform: skewX(-5deg);
    opacity: 1; }
  to {
    transform: none;
    opacity: 1; } }

.lightSpeedIn {
  animation-name: lightSpeedIn;
  animation-timing-function: ease-out; }

@keyframes lightSpeedOut {
  from {
    opacity: 1; }
  to {
    transform: translate3d(100%, 0, 0) skewX(30deg);
    opacity: 0; } }

.lightSpeedOut {
  animation-name: lightSpeedOut;
  animation-timing-function: ease-in; }

@keyframes rotateIn {
  from {
    transform-origin: center;
    transform: rotate3d(0, 0, 1, -200deg);
    opacity: 0; }
  to {
    transform-origin: center;
    transform: none;
    opacity: 1; } }

.rotateIn {
  animation-name: rotateIn; }

@keyframes rotateInDownLeft {
  from {
    transform-origin: left bottom;
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0; }
  to {
    transform-origin: left bottom;
    transform: none;
    opacity: 1; } }

.rotateInDownLeft {
  animation-name: rotateInDownLeft; }

@keyframes rotateInDownRight {
  from {
    transform-origin: right bottom;
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0; }
  to {
    transform-origin: right bottom;
    transform: none;
    opacity: 1; } }

.rotateInDownRight {
  animation-name: rotateInDownRight; }

@keyframes rotateInUpLeft {
  from {
    transform-origin: left bottom;
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0; }
  to {
    transform-origin: left bottom;
    transform: none;
    opacity: 1; } }

.rotateInUpLeft {
  animation-name: rotateInUpLeft; }

@keyframes rotateInUpRight {
  from {
    transform-origin: right bottom;
    transform: rotate3d(0, 0, 1, -90deg);
    opacity: 0; }
  to {
    transform-origin: right bottom;
    transform: none;
    opacity: 1; } }

.rotateInUpRight {
  animation-name: rotateInUpRight; }

@keyframes rotateOut {
  from {
    transform-origin: center;
    opacity: 1; }
  to {
    transform-origin: center;
    transform: rotate3d(0, 0, 1, 200deg);
    opacity: 0; } }

.rotateOut {
  animation-name: rotateOut; }

@keyframes rotateOutDownLeft {
  from {
    transform-origin: left bottom;
    opacity: 1; }
  to {
    transform-origin: left bottom;
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0; } }

.rotateOutDownLeft {
  animation-name: rotateOutDownLeft; }

@keyframes rotateOutDownRight {
  from {
    transform-origin: right bottom;
    opacity: 1; }
  to {
    transform-origin: right bottom;
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0; } }

.rotateOutDownRight {
  animation-name: rotateOutDownRight; }

@keyframes rotateOutUpLeft {
  from {
    transform-origin: left bottom;
    opacity: 1; }
  to {
    transform-origin: left bottom;
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0; } }

.rotateOutUpLeft {
  animation-name: rotateOutUpLeft; }

@keyframes rotateOutUpRight {
  from {
    transform-origin: right bottom;
    opacity: 1; }
  to {
    transform-origin: right bottom;
    transform: rotate3d(0, 0, 1, 90deg);
    opacity: 0; } }

.rotateOutUpRight {
  animation-name: rotateOutUpRight; }

@keyframes hinge {
  0% {
    transform-origin: top left;
    animation-timing-function: ease-in-out; }
  20%, 60% {
    transform: rotate3d(0, 0, 1, 80deg);
    transform-origin: top left;
    animation-timing-function: ease-in-out; }
  40%, 80% {
    transform: rotate3d(0, 0, 1, 60deg);
    transform-origin: top left;
    animation-timing-function: ease-in-out;
    opacity: 1; }
  to {
    transform: translate3d(0, 700px, 0);
    opacity: 0; } }

.hinge {
  animation-name: hinge; }

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */

@keyframes rollIn {
  from {
    opacity: 0;
    transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg); }
  to {
    opacity: 1;
    transform: none; } }

.rollIn {
  animation-name: rollIn; }

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */

@keyframes rollOut {
  from {
    opacity: 1; }
  to {
    opacity: 0;
    transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg); } }

.rollOut {
  animation-name: rollOut; }

@keyframes zoomIn {
  from {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3); }
  50% {
    opacity: 1; } }

.zoomIn {
  animation-name: zoomIn; }

@keyframes zoomInDown {
  from {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  60% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); } }

.zoomInDown {
  animation-name: zoomInDown; }

@keyframes zoomInLeft {
  from {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  60% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); } }

.zoomInLeft {
  animation-name: zoomInLeft; }

@keyframes zoomInRight {
  from {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  60% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); } }

.zoomInRight {
  animation-name: zoomInRight; }

@keyframes zoomInUp {
  from {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  60% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); } }

.zoomInUp {
  animation-name: zoomInUp; }

@keyframes zoomOut {
  from {
    opacity: 1; }
  50% {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3); }
  to {
    opacity: 0; } }

.zoomOut {
  animation-name: zoomOut; }

@keyframes zoomOutDown {
  40% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  to {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    transform-origin: center bottom;
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); } }

.zoomOutDown {
  animation-name: zoomOutDown; }

@keyframes zoomOutLeft {
  40% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0); }
  to {
    opacity: 0;
    transform: scale(0.1) translate3d(-2000px, 0, 0);
    transform-origin: left center; } }

.zoomOutLeft {
  animation-name: zoomOutLeft; }

@keyframes zoomOutRight {
  40% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0); }
  to {
    opacity: 0;
    transform: scale(0.1) translate3d(2000px, 0, 0);
    transform-origin: right center; } }

.zoomOutRight {
  animation-name: zoomOutRight; }

@keyframes zoomOutUp {
  40% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  to {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    transform-origin: center bottom;
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); } }

.zoomOutUp {
  animation-name: zoomOutUp; }

@keyframes slideInDown {
  from {
    transform: translate3d(0, -100%, 0);
    visibility: visible; }
  to {
    transform: translate3d(0, 0, 0); } }

.slideInDown {
  animation-name: slideInDown; }

@keyframes slideInLeft {
  from {
    transform: translate3d(-100%, 0, 0);
    visibility: visible; }
  to {
    transform: translate3d(0, 0, 0); } }

.slideInLeft {
  animation-name: slideInLeft; }

@keyframes slideInRight {
  from {
    transform: translate3d(100%, 0, 0);
    visibility: visible; }
  to {
    transform: translate3d(0, 0, 0); } }

.slideInRight {
  animation-name: slideInRight; }

@keyframes slideInUp {
  from {
    transform: translate3d(0, 100%, 0);
    visibility: visible; }
  to {
    transform: translate3d(0, 0, 0); } }

.slideInUp {
  animation-name: slideInUp; }

@keyframes slideOutDown {
  from {
    transform: translate3d(0, 0, 0); }
  to {
    visibility: hidden;
    transform: translate3d(0, 100%, 0); } }

.slideOutDown {
  animation-name: slideOutDown; }

@keyframes slideOutLeft {
  from {
    transform: translate3d(0, 0, 0); }
  to {
    visibility: hidden;
    transform: translate3d(-100%, 0, 0); } }

.slideOutLeft {
  animation-name: slideOutLeft; }

@keyframes slideOutRight {
  from {
    transform: translate3d(0, 0, 0); }
  to {
    visibility: hidden;
    transform: translate3d(100%, 0, 0); } }

.slideOutRight {
  animation-name: slideOutRight; }

@keyframes slideOutUp {
  from {
    transform: translate3d(0, 0, 0); }
  to {
    visibility: hidden;
    transform: translate3d(0, -100%, 0); } }

.slideOutUp {
  animation-name: slideOutUp; }

#noticeContainer_stacks_in_31071 {
  /*  */
  display: block;
  position: relative; }
  #noticeContainer_stacks_in_31071 .clearfix:before {
    content: " ";
    display: table; }
  #noticeContainer_stacks_in_31071 .clearfix:after {
    content: " ";
    display: table;
    clear: both; }

#notice_stacks_in_31071 {
  /*  */
  /*  */
  opacity: 0;
  left: 0px;
  right: 0px;
  max-height: 100%;
  /*  */
  position: fixed;
  /*  */
  overflow-y: auto;
  visibility: hidden;
  /*  */
  z-index: 999999;
  /*  */
  max-width: 100%;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  bottom: 0px;
  /*  */
  /*  */
  /*  */
  /*  */
  margin-left: auto;
  margin-right: auto;
  /*  */
  /*  */
  /*  */
  /*  */
  background: rgba(21, 47, 103, 0.90);
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  font-family: "Nunito";
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  color: rgba(255, 255, 255, 1.00);
  border-radius: 0px 0px 0px 0px; }
  #notice_stacks_in_31071.show {
    opacity: 1;
    visibility: visible; }
  #notice_stacks_in_31071.hide {
    opacity: 0;
    visibility: hidden; }
  #notice_stacks_in_31071.cookie-hide {
    display: none; }

#notice_stacks_in_31071 .notice-inner-stacks {
  clear: both;
  margin: 0 auto;
  max-width: 960px;
  padding: 10px 10px 35px 10px; }

#notice_stacks_in_31071 .notice-inner {
  clear: both;
  margin: 0 auto;
  max-width: 960px;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
  padding: 10px 10px 35px 10px;
  /*  */
  /*  */
  text-align: center;
  /*  */
  /*  */
  /*  */
  display: -ms-flexbox;
  display: flex;
  /*  */
  /*  */ }
  #notice_stacks_in_31071 .notice-inner-text {
    -ms-flex: 0 1 auto;
        flex: 0 1 auto;
    max-width: 100%;
    font-size: 16px;
    line-height: 22px; }
  #notice_stacks_in_31071 .notice-inner-icon {
    /*  */
    /*  */
    /*  */
    -ms-flex-item-align: center;
        -ms-grid-row-align: center;
        align-self: center;
    /*  */
    /*  */
    -ms-flex: 0 1 auto;
        flex: 0 1 auto;
    color: rgba(255, 255, 255, 1.00);
    padding: 5px 20px 5px 10px; }
    #notice_stacks_in_31071 .notice-inner-icon i {
      font-size: 32px;
      vertical-align: middle; }

#notice_stacks_in_31071 .notice-close-btn {
  float: right;
  cursor: pointer;
  color: rgba(255, 255, 255, 1.00);
  padding: 10px 10px 0px 10px; }
  #notice_stacks_in_31071 .notice-close-btn i {
    cursor: pointer;
    vertical-align: middle; }

#notice_stacks_in_31071 .notice-action {
  height: 40px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  /*  */
  color: inherit;
  background: none;
  /*  */ }
  #notice_stacks_in_31071 .notice-action i {
    vertical-align: middle; }
  #notice_stacks_in_31071 .notice-action-close {
    border-style: solid;
    border-width: 1px 0 0 0;
    border-color: rgba(255, 255, 255, 0.30); }
    #notice_stacks_in_31071 .notice-action-close:hover {
      /*  */ }
  #notice_stacks_in_31071 .notice-action-custom {
    border-style: solid;
    border-width: 1px 0 0 1px;
    border-color: rgba(255, 255, 255, 0.30); }
    #notice_stacks_in_31071 .notice-action-custom:hover {
      /*  */ }
    #notice_stacks_in_31071 .notice-action-custom a {
      color: inherit;
      width: 100%;
      height: 100%;
      /*  */
      display: -ms-flexbox;
      display: flex;
      -ms-flex-align: center;
          align-items: center;
      text-decoration: none;
      -ms-flex-pack: center;
          justify-content: center;
      /*  */ }
  #notice_stacks_in_31071 .notice-action-btn {
    height: 100%;
    display: -ms-flexbox;
    display: flex;
    -ms-flex: 1 0 auto;
        flex: 1 0 auto;
    text-align: center;
    -ms-flex-align: center;
        align-items: center;
    box-sizing: border-box;
    -ms-flex-pack: center;
        justify-content: center; }
    #notice_stacks_in_31071 .notice-action-btn:hover {
      cursor: pointer; }

@media (max-width: 480px) {
  #notice_stacks_in_31071 .notice-action {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    height: 90px; }
    #notice_stacks_in_31071 .notice-action-custom {
      border-width: 1px 0 0 0; }
    #notice_stacks_in_31071 .notice-action div {
      height: 50%;
      width: 100%; } }

/*  */
@media all and (-ms-high-contrast: none) {
  #notice_stacks_in_31071 {
    width: 100%; }
    #notice_stacks_in_31071 *::-ms-backdrop, #notice_stacks_in_31071 #notice_stacks_in_31071 {
      width: 100%; } }

/*  */
#stacks_in_31076 h1,#stacks_in_31076 .hTxt:not(.segment) div{font-size:3.00rem}@media all and (max-width:640px){#stacks_in_31076 h1,#stacks_in_31076 .hTxt:not(.segment) div{font-size:1.50rem}}#stacks_in_31076 h1,#stacks_in_31076 div{color:rgba(205, 41, 27, 1.00)}#stacks_in_31076 h1 a,#stacks_in_31076 div a{color:rgba(205, 41, 27, 1.00)}#stacks_in_31076 h1 a:hover,#stacks_in_31076 div a:hover{color:rgba(153, 30, 20, 1.00)}#stacks_in_31076 small,#stacks_in_31076 small div{color:rgba(111, 111, 111, 1.00)}#stacks_in_31076 .hTxt:not(.vault-font),.no-default:not(.custom-font) .hTxt:not(.vault-font){font-family:"Archivo Black",Sans-Serif;font-weight:400;font-style:normal}#stacks_in_31076 .hTxt.segment[data-seg="segment1"]{font-family:"Roboto ",Sans-Serif;font-weight:400;font-style:normal}#stacks_in_31076 .primary,#stacks_in_31076 .segment{display:inline-block}#stacks_in_31076 .primary.sub-title,#stacks_in_31076 .segment.sub-title{display:block}#stacks_in_31076 [data-seg="segment2"].last-title{display:block}#stacks_in_31076 .segment.no-shadow{text-shadow:none !important}#stacks_in_31076 .segment *{}#stacks_in_31076 .hTxt.primary{vertical-align:baseline}#stacks_in_31076 .segment[data-seg="segment1"]{font-size:100%;color:rgba(10, 33, 88, 1.00);padding:0px 0px 0px 13px;margin:0px 0px 0px 0px;vertical-align:baseline;}#stacks_in_31076 .segment[data-seg="segment1"] div{color:rgba(10, 33, 88, 1.00)}#stacks_in_31076 .segment[data-seg="segment1"] div.mez{font-size:100%}


  #stacks_in_31104{text-align:center}          @media screen and (max-width:641px){#stacks_in_31104>.button.b-p.expand-mob:not(.icon-only),#stacks_in_31104>.dd-wrap>.button.b-p.expand-mob:not(.icon-only){width:100%!important}}@media screen and (min-width:641px){#stacks_in_31104 .button.b-p.expand-large:not(.icon-only),#stacks_in_31104>.dd-wrap>.button.b-p.expand-large:not(.icon-only){width:100%!important}}
   @media screen and (max-width:641px){#stacks_in_31104.bp-wrap{padding:20px 0px 0px 0px}}  @media screen and (min-width:641px){#stacks_in_31104.bp-wrap{padding:20px 0px 0px 0px}}         
  #stacks_in_31104 .button.b-p.custom{border:0px solid rgba(179, 179, 177, 1.00)}#stacks_in_31104 .button.b-p.custom:hover{border:0px solid rgba(179, 179, 177, 1.00)} #stacks_in_31104 .button.b-p{color:rgba(255, 255, 255, 1.00);background-color:rgba(205, 41, 27, 1.00)}#stacks_in_31104 .button.b-p:not(.d-hov){-webkit-transition:color 200ms ease,background-color 200ms ease,box-shadow 200ms ease,border 200ms ease;-webkit-transition:color 200ms ease,background-color 200ms ease,border 200ms ease,-webkit-box-shadow 200ms ease;transition:color 200ms ease,background-color 200ms ease,border 200ms ease,-webkit-box-shadow 200ms ease;transition:color 200ms ease,background-color 200ms ease,box-shadow 200ms ease,border 200ms ease;transition:color 200ms ease,background-color 200ms ease,box-shadow 200ms ease,border 200ms ease,-webkit-box-shadow 200ms ease}  #stacks_in_31104 .button.b-p:not(.bp-hover):hover{color:rgba(255, 255, 255, 0.90)!important; background-color:rgba(21, 47, 103, 1.00);}     
       
  #stacks_in_31104 .d-hov,#stacks_in_31104 .d-hov::before,#stacks_in_31104 .d-hov::after{-webkit-transition-duration:300ms;transition-duration:300ms}#stacks_in_31104 .d-hov.active,#stacks_in_31104 .d-hov.active::before,#stacks_in_31104 .d-hov.active::after{-webkit-transition-duration:0ms;transition-duration:0ms}#stacks_in_31104 .hover-col:not(.button.b-p):not(.bp-zone-item)::before{background:rgba(239, 181, 10, 1.00)!important}#stacks_in_31104 .hover-col::before,#stacks_in_31104 .hover-col::after{-webkit-transition-property:all;transition-property:all;-webkit-transition-duration:.3s;transition-duration:.3s;-webkit-transition-timing-function:ease-out;transition-timing-function:ease-out}#stacks_in_31104 .hover-col:hover::before{background:rgba(239, 181, 10, 1.00)}#stacks_in_31104 .hover-col.active::before{background:rgba(207, 0, 32, 1.00)}#stacks_in_31104 .d-hov-ripple-out:hover::before{border:rgba(239, 181, 10, 1.00) solid 2px}#stacks_in_31104 .d-hov-pop:hover,#stacks_in_31104 .d-hov-pop:focus,#stacks_in_31104 .d-hov-pop.active{-webkit-animation-duration:300ms;animation-duration:300ms}#stacks_in_31104 .d-hov[class*="d-hov-underline-"]::before,#stacks_in_31104 .d-hov[class*="d-hov-overline-"]::before{height:4px!important}#stacks_in_31104 .d-hov[class*="d-hov-text-underline-"]>.bp-text::before,#stacks_in_31104 .d-hov[class*="d-hov-text-underline-"] .ml-text::before{bottom:-6px;border-bottom-color:rgba(239, 181, 10, 1.00)!important;border-bottom-width:4px;-webkit-transition-duration:300ms;transition-duration:300ms}#stacks_in_31104 .d-hov[class*="d-hov-text-underline-"].active>.bp-text::before,#stacks_in_31104 .d-hov[class*="d-hov-text-underline-"].active .ml-text::before{-webkit-transition-duration:0ms;transition-duration:0ms;border-bottom-color:rgba(207, 0, 32, 1.00)!important}#stacks_in_31104 .d-hov-reveal:hover::before,#stacks_in_31104 .d-hov-reveal.active::before{border-width:4px!important} 
               
 #stacks_in_31123 .shear-mag{position:absolute;top:-80px}#stacks_in_31123 a.shear-mag.offset-override{top:-80px!important} .mg-menu .mgicon-contactenos{vertical-align:middle;font-size:1.60rem; padding-right:1.00rem;}    

  #stacks_in_31190{text-align:center}          @media screen and (max-width:641px){#stacks_in_31190>.button.b-p.expand-mob:not(.icon-only),#stacks_in_31190>.dd-wrap>.button.b-p.expand-mob:not(.icon-only){width:100%!important}}@media screen and (min-width:641px){#stacks_in_31190 .button.b-p.expand-large:not(.icon-only),#stacks_in_31190>.dd-wrap>.button.b-p.expand-large:not(.icon-only){width:100%!important}}
   @media screen and (max-width:641px){#stacks_in_31190.bp-wrap{padding:20px 0px 0px 0px}}  @media screen and (min-width:641px){#stacks_in_31190.bp-wrap{padding:20px 0px 0px 0px}}         
  #stacks_in_31190 .button.b-p.custom{border:0px solid rgba(179, 179, 177, 1.00)}#stacks_in_31190 .button.b-p.custom:hover{border:0px solid rgba(179, 179, 177, 1.00)} #stacks_in_31190 .button.b-p{color:rgba(255, 255, 255, 1.00);background-color:rgba(205, 41, 27, 1.00)}#stacks_in_31190 .button.b-p:not(.d-hov){-webkit-transition:color 200ms ease,background-color 200ms ease,box-shadow 200ms ease,border 200ms ease;-webkit-transition:color 200ms ease,background-color 200ms ease,border 200ms ease,-webkit-box-shadow 200ms ease;transition:color 200ms ease,background-color 200ms ease,border 200ms ease,-webkit-box-shadow 200ms ease;transition:color 200ms ease,background-color 200ms ease,box-shadow 200ms ease,border 200ms ease;transition:color 200ms ease,background-color 200ms ease,box-shadow 200ms ease,border 200ms ease,-webkit-box-shadow 200ms ease}  #stacks_in_31190 .button.b-p:not(.bp-hover):hover{color:rgba(255, 255, 255, 0.90)!important; background-color:rgba(21, 47, 103, 1.00);}     
       
  #stacks_in_31190 .d-hov,#stacks_in_31190 .d-hov::before,#stacks_in_31190 .d-hov::after{-webkit-transition-duration:300ms;transition-duration:300ms}#stacks_in_31190 .d-hov.active,#stacks_in_31190 .d-hov.active::before,#stacks_in_31190 .d-hov.active::after{-webkit-transition-duration:0ms;transition-duration:0ms}#stacks_in_31190 .hover-col:not(.button.b-p):not(.bp-zone-item)::before{background:rgba(239, 181, 10, 1.00)!important}#stacks_in_31190 .hover-col::before,#stacks_in_31190 .hover-col::after{-webkit-transition-property:all;transition-property:all;-webkit-transition-duration:.3s;transition-duration:.3s;-webkit-transition-timing-function:ease-out;transition-timing-function:ease-out}#stacks_in_31190 .hover-col:hover::before{background:rgba(239, 181, 10, 1.00)}#stacks_in_31190 .hover-col.active::before{background:rgba(207, 0, 32, 1.00)}#stacks_in_31190 .d-hov-ripple-out:hover::before{border:rgba(239, 181, 10, 1.00) solid 2px}#stacks_in_31190 .d-hov-pop:hover,#stacks_in_31190 .d-hov-pop:focus,#stacks_in_31190 .d-hov-pop.active{-webkit-animation-duration:300ms;animation-duration:300ms}#stacks_in_31190 .d-hov[class*="d-hov-underline-"]::before,#stacks_in_31190 .d-hov[class*="d-hov-overline-"]::before{height:4px!important}#stacks_in_31190 .d-hov[class*="d-hov-text-underline-"]>.bp-text::before,#stacks_in_31190 .d-hov[class*="d-hov-text-underline-"] .ml-text::before{bottom:-6px;border-bottom-color:rgba(239, 181, 10, 1.00)!important;border-bottom-width:4px;-webkit-transition-duration:300ms;transition-duration:300ms}#stacks_in_31190 .d-hov[class*="d-hov-text-underline-"].active>.bp-text::before,#stacks_in_31190 .d-hov[class*="d-hov-text-underline-"].active .ml-text::before{-webkit-transition-duration:0ms;transition-duration:0ms;border-bottom-color:rgba(207, 0, 32, 1.00)!important}#stacks_in_31190 .d-hov-reveal:hover::before,#stacks_in_31190 .d-hov-reveal.active::before{border-width:4px!important} 
               
#stacks_in_31156 p,#stacks_in_31156 div,#stacks_in_31156 ul,#stacks_in_31156 ol,#stacks_in_31156 dl{color:rgba(38, 38, 38, 1.00)}#stacks_in_31156 a{color:rgba(0, 140, 186, 1.00)}#stacks_in_31156 a:hover{color:rgba(0, 102, 153, 1.00)}#stacks_in_31156,#stacks_in_31156 div,#stacks_in_31156 p,#stacks_in_31156 ol,#stacks_in_31156 ul li,#stacks_in_31156 ol li,#stacks_in_31156 ol,#stacks_in_31156 dl{font-size:1.40rem}@media all and (max-width:640px){#stacks_in_31156,#stacks_in_31156 div,#stacks_in_31156 p,#stacks_in_31156 ol,#stacks_in_31156 ul li,#stacks_in_31156 ol li,#stacks_in_31156 ol,#stacks_in_31156 dl{font-size:1.10rem}}@media only screen and (min-width:0px){#stacks_in_31156{}}#stacks_in_31156,#stacks_in_31156 div,#stacks_in_31156 p,#stacks_in_31156 ul,#stacks_in_31156 ul li,#stacks_in_31156 ol li,#stacks_in_31156 ol,#stacks_in_31156 dl,#stacks_in_31156 a,.no-default:not(.custom-font),.no-default:not(.custom-font) div,.no-default:not(.custom-font) p,.no-default:not(.custom-font) ul,.no-default:not(.custom-font) ul li,.no-default:not(.custom-font) ol li,.no-default:not(.custom-font) ol,.no-default:not(.custom-font) dl,.no-default:not(.custom-font) a{font-family:"Cabin",Sans-Serif ;font-weight:400 ;font-style:normal }


#stacks_in_31205 {
	padding: 20px 0px 0px 0px;
}

  #stacks_in_31193{text-align:center}  form #stacks_in_31193 .button.b-p.inline{height:37px!important;margin-left:-1px;padding-top:0;padding-bottom:0}         @media screen and (max-width:641px){#stacks_in_31193>.button.b-p.expand-mob:not(.icon-only),#stacks_in_31193>.dd-wrap>.button.b-p.expand-mob:not(.icon-only){width:100%!important}}@media screen and (min-width:641px){#stacks_in_31193 .button.b-p.expand-large:not(.icon-only),#stacks_in_31193>.dd-wrap>.button.b-p.expand-large:not(.icon-only){width:100%!important}}
   @media screen and (max-width:641px){#stacks_in_31193.bp-wrap{padding:20px 0px 0px 0px}}  @media screen and (min-width:641px){#stacks_in_31193.bp-wrap{padding:20px 0px 0px 0px}}         
  #stacks_in_31193 .button.b-p.custom{border:0px solid rgba(179, 179, 177, 1.00)}#stacks_in_31193 .button.b-p.custom:hover{border:0px solid rgba(179, 179, 177, 1.00)} #stacks_in_31193 .button.b-p{color:rgba(255, 255, 255, 1.00);background-color:rgba(205, 41, 27, 1.00)}#stacks_in_31193 .button.b-p:not(.d-hov){-webkit-transition:color 200ms ease,background-color 200ms ease,box-shadow 200ms ease,border 200ms ease;-webkit-transition:color 200ms ease,background-color 200ms ease,border 200ms ease,-webkit-box-shadow 200ms ease;transition:color 200ms ease,background-color 200ms ease,border 200ms ease,-webkit-box-shadow 200ms ease;transition:color 200ms ease,background-color 200ms ease,box-shadow 200ms ease,border 200ms ease;transition:color 200ms ease,background-color 200ms ease,box-shadow 200ms ease,border 200ms ease,-webkit-box-shadow 200ms ease}  #stacks_in_31193 .button.b-p:not(.bp-hover):hover{color:rgba(255, 255, 255, 0.90)!important; background-color:rgba(21, 47, 103, 1.00);}     
       
  #stacks_in_31193 .d-hov,#stacks_in_31193 .d-hov::before,#stacks_in_31193 .d-hov::after{-webkit-transition-duration:300ms;transition-duration:300ms}#stacks_in_31193 .d-hov.active,#stacks_in_31193 .d-hov.active::before,#stacks_in_31193 .d-hov.active::after{-webkit-transition-duration:0ms;transition-duration:0ms}#stacks_in_31193 .hover-col:not(.button.b-p):not(.bp-zone-item)::before{background:rgba(239, 181, 10, 1.00)!important}#stacks_in_31193 .hover-col::before,#stacks_in_31193 .hover-col::after{-webkit-transition-property:all;transition-property:all;-webkit-transition-duration:.3s;transition-duration:.3s;-webkit-transition-timing-function:ease-out;transition-timing-function:ease-out}#stacks_in_31193 .hover-col:hover::before{background:rgba(239, 181, 10, 1.00)}#stacks_in_31193 .hover-col.active::before{background:rgba(207, 0, 32, 1.00)}#stacks_in_31193 .d-hov-ripple-out:hover::before{border:rgba(239, 181, 10, 1.00) solid 2px}#stacks_in_31193 .d-hov-pop:hover,#stacks_in_31193 .d-hov-pop:focus,#stacks_in_31193 .d-hov-pop.active{-webkit-animation-duration:300ms;animation-duration:300ms}#stacks_in_31193 .d-hov[class*="d-hov-underline-"]::before,#stacks_in_31193 .d-hov[class*="d-hov-overline-"]::before{height:4px!important}#stacks_in_31193 .d-hov[class*="d-hov-text-underline-"]>.bp-text::before,#stacks_in_31193 .d-hov[class*="d-hov-text-underline-"] .ml-text::before{bottom:-6px;border-bottom-color:rgba(239, 181, 10, 1.00)!important;border-bottom-width:4px;-webkit-transition-duration:300ms;transition-duration:300ms}#stacks_in_31193 .d-hov[class*="d-hov-text-underline-"].active>.bp-text::before,#stacks_in_31193 .d-hov[class*="d-hov-text-underline-"].active .ml-text::before{-webkit-transition-duration:0ms;transition-duration:0ms;border-bottom-color:rgba(207, 0, 32, 1.00)!important}#stacks_in_31193 .d-hov-reveal:hover::before,#stacks_in_31193 .d-hov-reveal.active::before{border-width:4px!important} 
               
#stacks_in_31219_5 p,#stacks_in_31219_5 div,#stacks_in_31219_5 ul,#stacks_in_31219_5 ol,#stacks_in_31219_5 dl{color:rgba(34, 34, 34, 1.00)}#stacks_in_31219_5 a{color:rgba(51, 51, 51, 1.00)}#stacks_in_31219_5 a:hover{color:rgba(191, 0, 4, 1.00)}#stacks_in_31219_5,#stacks_in_31219_5 div,#stacks_in_31219_5 p,#stacks_in_31219_5 ol,#stacks_in_31219_5 ul li,#stacks_in_31219_5 ol li,#stacks_in_31219_5 ol,#stacks_in_31219_5 dl{font-size:3.00rem}@media all and (max-width:640px){#stacks_in_31219_5,#stacks_in_31219_5 div,#stacks_in_31219_5 p,#stacks_in_31219_5 ol,#stacks_in_31219_5 ul li,#stacks_in_31219_5 ol li,#stacks_in_31219_5 ol,#stacks_in_31219_5 dl{font-size:0.95rem}}@media only screen and (min-width:0px){#stacks_in_31219_5{}}

