<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@import url(https://fonts.googleapis.com/css2?family=Roboto+Slab:wght@100..900&amp;family=Roboto:ital,wght@0,100..900;1,100..900&amp;display=swap);@charset "UTF-8";
:root {
  --medium-violet: #3B3448;
  --grey-violet: #cfdde5;
  --light-violet: #FAF8FD;
  --white: #fff;
  --black: #000;
  --inverse: #fff;
  --text-color: var(--dark-matter);
  --form-validation-error: #c7292d;
  --form-border-color: #888;
  --dark-matter: #1b3e51;
  --velvet-indigo: #2b1b42;
  --solar-flare: #ff6529;
  --radiant-flame: #f44414;
  --midtone-dm: #7899A1;
  --link-hover: #CB333A;
  --link-active: #CB333A;
  --slate-mist: #7c97a2;
  --icy-blue: #cfdde5;
  --cool-wave: #ebf1f3;
  --lunar-silver: #8a8d8f;
  --red: red;
  --p-margin: 1.25rem;
}

/**
 * Foundation for Sites
 * Version 6.9.0
 * https://get.foundation
 * Licensed under MIT Open Source
 */
.ss-main {
  position: relative;
  display: inline-block;
  -webkit-user-select: none;
      -ms-user-select: none;
          user-select: none;
  color: #666666;
  width: 100%;
}
.ss-main .ss-single-selected {
  display: flex;
  cursor: pointer;
  width: 100%;
  height: 30px;
  padding: 6px;
  border: 1px solid #dcdee2;
  border-radius: 50;
  background-color: #fefefe;
  outline: 0;
  box-sizing: border-box;
  transition: background-color 0.2s;
}
.ss-main .ss-single-selected.ss-disabled {
  background-color: #dcdee2;
  cursor: not-allowed;
}
.ss-main .ss-single-selected.ss-open-above {
  border-top-left-radius: 0px;
  border-top-right-radius: 0px;
}
.ss-main .ss-single-selected.ss-open-below {
  border-bottom-left-radius: 0px;
  border-bottom-right-radius: 0px;
}
.ss-main .ss-single-selected .placeholder {
  display: flex;
  flex: 1 1 100%;
  align-items: center;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  text-align: left;
  width: calc(100% - 30px);
  line-height: 1em;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.ss-main .ss-single-selected .placeholder * {
  display: flex;
  align-items: center;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  width: auto;
}
.ss-main .ss-single-selected .placeholder .ss-disabled {
  color: #dedede;
}
.ss-main .ss-single-selected .ss-deselect {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex: 0 1 auto;
  margin: 0 6px 0 6px;
  font-weight: bold;
}
.ss-main .ss-single-selected .ss-deselect.ss-hide {
  display: none;
}
.ss-main .ss-single-selected .ss-arrow {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex: 0 1 auto;
  margin: 0 6px 0 6px;
}
.ss-main .ss-single-selected .ss-arrow span {
  border: solid #666666;
  border-width: 0 2px 2px 0;
  display: inline-block;
  padding: 3px;
  transition: transform 0.2s, margin 0.2s;
}
.ss-main .ss-single-selected .ss-arrow span.arrow-up {
  transform: rotate(-135deg);
  margin: 3px 0 0 0;
}
.ss-main .ss-single-selected .ss-arrow span.arrow-down {
  transform: rotate(45deg);
  margin: -3px 0 0 0;
}
.ss-main .ss-multi-selected {
  display: flex;
  flex-direction: row;
  cursor: pointer;
  min-height: 30px;
  width: 100%;
  padding: 0 0 0 3px;
  border: 1px solid #dcdee2;
  border-radius: 50;
  background-color: #fefefe;
  outline: 0;
  box-sizing: border-box;
  transition: background-color 0.2s;
}
.ss-main .ss-multi-selected.ss-disabled {
  background-color: #dcdee2;
  cursor: not-allowed;
}
.ss-main .ss-multi-selected.ss-disabled .ss-values .ss-disabled {
  color: #666666;
}
.ss-main .ss-multi-selected.ss-disabled .ss-values .ss-value .ss-value-delete {
  cursor: not-allowed;
}
.ss-main .ss-multi-selected.ss-open-above {
  border-top-left-radius: 0px;
  border-top-right-radius: 0px;
}
.ss-main .ss-multi-selected.ss-open-below {
  border-bottom-left-radius: 0px;
  border-bottom-right-radius: 0px;
}
.ss-main .ss-multi-selected .ss-values {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  flex: 1 1 100%;
  width: calc(100% - 30px);
}
.ss-main .ss-multi-selected .ss-values .ss-disabled {
  display: flex;
  padding: 4px 5px;
  margin: 2px 0px;
  line-height: 1em;
  align-items: center;
  width: 100%;
  color: #dedede;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
@keyframes scaleIn {
  0% {
    transform: scale(0);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
@keyframes scaleOut {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  100% {
    transform: scale(0);
    opacity: 0;
  }
}
.ss-main .ss-multi-selected .ss-values .ss-value {
  display: flex;
  -webkit-user-select: none;
      -ms-user-select: none;
          user-select: none;
  align-items: center;
  font-size: 12px;
  padding: 3px 5px;
  margin: 3px 5px 3px 0px;
  color: #fefefe;
  background-color: #1779ba;
  border-radius: 50;
  animation-name: scaleIn;
  animation-duration: 0.2s;
  animation-timing-function: ease-out;
  animation-fill-mode: both;
}
.ss-main .ss-multi-selected .ss-values .ss-value.ss-out {
  animation-name: scaleOut;
  animation-duration: 0.2s;
  animation-timing-function: ease-out;
}
.ss-main .ss-multi-selected .ss-values .ss-value .ss-value-delete {
  margin: 0 0 0 5px;
  cursor: pointer;
}
.ss-main .ss-multi-selected .ss-add {
  display: flex;
  flex: 0 1 3px;
  margin: 9px 12px 0 5px;
}
.ss-main .ss-multi-selected .ss-add .ss-plus {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #666666;
  position: relative;
  height: 10px;
  width: 2px;
  transition: transform 0.2s;
}
.ss-main .ss-multi-selected .ss-add .ss-plus:after {
  background: #666666;
  content: "";
  position: absolute;
  height: 2px;
  width: 10px;
  left: -4px;
  top: 4px;
}
.ss-main .ss-multi-selected .ss-add .ss-plus.ss-cross {
  transform: rotate(45deg);
}

.ss-content {
  position: absolute;
  width: 100%;
  margin: -1px 0 0 0;
  box-sizing: border-box;
  border: solid 1px #dcdee2;
  z-index: 1010;
  background-color: #fefefe;
  transform-origin: center top;
  transition: transform 0.2s, opacity 0.2s;
  opacity: 0;
  transform: scaleY(0);
}
.ss-content.ss-open {
  display: block;
  opacity: 1;
  transform: scaleY(1);
}
.ss-content .ss-search {
  display: flex;
  flex-direction: row;
  padding: 8px 8px 6px 8px;
}
.ss-content .ss-search.ss-hide {
  height: 0px;
  opacity: 0;
  padding: 0px 0px 0px 0px;
  margin: 0px 0px 0px 0px;
}
.ss-content .ss-search.ss-hide input {
  height: 0px;
  opacity: 0;
  padding: 0px 0px 0px 0px;
  margin: 0px 0px 0px 0px;
}
.ss-content .ss-search input {
  display: inline-flex;
  font-size: inherit;
  line-height: inherit;
  flex: 1 1 auto;
  width: 100%;
  min-width: 0px;
  height: 30px;
  padding: 6px 8px;
  margin: 0;
  border: 1px solid #dcdee2;
  border-radius: 50;
  background-color: #fefefe;
  outline: 0;
  text-align: left;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -webkit-appearance: textfield;
}
.ss-content .ss-search input:-ms-input-placeholder {
  color: #8a8a8a;
  vertical-align: middle;
}
.ss-content .ss-search input::placeholder {
  color: #8a8a8a;
  vertical-align: middle;
}
.ss-content .ss-search input:focus {
  box-shadow: 0 0 5px #1779ba;
}
.ss-content .ss-search .ss-addable {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  font-size: 22px;
  font-weight: bold;
  flex: 0 0 30px;
  height: 30px;
  margin: 0 0 0 8px;
  border: 1px solid #dcdee2;
  border-radius: 50;
  box-sizing: border-box;
}
.ss-content .ss-addable {
  padding-top: 0px;
}
.ss-content .ss-list {
  max-height: 200px;
  overflow-x: hidden;
  overflow-y: auto;
  text-align: left;
}
.ss-content .ss-list .ss-optgroup .ss-optgroup-label {
  padding: 6px 10px 6px 10px;
  font-weight: bold;
}
.ss-content .ss-list .ss-optgroup .ss-option {
  padding: 6px 6px 6px 25px;
}
.ss-content .ss-list .ss-optgroup-label-selectable {
  cursor: pointer;
}
.ss-content .ss-list .ss-optgroup-label-selectable:hover {
  color: #fefefe;
  background-color: #1779ba;
}
.ss-content .ss-list .ss-option {
  padding: 6px 10px 6px 10px;
  cursor: pointer;
  -webkit-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
.ss-content .ss-list .ss-option * {
  display: inline-block;
}
.ss-content .ss-list .ss-option:hover, .ss-content .ss-list .ss-option.ss-highlighted {
  color: #fefefe;
  background-color: #1779ba;
}
.ss-content .ss-list .ss-option.ss-disabled {
  cursor: not-allowed;
  color: #dedede;
  background-color: #fefefe;
}
.ss-content .ss-list .ss-option:not(.ss-disabled).ss-option-selected {
  color: #666666;
  background-color: rgba(23, 121, 186, 0.1);
}
.ss-content .ss-list .ss-option.ss-hide {
  display: none;
}
.ss-content .ss-list .ss-option .ss-search-highlight {
  background-color: #fffb8c;
}

/**
 * Swiper 8.4.7
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * https://swiperjs.com
 *
 * Copyright 2014-2023 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: January 30, 2023
 */
@font-face {
  font-family: "swiper-icons";
  src: url("data:application/font-woff;charset=utf-8;base64, d09GRgABAAAAAAZgABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAGRAAAABoAAAAci6qHkUdERUYAAAWgAAAAIwAAACQAYABXR1BPUwAABhQAAAAuAAAANuAY7+xHU1VCAAAFxAAAAFAAAABm2fPczU9TLzIAAAHcAAAASgAAAGBP9V5RY21hcAAAAkQAAACIAAABYt6F0cBjdnQgAAACzAAAAAQAAAAEABEBRGdhc3AAAAWYAAAACAAAAAj//wADZ2x5ZgAAAywAAADMAAAD2MHtryVoZWFkAAABbAAAADAAAAA2E2+eoWhoZWEAAAGcAAAAHwAAACQC9gDzaG10eAAAAigAAAAZAAAArgJkABFsb2NhAAAC0AAAAFoAAABaFQAUGG1heHAAAAG8AAAAHwAAACAAcABAbmFtZQAAA/gAAAE5AAACXvFdBwlwb3N0AAAFNAAAAGIAAACE5s74hXjaY2BkYGAAYpf5Hu/j+W2+MnAzMYDAzaX6QjD6/4//Bxj5GA8AuRwMYGkAPywL13jaY2BkYGA88P8Agx4j+/8fQDYfA1AEBWgDAIB2BOoAeNpjYGRgYNBh4GdgYgABEMnIABJzYNADCQAACWgAsQB42mNgYfzCOIGBlYGB0YcxjYGBwR1Kf2WQZGhhYGBiYGVmgAFGBiQQkOaawtDAoMBQxXjg/wEGPcYDDA4wNUA2CCgwsAAAO4EL6gAAeNpj2M0gyAACqxgGNWBkZ2D4/wMA+xkDdgAAAHjaY2BgYGaAYBkGRgYQiAHyGMF8FgYHIM3DwMHABGQrMOgyWDLEM1T9/w8UBfEMgLzE////P/5//f/V/xv+r4eaAAeMbAxwIUYmIMHEgKYAYjUcsDAwsLKxc3BycfPw8jEQA/gZBASFhEVExcQlJKWkZWTl5BUUlZRVVNXUNTQZBgMAAMR+E+gAEQFEAAAAKgAqACoANAA+AEgAUgBcAGYAcAB6AIQAjgCYAKIArAC2AMAAygDUAN4A6ADyAPwBBgEQARoBJAEuATgBQgFMAVYBYAFqAXQBfgGIAZIBnAGmAbIBzgHsAAB42u2NMQ6CUAyGW568x9AneYYgm4MJbhKFaExIOAVX8ApewSt4Bic4AfeAid3VOBixDxfPYEza5O+Xfi04YADggiUIULCuEJK8VhO4bSvpdnktHI5QCYtdi2sl8ZnXaHlqUrNKzdKcT8cjlq+rwZSvIVczNiezsfnP/uznmfPFBNODM2K7MTQ45YEAZqGP81AmGGcF3iPqOop0r1SPTaTbVkfUe4HXj97wYE+yNwWYxwWu4v1ugWHgo3S1XdZEVqWM7ET0cfnLGxWfkgR42o2PvWrDMBSFj/IHLaF0zKjRgdiVMwScNRAoWUoH78Y2icB/yIY09An6AH2Bdu/UB+yxopYshQiEvnvu0dURgDt8QeC8PDw7Fpji3fEA4z/PEJ6YOB5hKh4dj3EvXhxPqH/SKUY3rJ7srZ4FZnh1PMAtPhwP6fl2PMJMPDgeQ4rY8YT6Gzao0eAEA409DuggmTnFnOcSCiEiLMgxCiTI6Cq5DZUd3Qmp10vO0LaLTd2cjN4fOumlc7lUYbSQcZFkutRG7g6JKZKy0RmdLY680CDnEJ+UMkpFFe1RN7nxdVpXrC4aTtnaurOnYercZg2YVmLN/d/gczfEimrE/fs/bOuq29Zmn8tloORaXgZgGa78yO9/cnXm2BpaGvq25Dv9S4E9+5SIc9PqupJKhYFSSl47+Qcr1mYNAAAAeNptw0cKwkAAAMDZJA8Q7OUJvkLsPfZ6zFVERPy8qHh2YER+3i/BP83vIBLLySsoKimrqKqpa2hp6+jq6RsYGhmbmJqZSy0sraxtbO3sHRydnEMU4uR6yx7JJXveP7WrDycAAAAAAAH//wACeNpjYGRgYOABYhkgZgJCZgZNBkYGLQZtIJsFLMYAAAw3ALgAeNolizEKgDAQBCchRbC2sFER0YD6qVQiBCv/H9ezGI6Z5XBAw8CBK/m5iQQVauVbXLnOrMZv2oLdKFa8Pjuru2hJzGabmOSLzNMzvutpB3N42mNgZGBg4GKQYzBhYMxJLMlj4GBgAYow/P/PAJJhLM6sSoWKfWCAAwDAjgbRAAB42mNgYGBkAIIbCZo5IPrmUn0hGA0AO8EFTQAA") format("woff");
  font-weight: 400;
  font-style: normal;
}
:root {
  --swiper-theme-color: #007aff;
}

.swiper {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  /* Fix of Webkit flickering */
  z-index: 1;
}

.swiper-vertical &gt; .swiper-wrapper {
  flex-direction: column;
}

.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: flex;
  transition-property: transform;
  box-sizing: content-box;
}

.swiper-android .swiper-slide,
.swiper-wrapper {
  transform: translate3d(0px, 0, 0);
}

.swiper-pointer-events {
  touch-action: pan-y;
}
.swiper-pointer-events.swiper-vertical {
  touch-action: pan-x;
}

.swiper-slide {
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  transition-property: transform;
}

.swiper-slide-invisible-blank {
  visibility: hidden;
}

/* Auto Height */
.swiper-autoheight,
.swiper-autoheight .swiper-slide {
  height: auto;
}
.swiper-autoheight .swiper-wrapper {
  align-items: flex-start;
  transition-property: transform, height;
}

.swiper-backface-hidden .swiper-slide {
  transform: translateZ(0);
  backface-visibility: hidden;
}

/* 3D Effects */
.swiper-3d, .swiper-3d.swiper-css-mode .swiper-wrapper {
  perspective: 1200px;
}
.swiper-3d .swiper-wrapper,
.swiper-3d .swiper-slide,
.swiper-3d .swiper-slide-shadow,
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right,
.swiper-3d .swiper-slide-shadow-top,
.swiper-3d .swiper-slide-shadow-bottom,
.swiper-3d .swiper-cube-shadow {
  transform-style: preserve-3d;
}
.swiper-3d .swiper-slide-shadow,
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right,
.swiper-3d .swiper-slide-shadow-top,
.swiper-3d .swiper-slide-shadow-bottom {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10;
}
.swiper-3d .swiper-slide-shadow {
  background: rgba(0, 0, 0, 0.15);
}
.swiper-3d .swiper-slide-shadow-left {
  background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-3d .swiper-slide-shadow-right {
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-3d .swiper-slide-shadow-top {
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-3d .swiper-slide-shadow-bottom {
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

/* CSS Mode */
.swiper-css-mode &gt; .swiper-wrapper {
  overflow: auto;
  scrollbar-width: none; /* For Firefox */
  -ms-overflow-style: none; /* For Internet Explorer and Edge */
}
.swiper-css-mode &gt; .swiper-wrapper::-webkit-scrollbar {
  display: none;
}
.swiper-css-mode &gt; .swiper-wrapper &gt; .swiper-slide {
  scroll-snap-align: start start;
}

.swiper-horizontal.swiper-css-mode &gt; .swiper-wrapper {
  -ms-scroll-snap-type: x mandatory;
      scroll-snap-type: x mandatory;
}

.swiper-vertical.swiper-css-mode &gt; .swiper-wrapper {
  -ms-scroll-snap-type: y mandatory;
      scroll-snap-type: y mandatory;
}

.swiper-centered &gt; .swiper-wrapper::before {
  content: "";
  flex-shrink: 0;
  order: 9999;
}
.swiper-centered.swiper-horizontal &gt; .swiper-wrapper &gt; .swiper-slide:first-child {
  margin-inline-start: var(--swiper-centered-offset-before);
}
.swiper-centered.swiper-horizontal &gt; .swiper-wrapper::before {
  height: 100%;
  width: var(--swiper-centered-offset-after);
}
.swiper-centered.swiper-vertical &gt; .swiper-wrapper &gt; .swiper-slide:first-child {
  margin-block-start: var(--swiper-centered-offset-before);
}
.swiper-centered.swiper-vertical &gt; .swiper-wrapper::before {
  width: 100%;
  height: var(--swiper-centered-offset-after);
}
.swiper-centered &gt; .swiper-wrapper &gt; .swiper-slide {
  scroll-snap-align: center center;
  scroll-snap-stop: always;
}

.grid-container {
  max-width: 75rem;
  margin-left: auto;
  margin-right: auto;
  padding-right: 0.625rem;
  padding-left: 0.625rem;
}
@media print, screen and (min-width: 48em) {
  .grid-container {
    padding-right: 0.625rem;
    padding-left: 0.625rem;
  }
}
.grid-container.fluid {
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-right: 0.625rem;
  padding-left: 0.625rem;
}
@media print, screen and (min-width: 48em) {
  .grid-container.fluid {
    padding-right: 0.625rem;
    padding-left: 0.625rem;
  }
}
.grid-container.full {
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-right: 0;
  padding-left: 0;
}

.grid-x {
  display: flex;
  flex-flow: row wrap;
}

.cell {
  flex: 0 0 auto;
  min-height: 0;
  min-width: 0;
  width: 100%;
}
.cell.auto {
  flex: 1 1 0;
}
.cell.shrink {
  flex: 0 0 auto;
}

.grid-x &gt; .auto {
  width: auto;
}
.grid-x &gt; .shrink {
  width: auto;
}

.grid-x &gt; .small-shrink, .grid-x &gt; .small-full, .grid-x &gt; .small-1, .grid-x &gt; .small-2, .grid-x &gt; .small-3, .grid-x &gt; .small-4, .grid-x &gt; .small-5, .grid-x &gt; .small-6, .grid-x &gt; .small-7, .grid-x &gt; .small-8, .grid-x &gt; .small-9, .grid-x &gt; .small-10, .grid-x &gt; .small-11, .grid-x &gt; .small-12 {
  flex-basis: auto;
}

@media print, screen and (min-width: 48em) {
  .grid-x &gt; .medium-shrink, .grid-x &gt; .medium-full, .grid-x &gt; .medium-1, .grid-x &gt; .medium-2, .grid-x &gt; .medium-3, .grid-x &gt; .medium-4, .grid-x &gt; .medium-5, .grid-x &gt; .medium-6, .grid-x &gt; .medium-7, .grid-x &gt; .medium-8, .grid-x &gt; .medium-9, .grid-x &gt; .medium-10, .grid-x &gt; .medium-11, .grid-x &gt; .medium-12 {
    flex-basis: auto;
  }
}
@media print, screen and (min-width: 64em) {
  .grid-x &gt; .large-shrink, .grid-x &gt; .large-full, .grid-x &gt; .large-1, .grid-x &gt; .large-2, .grid-x &gt; .large-3, .grid-x &gt; .large-4, .grid-x &gt; .large-5, .grid-x &gt; .large-6, .grid-x &gt; .large-7, .grid-x &gt; .large-8, .grid-x &gt; .large-9, .grid-x &gt; .large-10, .grid-x &gt; .large-11, .grid-x &gt; .large-12 {
    flex-basis: auto;
  }
}
.grid-x &gt; .small-12, .grid-x &gt; .small-11, .grid-x &gt; .small-10, .grid-x &gt; .small-9, .grid-x &gt; .small-8, .grid-x &gt; .small-7, .grid-x &gt; .small-6, .grid-x &gt; .small-5, .grid-x &gt; .small-4, .grid-x &gt; .small-3, .grid-x &gt; .small-2, .grid-x &gt; .small-1 {
  flex: 0 0 auto;
}

.grid-x &gt; .small-1 {
  width: 8.3333333333%;
}

.grid-x &gt; .small-2 {
  width: 16.6666666667%;
}

.grid-x &gt; .small-3 {
  width: 25%;
}

.grid-x &gt; .small-4 {
  width: 33.3333333333%;
}

.grid-x &gt; .small-5 {
  width: 41.6666666667%;
}

.grid-x &gt; .small-6 {
  width: 50%;
}

.grid-x &gt; .small-7 {
  width: 58.3333333333%;
}

.grid-x &gt; .small-8 {
  width: 66.6666666667%;
}

.grid-x &gt; .small-9 {
  width: 75%;
}

.grid-x &gt; .small-10 {
  width: 83.3333333333%;
}

.grid-x &gt; .small-11 {
  width: 91.6666666667%;
}

.grid-x &gt; .small-12 {
  width: 100%;
}

@media print, screen and (min-width: 48em) {
  .grid-x &gt; .medium-auto {
    flex: 1 1 0;
    width: auto;
  }
  .grid-x &gt; .medium-12, .grid-x &gt; .medium-11, .grid-x &gt; .medium-10, .grid-x &gt; .medium-9, .grid-x &gt; .medium-8, .grid-x &gt; .medium-7, .grid-x &gt; .medium-6, .grid-x &gt; .medium-5, .grid-x &gt; .medium-4, .grid-x &gt; .medium-3, .grid-x &gt; .medium-2, .grid-x &gt; .medium-1, .grid-x &gt; .medium-shrink {
    flex: 0 0 auto;
  }
  .grid-x &gt; .medium-shrink {
    width: auto;
  }
  .grid-x &gt; .medium-1 {
    width: 8.3333333333%;
  }
  .grid-x &gt; .medium-2 {
    width: 16.6666666667%;
  }
  .grid-x &gt; .medium-3 {
    width: 25%;
  }
  .grid-x &gt; .medium-4 {
    width: 33.3333333333%;
  }
  .grid-x &gt; .medium-5 {
    width: 41.6666666667%;
  }
  .grid-x &gt; .medium-6 {
    width: 50%;
  }
  .grid-x &gt; .medium-7 {
    width: 58.3333333333%;
  }
  .grid-x &gt; .medium-8 {
    width: 66.6666666667%;
  }
  .grid-x &gt; .medium-9 {
    width: 75%;
  }
  .grid-x &gt; .medium-10 {
    width: 83.3333333333%;
  }
  .grid-x &gt; .medium-11 {
    width: 91.6666666667%;
  }
  .grid-x &gt; .medium-12 {
    width: 100%;
  }
}
@media print, screen and (min-width: 64em) {
  .grid-x &gt; .large-auto {
    flex: 1 1 0;
    width: auto;
  }
  .grid-x &gt; .large-12, .grid-x &gt; .large-11, .grid-x &gt; .large-10, .grid-x &gt; .large-9, .grid-x &gt; .large-8, .grid-x &gt; .large-7, .grid-x &gt; .large-6, .grid-x &gt; .large-5, .grid-x &gt; .large-4, .grid-x &gt; .large-3, .grid-x &gt; .large-2, .grid-x &gt; .large-1, .grid-x &gt; .large-shrink {
    flex: 0 0 auto;
  }
  .grid-x &gt; .large-shrink {
    width: auto;
  }
  .grid-x &gt; .large-1 {
    width: 8.3333333333%;
  }
  .grid-x &gt; .large-2 {
    width: 16.6666666667%;
  }
  .grid-x &gt; .large-3 {
    width: 25%;
  }
  .grid-x &gt; .large-4 {
    width: 33.3333333333%;
  }
  .grid-x &gt; .large-5 {
    width: 41.6666666667%;
  }
  .grid-x &gt; .large-6 {
    width: 50%;
  }
  .grid-x &gt; .large-7 {
    width: 58.3333333333%;
  }
  .grid-x &gt; .large-8 {
    width: 66.6666666667%;
  }
  .grid-x &gt; .large-9 {
    width: 75%;
  }
  .grid-x &gt; .large-10 {
    width: 83.3333333333%;
  }
  .grid-x &gt; .large-11 {
    width: 91.6666666667%;
  }
  .grid-x &gt; .large-12 {
    width: 100%;
  }
}
.grid-margin-x:not(.grid-x) &gt; .cell {
  width: auto;
}

.grid-margin-y:not(.grid-y) &gt; .cell {
  height: auto;
}

.grid-margin-x {
  margin-left: -0.625rem;
  margin-right: -0.625rem;
}
@media print, screen and (min-width: 48em) {
  .grid-margin-x {
    margin-left: -0.625rem;
    margin-right: -0.625rem;
  }
}
.grid-margin-x &gt; .cell {
  width: calc(100% - 1.25rem);
  margin-left: 0.625rem;
  margin-right: 0.625rem;
}
@media print, screen and (min-width: 48em) {
  .grid-margin-x &gt; .cell {
    width: calc(100% - 1.25rem);
    margin-left: 0.625rem;
    margin-right: 0.625rem;
  }
}
.grid-margin-x &gt; .auto {
  width: auto;
}
.grid-margin-x &gt; .shrink {
  width: auto;
}
.grid-margin-x &gt; .small-1 {
  width: calc(8.3333333333% - 1.25rem);
}
.grid-margin-x &gt; .small-2 {
  width: calc(16.6666666667% - 1.25rem);
}
.grid-margin-x &gt; .small-3 {
  width: calc(25% - 1.25rem);
}
.grid-margin-x &gt; .small-4 {
  width: calc(33.3333333333% - 1.25rem);
}
.grid-margin-x &gt; .small-5 {
  width: calc(41.6666666667% - 1.25rem);
}
.grid-margin-x &gt; .small-6 {
  width: calc(50% - 1.25rem);
}
.grid-margin-x &gt; .small-7 {
  width: calc(58.3333333333% - 1.25rem);
}
.grid-margin-x &gt; .small-8 {
  width: calc(66.6666666667% - 1.25rem);
}
.grid-margin-x &gt; .small-9 {
  width: calc(75% - 1.25rem);
}
.grid-margin-x &gt; .small-10 {
  width: calc(83.3333333333% - 1.25rem);
}
.grid-margin-x &gt; .small-11 {
  width: calc(91.6666666667% - 1.25rem);
}
.grid-margin-x &gt; .small-12 {
  width: calc(100% - 1.25rem);
}
@media print, screen and (min-width: 48em) {
  .grid-margin-x &gt; .auto {
    width: auto;
  }
  .grid-margin-x &gt; .shrink {
    width: auto;
  }
  .grid-margin-x &gt; .small-1 {
    width: calc(8.3333333333% - 1.25rem);
  }
  .grid-margin-x &gt; .small-2 {
    width: calc(16.6666666667% - 1.25rem);
  }
  .grid-margin-x &gt; .small-3 {
    width: calc(25% - 1.25rem);
  }
  .grid-margin-x &gt; .small-4 {
    width: calc(33.3333333333% - 1.25rem);
  }
  .grid-margin-x &gt; .small-5 {
    width: calc(41.6666666667% - 1.25rem);
  }
  .grid-margin-x &gt; .small-6 {
    width: calc(50% - 1.25rem);
  }
  .grid-margin-x &gt; .small-7 {
    width: calc(58.3333333333% - 1.25rem);
  }
  .grid-margin-x &gt; .small-8 {
    width: calc(66.6666666667% - 1.25rem);
  }
  .grid-margin-x &gt; .small-9 {
    width: calc(75% - 1.25rem);
  }
  .grid-margin-x &gt; .small-10 {
    width: calc(83.3333333333% - 1.25rem);
  }
  .grid-margin-x &gt; .small-11 {
    width: calc(91.6666666667% - 1.25rem);
  }
  .grid-margin-x &gt; .small-12 {
    width: calc(100% - 1.25rem);
  }
  .grid-margin-x &gt; .sphone-auto {
    width: auto;
  }
  .grid-margin-x &gt; .sphone-shrink {
    width: auto;
  }
  .grid-margin-x &gt; .sphone-1 {
    width: calc(8.3333333333% - 1.25rem);
  }
  .grid-margin-x &gt; .sphone-2 {
    width: calc(16.6666666667% - 1.25rem);
  }
  .grid-margin-x &gt; .sphone-3 {
    width: calc(25% - 1.25rem);
  }
  .grid-margin-x &gt; .sphone-4 {
    width: calc(33.3333333333% - 1.25rem);
  }
  .grid-margin-x &gt; .sphone-5 {
    width: calc(41.6666666667% - 1.25rem);
  }
  .grid-margin-x &gt; .sphone-6 {
    width: calc(50% - 1.25rem);
  }
  .grid-margin-x &gt; .sphone-7 {
    width: calc(58.3333333333% - 1.25rem);
  }
  .grid-margin-x &gt; .sphone-8 {
    width: calc(66.6666666667% - 1.25rem);
  }
  .grid-margin-x &gt; .sphone-9 {
    width: calc(75% - 1.25rem);
  }
  .grid-margin-x &gt; .sphone-10 {
    width: calc(83.3333333333% - 1.25rem);
  }
  .grid-margin-x &gt; .sphone-11 {
    width: calc(91.6666666667% - 1.25rem);
  }
  .grid-margin-x &gt; .sphone-12 {
    width: calc(100% - 1.25rem);
  }
  .grid-margin-x &gt; .phone-auto {
    width: auto;
  }
  .grid-margin-x &gt; .phone-shrink {
    width: auto;
  }
  .grid-margin-x &gt; .phone-1 {
    width: calc(8.3333333333% - 1.25rem);
  }
  .grid-margin-x &gt; .phone-2 {
    width: calc(16.6666666667% - 1.25rem);
  }
  .grid-margin-x &gt; .phone-3 {
    width: calc(25% - 1.25rem);
  }
  .grid-margin-x &gt; .phone-4 {
    width: calc(33.3333333333% - 1.25rem);
  }
  .grid-margin-x &gt; .phone-5 {
    width: calc(41.6666666667% - 1.25rem);
  }
  .grid-margin-x &gt; .phone-6 {
    width: calc(50% - 1.25rem);
  }
  .grid-margin-x &gt; .phone-7 {
    width: calc(58.3333333333% - 1.25rem);
  }
  .grid-margin-x &gt; .phone-8 {
    width: calc(66.6666666667% - 1.25rem);
  }
  .grid-margin-x &gt; .phone-9 {
    width: calc(75% - 1.25rem);
  }
  .grid-margin-x &gt; .phone-10 {
    width: calc(83.3333333333% - 1.25rem);
  }
  .grid-margin-x &gt; .phone-11 {
    width: calc(91.6666666667% - 1.25rem);
  }
  .grid-margin-x &gt; .phone-12 {
    width: calc(100% - 1.25rem);
  }
  .grid-margin-x &gt; .mdphone-auto {
    width: auto;
  }
  .grid-margin-x &gt; .mdphone-shrink {
    width: auto;
  }
  .grid-margin-x &gt; .mdphone-1 {
    width: calc(8.3333333333% - 1.25rem);
  }
  .grid-margin-x &gt; .mdphone-2 {
    width: calc(16.6666666667% - 1.25rem);
  }
  .grid-margin-x &gt; .mdphone-3 {
    width: calc(25% - 1.25rem);
  }
  .grid-margin-x &gt; .mdphone-4 {
    width: calc(33.3333333333% - 1.25rem);
  }
  .grid-margin-x &gt; .mdphone-5 {
    width: calc(41.6666666667% - 1.25rem);
  }
  .grid-margin-x &gt; .mdphone-6 {
    width: calc(50% - 1.25rem);
  }
  .grid-margin-x &gt; .mdphone-7 {
    width: calc(58.3333333333% - 1.25rem);
  }
  .grid-margin-x &gt; .mdphone-8 {
    width: calc(66.6666666667% - 1.25rem);
  }
  .grid-margin-x &gt; .mdphone-9 {
    width: calc(75% - 1.25rem);
  }
  .grid-margin-x &gt; .mdphone-10 {
    width: calc(83.3333333333% - 1.25rem);
  }
  .grid-margin-x &gt; .mdphone-11 {
    width: calc(91.6666666667% - 1.25rem);
  }
  .grid-margin-x &gt; .mdphone-12 {
    width: calc(100% - 1.25rem);
  }
  .grid-margin-x &gt; .stablet-auto {
    width: auto;
  }
  .grid-margin-x &gt; .stablet-shrink {
    width: auto;
  }
  .grid-margin-x &gt; .stablet-1 {
    width: calc(8.3333333333% - 1.25rem);
  }
  .grid-margin-x &gt; .stablet-2 {
    width: calc(16.6666666667% - 1.25rem);
  }
  .grid-margin-x &gt; .stablet-3 {
    width: calc(25% - 1.25rem);
  }
  .grid-margin-x &gt; .stablet-4 {
    width: calc(33.3333333333% - 1.25rem);
  }
  .grid-margin-x &gt; .stablet-5 {
    width: calc(41.6666666667% - 1.25rem);
  }
  .grid-margin-x &gt; .stablet-6 {
    width: calc(50% - 1.25rem);
  }
  .grid-margin-x &gt; .stablet-7 {
    width: calc(58.3333333333% - 1.25rem);
  }
  .grid-margin-x &gt; .stablet-8 {
    width: calc(66.6666666667% - 1.25rem);
  }
  .grid-margin-x &gt; .stablet-9 {
    width: calc(75% - 1.25rem);
  }
  .grid-margin-x &gt; .stablet-10 {
    width: calc(83.3333333333% - 1.25rem);
  }
  .grid-margin-x &gt; .stablet-11 {
    width: calc(91.6666666667% - 1.25rem);
  }
  .grid-margin-x &gt; .stablet-12 {
    width: calc(100% - 1.25rem);
  }
  .grid-margin-x &gt; .lgsmall-auto {
    width: auto;
  }
  .grid-margin-x &gt; .lgsmall-shrink {
    width: auto;
  }
  .grid-margin-x &gt; .lgsmall-1 {
    width: calc(8.3333333333% - 1.25rem);
  }
  .grid-margin-x &gt; .lgsmall-2 {
    width: calc(16.6666666667% - 1.25rem);
  }
  .grid-margin-x &gt; .lgsmall-3 {
    width: calc(25% - 1.25rem);
  }
  .grid-margin-x &gt; .lgsmall-4 {
    width: calc(33.3333333333% - 1.25rem);
  }
  .grid-margin-x &gt; .lgsmall-5 {
    width: calc(41.6666666667% - 1.25rem);
  }
  .grid-margin-x &gt; .lgsmall-6 {
    width: calc(50% - 1.25rem);
  }
  .grid-margin-x &gt; .lgsmall-7 {
    width: calc(58.3333333333% - 1.25rem);
  }
  .grid-margin-x &gt; .lgsmall-8 {
    width: calc(66.6666666667% - 1.25rem);
  }
  .grid-margin-x &gt; .lgsmall-9 {
    width: calc(75% - 1.25rem);
  }
  .grid-margin-x &gt; .lgsmall-10 {
    width: calc(83.3333333333% - 1.25rem);
  }
  .grid-margin-x &gt; .lgsmall-11 {
    width: calc(91.6666666667% - 1.25rem);
  }
  .grid-margin-x &gt; .lgsmall-12 {
    width: calc(100% - 1.25rem);
  }
  .grid-margin-x &gt; .medium-auto {
    width: auto;
  }
  .grid-margin-x &gt; .medium-shrink {
    width: auto;
  }
  .grid-margin-x &gt; .medium-1 {
    width: calc(8.3333333333% - 1.25rem);
  }
  .grid-margin-x &gt; .medium-2 {
    width: calc(16.6666666667% - 1.25rem);
  }
  .grid-margin-x &gt; .medium-3 {
    width: calc(25% - 1.25rem);
  }
  .grid-margin-x &gt; .medium-4 {
    width: calc(33.3333333333% - 1.25rem);
  }
  .grid-margin-x &gt; .medium-5 {
    width: calc(41.6666666667% - 1.25rem);
  }
  .grid-margin-x &gt; .medium-6 {
    width: calc(50% - 1.25rem);
  }
  .grid-margin-x &gt; .medium-7 {
    width: calc(58.3333333333% - 1.25rem);
  }
  .grid-margin-x &gt; .medium-8 {
    width: calc(66.6666666667% - 1.25rem);
  }
  .grid-margin-x &gt; .medium-9 {
    width: calc(75% - 1.25rem);
  }
  .grid-margin-x &gt; .medium-10 {
    width: calc(83.3333333333% - 1.25rem);
  }
  .grid-margin-x &gt; .medium-11 {
    width: calc(91.6666666667% - 1.25rem);
  }
  .grid-margin-x &gt; .medium-12 {
    width: calc(100% - 1.25rem);
  }
}
@media print, screen and (min-width: 64em) {
  .grid-margin-x &gt; .large-auto {
    width: auto;
  }
  .grid-margin-x &gt; .large-shrink {
    width: auto;
  }
  .grid-margin-x &gt; .large-1 {
    width: calc(8.3333333333% - 1.25rem);
  }
  .grid-margin-x &gt; .large-2 {
    width: calc(16.6666666667% - 1.25rem);
  }
  .grid-margin-x &gt; .large-3 {
    width: calc(25% - 1.25rem);
  }
  .grid-margin-x &gt; .large-4 {
    width: calc(33.3333333333% - 1.25rem);
  }
  .grid-margin-x &gt; .large-5 {
    width: calc(41.6666666667% - 1.25rem);
  }
  .grid-margin-x &gt; .large-6 {
    width: calc(50% - 1.25rem);
  }
  .grid-margin-x &gt; .large-7 {
    width: calc(58.3333333333% - 1.25rem);
  }
  .grid-margin-x &gt; .large-8 {
    width: calc(66.6666666667% - 1.25rem);
  }
  .grid-margin-x &gt; .large-9 {
    width: calc(75% - 1.25rem);
  }
  .grid-margin-x &gt; .large-10 {
    width: calc(83.3333333333% - 1.25rem);
  }
  .grid-margin-x &gt; .large-11 {
    width: calc(91.6666666667% - 1.25rem);
  }
  .grid-margin-x &gt; .large-12 {
    width: calc(100% - 1.25rem);
  }
}

.grid-padding-x .grid-padding-x {
  margin-right: -0.625rem;
  margin-left: -0.625rem;
}
@media print, screen and (min-width: 48em) {
  .grid-padding-x .grid-padding-x {
    margin-right: -0.625rem;
    margin-left: -0.625rem;
  }
}
.grid-container:not(.full) &gt; .grid-padding-x {
  margin-right: -0.625rem;
  margin-left: -0.625rem;
}
@media print, screen and (min-width: 48em) {
  .grid-container:not(.full) &gt; .grid-padding-x {
    margin-right: -0.625rem;
    margin-left: -0.625rem;
  }
}
.grid-padding-x &gt; .cell {
  padding-right: 0.625rem;
  padding-left: 0.625rem;
}
@media print, screen and (min-width: 48em) {
  .grid-padding-x &gt; .cell {
    padding-right: 0.625rem;
    padding-left: 0.625rem;
  }
}

.small-up-1 &gt; .cell {
  width: 100%;
}

.small-up-2 &gt; .cell {
  width: 50%;
}

.small-up-3 &gt; .cell {
  width: 33.3333333333%;
}

.small-up-4 &gt; .cell {
  width: 25%;
}

.small-up-5 &gt; .cell {
  width: 20%;
}

.small-up-6 &gt; .cell {
  width: 16.6666666667%;
}

.small-up-7 &gt; .cell {
  width: 14.2857142857%;
}

.small-up-8 &gt; .cell {
  width: 12.5%;
}

@media print, screen and (min-width: 48em) {
  .medium-up-1 &gt; .cell {
    width: 100%;
  }
  .medium-up-2 &gt; .cell {
    width: 50%;
  }
  .medium-up-3 &gt; .cell {
    width: 33.3333333333%;
  }
  .medium-up-4 &gt; .cell {
    width: 25%;
  }
  .medium-up-5 &gt; .cell {
    width: 20%;
  }
  .medium-up-6 &gt; .cell {
    width: 16.6666666667%;
  }
  .medium-up-7 &gt; .cell {
    width: 14.2857142857%;
  }
  .medium-up-8 &gt; .cell {
    width: 12.5%;
  }
}
@media print, screen and (min-width: 64em) {
  .large-up-1 &gt; .cell {
    width: 100%;
  }
  .large-up-2 &gt; .cell {
    width: 50%;
  }
  .large-up-3 &gt; .cell {
    width: 33.3333333333%;
  }
  .large-up-4 &gt; .cell {
    width: 25%;
  }
  .large-up-5 &gt; .cell {
    width: 20%;
  }
  .large-up-6 &gt; .cell {
    width: 16.6666666667%;
  }
  .large-up-7 &gt; .cell {
    width: 14.2857142857%;
  }
  .large-up-8 &gt; .cell {
    width: 12.5%;
  }
}
.grid-margin-x.small-up-1 &gt; .cell {
  width: calc(100% - 1.25rem);
}

.grid-margin-x.small-up-2 &gt; .cell {
  width: calc(50% - 1.25rem);
}

.grid-margin-x.small-up-3 &gt; .cell {
  width: calc(33.3333333333% - 1.25rem);
}

.grid-margin-x.small-up-4 &gt; .cell {
  width: calc(25% - 1.25rem);
}

.grid-margin-x.small-up-5 &gt; .cell {
  width: calc(20% - 1.25rem);
}

.grid-margin-x.small-up-6 &gt; .cell {
  width: calc(16.6666666667% - 1.25rem);
}

.grid-margin-x.small-up-7 &gt; .cell {
  width: calc(14.2857142857% - 1.25rem);
}

.grid-margin-x.small-up-8 &gt; .cell {
  width: calc(12.5% - 1.25rem);
}

@media print, screen and (min-width: 48em) {
  .grid-margin-x.small-up-1 &gt; .cell {
    width: calc(100% - 1.25rem);
  }
  .grid-margin-x.small-up-2 &gt; .cell {
    width: calc(50% - 1.25rem);
  }
  .grid-margin-x.small-up-3 &gt; .cell {
    width: calc(33.3333333333% - 1.25rem);
  }
  .grid-margin-x.small-up-4 &gt; .cell {
    width: calc(25% - 1.25rem);
  }
  .grid-margin-x.small-up-5 &gt; .cell {
    width: calc(20% - 1.25rem);
  }
  .grid-margin-x.small-up-6 &gt; .cell {
    width: calc(16.6666666667% - 1.25rem);
  }
  .grid-margin-x.small-up-7 &gt; .cell {
    width: calc(14.2857142857% - 1.25rem);
  }
  .grid-margin-x.small-up-8 &gt; .cell {
    width: calc(12.5% - 1.25rem);
  }
  .grid-margin-x.medium-up-1 &gt; .cell {
    width: calc(100% - 1.25rem);
  }
  .grid-margin-x.medium-up-2 &gt; .cell {
    width: calc(50% - 1.25rem);
  }
  .grid-margin-x.medium-up-3 &gt; .cell {
    width: calc(33.3333333333% - 1.25rem);
  }
  .grid-margin-x.medium-up-4 &gt; .cell {
    width: calc(25% - 1.25rem);
  }
  .grid-margin-x.medium-up-5 &gt; .cell {
    width: calc(20% - 1.25rem);
  }
  .grid-margin-x.medium-up-6 &gt; .cell {
    width: calc(16.6666666667% - 1.25rem);
  }
  .grid-margin-x.medium-up-7 &gt; .cell {
    width: calc(14.2857142857% - 1.25rem);
  }
  .grid-margin-x.medium-up-8 &gt; .cell {
    width: calc(12.5% - 1.25rem);
  }
}
@media print, screen and (min-width: 64em) {
  .grid-margin-x.large-up-1 &gt; .cell {
    width: calc(100% - 1.25rem);
  }
  .grid-margin-x.large-up-2 &gt; .cell {
    width: calc(50% - 1.25rem);
  }
  .grid-margin-x.large-up-3 &gt; .cell {
    width: calc(33.3333333333% - 1.25rem);
  }
  .grid-margin-x.large-up-4 &gt; .cell {
    width: calc(25% - 1.25rem);
  }
  .grid-margin-x.large-up-5 &gt; .cell {
    width: calc(20% - 1.25rem);
  }
  .grid-margin-x.large-up-6 &gt; .cell {
    width: calc(16.6666666667% - 1.25rem);
  }
  .grid-margin-x.large-up-7 &gt; .cell {
    width: calc(14.2857142857% - 1.25rem);
  }
  .grid-margin-x.large-up-8 &gt; .cell {
    width: calc(12.5% - 1.25rem);
  }
}
.small-margin-collapse {
  margin-right: 0;
  margin-left: 0;
}
.small-margin-collapse &gt; .cell {
  margin-right: 0;
  margin-left: 0;
}
.small-margin-collapse &gt; .small-1 {
  width: 8.3333333333%;
}
.small-margin-collapse &gt; .small-2 {
  width: 16.6666666667%;
}
.small-margin-collapse &gt; .small-3 {
  width: 25%;
}
.small-margin-collapse &gt; .small-4 {
  width: 33.3333333333%;
}
.small-margin-collapse &gt; .small-5 {
  width: 41.6666666667%;
}
.small-margin-collapse &gt; .small-6 {
  width: 50%;
}
.small-margin-collapse &gt; .small-7 {
  width: 58.3333333333%;
}
.small-margin-collapse &gt; .small-8 {
  width: 66.6666666667%;
}
.small-margin-collapse &gt; .small-9 {
  width: 75%;
}
.small-margin-collapse &gt; .small-10 {
  width: 83.3333333333%;
}
.small-margin-collapse &gt; .small-11 {
  width: 91.6666666667%;
}
.small-margin-collapse &gt; .small-12 {
  width: 100%;
}
@media print, screen and (min-width: 48em) {
  .small-margin-collapse &gt; .medium-1 {
    width: 8.3333333333%;
  }
  .small-margin-collapse &gt; .medium-2 {
    width: 16.6666666667%;
  }
  .small-margin-collapse &gt; .medium-3 {
    width: 25%;
  }
  .small-margin-collapse &gt; .medium-4 {
    width: 33.3333333333%;
  }
  .small-margin-collapse &gt; .medium-5 {
    width: 41.6666666667%;
  }
  .small-margin-collapse &gt; .medium-6 {
    width: 50%;
  }
  .small-margin-collapse &gt; .medium-7 {
    width: 58.3333333333%;
  }
  .small-margin-collapse &gt; .medium-8 {
    width: 66.6666666667%;
  }
  .small-margin-collapse &gt; .medium-9 {
    width: 75%;
  }
  .small-margin-collapse &gt; .medium-10 {
    width: 83.3333333333%;
  }
  .small-margin-collapse &gt; .medium-11 {
    width: 91.6666666667%;
  }
  .small-margin-collapse &gt; .medium-12 {
    width: 100%;
  }
}
@media print, screen and (min-width: 64em) {
  .small-margin-collapse &gt; .large-1 {
    width: 8.3333333333%;
  }
  .small-margin-collapse &gt; .large-2 {
    width: 16.6666666667%;
  }
  .small-margin-collapse &gt; .large-3 {
    width: 25%;
  }
  .small-margin-collapse &gt; .large-4 {
    width: 33.3333333333%;
  }
  .small-margin-collapse &gt; .large-5 {
    width: 41.6666666667%;
  }
  .small-margin-collapse &gt; .large-6 {
    width: 50%;
  }
  .small-margin-collapse &gt; .large-7 {
    width: 58.3333333333%;
  }
  .small-margin-collapse &gt; .large-8 {
    width: 66.6666666667%;
  }
  .small-margin-collapse &gt; .large-9 {
    width: 75%;
  }
  .small-margin-collapse &gt; .large-10 {
    width: 83.3333333333%;
  }
  .small-margin-collapse &gt; .large-11 {
    width: 91.6666666667%;
  }
  .small-margin-collapse &gt; .large-12 {
    width: 100%;
  }
}

.small-padding-collapse {
  margin-right: 0;
  margin-left: 0;
}
.small-padding-collapse &gt; .cell {
  padding-right: 0;
  padding-left: 0;
}

@media print, screen and (min-width: 48em) {
  .medium-margin-collapse {
    margin-right: 0;
    margin-left: 0;
  }
  .medium-margin-collapse &gt; .cell {
    margin-right: 0;
    margin-left: 0;
  }
}
@media print, screen and (min-width: 48em) {
  .medium-margin-collapse &gt; .small-1 {
    width: 8.3333333333%;
  }
  .medium-margin-collapse &gt; .small-2 {
    width: 16.6666666667%;
  }
  .medium-margin-collapse &gt; .small-3 {
    width: 25%;
  }
  .medium-margin-collapse &gt; .small-4 {
    width: 33.3333333333%;
  }
  .medium-margin-collapse &gt; .small-5 {
    width: 41.6666666667%;
  }
  .medium-margin-collapse &gt; .small-6 {
    width: 50%;
  }
  .medium-margin-collapse &gt; .small-7 {
    width: 58.3333333333%;
  }
  .medium-margin-collapse &gt; .small-8 {
    width: 66.6666666667%;
  }
  .medium-margin-collapse &gt; .small-9 {
    width: 75%;
  }
  .medium-margin-collapse &gt; .small-10 {
    width: 83.3333333333%;
  }
  .medium-margin-collapse &gt; .small-11 {
    width: 91.6666666667%;
  }
  .medium-margin-collapse &gt; .small-12 {
    width: 100%;
  }
}
@media print, screen and (min-width: 48em) {
  .medium-margin-collapse &gt; .medium-1 {
    width: 8.3333333333%;
  }
  .medium-margin-collapse &gt; .medium-2 {
    width: 16.6666666667%;
  }
  .medium-margin-collapse &gt; .medium-3 {
    width: 25%;
  }
  .medium-margin-collapse &gt; .medium-4 {
    width: 33.3333333333%;
  }
  .medium-margin-collapse &gt; .medium-5 {
    width: 41.6666666667%;
  }
  .medium-margin-collapse &gt; .medium-6 {
    width: 50%;
  }
  .medium-margin-collapse &gt; .medium-7 {
    width: 58.3333333333%;
  }
  .medium-margin-collapse &gt; .medium-8 {
    width: 66.6666666667%;
  }
  .medium-margin-collapse &gt; .medium-9 {
    width: 75%;
  }
  .medium-margin-collapse &gt; .medium-10 {
    width: 83.3333333333%;
  }
  .medium-margin-collapse &gt; .medium-11 {
    width: 91.6666666667%;
  }
  .medium-margin-collapse &gt; .medium-12 {
    width: 100%;
  }
}
@media print, screen and (min-width: 64em) {
  .medium-margin-collapse &gt; .large-1 {
    width: 8.3333333333%;
  }
  .medium-margin-collapse &gt; .large-2 {
    width: 16.6666666667%;
  }
  .medium-margin-collapse &gt; .large-3 {
    width: 25%;
  }
  .medium-margin-collapse &gt; .large-4 {
    width: 33.3333333333%;
  }
  .medium-margin-collapse &gt; .large-5 {
    width: 41.6666666667%;
  }
  .medium-margin-collapse &gt; .large-6 {
    width: 50%;
  }
  .medium-margin-collapse &gt; .large-7 {
    width: 58.3333333333%;
  }
  .medium-margin-collapse &gt; .large-8 {
    width: 66.6666666667%;
  }
  .medium-margin-collapse &gt; .large-9 {
    width: 75%;
  }
  .medium-margin-collapse &gt; .large-10 {
    width: 83.3333333333%;
  }
  .medium-margin-collapse &gt; .large-11 {
    width: 91.6666666667%;
  }
  .medium-margin-collapse &gt; .large-12 {
    width: 100%;
  }
}

@media print, screen and (min-width: 48em) {
  .medium-padding-collapse {
    margin-right: 0;
    margin-left: 0;
  }
  .medium-padding-collapse &gt; .cell {
    padding-right: 0;
    padding-left: 0;
  }
}

@media print, screen and (min-width: 64em) {
  .large-margin-collapse {
    margin-right: 0;
    margin-left: 0;
  }
  .large-margin-collapse &gt; .cell {
    margin-right: 0;
    margin-left: 0;
  }
}
@media print, screen and (min-width: 64em) {
  .large-margin-collapse &gt; .small-1 {
    width: 8.3333333333%;
  }
  .large-margin-collapse &gt; .small-2 {
    width: 16.6666666667%;
  }
  .large-margin-collapse &gt; .small-3 {
    width: 25%;
  }
  .large-margin-collapse &gt; .small-4 {
    width: 33.3333333333%;
  }
  .large-margin-collapse &gt; .small-5 {
    width: 41.6666666667%;
  }
  .large-margin-collapse &gt; .small-6 {
    width: 50%;
  }
  .large-margin-collapse &gt; .small-7 {
    width: 58.3333333333%;
  }
  .large-margin-collapse &gt; .small-8 {
    width: 66.6666666667%;
  }
  .large-margin-collapse &gt; .small-9 {
    width: 75%;
  }
  .large-margin-collapse &gt; .small-10 {
    width: 83.3333333333%;
  }
  .large-margin-collapse &gt; .small-11 {
    width: 91.6666666667%;
  }
  .large-margin-collapse &gt; .small-12 {
    width: 100%;
  }
}
@media print, screen and (min-width: 64em) {
  .large-margin-collapse &gt; .medium-1 {
    width: 8.3333333333%;
  }
  .large-margin-collapse &gt; .medium-2 {
    width: 16.6666666667%;
  }
  .large-margin-collapse &gt; .medium-3 {
    width: 25%;
  }
  .large-margin-collapse &gt; .medium-4 {
    width: 33.3333333333%;
  }
  .large-margin-collapse &gt; .medium-5 {
    width: 41.6666666667%;
  }
  .large-margin-collapse &gt; .medium-6 {
    width: 50%;
  }
  .large-margin-collapse &gt; .medium-7 {
    width: 58.3333333333%;
  }
  .large-margin-collapse &gt; .medium-8 {
    width: 66.6666666667%;
  }
  .large-margin-collapse &gt; .medium-9 {
    width: 75%;
  }
  .large-margin-collapse &gt; .medium-10 {
    width: 83.3333333333%;
  }
  .large-margin-collapse &gt; .medium-11 {
    width: 91.6666666667%;
  }
  .large-margin-collapse &gt; .medium-12 {
    width: 100%;
  }
}
@media print, screen and (min-width: 64em) {
  .large-margin-collapse &gt; .large-1 {
    width: 8.3333333333%;
  }
  .large-margin-collapse &gt; .large-2 {
    width: 16.6666666667%;
  }
  .large-margin-collapse &gt; .large-3 {
    width: 25%;
  }
  .large-margin-collapse &gt; .large-4 {
    width: 33.3333333333%;
  }
  .large-margin-collapse &gt; .large-5 {
    width: 41.6666666667%;
  }
  .large-margin-collapse &gt; .large-6 {
    width: 50%;
  }
  .large-margin-collapse &gt; .large-7 {
    width: 58.3333333333%;
  }
  .large-margin-collapse &gt; .large-8 {
    width: 66.6666666667%;
  }
  .large-margin-collapse &gt; .large-9 {
    width: 75%;
  }
  .large-margin-collapse &gt; .large-10 {
    width: 83.3333333333%;
  }
  .large-margin-collapse &gt; .large-11 {
    width: 91.6666666667%;
  }
  .large-margin-collapse &gt; .large-12 {
    width: 100%;
  }
}

@media print, screen and (min-width: 64em) {
  .large-padding-collapse {
    margin-right: 0;
    margin-left: 0;
  }
  .large-padding-collapse &gt; .cell {
    padding-right: 0;
    padding-left: 0;
  }
}

.small-offset-0 {
  margin-left: 0%;
}

.grid-margin-x &gt; .small-offset-0 {
  margin-left: calc(0% + 1.25rem / 2);
}

.small-offset-1 {
  margin-left: 8.3333333333%;
}

.grid-margin-x &gt; .small-offset-1 {
  margin-left: calc(8.3333333333% + 1.25rem / 2);
}

.small-offset-2 {
  margin-left: 16.6666666667%;
}

.grid-margin-x &gt; .small-offset-2 {
  margin-left: calc(16.6666666667% + 1.25rem / 2);
}

.small-offset-3 {
  margin-left: 25%;
}

.grid-margin-x &gt; .small-offset-3 {
  margin-left: calc(25% + 1.25rem / 2);
}

.small-offset-4 {
  margin-left: 33.3333333333%;
}

.grid-margin-x &gt; .small-offset-4 {
  margin-left: calc(33.3333333333% + 1.25rem / 2);
}

.small-offset-5 {
  margin-left: 41.6666666667%;
}

.grid-margin-x &gt; .small-offset-5 {
  margin-left: calc(41.6666666667% + 1.25rem / 2);
}

.small-offset-6 {
  margin-left: 50%;
}

.grid-margin-x &gt; .small-offset-6 {
  margin-left: calc(50% + 1.25rem / 2);
}

.small-offset-7 {
  margin-left: 58.3333333333%;
}

.grid-margin-x &gt; .small-offset-7 {
  margin-left: calc(58.3333333333% + 1.25rem / 2);
}

.small-offset-8 {
  margin-left: 66.6666666667%;
}

.grid-margin-x &gt; .small-offset-8 {
  margin-left: calc(66.6666666667% + 1.25rem / 2);
}

.small-offset-9 {
  margin-left: 75%;
}

.grid-margin-x &gt; .small-offset-9 {
  margin-left: calc(75% + 1.25rem / 2);
}

.small-offset-10 {
  margin-left: 83.3333333333%;
}

.grid-margin-x &gt; .small-offset-10 {
  margin-left: calc(83.3333333333% + 1.25rem / 2);
}

.small-offset-11 {
  margin-left: 91.6666666667%;
}

.grid-margin-x &gt; .small-offset-11 {
  margin-left: calc(91.6666666667% + 1.25rem / 2);
}

@media print, screen and (min-width: 48em) {
  .medium-offset-0 {
    margin-left: 0%;
  }
  .grid-margin-x &gt; .medium-offset-0 {
    margin-left: calc(0% + 1.25rem / 2);
  }
  .medium-offset-1 {
    margin-left: 8.3333333333%;
  }
  .grid-margin-x &gt; .medium-offset-1 {
    margin-left: calc(8.3333333333% + 1.25rem / 2);
  }
  .medium-offset-2 {
    margin-left: 16.6666666667%;
  }
  .grid-margin-x &gt; .medium-offset-2 {
    margin-left: calc(16.6666666667% + 1.25rem / 2);
  }
  .medium-offset-3 {
    margin-left: 25%;
  }
  .grid-margin-x &gt; .medium-offset-3 {
    margin-left: calc(25% + 1.25rem / 2);
  }
  .medium-offset-4 {
    margin-left: 33.3333333333%;
  }
  .grid-margin-x &gt; .medium-offset-4 {
    margin-left: calc(33.3333333333% + 1.25rem / 2);
  }
  .medium-offset-5 {
    margin-left: 41.6666666667%;
  }
  .grid-margin-x &gt; .medium-offset-5 {
    margin-left: calc(41.6666666667% + 1.25rem / 2);
  }
  .medium-offset-6 {
    margin-left: 50%;
  }
  .grid-margin-x &gt; .medium-offset-6 {
    margin-left: calc(50% + 1.25rem / 2);
  }
  .medium-offset-7 {
    margin-left: 58.3333333333%;
  }
  .grid-margin-x &gt; .medium-offset-7 {
    margin-left: calc(58.3333333333% + 1.25rem / 2);
  }
  .medium-offset-8 {
    margin-left: 66.6666666667%;
  }
  .grid-margin-x &gt; .medium-offset-8 {
    margin-left: calc(66.6666666667% + 1.25rem / 2);
  }
  .medium-offset-9 {
    margin-left: 75%;
  }
  .grid-margin-x &gt; .medium-offset-9 {
    margin-left: calc(75% + 1.25rem / 2);
  }
  .medium-offset-10 {
    margin-left: 83.3333333333%;
  }
  .grid-margin-x &gt; .medium-offset-10 {
    margin-left: calc(83.3333333333% + 1.25rem / 2);
  }
  .medium-offset-11 {
    margin-left: 91.6666666667%;
  }
  .grid-margin-x &gt; .medium-offset-11 {
    margin-left: calc(91.6666666667% + 1.25rem / 2);
  }
}
@media print, screen and (min-width: 64em) {
  .large-offset-0 {
    margin-left: 0%;
  }
  .grid-margin-x &gt; .large-offset-0 {
    margin-left: calc(0% + 1.25rem / 2);
  }
  .large-offset-1 {
    margin-left: 8.3333333333%;
  }
  .grid-margin-x &gt; .large-offset-1 {
    margin-left: calc(8.3333333333% + 1.25rem / 2);
  }
  .large-offset-2 {
    margin-left: 16.6666666667%;
  }
  .grid-margin-x &gt; .large-offset-2 {
    margin-left: calc(16.6666666667% + 1.25rem / 2);
  }
  .large-offset-3 {
    margin-left: 25%;
  }
  .grid-margin-x &gt; .large-offset-3 {
    margin-left: calc(25% + 1.25rem / 2);
  }
  .large-offset-4 {
    margin-left: 33.3333333333%;
  }
  .grid-margin-x &gt; .large-offset-4 {
    margin-left: calc(33.3333333333% + 1.25rem / 2);
  }
  .large-offset-5 {
    margin-left: 41.6666666667%;
  }
  .grid-margin-x &gt; .large-offset-5 {
    margin-left: calc(41.6666666667% + 1.25rem / 2);
  }
  .large-offset-6 {
    margin-left: 50%;
  }
  .grid-margin-x &gt; .large-offset-6 {
    margin-left: calc(50% + 1.25rem / 2);
  }
  .large-offset-7 {
    margin-left: 58.3333333333%;
  }
  .grid-margin-x &gt; .large-offset-7 {
    margin-left: calc(58.3333333333% + 1.25rem / 2);
  }
  .large-offset-8 {
    margin-left: 66.6666666667%;
  }
  .grid-margin-x &gt; .large-offset-8 {
    margin-left: calc(66.6666666667% + 1.25rem / 2);
  }
  .large-offset-9 {
    margin-left: 75%;
  }
  .grid-margin-x &gt; .large-offset-9 {
    margin-left: calc(75% + 1.25rem / 2);
  }
  .large-offset-10 {
    margin-left: 83.3333333333%;
  }
  .grid-margin-x &gt; .large-offset-10 {
    margin-left: calc(83.3333333333% + 1.25rem / 2);
  }
  .large-offset-11 {
    margin-left: 91.6666666667%;
  }
  .grid-margin-x &gt; .large-offset-11 {
    margin-left: calc(91.6666666667% + 1.25rem / 2);
  }
}
.grid-y {
  display: flex;
  flex-flow: column nowrap;
}
.grid-y &gt; .cell {
  height: auto;
  max-height: none;
}
.grid-y &gt; .auto {
  height: auto;
}
.grid-y &gt; .shrink {
  height: auto;
}
.grid-y &gt; .small-shrink, .grid-y &gt; .small-full, .grid-y &gt; .small-1, .grid-y &gt; .small-2, .grid-y &gt; .small-3, .grid-y &gt; .small-4, .grid-y &gt; .small-5, .grid-y &gt; .small-6, .grid-y &gt; .small-7, .grid-y &gt; .small-8, .grid-y &gt; .small-9, .grid-y &gt; .small-10, .grid-y &gt; .small-11, .grid-y &gt; .small-12 {
  flex-basis: auto;
}
@media print, screen and (min-width: 48em) {
  .grid-y &gt; .medium-shrink, .grid-y &gt; .medium-full, .grid-y &gt; .medium-1, .grid-y &gt; .medium-2, .grid-y &gt; .medium-3, .grid-y &gt; .medium-4, .grid-y &gt; .medium-5, .grid-y &gt; .medium-6, .grid-y &gt; .medium-7, .grid-y &gt; .medium-8, .grid-y &gt; .medium-9, .grid-y &gt; .medium-10, .grid-y &gt; .medium-11, .grid-y &gt; .medium-12 {
    flex-basis: auto;
  }
}
@media print, screen and (min-width: 64em) {
  .grid-y &gt; .large-shrink, .grid-y &gt; .large-full, .grid-y &gt; .large-1, .grid-y &gt; .large-2, .grid-y &gt; .large-3, .grid-y &gt; .large-4, .grid-y &gt; .large-5, .grid-y &gt; .large-6, .grid-y &gt; .large-7, .grid-y &gt; .large-8, .grid-y &gt; .large-9, .grid-y &gt; .large-10, .grid-y &gt; .large-11, .grid-y &gt; .large-12 {
    flex-basis: auto;
  }
}
.grid-y &gt; .small-12, .grid-y &gt; .small-11, .grid-y &gt; .small-10, .grid-y &gt; .small-9, .grid-y &gt; .small-8, .grid-y &gt; .small-7, .grid-y &gt; .small-6, .grid-y &gt; .small-5, .grid-y &gt; .small-4, .grid-y &gt; .small-3, .grid-y &gt; .small-2, .grid-y &gt; .small-1 {
  flex: 0 0 auto;
}
.grid-y &gt; .small-1 {
  height: 8.3333333333%;
}
.grid-y &gt; .small-2 {
  height: 16.6666666667%;
}
.grid-y &gt; .small-3 {
  height: 25%;
}
.grid-y &gt; .small-4 {
  height: 33.3333333333%;
}
.grid-y &gt; .small-5 {
  height: 41.6666666667%;
}
.grid-y &gt; .small-6 {
  height: 50%;
}
.grid-y &gt; .small-7 {
  height: 58.3333333333%;
}
.grid-y &gt; .small-8 {
  height: 66.6666666667%;
}
.grid-y &gt; .small-9 {
  height: 75%;
}
.grid-y &gt; .small-10 {
  height: 83.3333333333%;
}
.grid-y &gt; .small-11 {
  height: 91.6666666667%;
}
.grid-y &gt; .small-12 {
  height: 100%;
}
@media print, screen and (min-width: 48em) {
  .grid-y &gt; .medium-auto {
    flex: 1 1 0;
    height: auto;
  }
  .grid-y &gt; .medium-12, .grid-y &gt; .medium-11, .grid-y &gt; .medium-10, .grid-y &gt; .medium-9, .grid-y &gt; .medium-8, .grid-y &gt; .medium-7, .grid-y &gt; .medium-6, .grid-y &gt; .medium-5, .grid-y &gt; .medium-4, .grid-y &gt; .medium-3, .grid-y &gt; .medium-2, .grid-y &gt; .medium-1, .grid-y &gt; .medium-shrink {
    flex: 0 0 auto;
  }
  .grid-y &gt; .medium-shrink {
    height: auto;
  }
  .grid-y &gt; .medium-1 {
    height: 8.3333333333%;
  }
  .grid-y &gt; .medium-2 {
    height: 16.6666666667%;
  }
  .grid-y &gt; .medium-3 {
    height: 25%;
  }
  .grid-y &gt; .medium-4 {
    height: 33.3333333333%;
  }
  .grid-y &gt; .medium-5 {
    height: 41.6666666667%;
  }
  .grid-y &gt; .medium-6 {
    height: 50%;
  }
  .grid-y &gt; .medium-7 {
    height: 58.3333333333%;
  }
  .grid-y &gt; .medium-8 {
    height: 66.6666666667%;
  }
  .grid-y &gt; .medium-9 {
    height: 75%;
  }
  .grid-y &gt; .medium-10 {
    height: 83.3333333333%;
  }
  .grid-y &gt; .medium-11 {
    height: 91.6666666667%;
  }
  .grid-y &gt; .medium-12 {
    height: 100%;
  }
}
@media print, screen and (min-width: 64em) {
  .grid-y &gt; .large-auto {
    flex: 1 1 0;
    height: auto;
  }
  .grid-y &gt; .large-12, .grid-y &gt; .large-11, .grid-y &gt; .large-10, .grid-y &gt; .large-9, .grid-y &gt; .large-8, .grid-y &gt; .large-7, .grid-y &gt; .large-6, .grid-y &gt; .large-5, .grid-y &gt; .large-4, .grid-y &gt; .large-3, .grid-y &gt; .large-2, .grid-y &gt; .large-1, .grid-y &gt; .large-shrink {
    flex: 0 0 auto;
  }
  .grid-y &gt; .large-shrink {
    height: auto;
  }
  .grid-y &gt; .large-1 {
    height: 8.3333333333%;
  }
  .grid-y &gt; .large-2 {
    height: 16.6666666667%;
  }
  .grid-y &gt; .large-3 {
    height: 25%;
  }
  .grid-y &gt; .large-4 {
    height: 33.3333333333%;
  }
  .grid-y &gt; .large-5 {
    height: 41.6666666667%;
  }
  .grid-y &gt; .large-6 {
    height: 50%;
  }
  .grid-y &gt; .large-7 {
    height: 58.3333333333%;
  }
  .grid-y &gt; .large-8 {
    height: 66.6666666667%;
  }
  .grid-y &gt; .large-9 {
    height: 75%;
  }
  .grid-y &gt; .large-10 {
    height: 83.3333333333%;
  }
  .grid-y &gt; .large-11 {
    height: 91.6666666667%;
  }
  .grid-y &gt; .large-12 {
    height: 100%;
  }
}

.grid-padding-y .grid-padding-y {
  margin-top: -0.625rem;
  margin-bottom: -0.625rem;
}
@media print, screen and (min-width: 48em) {
  .grid-padding-y .grid-padding-y {
    margin-top: -0.625rem;
    margin-bottom: -0.625rem;
  }
}
.grid-padding-y &gt; .cell {
  padding-top: 0.625rem;
  padding-bottom: 0.625rem;
}
@media print, screen and (min-width: 48em) {
  .grid-padding-y &gt; .cell {
    padding-top: 0.625rem;
    padding-bottom: 0.625rem;
  }
}

.grid-margin-y {
  margin-top: -0.625rem;
  margin-bottom: -0.625rem;
}
@media print, screen and (min-width: 48em) {
  .grid-margin-y {
    margin-top: -0.625rem;
    margin-bottom: -0.625rem;
  }
}
.grid-margin-y &gt; .cell {
  height: calc(100% - 1.25rem);
  margin-top: 0.625rem;
  margin-bottom: 0.625rem;
}
@media print, screen and (min-width: 48em) {
  .grid-margin-y &gt; .cell {
    height: calc(100% - 1.25rem);
    margin-top: 0.625rem;
    margin-bottom: 0.625rem;
  }
}
.grid-margin-y &gt; .auto {
  height: auto;
}
.grid-margin-y &gt; .shrink {
  height: auto;
}
.grid-margin-y &gt; .small-1 {
  height: calc(8.3333333333% - 1.25rem);
}
.grid-margin-y &gt; .small-2 {
  height: calc(16.6666666667% - 1.25rem);
}
.grid-margin-y &gt; .small-3 {
  height: calc(25% - 1.25rem);
}
.grid-margin-y &gt; .small-4 {
  height: calc(33.3333333333% - 1.25rem);
}
.grid-margin-y &gt; .small-5 {
  height: calc(41.6666666667% - 1.25rem);
}
.grid-margin-y &gt; .small-6 {
  height: calc(50% - 1.25rem);
}
.grid-margin-y &gt; .small-7 {
  height: calc(58.3333333333% - 1.25rem);
}
.grid-margin-y &gt; .small-8 {
  height: calc(66.6666666667% - 1.25rem);
}
.grid-margin-y &gt; .small-9 {
  height: calc(75% - 1.25rem);
}
.grid-margin-y &gt; .small-10 {
  height: calc(83.3333333333% - 1.25rem);
}
.grid-margin-y &gt; .small-11 {
  height: calc(91.6666666667% - 1.25rem);
}
.grid-margin-y &gt; .small-12 {
  height: calc(100% - 1.25rem);
}
@media print, screen and (min-width: 48em) {
  .grid-margin-y &gt; .auto {
    height: auto;
  }
  .grid-margin-y &gt; .shrink {
    height: auto;
  }
  .grid-margin-y &gt; .small-1 {
    height: calc(8.3333333333% - 1.25rem);
  }
  .grid-margin-y &gt; .small-2 {
    height: calc(16.6666666667% - 1.25rem);
  }
  .grid-margin-y &gt; .small-3 {
    height: calc(25% - 1.25rem);
  }
  .grid-margin-y &gt; .small-4 {
    height: calc(33.3333333333% - 1.25rem);
  }
  .grid-margin-y &gt; .small-5 {
    height: calc(41.6666666667% - 1.25rem);
  }
  .grid-margin-y &gt; .small-6 {
    height: calc(50% - 1.25rem);
  }
  .grid-margin-y &gt; .small-7 {
    height: calc(58.3333333333% - 1.25rem);
  }
  .grid-margin-y &gt; .small-8 {
    height: calc(66.6666666667% - 1.25rem);
  }
  .grid-margin-y &gt; .small-9 {
    height: calc(75% - 1.25rem);
  }
  .grid-margin-y &gt; .small-10 {
    height: calc(83.3333333333% - 1.25rem);
  }
  .grid-margin-y &gt; .small-11 {
    height: calc(91.6666666667% - 1.25rem);
  }
  .grid-margin-y &gt; .small-12 {
    height: calc(100% - 1.25rem);
  }
  .grid-margin-y &gt; .sphone-auto {
    height: auto;
  }
  .grid-margin-y &gt; .sphone-shrink {
    height: auto;
  }
  .grid-margin-y &gt; .sphone-1 {
    height: calc(8.3333333333% - 1.25rem);
  }
  .grid-margin-y &gt; .sphone-2 {
    height: calc(16.6666666667% - 1.25rem);
  }
  .grid-margin-y &gt; .sphone-3 {
    height: calc(25% - 1.25rem);
  }
  .grid-margin-y &gt; .sphone-4 {
    height: calc(33.3333333333% - 1.25rem);
  }
  .grid-margin-y &gt; .sphone-5 {
    height: calc(41.6666666667% - 1.25rem);
  }
  .grid-margin-y &gt; .sphone-6 {
    height: calc(50% - 1.25rem);
  }
  .grid-margin-y &gt; .sphone-7 {
    height: calc(58.3333333333% - 1.25rem);
  }
  .grid-margin-y &gt; .sphone-8 {
    height: calc(66.6666666667% - 1.25rem);
  }
  .grid-margin-y &gt; .sphone-9 {
    height: calc(75% - 1.25rem);
  }
  .grid-margin-y &gt; .sphone-10 {
    height: calc(83.3333333333% - 1.25rem);
  }
  .grid-margin-y &gt; .sphone-11 {
    height: calc(91.6666666667% - 1.25rem);
  }
  .grid-margin-y &gt; .sphone-12 {
    height: calc(100% - 1.25rem);
  }
  .grid-margin-y &gt; .phone-auto {
    height: auto;
  }
  .grid-margin-y &gt; .phone-shrink {
    height: auto;
  }
  .grid-margin-y &gt; .phone-1 {
    height: calc(8.3333333333% - 1.25rem);
  }
  .grid-margin-y &gt; .phone-2 {
    height: calc(16.6666666667% - 1.25rem);
  }
  .grid-margin-y &gt; .phone-3 {
    height: calc(25% - 1.25rem);
  }
  .grid-margin-y &gt; .phone-4 {
    height: calc(33.3333333333% - 1.25rem);
  }
  .grid-margin-y &gt; .phone-5 {
    height: calc(41.6666666667% - 1.25rem);
  }
  .grid-margin-y &gt; .phone-6 {
    height: calc(50% - 1.25rem);
  }
  .grid-margin-y &gt; .phone-7 {
    height: calc(58.3333333333% - 1.25rem);
  }
  .grid-margin-y &gt; .phone-8 {
    height: calc(66.6666666667% - 1.25rem);
  }
  .grid-margin-y &gt; .phone-9 {
    height: calc(75% - 1.25rem);
  }
  .grid-margin-y &gt; .phone-10 {
    height: calc(83.3333333333% - 1.25rem);
  }
  .grid-margin-y &gt; .phone-11 {
    height: calc(91.6666666667% - 1.25rem);
  }
  .grid-margin-y &gt; .phone-12 {
    height: calc(100% - 1.25rem);
  }
  .grid-margin-y &gt; .mdphone-auto {
    height: auto;
  }
  .grid-margin-y &gt; .mdphone-shrink {
    height: auto;
  }
  .grid-margin-y &gt; .mdphone-1 {
    height: calc(8.3333333333% - 1.25rem);
  }
  .grid-margin-y &gt; .mdphone-2 {
    height: calc(16.6666666667% - 1.25rem);
  }
  .grid-margin-y &gt; .mdphone-3 {
    height: calc(25% - 1.25rem);
  }
  .grid-margin-y &gt; .mdphone-4 {
    height: calc(33.3333333333% - 1.25rem);
  }
  .grid-margin-y &gt; .mdphone-5 {
    height: calc(41.6666666667% - 1.25rem);
  }
  .grid-margin-y &gt; .mdphone-6 {
    height: calc(50% - 1.25rem);
  }
  .grid-margin-y &gt; .mdphone-7 {
    height: calc(58.3333333333% - 1.25rem);
  }
  .grid-margin-y &gt; .mdphone-8 {
    height: calc(66.6666666667% - 1.25rem);
  }
  .grid-margin-y &gt; .mdphone-9 {
    height: calc(75% - 1.25rem);
  }
  .grid-margin-y &gt; .mdphone-10 {
    height: calc(83.3333333333% - 1.25rem);
  }
  .grid-margin-y &gt; .mdphone-11 {
    height: calc(91.6666666667% - 1.25rem);
  }
  .grid-margin-y &gt; .mdphone-12 {
    height: calc(100% - 1.25rem);
  }
  .grid-margin-y &gt; .stablet-auto {
    height: auto;
  }
  .grid-margin-y &gt; .stablet-shrink {
    height: auto;
  }
  .grid-margin-y &gt; .stablet-1 {
    height: calc(8.3333333333% - 1.25rem);
  }
  .grid-margin-y &gt; .stablet-2 {
    height: calc(16.6666666667% - 1.25rem);
  }
  .grid-margin-y &gt; .stablet-3 {
    height: calc(25% - 1.25rem);
  }
  .grid-margin-y &gt; .stablet-4 {
    height: calc(33.3333333333% - 1.25rem);
  }
  .grid-margin-y &gt; .stablet-5 {
    height: calc(41.6666666667% - 1.25rem);
  }
  .grid-margin-y &gt; .stablet-6 {
    height: calc(50% - 1.25rem);
  }
  .grid-margin-y &gt; .stablet-7 {
    height: calc(58.3333333333% - 1.25rem);
  }
  .grid-margin-y &gt; .stablet-8 {
    height: calc(66.6666666667% - 1.25rem);
  }
  .grid-margin-y &gt; .stablet-9 {
    height: calc(75% - 1.25rem);
  }
  .grid-margin-y &gt; .stablet-10 {
    height: calc(83.3333333333% - 1.25rem);
  }
  .grid-margin-y &gt; .stablet-11 {
    height: calc(91.6666666667% - 1.25rem);
  }
  .grid-margin-y &gt; .stablet-12 {
    height: calc(100% - 1.25rem);
  }
  .grid-margin-y &gt; .lgsmall-auto {
    height: auto;
  }
  .grid-margin-y &gt; .lgsmall-shrink {
    height: auto;
  }
  .grid-margin-y &gt; .lgsmall-1 {
    height: calc(8.3333333333% - 1.25rem);
  }
  .grid-margin-y &gt; .lgsmall-2 {
    height: calc(16.6666666667% - 1.25rem);
  }
  .grid-margin-y &gt; .lgsmall-3 {
    height: calc(25% - 1.25rem);
  }
  .grid-margin-y &gt; .lgsmall-4 {
    height: calc(33.3333333333% - 1.25rem);
  }
  .grid-margin-y &gt; .lgsmall-5 {
    height: calc(41.6666666667% - 1.25rem);
  }
  .grid-margin-y &gt; .lgsmall-6 {
    height: calc(50% - 1.25rem);
  }
  .grid-margin-y &gt; .lgsmall-7 {
    height: calc(58.3333333333% - 1.25rem);
  }
  .grid-margin-y &gt; .lgsmall-8 {
    height: calc(66.6666666667% - 1.25rem);
  }
  .grid-margin-y &gt; .lgsmall-9 {
    height: calc(75% - 1.25rem);
  }
  .grid-margin-y &gt; .lgsmall-10 {
    height: calc(83.3333333333% - 1.25rem);
  }
  .grid-margin-y &gt; .lgsmall-11 {
    height: calc(91.6666666667% - 1.25rem);
  }
  .grid-margin-y &gt; .lgsmall-12 {
    height: calc(100% - 1.25rem);
  }
  .grid-margin-y &gt; .medium-auto {
    height: auto;
  }
  .grid-margin-y &gt; .medium-shrink {
    height: auto;
  }
  .grid-margin-y &gt; .medium-1 {
    height: calc(8.3333333333% - 1.25rem);
  }
  .grid-margin-y &gt; .medium-2 {
    height: calc(16.6666666667% - 1.25rem);
  }
  .grid-margin-y &gt; .medium-3 {
    height: calc(25% - 1.25rem);
  }
  .grid-margin-y &gt; .medium-4 {
    height: calc(33.3333333333% - 1.25rem);
  }
  .grid-margin-y &gt; .medium-5 {
    height: calc(41.6666666667% - 1.25rem);
  }
  .grid-margin-y &gt; .medium-6 {
    height: calc(50% - 1.25rem);
  }
  .grid-margin-y &gt; .medium-7 {
    height: calc(58.3333333333% - 1.25rem);
  }
  .grid-margin-y &gt; .medium-8 {
    height: calc(66.6666666667% - 1.25rem);
  }
  .grid-margin-y &gt; .medium-9 {
    height: calc(75% - 1.25rem);
  }
  .grid-margin-y &gt; .medium-10 {
    height: calc(83.3333333333% - 1.25rem);
  }
  .grid-margin-y &gt; .medium-11 {
    height: calc(91.6666666667% - 1.25rem);
  }
  .grid-margin-y &gt; .medium-12 {
    height: calc(100% - 1.25rem);
  }
}
@media print, screen and (min-width: 64em) {
  .grid-margin-y &gt; .large-auto {
    height: auto;
  }
  .grid-margin-y &gt; .large-shrink {
    height: auto;
  }
  .grid-margin-y &gt; .large-1 {
    height: calc(8.3333333333% - 1.25rem);
  }
  .grid-margin-y &gt; .large-2 {
    height: calc(16.6666666667% - 1.25rem);
  }
  .grid-margin-y &gt; .large-3 {
    height: calc(25% - 1.25rem);
  }
  .grid-margin-y &gt; .large-4 {
    height: calc(33.3333333333% - 1.25rem);
  }
  .grid-margin-y &gt; .large-5 {
    height: calc(41.6666666667% - 1.25rem);
  }
  .grid-margin-y &gt; .large-6 {
    height: calc(50% - 1.25rem);
  }
  .grid-margin-y &gt; .large-7 {
    height: calc(58.3333333333% - 1.25rem);
  }
  .grid-margin-y &gt; .large-8 {
    height: calc(66.6666666667% - 1.25rem);
  }
  .grid-margin-y &gt; .large-9 {
    height: calc(75% - 1.25rem);
  }
  .grid-margin-y &gt; .large-10 {
    height: calc(83.3333333333% - 1.25rem);
  }
  .grid-margin-y &gt; .large-11 {
    height: calc(91.6666666667% - 1.25rem);
  }
  .grid-margin-y &gt; .large-12 {
    height: calc(100% - 1.25rem);
  }
}

.grid-frame {
  overflow: hidden;
  position: relative;
  flex-wrap: nowrap;
  align-items: stretch;
  width: 100vw;
}

.cell .grid-frame {
  width: 100%;
}

.cell-block {
  overflow-x: auto;
  max-width: 100%;
  -webkit-overflow-scrolling: touch;
  -ms-overflow-style: -ms-autohiding-scrollbar;
}

.cell-block-y {
  overflow-y: auto;
  max-height: 100%;
  min-height: 100%;
  -webkit-overflow-scrolling: touch;
  -ms-overflow-style: -ms-autohiding-scrollbar;
}

.cell-block-container {
  display: flex;
  flex-direction: column;
  max-height: 100%;
}
.cell-block-container &gt; .grid-x {
  max-height: 100%;
  flex-wrap: nowrap;
}

@media print, screen and (min-width: 48em) {
  .medium-grid-frame {
    overflow: hidden;
    position: relative;
    flex-wrap: nowrap;
    align-items: stretch;
    width: 100vw;
  }
  .cell .medium-grid-frame {
    width: 100%;
  }
  .medium-cell-block {
    overflow-x: auto;
    max-width: 100%;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: -ms-autohiding-scrollbar;
  }
  .medium-cell-block-container {
    display: flex;
    flex-direction: column;
    max-height: 100%;
  }
  .medium-cell-block-container &gt; .grid-x {
    max-height: 100%;
    flex-wrap: nowrap;
  }
  .medium-cell-block-y {
    overflow-y: auto;
    max-height: 100%;
    min-height: 100%;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: -ms-autohiding-scrollbar;
  }
}
@media print, screen and (min-width: 64em) {
  .large-grid-frame {
    overflow: hidden;
    position: relative;
    flex-wrap: nowrap;
    align-items: stretch;
    width: 100vw;
  }
  .cell .large-grid-frame {
    width: 100%;
  }
  .large-cell-block {
    overflow-x: auto;
    max-width: 100%;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: -ms-autohiding-scrollbar;
  }
  .large-cell-block-container {
    display: flex;
    flex-direction: column;
    max-height: 100%;
  }
  .large-cell-block-container &gt; .grid-x {
    max-height: 100%;
    flex-wrap: nowrap;
  }
  .large-cell-block-y {
    overflow-y: auto;
    max-height: 100%;
    min-height: 100%;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: -ms-autohiding-scrollbar;
  }
}
.grid-y.grid-frame {
  overflow: hidden;
  position: relative;
  flex-wrap: nowrap;
  align-items: stretch;
  height: 100vh;
  width: auto;
}
@media print, screen and (min-width: 48em) {
  .grid-y.medium-grid-frame {
    overflow: hidden;
    position: relative;
    flex-wrap: nowrap;
    align-items: stretch;
    height: 100vh;
    width: auto;
  }
}
@media print, screen and (min-width: 64em) {
  .grid-y.large-grid-frame {
    overflow: hidden;
    position: relative;
    flex-wrap: nowrap;
    align-items: stretch;
    height: 100vh;
    width: auto;
  }
}

.cell .grid-y.grid-frame {
  height: 100%;
}
@media print, screen and (min-width: 48em) {
  .cell .grid-y.medium-grid-frame {
    height: 100%;
  }
}
@media print, screen and (min-width: 64em) {
  .cell .grid-y.large-grid-frame {
    height: 100%;
  }
}

.grid-margin-y {
  margin-top: -0.625rem;
  margin-bottom: -0.625rem;
}
@media print, screen and (min-width: 48em) {
  .grid-margin-y {
    margin-top: -0.625rem;
    margin-bottom: -0.625rem;
  }
}
.grid-margin-y &gt; .cell {
  height: calc(100% - 1.25rem);
  margin-top: 0.625rem;
  margin-bottom: 0.625rem;
}
@media print, screen and (min-width: 48em) {
  .grid-margin-y &gt; .cell {
    height: calc(100% - 1.25rem);
    margin-top: 0.625rem;
    margin-bottom: 0.625rem;
  }
}
.grid-margin-y &gt; .auto {
  height: auto;
}
.grid-margin-y &gt; .shrink {
  height: auto;
}
.grid-margin-y &gt; .small-1 {
  height: calc(8.3333333333% - 1.25rem);
}
.grid-margin-y &gt; .small-2 {
  height: calc(16.6666666667% - 1.25rem);
}
.grid-margin-y &gt; .small-3 {
  height: calc(25% - 1.25rem);
}
.grid-margin-y &gt; .small-4 {
  height: calc(33.3333333333% - 1.25rem);
}
.grid-margin-y &gt; .small-5 {
  height: calc(41.6666666667% - 1.25rem);
}
.grid-margin-y &gt; .small-6 {
  height: calc(50% - 1.25rem);
}
.grid-margin-y &gt; .small-7 {
  height: calc(58.3333333333% - 1.25rem);
}
.grid-margin-y &gt; .small-8 {
  height: calc(66.6666666667% - 1.25rem);
}
.grid-margin-y &gt; .small-9 {
  height: calc(75% - 1.25rem);
}
.grid-margin-y &gt; .small-10 {
  height: calc(83.3333333333% - 1.25rem);
}
.grid-margin-y &gt; .small-11 {
  height: calc(91.6666666667% - 1.25rem);
}
.grid-margin-y &gt; .small-12 {
  height: calc(100% - 1.25rem);
}
@media print, screen and (min-width: 48em) {
  .grid-margin-y &gt; .auto {
    height: auto;
  }
  .grid-margin-y &gt; .shrink {
    height: auto;
  }
  .grid-margin-y &gt; .small-1 {
    height: calc(8.3333333333% - 1.25rem);
  }
  .grid-margin-y &gt; .small-2 {
    height: calc(16.6666666667% - 1.25rem);
  }
  .grid-margin-y &gt; .small-3 {
    height: calc(25% - 1.25rem);
  }
  .grid-margin-y &gt; .small-4 {
    height: calc(33.3333333333% - 1.25rem);
  }
  .grid-margin-y &gt; .small-5 {
    height: calc(41.6666666667% - 1.25rem);
  }
  .grid-margin-y &gt; .small-6 {
    height: calc(50% - 1.25rem);
  }
  .grid-margin-y &gt; .small-7 {
    height: calc(58.3333333333% - 1.25rem);
  }
  .grid-margin-y &gt; .small-8 {
    height: calc(66.6666666667% - 1.25rem);
  }
  .grid-margin-y &gt; .small-9 {
    height: calc(75% - 1.25rem);
  }
  .grid-margin-y &gt; .small-10 {
    height: calc(83.3333333333% - 1.25rem);
  }
  .grid-margin-y &gt; .small-11 {
    height: calc(91.6666666667% - 1.25rem);
  }
  .grid-margin-y &gt; .small-12 {
    height: calc(100% - 1.25rem);
  }
  .grid-margin-y &gt; .sphone-auto {
    height: auto;
  }
  .grid-margin-y &gt; .sphone-shrink {
    height: auto;
  }
  .grid-margin-y &gt; .sphone-1 {
    height: calc(8.3333333333% - 1.25rem);
  }
  .grid-margin-y &gt; .sphone-2 {
    height: calc(16.6666666667% - 1.25rem);
  }
  .grid-margin-y &gt; .sphone-3 {
    height: calc(25% - 1.25rem);
  }
  .grid-margin-y &gt; .sphone-4 {
    height: calc(33.3333333333% - 1.25rem);
  }
  .grid-margin-y &gt; .sphone-5 {
    height: calc(41.6666666667% - 1.25rem);
  }
  .grid-margin-y &gt; .sphone-6 {
    height: calc(50% - 1.25rem);
  }
  .grid-margin-y &gt; .sphone-7 {
    height: calc(58.3333333333% - 1.25rem);
  }
  .grid-margin-y &gt; .sphone-8 {
    height: calc(66.6666666667% - 1.25rem);
  }
  .grid-margin-y &gt; .sphone-9 {
    height: calc(75% - 1.25rem);
  }
  .grid-margin-y &gt; .sphone-10 {
    height: calc(83.3333333333% - 1.25rem);
  }
  .grid-margin-y &gt; .sphone-11 {
    height: calc(91.6666666667% - 1.25rem);
  }
  .grid-margin-y &gt; .sphone-12 {
    height: calc(100% - 1.25rem);
  }
  .grid-margin-y &gt; .phone-auto {
    height: auto;
  }
  .grid-margin-y &gt; .phone-shrink {
    height: auto;
  }
  .grid-margin-y &gt; .phone-1 {
    height: calc(8.3333333333% - 1.25rem);
  }
  .grid-margin-y &gt; .phone-2 {
    height: calc(16.6666666667% - 1.25rem);
  }
  .grid-margin-y &gt; .phone-3 {
    height: calc(25% - 1.25rem);
  }
  .grid-margin-y &gt; .phone-4 {
    height: calc(33.3333333333% - 1.25rem);
  }
  .grid-margin-y &gt; .phone-5 {
    height: calc(41.6666666667% - 1.25rem);
  }
  .grid-margin-y &gt; .phone-6 {
    height: calc(50% - 1.25rem);
  }
  .grid-margin-y &gt; .phone-7 {
    height: calc(58.3333333333% - 1.25rem);
  }
  .grid-margin-y &gt; .phone-8 {
    height: calc(66.6666666667% - 1.25rem);
  }
  .grid-margin-y &gt; .phone-9 {
    height: calc(75% - 1.25rem);
  }
  .grid-margin-y &gt; .phone-10 {
    height: calc(83.3333333333% - 1.25rem);
  }
  .grid-margin-y &gt; .phone-11 {
    height: calc(91.6666666667% - 1.25rem);
  }
  .grid-margin-y &gt; .phone-12 {
    height: calc(100% - 1.25rem);
  }
  .grid-margin-y &gt; .mdphone-auto {
    height: auto;
  }
  .grid-margin-y &gt; .mdphone-shrink {
    height: auto;
  }
  .grid-margin-y &gt; .mdphone-1 {
    height: calc(8.3333333333% - 1.25rem);
  }
  .grid-margin-y &gt; .mdphone-2 {
    height: calc(16.6666666667% - 1.25rem);
  }
  .grid-margin-y &gt; .mdphone-3 {
    height: calc(25% - 1.25rem);
  }
  .grid-margin-y &gt; .mdphone-4 {
    height: calc(33.3333333333% - 1.25rem);
  }
  .grid-margin-y &gt; .mdphone-5 {
    height: calc(41.6666666667% - 1.25rem);
  }
  .grid-margin-y &gt; .mdphone-6 {
    height: calc(50% - 1.25rem);
  }
  .grid-margin-y &gt; .mdphone-7 {
    height: calc(58.3333333333% - 1.25rem);
  }
  .grid-margin-y &gt; .mdphone-8 {
    height: calc(66.6666666667% - 1.25rem);
  }
  .grid-margin-y &gt; .mdphone-9 {
    height: calc(75% - 1.25rem);
  }
  .grid-margin-y &gt; .mdphone-10 {
    height: calc(83.3333333333% - 1.25rem);
  }
  .grid-margin-y &gt; .mdphone-11 {
    height: calc(91.6666666667% - 1.25rem);
  }
  .grid-margin-y &gt; .mdphone-12 {
    height: calc(100% - 1.25rem);
  }
  .grid-margin-y &gt; .stablet-auto {
    height: auto;
  }
  .grid-margin-y &gt; .stablet-shrink {
    height: auto;
  }
  .grid-margin-y &gt; .stablet-1 {
    height: calc(8.3333333333% - 1.25rem);
  }
  .grid-margin-y &gt; .stablet-2 {
    height: calc(16.6666666667% - 1.25rem);
  }
  .grid-margin-y &gt; .stablet-3 {
    height: calc(25% - 1.25rem);
  }
  .grid-margin-y &gt; .stablet-4 {
    height: calc(33.3333333333% - 1.25rem);
  }
  .grid-margin-y &gt; .stablet-5 {
    height: calc(41.6666666667% - 1.25rem);
  }
  .grid-margin-y &gt; .stablet-6 {
    height: calc(50% - 1.25rem);
  }
  .grid-margin-y &gt; .stablet-7 {
    height: calc(58.3333333333% - 1.25rem);
  }
  .grid-margin-y &gt; .stablet-8 {
    height: calc(66.6666666667% - 1.25rem);
  }
  .grid-margin-y &gt; .stablet-9 {
    height: calc(75% - 1.25rem);
  }
  .grid-margin-y &gt; .stablet-10 {
    height: calc(83.3333333333% - 1.25rem);
  }
  .grid-margin-y &gt; .stablet-11 {
    height: calc(91.6666666667% - 1.25rem);
  }
  .grid-margin-y &gt; .stablet-12 {
    height: calc(100% - 1.25rem);
  }
  .grid-margin-y &gt; .lgsmall-auto {
    height: auto;
  }
  .grid-margin-y &gt; .lgsmall-shrink {
    height: auto;
  }
  .grid-margin-y &gt; .lgsmall-1 {
    height: calc(8.3333333333% - 1.25rem);
  }
  .grid-margin-y &gt; .lgsmall-2 {
    height: calc(16.6666666667% - 1.25rem);
  }
  .grid-margin-y &gt; .lgsmall-3 {
    height: calc(25% - 1.25rem);
  }
  .grid-margin-y &gt; .lgsmall-4 {
    height: calc(33.3333333333% - 1.25rem);
  }
  .grid-margin-y &gt; .lgsmall-5 {
    height: calc(41.6666666667% - 1.25rem);
  }
  .grid-margin-y &gt; .lgsmall-6 {
    height: calc(50% - 1.25rem);
  }
  .grid-margin-y &gt; .lgsmall-7 {
    height: calc(58.3333333333% - 1.25rem);
  }
  .grid-margin-y &gt; .lgsmall-8 {
    height: calc(66.6666666667% - 1.25rem);
  }
  .grid-margin-y &gt; .lgsmall-9 {
    height: calc(75% - 1.25rem);
  }
  .grid-margin-y &gt; .lgsmall-10 {
    height: calc(83.3333333333% - 1.25rem);
  }
  .grid-margin-y &gt; .lgsmall-11 {
    height: calc(91.6666666667% - 1.25rem);
  }
  .grid-margin-y &gt; .lgsmall-12 {
    height: calc(100% - 1.25rem);
  }
  .grid-margin-y &gt; .medium-auto {
    height: auto;
  }
  .grid-margin-y &gt; .medium-shrink {
    height: auto;
  }
  .grid-margin-y &gt; .medium-1 {
    height: calc(8.3333333333% - 1.25rem);
  }
  .grid-margin-y &gt; .medium-2 {
    height: calc(16.6666666667% - 1.25rem);
  }
  .grid-margin-y &gt; .medium-3 {
    height: calc(25% - 1.25rem);
  }
  .grid-margin-y &gt; .medium-4 {
    height: calc(33.3333333333% - 1.25rem);
  }
  .grid-margin-y &gt; .medium-5 {
    height: calc(41.6666666667% - 1.25rem);
  }
  .grid-margin-y &gt; .medium-6 {
    height: calc(50% - 1.25rem);
  }
  .grid-margin-y &gt; .medium-7 {
    height: calc(58.3333333333% - 1.25rem);
  }
  .grid-margin-y &gt; .medium-8 {
    height: calc(66.6666666667% - 1.25rem);
  }
  .grid-margin-y &gt; .medium-9 {
    height: calc(75% - 1.25rem);
  }
  .grid-margin-y &gt; .medium-10 {
    height: calc(83.3333333333% - 1.25rem);
  }
  .grid-margin-y &gt; .medium-11 {
    height: calc(91.6666666667% - 1.25rem);
  }
  .grid-margin-y &gt; .medium-12 {
    height: calc(100% - 1.25rem);
  }
}
@media print, screen and (min-width: 64em) {
  .grid-margin-y &gt; .large-auto {
    height: auto;
  }
  .grid-margin-y &gt; .large-shrink {
    height: auto;
  }
  .grid-margin-y &gt; .large-1 {
    height: calc(8.3333333333% - 1.25rem);
  }
  .grid-margin-y &gt; .large-2 {
    height: calc(16.6666666667% - 1.25rem);
  }
  .grid-margin-y &gt; .large-3 {
    height: calc(25% - 1.25rem);
  }
  .grid-margin-y &gt; .large-4 {
    height: calc(33.3333333333% - 1.25rem);
  }
  .grid-margin-y &gt; .large-5 {
    height: calc(41.6666666667% - 1.25rem);
  }
  .grid-margin-y &gt; .large-6 {
    height: calc(50% - 1.25rem);
  }
  .grid-margin-y &gt; .large-7 {
    height: calc(58.3333333333% - 1.25rem);
  }
  .grid-margin-y &gt; .large-8 {
    height: calc(66.6666666667% - 1.25rem);
  }
  .grid-margin-y &gt; .large-9 {
    height: calc(75% - 1.25rem);
  }
  .grid-margin-y &gt; .large-10 {
    height: calc(83.3333333333% - 1.25rem);
  }
  .grid-margin-y &gt; .large-11 {
    height: calc(91.6666666667% - 1.25rem);
  }
  .grid-margin-y &gt; .large-12 {
    height: calc(100% - 1.25rem);
  }
}

.grid-frame.grid-margin-y {
  height: calc(100vh + 1.25rem);
}
@media print, screen and (min-width: 48em) {
  .grid-frame.grid-margin-y {
    height: calc(100vh + 1.25rem);
  }
}
@media print, screen and (min-width: 64em) {
  .grid-frame.grid-margin-y {
    height: calc(100vh + 1.25rem);
  }
}

@media print, screen and (min-width: 48em) {
  .grid-margin-y.medium-grid-frame {
    height: calc(100vh + 1.25rem);
  }
}
@media print, screen and (min-width: 64em) {
  .grid-margin-y.large-grid-frame {
    height: calc(100vh + 1.25rem);
  }
}
.accordion {
  margin-left: 0;
  background: #fefefe;
  list-style-type: none;
}
.accordion[disabled] .accordion-title {
  cursor: not-allowed;
}

.accordion-item:first-child &gt; :first-child {
  border-radius: 0 0 0 0;
}
.accordion-item:last-child &gt; :last-child {
  border-radius: 0 0 0 0;
}

.accordion-title {
  position: relative;
  display: block;
  padding: 1.25rem 1rem;
  border: 1px solid #e6e6e6;
  border-bottom: 0;
  font-size: 0.75rem;
  line-height: 1;
  color: #1779ba;
}
:last-child:not(.is-active) &gt; .accordion-title {
  border-bottom: 1px solid #e6e6e6;
  border-radius: 0 0 0 0;
}
.accordion-title:hover, .accordion-title:focus {
  background-color: #e6e6e6;
}
.accordion-title::before {
  position: absolute;
  top: 50%;
  right: 1rem;
  margin-top: -0.5rem;
  content: "+";
}
.is-active &gt; .accordion-title::before {
  content: "\2013";
}

.accordion-content {
  display: none;
  padding: 1rem;
  border: 1px solid #e6e6e6;
  border-bottom: 0;
  background-color: #fefefe;
  color: #0a0a0a;
}
:last-child &gt; .accordion-content:last-child {
  border-bottom: 1px solid #e6e6e6;
}

.responsive-embed,
.flex-video {
  position: relative;
  height: 0;
  margin-bottom: 1rem;
  padding-bottom: 75%;
  overflow: hidden;
}
.responsive-embed iframe,
.responsive-embed object,
.responsive-embed embed,
.responsive-embed video,
.flex-video iframe,
.flex-video object,
.flex-video embed,
.flex-video video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.responsive-embed.widescreen,
.flex-video.widescreen {
  padding-bottom: 56.25%;
}

.tabs {
  margin: 0;
  border: 1px solid #e6e6e6;
  background: #fefefe;
  list-style-type: none;
}
.tabs::before, .tabs::after {
  display: table;
  content: " ";
  flex-basis: 0;
  order: 1;
}
.tabs::after {
  clear: both;
}

.tabs.vertical &gt; li {
  display: block;
  float: none;
  width: auto;
}

.tabs.simple &gt; li &gt; a {
  padding: 0;
}
.tabs.simple &gt; li &gt; a:hover {
  background: transparent;
}

.tabs.primary {
  background: #1779ba;
}
.tabs.primary &gt; li &gt; a {
  color: #fefefe;
}
.tabs.primary &gt; li &gt; a:hover, .tabs.primary &gt; li &gt; a:focus {
  background: rgb(21.85, 114.95, 176.7);
}

.tabs-title {
  float: left;
}
.tabs-title &gt; a {
  display: block;
  padding: 1.25rem 1.5rem;
  font-size: 0.75rem;
  line-height: 1;
  color: #1779ba;
}
[data-whatinput=mouse] .tabs-title &gt; a {
  outline: 0;
}
.tabs-title &gt; a:hover {
  background: #fefefe;
  color: rgb(19.78, 104.06, 159.96);
}
.tabs-title &gt; a:focus, .tabs-title &gt; a[aria-selected=true] {
  background: #e6e6e6;
  color: #1779ba;
}

.tabs-content {
  border: 1px solid #e6e6e6;
  border-top: 0;
  background: #fefefe;
  color: #0a0a0a;
  transition: all 0.5s ease;
}

.tabs-content.vertical {
  border: 1px solid #e6e6e6;
  border-left: 0;
}

.tabs-panel {
  display: none;
  padding: 1rem;
}
.tabs-panel.is-active {
  display: block;
}

.menu {
  padding: 0;
  margin: 0;
  list-style: none;
  position: relative;
  display: flex;
  flex-wrap: wrap;
}
[data-whatinput=mouse] .menu li {
  outline: 0;
}
.menu a,
.menu .button,
.menu li.button &gt; a,
.menu.dropdown li.button &gt; a {
  line-height: 1;
  text-decoration: none;
  display: block;
  padding: 0.7rem 1rem;
}
.menu input,
.menu select,
.menu a,
.menu button {
  margin-bottom: 0;
}
.menu input {
  display: inline-block;
}
.menu, .menu.horizontal {
  flex-wrap: wrap;
  flex-direction: row;
}
.menu.vertical {
  flex-wrap: nowrap;
  flex-direction: column;
}
.menu.vertical.icon-top li a img,
.menu.vertical.icon-top li a i,
.menu.vertical.icon-top li a svg, .menu.vertical.icon-bottom li a img,
.menu.vertical.icon-bottom li a i,
.menu.vertical.icon-bottom li a svg {
  text-align: left;
}
.menu.expanded li {
  flex: 1 1 0px;
}
.menu.expanded.icon-top li a img,
.menu.expanded.icon-top li a i,
.menu.expanded.icon-top li a svg, .menu.expanded.icon-bottom li a img,
.menu.expanded.icon-bottom li a i,
.menu.expanded.icon-bottom li a svg {
  text-align: left;
}
.menu.simple {
  align-items: center;
}
.menu.simple li + li {
  margin-left: 1rem;
}
.menu.simple a {
  padding: 0;
}
@media print, screen and (min-width: 48em) {
  .menu.medium-horizontal {
    flex-wrap: wrap;
    flex-direction: row;
  }
  .menu.medium-vertical {
    flex-wrap: nowrap;
    flex-direction: column;
  }
  .menu.medium-expanded li {
    flex: 1 1 0px;
  }
  .menu.medium-simple li {
    flex: 1 1 0px;
  }
}
@media print, screen and (min-width: 64em) {
  .menu.large-horizontal {
    flex-wrap: wrap;
    flex-direction: row;
  }
  .menu.large-vertical {
    flex-wrap: nowrap;
    flex-direction: column;
  }
  .menu.large-expanded li {
    flex: 1 1 0px;
  }
  .menu.large-simple li {
    flex: 1 1 0px;
  }
}
.menu.nested {
  margin-right: 0;
  margin-left: 1rem;
}
.menu.icons a {
  display: flex;
}
.menu.icon-top a, .menu.icon-right a, .menu.icon-bottom a, .menu.icon-left a {
  display: flex;
}
.menu.icon-left li a, .menu.nested.icon-left li a {
  flex-flow: row nowrap;
}
.menu.icon-left li a img,
.menu.icon-left li a i,
.menu.icon-left li a svg, .menu.nested.icon-left li a img,
.menu.nested.icon-left li a i,
.menu.nested.icon-left li a svg {
  margin-right: 0.25rem;
}
.menu.icon-right li a, .menu.nested.icon-right li a {
  flex-flow: row nowrap;
}
.menu.icon-right li a img,
.menu.icon-right li a i,
.menu.icon-right li a svg, .menu.nested.icon-right li a img,
.menu.nested.icon-right li a i,
.menu.nested.icon-right li a svg {
  margin-left: 0.25rem;
}
.menu.icon-top li a, .menu.nested.icon-top li a {
  flex-flow: column nowrap;
}
.menu.icon-top li a img,
.menu.icon-top li a i,
.menu.icon-top li a svg, .menu.nested.icon-top li a img,
.menu.nested.icon-top li a i,
.menu.nested.icon-top li a svg {
  align-self: stretch;
  margin-bottom: 0.25rem;
  text-align: center;
}
.menu.icon-bottom li a, .menu.nested.icon-bottom li a {
  flex-flow: column nowrap;
}
.menu.icon-bottom li a img,
.menu.icon-bottom li a i,
.menu.icon-bottom li a svg, .menu.nested.icon-bottom li a img,
.menu.nested.icon-bottom li a i,
.menu.nested.icon-bottom li a svg {
  align-self: stretch;
  margin-bottom: 0.25rem;
  text-align: center;
}
.menu .is-active &gt; a {
  background: #1779ba;
  color: #fefefe;
}
.menu .active &gt; a {
  background: #1779ba;
  color: #fefefe;
}
.menu.align-left {
  justify-content: flex-start;
}
.menu.align-right li {
  display: flex;
  justify-content: flex-end;
}
.menu.align-right li .submenu li {
  justify-content: flex-start;
}
.menu.align-right.vertical li {
  display: block;
  text-align: right;
}
.menu.align-right.vertical li .submenu li {
  text-align: right;
}
.menu.align-right.icon-top li a img,
.menu.align-right.icon-top li a i,
.menu.align-right.icon-top li a svg, .menu.align-right.icon-bottom li a img,
.menu.align-right.icon-bottom li a i,
.menu.align-right.icon-bottom li a svg {
  text-align: right;
}
.menu.align-right .nested {
  margin-right: 1rem;
  margin-left: 0;
}
.menu.align-center li {
  display: flex;
  justify-content: center;
}
.menu.align-center li .submenu li {
  justify-content: flex-start;
}
.menu .menu-text {
  padding: 0.7rem 1rem;
  font-weight: bold;
  line-height: 1;
  color: inherit;
}

.menu-centered &gt; .menu {
  justify-content: center;
}
.menu-centered &gt; .menu li {
  display: flex;
  justify-content: center;
}
.menu-centered &gt; .menu li .submenu li {
  justify-content: flex-start;
}

.no-js [data-responsive-menu] ul {
  display: none;
}

.menu-icon {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  width: 20px;
  height: 16px;
  cursor: pointer;
}
.menu-icon::after {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 2px;
  background: #fefefe;
  box-shadow: 0 7px 0 #fefefe, 0 14px 0 #fefefe;
  content: "";
}
.menu-icon:hover::after {
  background: #cacaca;
  box-shadow: 0 7px 0 #cacaca, 0 14px 0 #cacaca;
}

.menu-icon.dark {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  width: 20px;
  height: 16px;
  cursor: pointer;
}
.menu-icon.dark::after {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 2px;
  background: #0a0a0a;
  box-shadow: 0 7px 0 #0a0a0a, 0 14px 0 #0a0a0a;
  content: "";
}
.menu-icon.dark:hover::after {
  background: #8a8a8a;
  box-shadow: 0 7px 0 #8a8a8a, 0 14px 0 #8a8a8a;
}

.accordion-menu li {
  width: 100%;
}
.accordion-menu a {
  padding: 0.7rem 1rem;
}
.accordion-menu .is-accordion-submenu a {
  padding: 0.7rem 1rem;
}
.accordion-menu .nested.is-accordion-submenu {
  margin-right: 0;
  margin-left: 1rem;
}
.accordion-menu.align-right .nested.is-accordion-submenu {
  margin-right: 1rem;
  margin-left: 0;
}
.accordion-menu .is-accordion-submenu-parent:not(.has-submenu-toggle) &gt; a {
  position: relative;
}
.accordion-menu .is-accordion-submenu-parent:not(.has-submenu-toggle) &gt; a::after {
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 6px;
  content: "";
  border-bottom-width: 0;
  border-color: #1779ba transparent transparent;
  position: absolute;
  top: 50%;
  margin-top: -3px;
  right: 1rem;
}
.accordion-menu.align-left .is-accordion-submenu-parent &gt; a::after {
  right: 1rem;
  left: auto;
}
.accordion-menu.align-right .is-accordion-submenu-parent &gt; a::after {
  right: auto;
  left: 1rem;
}
.accordion-menu .is-accordion-submenu-parent[aria-expanded=true] &gt; a::after {
  transform: rotate(180deg);
  transform-origin: 50% 50%;
}

.is-accordion-submenu-parent {
  position: relative;
}

.has-submenu-toggle &gt; a {
  margin-right: 40px;
}

.submenu-toggle {
  position: absolute;
  top: 0;
  right: 0;
  width: 40px;
  height: 40px;
  cursor: pointer;
}
.submenu-toggle::after {
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 6px;
  content: "";
  border-bottom-width: 0;
  border-color: #1779ba transparent transparent;
  top: 0;
  bottom: 0;
  margin: auto;
}

.submenu-toggle[aria-expanded=true]::after {
  transform: scaleY(-1);
  transform-origin: 50% 50%;
}

.submenu-toggle-text {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.is-drilldown {
  position: relative;
  overflow: hidden;
}
.is-drilldown li {
  display: block;
}
.is-drilldown.animate-height {
  transition: height 0.5s;
}

.drilldown a {
  padding: 0.7rem 1rem;
  background: #fefefe;
}
.drilldown .is-drilldown-submenu {
  position: absolute;
  top: 0;
  left: 100%;
  z-index: -1;
  width: 100%;
  background: #fefefe;
  transition: transform 0.15s linear;
}
.drilldown .is-drilldown-submenu.is-active {
  z-index: 1;
  display: block;
  transform: translateX(-100%);
}
.drilldown .is-drilldown-submenu.is-closing {
  transform: translateX(100%);
}
.drilldown .is-drilldown-submenu a {
  padding: 0.7rem 1rem;
}
.drilldown .nested.is-drilldown-submenu {
  margin-right: 0;
  margin-left: 0;
}
.drilldown .drilldown-submenu-cover-previous {
  min-height: 100%;
}
.drilldown .is-drilldown-submenu-parent &gt; a {
  position: relative;
}
.drilldown .is-drilldown-submenu-parent &gt; a::after {
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 6px;
  content: "";
  border-right-width: 0;
  border-color: transparent transparent transparent #1779ba;
  position: absolute;
  top: 50%;
  margin-top: -6px;
  right: 1rem;
}
.drilldown.align-left .is-drilldown-submenu-parent &gt; a::after {
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 6px;
  content: "";
  border-right-width: 0;
  border-color: transparent transparent transparent #1779ba;
  right: 1rem;
  left: auto;
}
.drilldown.align-right .is-drilldown-submenu-parent &gt; a::after {
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 6px;
  content: "";
  border-left-width: 0;
  border-color: transparent #1779ba transparent transparent;
  right: auto;
  left: 1rem;
}
.drilldown .js-drilldown-back &gt; a::before {
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 6px;
  content: "";
  border-left-width: 0;
  border-color: transparent #1779ba transparent transparent;
  display: inline-block;
  vertical-align: middle;
  margin-right: 0.75rem;
}

.dropdown.menu &gt; li.opens-left &gt; .is-dropdown-submenu {
  top: 100%;
  right: 0;
  left: auto;
}
.dropdown.menu &gt; li.opens-right &gt; .is-dropdown-submenu {
  top: 100%;
  right: auto;
  left: 0;
}
.dropdown.menu &gt; li.is-dropdown-submenu-parent &gt; a {
  position: relative;
  padding-right: 1.5rem;
}
.dropdown.menu &gt; li.is-dropdown-submenu-parent &gt; a::after {
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 6px;
  content: "";
  border-bottom-width: 0;
  border-color: #1779ba transparent transparent;
  right: 5px;
  left: auto;
  margin-top: -3px;
}
[data-whatinput=mouse] .dropdown.menu a {
  outline: 0;
}
.dropdown.menu &gt; li &gt; a {
  padding: 0.7rem 1rem;
}
.dropdown.menu &gt; li.is-active &gt; a {
  background: transparent;
  color: #1779ba;
}
.no-js .dropdown.menu ul {
  display: none;
}
.dropdown.menu .nested.is-dropdown-submenu {
  margin-right: 0;
  margin-left: 0;
}
.dropdown.menu.vertical &gt; li .is-dropdown-submenu {
  top: 0;
}
.dropdown.menu.vertical &gt; li.opens-left &gt; .is-dropdown-submenu {
  top: 0;
  right: 100%;
  left: auto;
}
.dropdown.menu.vertical &gt; li.opens-right &gt; .is-dropdown-submenu {
  right: auto;
  left: 100%;
}
.dropdown.menu.vertical &gt; li &gt; a::after {
  right: 14px;
}
.dropdown.menu.vertical &gt; li.opens-left &gt; a::after {
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 6px;
  content: "";
  border-left-width: 0;
  border-color: transparent #1779ba transparent transparent;
  right: auto;
  left: 5px;
}
.dropdown.menu.vertical &gt; li.opens-right &gt; a::after {
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 6px;
  content: "";
  border-right-width: 0;
  border-color: transparent transparent transparent #1779ba;
}
@media print, screen and (min-width: 48em) {
  .dropdown.menu.medium-horizontal &gt; li.opens-left &gt; .is-dropdown-submenu {
    top: 100%;
    right: 0;
    left: auto;
  }
  .dropdown.menu.medium-horizontal &gt; li.opens-right &gt; .is-dropdown-submenu {
    top: 100%;
    right: auto;
    left: 0;
  }
  .dropdown.menu.medium-horizontal &gt; li.is-dropdown-submenu-parent &gt; a {
    position: relative;
    padding-right: 1.5rem;
  }
  .dropdown.menu.medium-horizontal &gt; li.is-dropdown-submenu-parent &gt; a::after {
    display: block;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 6px;
    content: "";
    border-bottom-width: 0;
    border-color: #1779ba transparent transparent;
    right: 5px;
    left: auto;
    margin-top: -3px;
  }
  .dropdown.menu.medium-vertical &gt; li .is-dropdown-submenu {
    top: 0;
  }
  .dropdown.menu.medium-vertical &gt; li.opens-left &gt; .is-dropdown-submenu {
    top: 0;
    right: 100%;
    left: auto;
  }
  .dropdown.menu.medium-vertical &gt; li.opens-right &gt; .is-dropdown-submenu {
    right: auto;
    left: 100%;
  }
  .dropdown.menu.medium-vertical &gt; li &gt; a::after {
    right: 14px;
  }
  .dropdown.menu.medium-vertical &gt; li.opens-left &gt; a::after {
    display: block;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 6px;
    content: "";
    border-left-width: 0;
    border-color: transparent #1779ba transparent transparent;
    right: auto;
    left: 5px;
  }
  .dropdown.menu.medium-vertical &gt; li.opens-right &gt; a::after {
    display: block;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 6px;
    content: "";
    border-right-width: 0;
    border-color: transparent transparent transparent #1779ba;
  }
}
@media print, screen and (min-width: 64em) {
  .dropdown.menu.large-horizontal &gt; li.opens-left &gt; .is-dropdown-submenu {
    top: 100%;
    right: 0;
    left: auto;
  }
  .dropdown.menu.large-horizontal &gt; li.opens-right &gt; .is-dropdown-submenu {
    top: 100%;
    right: auto;
    left: 0;
  }
  .dropdown.menu.large-horizontal &gt; li.is-dropdown-submenu-parent &gt; a {
    position: relative;
    padding-right: 1.5rem;
  }
  .dropdown.menu.large-horizontal &gt; li.is-dropdown-submenu-parent &gt; a::after {
    display: block;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 6px;
    content: "";
    border-bottom-width: 0;
    border-color: #1779ba transparent transparent;
    right: 5px;
    left: auto;
    margin-top: -3px;
  }
  .dropdown.menu.large-vertical &gt; li .is-dropdown-submenu {
    top: 0;
  }
  .dropdown.menu.large-vertical &gt; li.opens-left &gt; .is-dropdown-submenu {
    top: 0;
    right: 100%;
    left: auto;
  }
  .dropdown.menu.large-vertical &gt; li.opens-right &gt; .is-dropdown-submenu {
    right: auto;
    left: 100%;
  }
  .dropdown.menu.large-vertical &gt; li &gt; a::after {
    right: 14px;
  }
  .dropdown.menu.large-vertical &gt; li.opens-left &gt; a::after {
    display: block;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 6px;
    content: "";
    border-left-width: 0;
    border-color: transparent #1779ba transparent transparent;
    right: auto;
    left: 5px;
  }
  .dropdown.menu.large-vertical &gt; li.opens-right &gt; a::after {
    display: block;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 6px;
    content: "";
    border-right-width: 0;
    border-color: transparent transparent transparent #1779ba;
  }
}
.dropdown.menu.align-right .is-dropdown-submenu.first-sub {
  top: 100%;
  right: 0;
  left: auto;
}

.is-dropdown-menu.vertical {
  width: 100px;
}
.is-dropdown-menu.vertical.align-right {
  float: right;
}

.is-dropdown-submenu-parent {
  position: relative;
}
.is-dropdown-submenu-parent a::after {
  position: absolute;
  top: 50%;
  right: 5px;
  left: auto;
  margin-top: -6px;
}
.is-dropdown-submenu-parent.opens-inner &gt; .is-dropdown-submenu {
  top: 100%;
  left: auto;
}
.is-dropdown-submenu-parent.opens-left &gt; .is-dropdown-submenu {
  right: 100%;
  left: auto;
}
.is-dropdown-submenu-parent.opens-right &gt; .is-dropdown-submenu {
  right: auto;
  left: 100%;
}

.is-dropdown-submenu {
  position: absolute;
  top: 0;
  left: 100%;
  z-index: 1;
  display: none;
  min-width: 200px;
  border: 1px solid #cacaca;
  background: #fefefe;
}
.dropdown .is-dropdown-submenu a {
  padding: 0.7rem 1rem;
}
.is-dropdown-submenu .is-dropdown-submenu-parent &gt; a::after {
  right: 14px;
}
.is-dropdown-submenu .is-dropdown-submenu-parent.opens-left &gt; a::after {
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 6px;
  content: "";
  border-left-width: 0;
  border-color: transparent #1779ba transparent transparent;
  right: auto;
  left: 5px;
}
.is-dropdown-submenu .is-dropdown-submenu-parent.opens-right &gt; a::after {
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 6px;
  content: "";
  border-right-width: 0;
  border-color: transparent transparent transparent #1779ba;
}
.is-dropdown-submenu .is-dropdown-submenu {
  margin-top: -1px;
}
.is-dropdown-submenu &gt; li {
  width: 100%;
}
.is-dropdown-submenu.js-dropdown-active {
  display: block;
}

.is-off-canvas-open {
  overflow: hidden;
}

.js-off-canvas-overlay {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 11;
  width: 100%;
  height: 100%;
  transition: opacity 0.5s ease, visibility 0.5s ease;
  background: rgba(254, 254, 254, 0.25);
  opacity: 0;
  visibility: hidden;
  overflow: hidden;
}
.js-off-canvas-overlay.is-visible {
  opacity: 1;
  visibility: visible;
}
.js-off-canvas-overlay.is-closable {
  cursor: pointer;
}
.js-off-canvas-overlay.is-overlay-absolute {
  position: absolute;
}
.js-off-canvas-overlay.is-overlay-fixed {
  position: fixed;
}

.off-canvas-wrapper {
  position: relative;
  overflow: hidden;
}

.off-canvas {
  z-index: 12;
  transition: transform 0.5s ease;
  backface-visibility: hidden;
  background: #e6e6e6;
  position: fixed;
}
[data-whatinput=mouse] .off-canvas {
  outline: 0;
}
.off-canvas.is-transition-push {
  z-index: 12;
}
.off-canvas.is-closed {
  visibility: hidden;
}
.off-canvas.is-transition-overlap {
  z-index: 13;
}
.off-canvas.is-transition-overlap.is-open {
  box-shadow: 0 0 10px rgba(10, 10, 10, 0.7);
}
.off-canvas.is-open {
  transform: translate(0, 0);
}

.off-canvas-absolute {
  z-index: 12;
  transition: transform 0.5s ease;
  backface-visibility: hidden;
  background: #e6e6e6;
  position: absolute;
}
[data-whatinput=mouse] .off-canvas-absolute {
  outline: 0;
}
.off-canvas-absolute.is-transition-push {
  z-index: 12;
}
.off-canvas-absolute.is-closed {
  visibility: hidden;
}
.off-canvas-absolute.is-transition-overlap {
  z-index: 13;
}
.off-canvas-absolute.is-transition-overlap.is-open {
  box-shadow: 0 0 10px rgba(10, 10, 10, 0.7);
}
.off-canvas-absolute.is-open {
  transform: translate(0, 0);
}

.position-left {
  top: 0;
  left: 0;
  height: 100%;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  width: 250px;
  transform: translateX(-250px);
}
.off-canvas-content .off-canvas.position-left {
  transform: translateX(-250px);
}
.off-canvas-content .off-canvas.position-left.is-transition-overlap.is-open {
  transform: translate(0, 0);
}

.off-canvas-content.is-open-left.has-transition-push {
  transform: translateX(250px);
}

.position-left.is-transition-push {
  box-shadow: inset -13px 0 20px -13px rgba(10, 10, 10, 0.25);
}

.position-right {
  top: 0;
  right: 0;
  height: 100%;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  width: 250px;
  transform: translateX(250px);
}
.off-canvas-content .off-canvas.position-right {
  transform: translateX(250px);
}
.off-canvas-content .off-canvas.position-right.is-transition-overlap.is-open {
  transform: translate(0, 0);
}

.off-canvas-content.is-open-right.has-transition-push {
  transform: translateX(-250px);
}

.position-right.is-transition-push {
  box-shadow: inset 13px 0 20px -13px rgba(10, 10, 10, 0.25);
}

.position-top {
  top: 0;
  left: 0;
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  height: 250px;
  transform: translateY(-250px);
}
.off-canvas-content .off-canvas.position-top {
  transform: translateY(-250px);
}
.off-canvas-content .off-canvas.position-top.is-transition-overlap.is-open {
  transform: translate(0, 0);
}

.off-canvas-content.is-open-top.has-transition-push {
  transform: translateY(250px);
}

.position-top.is-transition-push {
  box-shadow: inset 0 -13px 20px -13px rgba(10, 10, 10, 0.25);
}

.position-bottom {
  bottom: 0;
  left: 0;
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  height: 250px;
  transform: translateY(250px);
}
.off-canvas-content .off-canvas.position-bottom {
  transform: translateY(250px);
}
.off-canvas-content .off-canvas.position-bottom.is-transition-overlap.is-open {
  transform: translate(0, 0);
}

.off-canvas-content.is-open-bottom.has-transition-push {
  transform: translateY(-250px);
}

.position-bottom.is-transition-push {
  box-shadow: inset 0 13px 20px -13px rgba(10, 10, 10, 0.25);
}

.off-canvas-content {
  transform: none;
  backface-visibility: hidden;
}
.off-canvas-content.has-transition-overlap, .off-canvas-content.has-transition-push {
  transition: transform 0.5s ease;
}
.off-canvas-content.has-transition-push {
  transform: translate(0, 0);
}
.off-canvas-content .off-canvas.is-open {
  transform: translate(0, 0);
}

@media print, screen and (min-width: 48em) {
  .position-left.reveal-for-medium {
    transform: none;
    z-index: 12;
    transition: none;
    visibility: visible;
  }
  .position-left.reveal-for-medium .close-button {
    display: none;
  }
  .off-canvas-content .position-left.reveal-for-medium {
    transform: none;
  }
  .off-canvas-content.has-reveal-left {
    margin-left: 250px;
  }
  .position-left.reveal-for-medium ~ .off-canvas-content {
    margin-left: 250px;
  }
  .position-right.reveal-for-medium {
    transform: none;
    z-index: 12;
    transition: none;
    visibility: visible;
  }
  .position-right.reveal-for-medium .close-button {
    display: none;
  }
  .off-canvas-content .position-right.reveal-for-medium {
    transform: none;
  }
  .off-canvas-content.has-reveal-right {
    margin-right: 250px;
  }
  .position-right.reveal-for-medium ~ .off-canvas-content {
    margin-right: 250px;
  }
  .position-top.reveal-for-medium {
    transform: none;
    z-index: 12;
    transition: none;
    visibility: visible;
  }
  .position-top.reveal-for-medium .close-button {
    display: none;
  }
  .off-canvas-content .position-top.reveal-for-medium {
    transform: none;
  }
  .off-canvas-content.has-reveal-top {
    margin-top: 250px;
  }
  .position-top.reveal-for-medium ~ .off-canvas-content {
    margin-top: 250px;
  }
  .position-bottom.reveal-for-medium {
    transform: none;
    z-index: 12;
    transition: none;
    visibility: visible;
  }
  .position-bottom.reveal-for-medium .close-button {
    display: none;
  }
  .off-canvas-content .position-bottom.reveal-for-medium {
    transform: none;
  }
  .off-canvas-content.has-reveal-bottom {
    margin-bottom: 250px;
  }
  .position-bottom.reveal-for-medium ~ .off-canvas-content {
    margin-bottom: 250px;
  }
}
@media print, screen and (min-width: 64em) {
  .position-left.reveal-for-large {
    transform: none;
    z-index: 12;
    transition: none;
    visibility: visible;
  }
  .position-left.reveal-for-large .close-button {
    display: none;
  }
  .off-canvas-content .position-left.reveal-for-large {
    transform: none;
  }
  .off-canvas-content.has-reveal-left {
    margin-left: 250px;
  }
  .position-left.reveal-for-large ~ .off-canvas-content {
    margin-left: 250px;
  }
  .position-right.reveal-for-large {
    transform: none;
    z-index: 12;
    transition: none;
    visibility: visible;
  }
  .position-right.reveal-for-large .close-button {
    display: none;
  }
  .off-canvas-content .position-right.reveal-for-large {
    transform: none;
  }
  .off-canvas-content.has-reveal-right {
    margin-right: 250px;
  }
  .position-right.reveal-for-large ~ .off-canvas-content {
    margin-right: 250px;
  }
  .position-top.reveal-for-large {
    transform: none;
    z-index: 12;
    transition: none;
    visibility: visible;
  }
  .position-top.reveal-for-large .close-button {
    display: none;
  }
  .off-canvas-content .position-top.reveal-for-large {
    transform: none;
  }
  .off-canvas-content.has-reveal-top {
    margin-top: 250px;
  }
  .position-top.reveal-for-large ~ .off-canvas-content {
    margin-top: 250px;
  }
  .position-bottom.reveal-for-large {
    transform: none;
    z-index: 12;
    transition: none;
    visibility: visible;
  }
  .position-bottom.reveal-for-large .close-button {
    display: none;
  }
  .off-canvas-content .position-bottom.reveal-for-large {
    transform: none;
  }
  .off-canvas-content.has-reveal-bottom {
    margin-bottom: 250px;
  }
  .position-bottom.reveal-for-large ~ .off-canvas-content {
    margin-bottom: 250px;
  }
}
@media print, screen and (min-width: 48em) {
  .off-canvas.in-canvas-for-medium {
    visibility: visible;
    height: auto;
    position: static;
    background: none;
    width: auto;
    overflow: visible;
    transition: none;
  }
  .off-canvas.in-canvas-for-medium.position-left, .off-canvas.in-canvas-for-medium.position-right, .off-canvas.in-canvas-for-medium.position-top, .off-canvas.in-canvas-for-medium.position-bottom {
    box-shadow: none;
    transform: none;
  }
  .off-canvas.in-canvas-for-medium .close-button {
    display: none;
  }
}
@media print, screen and (min-width: 64em) {
  .off-canvas.in-canvas-for-large {
    visibility: visible;
    height: auto;
    position: static;
    background: none;
    width: auto;
    overflow: visible;
    transition: none;
  }
  .off-canvas.in-canvas-for-large.position-left, .off-canvas.in-canvas-for-large.position-right, .off-canvas.in-canvas-for-large.position-top, .off-canvas.in-canvas-for-large.position-bottom {
    box-shadow: none;
    transform: none;
  }
  .off-canvas.in-canvas-for-large .close-button {
    display: none;
  }
}
.sticky-container {
  position: relative;
}

.sticky {
  position: relative;
  z-index: 0;
  transform: translate3d(0, 0, 0);
}

.sticky.is-stuck {
  position: fixed;
  z-index: 5;
  width: 100%;
}
.sticky.is-stuck.is-at-top {
  top: 0;
}
.sticky.is-stuck.is-at-bottom {
  bottom: 0;
}

.sticky.is-anchored {
  position: relative;
  right: auto;
  left: auto;
}
.sticky.is-anchored.is-at-bottom {
  bottom: 0;
}

.hide {
  display: none !important;
}

.invisible {
  visibility: hidden;
}

.visible {
  visibility: visible;
}

@media print, screen and (max-width: 25.93625em) {
  .hide-for-small-only {
    display: none !important;
  }
}

@media screen and (max-width: 0em), screen and (min-width: 25.9375em) {
  .show-for-small-only {
    display: none !important;
  }
}

@media print, screen and (min-width: 48em) {
  .hide-for-medium {
    display: none !important;
  }
}

@media screen and (max-width: 47.99875em) {
  .show-for-medium {
    display: none !important;
  }
}

@media print, screen and (min-width: 48em) and (max-width: 61.74875em) {
  .hide-for-medium-only {
    display: none !important;
  }
}

@media screen and (max-width: 47.99875em), screen and (min-width: 61.75em) {
  .show-for-medium-only {
    display: none !important;
  }
}

@media print, screen and (min-width: 64em) {
  .hide-for-large {
    display: none !important;
  }
}

@media screen and (max-width: 63.99875em) {
  .show-for-large {
    display: none !important;
  }
}

@media print, screen and (min-width: 64em) and (max-width: 79.99875em) {
  .hide-for-large-only {
    display: none !important;
  }
}

@media screen and (max-width: 63.99875em), screen and (min-width: 80em) {
  .show-for-large-only {
    display: none !important;
  }
}

.show-for-sr,
.show-on-focus {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.show-on-focus:active, .show-on-focus:focus {
  position: static !important;
  width: auto !important;
  height: auto !important;
  overflow: visible !important;
  clip: auto !important;
  white-space: normal !important;
}

.show-for-landscape,
.hide-for-portrait {
  display: block !important;
}
@media screen and (orientation: landscape) {
  .show-for-landscape,
  .hide-for-portrait {
    display: block !important;
  }
}
@media screen and (orientation: portrait) {
  .show-for-landscape,
  .hide-for-portrait {
    display: none !important;
  }
}

.hide-for-landscape,
.show-for-portrait {
  display: none !important;
}
@media screen and (orientation: landscape) {
  .hide-for-landscape,
  .show-for-portrait {
    display: none !important;
  }
}
@media screen and (orientation: portrait) {
  .hide-for-landscape,
  .show-for-portrait {
    display: block !important;
  }
}

.show-for-dark-mode {
  display: none;
}

.hide-for-dark-mode {
  display: block;
}

@media screen and (prefers-color-scheme: dark) {
  .show-for-dark-mode {
    display: block !important;
  }
  .hide-for-dark-mode {
    display: none !important;
  }
}
.show-for-ie {
  display: none;
}

@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .show-for-ie {
    display: block !important;
  }
  .hide-for-ie {
    display: none !important;
  }
}
.show-for-sticky {
  display: none;
}

.is-stuck .show-for-sticky {
  display: block;
}

.is-stuck .hide-for-sticky {
  display: none;
}

.align-left {
  justify-content: flex-start;
}

.align-right {
  justify-content: flex-end;
}

.align-center {
  justify-content: center;
}

.align-justify {
  justify-content: space-between;
}

.align-spaced {
  justify-content: space-around;
}

.align-left.vertical.menu &gt; li &gt; a {
  justify-content: flex-start;
}

.align-right.vertical.menu &gt; li &gt; a {
  justify-content: flex-end;
}

.align-center.vertical.menu &gt; li &gt; a {
  justify-content: center;
}

.align-top {
  align-items: flex-start;
}

.align-self-top {
  align-self: flex-start;
}

.align-bottom {
  align-items: flex-end;
}

.align-self-bottom {
  align-self: flex-end;
}

.align-middle {
  align-items: center;
}

.align-self-middle {
  align-self: center;
}

.align-stretch {
  align-items: stretch;
}

.align-self-stretch {
  align-self: stretch;
}

.align-center-middle {
  justify-content: center;
  align-items: center;
  align-content: center;
}

.small-order-1 {
  order: 1;
}

.small-order-2 {
  order: 2;
}

.small-order-3 {
  order: 3;
}

.small-order-4 {
  order: 4;
}

.small-order-5 {
  order: 5;
}

.small-order-6 {
  order: 6;
}

@media print, screen and (min-width: 48em) {
  .medium-order-1 {
    order: 1;
  }
  .medium-order-2 {
    order: 2;
  }
  .medium-order-3 {
    order: 3;
  }
  .medium-order-4 {
    order: 4;
  }
  .medium-order-5 {
    order: 5;
  }
  .medium-order-6 {
    order: 6;
  }
}
@media print, screen and (min-width: 64em) {
  .large-order-1 {
    order: 1;
  }
  .large-order-2 {
    order: 2;
  }
  .large-order-3 {
    order: 3;
  }
  .large-order-4 {
    order: 4;
  }
  .large-order-5 {
    order: 5;
  }
  .large-order-6 {
    order: 6;
  }
}
.flex-container {
  display: flex;
}

.flex-child-auto {
  flex: 1 1 auto;
}

.flex-child-grow {
  flex: 1 0 auto;
}

.flex-child-shrink {
  flex: 0 1 auto;
}

.flex-dir-row {
  flex-direction: row;
}

.flex-dir-row-reverse {
  flex-direction: row-reverse;
}

.flex-dir-column {
  flex-direction: column;
}

.flex-dir-column-reverse {
  flex-direction: column-reverse;
}

@media print, screen and (min-width: 48em) {
  .medium-flex-container {
    display: flex;
  }
  .medium-flex-child-auto {
    flex: 1 1 auto;
  }
  .medium-flex-child-grow {
    flex: 1 0 auto;
  }
  .medium-flex-child-shrink {
    flex: 0 1 auto;
  }
  .medium-flex-dir-row {
    flex-direction: row;
  }
  .medium-flex-dir-row-reverse {
    flex-direction: row-reverse;
  }
  .medium-flex-dir-column {
    flex-direction: column;
  }
  .medium-flex-dir-column-reverse {
    flex-direction: column-reverse;
  }
}
@media print, screen and (min-width: 64em) {
  .large-flex-container {
    display: flex;
  }
  .large-flex-child-auto {
    flex: 1 1 auto;
  }
  .large-flex-child-grow {
    flex: 1 0 auto;
  }
  .large-flex-child-shrink {
    flex: 0 1 auto;
  }
  .large-flex-dir-row {
    flex-direction: row;
  }
  .large-flex-dir-row-reverse {
    flex-direction: row-reverse;
  }
  .large-flex-dir-column {
    flex-direction: column;
  }
  .large-flex-dir-column-reverse {
    flex-direction: column-reverse;
  }
}
html {
  box-sizing: border-box;
  font-size: 100%;
  scroll-behavior: smooth;
}

*,
*::before,
*::after {
  box-sizing: inherit;
}

body {
  margin: 0;
  padding: 0;
  background: var(--cool-wave);
  color: var(--text-color);
  font-family: "Roboto", Arial, system-ui, sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue";
  font-weight: 300;
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 300;
}

img {
  display: inline-block;
  vertical-align: middle;
  border: 0;
  max-width: 100%;
  height: auto;
  -ms-interpolation-mode: bicubic;
}

a {
  text-decoration: none;
  transition: color 0.6s;
  color: var(--radiant-flame);
  font-family: "Roboto", Arial, system-ui, sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue";
  font-weight: 300;
  font-size: 1rem;
  line-height: 1.5;
}
a:hover {
  text-decoration: none;
  color: var(--link-hover);
}

.bg-dark {
  color: var(--radiant-flame);
}

p {
  margin: 0 0 1.25rem;
  padding: 0;
  font-family: "Roboto", Arial, system-ui, sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue";
  font-weight: 300;
  font-size: 1rem;
  line-height: 1.5;
}
p:last-of-type {
  margin-bottom: 0;
}

small {
  font-size: 80%;
}

button,
input,
optgroup,
select,
textarea {
  font-family: "Roboto", Arial, system-ui, sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue";
  font-weight: 300;
  font-size: 1rem;
  line-height: 1.5;
  font-size: 100%;
  margin: 0;
}

button {
  border: 0;
  background: none;
  padding: 0;
}

[type=search] {
  appearance: textfield;
  outline-offset: -2px;
}
[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit;
}

b, strong {
  font-weight: 600;
}

main.content {
  overflow: hidden;
}

a.item {
  text-decoration: none;
}

img.editable-svg {
  opacity: 0;
  transition: opacity 0.6s;
}

body.offcanvas-active {
  overflow: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Roboto", serif, Arial, -apple-system, BlinkMacSystemFont, system-ui;
  font-weight: 500;
  margin: 0;
  padding: 0;
  line-height: 1.1;
}
@media print, screen and (min-width: 64em) {
  h1 span,
  h2 span,
  h3 span,
  h4 span,
  h5 span,
  h6 span {
    display: block;
  }
}

h1, .h1 {
  font-weight: 600;
  line-height: 1.3333333333;
}
h1, .h1 {
  font-size: 2.25rem;
}
@media screen and (min-width: 768px) {
  h1, .h1 {
    font-size: calc(36px + 12 * (100vw - 768px) / 256);
  }
}
@media screen and (min-width: 1024px) {
  h1, .h1 {
    font-size: 3rem;
  }
}
@media print, screen and (min-width: 48em) {
  h1, .h1 {
    line-height: 1.2083333333;
  }
}

h2, .h2 {
  font-weight: 500;
  line-height: 1.3125;
}
h2, .h2 {
  font-size: 2rem;
}
@media screen and (min-width: 768px) {
  h2, .h2 {
    font-size: calc(32px + 4 * (100vw - 768px) / 256);
  }
}
@media screen and (min-width: 1024px) {
  h2, .h2 {
    font-size: 2.25rem;
  }
}
@media print, screen and (min-width: 48em) {
  h2, .h2 {
    line-height: 125%;
  }
}

h3, .h3 {
  font-weight: 600;
  font-size: 1.5rem;
  line-height: normal;
}

h4, .h4 {
  font-weight: 600;
  font-size: 1rem;
  line-height: normal;
}

h5, .h5 {
  font-weight: 600;
  font-size: 1rem;
  line-height: normal;
}

h6, .h6 {
  font-weight: 600;
  font-size: 1rem;
  line-height: normal;
}

.bg-dark {
  background: var(--velvet-indigo);
  color: var(--inverse);
}
.bg-dark label,
.bg-dark a:not(.button):not(.item):not(.inner):not(.content-card):not(.btn-back) {
  color: var(--radiant-flame);
}
.bg-dark .close-button {
  color: var(--inverse);
}
.bg-dark .template-header .preheadline {
  color: var(--white);
}
.bg-dark .button, .bg-dark .menu li.button &gt; a, .menu .bg-dark li.button &gt; a {
  border: 0;
  background: var(--radiant-flame);
  color: var(--white);
}
.bg-dark .button:hover .bg-dark .button::after, .bg-dark .menu li.button &gt; a:hover .bg-dark .button::after, .menu .bg-dark li.button &gt; a:hover .bg-dark .button::after, .bg-dark .button:hover .bg-dark .menu li.button &gt; a::after, .menu .bg-dark .button:hover .bg-dark li.button &gt; a::after, .bg-dark .menu li.button &gt; a:hover .bg-dark li.button &gt; a::after, .menu .bg-dark li.button &gt; a:hover .bg-dark li.button &gt; a::after {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg width='15' height='13' viewBox='0 0 15 13' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M13.6875 7.71875L8.6875 12.7188C8.5 12.9062 8.25 13 8 13C7.71875 13 7.46875 12.9062 7.28125 12.7188C6.875 12.3438 6.875 11.6875 7.28125 11.3125L10.5625 8H1C0.4375 8 0 7.5625 0 7C0 6.46875 0.4375 6 1 6H10.5625L7.28125 2.71875C6.875 2.34375 6.875 1.6875 7.28125 1.3125C7.65625 0.90625 8.3125 0.90625 8.6875 1.3125L13.6875 6.3125C14.0938 6.6875 14.0938 7.34375 13.6875 7.71875Z' fill='%23fff'/%3E%3C/svg%3E");
}
.bg-dark .button::after, .bg-dark .menu li.button &gt; a::after, .menu .bg-dark li.button &gt; a::after {
  content: "";
  width: 0.875rem;
  height: 1rem;
  margin-left: 0.5rem;
  transition: margin 0.3s, right 0.3s, left 0.3s, background 0.3s;
  left: 0;
  position: relative;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg width='15' height='13' viewBox='0 0 15 13' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M13.6875 7.71875L8.6875 12.7188C8.5 12.9062 8.25 13 8 13C7.71875 13 7.46875 12.9062 7.28125 12.7188C6.875 12.3438 6.875 11.6875 7.28125 11.3125L10.5625 8H1C0.4375 8 0 7.5625 0 7C0 6.46875 0.4375 6 1 6H10.5625L7.28125 2.71875C6.875 2.34375 6.875 1.6875 7.28125 1.3125C7.65625 0.90625 8.3125 0.90625 8.6875 1.3125L13.6875 6.3125C14.0938 6.6875 14.0938 7.34375 13.6875 7.71875Z' fill='%23fff'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
}
.bg-dark .button:hover .bg-dark .button::after, .bg-dark .menu li.button &gt; a:hover .bg-dark .button::after, .menu .bg-dark li.button &gt; a:hover .bg-dark .button::after, .bg-dark .button:hover .bg-dark .menu li.button &gt; a::after, .menu .bg-dark .button:hover .bg-dark li.button &gt; a::after, .bg-dark .menu li.button &gt; a:hover .bg-dark li.button &gt; a::after, .menu .bg-dark li.button &gt; a:hover .bg-dark li.button &gt; a::after {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg width='15' height='13' viewBox='0 0 15 13' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M13.6875 7.71875L8.6875 12.7188C8.5 12.9062 8.25 13 8 13C7.71875 13 7.46875 12.9062 7.28125 12.7188C6.875 12.3438 6.875 11.6875 7.28125 11.3125L10.5625 8H1C0.4375 8 0 7.5625 0 7C0 6.46875 0.4375 6 1 6H10.5625L7.28125 2.71875C6.875 2.34375 6.875 1.6875 7.28125 1.3125C7.65625 0.90625 8.3125 0.90625 8.6875 1.3125L13.6875 6.3125C14.0938 6.6875 14.0938 7.34375 13.6875 7.71875Z' fill='%23fff'/%3E%3C/svg%3E");
}
.bg-dark .button.simple, .bg-dark .menu li.button &gt; a.simple, .menu .bg-dark li.button &gt; a.simple {
  color: var(--radiant-flame);
}
.bg-dark .button.white, .bg-dark .menu li.button &gt; a.white, .menu .bg-dark li.button &gt; a.white {
  color: var(--white);
}
.bg-dark .button.white::after, .bg-dark .menu li.button &gt; a.white::after, .menu .bg-dark li.button &gt; a.white::after {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg width='15' height='13' viewBox='0 0 15 13' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M13.6875 7.71875L8.6875 12.7188C8.5 12.9062 8.25 13 8 13C7.71875 13 7.46875 12.9062 7.28125 12.7188C6.875 12.3438 6.875 11.6875 7.28125 11.3125L10.5625 8H1C0.4375 8 0 7.5625 0 7C0 6.46875 0.4375 6 1 6H10.5625L7.28125 2.71875C6.875 2.34375 6.875 1.6875 7.28125 1.3125C7.65625 0.90625 8.3125 0.90625 8.6875 1.3125L13.6875 6.3125C14.0938 6.6875 14.0938 7.34375 13.6875 7.71875Z' fill='%23fff'/%3E%3C/svg%3E");
}
.bg-dark.offsite {
  color: var(--radiant-flame);
}
.bg-dark.offsite::after {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12.7682 3.21602C12.9169 3.36518 12.9994 3.54748 12.9994 3.74635V8.25423C13.0159 8.66855 12.6691 9.01658 12.2562 9C11.8433 9.01658 11.4965 8.66855 11.513 8.25423L11.4965 4.49213L7.74374 4.49213C7.33084 4.5087 6.984 4.16067 7.00052 3.74635C6.984 3.33203 7.33084 2.984 7.74374 3.00058L12.2562 3.00058C12.4544 3.00058 12.6361 3.08344 12.7682 3.21602Z' fill='%23FFAF44'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M12.4697 3.53032C12.7626 3.82322 12.7565 4.30413 12.4562 4.60447L8.2929 8.76776C7.99255 9.0681 7.51164 9.07414 7.21875 8.78125C6.92585 8.48835 6.93189 8.00744 7.23224 7.7071L11.3955 3.54381C11.6959 3.24347 12.1768 3.23743 12.4697 3.53032Z' fill='%23FFAF44'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M5.5 1.5V10.5H14.5V1.5H5.5ZM4.25 0C4.11193 0 4 0.111929 4 0.25V11.75C4 11.8881 4.11193 12 4.25 12H15.75C15.8881 12 16 11.8881 16 11.75V0.25C16 0.111929 15.8881 0 15.75 0H4.25Z' fill='%23FFAF44'/%3E%3Cpath d='M4 5.5H1.5V14.5H10.5V12H12V15.75C12 15.8881 11.8881 16 11.75 16H0.25C0.111929 16 0 15.8881 0 15.75V4.25C0 4.11193 0.111929 4 0.25 4H4V5.5Z' fill='%23FFAF44'/%3E%3C/svg%3E");
}
.bg-dark.outlined {
  color: var(--radiant-flame);
  border: 2px solid var(--radiant-flame);
  background: none;
}
.bg-dark.outlined::after {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg width='15' height='13' viewBox='0 0 15 13' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M13.6875 7.71875L8.6875 12.7188C8.5 12.9062 8.25 13 8 13C7.71875 13 7.46875 12.9062 7.28125 12.7188C6.875 12.3438 6.875 11.6875 7.28125 11.3125L10.5625 8H1C0.4375 8 0 7.5625 0 7C0 6.46875 0.4375 6 1 6H10.5625L7.28125 2.71875C6.875 2.34375 6.875 1.6875 7.28125 1.3125C7.65625 0.90625 8.3125 0.90625 8.6875 1.3125L13.6875 6.3125C14.0938 6.6875 14.0938 7.34375 13.6875 7.71875Z' fill='%23f44414'/%3E%3C/svg%3E");
}
.bg-dark.outlined:hover {
  background: var(--radiant-flame);
  color: var(--white);
}
.bg-dark.outlined:hover::after {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg width='15' height='13' viewBox='0 0 15 13' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M13.6875 7.71875L8.6875 12.7188C8.5 12.9062 8.25 13 8 13C7.71875 13 7.46875 12.9062 7.28125 12.7188C6.875 12.3438 6.875 11.6875 7.28125 11.3125L10.5625 8H1C0.4375 8 0 7.5625 0 7C0 6.46875 0.4375 6 1 6H10.5625L7.28125 2.71875C6.875 2.34375 6.875 1.6875 7.28125 1.3125C7.65625 0.90625 8.3125 0.90625 8.6875 1.3125L13.6875 6.3125C14.0938 6.6875 14.0938 7.34375 13.6875 7.71875Z' fill='%23fff'/%3E%3C/svg%3E");
}
.bg-dark.outlined.orange {
  color: var(--radiant-flame);
  border: 1px solid var(--radiant-flame);
}
.bg-dark.outlined.orange::after {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg width='15' height='13' viewBox='0 0 15 13' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M13.6875 7.71875L8.6875 12.7188C8.5 12.9062 8.25 13 8 13C7.71875 13 7.46875 12.9062 7.28125 12.7188C6.875 12.3438 6.875 11.6875 7.28125 11.3125L10.5625 8H1C0.4375 8 0 7.5625 0 7C0 6.46875 0.4375 6 1 6H10.5625L7.28125 2.71875C6.875 2.34375 6.875 1.6875 7.28125 1.3125C7.65625 0.90625 8.3125 0.90625 8.6875 1.3125L13.6875 6.3125C14.0938 6.6875 14.0938 7.34375 13.6875 7.71875Z' fill='%23f44414'/%3E%3C/svg%3E");
}
.bg-dark.outlined.orange:hover {
  background: var(--white);
  color: var(--text-color);
}
.bg-dark.outlined.orange:hover::after {
  background: url("data:image/svg+xml;charset=utf8,%3Csvg width='15' height='13' viewBox='0 0 15 13' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M13.6875 7.71875L8.6875 12.7188C8.5 12.9062 8.25 13 8 13C7.71875 13 7.46875 12.9062 7.28125 12.7188C6.875 12.3438 6.875 11.6875 7.28125 11.3125L10.5625 8H1C0.4375 8 0 7.5625 0 7C0 6.46875 0.4375 6 1 6H10.5625L7.28125 2.71875C6.875 2.34375 6.875 1.6875 7.28125 1.3125C7.65625 0.90625 8.3125 0.90625 8.6875 1.3125L13.6875 6.3125C14.0938 6.6875 14.0938 7.34375 13.6875 7.71875Z' fill='%23f44414'/%3E%3C/svg%3E");
}
.bg-dark.outlined .module.form input,
.bg-dark.outlined .module.form select,
.bg-dark.outlined .module.form textarea {
  color: var(--white);
}
.bg-dark.outlined .module.form .gform_wrapper .validation_message {
  color: var(--inverse);
}
.bg-dark.outlined .module.form .gform_wrapper .validation_error {
  color: var(--inverse);
  border-color: var(--inverse);
}
.bg-dark.outlined .module.form .gform_wrapper ul.gform_fields li.gfield .ginput_container_checkbox .gfield_checkbox &gt; li label:before,
.bg-dark.outlined .module.form .gform_wrapper ul.gform_fields li.gfield .ginput_container_radio .gfield_radio &gt; li label:before {
  border-color: var(--inverse);
}
.bg-dark.outlined .module.form .gform_wrapper ul.gform_fields li.gfield .ginput_container_checkbox .gfield_checkbox &gt; li label:after,
.bg-dark.outlined .module.form .gform_wrapper ul.gform_fields li.gfield .ginput_container_radio .gfield_radio &gt; li label:after {
  background: var(--inverse) !important;
}
.bg-dark .bg-image {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}
.bg-dark .bg-video {
  position: relative;
}
.bg-dark .bg-video .video-overlay {
  overflow: hidden;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.bg-dark .bg-video .video-overlay video {
  transform: translate(-50%, -50%);
  left: 50%;
  position: absolute;
  min-width: 100%;
  min-height: 100%;
  top: 50%;
  object-fit: fill;
}
.bg-dark .bg-video &gt; * {
  position: relative;
  z-index: 2;
}
.bg-dark .bg-video .overlay,
.bg-dark .bg-image .overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
}
.bg-dark .bg-white {
  background: var(--white);
}
.bg-dark .bg-fff {
  background: #fff;
}
.bg-dark .bg-fff {
  background: #fff;
}
.bg-dark .bg-slate-mist {
  background: var(--slate-mist);
}
.bg-dark .bg-cool-wave {
  background: var(--cool-wave);
}
.bg-dark .bg-gradient-top {
  background: linear-gradient(var(--cool-wave), #fff 65%) !important;
}
.bg-dark .bg-gradient-bottom {
  background: linear-gradient(#fff, var(--cool-wave) 65%) !important;
}
.bg-dark .bg-violet {
  background: var(--slate-mist);
}
.bg-dark .bg-light-violet {
  background: var(--cool-wave);
}
.bg-dark .bg-dark-violet {
  background: var(--velvet-indigo);
}
.bg-dark .color-merigold {
  color: var(--radiant-flame);
}
.bg-dark .bg-merigold {
  background: var(--radiant-flame);
  color: var(--white);
}
.bg-dark .slate-mist {
  background: var(--slate-mist);
  color: var(--white);
}

.bg-merigold {
  background: var(--radiant-flame);
  color: var(--white);
}
.bg-merigold .button, .bg-merigold .menu li.button &gt; a, .menu .bg-merigold li.button &gt; a {
  background: transparent !important;
  color: var(--white);
  border: 2px solid var(--white) !important;
}

.bg-dark-violet .headline {
  color: var(--white);
}

.alignleft,
.alignright,
.alignnone,
.aligncenter {
  margin-left: auto;
  margin-right: auto;
  display: block;
  float: none;
  height: auto;
}
@media print, screen and (max-width: 25.93625em) {
  .alignleft,
  .alignright,
  .alignnone,
  .aligncenter {
    margin-top: 0.625rem;
  }
  .alignleft + p, p + .alignleft,
  .alignright + p,
  p + .alignright,
  .alignnone + p,
  p + .alignnone,
  .aligncenter + p,
  p + .aligncenter {
    margin-top: 0.9rem;
  }
}
@media print, screen and (max-width: 25.93625em) and (min-width: 48em) {
  .alignleft + p, p + .alignleft,
  .alignright + p,
  p + .alignright,
  .alignnone + p,
  p + .alignnone,
  .aligncenter + p,
  p + .aligncenter {
    margin-top: 1rem;
  }
}
@media print, screen and (max-width: 25.93625em) and (min-width: 64em) {
  .alignleft + p, p + .alignleft,
  .alignright + p,
  p + .alignright,
  .alignnone + p,
  p + .alignnone,
  .aligncenter + p,
  p + .aligncenter {
    margin-top: 1.25rem;
  }
}

.alignnone + p, p + .alignnone,
.aligncenter + p,
p + .aligncenter {
  margin-top: 0.9rem;
}
@media print, screen and (min-width: 48em) {
  .alignnone + p, p + .alignnone,
  .aligncenter + p,
  p + .aligncenter {
    margin-top: 1rem;
  }
}
@media print, screen and (min-width: 64em) {
  .alignnone + p, p + .alignnone,
  .aligncenter + p,
  p + .aligncenter {
    margin-top: 1.25rem;
  }
}

@media print, screen and (min-width: 48em) {
  .alignleft {
    float: left;
    margin-right: 0.625rem;
    margin-bottom: 0.625rem;
    margin-top: 0.625rem;
  }
  .alignright {
    float: right;
    margin-left: 0.625rem;
    margin-bottom: 0.625rem;
    margin-top: 0.625rem;
  }
  .alignnone {
    margin-left: 0;
    margin-right: 0;
  }
}
.noTopMargin {
  margin-top: 0 !important;
}

.smallTopMargin {
  margin-top: 2rem !important;
}

.smallMargins {
  margin: 1rem 0 !important;
}

.contentText1 {
  margin-top: 40px !important;
}

.addTopMargin {
  margin-top: 5rem !important;
}

.addBottomMargin {
  margin-bottom: 5rem !important;
}

.smallTopPadding {
  padding-top: 3rem;
}

.smallerTopPadding {
  padding-top: 2rem;
}

.padding-top-0 {
  padding-top: 0 !important;
}

.addPaddingTop1Rem {
  padding-top: 1rem !important;
}

.addPadd1 {
  padding-bottom: 10px !important;
}

.tm-0 {
  margin-top: 0;
}

.rm-0 {
  margin-right: 0;
}

.bm-0 {
  margin-bottom: 0;
}

.lm-0 {
  margin-left: 0;
}

.tm-80 {
  margin-top: 5rem;
}

.mb-130 {
  margin-bottom: 8.125rem;
}

.pull-top {
  margin-top: 0 !important;
}
[class^=bg-] + .pull-top[class^=bg-], [class*=bg-] + .pull-top[class*=bg-] {
  padding-top: 0 !important;
}

.pull-bottom {
  margin-bottom: 0 !important;
}
.pull-bottom + [class^=bg-],
.pull-bottom + [class*=bg-] {
  margin-top: 0 !important;
}
[class^=bg-] + .pull-bottom[class^=bg-], [class*=bg-] + .pull-bottom[class*=bg-] {
  padding-bottom: 0 !important;
}

.pull-vert {
  margin-bottom: 0 !important;
  margin-top: 0 !important;
}
.pull-vert + [class^=bg-],
.pull-vert + [class*=bg-] {
  margin-top: 0 !important;
}
.pull-vert[class^=bg-], .pull-vert[class*=bg-] {
  padding-bottom: 7.2rem;
  padding-top: 7.2rem;
}
@media print, screen and (min-width: 48em) {
  .pull-vert[class^=bg-], .pull-vert[class*=bg-] {
    padding-bottom: 8rem;
    padding-top: 8rem;
  }
}
@media print, screen and (min-width: 64em) {
  .pull-vert[class^=bg-], .pull-vert[class*=bg-] {
    padding-bottom: 10rem;
    padding-top: 10rem;
  }
}

.collapse-vert {
  margin-top: 0 !important;
}
.collapse-vert[class^=bg-], .collapse-vert[class*=bg-] {
  margin-top: 3.6rem;
  padding-bottom: 0 !important;
  padding-top: 0 !important;
}
@media print, screen and (min-width: 48em) {
  .collapse-vert[class^=bg-], .collapse-vert[class*=bg-] {
    margin-top: 4rem;
  }
}
@media print, screen and (min-width: 64em) {
  .collapse-vert[class^=bg-], .collapse-vert[class*=bg-] {
    margin-top: 5rem;
  }
}
.collapse-vert + [class^=bg-].collapse-vert,
.collapse-vert + [class*=bg-].collapse-vert {
  margin-top: 0 !important;
}

.push-vert {
  margin-bottom: 7.2rem !important;
  margin-top: 7.2rem !important;
}
@media print, screen and (min-width: 48em) {
  .push-vert {
    margin-bottom: 8rem !important;
    margin-top: 8rem !important;
  }
}
@media print, screen and (min-width: 64em) {
  .push-vert {
    margin-bottom: 10rem !important;
    margin-top: 10rem !important;
  }
}
.push-vert[class^=bg-], .push-vert[class*=bg-] {
  padding-bottom: 7.2rem !important;
  padding-top: 7.2rem !important;
}
@media print, screen and (min-width: 48em) {
  .push-vert[class^=bg-], .push-vert[class*=bg-] {
    padding-bottom: 8rem !important;
    padding-top: 8rem !important;
  }
}
@media print, screen and (min-width: 64em) {
  .push-vert[class^=bg-], .push-vert[class*=bg-] {
    padding-bottom: 10rem !important;
    padding-top: 10rem !important;
  }
}

.d-inline {
  display: inline !important;
}

.d-inline-block {
  display: inline-block !important;
}

.d-block {
  display: block !important;
}

.d-grid {
  display: grid !important;
}

.d-table {
  display: table !important;
}

.d-table-row {
  display: table-row !important;
}

.d-table-cell {
  display: table-cell !important;
}

.d-flex {
  display: flex !important;
}

.d-inline-flex {
  display: inline-flex !important;
}

.d-none {
  display: none !important;
}

.flex-row {
  flex-direction: row !important;
}

.flex-column {
  flex-direction: column !important;
}

.justify-content-start {
  justify-content: flex-start !important;
}

.justify-content-end {
  justify-content: flex-end !important;
}

.justify-content-center {
  justify-content: center !important;
}

.justify-content-between {
  justify-content: space-between !important;
}

.justify-content-around {
  justify-content: space-around !important;
}

.justify-content-evenly {
  justify-content: space-evenly !important;
}

.align-items-start {
  align-items: flex-start !important;
}

.align-items-end {
  align-items: flex-end !important;
}

.align-items-center {
  align-items: center !important;
}

.align-items-baseline {
  align-items: baseline !important;
}

.align-items-stretch {
  align-items: stretch !important;
}

.align-content-start {
  align-content: flex-start !important;
}

.align-content-end {
  align-content: flex-end !important;
}

.align-content-center {
  align-content: center !important;
}

.align-content-between {
  align-content: space-between !important;
}

.align-content-around {
  align-content: space-around !important;
}

.align-content-stretch {
  align-content: stretch !important;
}

.align-self-auto {
  align-self: auto !important;
}

.align-self-start {
  align-self: flex-start !important;
}

.align-self-end {
  align-self: flex-end !important;
}

.align-self-center {
  align-self: center !important;
}

.align-self-baseline {
  align-self: baseline !important;
}

.align-self-stretch {
  align-self: stretch !important;
}

.order-first {
  order: -1 !important;
}

.order-0 {
  order: 0 !important;
}

.order-1 {
  order: 1 !important;
}

.order-2 {
  order: 2 !important;
}

.order-3 {
  order: 3 !important;
}

.order-4 {
  order: 4 !important;
}

.order-5 {
  order: 5 !important;
}

.order-last {
  order: 6 !important;
}

.text-left {
  text-align: left !important;
}

.text-right {
  text-align: right !important;
}

.text-center {
  text-align: center !important;
}

@media print, screen and (min-width: 48em) {
  .d-md-inline {
    display: inline !important;
  }
  .d-md-inline-block {
    display: inline-block !important;
  }
  .d-md-block {
    display: block !important;
  }
  .d-md-grid {
    display: grid !important;
  }
  .d-md-table {
    display: table !important;
  }
  .d-md-table-row {
    display: table-row !important;
  }
  .d-md-table-cell {
    display: table-cell !important;
  }
  .d-md-flex {
    display: flex !important;
  }
  .d-md-inline-flex {
    display: inline-flex !important;
  }
  .d-md-none {
    display: none !important;
  }
  .flex-md-row {
    flex-direction: row !important;
  }
  .flex-md-column {
    flex-direction: column !important;
  }
  .justify-content-md-start {
    justify-content: flex-start !important;
  }
  .justify-content-md-end {
    justify-content: flex-end !important;
  }
  .justify-content-md-center {
    justify-content: center !important;
  }
  .justify-content-md-between {
    justify-content: space-between !important;
  }
  .justify-content-md-around {
    justify-content: space-around !important;
  }
  .justify-content-md-evenly {
    justify-content: space-evenly !important;
  }
  .align-items-md-start {
    align-items: flex-start !important;
  }
  .align-items-md-end {
    align-items: flex-end !important;
  }
  .align-items-md-center {
    align-items: center !important;
  }
  .align-items-md-baseline {
    align-items: baseline !important;
  }
  .align-items-md-stretch {
    align-items: stretch !important;
  }
  .align-content-md-start {
    align-content: flex-start !important;
  }
  .align-content-md-end {
    align-content: flex-end !important;
  }
  .align-content-md-center {
    align-content: center !important;
  }
  .align-content-md-between {
    align-content: space-between !important;
  }
  .align-content-md-around {
    align-content: space-around !important;
  }
  .align-content-md-stretch {
    align-content: stretch !important;
  }
  .align-self-md-auto {
    align-self: auto !important;
  }
  .align-self-md-start {
    align-self: flex-start !important;
  }
  .align-self-md-end {
    align-self: flex-end !important;
  }
  .align-self-md-center {
    align-self: center !important;
  }
  .align-self-md-baseline {
    align-self: baseline !important;
  }
  .align-self-md-stretch {
    align-self: stretch !important;
  }
  .order-md-first {
    order: -1 !important;
  }
  .order-md-0 {
    order: 0 !important;
  }
  .order-md-1 {
    order: 1 !important;
  }
  .order-md-2 {
    order: 2 !important;
  }
  .order-md-3 {
    order: 3 !important;
  }
  .order-md-4 {
    order: 4 !important;
  }
  .order-md-5 {
    order: 5 !important;
  }
  .order-md-last {
    order: 6 !important;
  }
  .text-md-left {
    text-align: left !important;
  }
  .text-md-right {
    text-align: right !important;
  }
  .text-md-center {
    text-align: center !important;
  }
}
@media print, screen and (min-width: 64em) {
  .d-lg-inline {
    display: inline !important;
  }
  .d-lg-inline-block {
    display: inline-block !important;
  }
  .d-lg-block {
    display: block !important;
  }
  .d-lg-grid {
    display: grid !important;
  }
  .d-lg-table {
    display: table !important;
  }
  .d-lg-table-row {
    display: table-row !important;
  }
  .d-lg-table-cell {
    display: table-cell !important;
  }
  .d-lg-flex {
    display: flex !important;
  }
  .d-lg-inline-flex {
    display: inline-flex !important;
  }
  .d-lg-none {
    display: none !important;
  }
  .flex-lg-row {
    flex-direction: row !important;
  }
  .flex-lg-column {
    flex-direction: column !important;
  }
  .justify-content-lg-start {
    justify-content: flex-start !important;
  }
  .justify-content-lg-end {
    justify-content: flex-end !important;
  }
  .justify-content-lg-center {
    justify-content: center !important;
  }
  .justify-content-lg-between {
    justify-content: space-between !important;
  }
  .justify-content-lg-around {
    justify-content: space-around !important;
  }
  .justify-content-lg-evenly {
    justify-content: space-evenly !important;
  }
  .align-items-lg-start {
    align-items: flex-start !important;
  }
  .align-items-lg-end {
    align-items: flex-end !important;
  }
  .align-items-lg-center {
    align-items: center !important;
  }
  .align-items-lg-baseline {
    align-items: baseline !important;
  }
  .align-items-lg-stretch {
    align-items: stretch !important;
  }
  .align-content-lg-start {
    align-content: flex-start !important;
  }
  .align-content-lg-end {
    align-content: flex-end !important;
  }
  .align-content-lg-center {
    align-content: center !important;
  }
  .align-content-lg-between {
    align-content: space-between !important;
  }
  .align-content-lg-around {
    align-content: space-around !important;
  }
  .align-content-lg-stretch {
    align-content: stretch !important;
  }
  .align-self-lg-auto {
    align-self: auto !important;
  }
  .align-self-lg-start {
    align-self: flex-start !important;
  }
  .align-self-lg-end {
    align-self: flex-end !important;
  }
  .align-self-lg-center {
    align-self: center !important;
  }
  .align-self-lg-baseline {
    align-self: baseline !important;
  }
  .align-self-lg-stretch {
    align-self: stretch !important;
  }
  .order-lg-first {
    order: -1 !important;
  }
  .order-lg-0 {
    order: 0 !important;
  }
  .order-lg-1 {
    order: 1 !important;
  }
  .order-lg-2 {
    order: 2 !important;
  }
  .order-lg-3 {
    order: 3 !important;
  }
  .order-lg-4 {
    order: 4 !important;
  }
  .order-lg-5 {
    order: 5 !important;
  }
  .order-lg-last {
    order: 6 !important;
  }
  .text-lg-left {
    text-align: left !important;
  }
  .text-lg-right {
    text-align: right !important;
  }
  .text-lg-center {
    text-align: center !important;
  }
}
@media screen and (min-width: 80em) {
  .d-xl-inline {
    display: inline !important;
  }
  .d-xl-inline-block {
    display: inline-block !important;
  }
  .d-xl-block {
    display: block !important;
  }
  .d-xl-grid {
    display: grid !important;
  }
  .d-xl-table {
    display: table !important;
  }
  .d-xl-table-row {
    display: table-row !important;
  }
  .d-xl-table-cell {
    display: table-cell !important;
  }
  .d-xl-flex {
    display: flex !important;
  }
  .d-xl-inline-flex {
    display: inline-flex !important;
  }
  .d-xl-none {
    display: none !important;
  }
  .flex-xl-row {
    flex-direction: row !important;
  }
  .flex-xl-column {
    flex-direction: column !important;
  }
  .justify-content-xl-start {
    justify-content: flex-start !important;
  }
  .justify-content-xl-end {
    justify-content: flex-end !important;
  }
  .justify-content-xl-center {
    justify-content: center !important;
  }
  .justify-content-xl-between {
    justify-content: space-between !important;
  }
  .justify-content-xl-around {
    justify-content: space-around !important;
  }
  .justify-content-xl-evenly {
    justify-content: space-evenly !important;
  }
  .align-items-xl-start {
    align-items: flex-start !important;
  }
  .align-items-xl-end {
    align-items: flex-end !important;
  }
  .align-items-xl-center {
    align-items: center !important;
  }
  .align-items-xl-baseline {
    align-items: baseline !important;
  }
  .align-items-xl-stretch {
    align-items: stretch !important;
  }
  .align-content-xl-start {
    align-content: flex-start !important;
  }
  .align-content-xl-end {
    align-content: flex-end !important;
  }
  .align-content-xl-center {
    align-content: center !important;
  }
  .align-content-xl-between {
    align-content: space-between !important;
  }
  .align-content-xl-around {
    align-content: space-around !important;
  }
  .align-content-xl-stretch {
    align-content: stretch !important;
  }
  .align-self-xl-auto {
    align-self: auto !important;
  }
  .align-self-xl-start {
    align-self: flex-start !important;
  }
  .align-self-xl-end {
    align-self: flex-end !important;
  }
  .align-self-xl-center {
    align-self: center !important;
  }
  .align-self-xl-baseline {
    align-self: baseline !important;
  }
  .align-self-xl-stretch {
    align-self: stretch !important;
  }
  .order-xl-first {
    order: -1 !important;
  }
  .order-xl-0 {
    order: 0 !important;
  }
  .order-xl-1 {
    order: 1 !important;
  }
  .order-xl-2 {
    order: 2 !important;
  }
  .order-xl-3 {
    order: 3 !important;
  }
  .order-xl-4 {
    order: 4 !important;
  }
  .order-xl-5 {
    order: 5 !important;
  }
  .order-xl-last {
    order: 6 !important;
  }
  .text-xl-left {
    text-align: left !important;
  }
  .text-xl-right {
    text-align: right !important;
  }
  .text-xl-center {
    text-align: center !important;
  }
}
.grid-container {
  max-width: 75.625rem;
  padding: 0 0.9375rem;
}

.off-canvas-content {
  width: 100%;
  margin: 0 auto;
  background-color: var(--cool-wave);
  position: relative;
}

.gform_wrapper.gravity-theme fieldset, .gform_wrapper.gravity-theme legend {
  background: 0 0;
  padding: 0;
}

.gform_wrapper.gravity-theme fieldset {
  border: none;
  display: block;
  margin: 0;
}

.gform_wrapper.gravity-theme legend {
  margin-left: 0;
  margin-right: 0;
}

.gform-ul-reset {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

.gform-text-input-reset, body[class*=avada] input:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=button]):not([type=image]):not([type=file]).gform-text-input-reset, input.gform-text-input-reset {
  background-color: transparent;
  border: none;
  border-radius: 0;
  border-color: transparent;
  font-family: inherit;
  font-size: inherit;
  outline: 0;
  padding: inherit;
}

@font-face {
  font-family: gform-icons-theme;
  src: url(../fonts/gform-icons-theme.woff2?a2cayk) format("woff2"), url(../fonts/gform-icons-theme.ttf?a2cayk) format("truetype"), url(../fonts/gform-icons-theme.woff?a2cayk) format("woff"), url(../fonts/gform-icons-theme.svg?a2cayk#gform-icons-theme) format("svg");
  font-weight: 400;
  font-style: normal;
  font-display: block;
}
.gform-icon {
  font-family: gform-icons-theme !important;
  speak: never;
  font-style: normal;
  font-weight: 400;
  font-feature-settings: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.gform-icon--left-arrow:before {
  content: "\E910";
  color: #2f4054;
}

.gform-icon--right-arrow:before {
  content: "\E91B";
  color: #2f4054;
}

.gform-icon--circle-error:before {
  content: "\E91A";
}

.gform-icon--close-small:before {
  content: "\E905";
}

.gform-icon--info:before {
  content: "\E900";
}

.gform-icon--verified:before {
  content: "\E901";
}

.gform-icon--circle-check:before {
  content: "\E902";
}

.gform-icon--close:before {
  content: "\E903";
}

.gform-icon--close-big:before {
  content: "\E904";
}

.gform-icon--down-arrow:before {
  content: "\E906";
}

.gform-icon--format-bold:before {
  content: "\E907";
}

.gform-icon--format-italic:before {
  content: "\E908";
}

.gform-icon--format-list-bulleted:before {
  content: "\E909";
}

.gform-icon--format-list-numbered:before {
  content: "\E90A";
}

.gform-icon--insert-link:before {
  content: "\E90B";
}

.gform-icon--line:before {
  content: "\E90C";
}

.gform-icon--password-eye:before {
  content: "\E90D";
}

.gform-icon--password-eye-closed:before {
  content: "\E90E";
}

.gform-icon--redo:before {
  content: "\E90F";
}

.gform-icon--schedule:before {
  content: "\E911";
}

.gform-icon--clock:before {
  content: "\E912";
}

.gform-icon--search:before {
  content: "\E913";
}

.gform-icon--star:before {
  content: "\E914";
}

.gform-icon--star-border:before {
  content: "\E915";
}

.gform-icon--star-half:before {
  content: "\E916";
}

.gform-icon--check:before {
  content: "\E917";
}

.gform-icon--undo:before {
  content: "\E918";
}

.gform-icon--unfold-more:before {
  content: "\E919";
}

.gform-icon--create:before {
  content: "\E91C";
}

.gform-icon--cog:before {
  content: "\E91D";
}

.gform_drop_area {
  padding: 32px;
  border: 1px dashed #ccc;
  text-align: center;
  margin-bottom: 8px;
  background: rgba(0, 0, 0, 0.02);
  border-radius: 4px;
}

.gform_drop_instructions {
  display: block;
  margin-bottom: 8px;
}

.gform_delete, .gform_delete_file {
  vertical-align: middle;
  cursor: pointer;
}

.gform_delete_file {
  appearance: none;
  background: 0 0;
  border: none;
}

.gfield_validation_message ul {
  padding-left: 24px;
  margin: 16px 0;
}

.gfield_validation_message ul:empty {
  display: none;
}

.ginput_preview {
  margin: 16px 0;
}

.gform_fileupload_rules {
  display: block;
  margin-top: 8px;
}

.ginput_container_password &gt; span {
  position: relative;
}

.gform_show_password:focus {
  outline: 0;
}

.gform_show_password {
  position: absolute;
  right: 20px;
  top: 0;
  background-color: inherit;
  border: none;
  cursor: pointer;
  padding: 0;
  height: 100%;
}

.password_input_container {
  display: block;
  position: relative;
}

.gfield_password_strength {
  border: 1px solid #ddd;
  margin-top: 8px;
  padding: 8px;
  text-align: center;
  background-color: #eee;
  border-bottom: 3px solid #ddd;
}

.field_sublabel_above .gfield_password_strength {
  margin-top: 16px;
}

.gfield_password_strength .mismatch, .gfield_password_strength .short {
  background-color: #ffa0a0;
  border-color: #f04040;
  border-bottom: 3px solid #f04040;
}

.gfield_password_strength .bad {
  background-color: #ffb78c;
  border-color: #ff853c;
  border-bottom: 3px solid #ff853c;
}

.gfield_password_strength .good {
  background-color: #ffec8b;
  border-color: #fc0;
  border-bottom: 3px solid #fc0;
}

.gfield_password_strength .strong {
  background-color: #c3ff88;
  border-color: #8dff1c;
  border-bottom: 3px solid #8dff1c;
}

.ui-datepicker:not(.gform-legacy-datepicker) {
  background-color: #fff;
  border: 1px solid rgba(0, 0, 0, 0.1);
  padding: 8px;
  margin: 2.4px;
  display: none;
  box-shadow: 0 1px 5px rgba(0, 0, 0, 0.1);
}

.ui-datepicker:not(.gform-legacy-datepicker)[style] {
  z-index: 9999 !important;
}

.ui-datepicker:not(.gform-legacy-datepicker) .ui-datepicker-header {
  position: relative;
  padding: 0 8px 8px;
  margin: 0 -8px 8px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.ui-datepicker:not(.gform-legacy-datepicker) .ui-datepicker-next, .ui-datepicker:not(.gform-legacy-datepicker) .ui-datepicker-prev {
  position: absolute;
  cursor: pointer;
}

.ui-datepicker:not(.gform-legacy-datepicker) .ui-datepicker-next:before, .ui-datepicker:not(.gform-legacy-datepicker) .ui-datepicker-prev:before {
  border-style: solid;
  border-width: 0.18em 0.18em 0 0;
  content: "";
  display: inline-block;
  height: 0.55em;
  left: 0.15em;
  position: relative;
  top: 0.3em;
  transform: rotate(-135deg);
  vertical-align: top;
  width: 0.55em;
}

.ui-datepicker:not(.gform-legacy-datepicker) .ui-datepicker-next .ui-icon, .ui-datepicker:not(.gform-legacy-datepicker) .ui-datepicker-prev .ui-icon {
  display: none;
}

.ui-datepicker:not(.gform-legacy-datepicker) .ui-datepicker-prev {
  left: 16px;
}

.ui-datepicker:not(.gform-legacy-datepicker) .ui-datepicker-next {
  right: 16px;
}

.ui-datepicker:not(.gform-legacy-datepicker) .ui-datepicker-next:before {
  left: 0;
  transform: rotate(45deg);
}

.ui-datepicker:not(.gform-legacy-datepicker) .ui-datepicker-title {
  text-align: center;
}

.ui-datepicker:not(.gform-legacy-datepicker) .ui-datepicker-title select {
  margin: 0 4px;
}

.ui-datepicker:not(.gform-legacy-datepicker) .ui-datepicker table {
  border-spacing: 0;
  margin: 0;
}

.ui-datepicker:not(.gform-legacy-datepicker) .ui-datepicker thead {
  font-size: 0.85em;
}

.ui-datepicker:not(.gform-legacy-datepicker) .ui-datepicker td {
  padding: 0;
  width: 35.2px;
}

.ui-datepicker:not(.gform-legacy-datepicker) a.ui-state-default {
  display: block;
  width: 100%;
  line-height: 35.2px;
  text-align: center;
  color: #222;
  text-decoration: none;
  border-radius: 50%;
}

.ui-datepicker:not(.gform-legacy-datepicker) a.ui-state-default:hover {
  background-color: rgba(0, 0, 0, 0.1);
}

.ui-datepicker:not(.gform-legacy-datepicker) a.ui-state-active, .ui-datepicker:not(.gform-legacy-datepicker) a.ui-state-active:hover {
  background-color: #3498db;
  color: #fff;
}

::-ms-reveal {
  display: none;
}

.gform_validation_container, .gform_wrapper.gravity-theme .gform_validation_container, body .gform_wrapper.gravity-theme .gform_body .gform_fields .gfield.gform_validation_container, body .gform_wrapper.gravity-theme .gform_fields .gfield.gform_validation_container, body .gform_wrapper.gravity-theme .gform_validation_container {
  display: none !important;
  position: absolute !important;
  left: -9000px;
}

.gform_wrapper.gravity-theme .chosen-container {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  font-size: 16px;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.gform_wrapper.gravity-theme .chosen-container * {
  box-sizing: border-box;
}

.gform_wrapper.gravity-theme .chosen-container .chosen-drop {
  position: absolute;
  top: 100%;
  z-index: 1010;
  width: 100%;
  border: 1px solid #aaa;
  border-top: 0;
  background: #fff;
  box-shadow: 0 4px 5px rgba(0, 0, 0, 0.15);
  display: none;
}

.gform_wrapper.gravity-theme .chosen-container.chosen-with-drop .chosen-drop {
  display: block;
}

.gform_wrapper.gravity-theme .chosen-container a {
  cursor: pointer;
}

.gform_wrapper.gravity-theme .chosen-container .chosen-single .group-name, .gform_wrapper.gravity-theme .chosen-container .search-choice .group-name {
  margin-right: 4px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  font-weight: 400;
  color: #999;
}

.gform_wrapper.gravity-theme .chosen-container .chosen-single .group-name:after, .gform_wrapper.gravity-theme .chosen-container .search-choice .group-name:after {
  content: ":";
  padding-left: 2px;
  vertical-align: top;
}

.gform_wrapper.gravity-theme .chosen-container-single .chosen-single {
  position: relative;
  display: block;
  overflow: hidden;
  padding: 0 0 0 8px;
  height: 40px;
  border: 1px solid #aaa;
  border-radius: 5px;
  background-color: #fff;
  background: linear-gradient(#fff 20%, #f6f6f6 50%, #eee 52%, #f4f4f4 100%);
  background-clip: padding-box;
  box-shadow: 0 0 3px #fff inset, 0 1px 1px rgba(0, 0, 0, 0.1);
  color: #444;
  text-decoration: none;
  white-space: nowrap;
  line-height: 24px;
}

.gform_wrapper.gravity-theme .chosen-container-single .chosen-single input[type=text] {
  cursor: pointer;
  opacity: 0;
  position: absolute;
  width: 0;
}

.gform_wrapper.gravity-theme .chosen-container-single .chosen-default {
  color: #999;
}

.gform_wrapper.gravity-theme .chosen-container-single .chosen-single span {
  display: block;
  overflow: hidden;
  margin-right: 24px;
  text-overflow: ellipsis;
  white-space: nowrap;
  line-height: 38.4px;
}

.gform_wrapper.gravity-theme .chosen-container-single .chosen-single-with-deselect span {
  margin-right: 36px;
}

.gform_wrapper.gravity-theme .chosen-container-single .chosen-single abbr {
  position: absolute;
  top: 6px;
  right: 26px;
  display: block;
  width: 12px;
  height: 12px;
  background: url(../legacy/css/chosen-sprite.png) -42px 1px no-repeat;
  font-size: 1px;
}

.gform_wrapper.gravity-theme .chosen-container-single .chosen-single abbr:hover {
  background-position: -42px -10px;
}

.gform_wrapper.gravity-theme .chosen-container-single.chosen-disabled .chosen-single abbr:hover {
  background-position: -42px -10px;
}

.gform_wrapper.gravity-theme .chosen-container-single .chosen-single div {
  position: absolute;
  top: 0;
  right: 0;
  display: block;
  width: 18px;
  height: 100%;
}

.gform_wrapper.gravity-theme .chosen-container-single .chosen-single div b {
  display: block;
  width: 100%;
  height: 100%;
  background: url(../legacy/css/chosen-sprite.png) no-repeat 0 10px;
}

.gform_wrapper.gravity-theme .chosen-container-single .chosen-search {
  position: relative;
  z-index: 1010;
  margin: 0;
  padding: 3px 4px;
  white-space: nowrap;
}

.gform_wrapper.gravity-theme .chosen-container-single .chosen-search input[type=text] {
  margin: 1px 0;
  padding: 4px 20px 4px 5px;
  width: 100%;
  height: auto;
  outline: 0;
  border: 1px solid #aaa;
  background: url(../legacy/css/chosen-sprite.png) no-repeat 100% -20px;
  font-size: 1em;
  font-family: sans-serif;
  line-height: normal;
  border-radius: 0;
}

.gform_wrapper.gravity-theme .chosen-container-single .chosen-drop {
  margin-top: -1px;
  border-radius: 0 0 4px 4px;
  background-clip: padding-box;
}

.gform_wrapper.gravity-theme .chosen-container-single.chosen-container-single-nosearch .chosen-search {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.gform_wrapper.gravity-theme .chosen-container .chosen-results {
  color: #444;
  position: relative;
  overflow-x: hidden;
  overflow-y: auto;
  margin: 0 4px 4px 0;
  padding: 0 0 0 4px;
  max-height: 240px;
  -webkit-overflow-scrolling: touch;
}

.gform_wrapper.gravity-theme .chosen-container .chosen-results li {
  display: none;
  margin: 0;
  padding: 5px 6px;
  list-style: none;
  line-height: 15px;
  word-wrap: break-word;
  -webkit-touch-callout: none;
}

.gform_wrapper.gravity-theme .chosen-container .chosen-results li.active-result {
  display: list-item;
  cursor: pointer;
}

.gform_wrapper.gravity-theme .chosen-container .chosen-results li.disabled-result {
  display: list-item;
  color: #ccc;
  cursor: default;
}

.gform_wrapper.gravity-theme .chosen-container .chosen-results li.highlighted {
  background-color: #3875d7;
  background-image: linear-gradient(#3875d7 20%, #2a62bc 90%);
  color: #fff;
}

.gform_wrapper.gravity-theme .chosen-container .chosen-results li.no-results {
  color: #777;
  display: list-item;
  background: #f4f4f4;
}

.gform_wrapper.gravity-theme .chosen-container .chosen-results li.group-result {
  display: list-item;
  font-weight: 700;
  cursor: default;
}

.gform_wrapper.gravity-theme .chosen-container .chosen-results li.group-option {
  padding-left: 15px;
}

.gform_wrapper.gravity-theme .chosen-container .chosen-results li em {
  font-style: normal;
  text-decoration: underline;
}

.gform_wrapper.gravity-theme .chosen-container-multi .chosen-choices {
  position: relative;
  overflow: hidden;
  margin: 0;
  padding: 8px;
  width: 100%;
  height: auto;
  border: 1px solid #aaa;
  background-color: #fff;
  cursor: text;
}

.gform_wrapper.gravity-theme .chosen-container-multi .chosen-choices li {
  float: left;
  list-style: none;
}

.gform_wrapper.gravity-theme .chosen-container-multi .chosen-choices li.search-field {
  margin: 0;
  padding: 0;
  white-space: nowrap;
}

.gform_wrapper.gravity-theme .chosen-container-multi .chosen-choices li.search-field input[type=text] {
  margin: 1px 0;
  padding: 0;
  height: 25px;
  outline: 0;
  border: 0 !important;
  background: 0 0 !important;
  box-shadow: none;
  color: #999;
  font-size: 100%;
  font-family: sans-serif;
  line-height: normal;
  border-radius: 0;
  width: 25px;
}

.gform_wrapper.gravity-theme .chosen-container-multi .chosen-choices li.search-choice {
  position: relative;
  margin: 3px 5px 3px 0;
  padding: 3px 20px 3px 5px;
  border: 1px solid #aaa;
  max-width: 100%;
  border-radius: 3px;
  background-color: #eee;
  background-image: linear-gradient(#f4f4f4 20%, #f0f0f0 50%, #e8e8e8 52%, #eee 100%);
  background-size: 100% 19px;
  background-repeat: repeat-x;
  background-clip: padding-box;
  box-shadow: 0 0 2px #fff inset, 0 1px 0 rgba(0, 0, 0, 0.05);
  color: #333;
  line-height: 13px;
  cursor: default;
}

.gform_wrapper.gravity-theme .chosen-container-multi .chosen-choices li.search-choice span {
  word-wrap: break-word;
}

.gform_wrapper.gravity-theme .chosen-container-multi .chosen-choices li.search-choice .search-choice-close {
  position: absolute;
  top: 4px;
  right: 3px;
  display: block;
  width: 12px;
  height: 12px;
  background: url(../legacy/css/chosen-sprite.png) -42px 1px no-repeat;
  font-size: 1px;
}

.gform_wrapper.gravity-theme .chosen-container-multi .chosen-choices li.search-choice .search-choice-close:hover {
  background-position: -42px -10px;
}

.gform_wrapper.gravity-theme .chosen-container-multi .chosen-choices li.search-choice-disabled {
  padding-right: 5px;
  border: 1px solid #ccc;
  background-color: #e4e4e4;
  background-image: linear-gradient(#f4f4f4 20%, #f0f0f0 50%, #e8e8e8 52%, #eee 100%);
  color: #666;
}

.gform_wrapper.gravity-theme .chosen-container-multi .chosen-choices li.search-choice-focus {
  background: #d4d4d4;
}

.gform_wrapper.gravity-theme .chosen-container-multi .chosen-choices li.search-choice-focus .search-choice-close {
  background-position: -42px -10px;
}

.gform_wrapper.gravity-theme .chosen-container-multi .chosen-results {
  margin: 0;
  padding: 0;
}

.gform_wrapper.gravity-theme .chosen-container-multi .chosen-drop .result-selected {
  display: list-item;
  color: #ccc;
  cursor: default;
}

.gform_wrapper.gravity-theme .chosen-container-active .chosen-single {
  border: 1px solid #5897fb;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
}

.gform_wrapper.gravity-theme .chosen-container-active.chosen-with-drop .chosen-single {
  border: 1px solid #aaa;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
  background-image: linear-gradient(#eee 20%, #fff 80%);
  box-shadow: 0 1px 0 #fff inset;
}

.gform_wrapper.gravity-theme .chosen-container-active.chosen-with-drop .chosen-single div {
  border-left: none;
  background: 0 0;
}

.gform_wrapper.gravity-theme .chosen-container-active.chosen-with-drop .chosen-single div b {
  background-position: -18px 10px;
}

.gform_wrapper.gravity-theme .chosen-container-active .chosen-choices {
  border: 1px solid #5897fb;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
}

.gform_wrapper.gravity-theme .chosen-container-active .chosen-choices li.search-field input[type=text] {
  color: #222 !important;
}

.gform_wrapper.gravity-theme .chosen-disabled {
  opacity: 0.5 !important;
  cursor: default;
}

.gform_wrapper.gravity-theme .chosen-disabled .chosen-single {
  cursor: default;
}

.gform_wrapper.gravity-theme .chosen-disabled .chosen-choices .search-choice .search-choice-close {
  cursor: default;
}

.gform_wrapper.gravity-theme .chosen-rtl {
  text-align: right;
}

.gform_wrapper.gravity-theme .chosen-rtl .chosen-single {
  overflow: visible;
  padding: 0 8px 0 0;
}

.gform_wrapper.gravity-theme .chosen-rtl .chosen-single span {
  margin-right: 0;
  margin-left: 26px;
  direction: rtl;
}

.gform_wrapper.gravity-theme .chosen-rtl .chosen-single-with-deselect span {
  margin-left: 38px;
}

.gform_wrapper.gravity-theme .chosen-rtl .chosen-single div {
  right: auto;
  left: 3px;
}

.gform_wrapper.gravity-theme .chosen-rtl .chosen-single abbr {
  right: auto;
  left: 26px;
}

.gform_wrapper.gravity-theme .chosen-rtl .chosen-choices li {
  float: right;
}

.gform_wrapper.gravity-theme .chosen-rtl .chosen-choices li.search-field input[type=text] {
  direction: rtl;
}

.gform_wrapper.gravity-theme .chosen-rtl .chosen-choices li.search-choice {
  margin: 3px 5px 3px 0;
  padding: 3px 5px 3px 19px;
}

.gform_wrapper.gravity-theme .chosen-rtl .chosen-choices li.search-choice .search-choice-close {
  right: auto;
  left: 4px;
}

.gform_wrapper.gravity-theme .chosen-rtl.chosen-container-single .chosen-results {
  margin: 0 0 4px 4px;
  padding: 0 4px 0 0;
}

.gform_wrapper.gravity-theme .chosen-rtl .chosen-results li.group-option {
  padding-right: 15px;
  padding-left: 0;
}

.gform_wrapper.gravity-theme .chosen-rtl.chosen-container-active.chosen-with-drop .chosen-single div {
  border-right: none;
}

.gform_wrapper.gravity-theme .chosen-rtl .chosen-search input[type=text] {
  padding: 4px 5px 4px 20px;
  background: url(../legacy/css/chosen-sprite.png) no-repeat -30px -20px;
  direction: rtl;
}

.gform_wrapper.gravity-theme .chosen-rtl.chosen-container-single .chosen-single div b {
  background-position: 6px 2px;
}

.gform_wrapper.gravity-theme .chosen-rtl.chosen-container-single.chosen-with-drop .chosen-single div b {
  background-position: -12px 2px;
}

@media only screen and (min-resolution: 144dpi), only screen and (min-resolution: 1.5dppx) {
  .gform_wrapper.gravity-theme .chosen-container .chosen-results-scroll-down span, .gform_wrapper.gravity-theme .chosen-container .chosen-results-scroll-up span, .gform_wrapper.gravity-theme .chosen-container-multi .chosen-choices .search-choice .search-choice-close, .gform_wrapper.gravity-theme .chosen-container-single .chosen-search input[type=text], .gform_wrapper.gravity-theme .chosen-container-single .chosen-single abbr, .gform_wrapper.gravity-theme .chosen-container-single .chosen-single div b, .gform_wrapper.gravity-theme .chosen-rtl .chosen-search input[type=text] {
    background-image: url(../legacy/css/chosen-sprite@2x.png) !important;
    background-size: 52px 37px !important;
    background-repeat: no-repeat !important;
  }
}
body .gform_wrapper.gravity-theme .chosen-container a.chosen-single {
  border-radius: inherit;
}

body .gform_wrapper.gravity-theme ul.chosen-results li {
  line-height: inherit;
}

@media only screen and (max-width: 641px) {
  .gform_wrapper.gravity-theme input:not([type=radio]):not([type=checkbox]):not([type=image]):not([type=file]) {
    line-height: 2;
    min-height: 32px;
  }
  .gform_wrapper.gravity-theme textarea {
    line-height: 1.5;
  }
  .gform_wrapper.gravity-theme .chosen-container.chosen-container-single[style] {
    width: 100% !important;
  }
  .gform_wrapper.gravity-theme .chosen-container-single .chosen-single {
    height: 40px;
    line-height: 2.8;
  }
  .gform_wrapper.gravity-theme .chosen-container-single .chosen-single div b {
    position: relative;
    top: 10px;
  }
  .gform_wrapper.gravity-theme div.chosen-container.chosen-container-multi[style] {
    width: 100% !important;
  }
  .gform_wrapper.gravity-theme .chosen-container.chosen-container-multi ul.chosen-choices li.search-choice, .gform_wrapper.gravity-theme .chosen-container.chosen-container-multi ul.chosen-choices li.search-field {
    width: 100%;
    line-height: inherit;
    float: none;
  }
  .gform_wrapper.gravity-theme .chosen-container.chosen-container-multi ul.chosen-choices li.search-choice span {
    margin-bottom: 0;
  }
  .gform_wrapper.gravity-theme .chosen-container-multi .chosen-choices li.search-choice .search-choice-close {
    top: calc(50% - 6px);
  }
  .gform_wrapper.gravity-theme .chosen-container span:not(.ginput_price) {
    margin-bottom: 8px;
    display: block;
  }
  .gform_wrapper.gravity-theme li.field_sublabel_below .ginput_complex {
    margin-top: 12px !important;
  }
  .gform_wrapper.gravity-theme ul.gfield_checkbox li label, .gform_wrapper.gravity-theme ul.gfield_radio li label {
    width: 85%;
    cursor: pointer;
  }
}
@media only screen and (min-width: 641px) {
  body .gform_wrapper.gravity-theme select.medium.gfield_select + div.chosen-container-multi[style], body .gform_wrapper.gravity-theme select.medium.gfield_select + div.chosen-container-single[style] {
    width: calc(50% - 8px) !important;
  }
  body .gform_wrapper.gravity-theme select.large.gfield_select + div.chosen-container-multi[style], body .gform_wrapper.gravity-theme select.large.gfield_select + div.chosen-container-single[style] {
    width: 100% !important;
  }
  body .gform_wrapper.gravity-theme select.small.gfield_select + div.chosen-container-multi[style], body .gform_wrapper.gravity-theme select.small.gfield_select + div.chosen-container-single[style] {
    width: 25% !important;
  }
}
.gform_wrapper.gravity-theme .gf_hide_ampm .gfield_time_ampm {
  display: none !important;
}

.gform_wrapper.gravity-theme .gf_invisible, .gform_wrapper.gravity-theme .gfield_visibility_hidden {
  visibility: hidden;
  position: absolute;
  left: -9999px;
}

.gform_wrapper.gravity-theme .gf_hide_charleft div.charleft {
  display: none !important;
}

.gform_wrapper.gravity-theme .gf_hidden, .gform_wrapper.gravity-theme .gform_hidden {
  display: none;
}

.gform_wrapper.gravity-theme .hidden_label .gfield_label, .gform_wrapper.gravity-theme .hidden_sub_label, .gform_wrapper.gravity-theme .screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  width: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  word-wrap: normal !important;
}

.gform_wrapper.gravity-theme button.screen-reader-text:focus {
  border: 0;
  clip: auto;
  clip-path: none;
  height: auto;
  margin: 0;
  position: static !important;
  width: auto;
}

@media only screen and (min-width: 641px) {
  .gform_wrapper .gfield.gf_list_2col .gfield_checkbox, .gform_wrapper .gfield.gf_list_2col .gfield_radio {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr [2];
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(auto-fill, auto);
    grid-column-gap: 32px;
  }
  .gform_wrapper .gfield.gf_list_3col .gfield_checkbox, .gform_wrapper .gfield.gf_list_3col .gfield_radio {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr [3];
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(auto-fill, auto);
    grid-column-gap: 32px;
  }
  .gform_wrapper .gfield.gf_list_4col .gfield_checkbox, .gform_wrapper .gfield.gf_list_4col .gfield_radio {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr [4];
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(auto-fill, auto);
    grid-column-gap: 32px;
  }
  .gform_wrapper .gfield.gf_list_5col .gfield_checkbox, .gform_wrapper .gfield.gf_list_5col .gfield_radio {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr [5];
    grid-template-columns: repeat(5, 1fr);
    grid-template-rows: repeat(auto-fill, auto);
    grid-column-gap: 32px;
  }
  .gform_wrapper .gfield.gf_list_inline .gfield_checkbox, .gform_wrapper .gfield.gf_list_inline .gfield_radio {
    display: block;
  }
  .gform_wrapper .gfield.gf_list_inline .gfield_checkbox .gchoice, .gform_wrapper .gfield.gf_list_inline .gfield_radio .gchoice {
    display: inline-block;
    padding-right: 16px;
  }
  .gform_wrapper .gfield.gf_list_inline .gfield_checkbox .gchoice label, .gform_wrapper .gfield.gf_list_inline .gfield_radio .gchoice label {
    max-width: none;
  }
  .gform_wrapper .gf_list_2col_vertical .gfield_checkbox, .gform_wrapper .gf_list_2col_vertical .gfield_radio {
    column-count: 2;
    grid-column-gap: 32px;
  }
  .gform_wrapper .gf_list_3col_vertical .gfield_checkbox, .gform_wrapper .gf_list_3col_vertical .gfield_radio {
    column-count: 3;
    grid-column-gap: 32px;
  }
  .gform_wrapper .gf_list_4col_vertical .gfield_checkbox, .gform_wrapper .gf_list_4col_vertical .gfield_radio {
    column-count: 4;
    grid-column-gap: 32px;
  }
  .gform_wrapper .gf_list_5col_vertical .gfield_checkbox, .gform_wrapper .gf_list_5col_vertical .gfield_radio {
    column-count: 5;
    grid-column-gap: 32px;
  }
  .gform_wrapper .gfield.gf_list_height_25 .gfield_checkbox .gchoice, .gform_wrapper .gfield.gf_list_height_25 .gfield_radio .gchoice {
    height: 25px;
  }
  .gform_wrapper .gfield.gf_list_height_50 .gfield_checkbox .gchoice, .gform_wrapper .gfield.gf_list_height_50 .gfield_radio .gchoice {
    height: 50px;
  }
  .gform_wrapper .gfield.gf_list_height_75 .gfield_checkbox .gchoice, .gform_wrapper .gfield.gf_list_height_75 .gfield_radio .gchoice {
    height: 75px;
  }
  .gform_wrapper .gfield.gf_list_height_100 .gfield_checkbox .gchoice, .gform_wrapper .gfield.gf_list_height_100 .gfield_radio .gchoice {
    height: 100px;
  }
  .gform_wrapper .gfield.gf_list_height_125 .gfield_checkbox .gchoice, .gform_wrapper .gfield.gf_list_height_125 .gfield_radio .gchoice {
    height: 125px;
  }
  .gform_wrapper .gfield.gf_list_height_150 .gfield_checkbox .gchoice, .gform_wrapper .gfield.gf_list_height_150 .gfield_radio .gchoice {
    height: 150px;
  }
}
.gform_wrapper .gf_hide_ampm .gfield_time_ampm {
  display: none !important;
}

.gform_wrapper .gsection.gf_scroll_text {
  height: 240px;
  padding: 32px;
  background-color: #fff;
  overflow-y: scroll;
  overflow-x: hidden;
  border: 1px solid #ccc;
}

.gform_wrapper .gsection.gf_scroll_text .gsection_title {
  margin-top: 0;
}

.gform_wrapper .gfield.gfield_html.gf_alert_blue, .gform_wrapper .gfield.gfield_html.gf_alert_gray, .gform_wrapper .gfield.gfield_html.gf_alert_green, .gform_wrapper .gfield.gfield_html.gf_alert_red, .gform_wrapper .gfield.gfield_html.gf_alert_yellow {
  border-radius: 3px;
  margin: 20px 0 !important;
  padding: 20px !important;
}

.gform_wrapper .gfield.gfield_html.gf_alert_green {
  border: 1px solid #97b48a;
  background-color: #cbeca0;
  text-shadow: #dfb 1px 1px;
  color: #030;
}

.gform_wrapper .gfield.gfield_html.gf_alert_red {
  border: 1px solid #cfadb3;
  background-color: #faf2f5;
  text-shadow: #fff 1px 1px;
  color: #832525;
}

.gform_wrapper .gfield.gfield_html.gf_alert_yellow {
  border: 1px solid #e6db55;
  background-color: #fffbcc;
  text-shadow: #fcfaea 1px 1px;
  color: #222;
}

.gform_wrapper .gfield.gfield_html.gf_alert_gray {
  border: 1px solid #ccc;
  background-color: #eee;
  text-shadow: #fff 1px 1px;
  color: #424242;
}

.gform_wrapper .gfield.gfield_html.gf_alert_blue {
  border: 1px solid #a7c2e7;
  background-color: #d1e4f3;
  text-shadow: #e0f1ff 1px 1px;
  color: #314475;
}

.gform_wrapper .gf_simple_horizontal {
  width: calc(100% - 16px);
  margin: 0 auto;
}

.gform_wrapper .gf_simple_horizontal .gform_body, .gform_wrapper .gf_simple_horizontal .gform_footer.top_label {
  display: table-cell;
  vertical-align: middle;
  margin: 0;
  padding: 0;
  position: relative;
}

.gform_wrapper .gf_simple_horizontal .gform_body {
  width: auto;
  max-width: 75%;
}

.gform_wrapper .gf_simple_horizontal .gform_body .top_label {
  display: table;
  width: 100%;
}

.gform_wrapper .gf_simple_horizontal .gform_body .top_label .gfield {
  display: table-cell;
  padding-right: 1em;
  height: auto;
}

.gform_wrapper .gf_simple_horizontal .gform_body .top_label .gfield .large, .gform_wrapper .gf_simple_horizontal .gform_body .top_label .gfield .medium, .gform_wrapper .gf_simple_horizontal .gform_body .top_label .gfield .small {
  width: 100%;
}

.gform_wrapper .gf_simple_horizontal .gform_body .top_label .gfield .ginput_container_checkbox .gchoice, .gform_wrapper .gf_simple_horizontal .gform_body .top_label .gfield .ginput_container_radio .gchoice {
  display: inline-block;
  margin-right: 0.5em;
}

.gform_wrapper .gf_simple_horizontal .gform_body .top_label.form_sublabel_above .gfield, .gform_wrapper .gf_simple_horizontal .gform_body .top_label.form_sublabel_below .gfield {
  vertical-align: middle;
}

.gform_wrapper .gf_simple_horizontal .gfield, .gform_wrapper .gf_simple_horizontal .ginput_container {
  margin-top: 0 !important;
}

.gform_wrapper .gf_simple_horizontal .gform_footer.top_label {
  width: auto;
  max-width: 25%;
  padding: 0;
  margin: 0;
  text-align: left;
}

.gform_wrapper .gf_simple_horizontal .gform_footer.top_label input[type=button], .gform_wrapper .gf_simple_horizontal .gform_footer.top_label input[type=image], .gform_wrapper .gf_simple_horizontal .gform_footer.top_label input[type=submit] {
  height: auto;
}

.gform_wrapper .gf_simple_horizontal .gfield_description:not(.validation_message), .gform_wrapper .gf_simple_horizontal .gfield_label, .gform_wrapper .gf_simple_horizontal .ginput_complex label {
  display: block;
  height: 1px;
  width: 1px;
  overflow: hidden;
  position: absolute;
  top: 0;
  left: -9000px;
}

.gform_wrapper body:not(rtl) .gform_wrapper form.gf_simple_horizontal div.gform_footer.top_label {
  text-align: left;
}

.gform_confirmation_wrapper.gf_confirmation_simple_yellow {
  margin: 30px 0;
  max-width: 99%;
  border-top: 1px solid #e6db55;
  border-bottom: 1px solid #e6db55;
  padding: 32px;
  background-color: #fffbcc;
  color: #424242;
  font-size: 25px;
}

.gform_confirmation_wrapper.gf_confirmation_simple_gray {
  margin: 30px 0;
  max-width: 99%;
  border-top: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
  padding: 32px;
  background-color: #eaeaea;
  color: #424242;
  font-size: 25px;
}

.gform_confirmation_wrapper.gf_confirmation_yellow_gradient {
  position: relative;
  background-color: #fffbd2;
  margin: 30px 0;
  border: 1px solid #e6db55;
  box-shadow: 0 0 5px rgba(221, 215, 131, 0.75);
}

.gform_confirmation_wrapper.gf_confirmation_yellow_gradient .gform_confirmation_message {
  margin: 0;
  padding: 40px;
  max-width: 99%;
  font-size: 28px;
  border-top: 2px solid #fff;
  border-bottom: 1px solid #e6db55;
  background-color: #fffbcc;
  color: #424242;
  background: #fffce5;
  background: linear-gradient(to bottom, #fffce5 0, #fff9bf 100%);
}

.gform_confirmation_wrapper.gf_confirmation_green_gradient {
  position: relative;
  background-color: #f1fcdf;
  margin: 30px 0;
  border: 1px solid #a7c37c;
  box-shadow: 0 0 5px rgba(86, 122, 86, 0.4);
}

.gform_confirmation_wrapper.gf_confirmation_green_gradient .gform_confirmation_message {
  margin: 0;
  padding: 40px;
  max-width: 99%;
  font-size: 28px;
  border-top: 2px solid #effade;
  border-bottom: 1px solid #a7c37c;
  background-color: #fffbcc;
  text-shadow: #dfb 1px 1px;
  color: #030;
  background: #dbf2b7;
  background: linear-gradient(to bottom, #dbf2b7 0, #b4d088 100%);
}

.gform_confirmation_wrapper.gf_confirmation_green_gradient:after, .gform_confirmation_wrapper.gf_confirmation_green_gradient:before, .gform_confirmation_wrapper.gf_confirmation_yellow_gradient:after, .gform_confirmation_wrapper.gf_confirmation_yellow_gradient:before {
  z-index: -1;
  position: absolute;
  content: "";
  bottom: 15px;
  left: 10px;
  width: 50%;
  top: 80%;
  max-width: 40%;
  background: rgba(0, 0, 0, 0.2);
  box-shadow: 0 15px 10px rgba(0, 0, 0, 0.2);
  transform: rotate(-3deg);
}

.gform_confirmation_wrapper.gf_confirmation_green_gradient:after, .gform_confirmation_wrapper.gf_confirmation_yellow_gradient:after {
  transform: rotate(3deg);
  right: 10px;
  left: auto;
}

.gform_wrapper.gravity-theme .gfield textarea {
  width: 100%;
}

.gform_wrapper.gravity-theme .gfield textarea.small {
  height: 96px;
}

.gform_wrapper.gravity-theme .gfield textarea.medium {
  height: 192px;
}

.gform_wrapper.gravity-theme .gfield textarea.large {
  height: 288px;
}

.gform_wrapper.gravity-theme .gfield input, .gform_wrapper.gravity-theme .gfield select {
  max-width: 100%;
}

.gform_wrapper.gravity-theme .gfield input.small, .gform_wrapper.gravity-theme .gfield select.small {
  width: calc(25% - 12px);
}

.gform_wrapper.gravity-theme .gfield input.medium, .gform_wrapper.gravity-theme .gfield select.medium {
  width: calc(50% - 8px);
}

.gform_wrapper.gravity-theme .gfield input.large, .gform_wrapper.gravity-theme .gfield select.large {
  width: 100%;
}

.gform_wrapper.gravity-theme * {
  box-sizing: border-box;
}

.gform_wrapper.gravity-theme .gform_fields {
  width: 100%;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 2% [12];
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: repeat(auto-fill, auto);
  grid-column-gap: 2%;
  grid-row-gap: 16px;
}

.gform_wrapper.gravity-theme .gfield {
  grid-column: 1/-1;
}

.gform_wrapper.gravity-theme .gfield.gfield--width-full {
  -ms-grid-column-span: 12;
  grid-column: span 12;
}

.gform_wrapper.gravity-theme .gfield.gfield--width-eleven-twelfths {
  -ms-grid-column-span: 11;
  grid-column: span 11;
}

.gform_wrapper.gravity-theme .gfield.gfield--width-five-sixths {
  -ms-grid-column-span: 10;
  grid-column: span 10;
}

.gform_wrapper.gravity-theme .gfield.gfield--width-three-quarter {
  -ms-grid-column-span: 9;
  grid-column: span 9;
}

.gform_wrapper.gravity-theme .gfield.gfield--width-two-thirds {
  -ms-grid-column-span: 8;
  grid-column: span 8;
}

.gform_wrapper.gravity-theme .gfield.gfield--width-seven-twelfths {
  -ms-grid-column-span: 7;
  grid-column: span 7;
}

.gform_wrapper.gravity-theme .gfield.gfield--width-half {
  -ms-grid-column-span: 6;
  grid-column: span 6;
}

.gform_wrapper.gravity-theme .gfield.gfield--width-five-twelfths {
  -ms-grid-column-span: 5;
  grid-column: span 5;
}

.gform_wrapper.gravity-theme .gfield.gfield--width-third {
  -ms-grid-column-span: 4;
  grid-column: span 4;
}

.gform_wrapper.gravity-theme .gfield.gfield--width-quarter {
  -ms-grid-column-span: 3;
  grid-column: span 3;
}

@media (max-width: 640px) {
  .gform_wrapper.gravity-theme .gform_fields {
    grid-column-gap: 0;
  }
  .gform_wrapper.gravity-theme .gfield:not(.gfield--width-full) {
    grid-column: 1/-1;
  }
}
.gform_wrapper.gravity-theme .left_label .gfield:not(.gsection):not(.gfield_html):not(fieldset), .gform_wrapper.gravity-theme .right_label .gfield:not(.gsection):not(.gfield_html):not(fieldset) {
  display: flex;
  width: 100%;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.gform_wrapper.gravity-theme .left_label .gfield_label, .gform_wrapper.gravity-theme .right_label .gfield_label {
  width: 30%;
  margin: 0;
  padding: 0;
}

@media (max-width: 640px) {
  .gform_wrapper.gravity-theme .left_label .gfield_label, .gform_wrapper.gravity-theme .right_label .gfield_label {
    width: 100%;
  }
}
.gform_wrapper.gravity-theme .gform_fields.left_label fieldset, .gform_wrapper.gravity-theme .gform_fields.right_label fieldset {
  clear: both;
}

.gform_wrapper.gravity-theme .gform_fields.left_label fieldset .ginput_container, .gform_wrapper.gravity-theme .gform_fields.right_label fieldset .ginput_container {
  float: left;
  width: 70%;
}

@media (max-width: 640px) {
  .gform_wrapper.gravity-theme .gform_fields.left_label fieldset .ginput_container, .gform_wrapper.gravity-theme .gform_fields.right_label fieldset .ginput_container {
    width: 100%;
  }
}
@media (max-width: 640px) {
  .gform_wrapper.gravity-theme .gform_fields.left_label fieldset &gt; .ginput_complex, .gform_wrapper.gravity-theme .gform_fields.right_label fieldset &gt; .ginput_complex {
    width: 100%;
  }
}
.gform_wrapper.gravity-theme .gform_fields.left_label legend.gfield_label, .gform_wrapper.gravity-theme .gform_fields.right_label legend.gfield_label {
  display: block;
  float: left;
  padding-right: 1em;
  width: 30%;
}

@media (max-width: 640px) {
  .gform_wrapper.gravity-theme .gform_fields.left_label legend.gfield_label, .gform_wrapper.gravity-theme .gform_fields.right_label legend.gfield_label {
    width: 100%;
  }
}
.gform_wrapper.gravity-theme .left_label .ginput_complex .ginput_container, .gform_wrapper.gravity-theme .right_label .ginput_complex .ginput_container {
  width: auto;
}

.gform_wrapper.gravity-theme .left_label div.gfield &gt; div:not(.ui-resizable-handle):not(.gfield-admin-icons), .gform_wrapper.gravity-theme .right_label div.gfield &gt; div:not(.ui-resizable-handle):not(.gfield-admin-icons) {
  width: 70%;
}

@media (max-width: 640px) {
  .gform_wrapper.gravity-theme .left_label div.gfield &gt; div:not(.ui-resizable-handle):not(.gfield-admin-icons), .gform_wrapper.gravity-theme .right_label div.gfield &gt; div:not(.ui-resizable-handle):not(.gfield-admin-icons) {
    width: 100%;
  }
}
.gform_wrapper.gravity-theme .right_label .gfield_label {
  text-align: right;
  padding-right: 1em;
}

.gform_wrapper.gravity-theme .left_label.gform_fields, .gform_wrapper.gravity-theme .right_label.gform_fields {
  position: relative;
}

.gform_wrapper.gravity-theme .left_label .gfield_html_formatted, .gform_wrapper.gravity-theme .right_label .gfield_html_formatted {
  margin-left: 30%;
}

.rtl .gform_wrapper.gravity-theme .left_label legend.gfield_label, .rtl .gform_wrapper.gravity-theme .right_label legend.gfield_label {
  position: absolute;
  text-align: left;
  margin-left: 1em;
  right: 0;
  width: 30%;
}

.rtl .gform_wrapper.gravity-theme .left_label legend.gfield_label {
  width: 30%;
}

.rtl .gform_wrapper.gravity-theme .left_label .gfield_label {
  text-align: left !important;
}

.rtl .gform_wrapper.gravity-theme .left_label fieldset.gfield, .rtl .gform_wrapper.gravity-theme .right_label fieldset.gfield {
  padding-right: 30%;
  margin-left: 0;
}

.rtl .gform_wrapper.gravity-theme .left_label .gfield_label {
  text-align: left;
  padding-left: 1em;
}

.rtl .gform_wrapper.gravity-theme .right_label .gfield_label, .rtl .gform_wrapper.gravity-theme .right_label legend.gfield_label {
  text-align: right;
  padding: 0;
}

.rtl .gform_wrapper.gravity-theme .right_label label.gfield_label {
  padding-right: 0;
}

.rtl .gform_wrapper.gravity-theme .left_label .gfield_html_formatted, .rtl .gform_wrapper.gravity-theme .right_label .gfield_html_formatted {
  margin-left: 0;
  margin-right: 30%;
}

html[dir=rtl] code, html[dir=rtl] input[type=email], html[dir=rtl] input[type=tel], html[dir=rtl] input[type=url] {
  direction: rtl;
}

html[dir=rtl] .gform_wrapper.gravity-theme .gfield_label {
  direction: rtl;
}

html[dir=rtl] .gform_wrapper.gravity-theme .gfield_required {
  margin-left: 0;
  margin-right: 4px;
}

html[dir=rtl] ::-webkit-input-placeholder {
  text-align: right;
}

html[dir=rtl] ::-moz-placeholder {
  text-align: right;
}

html[dir=rtl] :-ms-input-placeholder {
  text-align: right;
}

html[dir=rtl] :-moz-placeholder {
  text-align: right;
}

html[dir=rtl] .gform_wrapper.gravity-theme fieldset {
  display: block;
}

html[dir=rtl] .gform_wrapper.gravity-theme .gfield_header_item + .gfield_header_item:not(:last-child), html[dir=rtl] .gform_wrapper.gravity-theme .gfield_list_group_item + .gfield_list_group_item {
  margin-left: 0;
  margin-right: 16px;
}

html[dir=rtl] .gform_wrapper.gravity-theme .ginput_complex:not(.ginput_container_address) fieldset:not([style*="display:none"]):not(.ginput_full) ~ span:not(.ginput_full), html[dir=rtl] .gform_wrapper.gravity-theme .ginput_complex:not(.ginput_container_address) span:not([style*="display:none"]):not(.ginput_full) ~ span:not(.ginput_full) {
  padding-left: 0;
  padding-right: 16px;
}

@media (min-width: 641px) {
  html[dir=rtl] .gform_wrapper.gravity-theme .ginput_complex:not(.ginput_container_address) span:not([style*="display:none"]):not(.ginput_full) ~ span:not(.ginput_full) {
    padding-left: 0;
    padding-right: 16px;
  }
  html[dir=rtl] .gform_wrapper.gravity-theme .ginput_container_address.has_street.has_street2 span:not(.ginput_full):nth-of-type(2n+1), html[dir=rtl] .gform_wrapper.gravity-theme .ginput_container_address.has_street2:not(.has_street) span:not(.ginput_full):nth-of-type(2n), html[dir=rtl] .gform_wrapper.gravity-theme .ginput_container_address.has_street:not(.has_street2) span:not(.ginput_full):nth-of-type(2n), html[dir=rtl] .gform_wrapper.gravity-theme .ginput_container_address:not(.has_street):not(.has_street2) span:not(.ginput_full):nth-of-type(2n+1) {
    padding-right: 0;
    padding-left: 16px;
  }
  html[dir=rtl] .gform_wrapper.gravity-theme .gform_show_password {
    right: unset;
    left: 8px;
  }
}
@media (max-width: 640px) {
  html[dir=rtl] .gform_wrapper.gravity-theme .left_label fieldset.gfield, html[dir=rtl] .gform_wrapper.gravity-theme .right_label fieldset.gfield {
    padding-right: 0;
  }
  html[dir=rtl] .gform_wrapper.gravity-theme .left_label legend.gfield_label, html[dir=rtl] .gform_wrapper.gravity-theme .right_label legend.gfield_label {
    margin: 0;
    padding: 0;
    position: relative;
    width: 100%;
  }
  html[dir=rtl] .gform_wrapper.gravity-theme .left_label .gfield_label {
    text-align: right !important;
  }
  html[dir=rtl] .gform_wrapper.gravity-theme .ginput_complex:not(.ginput_container_address) fieldset:not([style*="display:none"]):not(.ginput_full) ~ span:not(.ginput_full), html[dir=rtl] .gform_wrapper.gravity-theme .ginput_complex:not(.ginput_container_address) span:not([style*="display:none"]):not(.ginput_full) ~ span:not(.ginput_full) {
    padding-right: 0;
  }
}
.gform_wrapper.gravity-theme .ginput_counter {
  color: #767676;
  font-size: 0.8em;
}

.gform_wrapper.gravity-theme .ginput_counter_tinymce {
  border-top: 1px solid #eee;
  padding: 2px 10px;
  font-size: 12px;
}

.gform_wrapper .validation_message--hidden-on-empty:empty {
  display: none;
}

.gform_wrapper.gravity-theme .gform_card_icon_container {
  display: flex;
  height: 32px;
  margin: 8px 0 6.4px 0;
}

.gform_wrapper.gravity-theme .gform_card_icon_container div.gform_card_icon {
  background-image: url(../images/gf-creditcards.svg);
  background-repeat: no-repeat;
  height: 32px;
  margin-right: 4.8px;
  text-indent: -9000px;
  width: 40px;
}

.gform_wrapper.gravity-theme .gform_card_icon_container div.gform_card_icon.gform_card_icon_amex {
  background-position: -167px 0;
}

.gform_wrapper.gravity-theme .gform_card_icon_container div.gform_card_icon.gform_card_icon_discover {
  background-position: -221px 0;
}

.gform_wrapper.gravity-theme .gform_card_icon_container div.gform_card_icon.gform_card_icon_mastercard {
  background-position: -275px 0;
}

.gform_wrapper.gravity-theme .gform_card_icon_container div.gform_card_icon.gform_card_icon_visa {
  background-position: -59px 0;
}

.gform_wrapper.gravity-theme .gform_card_icon_container div.gform_card_icon.gform_card_icon_jcb {
  background-position: -329px 0;
}

.gform_wrapper.gravity-theme .gform_card_icon_container div.gform_card_icon.gform_card_icon_maestro {
  background-position: -5px 0;
}

.gform_wrapper.gravity-theme .gform_card_icon_container div.gform_card_icon.gform_card_icon_selected {
  position: relative;
}

.gform_wrapper.gravity-theme .gform_card_icon_container div.gform_card_icon.gform_card_icon_selected:after {
  background: url(../images/gf-creditcards-check.svg) center center no-repeat;
  bottom: 4px;
  content: "";
  display: block;
  height: 10px;
  position: absolute;
  right: 0;
  width: 13px;
}

.gform_wrapper.gravity-theme .ginput_container_creditcard .ginput_cardinfo_right {
  display: inline-flex;
  justify-content: flex-start;
  flex-flow: row wrap;
  align-items: center;
}

.gform_wrapper.gravity-theme .ginput_container_creditcard .ginput_cardinfo_right label {
  width: 100%;
}

.gform_wrapper.gravity-theme .ginput_container_creditcard .ginput_card_security_code_icon {
  background-image: url(../images/gf-creditcards.svg);
  background-position: -382px center;
  background-repeat: no-repeat;
  display: block;
  flex: none;
  height: 32px;
  margin-left: 0.3em;
  width: 40px;
}

html[dir=rtl] .gform_wrapper.gravity-theme .ginput_container_creditcard .ginput_card_security_code_icon {
  margin-right: 0.3em;
  margin-left: 0;
}

.gform_wrapper.gravity-theme .gfield_list_group, .gform_wrapper.gravity-theme .gfield_list_header {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  margin-bottom: 8px;
}

.gform_wrapper.gravity-theme .gfield_list_group:last-child {
  margin-bottom: 0;
}

.gform_wrapper.gravity-theme .gfield_header_item {
  word-break: break-word;
}

.gform_wrapper.gravity-theme .gfield_header_item, .gform_wrapper.gravity-theme .gfield_list_group_item {
  flex-grow: 1;
  width: 0;
}

.gform_wrapper.gravity-theme .gfield_header_item + .gfield_header_item:not(.gfield_header_item--icons), .gform_wrapper.gravity-theme .gfield_list_group_item + .gfield_list_group_item {
  margin-left: 2%;
}

.gform_wrapper.gravity-theme .gfield_list_group_item input, .gform_wrapper.gravity-theme .gfield_list_group_item select {
  width: 100%;
}

.gform_wrapper.gravity-theme .gfield_header_item--icons, .gform_wrapper.gravity-theme .gfield_list_icons {
  width: 48px;
  flex: none;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gform_wrapper.gravity-theme .gfield_list_icons button {
  font-size: 0;
  background: transparent url(../images/list-add.svg);
  border: none;
  width: 16px;
  height: 16px;
  opacity: 0.5;
  padding: 0;
  transition: opacity 0.5s ease-out;
}

.gform_wrapper.gravity-theme .gfield_list_icons button:focus, .gform_wrapper.gravity-theme .gfield_list_icons button:hover {
  opacity: 1;
  outline: 0;
}

.gform_wrapper.gravity-theme .gfield_list_icons button.delete_list_item {
  margin-left: 5px;
  background-image: url(../images/list-remove.svg);
}

@media (max-width: 640px) {
  .gform_wrapper.gravity-theme .gfield_list_header {
    display: none;
  }
  .gform_wrapper.gravity-theme .gfield_list_group {
    display: block;
    border: 1px solid rgba(0, 0, 0, 0.2);
    padding: 16px;
    margin-bottom: 16px;
  }
  .gform_wrapper.gravity-theme .gfield_header_item, .gform_wrapper.gravity-theme .gfield_list_group_item {
    width: auto;
  }
  .gform_wrapper.gravity-theme .gfield_list_group:last-child {
    margin-bottom: 0;
  }
  .gform_wrapper.gravity-theme .gfield_list_group_item:not(:last-child) {
    margin-bottom: 8px;
  }
  .gform_wrapper.gravity-theme .gfield_list_group_item:before {
    content: attr(data-label);
    font-size: 14.992px;
  }
  .gform_wrapper.gravity-theme .gfield_list_icons {
    width: auto;
    background-color: rgba(0, 0, 0, 0.1);
    margin: 16px -16px -16px;
    padding: 12px 16px;
    line-height: 0;
    text-align: left;
  }
  .gform_wrapper.gravity-theme .gfield_header_item + .gfield_header_item:not(.gfield_header_item--icons), .gform_wrapper.gravity-theme .gfield_list_group_item + .gfield_list_group_item {
    margin-left: 0;
  }
}
html[dir=rtl] .gform_wrapper.gravity-theme .gfield_header_item + .gfield_header_item:not(.gfield_header_item--icons), html[dir=rtl] .gform_wrapper.gravity-theme .gfield_list_group_item + .gfield_list_group_item {
  margin-left: 0;
  margin-right: 16px;
}

@media (max-width: 640px) {
  html[dir=rtl] .gform_wrapper.gravity-theme .gfield_header_item + .gfield_header_item:not(.gfield_header_item--icons), html[dir=rtl] .gform_wrapper.gravity-theme .gfield_list_group_item + .gfield_list_group_item {
    margin-right: 0;
  }
}
html[dir=rtl] .gform_wrapper.gravity-theme .gfield_list_icons button.delete_list_item {
  margin-left: 0;
  margin-right: 5px;
}

.gform_wrapper.gform_legacy_markup table.gfield_list.gfield_list_container {
  width: 100%;
}

.gform_wrapper.gform_legacy_markup table.gfield_list.gfield_list_container thead tr {
  display: flex;
  flex-wrap: nowrap;
}

.gform_wrapper.gform_legacy_markup table.gfield_list.gfield_list_container thead tr td, .gform_wrapper.gform_legacy_markup table.gfield_list.gfield_list_container thead tr th {
  flex-grow: 1;
  white-space: normal;
  width: 0;
  word-break: break-word;
}

.gform_wrapper.gform_legacy_markup table.gfield_list.gfield_list_container thead tr td:last-child {
  flex-grow: unset;
  width: 48px;
}

.gform_wrapper.gform_legacy_markup table.gfield_list.gfield_list_container tbody td, .gform_wrapper.gform_legacy_markup table.gfield_list.gfield_list_container tbody th {
  flex-grow: 1;
  white-space: normal;
  width: 0;
  word-break: break-word;
}

.gform_wrapper.gform_legacy_markup table.gfield_list.gfield_list_container tbody td.gfield_list_icons {
  flex-grow: unset;
  width: 48px;
}

.gform_wrapper.gform_legacy_markup table.gfield_list.gfield_list_container tbody tr {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
}

.gform_wrapper.gform_legacy_markup table.gfield_list.gfield_list_container tbody tr .gfield_list_cell {
  flex-grow: 1;
}

.gform_wrapper.gform_legacy_markup table.gfield_list.gfield_list_container tbody tr .gfield_list_cell input {
  width: 95%;
}

@media screen and (max-width: 640px) {
  .gform_wrapper.gform_legacy_markup table.gfield_list.gfield_list_container th {
    display: none;
  }
  .gform_wrapper.gform_legacy_markup table.gfield_list.gfield_list_container tbody tr {
    flex-flow: column;
  }
  .gform_wrapper.gform_legacy_markup table.gfield_list.gfield_list_container tbody tr td::before {
    content: attr(data-label);
    font-size: 14.992px;
  }
  .gform_wrapper.gform_legacy_markup table.gfield_list.gfield_list_container tbody tr td {
    flex-grow: unset;
    width: auto;
  }
  .gform_wrapper.gform_legacy_markup table.gfield_list.gfield_list_container tbody tr .gfield_list_icons {
    height: 35px;
    width: auto;
  }
}
.noUi-connect,
.noUi-origin {
  will-change: transform;
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  transform-origin: 0 0;
  transform-style: flat;
}

.noUi-horizontal .noUi-origin {
  height: 0;
  width: 10%;
}

html:not([dir=rtl]) .noUi-horizontal .noUi-origin {
  left: auto;
  right: 0;
}

html:not([dir=rtl]) .noUi-horizontal .noUi-handle {
  right: -10px;
  left: auto;
}

.facetwp-facet {
  margin-bottom: 0 !important;
}

.facetwp-type-dropdown .select2-container,
.facetwp-sort .select2-container {
  width: 100% !important;
}
.facetwp-type-dropdown .select2-container .select2-selection--single,
.facetwp-sort .select2-container .select2-selection--single {
  border: 0;
  background: none;
  border-radius: 0;
  height: 2.5625rem;
}
.facetwp-type-dropdown .select2-container .select2-selection--single .select2-selection__rendered,
.facetwp-sort .select2-container .select2-selection--single .select2-selection__rendered {
  border: 1px solid var(--text-color);
  line-height: 2.5625rem;
  color: rgba(var(--text-color), 1);
  background: none;
  letter-spacing: 2.4px;
  text-transform: uppercase;
  font-size: 0.75rem;
  font-weight: 600;
  padding-left: 1.5rem;
  padding-right: 2.5rem;
}
.facetwp-type-dropdown .select2-container .select2-selection--single .select2-selection__arrow,
.facetwp-sort .select2-container .select2-selection--single .select2-selection__arrow {
  background: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='13.224' height='5.131' viewBox='0 0 13.224 5.131'%3E%3Cpath id='Path_9847' data-name='Path 9847' d='M0,4.115,6.339,0l6.34,4.115' transform='translate(12.951 4.535) rotate(180)' fill='none' stroke='%23001522' stroke-width='1'/%3E%3C/svg%3E") no-repeat;
  background-size: contain;
  width: 1rem;
  height: 0.375rem;
  right: 1.25rem;
  bottom: 1rem;
  top: auto;
  background-position: 50% 50%;
}
.facetwp-type-dropdown .select2-container .select2-selection--single .select2-selection__arrow b,
.facetwp-sort .select2-container .select2-selection--single .select2-selection__arrow b {
  display: none;
}
.facetwp-type-dropdown .select2-container.select2-container--open .select2-selection__arrow,
.facetwp-sort .select2-container.select2-container--open .select2-selection__arrow {
  transform: rotate(180deg);
}

.facetwp-type-search {
  position: relative;
}
.facetwp-type-search.facetwp-searchpage .searchpage-btn {
  display: none;
}
.facetwp-type-search .facetwp-input-wrap {
  width: 100%;
}
.facetwp-type-search .facetwp-icon {
  display: inline-block;
  cursor: pointer;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translate(0, -50%);
  height: 100%;
  background: none;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg width='20' height='20' viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M17.625 15.875L13.875 12.125C14.7188 10.875 15.1562 9.3125 14.9375 7.625C14.5312 4.75 12.1875 2.4375 9.34375 2.0625C5.09375 1.53125 1.5 5.125 2.03125 9.375C2.40625 12.2188 4.71875 14.5625 7.59375 14.9688C9.28125 15.1875 10.8438 14.75 12.125 13.9062L15.8438 17.6562C16.3438 18.125 17.125 18.125 17.625 17.6562C18.0938 17.1562 18.0938 16.375 17.625 15.875ZM4.46875 8.5C4.46875 6.3125 6.25 4.5 8.46875 4.5C10.6562 4.5 12.4688 6.3125 12.4688 8.5C12.4688 10.7188 10.6562 12.5 8.46875 12.5C6.25 12.5 4.46875 10.7188 4.46875 8.5Z' fill='%230F0225'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: 20px 20px;
  animation: none;
  opacity: 1;
  width: 2.5rem;
  background-position: 50% 50%;
}
.facetwp-type-search .facetwp-icon:before {
  display: none;
}
.facetwp-type-search input {
  width: 100%;
  height: 100%;
  border: none;
  font-size: 1rem;
  line-height: 1.5rem;
  font-weight: 300;
  color: var(--text-color);
  padding-left: 2.5rem;
  outline: none;
  padding-bottom: 0.8125rem;
  padding-top: 0.8125rem;
  padding-right: 0.25rem;
  background: var(--light-violet);
  text-transform: initial;
}
.facetwp-type-search input:-ms-input-placeholder {
  font-size: 1rem;
  line-height: 1.5rem;
  font-weight: 300;
  color: var(--text-color);
  text-transform: initial;
}
.facetwp-type-search input::placeholder {
  font-size: 1rem;
  line-height: 1.5rem;
  font-weight: 300;
  color: var(--text-color);
  text-transform: initial;
}

.facetwp-type-tag a {
  background: var(--cool-wave);
  padding: 0.25rem 0.625rem 0.25rem 2.1875rem;
  display: inline-block;
  position: relative;
}
.facetwp-type-tag a::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0.625rem;
  width: 1.25rem;
  height: 1.25rem;
  transform: translate(0, -50%);
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg width='20' height='20' viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M14.6115 14.5894C14.2137 14.9871 13.5508 14.9871 13.1752 14.6115L9.99318 11.4295L6.8112 14.6115C6.43555 14.9871 5.79474 14.965 5.41909 14.5894C5.02134 14.1916 5.02134 13.5729 5.39699 13.1973L8.57897 10.0153L5.39699 6.8333C4.99924 6.43555 5.02134 5.79474 5.41909 5.39699C5.79474 5.02134 6.41346 5.02134 6.8112 5.41909L9.99318 8.60107L13.1752 5.41909C13.5729 5.02134 14.2137 4.99924 14.6115 5.39699C14.9871 5.77264 14.9871 6.43555 14.5894 6.8333L11.4074 10.0153L14.5894 13.1973C14.9871 13.5508 14.9871 14.2137 14.6115 14.5894Z' fill='%231b3e51'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
}
* + .facetwp-type-tag {
  margin-top: 1.25rem;
}
.facetwp-type-tag + * {
  margin-top: 2rem;
}

.facetwp-facet-search + .item,
.facetwp-facet-marketplace_search + .item {
  margin-top: 2rem;
}

.facetwp-type-radio .facetwp-radio,
.facetwp-sort-radio .facetwp-radio {
  background: none;
  display: flex;
  position: relative;
  padding-left: 2.5rem;
  background: none !important;
}
.facetwp-type-radio .facetwp-radio:not(:last-child),
.facetwp-sort-radio .facetwp-radio:not(:last-child) {
  margin-bottom: 0.625rem;
}
.facetwp-type-radio .facetwp-radio:before,
.facetwp-sort-radio .facetwp-radio:before {
  content: "";
  display: block;
  width: 1.25rem;
  height: 1.25rem;
  border: none;
  border-radius: 0;
  position: absolute;
  left: 0.625rem;
  top: 0;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg width='20' height='21' viewBox='0 0 20 21' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M10 2.53125C11.5469 2.53125 13.0234 2.95312 14.3594 3.72656C15.6953 4.5 16.75 5.55469 17.5234 6.89062C18.2969 8.22656 18.7188 9.70312 18.7188 11.25C18.7188 12.832 18.2969 14.2734 17.5234 15.6094C16.75 16.9453 15.6953 18.0352 14.3594 18.8086C13.0234 19.582 11.5469 19.9688 10 19.9688C8.41797 19.9688 6.97656 19.582 5.64062 18.8086C4.30469 18.0352 3.21484 16.9453 2.44141 15.6094C1.66797 14.2734 1.28125 12.832 1.28125 11.25C1.28125 9.70312 1.66797 8.22656 2.44141 6.89062C3.21484 5.55469 4.30469 4.5 5.64062 3.72656C6.97656 2.95312 8.41797 2.53125 10 2.53125ZM10 18.2812C11.2656 18.2812 12.4258 17.9648 13.5156 17.332C14.5703 16.6992 15.4492 15.8555 16.082 14.7656C16.7148 13.7109 17.0312 12.5156 17.0312 11.25C17.0312 9.98438 16.7148 8.82422 16.082 7.73438C15.4492 6.67969 14.5703 5.80078 13.5156 5.16797C12.4258 4.53516 11.2656 4.21875 10 4.21875C8.73438 4.21875 7.53906 4.53516 6.48438 5.16797C5.39453 5.80078 4.55078 6.67969 3.91797 7.73438C3.28516 8.82422 2.96875 9.98438 2.96875 11.25C2.96875 12.5156 3.28516 13.7109 3.91797 14.7656C4.55078 15.8555 5.39453 16.6992 6.48438 17.332C7.53906 17.9648 8.73438 18.2812 10 18.2812Z' fill='%230F0225'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
  transition: background-image 0.3s;
}
.facetwp-type-radio .facetwp-radio::after,
.facetwp-sort-radio .facetwp-radio::after {
  display: none;
}
.facetwp-type-radio .facetwp-radio.checked:before,
.facetwp-sort-radio .facetwp-radio.checked:before {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg width='20' height='21' viewBox='0 0 20 21' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M10 2.53125C11.5469 2.53125 13.0234 2.95312 14.3594 3.72656C15.6953 4.5 16.75 5.55469 17.5234 6.89062C18.2969 8.22656 18.7188 9.70312 18.7188 11.25C18.7188 12.832 18.2969 14.2734 17.5234 15.6094C16.75 16.9453 15.6953 18.0352 14.3594 18.8086C13.0234 19.582 11.5469 19.9688 10 19.9688C8.41797 19.9688 6.97656 19.582 5.64062 18.8086C4.30469 18.0352 3.21484 16.9453 2.44141 15.6094C1.66797 14.2734 1.28125 12.832 1.28125 11.25C1.28125 9.70312 1.66797 8.22656 2.44141 6.89062C3.21484 5.55469 4.30469 4.5 5.64062 3.72656C6.97656 2.95312 8.41797 2.53125 10 2.53125ZM12.8125 11.25C12.8125 10.4766 12.5312 9.84375 11.9688 9.28125C11.4062 8.71875 10.7734 8.4375 10 8.4375C9.22656 8.4375 8.55859 8.71875 7.99609 9.28125C7.43359 9.84375 7.1875 10.4766 7.1875 11.25C7.1875 12.0234 7.43359 12.6914 7.99609 13.2539C8.55859 13.8164 9.22656 14.0625 10 14.0625C10.7734 14.0625 11.4062 13.8164 11.9688 13.2539C12.5312 12.6914 12.8125 12.0234 12.8125 11.25Z' fill='%230F0225'/%3E%3C/svg%3E");
}
.facetwp-type-radio .facetwp-radio .facetwp-counter,
.facetwp-sort-radio .facetwp-radio .facetwp-counter {
  display: none;
}

.facetwp-type-checkboxes .facetwp-checkbox,
.facetwp-sort-checkboxes .facetwp-checkbox {
  background: none;
  display: flex;
  position: relative;
  padding-left: 2.5rem;
  font-weight: 400;
  background: none !important;
}
.facetwp-type-checkboxes .facetwp-checkbox:not(:last-child),
.facetwp-sort-checkboxes .facetwp-checkbox:not(:last-child) {
  margin-bottom: 0.625rem;
}
.facetwp-type-checkboxes .facetwp-checkbox:before,
.facetwp-sort-checkboxes .facetwp-checkbox:before {
  content: "";
  display: block;
  width: 1.25rem;
  height: 1.25rem;
  border: none;
  border-radius: 0;
  position: absolute;
  left: 0.625rem;
  top: 1px;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg width='20' height='21' viewBox='0 0 20 21' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M16.1875 3.375C16.6445 3.375 17.0312 3.55078 17.3828 3.86719C17.6992 4.21875 17.875 4.60547 17.875 5.0625V17.4375C17.875 17.9297 17.6992 18.3164 17.3828 18.6328C17.0312 18.9844 16.6445 19.125 16.1875 19.125H3.8125C3.32031 19.125 2.93359 18.9844 2.61719 18.6328C2.26562 18.3164 2.125 17.9297 2.125 17.4375V5.0625C2.125 4.60547 2.26562 4.21875 2.61719 3.86719C2.93359 3.55078 3.32031 3.375 3.8125 3.375H16.1875ZM15.9766 17.4375C16.0117 17.4375 16.0469 17.4375 16.1172 17.3672C16.1523 17.332 16.1875 17.2969 16.1875 17.2266V5.27344C16.1875 5.23828 16.1523 5.20312 16.1172 5.13281C16.0469 5.09766 16.0117 5.0625 15.9766 5.0625H4.02344C3.95312 5.0625 3.91797 5.09766 3.88281 5.13281C3.8125 5.20312 3.8125 5.23828 3.8125 5.27344V17.2266C3.8125 17.2969 3.8125 17.332 3.88281 17.3672C3.91797 17.4375 3.95312 17.4375 4.02344 17.4375H15.9766Z' fill='%230F0225'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
  transition: background-image 0.3s;
}
.facetwp-type-checkboxes .facetwp-checkbox::after,
.facetwp-sort-checkboxes .facetwp-checkbox::after {
  display: none;
}
.facetwp-type-checkboxes .facetwp-checkbox.checked:before,
.facetwp-sort-checkboxes .facetwp-checkbox.checked:before {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg width='20' height='21' viewBox='0 0 20 21' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M16.1875 19.125C16.6445 19.125 17.0312 18.9844 17.3828 18.6328C17.6992 18.3164 17.875 17.9297 17.875 17.4375V5.0625C17.875 4.60547 17.6992 4.21875 17.3828 3.86719C17.0312 3.55078 16.6445 3.375 16.1875 3.375H3.8125C3.32031 3.375 2.93359 3.55078 2.61719 3.86719C2.26562 4.21875 2.125 4.60547 2.125 5.0625V17.4375C2.125 17.9297 2.26562 18.3164 2.61719 18.6328C2.93359 18.9844 3.32031 19.125 3.8125 19.125H16.1875ZM8.98047 15.6797C8.875 15.8203 8.73438 15.8555 8.59375 15.8555C8.41797 15.8555 8.27734 15.8203 8.20703 15.6797L4.55078 12.0234C4.41016 11.918 4.375 11.7773 4.375 11.6367C4.375 11.4961 4.41016 11.3555 4.55078 11.2148L5.32422 10.4414C5.42969 10.3359 5.57031 10.2656 5.71094 10.2656C5.85156 10.2656 5.99219 10.3359 6.13281 10.4414L8.59375 12.9023L13.8672 7.62891C13.9727 7.52344 14.1133 7.45312 14.2539 7.45312C14.3945 7.45312 14.5352 7.52344 14.6758 7.62891L15.4492 8.40234C15.5547 8.54297 15.625 8.68359 15.625 8.82422C15.625 8.96484 15.5547 9.10547 15.4492 9.21094L8.98047 15.6797Z' fill='%230F0225'/%3E%3C/svg%3E");
}
.facetwp-type-checkboxes .facetwp-checkbox .facetwp-counter,
.facetwp-sort-checkboxes .facetwp-checkbox .facetwp-counter {
  display: none;
}

.bg-dark .facetwp-type-checkboxes .facetwp-checkbox,
.bg-dark .facetwp-sort-checkboxes .facetwp-checkbox {
  color: var(--white);
}
.bg-dark .facetwp-type-checkboxes .facetwp-checkbox:before,
.bg-dark .facetwp-sort-checkboxes .facetwp-checkbox:before {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg width='20' height='21' viewBox='0 0 20 21' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M16.1875 3.375C16.6445 3.375 17.0312 3.55078 17.3828 3.86719C17.6992 4.21875 17.875 4.60547 17.875 5.0625V17.4375C17.875 17.9297 17.6992 18.3164 17.3828 18.6328C17.0312 18.9844 16.6445 19.125 16.1875 19.125H3.8125C3.32031 19.125 2.93359 18.9844 2.61719 18.6328C2.26562 18.3164 2.125 17.9297 2.125 17.4375V5.0625C2.125 4.60547 2.26562 4.21875 2.61719 3.86719C2.93359 3.55078 3.32031 3.375 3.8125 3.375H16.1875ZM15.9766 17.4375C16.0117 17.4375 16.0469 17.4375 16.1172 17.3672C16.1523 17.332 16.1875 17.2969 16.1875 17.2266V5.27344C16.1875 5.23828 16.1523 5.20312 16.1172 5.13281C16.0469 5.09766 16.0117 5.0625 15.9766 5.0625H4.02344C3.95312 5.0625 3.91797 5.09766 3.88281 5.13281C3.8125 5.20312 3.8125 5.23828 3.8125 5.27344V17.2266C3.8125 17.2969 3.8125 17.332 3.88281 17.3672C3.91797 17.4375 3.95312 17.4375 4.02344 17.4375H15.9766Z' fill='%23fff'/%3E%3C/svg%3E");
}
.bg-dark .facetwp-type-checkboxes .facetwp-checkbox.checked:before,
.bg-dark .facetwp-sort-checkboxes .facetwp-checkbox.checked:before {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg width='20' height='21' viewBox='0 0 20 21' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M16.1875 19.125C16.6445 19.125 17.0312 18.9844 17.3828 18.6328C17.6992 18.3164 17.875 17.9297 17.875 17.4375V5.0625C17.875 4.60547 17.6992 4.21875 17.3828 3.86719C17.0312 3.55078 16.6445 3.375 16.1875 3.375H3.8125C3.32031 3.375 2.93359 3.55078 2.61719 3.86719C2.26562 4.21875 2.125 4.60547 2.125 5.0625V17.4375C2.125 17.9297 2.26562 18.3164 2.61719 18.6328C2.93359 18.9844 3.32031 19.125 3.8125 19.125H16.1875ZM8.98047 15.6797C8.875 15.8203 8.73438 15.8555 8.59375 15.8555C8.41797 15.8555 8.27734 15.8203 8.20703 15.6797L4.55078 12.0234C4.41016 11.918 4.375 11.7773 4.375 11.6367C4.375 11.4961 4.41016 11.3555 4.55078 11.2148L5.32422 10.4414C5.42969 10.3359 5.57031 10.2656 5.71094 10.2656C5.85156 10.2656 5.99219 10.3359 6.13281 10.4414L8.59375 12.9023L13.8672 7.62891C13.9727 7.52344 14.1133 7.45312 14.2539 7.45312C14.3945 7.45312 14.5352 7.52344 14.6758 7.62891L15.4492 8.40234C15.5547 8.54297 15.625 8.68359 15.625 8.82422C15.625 8.96484 15.5547 9.10547 15.4492 9.21094L8.98047 15.6797Z' fill='%23fff'/%3E%3C/svg%3E");
}
.bg-dark .facetwp-type-radio .facetwp-radio,
.bg-dark .facetwp-sort-radio .facetwp-radio {
  color: var(--white);
}
.bg-dark .facetwp-type-radio .facetwp-radio:before,
.bg-dark .facetwp-sort-radio .facetwp-radio:before {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg width='20' height='21' viewBox='0 0 20 21' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M10 2.53125C11.5469 2.53125 13.0234 2.95312 14.3594 3.72656C15.6953 4.5 16.75 5.55469 17.5234 6.89062C18.2969 8.22656 18.7188 9.70312 18.7188 11.25C18.7188 12.832 18.2969 14.2734 17.5234 15.6094C16.75 16.9453 15.6953 18.0352 14.3594 18.8086C13.0234 19.582 11.5469 19.9688 10 19.9688C8.41797 19.9688 6.97656 19.582 5.64062 18.8086C4.30469 18.0352 3.21484 16.9453 2.44141 15.6094C1.66797 14.2734 1.28125 12.832 1.28125 11.25C1.28125 9.70312 1.66797 8.22656 2.44141 6.89062C3.21484 5.55469 4.30469 4.5 5.64062 3.72656C6.97656 2.95312 8.41797 2.53125 10 2.53125ZM10 18.2812C11.2656 18.2812 12.4258 17.9648 13.5156 17.332C14.5703 16.6992 15.4492 15.8555 16.082 14.7656C16.7148 13.7109 17.0312 12.5156 17.0312 11.25C17.0312 9.98438 16.7148 8.82422 16.082 7.73438C15.4492 6.67969 14.5703 5.80078 13.5156 5.16797C12.4258 4.53516 11.2656 4.21875 10 4.21875C8.73438 4.21875 7.53906 4.53516 6.48438 5.16797C5.39453 5.80078 4.55078 6.67969 3.91797 7.73438C3.28516 8.82422 2.96875 9.98438 2.96875 11.25C2.96875 12.5156 3.28516 13.7109 3.91797 14.7656C4.55078 15.8555 5.39453 16.6992 6.48438 17.332C7.53906 17.9648 8.73438 18.2812 10 18.2812Z' fill='%23fff'/%3E%3C/svg%3E");
}
.bg-dark .facetwp-type-radio .facetwp-radio.checked:before,
.bg-dark .facetwp-sort-radio .facetwp-radio.checked:before {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg width='20' height='21' viewBox='0 0 20 21' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M10 2.53125C11.5469 2.53125 13.0234 2.95312 14.3594 3.72656C15.6953 4.5 16.75 5.55469 17.5234 6.89062C18.2969 8.22656 18.7188 9.70312 18.7188 11.25C18.7188 12.832 18.2969 14.2734 17.5234 15.6094C16.75 16.9453 15.6953 18.0352 14.3594 18.8086C13.0234 19.582 11.5469 19.9688 10 19.9688C8.41797 19.9688 6.97656 19.582 5.64062 18.8086C4.30469 18.0352 3.21484 16.9453 2.44141 15.6094C1.66797 14.2734 1.28125 12.832 1.28125 11.25C1.28125 9.70312 1.66797 8.22656 2.44141 6.89062C3.21484 5.55469 4.30469 4.5 5.64062 3.72656C6.97656 2.95312 8.41797 2.53125 10 2.53125ZM12.8125 11.25C12.8125 10.4766 12.5312 9.84375 11.9688 9.28125C11.4062 8.71875 10.7734 8.4375 10 8.4375C9.22656 8.4375 8.55859 8.71875 7.99609 9.28125C7.43359 9.84375 7.1875 10.4766 7.1875 11.25C7.1875 12.0234 7.43359 12.6914 7.99609 13.2539C8.55859 13.8164 9.22656 14.0625 10 14.0625C10.7734 14.0625 11.4062 13.8164 11.9688 13.2539C12.5312 12.6914 12.8125 12.0234 12.8125 11.25Z' fill='%23fff'/%3E%3C/svg%3E");
}

.range-slider:not(:last-child) {
  margin-bottom: 0.9375rem;
}
.range-slider .filter-title {
  margin-bottom: 0.625rem;
}
.range-slider .range-slider-wrapper {
  display: flex;
}
.range-slider .facetwp-slider-label,
.range-slider .facetwp-slider-reset {
  display: none !important;
}
.range-slider .range-slider-minmax {
  width: 3.75rem;
  min-width: 3.75rem;
  font-weight: 400;
}
.range-slider .range-slider-minmax.min {
  text-align: right;
  margin-right: 1.625rem;
}
.range-slider .range-slider-minmax.max {
  margin-left: 1.625rem;
}
.range-slider .facetwp-type-slider {
  flex-grow: 1;
}
.range-slider .noUi-connect {
  width: 100%;
  background: var(--text-color);
  top: 50%;
  margin-top: -1.5px;
  height: 0.1875rem;
}
.range-slider .noUi-connects {
  border-radius: 0.3125rem;
  overflow: hidden;
  z-index: 0;
}
.range-slider .noUi-target {
  position: relative;
  direction: ltr;
  border-radius: 0;
  border: none;
  padding: 0;
  height: 0.75rem;
  background: none;
}
.range-slider .noUi-target:before {
  content: "";
  display: block;
  height: 2px;
  background: rgba(0, 0, 0, 0.2);
  border-radius: 2px;
  width: 100%;
  position: absolute;
  top: 50%;
  margin-top: -1px;
}
.range-slider .noUi-handle {
  position: absolute;
  border: none;
  border-radius: 0.75rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.36);
  background: #FFF;
  cursor: default;
  width: 0.75rem;
  height: 0.75rem;
  left: -0.375rem;
  top: -1px;
}

.facetwp-slider-wrap {
  margin-bottom: 0;
}

.filter-title {
  margin-bottom: 1rem;
}

section.template-free-form .facetwp-facet {
  margin-top: 1rem;
}

.off-canvas {
  background: var(--dark-matter);
  color: var(--white);
  overflow: auto;
  top: 0;
  right: 0;
  height: 100%;
  width: 100%;
  transform: translateX(100%);
  transition: transform 0.6s;
  padding: 6rem 1rem 1.625rem 1rem;
}
.off-canvas:has(.notification-bar).site-header {
  padding-top: 40px;
}
.off-canvas form:has(option[value=other]:checked) .other-field {
  display: block;
}
.off-canvas a {
  color: var(--white);
}
.off-canvas a:hover {
  text-decoration: none;
}
.off-canvas a:link,
.off-canvas a:visited {
  color: var(--white);
}
.off-canvas.is-open {
  transform: translateX(0);
}
.off-canvas .top-menu {
  padding: 0;
  margin: 0 0 1.875rem 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.625rem;
  align-items: center;
}
.off-canvas .top-menu li:last-child {
  border-right: 0;
}
.off-canvas .top-menu li:last-child a {
  border: 0;
  background: #fff;
}
.off-canvas .top-menu li select,
.off-canvas .top-menu li a {
  color: var(--white);
  outline: none;
}
.off-canvas .top-menu li select {
  border: 0;
  display: block;
  margin-left: -0.25rem;
  background: none;
  appearance: none;
  color: var(--dark-matter);
  background: url("data:image/svg+xml;charset=utf8,%3Csvg width='10' height='6' viewBox='0 0 10 6' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5 5.5C4.78906 5.5 4.60156 5.42969 4.46094 5.28906L0.710938 1.53906C0.40625 1.25781 0.40625 0.765625 0.710938 0.484375C0.992188 0.179688 1.48438 0.179688 1.76562 0.484375L5 3.69531L8.21094 0.484375C8.49219 0.179688 8.98438 0.179688 9.26562 0.484375C9.57031 0.765625 9.57031 1.25781 9.26562 1.53906L5.51562 5.28906C5.375 5.42969 5.1875 5.5 5 5.5Z' fill='%231b3e51'/%3E%3C/svg%3E");
  background-size: 0.5rem 0.3125rem;
  background-position: 100% 50%;
  background-repeat: no-repeat;
  padding-right: 0.75rem;
}
.off-canvas .top-menu li a {
  padding: 0.1875rem 0;
  display: block;
}
.off-canvas .menu a {
  padding: 0;
}
.off-canvas .menu.drilldown {
  overflow: visible;
}
.off-canvas .cell &gt; .is-drilldown {
  width: 100%;
  max-width: 100% !important;
  max-height: 100% !important;
}
.off-canvas .cell &gt; .is-drilldown &gt; .menu &gt; .menu-item:not(.button) select {
  padding: 0 0.5rem 0 0;
  border: 0;
  display: block;
  background: none;
  color: var(--white);
  appearance: none;
  background: url("data:image/svg+xml;charset=utf8,%3Csvg width='10' height='6' viewBox='0 0 10 6' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5 5.5C4.78906 5.5 4.60156 5.42969 4.46094 5.28906L0.710938 1.53906C0.40625 1.25781 0.40625 0.765625 0.710938 0.484375C0.992188 0.179688 1.48438 0.179688 1.76562 0.484375L5 3.69531L8.21094 0.484375C8.49219 0.179688 8.98438 0.179688 9.26562 0.484375C9.57031 0.765625 9.57031 1.25781 9.26562 1.53906L5.51562 5.28906C5.375 5.42969 5.1875 5.5 5 5.5Z' fill='%23ffffff'/%3E%3C/svg%3E");
  background-size: 0.5rem 0.3125rem;
  background-position: 100% 50%;
  background-repeat: no-repeat;
  padding-right: 0.75rem;
  font-weight: 600;
  font-size: 1rem;
  line-height: normal;
  margin: 0.9375rem 0;
  outline: none;
}
.off-canvas .cell &gt; .is-drilldown &gt; .menu &gt; .menu-item:not(.button) .gtranslate_wrapper .gt_selector {
  color: var(--white);
  border: none;
  background-color: var(--dark-matter);
  padding: 0 0.25rem;
}
.off-canvas .cell &gt; .is-drilldown &gt; .menu &gt; .menu-item:not(.button) .gtranslate_wrapper .gt_selector option:first-child {
  display: none;
}
.off-canvas .cell &gt; .is-drilldown &gt; .menu &gt; .menu-item:not(.button) .gtranslate_wrapper .gt_selector option:hover {
  background: var(--slate-mist);
  color: var(--white);
}
.off-canvas .cell &gt; .is-drilldown &gt; .menu &gt; .menu-item:not(.button).is-drilldown-submenu-parent:hover {
  cursor: pointer;
}
.off-canvas .cell &gt; .is-drilldown &gt; .menu &gt; .menu-item:not(.button).is-drilldown-submenu-parent &gt; a::after {
  content: "+";
  border: none;
  border-radius: 0;
  width: auto;
  height: auto;
  transform: translate(0, -50%);
  margin: 0;
}
.off-canvas .cell &gt; .is-drilldown &gt; .menu &gt; .menu-item:not(.button) &gt; a {
  padding: 0.9375rem 0;
  font-weight: 600;
  font-size: 1rem;
  line-height: normal;
}
.off-canvas .cell &gt; .is-drilldown &gt; .menu &gt; .menu-item:not(.button) .mega-menu {
  padding-left: 0;
  padding-top: 0 !important;
  display: flex;
  flex-wrap: wrap;
}
.off-canvas .cell &gt; .is-drilldown &gt; .menu &gt; .menu-item:not(.button) .mega-menu .button.simple, .off-canvas .cell &gt; .is-drilldown &gt; .menu &gt; .menu-item:not(.button) .mega-menu li.button &gt; a.simple {
  justify-content: flex-start;
  color: var(--white);
}
.off-canvas .cell &gt; .is-drilldown &gt; .menu &gt; .menu-item:not(.button) .mega-menu * + .mega-menu-item {
  margin-top: 1.5rem;
}
.off-canvas .cell &gt; .is-drilldown &gt; .menu &gt; .menu-item:not(.button) .mega-menu .mega-menu-item &gt; .submenu {
  position: static;
  padding-left: 0;
}
.off-canvas .cell &gt; .is-drilldown &gt; .menu &gt; .menu-item:not(.button) .mega-menu .mega-menu-item:not(:first-of-type) {
  width: calc(25% - 15px);
  min-width: 9.375rem;
}
.off-canvas .cell &gt; .is-drilldown &gt; .menu &gt; .menu-item:not(.button) .mega-menu .is-submenu-parent-item {
  width: 100%;
  margin-top: 1.5rem;
}
.off-canvas .cell &gt; .is-drilldown &gt; .menu &gt; .menu-item:not(.button) .mega-menu .is-submenu-parent-item a {
  font-weight: 600;
  line-height: 1.3333333333;
  color: var(--white);
}
.off-canvas .cell &gt; .is-drilldown &gt; .menu &gt; .menu-item:not(.button) .mega-menu .is-submenu-parent-item a {
  font-size: 2.25rem;
}
@media screen and (min-width: 768px) {
  .off-canvas .cell &gt; .is-drilldown &gt; .menu &gt; .menu-item:not(.button) .mega-menu .is-submenu-parent-item a {
    font-size: calc(36px + 12 * (100vw - 768px) / 256);
  }
}
@media screen and (min-width: 1024px) {
  .off-canvas .cell &gt; .is-drilldown &gt; .menu &gt; .menu-item:not(.button) .mega-menu .is-submenu-parent-item a {
    font-size: 3rem;
  }
}
@media print, screen and (min-width: 48em) {
  .off-canvas .cell &gt; .is-drilldown &gt; .menu &gt; .menu-item:not(.button) .mega-menu .is-submenu-parent-item a {
    line-height: 1.2083333333;
  }
}
.off-canvas .cell &gt; .is-drilldown &gt; .menu &gt; .menu-item:not(.button) .mega-menu .is-submenu-parent-item a:hover {
  text-decoration: underline;
}
.off-canvas .cell &gt; .is-drilldown &gt; .menu &gt; .menu-item:not(.button) .mega-menu .is-submenu-parent-item + * {
  margin-top: 2.5rem;
}
.off-canvas .cell &gt; .is-drilldown &gt; .menu &gt; .menu-item:not(.button) .mega-menu .is-submenu-parent-item + .mega-menu-item {
  width: 100%;
}
.off-canvas .cell &gt; .is-drilldown &gt; .menu &gt; .menu-item:not(.button) .mega-menu .js-drilldown-back {
  width: 100%;
}
.off-canvas .cell &gt; .is-drilldown &gt; .menu &gt; .menu-item:not(.button) .mega-menu .js-drilldown-back a {
  padding: 0;
  background: none;
  padding: 0;
  height: auto;
  color: var(--radiant-flame);
  font-weight: 600;
  display: flex;
  align-items: center;
}
.off-canvas .cell &gt; .is-drilldown &gt; .menu &gt; .menu-item:not(.button) .mega-menu .js-drilldown-back a::before {
  border: none;
  border-radius: 0;
  content: "";
  width: 0.875rem;
  height: 1rem;
  transition: margin 0.3s, right 0.3s, left 0.3s, background 0.3s;
  transform: rotate(180deg);
  left: 0;
  position: relative;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg width='15' height='13' viewBox='0 0 15 13' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M13.6875 7.71875L8.6875 12.7188C8.5 12.9062 8.25 13 8 13C7.71875 13 7.46875 12.9062 7.28125 12.7188C6.875 12.3438 6.875 11.6875 7.28125 11.3125L10.5625 8H1C0.4375 8 0 7.5625 0 7C0 6.46875 0.4375 6 1 6H10.5625L7.28125 2.71875C6.875 2.34375 6.875 1.6875 7.28125 1.3125C7.65625 0.90625 8.3125 0.90625 8.6875 1.3125L13.6875 6.3125C14.0938 6.6875 14.0938 7.34375 13.6875 7.71875Z' fill='%23f44414'/%3E%3C/svg%3E");
}
.off-canvas .cell &gt; .is-drilldown &gt; .menu &gt; .menu-item:not(.button) .mega-menu .js-drilldown-back a:hover::before {
  left: 0.25rem;
}
.off-canvas .cell &gt; .is-drilldown &gt; .menu &gt; .menu-item:not(.button) .mega-menu .js-drilldown-back + .mega-menu-item {
  width: 100%;
}
.off-canvas .cell &gt; .is-drilldown &gt; .menu .menu-item.button, .off-canvas .cell &gt; .is-drilldown &gt; .menu li.button &gt; a.menu-item {
  margin-top: 0.9375rem;
}
.off-canvas .cell &gt; .is-drilldown &gt; .menu .menu-item.button a, .off-canvas .cell &gt; .is-drilldown &gt; .menu li.button &gt; a.menu-item a {
  background: var(--radiant-flame) !important;
  color: var(--white);
}
.off-canvas .cell &gt; .is-drilldown &gt; .menu .menu-item.button, .off-canvas .cell &gt; .is-drilldown &gt; .menu li.button &gt; a.menu-item {
  margin-top: 0.9375rem;
}
.off-canvas .cell &gt; .is-drilldown &gt; .menu .menu-item.button a, .off-canvas .cell &gt; .is-drilldown &gt; .menu li.button &gt; a.menu-item a {
  background: var(--radiant-flame) !important;
  color: var(--white);
}
.off-canvas .cell .mega-menu .submenu li, .off-canvas .cell .mega-menu .submenu li a {
  font-weight: 400;
  font-size: 0.75rem;
  line-height: 1.1666666667;
}
.off-canvas .cell .mega-menu .submenu li.headline a {
  font-weight: 600;
  font-size: 1rem;
  line-height: normal;
}
.off-canvas .cell .mega-menu .submenu li.headline + li {
  margin-top: 1.25rem;
}
.off-canvas .cell .mega-menu .submenu li + li:not(.headline) {
  margin-top: 0.625rem;
}
.off-canvas .cell .mega-menu .submenu li + li.headline {
  margin-top: 1.25rem;
}
.off-canvas .cell .mega-menu .submenu a {
  padding: 0;
}
.off-canvas .cell .mega-menu .button.simple, .off-canvas .cell .mega-menu .menu li.button &gt; a.simple, .menu .off-canvas .cell .mega-menu li.button &gt; a.simple {
  padding: 0;
}
.off-canvas .cell .mega-menu .button.simple::after, .off-canvas .cell .mega-menu .menu li.button &gt; a.simple::after, .menu .off-canvas .cell .mega-menu li.button &gt; a.simple::after {
  margin-top: 0;
  left: 0;
  right: 0;
  transform: none;
  top: 0;
  bottom: 0;
  position: relative;
}
.off-canvas .cell .mega-menu .button.simple:hover::after, .off-canvas .cell .mega-menu .menu li.button &gt; a.simple:hover::after, .menu .off-canvas .cell .mega-menu li.button &gt; a.simple:hover::after {
  left: 0.25rem;
}
.off-canvas .cell .mega-menu &gt; li {
  word-wrap: break-word;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.off-canvas .cell .mega-menu &gt; li .title {
  display: none;
}
.off-canvas .cell .mega-menu &gt; li .preheadline {
  text-transform: uppercase;
  color: var(--solar-flare);
}
.off-canvas .cell .mega-menu &gt; li .preheadline + * {
  margin-top: 0.25rem;
}
.off-canvas .cell .mega-menu &gt; li .headline {
  color: var(--icy-blue);
  font-weight: 500;
}
.off-canvas .cell .mega-menu &gt; li .headline + * {
  margin-top: 0.25rem;
}
.off-canvas .cell .mega-menu &gt; li * + .description h4 {
  margin-top: 0.625rem;
}
.off-canvas .cell .mega-menu &gt; li li.button.simple::after {
  display: none;
}
.off-canvas .cell .mega-menu &gt; li li.button.simple a {
  background: none;
  padding: 0;
  height: auto;
  color: var(--white);
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  font-size: 1rem;
}
.off-canvas .cell .mega-menu &gt; li li.button.simple a::after {
  margin-top: 0;
  left: 0;
  right: 0;
  transform: none;
  top: 0;
  bottom: 0;
  position: relative;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg width='15' height='13' viewBox='0 0 15 13' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M13.6875 7.71875L8.6875 12.7188C8.5 12.9062 8.25 13 8 13C7.71875 13 7.46875 12.9062 7.28125 12.7188C6.875 12.3438 6.875 11.6875 7.28125 11.3125L10.5625 8H1C0.4375 8 0 7.5625 0 7C0 6.46875 0.4375 6 1 6H10.5625L7.28125 2.71875C6.875 2.34375 6.875 1.6875 7.28125 1.3125C7.65625 0.90625 8.3125 0.90625 8.6875 1.3125L13.6875 6.3125C14.0938 6.6875 14.0938 7.34375 13.6875 7.71875Z' fill='%23fff'/%3E%3C/svg%3E");
}
.off-canvas .cell .mega-menu &gt; li li.button.simple a:hover::after {
  left: 0.25rem;
}
.off-canvas .cell .mega-menu &gt; li img + *,
.off-canvas .cell .mega-menu &gt; li svg + * {
  margin-top: 0.25rem;
}
.off-canvas .cell .mega-menu &gt; li .description {
  font-weight: 600;
  font-size: 1rem;
  line-height: normal;
  font-weight: 300;
  max-width: 21.25rem;
}
.off-canvas .cell .mega-menu &gt; li .description a {
  display: inline-block;
  padding: 0;
}
.off-canvas .cell .mega-menu &gt; li .description + * {
  margin-top: 1.25rem;
}
.off-canvas .cell .mega-menu &gt; li:not(:last-of-type) {
  margin-right: 20px;
}
.off-canvas .cell .mega-menu .is-dropdown-submenu {
  min-width: auto;
}
.off-canvas .cell .mega-menu.items-centered &gt; li:nth-child(2) {
  margin-left: auto;
}
.off-canvas .cell .mega-menu.items-centered &gt; li:last-child {
  margin-right: auto;
}
.off-canvas .cell .mega-menu.items-right &gt; li:nth-child(2) {
  margin-left: auto;
}
.off-canvas .close-button {
  display: inline-block;
  width: 1.25rem;
  height: 1.25rem;
  position: relative;
  position: absolute;
  right: 1.875rem;
  top: 4.688rem;
}
.off-canvas .close-button:after, .off-canvas .close-button:before {
  content: "";
  display: block;
  width: 0.1875rem;
  height: 100%;
  background: var(--text-color);
  position: absolute;
  left: 0.5rem;
  top: 0;
  border-radius: 0.1875rem;
}
.off-canvas .close-button:after {
  transform: rotate(-45deg);
}
.off-canvas .close-button:before {
  transform: rotate(45deg);
}
.off-canvas .close-button::before, .off-canvas .close-button::after {
  background: var(--white);
}
.off-canvas .close-button:hover {
  cursor: pointer;
}
.off-canvas .is-drilldown.animate-height {
  transition: min-height 1s;
}
.off-canvas .is-drilldown.animate-height:not(.active) {
  min-height: 0 !important;
}
.off-canvas .is-drilldown.animate-height .menu.drilldown {
  overflow: hidden;
}
.off-canvas .is-drilldown.animate-height.active .menu.drilldown {
  overflow: visible;
}
.off-canvas .is-drilldown.animate-height .mobile-support-content-container {
  display: flex;
  flex-direction: column;
  row-gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 400;
}

.off-canvas-wrapper {
  overflow: visible;
}

.off-canvas.is-transition-overlap {
  z-index: 9999;
}
.off-canvas.is-transition-overlap.is-open {
  box-shadow: none;
}

.off-canvas:not(.hero-unit-light) {
  background: var(--dark-matter);
  color: var(--white);
}
.off-canvas:not(.hero-unit-light) .off-canvas-close::before, .off-canvas:not(.hero-unit-light) .off-canvas-close::after {
  background: white;
}
.off-canvas:not(.hero-unit-light) .cell &gt; .is-drilldown li.search-btn &gt; a {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg width='20' height='20' viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M17.625 15.875L13.875 12.125C14.7188 10.875 15.1562 9.3125 14.9375 7.625C14.5312 4.75 12.1875 2.4375 9.34375 2.0625C5.09375 1.53125 1.5 5.125 2.03125 9.375C2.40625 12.2188 4.71875 14.5625 7.59375 14.9688C9.28125 15.1875 10.8438 14.75 12.125 13.9062L15.8438 17.6562C16.3438 18.125 17.125 18.125 17.625 17.6562C18.0938 17.1562 18.0938 16.375 17.625 15.875ZM4.46875 8.5C4.46875 6.3125 6.25 4.5 8.46875 4.5C10.6562 4.5 12.4688 6.3125 12.4688 8.5C12.4688 10.7188 10.6562 12.5 8.46875 12.5C6.25 12.5 4.46875 10.7188 4.46875 8.5Z' fill='%23fff'/%3E%3C/svg%3E");
}
.off-canvas:not(.hero-unit-light) a {
  color: var(--white);
  background: none;
}
.off-canvas:not(.hero-unit-light) .is-drilldown-submenu {
  background: var(--dark-matter);
}
.off-canvas:not(.hero-unit-light) .mega-menu .button.simple, .off-canvas:not(.hero-unit-light) .mega-menu .menu li.button &gt; a.simple, .menu .off-canvas:not(.hero-unit-light) .mega-menu li.button &gt; a.simple {
  color: var(--radiant-flame) !important;
}
.off-canvas:not(.hero-unit-light) .mega-menu .button.simple a, .off-canvas:not(.hero-unit-light) .mega-menu .menu li.button &gt; a.simple a, .menu .off-canvas:not(.hero-unit-light) .mega-menu li.button &gt; a.simple a {
  color: var(--white) !important;
}
.off-canvas:not(.hero-unit-light) .mega-menu .button.simple a::after, .off-canvas:not(.hero-unit-light) .mega-menu .menu li.button &gt; a.simple a::after, .menu .off-canvas:not(.hero-unit-light) .mega-menu li.button &gt; a.simple a::after {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg width='15' height='13' viewBox='0 0 15 13' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M13.6875 7.71875L8.6875 12.7188C8.5 12.9062 8.25 13 8 13C7.71875 13 7.46875 12.9062 7.28125 12.7188C6.875 12.3438 6.875 11.6875 7.28125 11.3125L10.5625 8H1C0.4375 8 0 7.5625 0 7C0 6.46875 0.4375 6 1 6H10.5625L7.28125 2.71875C6.875 2.34375 6.875 1.6875 7.28125 1.3125C7.65625 0.90625 8.3125 0.90625 8.6875 1.3125L13.6875 6.3125C14.0938 6.6875 14.0938 7.34375 13.6875 7.71875Z' fill='%23FFAF44'/%3E%3C/svg%3E") !important;
}
.off-canvas:not(.hero-unit-light) .mega-menu .button.simple::after, .off-canvas:not(.hero-unit-light) .mega-menu .menu li.button &gt; a.simple::after, .menu .off-canvas:not(.hero-unit-light) .mega-menu li.button &gt; a.simple::after {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg width='15' height='13' viewBox='0 0 15 13' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M13.6875 7.71875L8.6875 12.7188C8.5 12.9062 8.25 13 8 13C7.71875 13 7.46875 12.9062 7.28125 12.7188C6.875 12.3438 6.875 11.6875 7.28125 11.3125L10.5625 8H1C0.4375 8 0 7.5625 0 7C0 6.46875 0.4375 6 1 6H10.5625L7.28125 2.71875C6.875 2.34375 6.875 1.6875 7.28125 1.3125C7.65625 0.90625 8.3125 0.90625 8.6875 1.3125L13.6875 6.3125C14.0938 6.6875 14.0938 7.34375 13.6875 7.71875Z' fill='%23FFAF44'/%3E%3C/svg%3E");
}
.off-canvas:not(.hero-unit-light) .mega-menu::after {
  background: var(--velvet-indigo);
}
.off-canvas:not(.hero-unit-light) .mega-menu svg path {
  fill: white;
}
.off-canvas:not(.hero-unit-light) .mega-menu &gt; li:first-child .title {
  color: var(--dark-matter);
}
.off-canvas:not(.hero-unit-light) .mega-menu &gt; li:first-child svg path {
  fill: var(--white);
}
.off-canvas:not(.hero-unit-light) .mega-menu &gt; li:first-child .preheadline {
  color: var(--radiant-flame);
}
.off-canvas:not(.hero-unit-light) .drilldown .is-active .is-drilldown-submenu {
  z-index: 1;
}

.drilldown .is-drilldown-submenu, .drilldown a {
  background: none !important;
}
.drilldown .is-drilldown-submenu {
  z-index: 1;
}

.with-notification-bar.offcanvas-active .menu-item.button a, .with-notification-bar.offcanvas-active .menu li.button &gt; a.menu-item a, .menu .with-notification-bar.offcanvas-active li.button &gt; a.menu-item a {
  background: var(--radiant-flame) !important;
  color: var(--white);
  border: 0;
}

.site-header {
  padding: 1.25rem 0;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: var(--white);
  border-bottom: 1px solid var(--icy-blue);
  z-index: 9998;
  transition: 0.6s;
}
@media print, screen and (min-width: 64em) {
  .site-header.has-secondary-nav {
    border: 0;
  }
}
@media print, screen and (max-width: 61.74875em) {
  .site-header {
    border: none;
  }
}
.site-header a {
  color: inherit;
}
.site-header a:hover {
  text-decoration: none;
  color: var(--link-hover);
}
.site-header .mobile-search-btn-header:hover {
  color: transparent;
}
@media (max-height: 1034px) {
  .site-header.is-hidden {
    transform: translateY(-100%);
  }
}
.site-header::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.site-header a.disable-link {
  pointer-events: none;
}
.site-header .primary-navigation {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-end;
}
.site-header .primary-navigation .top-menu {
  padding: 0;
  margin: 0.875rem 0 1.25rem 0;
  list-style: none;
  display: flex;
}
.site-header .primary-navigation .top-menu li,
.site-header .primary-navigation .top-menu li a {
  font-weight: 400;
  font-size: 0.75rem;
  line-height: 1.1666666667;
}
.site-header .primary-navigation .top-menu li a {
  padding: 0.1875rem 0.625rem;
  display: block;
}
@media screen and (max-width: 75em) {
  .site-header .primary-navigation .top-menu li a {
    padding: 0.1875rem 0.3125rem;
  }
}
.site-header .primary-navigation .top-menu *:not(:last-child) a,
.site-header .primary-navigation .top-menu *:not(:last-child) .ss-single-selected {
  border-right: 1px solid var(--icy-blue);
}
.site-header .primary-navigation &gt; ul {
  align-items: center;
}
.site-header .primary-navigation &gt; ul &gt; li.button {
  margin-right: 1rem;
  margin-left: 1rem;
}
@media screen and (max-width: 75em) {
  .site-header .primary-navigation &gt; ul &gt; li.button {
    margin-right: 0.5rem;
    margin-left: 0.5rem;
  }
}
.site-header .primary-navigation &gt; ul &gt; li.button:last-child {
  margin-right: 0 !important;
}
.site-header .primary-navigation &gt; ul &gt; li.button:last-child &gt; a {
  border: 2px solid var(--radiant-flame);
  color: var(--radiant-flame);
  background: none;
  transition: margin 0.3s, right 0.3s, left 0.3s, background 0.3s;
  font-weight: 700;
}
.site-header .primary-navigation &gt; ul &gt; li.button:last-child &gt; a:hover {
  background: var(--link-hover);
  color: var(--white);
  border-color: var(--link-hover);
}
.site-header .primary-navigation &gt; ul &gt; li.button:last-child &gt; a::after {
  content: "";
  width: 0.875rem;
  height: 1rem;
  margin-left: 0.5rem;
  transition: margin 0.3s, right 0.3s, left 0.3s, background 0.3s;
  left: 0;
  position: relative;
  background: url("data:image/svg+xml;charset=utf8,%3Csvg width='15' height='13' viewBox='0 0 15 13' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M13.6875 7.71875L8.6875 12.7188C8.5 12.9062 8.25 13 8 13C7.71875 13 7.46875 12.9062 7.28125 12.7188C6.875 12.3438 6.875 11.6875 7.28125 11.3125L10.5625 8H1C0.4375 8 0 7.5625 0 7C0 6.46875 0.4375 6 1 6H10.5625L7.28125 2.71875C6.875 2.34375 6.875 1.6875 7.28125 1.3125C7.65625 0.90625 8.3125 0.90625 8.6875 1.3125L13.6875 6.3125C14.0938 6.6875 14.0938 7.34375 13.6875 7.71875Z' fill='%23f44414'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
}
.site-header .primary-navigation &gt; ul &gt; li.button:last-child &gt; a:hover::after {
  content: "";
  width: 0.875rem;
  height: 1rem;
  margin-left: 0.5rem;
  transition: margin 0.3s, right 0.3s, left 0.3s, background 0.3s;
  left: 0;
  position: relative;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg width='15' height='13' viewBox='0 0 15 13' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M13.6875 7.71875L8.6875 12.7188C8.5 12.9062 8.25 13 8 13C7.71875 13 7.46875 12.9062 7.28125 12.7188C6.875 12.3438 6.875 11.6875 7.28125 11.3125L10.5625 8H1C0.4375 8 0 7.5625 0 7C0 6.46875 0.4375 6 1 6H10.5625L7.28125 2.71875C6.875 2.34375 6.875 1.6875 7.28125 1.3125C7.65625 0.90625 8.3125 0.90625 8.6875 1.3125L13.6875 6.3125C14.0938 6.6875 14.0938 7.34375 13.6875 7.71875Z' fill='%23fff'/%3E%3C/svg%3E");
}
.site-header .primary-navigation &gt; ul &gt; li &gt; a {
  font-weight: 600;
  font-size: 1rem;
  line-height: normal;
}
.site-header .primary-navigation &gt; ul &gt; li.search-btn &gt; a {
  font-size: 0;
  padding: 0 0.9375rem;
  height: 1.25rem;
  width: 1.25rem;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg width='20' height='20' viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M17.625 15.875L13.875 12.125C14.7188 10.875 15.1562 9.3125 14.9375 7.625C14.5312 4.75 12.1875 2.4375 9.34375 2.0625C5.09375 1.53125 1.5 5.125 2.03125 9.375C2.40625 12.2188 4.71875 14.5625 7.59375 14.9688C9.28125 15.1875 10.8438 14.75 12.125 13.9062L15.8438 17.6562C16.3438 18.125 17.125 18.125 17.625 17.6562C18.0938 17.1562 18.0938 16.375 17.625 15.875ZM4.46875 8.5C4.46875 6.3125 6.25 4.5 8.46875 4.5C10.6562 4.5 12.4688 6.3125 12.4688 8.5C12.4688 10.7188 10.6562 12.5 8.46875 12.5C6.25 12.5 4.46875 10.7188 4.46875 8.5Z' fill='%230F0225'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
}
.site-header .primary-navigation &gt; ul .gtranslate_wrapper {
  margin: 0;
  margin-block-start: 0;
  margin-block-end: 0;
  padding: 0;
  border-top: 0;
  border-right: 1px solid var(--icy-blue);
  border-bottom: 0;
  border-left: 0;
}
.site-header .primary-navigation &gt; ul .gtranslate_wrapper:focus, .site-header .primary-navigation &gt; ul .gtranslate_wrapper:focus-visible, .site-header .primary-navigation &gt; ul .gtranslate_wrapper:focus-within {
  outline: none;
}
.site-header .primary-navigation &gt; ul .gtranslate_wrapper .gt_selector {
  display: block;
  height: 20px;
  width: 36px;
  margin: 0;
  padding: 0 0.25rem;
  color: transparent;
  border: none;
  outline: none;
  font-size: 0.75rem;
  background-image: url("../images/lang-picker-globe-48x48.png");
  background-repeat: no-repeat;
  background-size: 20px;
  background-position: center;
  background-color: transparent;
  transition: background 0.6s;
  appearance: none;
}
.site-header .primary-navigation &gt; ul .gtranslate_wrapper .gt_selector option {
  color: var(--dark-matter);
  padding-right: 0.25rem;
  padding-left: 0;
}
.site-header .primary-navigation &gt; ul .gtranslate_wrapper .gt_selector option:first-child {
  display: none;
}
.site-header .primary-navigation &gt; ul .gtranslate_wrapper .gt_selector option:hover {
  background: var(--slate-mist);
  color: var(--white);
}
.site-header .primary-navigation &gt; ul .gtranslate_wrapper .gt_selector option:focus, .site-header .primary-navigation &gt; ul .gtranslate_wrapper .gt_selector option:focus-visible, .site-header .primary-navigation &gt; ul .gtranslate_wrapper .gt_selector option:focus-within {
  outline: none;
}
.site-header .primary-navigation &gt; ul &gt; li.simple-nav-translate .gtranslate_wrapper {
  border-right: none;
}
.site-header .primary-navigation .menu.dropdown li:first-child &gt; ul li:nth-child(2) {
  min-width: 25%;
}
.site-header .ss-main {
  width: auto;
  background: none;
  color: inherit;
}
.site-header .ss-main .ss-single-selected {
  background: none;
  padding: 0 0.625rem;
  border: none;
  height: auto;
  font-weight: 400;
  font-size: 0.75rem;
  line-height: 1.1666666667;
  line-height: initial;
}
.site-header .ss-main .ss-single-selected .placeholder {
  line-height: initial;
}
@media screen and (max-width: 75em) {
  .site-header .ss-main .ss-single-selected {
    padding: 0 0.3125rem;
  }
}
.site-header .ss-main .ss-content {
  min-width: 10rem;
}
.site-header .ss-main .ss-content .ss-list .ss-option:hover, .site-header .ss-main .ss-content .ss-list .ss-option.ss-highlighted {
  background: var(--dark-matter);
}
.site-header .ss-main .ss-option,
.site-header .ss-main input {
  font-weight: 400;
  font-size: 0.75rem;
  line-height: 1.1666666667;
  background: none;
}
.site-header .ss-main .ss-option.ss-disabled,
.site-header .ss-main input.ss-disabled {
  background: none;
  display: none;
}
.site-header .ss-content.ss-open {
  margin-top: 0.625rem;
}
.site-header .ss-content {
  border: none;
  border-radius: 0;
  background: rgba(250, 248, 253, 0.8980392157);
}
.site-header .navbar &gt; .grid-x {
  flex-wrap: nowrap;
}

.post-template-default .site-header {
  padding-bottom: 0;
}

.secondary-nav-wrapper {
  padding: 2rem 0;
  width: 100%;
  background: var(--velvet-indigo);
  color: var(--white);
  margin-top: 1.25rem;
}
.secondary-nav-wrapper a {
  color: var(--white);
}
.secondary-nav-wrapper .title {
  font-weight: 600;
  font-size: 1.5rem;
  line-height: normal;
  font-weight: 500;
}
.secondary-nav-wrapper .menu.dropdown &gt; li.is-dropdown-submenu-parent &gt; a:hover {
  text-decoration: none;
  cursor: default;
}
.secondary-nav-wrapper .menu.dropdown &gt; li.is-dropdown-submenu-parent &gt; a::after {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg width='20' height='20' viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M10.0156 13.4961C9.73438 13.4961 9.48438 13.4023 9.29688 13.2148L4.29688 8.21484C3.89062 7.83984 3.89062 7.18359 4.29688 6.80859C4.67188 6.40234 5.32812 6.40234 5.70312 6.80859L10.0156 11.0898L14.2969 6.80859C14.6719 6.40234 15.3281 6.40234 15.7031 6.80859C16.1094 7.18359 16.1094 7.83984 15.7031 8.21484L10.7031 13.2148C10.5156 13.4023 10.2656 13.4961 10.0156 13.4961Z' fill='%23fff'/%3E%3C/svg%3E");
}
.secondary-nav-wrapper .submenu {
  opacity: 0;
  position: absolute;
}
.secondary-nav-wrapper .menu-item.is-dropdown-submenu-parent {
  position: relative;
}
.secondary-nav-wrapper .menu-item.is-dropdown-submenu-parent &gt; .submenu {
  top: calc(100% + 12px) !important;
  right: 0 !important;
  left: auto !important;
  border: none;
  transform: translateY(50px) !important;
  transition: transform 0.3s, opacity 0.3s;
  opacity: 0;
  pointer-events: none;
  background: var(--dark-matter);
  min-width: 50rem;
  padding: 0.625rem;
  display: block;
}
@media screen and (max-width: 66.875em) {
  .secondary-nav-wrapper .menu-item.is-dropdown-submenu-parent &gt; .submenu {
    min-width: 47rem;
  }
}
.secondary-nav-wrapper .menu-item.is-dropdown-submenu-parent &gt; .submenu .submenu-wrapper {
  overflow: auto;
  max-height: calc(100vh - 220px);
}
.secondary-nav-wrapper .menu-item.is-dropdown-submenu-parent &gt; .submenu .submenu-wrapper &gt; ul {
  display: flex;
  justify-content: flex-start;
  flex-direction: row;
  align-items: center;
  flex-wrap: wrap;
  gap: 0;
  transform: none;
}
.secondary-nav-wrapper .menu-item.is-dropdown-submenu-parent &gt; .submenu .submenu-wrapper &gt; ul &gt; .menu-item {
  width: 25%;
}
.secondary-nav-wrapper .menu-item.is-dropdown-submenu-parent.is-active .submenu {
  left: 50%;
  opacity: 1;
  pointer-events: all;
  transform: translateY(0) !important;
}
.secondary-nav-wrapper .secondary-nav {
  display: flex;
  align-items: center;
}
.secondary-nav-wrapper .secondary-nav li,
.secondary-nav-wrapper .secondary-nav li a {
  font-weight: 600;
  font-size: 1rem;
  line-height: normal;
  font-weight: 500;
}
.secondary-nav-wrapper .secondary-nav .search {
  margin-left: 0.9375rem;
}
.secondary-nav-wrapper .secondary-nav .search input {
  background: rgba(250, 248, 253, 0.1019607843);
  color: var(--white);
  border-radius: 2px;
  border: none;
  padding-left: 2.1875rem;
  width: 13.75rem;
  height: 2.125rem;
  font-weight: 300;
  font-size: 1rem;
  line-height: 1.5;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg width='20' height='20' viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M17.625 15.875L13.875 12.125C14.7188 10.875 15.1562 9.3125 14.9375 7.625C14.5312 4.75 12.1875 2.4375 9.34375 2.0625C5.09375 1.53125 1.5 5.125 2.03125 9.375C2.40625 12.2188 4.71875 14.5625 7.59375 14.9688C9.28125 15.1875 10.8438 14.75 12.125 13.9062L15.8438 17.6562C16.3438 18.125 17.125 18.125 17.625 17.6562C18.0938 17.1562 18.0938 16.375 17.625 15.875ZM4.46875 8.5C4.46875 6.3125 6.25 4.5 8.46875 4.5C10.6562 4.5 12.4688 6.3125 12.4688 8.5C12.4688 10.7188 10.6562 12.5 8.46875 12.5C6.25 12.5 4.46875 10.7188 4.46875 8.5Z' fill='%23fff'/%3E%3C/svg%3E");
  background-size: 1.25rem 1.25rem;
  background-position: 0.625rem 0.4375rem;
  background-repeat: no-repeat;
}
.secondary-nav-wrapper .secondary-nav .search input:-ms-input-placeholder {
  color: var(--white);
}
.secondary-nav-wrapper .secondary-nav .search input::placeholder {
  color: var(--white);
}

body:not(.has-hero-unit) .site-header {
  position: sticky;
  top: 0;
  left: 0;
  transform: none;
}
@media (max-height: 1034px) {
  body:not(.has-hero-unit) .site-header.is-hidden {
    transform: translateY(-100%);
  }
}

.site-header:not(.hero-unit-light) {
  background: var(--velvet-indigo);
  color: var(--white);
}
.site-header:not(.hero-unit-light) a {
  color: var(--white);
}
.site-header:not(.hero-unit-light) .hamburger .hamburger-line {
  background: var(--white);
}
@media screen and (max-width: 75em) {
  .site-header:not(.hero-unit-light) .brand {
    width: 15%;
  }
  .site-header:not(.hero-unit-light) .brand svg,
  .site-header:not(.hero-unit-light) .brand img {
    width: 100%;
  }
}
@media screen and (max-width: 64em) {
  .site-header:not(.hero-unit-light) .brand {
    width: 100%;
    max-width: 9.375rem;
  }
  .site-header:not(.hero-unit-light) .brand svg,
  .site-header:not(.hero-unit-light) .brand img {
    width: 100%;
  }
}
.site-header:not(.hero-unit-light) .brand svg g path {
  fill: var(--white);
}
.site-header:not(.hero-unit-light) .primary-navigation .top-menu *:not(:last-child) a,
.site-header:not(.hero-unit-light) .primary-navigation .top-menu *:not(:last-child) .ss-single-selected {
  border-right: 1px solid var(--icy-blue);
}
.site-header:not(.hero-unit-light) .primary-navigation &gt; ul &gt; li.search-btn &gt; a {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg width='20' height='20' viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M17.625 15.875L13.875 12.125C14.7188 10.875 15.1562 9.3125 14.9375 7.625C14.5312 4.75 12.1875 2.4375 9.34375 2.0625C5.09375 1.53125 1.5 5.125 2.03125 9.375C2.40625 12.2188 4.71875 14.5625 7.59375 14.9688C9.28125 15.1875 10.8438 14.75 12.125 13.9062L15.8438 17.6562C16.3438 18.125 17.125 18.125 17.625 17.6562C18.0938 17.1562 18.0938 16.375 17.625 15.875ZM4.46875 8.5C4.46875 6.3125 6.25 4.5 8.46875 4.5C10.6562 4.5 12.4688 6.3125 12.4688 8.5C12.4688 10.7188 10.6562 12.5 8.46875 12.5C6.25 12.5 4.46875 10.7188 4.46875 8.5Z' fill='%23fff'/%3E%3C/svg%3E");
}
.site-header:not(.hero-unit-light) .primary-navigation &gt; ul &gt; li.button a {
  background: var(--radiant-flame);
  color: var(--text-color);
}
.site-header:not(.hero-unit-light) .primary-navigation &gt; ul &gt; li.button a:hover, .site-header:not(.hero-unit-light) .primary-navigation &gt; ul &gt; li.button a:focus, .site-header:not(.hero-unit-light) .primary-navigation &gt; ul &gt; li.button a:active {
  color: var(--text-color);
  background: var(--link-hover);
}
.site-header:not(.hero-unit-light) .primary-navigation &gt; ul &gt; li.button a::after {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg width='15' height='13' viewBox='0 0 15 13' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M13.6875 7.71875L8.6875 12.7188C8.5 12.9062 8.25 13 8 13C7.71875 13 7.46875 12.9062 7.28125 12.7188C6.875 12.3438 6.875 11.6875 7.28125 11.3125L10.5625 8H1C0.4375 8 0 7.5625 0 7C0 6.46875 0.4375 6 1 6H10.5625L7.28125 2.71875C6.875 2.34375 6.875 1.6875 7.28125 1.3125C7.65625 0.90625 8.3125 0.90625 8.6875 1.3125L13.6875 6.3125C14.0938 6.6875 14.0938 7.34375 13.6875 7.71875Z' fill='%230F0225'/%3E%3C/svg%3E");
}
.site-header:not(.hero-unit-light) .ss-main {
  color: inherit;
}
.site-header:not(.hero-unit-light) .ss-content {
  background: rgba(15, 2, 37, 0.8980392157);
}
.site-header:not(.hero-unit-light) .ss-content .ss-search input {
  color: var(--inverse);
}
.site-header:not(.hero-unit-light) .menu.dropdown &gt; li.is-dropdown-submenu-parent &gt; a::after {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg width='20' height='20' viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M10.0156 13.4961C9.73438 13.4961 9.48438 13.4023 9.29688 13.2148L4.29688 8.21484C3.89062 7.83984 3.89062 7.18359 4.29688 6.80859C4.67188 6.40234 5.32812 6.40234 5.70312 6.80859L10.0156 11.0898L14.2969 6.80859C14.6719 6.40234 15.3281 6.40234 15.7031 6.80859C16.1094 7.18359 16.1094 7.83984 15.7031 8.21484L10.7031 13.2148C10.5156 13.4023 10.2656 13.4961 10.0156 13.4961Z' fill='%23fff'/%3E%3C/svg%3E");
}
.site-header:not(.hero-unit-light) .menu.dropdown .mega-menu .button.simple, .site-header:not(.hero-unit-light) .menu.dropdown .mega-menu li.button &gt; a.simple {
  color: var(--radiant-flame);
  justify-content: flex-start;
}
.site-header:not(.hero-unit-light) .menu.dropdown .mega-menu .button.simple a, .site-header:not(.hero-unit-light) .menu.dropdown .mega-menu li.button &gt; a.simple a {
  color: var(--radiant-flame) !important;
}
.site-header:not(.hero-unit-light) .menu.dropdown .mega-menu .button.simple a::after, .site-header:not(.hero-unit-light) .menu.dropdown .mega-menu li.button &gt; a.simple a::after {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg width='15' height='13' viewBox='0 0 15 13' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M13.6875 7.71875L8.6875 12.7188C8.5 12.9062 8.25 13 8 13C7.71875 13 7.46875 12.9062 7.28125 12.7188C6.875 12.3438 6.875 11.6875 7.28125 11.3125L10.5625 8H1C0.4375 8 0 7.5625 0 7C0 6.46875 0.4375 6 1 6H10.5625L7.28125 2.71875C6.875 2.34375 6.875 1.6875 7.28125 1.3125C7.65625 0.90625 8.3125 0.90625 8.6875 1.3125L13.6875 6.3125C14.0938 6.6875 14.0938 7.34375 13.6875 7.71875Z' fill='%23FFAF44'/%3E%3C/svg%3E") !important;
}
.site-header:not(.hero-unit-light) .menu.dropdown .mega-menu .button.simple::after, .site-header:not(.hero-unit-light) .menu.dropdown .mega-menu li.button &gt; a.simple::after {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg width='15' height='13' viewBox='0 0 15 13' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M13.6875 7.71875L8.6875 12.7188C8.5 12.9062 8.25 13 8 13C7.71875 13 7.46875 12.9062 7.28125 12.7188C6.875 12.3438 6.875 11.6875 7.28125 11.3125L10.5625 8H1C0.4375 8 0 7.5625 0 7C0 6.46875 0.4375 6 1 6H10.5625L7.28125 2.71875C6.875 2.34375 6.875 1.6875 7.28125 1.3125C7.65625 0.90625 8.3125 0.90625 8.6875 1.3125L13.6875 6.3125C14.0938 6.6875 14.0938 7.34375 13.6875 7.71875Z' fill='%23FFAF44'/%3E%3C/svg%3E");
}
.site-header:not(.hero-unit-light) .menu.dropdown .mega-menu::after {
  background: rgba(15, 2, 37, 0.95);
}
.site-header:not(.hero-unit-light) .menu.dropdown .mega-menu &gt; li:first-child .title {
  color: var(--white);
}
.site-header:not(.hero-unit-light) .menu.dropdown .mega-menu &gt; li:first-child svg path {
  fill: var(--white);
}
.site-header:not(.hero-unit-light) .menu.dropdown .mega-menu &gt; li:first-child .preheadline {
  color: var(--solar-flare);
}
.site-header:not(.hero-unit-light) .menu.dropdown .mega-menu &gt; li:nth-child(5) {
  border-left: 1px solid var(--icy-blue);
}

.site-header.hero-unit-light .menu.dropdown .mega-menu .submenu li.headline.color-orange &gt; a {
  color: var(--icy-blue);
}
.site-header.hero-unit-light .menu.dropdown .mega-menu .submenu li.hover-underline &gt; a:after {
  background-color: var(--text-color);
}

html[lang=de] .menu.dropdown &gt; li.is-dropdown-submenu-parent &gt; a,
html[lang=fr] .menu.dropdown &gt; li.is-dropdown-submenu-parent &gt; a,
html[lang=ru] .menu.dropdown &gt; li.is-dropdown-submenu-parent &gt; a {
  padding-left: 0.3125rem;
  padding-right: 0.3125rem;
}

body.page-template-template-campaign-landing-page :root,
body.page-template-template-campaign-simpnav-landing-page :root {
  --site-header-offset: 69px;
}
@media print, screen and (min-width: 64em) {
  body.page-template-template-campaign-landing-page :root,
  body.page-template-template-campaign-simpnav-landing-page :root {
    --site-header-offset: 84px;
  }
}

.site-header[sticky] .top-menu {
  opacity: 1;
}

.site-header.sticky .top-menu {
  transition: opacity ease-out, display allow-discrete;
  opacity: 0;
}

.site-header:not(.sticky) .top-menu {
  display: flex;
}

.site-header.sticky {
  padding: 0.875rem 0;
}

body.with-notification-bar .site-header.sticky {
  padding-top: 2rem;
}

@media print, screen and (max-width: 61.74875em) {
  body.with-notification-bar .site-header {
    padding-top: 3.5rem;
  }
}
footer.site-footer {
  position: relative;
  overflow: hidden;
}
footer.site-footer a {
  color: var(--white);
}
footer.site-footer a:hover {
  text-decoration: none;
}
footer.site-footer .footer-top {
  margin: 0 -0.125rem;
}
footer.site-footer .footer-top img {
  display: block;
  width: 100%;
}
footer.site-footer .footer-content {
  padding-top: 3.75rem;
  padding-bottom: 3.75rem;
}
@media print, screen and (min-width: 64em) {
  footer.site-footer .footer-content {
    padding-top: 4.5rem;
    padding-bottom: 3rem;
  }
}
footer.site-footer .footer-content.bg-dark {
  background: var(--dark-matter);
}
footer.site-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
footer.site-footer .footer-logo {
  margin-bottom: 2.5rem;
}
footer.site-footer .footer-logo img {
  width: 59px;
  height: 59px;
}
footer.site-footer .footer-navigation {
  row-gap: 1.875rem;
  margin-bottom: 3.75rem;
}
footer.site-footer .footer-navigation ul {
  display: flex;
  flex-direction: column;
  row-gap: 0.625rem;
}
footer.site-footer .footer-navigation li:first-of-type {
  font-weight: 600;
  font-size: 1rem;
  line-height: normal;
  margin-bottom: 0.625rem;
}
footer.site-footer .footer-navigation li, footer.site-footer .footer-navigation a {
  font-weight: 400;
  font-size: 0.75rem;
  line-height: 1.1666666667;
}
@media print, screen and (min-width: 64em) {
  footer.site-footer .footer-navigation li, footer.site-footer .footer-navigation a {
    max-width: 7.875rem;
  }
}
footer.site-footer .footer-navigation li {
  color: var(--icy-blue);
}
footer.site-footer .footer-copy {
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 1.25rem;
}
@media print, screen and (max-width: 61.74875em) {
  footer.site-footer .footer-copy {
    margin-bottom: 3.75rem;
  }
}
@media print, screen and (min-width: 64em) {
  footer.site-footer .footer-copy {
    padding-right: 4.5rem;
  }
}
footer.site-footer .footer-copy li, footer.site-footer .footer-copy a {
  font-weight: 400;
  font-size: 0.75rem;
  line-height: 1.1666666667;
}
@media print, screen and (min-width: 48em) {
  footer.site-footer .footer-copy {
    flex-direction: row;
    justify-content: space-between;
  }
}
footer.site-footer .footer-navigation li &gt; a,
footer.site-footer .footer-copy li &gt; a {
  position: relative;
  color: var(--white) !important;
}
footer.site-footer .footer-navigation li &gt; a:after,
footer.site-footer .footer-copy li &gt; a:after {
  content: "";
  display: block;
  width: 0;
  height: 0.0625rem;
  background-color: var(--white);
  position: absolute;
  left: 0;
  bottom: -2px;
  transition: width 0.3s;
}
footer.site-footer .footer-navigation li:hover a::after,
footer.site-footer .footer-copy li:hover a::after {
  width: 100%;
}
footer.site-footer .footer-social {
  display: flex;
  justify-content: center;
  align-items: center;
  column-gap: 1.25rem;
}
footer.site-footer .footer-social img,
footer.site-footer .footer-social svg {
  width: 1.5625rem;
  height: 1.5625rem;
}

section.hero-unit {
  position: relative;
  overflow: initial;
}
section.hero-unit .overlay {
  background: linear-gradient(0deg, rgba(27, 62, 81, 0.6), rgba(27, 62, 81, 0.6)), linear-gradient(90deg, #1b3e51 36.32%, rgba(27, 62, 81, 0) 76.32%);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
}
section.hero-unit .hero-unit-video {
  width: 100%;
}
@media print, screen and (min-width: 48em) {
  section.hero-unit .hero-unit-video {
    padding-left: 2.5rem;
  }
}
section.hero-unit.image-has-shadow.centered-content .hero-unit-content {
  margin-bottom: 3.125rem;
}
section.hero-unit.image-has-shadow .hero-unit-images .image {
  padding-left: 0 !important;
  padding-right: 0 !important;
}
@media print, screen and (max-width: 25.93625em) {
  section.hero-unit.image-has-shadow .hero-unit-images .image {
    width: 100% !important;
  }
}
section.hero-unit.image-has-shadow .hero-unit-images .image img {
  position: relative;
  z-index: 20;
}
section.hero-unit.image-has-shadow .shadow {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
}
section.hero-unit.image-has-shadow .shadow:before {
  content: "";
  display: block;
  position: absolute;
  top: 20px;
  left: 1%;
  width: 98%;
  height: calc(100% - 70px);
  border-radius: 10px;
  background: linear-gradient(rgba(0, 0, 0, 0.231372549), #d987a4);
  filter: blur(12px);
}
section.hero-unit.image-has-shadow .shadow:after {
  content: "";
  display: block;
}
section.hero-unit.image-has-shadow .shadow .shadow-inner {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 5rem;
}
section.hero-unit.image-has-shadow .shadow .shadow-inner:before {
  content: "";
  display: block;
  background: #c562a3;
  border-radius: 100%;
  height: 2.5rem;
  width: 22%;
  filter: blur(15px);
  position: absolute;
  left: 6%;
  top: 50%;
  margin-top: -32px;
  opacity: 0.6;
}
section.hero-unit.image-has-shadow .shadow .shadow-inner:after {
  content: "";
  display: block;
  background: #c562a3;
  border-radius: 100%;
  height: 2.5rem;
  width: 100px;
  filter: blur(16px);
  position: absolute;
  left: 50%;
  transform: translateX(-68%);
  top: 50%;
  margin-top: -32px;
  opacity: 0.6;
}
section.hero-unit.image-has-shadow .shadow .shadow-inner span {
  display: block;
  position: absolute;
  right: 0;
  top: 50%;
  margin-top: -2.6875rem;
  width: 39%;
  height: 2.5rem;
}
section.hero-unit.image-has-shadow .shadow .shadow-inner span:before {
  content: "";
  display: block;
  position: absolute;
  width: 50%;
  height: 100%;
  background: #aa2565;
  filter: blur(20px);
  left: 0;
  top: 0;
}
section.hero-unit.image-has-shadow .shadow .shadow-inner span:after {
  content: "";
  display: block;
  position: absolute;
  width: 42%;
  height: 100%;
  background: #6a133d;
  filter: blur(20px);
  right: 10%;
  top: 0;
}
section.hero-unit.image-has-shadow .hero-unit-images .image {
  position: relative;
  z-index: 1;
  padding-bottom: 3.125rem;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}
section.hero-unit:not(.cords-style-1):not(.cords-style-2):not(.hero-blog):not(.hero-single-blog):not(.hero-blog-category):not(.hero-blog-single) .cords {
  display: none;
}
section.hero-unit .cords {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  height: 21.875rem;
  pointer-events: none;
}
section.hero-unit .cords img,
section.hero-unit .cords svg {
  width: auto;
  height: inherit;
  left: 50%;
  transform: translateX(-50%);
  position: relative;
  width: 148.0625rem;
  height: auto;
  max-height: 100%;
  object-fit: contain;
  object-position: 50% 0;
  max-width: initial;
  display: none;
}
@media screen and (max-width: 75em) {
  section.hero-unit .cords img,
  section.hero-unit .cords svg {
    width: 180%;
  }
}
section.hero-unit.cords-style-1 .cords .img-style-1 {
  display: block;
}
section.hero-unit.cords-style-2 .cords .img-style-2 {
  display: block;
  margin-top: -0.75rem;
}
section.hero-unit.bg-dark {
  background: var(--velvet-indigo);
  color: var(--white);
}
section.hero-unit.bg-dark:not(.bg-dark) {
  background: var(--white);
  color: var(--radiant-flame);
}
section.hero-unit.bg-dark.cords-style-1 .cords {
  height: 30rem;
}
section.hero-unit.bg-dark.cords-style-1 .cords .img-style-1 {
  display: none;
}
section.hero-unit.bg-dark.cords-style-1 .cords .img-style-1-dark {
  display: block;
}
@media print, screen and (min-width: 64em) {
  section.hero-unit.bg-dark.cords-style-1 .cords .img-style-1-dark {
    width: 150.9375rem;
  }
}
section.hero-unit.bg-dark.bg-image {
  background-position-x: center;
  background-position-y: center;
  background-repeat: no-repeat;
  background-size: cover;
}
section.hero-unit.hero-blog .cords {
  height: 46rem;
}
section.hero-unit.hero-blog .cords .img-style-blog {
  display: block;
  width: 150rem;
}
section.hero-unit.hero-blog-category .cords .img-style-1,
section.hero-unit.hero-blog-category .cords .img-style-1-dark {
  display: block;
}
@media print, screen and (min-width: 64em) {
  section.hero-unit.hero-blog-category .cords .img-style-1,
  section.hero-unit.hero-blog-category .cords .img-style-1-dark {
    margin-top: -6.9375rem;
    transform: translateX(-51%);
  }
}
section.hero-unit.hero-blog-single .cords {
  height: 100%;
}
section.hero-unit.hero-blog-single .cords .img-style-blog-single {
  display: block;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -11%);
  max-height: initial;
}
@media print, screen and (min-width: 64em) {
  section.hero-unit.hero-blog-single .cords .img-style-blog-single {
    width: 150.25rem;
    height: 25.0625rem;
  }
}
section.hero-unit {
  padding-top: 7.65rem;
}
@media print, screen and (min-width: 48em) {
  section.hero-unit {
    padding-top: 8.5rem;
  }
}
@media print, screen and (min-width: 64em) {
  section.hero-unit {
    padding-top: 10.625rem;
  }
}
section.hero-unit[class*=bg-], section.hero-unit[classË†=bg-] {
  padding-top: 7.65rem;
  padding-bottom: 4.5rem;
}
@media print, screen and (min-width: 48em) {
  section.hero-unit[class*=bg-], section.hero-unit[classË†=bg-] {
    padding-top: 8.5rem;
  }
}
@media print, screen and (min-width: 64em) {
  section.hero-unit[class*=bg-], section.hero-unit[classË†=bg-] {
    padding-top: 10.625rem;
  }
}
@media print, screen and (min-width: 48em) {
  section.hero-unit[class*=bg-], section.hero-unit[classË†=bg-] {
    padding-bottom: 5rem;
  }
}
@media print, screen and (min-width: 64em) {
  section.hero-unit[class*=bg-], section.hero-unit[classË†=bg-] {
    padding-bottom: 6.25rem;
  }
}
@media print, screen and (max-width: 25.93625em) {
  section.hero-unit[class*=bg-], section.hero-unit[classË†=bg-] {
    padding-bottom: 7.5rem;
  }
}
.with-notification-bar section.hero-unit {
  padding-top: calc(122px + var(--notification-height));
}
.with-notification-bar section.hero-unit.hero-blog {
  padding-top: calc(122px + var(--notification-height));
}
@media print, screen and (max-width: 63.99875em) {
  .with-notification-bar section.hero-unit {
    padding-top: calc(136px + var(--notification-height));
  }
  .with-notification-bar section.hero-unit .module.text-editor p {
    display: inline-flex;
  }
  .with-notification-bar section.hero-unit .module.text-editor p img {
    display: none;
  }
}
@media print, screen and (min-width: 48em) {
  .with-notification-bar section.hero-unit {
    padding-top: calc(136px + var(--notification-height));
  }
}
@media print, screen and (min-width: 64em) {
  .with-notification-bar section.hero-unit {
    padding-top: calc(170px + var(--notification-height));
  }
  .with-notification-bar section.hero-unit.hero-blog {
    padding-top: calc(250px + var(--notification-height));
  }
}
section.hero-unit.bg-white {
  padding-bottom: 0;
}
section.hero-unit .grid-container {
  position: relative;
  width: 100%;
  z-index: initial;
}
section.hero-unit .hero-unit-buttons {
  margin: -0.625rem;
  position: relative;
  z-index: 20;
}
section.hero-unit .headline + * {
  margin-top: 0.625rem;
}
section.hero-unit .hero-unit-text {
  font-weight: 300;
  line-height: normal;
}
section.hero-unit .hero-unit-text {
  font-size: 1.25rem;
}
@media screen and (min-width: 768px) {
  section.hero-unit .hero-unit-text {
    font-size: calc(20px + 4 * (100vw - 768px) / 256);
  }
}
@media screen and (min-width: 1024px) {
  section.hero-unit .hero-unit-text {
    font-size: 1.5rem;
  }
}
@media print, screen and (max-width: 25.93625em) {
  section.hero-unit .hero-unit-text br {
    display: none;
  }
}
section.hero-unit .btn-back {
  color: var(--radiant-flame);
  font-weight: 600;
}
section.hero-unit .btn-back + * {
  margin-top: 2.5rem;
}
section.hero-unit .btn-back::before {
  content: "";
  display: inline-block;
  left: 0;
  position: relative;
  transition: left 0.3s;
  width: 0.875rem;
  height: 0.75rem;
  margin-right: 0.5rem;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg width='14' height='12' viewBox='0 0 14 12' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0.304688 6.71875L5.30469 11.7188C5.49219 11.9062 5.74219 12 5.99219 12C6.27344 12 6.52344 11.9062 6.71094 11.7188C7.11719 11.3438 7.11719 10.6875 6.71094 10.3125L3.42969 7H12.9922C13.5547 7 13.9922 6.5625 13.9922 6C13.9922 5.46875 13.5547 5 12.9922 5H3.42969L6.71094 1.71875C7.11719 1.34375 7.11719 0.6875 6.71094 0.3125C6.33594 -0.09375 5.67969 -0.09375 5.30469 0.3125L0.304688 5.3125C-0.101562 5.6875 -0.101562 6.34375 0.304688 6.71875Z' fill='%23f44414'/%3E%3C/svg%3E");
}
section.hero-unit .btn-back:hover::before {
  left: -0.3125rem;
}
section.hero-unit.bg-dark .btn-back {
  color: var(--radiant-flame);
}
section.hero-unit .search-form .facetwp-input-wrap,
section.hero-unit .search-form input[type=search] {
  width: 100%;
}
section.hero-unit .search-form input[type=search] {
  height: 3.125rem;
  padding-left: 2.5rem;
  border: none;
}
section.hero-unit .search-form .facetwp-icon {
  display: none;
}
section.hero-unit .search-form input[type=submit] {
  position: absolute;
  cursor: pointer;
  padding: 0;
  left: 0;
  font-size: 0;
  border: none;
  width: 2.5rem;
  height: 3.125rem;
  background-color: transparent;
  background-size: 1.25rem 1.25rem;
  background-repeat: no-repeat;
  background-position: center center;
  transition: background-image 0.3s;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg width='20' height='20' viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M17.625 15.875L13.875 12.125C14.7188 10.875 15.1562 9.3125 14.9375 7.625C14.5312 4.75 12.1875 2.4375 9.34375 2.0625C5.09375 1.53125 1.5 5.125 2.03125 9.375C2.40625 12.2188 4.71875 14.5625 7.59375 14.9688C9.28125 15.1875 10.8438 14.75 12.125 13.9062L15.8438 17.6562C16.3438 18.125 17.125 18.125 17.625 17.6562C18.0938 17.1562 18.0938 16.375 17.625 15.875ZM4.46875 8.5C4.46875 6.3125 6.25 4.5 8.46875 4.5C10.6562 4.5 12.4688 6.3125 12.4688 8.5C12.4688 10.7188 10.6562 12.5 8.46875 12.5C6.25 12.5 4.46875 10.7188 4.46875 8.5Z' fill='%230F0225'/%3E%3C/svg%3E");
}
section.hero-unit .content-wrapper {
  display: flex;
}
@media print, screen and (max-width: 61.74875em) {
  section.hero-unit .content-wrapper {
    flex-direction: column;
  }
}
section.hero-unit .content-wrapper .hero-unit-content {
  position: relative;
  z-index: 15;
  width: 100%;
}
@media print, screen and (min-width: 64em) {
  section.hero-unit .content-wrapper .hero-unit-content {
    padding-top: 3.5rem;
    max-width: 41.25rem;
  }
}
@media print, screen and (min-width: 48em) {
  section.hero-unit .content-wrapper .hero-unit-content + *:not(.hero-unit-video) {
    margin-left: 2.5rem;
  }
}
section.hero-unit .content-wrapper .hero-unit-content .button, section.hero-unit .content-wrapper .hero-unit-content .menu li.button &gt; a, .menu section.hero-unit .content-wrapper .hero-unit-content li.button &gt; a {
  margin: 0.625rem;
}
section.hero-unit .content-wrapper .hero-unit-images {
  display: flex;
  align-items: flex-start;
}
@media print, screen and (max-width: 61.74875em) {
  section.hero-unit .content-wrapper .hero-unit-images {
    margin: 1.40625rem -0.46875rem -0.46875rem -0.46875rem;
    justify-content: center;
    align-items: center;
  }
}
section.hero-unit .content-wrapper .hero-unit-images .image {
  position: relative;
  display: flex;
  width: 100%;
}
@media print, screen and (max-width: 25.93625em) {
  section.hero-unit .content-wrapper .hero-unit-images .image {
    width: 50%;
  }
}
@media print, screen and (max-width: 61.74875em) {
  section.hero-unit .content-wrapper .hero-unit-images .image {
    margin: 0.46875rem;
  }
  section.hero-unit .content-wrapper .hero-unit-images .image img,
  section.hero-unit .content-wrapper .hero-unit-images .image svg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
  }
}
@media print, screen and (min-width: 64em) {
  section.hero-unit .content-wrapper .hero-unit-images .image img,
  section.hero-unit .content-wrapper .hero-unit-images .image svg {
    border-radius: 0.5rem;
  }
}
section.hero-unit .content-wrapper .hero-unit-images .image + .image {
  margin-left: 1.25rem;
  padding-top: 3.125rem;
}
@media print, screen and (max-width: 61.74875em) {
  section.hero-unit .content-wrapper .hero-unit-images .image + .image {
    padding-top: 1.875rem;
    margin-left: 7.5px;
  }
}
section.hero-unit .content-wrapper .hero-unit-images .image + .image .label {
  top: 7.5rem;
  bottom: initial;
  left: initial;
  right: -2.875rem;
}
@media print, screen and (max-width: 61.74875em) {
  section.hero-unit .content-wrapper .hero-unit-images .image + .image .label {
    top: 13.875rem;
    right: -0.625rem;
  }
}
section.hero-unit .content-wrapper .hero-unit-images .label {
  position: absolute;
  bottom: 11.375rem;
  left: -2.0625rem;
  padding: 0.3125rem 1.5625rem;
  background: var(--white);
  border-radius: 0.25rem;
  color: var(--medium-violet);
  white-space: nowrap;
  z-index: 10;
}
@media print, screen and (max-width: 61.74875em) {
  section.hero-unit .content-wrapper .hero-unit-images .label {
    top: 8.625rem;
    left: -0.625rem;
    bottom: initial;
    padding: 0.3125rem 0.9375rem;
  }
}
section.hero-unit .hero-unit-logos {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
}
section.hero-unit .hero-unit-logos .grid-container {
  position: absolute;
  bottom: 10.625rem;
  display: flex;
  justify-content: flex-end;
  left: 50%;
  transform: translate(-50%, 0);
}
@media print, screen and (max-width: 25.93625em) {
  section.hero-unit .hero-unit-logos .grid-container {
    bottom: 9.375rem;
  }
}
section.hero-unit .hero-unit-logos .plank {
  width: 18.75rem;
  height: 6.25rem;
  background-image: url("../images/hero-plank.png");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  padding: 0.625rem 0.9375rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin-right: 8.75rem;
  box-shadow: 118.9903945923px 118.9903945923px 95.1923217773px 0px rgba(0, 0, 0, 0.3882352941);
  position: relative;
  z-index: 1;
}
section.hero-unit .hero-unit-logos .plank .plank-content {
  display: flex;
  justify-content: space-between;
  width: 16.875rem;
}
section.hero-unit .hero-unit-logos .plank .plank-content:not(:first-child) {
  position: absolute;
}
@media print, screen and (max-width: 25.93625em) {
  section.hero-unit .hero-unit-logos .plank {
    margin-right: auto;
    margin-left: auto;
    width: 17.8125rem;
    height: 6.125rem;
    background-image: url("../images/hero-plank-mob.png");
  }
  section.hero-unit .hero-unit-logos .plank .plank-content {
    width: 15.9375rem;
  }
}
section.hero-unit .hero-unit-logos .plank .image-wrapper {
  width: 7.5rem;
  height: 4.875rem;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem;
}
section.hero-unit .hero-unit-logos .plank .image-wrapper svg, section.hero-unit .hero-unit-logos .plank .image-wrapper img {
  width: 100%;
  max-width: 100%;
  max-height: 2.1875rem;
  height: auto;
  object-fit: contain;
}
@media print, screen and (max-width: 25.93625em) {
  section.hero-unit .hero-unit-logos .plank .image-wrapper {
    width: 7.1875rem;
    padding: 0.9375rem;
  }
}
section.hero-unit.centered-content .content-wrapper {
  align-items: center;
}
@media print, screen and (min-width: 64em) {
  section.hero-unit.centered-content .content-wrapper {
    padding-top: 1rem;
  }
}
@media print, screen and (min-width: 64em) {
  section.hero-unit.centered-content .content-wrapper .hero-unit-content {
    padding-top: 0;
  }
}
@media print, screen and (min-width: 64em) {
  body[class*=single-jbt_]:not(.single-jbt_application) section.hero-unit .content-wrapper .hero-unit-content {
    padding-top: 2.5rem;
  }
  body[class*=single-jbt_]:not(.single-jbt_application) section.hero-unit .content-wrapper .hero-unit-images {
    margin-top: 0;
    max-width: 30rem;
  }
  body[class*=single-jbt_]:not(.single-jbt_application) section.hero-unit .content-wrapper .hero-unit-images .image {
    margin-left: -1.5625rem;
    margin-right: -6.25rem;
  }
}
@media print, screen and (max-width: 25.93625em) {
  body[class*=single-jbt_]:not(.single-jbt_application) section.hero-unit .content-wrapper .hero-unit-images {
    align-items: center;
    justify-content: center;
  }
  body[class*=single-jbt_]:not(.single-jbt_application) section.hero-unit .content-wrapper .hero-unit-images .image {
    width: 100%;
  }
}
body[class*=single-jbt_]:not(.single-jbt_application) section.hero-unit.align-image-middle .content-wrapper {
  align-items: center;
}
@media print, screen and (min-width: 64em) {
  body[class*=single-jbt_]:not(.single-jbt_application) section.hero-unit.align-image-middle .content-wrapper .hero-unit-images {
    margin-top: 0;
  }
}
section.hero-unit:not(.bg-dark) .overlay {
  display: none;
}
section.hero-unit:not(.bg-dark) .hero-unit-text {
  width: -moz-fit-content;
  width: fit-content;
}
section.hero-unit * + .search-wrapper {
  margin-top: 2.5rem;
}
section.hero-unit.layout-advanced.buttons-align-end .hero-unit-content {
  display: flex;
  flex-direction: column;
}
section.hero-unit.layout-advanced.buttons-align-end .hero-unit-content .hero-unit-buttons {
  order: 10;
}
section.hero-unit.layout-search + section.content-block {
  margin-top: 0;
}
section.hero-unit.layout-search.bg-white + section.content-block.bg-white {
  padding-top: 0;
}
section.hero-unit.hero-blog {
  padding-top: 14.625rem;
  padding-bottom: 0;
  margin-bottom: 0;
  overflow: initial;
}
@media print, screen and (max-width: 61.74875em) {
  section.hero-unit.hero-blog {
    padding-top: 8rem;
  }
}
section.hero-unit.hero-blog .content-wrapper {
  align-items: flex-start;
  justify-content: center;
}
@media print, screen and (max-width: 61.74875em) {
  section.hero-unit.hero-blog .content-wrapper {
    display: block;
  }
}
section.hero-unit.hero-blog .content-wrapper .hero-unit-content {
  padding-top: 0;
}
@media print, screen and (min-width: 64em) {
  section.hero-unit.hero-blog .content-wrapper .hero-unit-content {
    width: 100%;
    max-width: 30rem;
    align-self: center;
  }
}
@media print, screen and (min-width: 64em) {
  section.hero-unit.hero-blog .content-wrapper .hero-unit-images {
    max-width: 42.5rem;
  }
}
section.hero-unit.hero-blog .hero-blog-item {
  margin-left: 0;
}
@media print, screen and (min-width: 48em) {
  section.hero-unit.hero-blog .hero-blog-item {
    max-width: 42.5rem;
    margin-right: auto;
    margin-left: auto;
  }
}
section.hero-unit.hero-blog .hero-blog-item &gt; a {
  background-color: var(--white);
  border-radius: 0.5rem;
  border: 0.125rem solid var(--form-border-color);
  box-shadow: 0 0 1.25rem var(--form-border-color);
}
section.hero-unit.hero-blog .hero-unit-content + * {
  margin-left: 3.5rem;
}
@media print, screen and (max-width: 61.74875em) {
  section.hero-unit.hero-blog .hero-unit-content + * {
    margin-left: 0;
    margin-top: 2.5rem;
  }
}
section.hero-unit.hero-blog .item {
  display: flex;
  flex-direction: row;
  height: auto;
  background-color: var(--white);
  border-radius: 0.5rem;
  position: relative;
  z-index: 1;
}
@media print, screen and (max-width: 61.74875em) {
  section.hero-unit.hero-blog .item {
    flex-direction: column;
  }
}
@media print, screen and (max-width: 25.93625em) {
  section.hero-unit.hero-blog .item {
    width: 100%;
  }
}
section.hero-unit.hero-blog .item:hover {
  color: inherit;
}
section.hero-unit.hero-blog .item:hover h3 {
  color: var(--radiant-flame);
}
section.hero-unit.hero-blog .item:hover .button::after, section.hero-unit.hero-blog .item:hover .menu li.button &gt; a::after, .menu section.hero-unit.hero-blog .item:hover li.button &gt; a::after {
  left: 0.25rem;
}
@media print, screen and (max-width: 61.74875em) {
  section.hero-unit.hero-blog .media {
    display: block;
    width: 100%;
  }
}
section.hero-unit.hero-blog .media img,
section.hero-unit.hero-blog .media svg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0.5rem 0 0 0.5rem;
}
section.hero-unit.hero-blog .content {
  display: flex;
  width: 300px;
  height: 100%;
  padding: 1.25rem;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  color: var(--text-color);
}
@media print, screen and (max-width: 61.74875em) {
  section.hero-unit.hero-blog .content {
    width: 100%;
  }
}
section.hero-unit.hero-blog .content h3 {
  font-weight: 600;
  font-size: 1.25rem;
  line-height: 1.25;
  font-weight: 500;
}
section.hero-unit.hero-blog .content h3,
section.hero-unit.hero-blog .content .description {
  margin-bottom: 0.625rem;
}
@media print, screen and (min-width: 64em) {
  section.hero-unit.hero-blog .content .description {
    display: none;
  }
}
@media print, screen and (max-width: 25.93625em) {
  section.hero-unit.hero-blog .content .description {
    display: block;
  }
}
section.hero-unit.hero-blog .content .button, section.hero-unit.hero-blog .content .menu li.button &gt; a, .menu section.hero-unit.hero-blog .content li.button &gt; a {
  margin-top: auto;
}
section.hero-unit.hero-blog .tag-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  column-gap: 0.625rem;
  row-gap: 0.25rem;
  margin-bottom: 0.625rem;
  color: var(--white);
}
section.hero-unit.hero-blog .tag-list li {
  font-weight: 400;
  font-size: 0.75rem;
  line-height: 1.1666666667;
  padding: 0.1875rem 0.3125rem;
  border-radius: 0.125rem;
}
section.hero-unit.hero-blog .tag-list li.accent {
  background-color: var(--radiant-flame);
  color: var(--white);
}
section.hero-unit .logo-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2.25rem;
  margin-top: 3.6rem;
}
@media print, screen and (min-width: 48em) {
  section.hero-unit .logo-grid {
    margin-top: 4rem;
  }
}
@media print, screen and (min-width: 64em) {
  section.hero-unit .logo-grid {
    margin-top: 5rem;
  }
}
@media print, screen and (max-width: 25.93625em) {
  section.hero-unit .logo-grid {
    justify-content: center;
  }
}
section.hero-unit .logo-grid .logo {
  width: 100%;
  height: auto;
  max-width: 6.25rem;
}
@media print, screen and (max-width: 25.93625em) {
  section.hero-unit .logo-grid .logo {
    max-width: 5rem;
  }
}
@media print, screen and (min-width: 64em) {
  section.hero-unit.application-single-hero .content-wrapper .hero-unit-content, section.hero-unit.has-multiple-images .content-wrapper .hero-unit-content {
    max-width: 50%;
    padding-top: 3rem;
  }
  section.hero-unit.application-single-hero .content-wrapper .hero-unit-content .hero-unit-text, section.hero-unit.has-multiple-images .content-wrapper .hero-unit-content .hero-unit-text {
    max-width: 88%;
  }
}
section.hero-unit.application-single-hero .hero-unit-images, section.hero-unit.has-multiple-images .hero-unit-images {
  width: 100%;
  margin-left: 0.625rem;
  padding-top: 3.3125rem;
  position: relative;
}
@media print, screen and (max-width: 61.74875em) {
  section.hero-unit.application-single-hero .hero-unit-images, section.hero-unit.has-multiple-images .hero-unit-images {
    margin-left: auto;
    margin-right: auto;
  }
}
@media print, screen and (min-width: 64em) {
  section.hero-unit.application-single-hero .hero-unit-images, section.hero-unit.has-multiple-images .hero-unit-images {
    padding-top: 5.4375rem;
    min-height: 27.3125rem;
  }
}
section.hero-unit.application-single-hero .hero-unit-images .image, section.hero-unit.has-multiple-images .hero-unit-images .image {
  width: 24.75rem;
  height: 12.375rem;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10;
}
@media print, screen and (min-width: 64em) {
  section.hero-unit.application-single-hero .hero-unit-images .image, section.hero-unit.has-multiple-images .hero-unit-images .image {
    position: absolute;
    left: 0;
    top: 5.625rem;
  }
}
section.hero-unit.application-single-hero .hero-unit-images .image img, section.hero-unit.has-multiple-images .hero-unit-images .image img {
  position: relative;
  width: 100%;
  max-width: 50%;
  max-height: 50%;
  object-fit: contain;
  height: auto;
}
section.hero-unit.application-single-hero .hero-unit-images .image:before, section.hero-unit.has-multiple-images .hero-unit-images .image:before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-image: url("../images/Amp.svg");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: 0;
  left: 0;
}
section.hero-unit.application-single-hero .hero-unit-images .image:after, section.hero-unit.has-multiple-images .hero-unit-images .image:after {
  content: "";
  display: block;
  width: calc(100% - 26px);
  height: calc(100% - 15px);
  position: absolute;
  top: 0;
  left: 4px;
  box-shadow: 99px 103.4px 82.7197px rgba(0, 0, 0, 0.28), 54.45px 55.2824px 44.2259px rgba(0, 0, 0, 0.23), 29.7px 30.9908px 24.7927px rgba(0, 0, 0, 0.2), 14.85px 16.459px 13.1672px rgba(0, 0, 0, 0.16);
  opacity: 0.6;
  z-index: -1;
  border-radius: 12px;
}
section.hero-unit.application-single-hero .hero-unit-logos, section.hero-unit.has-multiple-images .hero-unit-logos {
  width: 100%;
  max-width: 90rem;
  left: 50%;
  transform: translate(-50%, 0);
  pointer-events: none;
}
@media print, screen and (max-width: 61.74875em) {
  section.hero-unit.application-single-hero .hero-unit-logos, section.hero-unit.has-multiple-images .hero-unit-logos {
    display: none;
  }
}
@media screen and (min-width: 75em) {
  section.hero-unit.application-single-hero .hero-unit-logos, section.hero-unit.has-multiple-images .hero-unit-logos {
    z-index: 1;
  }
}
section.hero-unit.application-single-hero .hero-unit-logos .plank, section.hero-unit.has-multiple-images .hero-unit-logos .plank {
  position: absolute;
  background-image: url("../images/plank-small.png");
  width: 12.5rem;
  height: 8rem;
  padding: 1.25rem;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0;
  border-radius: 0.75rem;
  overflow: hidden;
  box-shadow: 0px 8px 24px 0px rgba(43, 27, 66, 0.1019607843);
}
section.hero-unit.application-single-hero .hero-unit-logos .plank.small, section.hero-unit.has-multiple-images .hero-unit-logos .plank.small {
  width: 9.375rem;
  height: 6rem;
  padding: 0.9375rem;
  border-radius: 0.375rem;
}
section.hero-unit.application-single-hero .hero-unit-logos .plank.blured, section.hero-unit.has-multiple-images .hero-unit-logos .plank.blured {
  filter: blur(10px);
  opacity: 0.6;
}
section.hero-unit.application-single-hero .hero-unit-logos .plank img, section.hero-unit.has-multiple-images .hero-unit-logos .plank img {
  max-height: 100%;
  object-fit: contain;
}
section.hero-unit * + .hero-unit-buttons {
  margin-top: 1.875rem;
}
section.hero-unit.bg-dark, section.hero-unit.bg-video {
  color: var(--inverse);
}
@media print, screen and (min-width: 64em) {
  .home section.hero-unit .content-wrapper .hero-unit-images, section.hero-unit.content-block .content-wrapper .hero-unit-images {
    min-width: 37.5rem;
  }
}
@media print, screen and (min-width: 64em) {
  .home section.hero-unit .content-wrapper .hero-unit-content, section.hero-unit.content-block .content-wrapper .hero-unit-content {
    max-width: 33.75rem;
  }
}
.home section.hero-unit .hero-unit-images, section.hero-unit.content-block .hero-unit-images {
  display: flex;
  flex-direction: column;
}
@media print, screen and (max-width: 61.74875em) {
  .home section.hero-unit .hero-unit-images, section.hero-unit.content-block .hero-unit-images {
    display: none;
  }
}
.home section.hero-unit .images-wrapper, section.hero-unit.content-block .images-wrapper {
  display: flex;
  align-items: flex-start;
  width: 100%;
}
.home section.hero-unit .images-wrapper:not(:first-child), section.hero-unit.content-block .images-wrapper:not(:first-child) {
  position: absolute;
}
@media print, screen and (max-width: 61.74875em) {
  .home section.hero-unit .images-wrapper, section.hero-unit.content-block .images-wrapper {
    margin: 1.40625rem -0.46875rem -0.46875rem -0.46875rem;
    justify-content: center;
    align-items: center;
  }
}
.home section.hero-unit .images-wrapper .image, section.hero-unit.content-block .images-wrapper .image {
  height: 100%;
}
.home section.hero-unit .images-wrapper .image img, section.hero-unit.content-block .images-wrapper .image img {
  transition: transform 1s, opacity 1s, max-width 0.5s;
  transform: scale(1.1);
  opacity: 0;
  object-fit: cover;
  width: 100%;
  height: 33.4375rem !important;
}
.home section.hero-unit .images-wrapper .image .label, section.hero-unit.content-block .images-wrapper .image .label {
  transition: transform 1s, opacity 1s;
  transform: translateX(-100%);
  opacity: 0;
}
.home section.hero-unit .plank .image-wrapper, section.hero-unit.content-block .plank .image-wrapper {
  transition: transform 1s, opacity 1s;
  opacity: 0;
}
section.hero-unit.hero-support {
  position: relative;
}
section.hero-unit.hero-support .hero-unit-content {
  max-width: 48.75rem;
}
section.hero-unit.hero-support .hero-benefits-grid {
  margin-top: 2.5rem;
}
section.hero-unit.hero-support .hero-unit-buttons {
  display: flex;
  margin-top: 2.5rem;
}
section.hero-unit.hero-support .hero-unit-buttons a {
  color: var(--radiant-flame);
}
section.hero-unit.hero-support .hero-support-image {
  display: none;
}
@media print, screen and (min-width: 48em) {
  section.hero-unit.hero-support .hero-support-image {
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    height: 100%;
    right: 0;
  }
}
section.hero-unit .hero-benefits-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  column-gap: 1.25rem;
  row-gap: 1.25rem;
}
section.hero-unit .hero-benefits-card {
  width: 100%;
  background-color: var(--white);
  color: var(--medium-violet);
  border-radius: 0.5rem;
  padding: 1.25rem 1.875rem;
  display: flex;
  align-items: center;
}
section.hero-unit .hero-benefits-card img,
section.hero-unit .hero-benefits-card svg {
  margin-right: 1.875rem;
  min-width: 2.75rem;
}
section.hero-unit .hero-benefits-card h6 {
  margin-bottom: 0.625rem;
}
@media print, screen and (min-width: 48em) {
  section.hero-unit .hero-benefits-card {
    width: calc(50% - 10px);
  }
}
section.hero-unit.has-stats {
  padding-bottom: 0;
}
section.hero-unit.has-stats .stats {
  padding-top: 3.6rem;
  padding-bottom: 4.5rem;
}
@media print, screen and (min-width: 48em) {
  section.hero-unit.has-stats .stats {
    padding-top: 4rem;
  }
}
@media print, screen and (min-width: 64em) {
  section.hero-unit.has-stats .stats {
    padding-top: 5rem;
  }
}
@media print, screen and (min-width: 48em) {
  section.hero-unit.has-stats .stats {
    padding-bottom: 5rem;
  }
}
@media print, screen and (min-width: 64em) {
  section.hero-unit.has-stats .stats {
    padding-bottom: 6.25rem;
  }
}
section.hero-unit.has-stats .stats .items-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 3.75rem;
}
section.hero-unit.has-stats .stats .items-wrapper .inner {
  width: 100%;
}
@media print, screen and (max-width: 25.93625em) {
  section.hero-unit.has-stats .stats .items-wrapper {
    align-items: center;
    justify-content: center;
  }
}
section.hero-unit.has-stats .stats .inner .item h2 {
  font-weight: 300;
  color: var(--radiant-flame);
}
section.hero-unit.has-stats .stats .inner .item + .item {
  margin-top: 2.5rem;
}
section.hero-unit.has-stats .stats .inner h3 {
  font-weight: 500;
}
section.hero-unit.has-stats .stats .inner h3 + * {
  margin-top: 0.3125rem;
}
section.hero-unit.has-stats .stats .inner * + .module.buttons {
  margin-top: 1.25rem;
}
@media print, screen and (min-width: 48em) {
  section.hero-unit.stats-multiple-columns .stats .items-wrapper .inner:first-child {
    width: calc(62% - 30px);
  }
}
@media print, screen and (min-width: 48em) {
  section.hero-unit.stats-multiple-columns .stats .items-wrapper .inner:not(:first-child) {
    width: calc(38% - 30px);
  }
}
section.hero-unit + section.gradient-top {
  margin-top: 0;
}
.single-jbt_product section.hero-unit .stats {
  padding-top: 0.875rem;
}
@media print, screen and (min-width: 48em) {
  .single-jbt_product section.hero-unit .hero-unit-images .image {
    margin-bottom: -2.5rem;
  }
}
section.hero-unit:not(.has-stats) {
  padding-bottom: 5.5rem;
}
@media print, screen and (min-width: 64em) {
  section.hero-unit:not(.has-stats) {
    z-index: 2;
  }
  section.hero-unit:not(.has-stats) .hero-unit-form .module.form,
  section.hero-unit:not(.has-stats) .hero-unit-html .module.html {
    margin-bottom: -9.375rem;
  }
}
@media print, screen and (max-width: 61.74875em) {
  section.hero-unit:not(.has-stats) {
    padding-bottom: 2.5rem;
  }
}
section.hero-unit .hero-unit-form {
  flex-grow: 1;
  width: 100%;
  max-width: 30rem;
}
@media print, screen and (max-width: 61.74875em) {
  section.hero-unit .hero-unit-form {
    margin-top: 2.5rem;
    margin-left: auto !important;
    margin-right: auto;
  }
}
section.hero-unit .hero-unit-form .module.form .mktoForm .mktoButtonWrap.mktoGlow .mktoButton {
  background: var(--radiant-flame);
  color: var(--white);
}
section.hero-unit .hero-unit-form .module.form .mktoForm .mktoButtonWrap.mktoGlow .mktoButton:after {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg width='15' height='13' viewBox='0 0 15 13' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M13.6875 7.71875L8.6875 12.7188C8.5 12.9062 8.25 13 8 13C7.71875 13 7.46875 12.9062 7.28125 12.7188C6.875 12.3438 6.875 11.6875 7.28125 11.3125L10.5625 8H1C0.4375 8 0 7.5625 0 7C0 6.46875 0.4375 6 1 6H10.5625L7.28125 2.71875C6.875 2.34375 6.875 1.6875 7.28125 1.3125C7.65625 0.90625 8.3125 0.90625 8.6875 1.3125L13.6875 6.3125C14.0938 6.6875 14.0938 7.34375 13.6875 7.71875Z' fill='%23fff'/%3E%3C/svg%3E");
}
section.hero-unit .hero-unit-form .module.form .mktoForm input[type=text], section.hero-unit .hero-unit-form .module.form .mktoForm input[type=url], section.hero-unit .hero-unit-form .module.form .mktoForm input[type=email], section.hero-unit .hero-unit-form .module.form .mktoForm input[type=tel], section.hero-unit .hero-unit-form .module.form .mktoForm input[type=number], section.hero-unit .hero-unit-form .module.form .mktoForm input[type=date], section.hero-unit .hero-unit-form .module.form .mktoForm textarea.mktoField, section.hero-unit .hero-unit-form .module.form .mktoForm select.mktoField,
section.hero-unit .hero-unit-form .module.form input:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=button]):not([type=image]):not([type=file]),
section.hero-unit .hero-unit-form .module.form select,
section.hero-unit .hero-unit-form .module.form textarea {
  color: var(--text-color);
}
section.hero-unit .hero-unit-html {
  flex-grow: 1;
  width: 100%;
  max-width: 30rem;
}
@media print, screen and (max-width: 61.74875em) {
  section.hero-unit .hero-unit-html {
    margin-top: 2.5rem;
    margin-left: auto !important;
    margin-right: auto;
  }
}
section.hero-unit .hero-unit-html .module.html {
  background: var(--dark-matter);
  padding: 1.875rem;
  border-radius: 1.25rem;
}

.home .hero-unit {
  background: var(--white);
}

.with-notification-bar .grid-container.navbar {
  padding-top: 1.25rem;
}

@media screen and (max-width: 1024px) {
  .with-notification-bar .grid-container.navbar {
    padding-top: 2.25rem;
  }
}
@media screen and (max-width: 768px) {
  .with-notification-bar .grid-container.navbar {
    padding-top: 4.25rem;
  }
}
@media screen and (max-width: 550px) {
  .with-notification-bar .grid-container.navbar {
    padding-top: 3.5rem;
  }
}
body.has-hero-unit.api-manager .hero-unit {
  background-image: url("../images/hero-jitterbit-bg-api-manager.png");
  background-size: cover;
  background-position: center center;
}

body.has-hero-unit .hero-unit {
  background-size: cover;
  background-position: center center;
}
body.has-hero-unit.app-builder .hero-unit {
  background-image: url("../images/hero-jitterbit-bg-app-builder.png");
}
body.has-hero-unit.edi .hero-unit {
  background-image: url("../images/hero-jitterbit-bg-edi.png");
}
body.has-hero-unit.ipaas .hero-unit {
  background-image: url("../images/hero-jitterbit-bg-ipaas.png");
}

body.has-hero-unit.commerce-integration .hero-unit .headline::before,
body.has-hero-unit.customer-experience .hero-unit .headline::before,
body.has-hero-unit.it .hero-unit .headline::before,
body.has-hero-unit.finance .hero-unit .headline::before,
body.has-hero-unit.hr .hero-unit .headline::before,
body.has-hero-unit.operations .hero-unit .headline::before,
body.has-hero-unit.marketing .hero-unit .headline::before {
  text-transform: uppercase;
  display: flex;
  color: var(--white);
  font-size: 1rem;
}

body.has-hero-unit.commerce .hero-unit .headline::before {
  content: "Commerce";
}

body.has-hero-unit.customer-experience .hero-unit .headline::before {
  content: "Customer Experience";
}

body.has-hero-unit.it .hero-unit .headline::before {
  content: "Information Technology";
}

body.has-hero-unit.finance .hero-unit .headline::before {
  content: "Finance";
}

body.has-hero-unit.hr .hero-unit .headline::before {
  content: "Human Resources";
}

body.has-hero-unit.operations .hero-unit .headline::before {
  content: "Operations";
}

body.has-hero-unit.marketing .hero-unit .headline::before {
  content: "Marketing";
}

.button, .menu li.button &gt; a,
.menu &gt; li.button &gt; a,
.menu.dropdown li.button &gt; a,
.menu.dropdown &gt; li.button &gt; a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--radiant-flame);
  color: var(--white);
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  -webkit-user-select: none;
      -ms-user-select: none;
          user-select: none;
  border: 0;
  transition: color 0.3s, background 0.3s, border-color 0.3s, margin 0.3s;
  font-size: 1rem;
  padding: 0.8125rem 1.75rem 0.8125rem 1.25rem;
  border-radius: 3.125rem;
  height: 3.125rem;
  font-weight: 600;
  box-shadow: none;
  line-height: 1.2;
}
.button::after, .menu li.button &gt; a::after,
.menu.dropdown li.button &gt; a::after {
  content: "";
  width: 0.875rem;
  height: 1rem;
  margin-left: 0.5rem;
  transition: margin 0.3s, right 0.3s, left 0.3s, background 0.3s;
  left: 0;
  position: relative;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg width='15' height='13' viewBox='0 0 15 13' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M13.6875 7.71875L8.6875 12.7188C8.5 12.9062 8.25 13 8 13C7.71875 13 7.46875 12.9062 7.28125 12.7188C6.875 12.3438 6.875 11.6875 7.28125 11.3125L10.5625 8H1C0.4375 8 0 7.5625 0 7C0 6.46875 0.4375 6 1 6H10.5625L7.28125 2.71875C6.875 2.34375 6.875 1.6875 7.28125 1.3125C7.65625 0.90625 8.3125 0.90625 8.6875 1.3125L13.6875 6.3125C14.0938 6.6875 14.0938 7.34375 13.6875 7.71875Z' fill='%23fff'/%3E%3C/svg%3E");
}
.button:focus, .menu li.button &gt; a:focus {
  color: var(--white);
}
.button:hover, .menu li.button &gt; a:hover {
  color: var(--white);
  text-decoration: none;
  background: var(--link-hover);
}
.button:hover::after, .menu li.button &gt; a:hover::after {
  left: 0.25rem;
}
.button.offsite, .menu li.button &gt; a.offsite {
  background: none;
  padding: 0;
  height: auto;
  color: var(--radiant-flame);
  font-weight: 600;
  display: flex;
  align-items: center;
}
.button.offsite:hover::after, .menu li.button &gt; a.offsite:hover::after {
  left: 0;
}
.button.offsite::after, .menu li.button &gt; a.offsite::after {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12.7682 3.21602C12.9169 3.36518 12.9994 3.54748 12.9994 3.74635V8.25423C13.0159 8.66855 12.6691 9.01658 12.2562 9C11.8433 9.01658 11.4965 8.66855 11.513 8.25423L11.4965 4.49213L7.74374 4.49213C7.33084 4.5087 6.984 4.16067 7.00052 3.74635C6.984 3.33203 7.33084 2.984 7.74374 3.00058L12.2562 3.00058C12.4544 3.00058 12.6361 3.08344 12.7682 3.21602Z' fill='%23f44414'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M12.4697 3.53032C12.7626 3.82322 12.7565 4.30413 12.4562 4.60447L8.2929 8.76776C7.99255 9.0681 7.51164 9.07414 7.21875 8.78125C6.92585 8.48835 6.93189 8.00744 7.23224 7.7071L11.3955 3.54381C11.6959 3.24347 12.1768 3.23743 12.4697 3.53032Z' fill='%23f44414'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M5.5 1.5V10.5H14.5V1.5H5.5ZM4.25 0C4.11193 0 4 0.111929 4 0.25V11.75C4 11.8881 4.11193 12 4.25 12H15.75C15.8881 12 16 11.8881 16 11.75V0.25C16 0.111929 15.8881 0 15.75 0H4.25Z' fill='%23f44414'/%3E%3Cpath d='M4 5.5H1.5V14.5H10.5V12H12V15.75C12 15.8881 11.8881 16 11.75 16H0.25C0.111929 16 0 15.8881 0 15.75V4.25C0 4.11193 0.111929 4 0.25 4H4V5.5Z' fill='%23f44414'/%3E%3C/svg%3E");
}
.button.simple, .menu li.button &gt; a.simple {
  background: none;
  padding: 0;
  height: auto;
  color: var(--radiant-flame);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
}
.button.simple::after, .menu li.button &gt; a.simple::after {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg width='15' height='13' viewBox='0 0 15 13' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M13.6875 7.71875L8.6875 12.7188C8.5 12.9062 8.25 13 8 13C7.71875 13 7.46875 12.9062 7.28125 12.7188C6.875 12.3438 6.875 11.6875 7.28125 11.3125L10.5625 8H1C0.4375 8 0 7.5625 0 7C0 6.46875 0.4375 6 1 6H10.5625L7.28125 2.71875C6.875 2.34375 6.875 1.6875 7.28125 1.3125C7.65625 0.90625 8.3125 0.90625 8.6875 1.3125L13.6875 6.3125C14.0938 6.6875 14.0938 7.34375 13.6875 7.71875Z' fill='%23f44414'/%3E%3C/svg%3E");
}
.button.simple:hover, .menu li.button &gt; a.simple:hover {
  color: var(--link-hover);
}
.button.simple:hover::after, .menu li.button &gt; a.simple:hover::after {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg width='15' height='13' viewBox='0 0 15 13' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M13.6875 7.71875L8.6875 12.7188C8.5 12.9062 8.25 13 8 13C7.71875 13 7.46875 12.9062 7.28125 12.7188C6.875 12.3438 6.875 11.6875 7.28125 11.3125L10.5625 8H1C0.4375 8 0 7.5625 0 7C0 6.46875 0.4375 6 1 6H10.5625L7.28125 2.71875C6.875 2.34375 6.875 1.6875 7.28125 1.3125C7.65625 0.90625 8.3125 0.90625 8.6875 1.3125L13.6875 6.3125C14.0938 6.6875 14.0938 7.34375 13.6875 7.71875Z' fill='%23CB333A'/%3E%3C/svg%3E");
}
.button.outlined, .menu li.button &gt; a.outlined {
  background: none;
  color: var(--radiant-flame);
  border: 2px solid var(--radiant-flame);
}
.button.outlined::after, .menu li.button &gt; a.outlined::after {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg width='15' height='13' viewBox='0 0 15 13' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M13.6875 7.71875L8.6875 12.7188C8.5 12.9062 8.25 13 8 13C7.71875 13 7.46875 12.9062 7.28125 12.7188C6.875 12.3438 6.875 11.6875 7.28125 11.3125L10.5625 8H1C0.4375 8 0 7.5625 0 7C0 6.46875 0.4375 6 1 6H10.5625L7.28125 2.71875C6.875 2.34375 6.875 1.6875 7.28125 1.3125C7.65625 0.90625 8.3125 0.90625 8.6875 1.3125L13.6875 6.3125C14.0938 6.6875 14.0938 7.34375 13.6875 7.71875Z' fill='%23f44414'/%3E%3C/svg%3E");
}
.button.outlined:hover, .menu li.button &gt; a.outlined:hover {
  background: var(--link-hover);
  border-color: var(--link-hover);
  color: var(--white);
}
.button.outlined:hover::after, .menu li.button &gt; a.outlined:hover::after {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg width='15' height='13' viewBox='0 0 15 13' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M13.6875 7.71875L8.6875 12.7188C8.5 12.9062 8.25 13 8 13C7.71875 13 7.46875 12.9062 7.28125 12.7188C6.875 12.3438 6.875 11.6875 7.28125 11.3125L10.5625 8H1C0.4375 8 0 7.5625 0 7C0 6.46875 0.4375 6 1 6H10.5625L7.28125 2.71875C6.875 2.34375 6.875 1.6875 7.28125 1.3125C7.65625 0.90625 8.3125 0.90625 8.6875 1.3125L13.6875 6.3125C14.0938 6.6875 14.0938 7.34375 13.6875 7.71875Z' fill='%23fff'/%3E%3C/svg%3E");
}
.button:focus, .menu li.button &gt; a:focus, .button:active, .menu li.button &gt; a:active {
  outline: 0;
}
.button:disabled, .menu li.button &gt; a:disabled, .button.disabled, .menu li.button &gt; a.disabled {
  pointer-events: none;
}
.button.apply-filter-btn, .menu li.button &gt; a.apply-filter-btn {
  width: 100%;
  border: 2px solid var(--radiant-flame);
  color: var(--radiant-flame);
  background: none;
  transition: margin 0.3s, right 0.3s, left 0.3s, background 0.3s;
  font-weight: 700;
}
.button.apply-filter-btn:hover, .menu li.button &gt; a.apply-filter-btn:hover {
  background: var(--link-hover);
  border-color: var(--link-hover);
  color: var(--white);
}
.button.apply-filter-btn::after, .menu li.button &gt; a.apply-filter-btn::after {
  content: "";
  display: none;
}

.brand img,
.brand svg {
  display: block;
  width: 100%;
  max-width: 10.375rem;
  height: auto;
}

.dropdown.menu &gt; li &gt; a,
.dropdown.menu &gt; li.is-active &gt; a,
.menu .active &gt; a {
  background: inherit;
}

.menu li.button {
  border: 0;
  color: var(--white);
  font-weight: 400;
}

.menu li.button,
.menu &gt; li.button,
.menu.dropdown li.button,
.menu.dropdown &gt; li.button {
  padding: 0;
  background: none;
  height: auto;
  display: block;
  text-align: left;
}
.menu.dropdown {
  position: static;
}
.menu.dropdown ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.menu.dropdown ul li:first-child().is-dropdown-submenu-parent .first-sub li:nth-child(2) {
  width: 225px;
}
.menu.dropdown &gt; li {
  position: static;
}
.menu.dropdown &gt; li.is-dropdown-submenu-parent &gt; a {
  display: flex;
  align-items: center;
  padding-right: 0.9375rem;
  padding-left: 0.9375rem;
  font-weight: 400;
}
@media screen and (max-width: 75em) {
  .menu.dropdown &gt; li.is-dropdown-submenu-parent &gt; a {
    padding-left: 0.46875rem;
    padding-right: 0.46875rem;
  }
}
.menu.dropdown &gt; li.is-dropdown-submenu-parent &gt; a::after {
  border: none;
  width: 1.25rem;
  height: 1.25rem;
  margin: 0 0 0 3px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
  position: static;
  transition: transform 0.3s;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg width='20' height='20' viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M10.0156 13.4961C9.73438 13.4961 9.48438 13.4023 9.29688 13.2148L4.29688 8.21484C3.89062 7.83984 3.89062 7.18359 4.29688 6.80859C4.67188 6.40234 5.32812 6.40234 5.70312 6.80859L10.0156 11.0898L14.2969 6.80859C14.6719 6.40234 15.3281 6.40234 15.7031 6.80859C16.1094 7.18359 16.1094 7.83984 15.7031 8.21484L10.7031 13.2148C10.5156 13.4023 10.2656 13.4961 10.0156 13.4961Z' fill='%237c97a2'/%3E%3C/svg%3E");
}
.menu.dropdown &gt; li.is-dropdown-submenu-parent.is-active &gt; a {
  color: var(--radiant-flame);
}
.menu.dropdown &gt; li.is-dropdown-submenu-parent.is-active &gt; a::after {
  transform: rotate(180deg);
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg width='20' height='20' viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M10.0156 13.4961C9.73438 13.4961 9.48438 13.4023 9.29688 13.2148L4.29688 8.21484C3.89062 7.83984 3.89062 7.18359 4.29688 6.80859C4.67188 6.40234 5.32812 6.40234 5.70312 6.80859L10.0156 11.0898L14.2969 6.80859C14.6719 6.40234 15.3281 6.40234 15.7031 6.80859C16.1094 7.18359 16.1094 7.83984 15.7031 8.21484L10.7031 13.2148C10.5156 13.4023 10.2656 13.4961 10.0156 13.4961Z' fill='%23f44414'/%3E%3C/svg%3E");
}
.menu.dropdown &gt; li.is-active ul {
  opacity: 1;
  transform: translate(-50%, 0);
  visibility: visible;
}
.menu.dropdown &gt; li.is-active ul li a:active {
  color: var(--link-active);
}
.menu.dropdown .mega-menu {
  display: flex;
  align-items: flex-start;
  pointer-events: auto;
  visibility: hidden;
  opacity: 0;
  transform: translate(-50%, 0);
  transition: opacity 0.3s ease-in, transform 0.3s ease-in, visibility 0.3s ease-in;
  width: 100%;
  border: none;
  max-width: 75.625rem;
  padding: 2.5rem 0.9375rem;
  left: 50% !important;
  position: absolute;
}
.menu.dropdown .mega-menu::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  width: 100vw;
  max-width: 90rem;
  z-index: -1;
  left: 50%;
  transform: translate(-50%);
  background: var(--dark-matter);
  border: 0;
}
.menu.dropdown .mega-menu .submenu {
  position: static;
  display: flex;
  flex-direction: column;
  opacity: 1;
  border: none;
  background: var(--dark-matter);
  transform: none;
}
.menu.dropdown .mega-menu .submenu li, .menu.dropdown .mega-menu .submenu li a {
  font-weight: 400;
  font-size: 0.75rem;
  line-height: 1.1666666667;
  font-size: 0.875rem;
  color: var(--white);
}
.menu.dropdown .mega-menu .submenu li.headline a {
  font-weight: 600;
  font-size: 1rem;
  line-height: normal;
  color: var(--icy-blue);
}
.menu.dropdown .mega-menu .submenu li.headline + li {
  margin-top: 1.25rem;
}
.menu.dropdown .mega-menu .submenu li.headline.color-orange &gt; a {
  color: var(--radiant-flame);
}
.menu.dropdown .mega-menu .submenu li.headline.size-18 &gt; a {
  font-size: 1.125rem;
}
.menu.dropdown .mega-menu .submenu li + li:not(.headline) {
  margin-top: 0.625rem;
}
.menu.dropdown .mega-menu .submenu li + li.headline {
  margin-top: 1.25rem;
}
.menu.dropdown .mega-menu .submenu li.hover-underline &gt; a {
  position: relative;
  display: inline-block;
}
.menu.dropdown .mega-menu .submenu li.hover-underline &gt; a:after {
  content: "";
  display: block;
  width: 0;
  height: 0.0625rem;
  background-color: var(--white);
  position: absolute;
  left: 0;
  bottom: -2px;
  transition: width 0.3s;
  top: auto;
}
.menu.dropdown .mega-menu .submenu li.hover-underline:hover &gt; a::after {
  width: 100%;
}
.menu.dropdown .mega-menu .submenu li.button + li {
  margin-top: 1.25rem;
}
.menu.dropdown .mega-menu .submenu li + .button:not(.headline), .menu.dropdown .mega-menu .submenu li.button &gt; li + a:not(.headline) {
  margin-top: 1.25rem;
}
.menu.dropdown .mega-menu .submenu a {
  padding: 0;
}
.menu.dropdown .mega-menu .button.simple, .menu.dropdown .mega-menu li.button &gt; a.simple {
  padding: 0;
}
.menu.dropdown .mega-menu .button.simple::after, .menu.dropdown .mega-menu li.button &gt; a.simple::after {
  margin-top: 0;
  left: 0;
  right: 0;
  transform: none;
  top: 0;
  bottom: 0;
  position: relative;
}
.menu.dropdown .mega-menu .button.simple:hover::after, .menu.dropdown .mega-menu li.button &gt; a.simple:hover::after {
  left: 0.25rem;
}
.menu.dropdown .mega-menu &gt; li {
  width: 14%;
  word-wrap: break-word;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.menu.dropdown .mega-menu &gt; li:not(:first-child) .button.simple::after, .menu.dropdown .mega-menu &gt; li:not(:first-child) li.button &gt; a.simple::after {
  display: none;
}
.menu.dropdown .mega-menu &gt; li:not(:first-child) .button.simple a, .menu.dropdown .mega-menu &gt; li:not(:first-child) li.button &gt; a.simple a {
  background: none;
  padding: 0;
  height: auto;
  color: var(--white);
  border: none;
  font-weight: 500;
  display: flex;
  align-items: center;
  font-size: 1rem;
  justify-content: flex-start;
}
.menu.dropdown .mega-menu &gt; li:not(:first-child) .button.simple a::after, .menu.dropdown .mega-menu &gt; li:not(:first-child) li.button &gt; a.simple a::after {
  margin-top: 0;
  left: 0;
  right: 0;
  transform: none;
  top: 0;
  bottom: 0;
  position: relative;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg width='15' height='13' viewBox='0 0 15 13' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M13.6875 7.71875L8.6875 12.7188C8.5 12.9062 8.25 13 8 13C7.71875 13 7.46875 12.9062 7.28125 12.7188C6.875 12.3438 6.875 11.6875 7.28125 11.3125L10.5625 8H1C0.4375 8 0 7.5625 0 7C0 6.46875 0.4375 6 1 6H10.5625L7.28125 2.71875C6.875 2.34375 6.875 1.6875 7.28125 1.3125C7.65625 0.90625 8.3125 0.90625 8.6875 1.3125L13.6875 6.3125C14.0938 6.6875 14.0938 7.34375 13.6875 7.71875Z' fill='%23fff'/%3E%3C/svg%3E");
}
.menu.dropdown .mega-menu &gt; li:not(:first-child) .button.simple a:hover::after, .menu.dropdown .mega-menu &gt; li:not(:first-child) li.button &gt; a.simple a:hover::after {
  left: 0.25rem;
}
.menu.dropdown .mega-menu &gt; li:first-child {
  width: 32%;
}
.menu.dropdown .mega-menu &gt; li:first-child .title {
  font-weight: 600;
  line-height: 1.3333333333;
  color: var(--dark-matter);
}
.menu.dropdown .mega-menu &gt; li:first-child .title {
  font-size: 2.25rem;
}
@media screen and (min-width: 768px) {
  .menu.dropdown .mega-menu &gt; li:first-child .title {
    font-size: calc(36px + 12 * (100vw - 768px) / 256);
  }
}
@media screen and (min-width: 1024px) {
  .menu.dropdown .mega-menu &gt; li:first-child .title {
    font-size: 3rem;
  }
}
@media print, screen and (min-width: 48em) {
  .menu.dropdown .mega-menu &gt; li:first-child .title {
    line-height: 1.2083333333;
  }
}
.menu.dropdown .mega-menu &gt; li:first-child .title + * {
  margin-top: 2.5rem;
}
.menu.dropdown .mega-menu &gt; li:first-child .preheadline {
  text-transform: uppercase;
  color: var(--solar-flare);
  margin-bottom: 0.0625rem;
}
.menu.dropdown .mega-menu &gt; li:first-child .preheadline + * {
  margin-top: 0.25rem;
}
.menu.dropdown .mega-menu &gt; li:first-child .headline {
  color: var(--icy-blue);
  font-weight: 400;
}
.menu.dropdown .mega-menu &gt; li:first-child .headline + * {
  margin-top: 0.25rem;
}
.menu.dropdown .mega-menu &gt; li:first-child * + .description h4 {
  margin-top: 0.625rem;
  color: var(--icy-blue);
}
.menu.dropdown .mega-menu &gt; li:first-child img + *,
.menu.dropdown .mega-menu &gt; li:first-child svg + * {
  margin-top: 0.25rem;
}
.menu.dropdown .mega-menu &gt; li:first-child .description {
  font-weight: 600;
  font-size: 1rem;
  line-height: normal;
  color: var(--white);
  font-weight: 300;
  max-width: 21.25rem;
}
.menu.dropdown .mega-menu &gt; li:first-child .description a {
  display: inline-block;
  padding: 0;
  border: 0;
  color: var(--white);
  font-weight: 500;
}
.menu.dropdown .mega-menu &gt; li:first-child .description + * {
  margin-top: 1.25rem;
}
.menu.dropdown .mega-menu &gt; li:first-of-type {
  border-right: 2px solid var(--slate-mist);
}
.menu.dropdown .mega-menu &gt; li:not(:last-of-type) {
  margin-right: 40px;
}
.menu.dropdown .mega-menu &gt; li:nth-child(4) {
  margin-right: 0;
}
.menu.dropdown .mega-menu &gt; li:nth-child(5) {
  padding-left: 2.5rem;
  border-left: 1px solid var(--icy-blue);
  padding-bottom: 2.5rem;
}
.menu.dropdown .mega-menu.items-centered &gt; li:last-child {
  margin-right: auto;
}
.menu.dropdown .mega-menu.items-right &gt; li:nth-child(2) {
  margin-left: auto;
}

.menu.dropdown.simple-menu::after {
  display: none;
}
.menu.dropdown.simple-menu .menu-item a {
  font-weight: 400;
}
.menu.dropdown.simple-menu .submenu.simple-submenu {
  width: auto;
  left: auto !important;
  margin-left: 109px;
  padding: 1.25rem;
  background-color: var(--dark-matter);
}
.menu.dropdown.simple-menu .submenu.simple-submenu::after {
  content: none;
}
.menu.dropdown.simple-menu .submenu.simple-submenu &gt; li.opens-right {
  width: auto;
}
.menu.dropdown.simple-menu .submenu.simple-submenu &gt; li.opens-right:first-of-type {
  border-right: 0;
}

.hamburger {
  display: flex;
  align-items: center;
}
.hamburger .hamburger-button {
  display: block;
  width: 1.3125rem;
  min-width: 1.3125rem;
  height: 1.0625rem;
  border: none;
  background: none;
  outline: none;
  cursor: pointer;
  position: relative;
}
.hamburger .hamburger-button .hamburger-line {
  height: 0.1875rem;
  background: var(--black);
  width: 100%;
  display: block;
  position: absolute;
  transition: transform 0.3s;
}
.hamburger .hamburger-button .hamburger-line.hamburger-line1 {
  top: 0;
}
.hamburger .hamburger-button .hamburger-line.hamburger-line2 {
  top: 50%;
  margin-top: -1.5px;
}
.hamburger .hamburger-button .hamburger-line.hamburger-line3 {
  bottom: 0;
}
.hamburger[aria-expanded=true] .hamburger-line1 {
  transform: translateY(6px) translateX(0) rotate(45deg);
}
.hamburger[aria-expanded=true] .hamburger-line2 {
  opacity: 0;
}
.hamburger[aria-expanded=true] .hamburger-line3 {
  transform: translateY(-11px) translateX(0) rotate(-45deg);
  bottom: initial;
  top: 100%;
}

.mobile-header {
  display: flex;
  column-gap: 1.25rem;
}
.mobile-header .mobile-search-btn-header {
  display: inline-block;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg width='20' height='20' viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M17.625 15.875L13.875 12.125C14.7188 10.875 15.1562 9.3125 14.9375 7.625C14.5312 4.75 12.1875 2.4375 9.34375 2.0625C5.09375 1.53125 1.5 5.125 2.03125 9.375C2.40625 12.2188 4.71875 14.5625 7.59375 14.9688C9.28125 15.1875 10.8438 14.75 12.125 13.9062L15.8438 17.6562C16.3438 18.125 17.125 18.125 17.625 17.6562C18.0938 17.1562 18.0938 16.375 17.625 15.875ZM4.46875 8.5C4.46875 6.3125 6.25 4.5 8.46875 4.5C10.6562 4.5 12.4688 6.3125 12.4688 8.5C12.4688 10.7188 10.6562 12.5 8.46875 12.5C6.25 12.5 4.46875 10.7188 4.46875 8.5Z' fill='%23000'/%3E%3C/svg%3E");
  margin: 0;
  width: 3rem;
  color: transparent;
  background-repeat: no-repeat !important;
  background-size: contain !important;
  background-position: center center !important;
}
.mobile-header .contact-support {
  margin-right: 1.25rem;
}
.mobile-header .contact-support a {
  font-size: 0.8125rem;
}

a.skip-main {
  left: -999px;
  position: absolute;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
  z-index: -999;
}
a.skip-main:focus, a.skip-main:active {
  color: #fff;
  background-color: #000;
  left: auto;
  top: auto;
  width: 30%;
  height: auto;
  overflow: auto;
  margin: 10px 35%;
  padding: 5px;
  border-radius: 15px;
  border: 4px solid yellow;
  text-align: center;
  font-size: 1.2em;
  z-index: 9999;
}

section.content-block .search-filter-container {
  display: flex;
  justify-content: flex-start;
  align-content: center;
  margin-bottom: 1.25rem;
  grid-column: 1/span 3;
}
section.content-block .search-filter-container .facetwp-type-search input {
  padding: 10px 30px 10px 40px !important;
}
section.content-block .search-filter-container .sort-item .title {
  text-transform: uppercase;
}
section.content-block .aside {
  flex-direction: column;
  width: 15.625rem;
  min-width: 15.625rem;
  max-width: 15.625rem;
}
@media print, screen and (min-width: 64em) {
  section.content-block .aside {
    display: flex;
  }
}
@media print, screen and (max-width: 25.93625em) {
  section.content-block .aside {
    width: 100%;
    margin-bottom: 2.5rem;
  }
  section.content-block .aside .accordion-content {
    max-width: 100%;
  }
}
section.content-block .aside .accordion-title,
section.content-block .aside .sort-mod-accord-title,
section.content-block .aside .fs-arrow {
  background: none;
  border: none;
  padding: 0;
  text-transform: uppercase;
  color: var(--text-color);
  width: 200px;
}
section.content-block .aside .accordion-title::before,
section.content-block .aside .sort-mod-accord-title::before,
section.content-block .aside .fs-arrow::before {
  content: "";
  width: 1.25rem;
  height: 1.25rem;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg width='20' height='20' viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M10.0156 13.4961C9.73438 13.4961 9.48438 13.4023 9.29688 13.2148L4.29688 8.21484C3.89062 7.83984 3.89062 7.18359 4.29688 6.80859C4.67188 6.40234 5.32812 6.40234 5.70312 6.80859L10.0156 11.0898L14.2969 6.80859C14.6719 6.40234 15.3281 6.40234 15.7031 6.80859C16.1094 7.18359 16.1094 7.83984 15.7031 8.21484L10.7031 13.2148C10.5156 13.4023 10.2656 13.4961 10.0156 13.4961Z' fill='%231b3e51'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
  top: 50%;
  transform: translate(0, -50%) rotate(180deg);
  margin: 0;
  bottom: initial;
  right: 0;
  transition: transform 0.3s;
}
@media print, screen and (max-width: 61.74875em) {
  section.content-block .aside .accordion-title::before,
  section.content-block .aside .sort-mod-accord-title::before,
  section.content-block .aside .fs-arrow::before {
    right: 0;
  }
}
section.content-block .aside .accordion-item.is-active .accordion-title::before,
section.content-block .aside .accordion-item.is-active .sort-mod-accord-title::before,
section.content-block .aside .accordion-item.is-active .fs-arrow::before {
  transform: translate(0, -50%) rotate(0);
}
section.content-block .aside .accordion-content {
  margin-top: 0.625rem;
  border: none;
  background: none;
  padding: 0;
}
@media print, screen and (min-width: 48em) {
  section.content-block .aside .accordion-content {
    max-width: 15.625rem;
  }
}
section.content-block .aside .item + .item {
  margin-top: 2rem;
}

.item.sort-module .accordion-title.sort-mod-accord-title {
  background: none;
  border: none;
  padding: 0;
  text-transform: uppercase;
  color: var(--text-color);
}
.item.sort-module .accordion-title.sort-mod-accord-title::before {
  content: "";
  width: 1.25rem;
  height: 1.25rem;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg width='20' height='20' viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M10.0156 13.4961C9.73438 13.4961 9.48438 13.4023 9.29688 13.2148L4.29688 8.21484C3.89062 7.83984 3.89062 7.18359 4.29688 6.80859C4.67188 6.40234 5.32812 6.40234 5.70312 6.80859L10.0156 11.0898L14.2969 6.80859C14.6719 6.40234 15.3281 6.40234 15.7031 6.80859C16.1094 7.18359 16.1094 7.83984 15.7031 8.21484L10.7031 13.2148C10.5156 13.4023 10.2656 13.4961 10.0156 13.4961Z' fill='%231b3e51'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
  top: 50%;
  transform: translate(0, -50%) rotate(180deg);
  margin: 0;
  bottom: initial;
  right: 2.5rem;
  transition: transform 0.3s;
}
@media print, screen and (max-width: 61.74875em) {
  .item.sort-module .accordion-title.sort-mod-accord-title::before {
    right: 0;
  }
}

.item.sort-module .accordion-item.is-active .accordion-title.sort-mod-accord-title::before {
  transform: translate(0, -50%) rotate(0);
}

.close-filter,
.close-button,
.resources-mobile-nav-button {
  color: transparent;
  transition: transform 0.33s ease !important;
}

.resources-mobile-nav-button:hover,
.close-button:hover {
  cursor: pointer;
}

@media print, screen and (min-width: 64em) {
  .hide-on-desktop {
    display: none;
    transition: transform 0.33s ease !important;
  }
}
@media print, screen and (max-width: 61.74875em) {
  .show-on-mobile {
    display: block;
    transition: transform 0.33s ease !important;
  }
  .hide-on-mobile {
    display: none;
    transition: transform 0.33s ease !important;
  }
  .aside {
    display: none;
    position: relative;
    transition: transform 0.33s ease !important;
    transform: translateX(-100%);
  }
  .aside.active {
    display: block;
    position: absolute;
    background-color: var(--white);
    padding: 0;
    margin-top: -4rem;
    overflow-y: scroll;
    top: 0;
    right: 0;
    left: 0;
    width: 100%;
    transition: transform 0.33s ease !important;
    transform: translateX(0);
    z-index: 1000;
  }
  .aside.active .item {
    padding: 0 1.25rem;
  }
  .aside.active .apply-filter-wrapper {
    position: sticky;
    width: 100%;
    bottom: 0;
    margin: auto;
    padding: 1.25rem;
    background: var(--white);
    border-top: 2px solid var(--icy-blue);
  }
  .aside.active .apply-filter-wrapper .apply-filter-btn {
    width: 100%;
    border: 2px solid var(--radiant-flame);
    color: var(--radiant-flame);
    background: none;
    transition: margin 0.3s, right 0.3s, left 0.3s, background 0.3s;
    font-weight: 700;
  }
  .aside.active .apply-filter-wrapper .apply-filter-btn:hover {
    background: var(--link-hover);
    border-color: var(--link-hover);
    color: var(--white);
  }
  .aside.active.desktop {
    display: none;
  }
  .aside .close-filter {
    padding: 1.25rem 1.25rem 0;
    text-align: right;
    transition: transform 0.33s ease !important;
  }
  .aside .close-filter:hover {
    cursor: pointer;
    transition: transform 0.33s ease !important;
  }
  .aside .facetwp-facet {
    margin: 1.25rem 0 !important;
    padding-right: 0;
    padding-left: 0;
  }
}
.notification-bar {
  position: fixed;
  width: 100%;
  padding: 0.5rem 0;
  top: 0;
  z-index: 99999;
  transform: none;
  animation: none;
  background: var(--velvet-indigo);
}
.notification-bar.bg-merigold a:not(.button) {
  color: var(--text-color);
  text-decoration: underline;
}
.notification-bar.bg-merigold a:not(.button):hover {
  text-decoration: none;
}
.notification-bar.bg-dark .button, .notification-bar.bg-dark .menu li.button &gt; a, .menu .notification-bar.bg-dark li.button &gt; a {
  border: 0;
  color: var(--white);
  font-weight: 400;
}
.notification-bar .module + .module {
  margin-top: 0;
}
.notification-bar .module.buttons {
  flex-wrap: nowrap;
  margin: auto;
}
@media print, screen and (min-width: 48em) {
  .notification-bar .module.buttons {
    margin: initial;
  }
}
.notification-bar .module.buttons .button, .notification-bar .module.buttons .menu li.button &gt; a, .menu .notification-bar .module.buttons li.button &gt; a {
  white-space: nowrap;
  border: 0;
}
.notification-bar .module.buttons .button.simple, .notification-bar .module.buttons .menu li.button &gt; a.simple, .menu .notification-bar .module.buttons li.button &gt; a.simple {
  border: 0;
  color: var(--white);
  font-weight: 400;
}
@media print, screen and (min-width: 48em) {
  .notification-bar .module.text-editor {
    width: auto;
    max-width: 55rem;
  }
}
@media screen and (max-width: 600px) {
  .notification-bar .module.text-editor img {
    display: none;
  }
}
.notification-bar .grid-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media print, screen and (min-width: 48em) {
  .notification-bar .grid-container {
    flex-direction: row;
    align-items: center;
  }
}

.award-row {
  width: 100%;
  text-align: center;
}
.award-row img {
  height: 75px;
  padding: 0 10px;
}
@media print, screen and (min-width: 64em) {
  .award-row img {
    height: 125px;
    padding: 0 20px;
  }
}

#breadcrumbs {
  display: block;
}
@media print, screen and (min-width: 64em) {
  #breadcrumbs {
    margin-top: 12rem;
  }
}
@media print, screen and (max-width: 61.74875em) {
  #breadcrumbs {
    margin-top: 7rem;
  }
}
#breadcrumbs span a {
  color: var(--dark-matter);
}
#breadcrumbs span a:hover {
  color: var(--radiant-flame);
}
#breadcrumbs &gt; span, #breadcrumbs span a {
  display: flex;
  column-gap: 0.75rem;
  justify-content: flex-start;
}
@media print, screen and (max-width: 39.68625em) {
  #breadcrumbs &gt; span, #breadcrumbs span a {
    display: inline-block;
    font-size: 0.875rem;
    column-gap: 0.5rem;
  }
}
@media print, screen and (max-width: 38.74875em) {
  #breadcrumbs &gt; span, #breadcrumbs span a {
    font-size: 0.875rem;
    column-gap: 0.15rem;
  }
}
@media print, screen and (max-width: 31.24875em) {
  #breadcrumbs &gt; span, #breadcrumbs span a {
    display: inline-block;
    column-gap: 0.15rem;
    font-size: 0.875rem;
  }
}
@media print, screen and (max-width: 31.24875em) {
  #breadcrumbs span a {
    column-gap: 0.15rem;
    font-size: 0.875rem;
  }
}
#breadcrumbs span.breadcrumb_last {
  display: -webkit-box;
  -webkit-line-clamp: 1;
  line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  max-width: 20rem;
}
@media print, screen and (max-width: 39.68625em) {
  #breadcrumbs span.breadcrumb_last {
    max-width: 100%;
  }
}

section.content-block {
  margin-top: 3.6rem;
  position: relative;
  z-index: 1;
}
section.content-block::before, section.content-block::after {
  display: table;
  content: " ";
  flex-basis: 0;
  order: 1;
}
section.content-block::after {
  clear: both;
}
@media print, screen and (min-width: 48em) {
  section.content-block {
    margin-top: 4rem;
  }
}
@media print, screen and (min-width: 64em) {
  section.content-block {
    margin-top: 5rem;
  }
}
@media print, screen and (max-width: 25.93625em) {
  section.content-block .grid-x .cell.small-order-1 {
    margin-bottom: 0.9rem;
  }
}
@media print, screen and (max-width: 25.93625em) and (min-width: 48em) {
  section.content-block .grid-x .cell.small-order-1 {
    margin-bottom: 1rem;
  }
}
@media print, screen and (max-width: 25.93625em) and (min-width: 64em) {
  section.content-block .grid-x .cell.small-order-1 {
    margin-bottom: 1.25rem;
  }
}
section.content-block[class*=related-resources-] {
  padding-top: 3.6rem;
  padding-bottom: 3.6rem;
}
section.content-block[class*=related-resources-] .content {
  padding: 0 1.25rem 1.25rem;
}
section.content-block[class*=related-resources-]::after {
  content: "";
  position: absolute;
  display: block;
  right: 0;
  height: 100%;
  width: 100%;
  max-width: 100%;
  background: url("../images/gradient-top.svg");
  background-repeat: no-repeat;
  background-size: 100% auto;
  z-index: -1;
  pointer-events: none;
  top: 0;
}
@media print, screen and (min-width: 48em) {
  section.content-block[class*=related-resources-] {
    padding-top: 4rem;
  }
}
@media print, screen and (min-width: 64em) {
  section.content-block[class*=related-resources-] {
    padding-top: 5rem;
  }
}
@media print, screen and (min-width: 48em) {
  section.content-block[class*=related-resources-] {
    padding-bottom: 4rem;
  }
}
@media print, screen and (min-width: 64em) {
  section.content-block[class*=related-resources-] {
    padding-bottom: 5rem;
  }
}
section.content-block[class*=related-resources-] .tag-date-wrapper .tag-list {
  display: flex;
  width: 100%;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.5rem;
  align-items: center;
}
section.content-block[class*=related-resources-] .tag-date-wrapper .tag-list .tag {
  font-size: 0.625rem;
  font-weight: 400;
  text-transform: uppercase;
  transition: color 0.3s;
  border: 1px solid var(--slate-mist);
  color: var(--lunar-silver);
  line-height: normal;
  padding: 4px 10px;
  border-radius: 0.25rem;
  list-style-type: none;
}
section.content-block.template-cta {
  margin-top: 0;
}
section.content-block.protected-page .component input {
  width: 100%;
  height: 2.5rem;
}
section.content-block.protected-page .buttons {
  margin-top: 1.25rem;
}
section.content-block.margin-top-large {
  margin-top: 7.2rem;
}
@media print, screen and (min-width: 48em) {
  section.content-block.margin-top-large {
    margin-top: 8rem;
  }
}
@media print, screen and (min-width: 64em) {
  section.content-block.margin-top-large {
    margin-top: 10rem;
  }
}
section.content-block p.no-search-posts {
  margin-top: 3.125rem;
}
section.content-block.large-paddings {
  padding-bottom: 8.1rem;
  padding-top: 8.1rem;
}
@media print, screen and (min-width: 48em) {
  section.content-block.large-paddings {
    padding-bottom: 9rem;
    padding-top: 9rem;
  }
}
@media print, screen and (min-width: 64em) {
  section.content-block.large-paddings {
    padding-bottom: 11.25rem;
    padding-top: 11.25rem;
  }
}
section.content-block.gradient-bottom {
  padding-bottom: 4.5rem;
  padding-top: 4.5rem;
  margin-bottom: 0;
  margin-top: 0;
}
@media print, screen and (min-width: 48em) {
  section.content-block.gradient-bottom {
    padding-bottom: 5rem;
    padding-top: 5rem;
  }
}
@media print, screen and (min-width: 64em) {
  section.content-block.gradient-bottom {
    padding-bottom: 6.25rem;
    padding-top: 6.25rem;
  }
}
section.content-block.gradient-bottom.sectiontabgradient {
  margin-top: 5rem;
}
section.content-block.gradient-bottom::after {
  content: "";
  position: absolute;
  display: block;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  max-width: 100%;
  background: url("../images/gradient-bottom.svg");
  background-repeat: no-repeat;
  background-position: bottom;
  background-size: 100% auto;
  z-index: -1;
  pointer-events: none;
}
@media print, screen and (max-width: 25.93625em) {
  section.content-block.gradient-bottom::after {
    height: 6.25rem;
  }
}
section.content-block.gradient-bottom + section.content-block[class*=bg-], section.content-block.gradient-bottom + section.content-block[classË†=bg-] {
  margin-top: 0;
  padding-bottom: 3.6rem;
  padding-top: 3.6rem;
}
@media print, screen and (min-width: 48em) {
  section.content-block.gradient-bottom + section.content-block[class*=bg-], section.content-block.gradient-bottom + section.content-block[classË†=bg-] {
    padding-bottom: 4rem;
    padding-top: 4rem;
  }
}
@media print, screen and (min-width: 64em) {
  section.content-block.gradient-bottom + section.content-block[class*=bg-], section.content-block.gradient-bottom + section.content-block[classË†=bg-] {
    padding-bottom: 5rem;
    padding-top: 5rem;
  }
}
section.content-block.gradient-top {
  padding-top: 4.5rem;
  margin-top: 0;
}
@media print, screen and (min-width: 48em) {
  section.content-block.gradient-top {
    padding-top: 5rem;
  }
}
@media print, screen and (min-width: 64em) {
  section.content-block.gradient-top {
    padding-top: 6.25rem;
  }
}
section.content-block.gradient-top::after {
  content: "";
  position: absolute;
  display: block;
  right: 0;
  height: 100%;
  width: 100%;
  max-width: 100%;
  background: url("../images/gradient-top.svg");
  background-repeat: no-repeat;
  background-size: 100% auto;
  z-index: -1;
  pointer-events: none;
  top: 0;
}
section.content-block.bg-white + .site-footer .footer-top {
  background: var(--white);
}
section.content-block.template-wires:not([class*=bg-]):not([class^=bg-]) + .content-block {
  margin-top: 3.6rem;
}
@media print, screen and (min-width: 48em) {
  section.content-block.template-wires:not([class*=bg-]):not([class^=bg-]) + .content-block {
    margin-top: 4rem;
  }
}
@media print, screen and (min-width: 64em) {
  section.content-block.template-wires:not([class*=bg-]):not([class^=bg-]) + .content-block {
    margin-top: 5rem;
  }
}
section.content-block:not([class*=bg-]):not([classË†=bg-]) + section.content-block.gradient-top {
  margin-top: 3.6rem;
}
@media print, screen and (min-width: 48em) {
  section.content-block:not([class*=bg-]):not([classË†=bg-]) + section.content-block.gradient-top {
    margin-top: 4rem;
  }
}
@media print, screen and (min-width: 64em) {
  section.content-block:not([class*=bg-]):not([classË†=bg-]) + section.content-block.gradient-top {
    margin-top: 5rem;
  }
}

section[class^=bg-],
section[class*=bg-] {
  padding-bottom: 3.6rem;
  padding-top: 3.6rem;
}
@media print, screen and (min-width: 48em) {
  section[class^=bg-],
  section[class*=bg-] {
    padding-bottom: 4rem;
    padding-top: 4rem;
  }
}
@media print, screen and (min-width: 64em) {
  section[class^=bg-],
  section[class*=bg-] {
    padding-bottom: 5rem;
    padding-top: 5rem;
  }
}

section[class^=bg-] + section[class^=bg-],
section[class*=bg-] + section[class*=bg-] {
  margin-top: 0;
  border: none;
}

section.content-block:last-of-type {
  margin-bottom: 3.6rem;
}
@media print, screen and (min-width: 48em) {
  section.content-block:last-of-type {
    margin-bottom: 4rem;
  }
}
@media print, screen and (min-width: 64em) {
  section.content-block:last-of-type {
    margin-bottom: 5rem;
  }
}

section:last-of-type[class^=bg-],
section:last-of-type[class*=bg-] {
  margin-bottom: 0;
}

section.content-block:last-of-type.collapse-vert {
  margin-bottom: 3.6rem;
}
@media print, screen and (min-width: 48em) {
  section.content-block:last-of-type.collapse-vert {
    margin-bottom: 4rem;
  }
}
@media print, screen and (min-width: 64em) {
  section.content-block:last-of-type.collapse-vert {
    margin-bottom: 5rem;
  }
}

section.collapse .grid-x .cell {
  padding-left: 0;
  padding-right: 0;
}

@media print, screen and (max-width: 25.93625em) {
  .has-2-cols:not(.block-grid) &gt; .cell + .cell,
  .has-3-cols:not(.block-grid) &gt; .cell + .cell,
  .has-4-cols:not(.block-grid) &gt; .cell + .cell {
    margin-top: 0.9rem;
  }
}
@media print, screen and (max-width: 25.93625em) and (min-width: 48em) {
  .has-2-cols:not(.block-grid) &gt; .cell + .cell,
  .has-3-cols:not(.block-grid) &gt; .cell + .cell,
  .has-4-cols:not(.block-grid) &gt; .cell + .cell {
    margin-top: 1rem;
  }
}
@media print, screen and (max-width: 25.93625em) and (min-width: 64em) {
  .has-2-cols:not(.block-grid) &gt; .cell + .cell,
  .has-3-cols:not(.block-grid) &gt; .cell + .cell,
  .has-4-cols:not(.block-grid) &gt; .cell + .cell {
    margin-top: 1.25rem;
  }
}

section.content-block.template-content-cards.resources-center {
  margin-top: 0;
}

section.content-block.template-content-cards.bg-dark {
  background-color: var(--velvet-indigo);
}
section.content-block.template-content-cards.bg-dark .headline {
  color: var(--white);
}

.spacer {
  display: block;
  width: 100%;
  height: 5rem !important;
  margin-bottom: 0;
  background-color: transparent;
}
@media print, screen and (max-width: 61.74875em) {
  .spacer {
    margin-bottom: 0;
  }
}

.template-content-cards[class*=related-resources-] .content-card .content,
.archive.tax-jbt_post_type .template-content-cards .content-card .content,
.page-template-template-resource-archive-page .template-content-cards .content-card .content {
  padding: 0 1.25rem 1.25rem !important;
}

.template-content-cards[class*=related-resources-] .content-card .content .button, .template-content-cards[class*=related-resources-] .content-card .content .menu li.button &gt; a, .menu .template-content-cards[class*=related-resources-] .content-card .content li.button &gt; a,
.template-content-cards[class*=related-resources-] .content-card .content .button.simple,
.archive.tax-jbt_post_type .template-content-cards .content-card .content .button.simple,
.archive.tax-jbt_post_type .template-content-cards .content-card .content .menu li.button &gt; a.simple,
.menu .archive.tax-jbt_post_type .template-content-cards .content-card .content li.button &gt; a.simple,
.page-template-template-resource-archive-page .template-content-cards .content-card .content .button.simple,
.page-template-template-resource-archive-page .template-content-cards .content-card .content .menu li.button &gt; a.simple,
.menu .page-template-template-resource-archive-page .template-content-cards .content-card .content li.button &gt; a.simple {
  margin-left: auto !important;
}

section.content-block .cell[class^=bg-], section.content-block .cell[class*=bg-] {
  padding: 0.9rem;
}
@media print, screen and (min-width: 48em) {
  section.content-block .cell[class^=bg-], section.content-block .cell[class*=bg-] {
    padding: 1rem;
  }
}
@media print, screen and (min-width: 64em) {
  section.content-block .cell[class^=bg-], section.content-block .cell[class*=bg-] {
    padding: 1.25rem;
  }
}

.module + .module {
  margin-top: 0.9rem;
}
@media print, screen and (min-width: 48em) {
  .module + .module {
    margin-top: 1rem;
  }
}
@media print, screen and (min-width: 64em) {
  .module + .module {
    margin-top: 1.25rem;
  }
}
.module.stack-order-1 {
  margin-top: 0;
}
.module.align-center {
  text-align: center;
}
.module + .stats {
  margin-top: 1.875rem;
}
.module + .icon-list {
  margin-top: 2.5rem;
}
.module.icon-list + * {
  margin-top: 2.5rem;
}
.module.stats + * {
  margin-top: 1.875rem;
}

header.module + .module.text-editor {
  margin-top: 0.375rem;
}

@media print, screen and (max-width: 25.93625em) {
  .cell + .cell .module {
    margin-top: 0.9rem;
  }
}
@media print, screen and (max-width: 25.93625em) and (min-width: 48em) {
  .cell + .cell .module {
    margin-top: 1rem;
  }
}
@media print, screen and (max-width: 25.93625em) and (min-width: 64em) {
  .cell + .cell .module {
    margin-top: 1.25rem;
  }
}

header.module.align-center {
  text-align: center;
}
header.module.align-center .subheadline {
  margin-left: auto;
  margin-right: auto;
}
header.module .headline {
  font-weight: 500;
  line-height: 1.3125;
}
header.module .headline {
  font-size: 2rem;
}
@media screen and (min-width: 768px) {
  header.module .headline {
    font-size: calc(32px + 4 * (100vw - 768px) / 256);
  }
}
@media screen and (min-width: 1024px) {
  header.module .headline {
    font-size: 2.25rem;
  }
}
@media print, screen and (min-width: 48em) {
  header.module .headline {
    line-height: 125%;
  }
}
header.module .headline span {
  display: block;
}
header.module .subheadline {
  font-weight: 300;
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 400;
}
header.module img + h3,
header.module img + h2 {
  margin-top: 1.25rem;
}
header.module h1.headline {
  font-weight: 600;
  line-height: 1.3333333333;
}
header.module h1.headline {
  font-size: 2.25rem;
}
@media screen and (min-width: 768px) {
  header.module h1.headline {
    font-size: calc(36px + 12 * (100vw - 768px) / 256);
  }
}
@media screen and (min-width: 1024px) {
  header.module h1.headline {
    font-size: 3rem;
  }
}
@media print, screen and (min-width: 48em) {
  header.module h1.headline {
    line-height: 1.2083333333;
  }
}
header.module h2.subheadline {
  margin-top: 0.3125rem;
  font-weight: 300;
  line-height: normal;
  line-height: 1.5;
}
header.module h2.subheadline {
  font-size: 1.25rem;
}
@media screen and (min-width: 768px) {
  header.module h2.subheadline {
    font-size: calc(20px + 4 * (100vw - 768px) / 256);
  }
}
@media screen and (min-width: 1024px) {
  header.module h2.subheadline {
    font-size: 1.5rem;
  }
}
header.module .headline.size-36 {
  font-weight: 500;
  line-height: 1.3125;
}
header.module .headline.size-36 {
  font-size: 2rem;
}
@media screen and (min-width: 768px) {
  header.module .headline.size-36 {
    font-size: calc(32px + 4 * (100vw - 768px) / 256);
  }
}
@media screen and (min-width: 1024px) {
  header.module .headline.size-36 {
    font-size: 2.25rem;
  }
}
@media print, screen and (min-width: 48em) {
  header.module .headline.size-36 {
    line-height: 125%;
  }
}
header.module .headline.size-48 {
  font-weight: 600;
  line-height: 1.3333333333;
}
header.module .headline.size-48 {
  font-size: 2.25rem;
}
@media screen and (min-width: 768px) {
  header.module .headline.size-48 {
    font-size: calc(36px + 12 * (100vw - 768px) / 256);
  }
}
@media screen and (min-width: 1024px) {
  header.module .headline.size-48 {
    font-size: 3rem;
  }
}
@media print, screen and (min-width: 48em) {
  header.module .headline.size-48 {
    line-height: 1.2083333333;
  }
}
header.module .subheadline.size-24 {
  font-size: 1.5rem;
}
header.module .subheadline.size-16 {
  font-size: 1rem;
}
header.module .preheadline {
  font-weight: 600;
  color: var(--radiant-flame);
  text-transform: uppercase;
}
header.module .preheadline + * {
  margin-top: 0.5rem;
}

.bg-dark header.module .preheadline {
  color: var(--white);
}

.module.text-editor &gt; * {
  margin-bottom: 1.25rem;
}
.module.text-editor &gt; *:last-child {
  margin-bottom: 0;
}
.module.text-editor h1,
.module.text-editor h2,
.module.text-editor h3,
.module.text-editor h4,
.module.text-editor h5,
.module.text-editor h6 {
  margin-bottom: 0.625rem;
}
* + .module.text-editor h1,
* + .module.text-editor h2,
* + .module.text-editor h3,
* + .module.text-editor h4,
* + .module.text-editor h5,
* + .module.text-editor h6 {
  margin-top: 2.5rem;
}
.module.text-editor h1 + h1, .module.text-editor h1 + h2, .module.text-editor h1 + h3, .module.text-editor h1 + h4, .module.text-editor h1 + h5, .module.text-editor h1 + h6,
.module.text-editor h2 + h1,
.module.text-editor h2 + h2,
.module.text-editor h2 + h3,
.module.text-editor h2 + h4,
.module.text-editor h2 + h5,
.module.text-editor h2 + h6,
.module.text-editor h3 + h1,
.module.text-editor h3 + h2,
.module.text-editor h3 + h3,
.module.text-editor h3 + h4,
.module.text-editor h3 + h5,
.module.text-editor h3 + h6,
.module.text-editor h4 + h1,
.module.text-editor h4 + h2,
.module.text-editor h4 + h3,
.module.text-editor h4 + h4,
.module.text-editor h4 + h5,
.module.text-editor h4 + h6,
.module.text-editor h5 + h1,
.module.text-editor h5 + h2,
.module.text-editor h5 + h3,
.module.text-editor h5 + h4,
.module.text-editor h5 + h5,
.module.text-editor h5 + h6,
.module.text-editor h6 + h1,
.module.text-editor h6 + h2,
.module.text-editor h6 + h3,
.module.text-editor h6 + h4,
.module.text-editor h6 + h5,
.module.text-editor h6 + h6 {
  margin-top: 0.625rem;
}
.module.text-editor * + .pdf-viewer,
.module.text-editor * + .pdf-button {
  margin-top: 2rem;
}
.module.text-editor .pdf-viewer + *,
.module.text-editor .pdf-button + * {
  margin-top: 2rem;
}
.module.text-editor .pdf-viewer + .download-button,
.module.text-editor .pdf-button + .download-button {
  margin-top: 0;
  margin-bottom: 0;
}
.module.text-editor .pdf-viewer + .download-button + *,
.module.text-editor .pdf-button + .download-button + * {
  margin-top: 2rem;
}
.module.text-editor p.first-element &gt; img.alignnone, .module.text-editor p.first-element &gt; img.aligncenter, .module.text-editor p.first-element &gt; img.full-width-img {
  margin-top: 0;
}
.module.text-editor img.alignnone, .module.text-editor img.aligncenter {
  margin-top: 2.5rem;
  margin-bottom: 2.5rem;
}
.module.text-editor img.full-width-img {
  width: 100vw;
  max-width: 73.75rem;
  left: 50%;
  position: relative;
  transform: translateX(-50%);
  float: none;
  margin: 2.5rem 0;
}
@media print, screen and (min-width: 64em) {
  .module.text-editor img.full-width-img {
    margin: 5rem 0;
  }
}
@media screen and (min-width: 76.875em) {
  .module.text-editor img.full-width-img {
    margin-left: -12.8205128205%;
  }
}
.module.text-editor &gt; .first-element {
  margin-top: 0 !important;
}
.module.text-editor p &gt; br + .button {
  margin-top: 1.25rem;
}
.module.text-editor figure {
  width: 100% !important;
}
.module.text-editor blockquote {
  margin: 2.5rem 0;
  padding-left: 6.25rem;
  position: relative;
  font-size: 1.5rem;
  line-height: 1.3333333333;
  min-height: 3.75rem;
}
.module.text-editor blockquote + .spacer {
  display: none;
}
.module.text-editor blockquote:before {
  content: "";
  display: block;
  width: 5rem;
  height: 5rem;
  background: url("data:image/svg+xml;charset=utf8,%3Csvg width='80' height='80' viewBox='0 0 80 80' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M24.7573 63C20.2265 63 16.6019 61.3642 13.8835 58.0926C11.2945 54.6901 10 50.3062 10 44.9407C10 37.6123 11.9417 31.0037 15.8252 25.1148C19.8382 19.0951 25.9223 14.0568 34.0777 10L36.2136 13.1407C32.3301 15.4963 28.7702 18.8333 25.534 23.1518C22.4272 27.3395 20.8738 31.5926 20.8738 35.9111C20.8738 37.0889 21.1974 38.0704 21.8447 38.8556C22.4919 39.5099 23.4628 39.837 24.7573 39.837C27.9935 39.837 30.712 41.0148 32.9126 43.3704C35.2427 45.5951 36.4078 48.3432 36.4078 51.6148C36.4078 54.8864 35.2427 57.6346 32.9126 59.8593C30.712 61.9531 27.9935 63 24.7573 63ZM58.3495 63C53.8188 63 50.1942 61.3642 47.4757 58.0926C44.8867 54.6901 43.5922 50.3062 43.5922 44.9407C43.5922 37.6123 45.534 31.0037 49.4175 25.1148C53.4304 19.0951 59.5146 14.0568 67.6699 10L69.8058 13.1407C65.9223 15.4963 62.3625 18.8333 59.1262 23.1518C56.0194 27.3395 54.466 31.5926 54.466 35.9111C54.466 37.0889 54.7896 38.0704 55.4369 38.8556C56.0841 39.5099 57.055 39.837 58.3495 39.837C61.5858 39.837 64.3042 41.0148 66.5048 43.3704C68.8349 45.5951 70 48.3432 70 51.6148C70 54.8864 68.8349 57.6346 66.5048 59.8593C64.3042 61.9531 61.5858 63 58.3495 63Z' fill='%231b3e51'/%3E%3C/svg%3E") no-repeat center center;
  position: absolute;
  left: 0;
  top: 0.25rem;
}
.module.text-editor .border {
  font-weight: 500;
  line-height: 1.3125;
  font-weight: 300;
  position: relative;
  padding-left: 1.25rem;
  margin: 2.5rem 0;
}
.module.text-editor .border {
  font-size: 2rem;
}
@media screen and (min-width: 768px) {
  .module.text-editor .border {
    font-size: calc(32px + 4 * (100vw - 768px) / 256);
  }
}
@media screen and (min-width: 1024px) {
  .module.text-editor .border {
    font-size: 2.25rem;
  }
}
@media print, screen and (min-width: 48em) {
  .module.text-editor .border {
    line-height: 125%;
  }
}
@media print, screen and (min-width: 64em) {
  .module.text-editor .border {
    margin: 5rem 0;
  }
}
@media print, screen and (min-width: 64em) {
  .module.text-editor .border {
    padding-left: 0;
  }
}
.module.text-editor .border:before {
  content: "";
  display: block;
  width: 0.25rem;
  height: 100%;
  background-color: var(--dark-matter);
  position: absolute;
  left: 0;
}
@media print, screen and (min-width: 64em) {
  .module.text-editor .border:before {
    left: -1.25rem;
  }
}
.module.text-editor table {
  width: 100%;
}
.module.text-editor table td, .module.text-editor table th {
  padding: 0.625rem;
}
.module.text-editor table tr:first-child td, .module.text-editor table tr:first-child th {
  background: rgba(27, 62, 81, 0.0509803922);
}
.module.text-editor .entry-content-asset {
  position: relative;
  overflow: hidden;
}
.module.text-editor .entry-content-asset:before {
  content: "";
  display: block;
  padding-bottom: 56.25%;
}
.module.text-editor .entry-content-asset iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.module.text-editor ul li::marker,
.module.text-editor ul li:before {
  color: var(--dark-matter);
}
.module.text-editor .jitterbit-blog.first-element .intro,
.module.text-editor .blog-intro .intro {
  display: none;
}

.bg-dark .text-editor blockquote:before {
  content: "";
  display: block;
  width: 5rem;
  height: 5rem;
  background: url("data:image/svg+xml;charset=utf8,%3Csvg width='80' height='80' viewBox='0 0 80 80' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M24.7573 63C20.2265 63 16.6019 61.3642 13.8835 58.0926C11.2945 54.6901 10 50.3062 10 44.9407C10 37.6123 11.9417 31.0037 15.8252 25.1148C19.8382 19.0951 25.9223 14.0568 34.0777 10L36.2136 13.1407C32.3301 15.4963 28.7702 18.8333 25.534 23.1518C22.4272 27.3395 20.8738 31.5926 20.8738 35.9111C20.8738 37.0889 21.1974 38.0704 21.8447 38.8556C22.4919 39.5099 23.4628 39.837 24.7573 39.837C27.9935 39.837 30.712 41.0148 32.9126 43.3704C35.2427 45.5951 36.4078 48.3432 36.4078 51.6148C36.4078 54.8864 35.2427 57.6346 32.9126 59.8593C30.712 61.9531 27.9935 63 24.7573 63ZM58.3495 63C53.8188 63 50.1942 61.3642 47.4757 58.0926C44.8867 54.6901 43.5922 50.3062 43.5922 44.9407C43.5922 37.6123 45.534 31.0037 49.4175 25.1148C53.4304 19.0951 59.5146 14.0568 67.6699 10L69.8058 13.1407C65.9223 15.4963 62.3625 18.8333 59.1262 23.1518C56.0194 27.3395 54.466 31.5926 54.466 35.9111C54.466 37.0889 54.7896 38.0704 55.4369 38.8556C56.0841 39.5099 57.055 39.837 58.3495 39.837C61.5858 39.837 64.3042 41.0148 66.5048 43.3704C68.8349 45.5951 70 48.3432 70 51.6148C70 54.8864 68.8349 57.6346 66.5048 59.8593C64.3042 61.9531 61.5858 63 58.3495 63Z' fill='%237c97a2'/%3E%3C/svg%3E") no-repeat center center;
  position: absolute;
  left: 0;
  top: 0.25rem;
}
.bg-dark .text-editor ul li::marker,
.bg-dark .text-editor ul li:before {
  color: var(--white);
}

.module.buttons {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.625rem;
}
.module.buttons .button, .module.buttons .menu li.button &gt; a, .menu .module.buttons li.button &gt; a {
  margin: 0;
}
.module.buttons.align-center {
  justify-content: center;
}

.module.video {
  width: 100%;
}
.module.video video {
  width: 100%;
  max-height: 100%;
  display: block;
}
.module.video .responsive-embed,
.module.video .flex-video {
  margin-bottom: 0;
  background: none;
  border: 0;
  box-shadow: 0 3px 15px 10px rgba(255, 255, 255, 0.18);
}
.module.video .video-wrapper {
  position: relative;
  border-radius: 2px;
}
.module.video .video-wrapper:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.1), rgba(28, 28, 28, 0.72));
  z-index: 1;
}
.module.video .video-wrapper.playing .play-button {
  display: none;
}
.module.video .play-button {
  display: block;
  width: 3.125rem;
  height: 3.125rem;
  background: url(../images/play-button.svg) no-repeat;
  background-size: contain;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  cursor: pointer;
  z-index: 2;
}
@media print, screen and (min-width: 48em) {
  .module.video .play-button {
    width: 5.9375rem;
    height: 5.9375rem;
  }
}

picture.module {
  display: block;
}
picture.module img {
  display: block;
  border-radius: 0.5rem;
}
picture.module.has-shadow-bottom-right {
  margin-right: -10rem;
  margin-bottom: -1.75rem;
}
@media screen and (max-width: 77.5em) {
  picture.module.has-shadow-bottom-right {
    margin-right: -5rem;
    margin-bottom: -1.75rem;
  }
}
.template-free-form picture.module img {
  margin-left: auto;
  margin-right: auto;
}

.module.html .mktoForm input[type=text],
.module.html .mktoForm input[type=url],
.module.html .mktoForm input[type=email],
.module.html .mktoForm input[type=tel],
.module.html .mktoForm input[type=number],
.module.html .mktoForm input[type=date],
.module.html .mktoForm textarea.mktoField,
.module.html .mktoForm select.mktoField,
.module.html input:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=button]):not([type=image]):not([type=file]),
.module.html select,
.module.html textarea,
.module.form .mktoForm input[type=text],
.module.form .mktoForm input[type=url],
.module.form .mktoForm input[type=email],
.module.form .mktoForm input[type=tel],
.module.form .mktoForm input[type=number],
.module.form .mktoForm input[type=date],
.module.form .mktoForm textarea.mktoField,
.module.form .mktoForm select.mktoField,
.module.form input:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=button]):not([type=image]):not([type=file]),
.module.form select,
.module.form textarea {
  width: 100%;
  box-shadow: none;
  position: relative;
  margin: 0;
  padding: 0.625rem 1.25rem;
  height: 3.125rem;
  border: 1px solid var(--lunar-silver);
  font-size: 1rem;
  margin-bottom: 1.25rem;
  background: var(--white);
  border-radius: 0.5rem;
  color: var(--text-color);
}
.module.html .mktoForm input[type=text]:-ms-input-placeholder, .module.html .mktoForm input[type=url]:-ms-input-placeholder, .module.html .mktoForm input[type=email]:-ms-input-placeholder, .module.html .mktoForm input[type=tel]:-ms-input-placeholder, .module.html .mktoForm input[type=number]:-ms-input-placeholder, .module.html .mktoForm input[type=date]:-ms-input-placeholder, .module.html .mktoForm textarea.mktoField:-ms-input-placeholder, .module.html .mktoForm select.mktoField:-ms-input-placeholder, .module.html input:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=button]):not([type=image]):not([type=file]):-ms-input-placeholder, .module.html select:-ms-input-placeholder, .module.html textarea:-ms-input-placeholder, .module.form .mktoForm input[type=text]:-ms-input-placeholder, .module.form .mktoForm input[type=url]:-ms-input-placeholder, .module.form .mktoForm input[type=email]:-ms-input-placeholder, .module.form .mktoForm input[type=tel]:-ms-input-placeholder, .module.form .mktoForm input[type=number]:-ms-input-placeholder, .module.form .mktoForm input[type=date]:-ms-input-placeholder, .module.form .mktoForm textarea.mktoField:-ms-input-placeholder, .module.form .mktoForm select.mktoField:-ms-input-placeholder, .module.form input:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=button]):not([type=image]):not([type=file]):-ms-input-placeholder, .module.form select:-ms-input-placeholder, .module.form textarea:-ms-input-placeholder {
  color: inherit;
}
.module.html .mktoForm input[type=text]::placeholder,
.module.html .mktoForm input[type=url]::placeholder,
.module.html .mktoForm input[type=email]::placeholder,
.module.html .mktoForm input[type=tel]::placeholder,
.module.html .mktoForm input[type=number]::placeholder,
.module.html .mktoForm input[type=date]::placeholder,
.module.html .mktoForm textarea.mktoField::placeholder,
.module.html .mktoForm select.mktoField::placeholder,
.module.html input:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=button]):not([type=image]):not([type=file])::placeholder,
.module.html select::placeholder,
.module.html textarea::placeholder,
.module.form .mktoForm input[type=text]::placeholder,
.module.form .mktoForm input[type=url]::placeholder,
.module.form .mktoForm input[type=email]::placeholder,
.module.form .mktoForm input[type=tel]::placeholder,
.module.form .mktoForm input[type=number]::placeholder,
.module.form .mktoForm input[type=date]::placeholder,
.module.form .mktoForm textarea.mktoField::placeholder,
.module.form .mktoForm select.mktoField::placeholder,
.module.form input:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=button]):not([type=image]):not([type=file])::placeholder,
.module.form select::placeholder,
.module.form textarea::placeholder {
  color: inherit;
}
.module.html .mktoForm input[type=text]:focus,
.module.html .mktoForm input[type=url]:focus,
.module.html .mktoForm input[type=email]:focus,
.module.html .mktoForm input[type=tel]:focus,
.module.html .mktoForm input[type=number]:focus,
.module.html .mktoForm input[type=date]:focus,
.module.html .mktoForm textarea.mktoField:focus,
.module.html .mktoForm select.mktoField:focus,
.module.html input:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=button]):not([type=image]):not([type=file]):focus,
.module.html select:focus,
.module.html textarea:focus,
.module.form .mktoForm input[type=text]:focus,
.module.form .mktoForm input[type=url]:focus,
.module.form .mktoForm input[type=email]:focus,
.module.form .mktoForm input[type=tel]:focus,
.module.form .mktoForm input[type=number]:focus,
.module.form .mktoForm input[type=date]:focus,
.module.form .mktoForm textarea.mktoField:focus,
.module.form .mktoForm select.mktoField:focus,
.module.form input:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=button]):not([type=image]):not([type=file]):focus,
.module.form select:focus,
.module.form textarea:focus {
  border: 1px solid rgba(138, 141, 143, 0.55);
}
.module.html select,
.module.form select {
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  outline: none;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' x='0px' y='0px' viewBox='0 0 18.6 9.7' style='enable-background:new 0 0 18.6 9.7;' xml:space='preserve'%3E%3Cpath d='M9.6,9.7c-0.3,0-0.7-0.1-1-0.3L0.5,2.7c-0.6-0.5-0.7-1.5-0.2-2.1c0.5-0.6,1.5-0.7,2.1-0.2l7.1,5.9l6.5-5.9 c0.6-0.6,1.6-0.5,2.1,0.1c0.6,0.6,0.5,1.6-0.1,2.1l-7.5,6.7C10.3,9.6,10,9.7,9.6,9.7z'/%3E%3C/svg%3E") !important;
  background-origin: content-box;
  background-position: 95% center !important;
  background-repeat: no-repeat !important;
  background-size: 9px 6px !important;
  padding-right: 1rem;
}
.module.html .mktoForm textarea.mktoField,
.module.html textarea,
.module.form .mktoForm textarea.mktoField,
.module.form textarea {
  height: auto;
}
.module.html .mktoForm,
.module.form .mktoForm {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  width: 100% !important;
  padding: 1.875rem;
  font-size: inherit !important;
  color: inherit !important;
  font-family: inherit !important;
  border-radius: 1.25rem;
  background-color: var(--dark-matter);
}
.module.html .mktoForm *,
.module.form .mktoForm * {
  padding: 0;
}
.module.html .mktoForm .mktoFormRow,
.module.form .mktoForm .mktoFormRow {
  width: 100%;
  display: flex;
  column-gap: 20px;
}
@media print, screen and (max-width: 25.93625em) {
  .module.html .mktoForm .mktoFormRow,
  .module.form .mktoForm .mktoFormRow {
    flex-wrap: wrap;
  }
}
.module.html .mktoForm .mktoFormRow .mktoFormCol,
.module.form .mktoForm .mktoFormRow .mktoFormCol {
  width: 100%;
}
.module.html .mktoForm .mktoFormCol,
.module.form .mktoForm .mktoFormCol {
  float: none;
  min-height: initial;
  margin: 0 !important;
}
.module.html .mktoForm .mktoOffset,
.module.html .mktoForm .mktoClear,
.module.html .mktoForm .mktoLabel,
.module.html .mktoForm .mktoGutter,
.module.html .mktoForm .mktoPlaceholder,
.module.form .mktoForm .mktoOffset,
.module.form .mktoForm .mktoClear,
.module.form .mktoForm .mktoLabel,
.module.form .mktoForm .mktoGutter,
.module.form .mktoForm .mktoPlaceholder {
  display: none;
}
.module.html .mktoForm .mktoFieldWrap,
.module.html .mktoForm .mktoField,
.module.form .mktoForm .mktoFieldWrap,
.module.form .mktoForm .mktoField {
  float: none;
}
.module.html .mktoForm .mktoField:not([type=checkbox]:not([type=radio])),
.module.form .mktoForm .mktoField:not([type=checkbox]:not([type=radio])) {
  width: 100% !important;
}
.module.html .mktoForm .mktoRadioList,
.module.html .mktoForm .mktoCheckboxList,
.module.form .mktoForm .mktoRadioList,
.module.form .mktoForm .mktoCheckboxList {
  float: none;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.625rem;
  width: 100% !important;
}
.module.html .mktoForm .mktoRadioList [type=checkbox],
.module.html .mktoForm .mktoRadioList [type=radio],
.module.html .mktoForm .mktoCheckboxList [type=checkbox],
.module.html .mktoForm .mktoCheckboxList [type=radio],
.module.form .mktoForm .mktoRadioList [type=checkbox],
.module.form .mktoForm .mktoRadioList [type=radio],
.module.form .mktoForm .mktoCheckboxList [type=checkbox],
.module.form .mktoForm .mktoCheckboxList [type=radio] {
  width: 1rem;
}
.module.html .mktoForm .mktoRadioList label,
.module.html .mktoForm .mktoCheckboxList label,
.module.form .mktoForm .mktoRadioList label,
.module.form .mktoForm .mktoCheckboxList label {
  width: calc(100% - 1.625rem);
  display: block;
  margin: 0;
  min-height: initial;
  color: var(--white);
}
.module.html .mktoForm .mktoRadioList label a,
.module.html .mktoForm .mktoCheckboxList label a,
.module.form .mktoForm .mktoRadioList label a,
.module.form .mktoForm .mktoCheckboxList label a {
  color: var(--icy-blue) !important;
  font-weight: 700;
  text-decoration: underline;
}
.module.html .mktoForm .mktoRadioList label a:hover,
.module.html .mktoForm .mktoCheckboxList label a:hover,
.module.form .mktoForm .mktoRadioList label a:hover,
.module.form .mktoForm .mktoCheckboxList label a:hover {
  text-decoration: none;
}
.module.html .mktoForm .landing-form-heading,
.module.form .mktoForm .landing-form-heading {
  margin-bottom: 1.25rem;
}
.module.html .mktoForm .mktoLogicalField,
.module.form .mktoForm .mktoLogicalField {
  margin-bottom: 1.25rem;
}
.module.html .mktoForm .mktoButtonRow,
.module.form .mktoForm .mktoButtonRow {
  display: flex;
  margin-top: 0;
}
.module.html .mktoForm .mktoButtonWrap.mktoGlow,
.module.html .mktoForm .mktoButtonWrap.mktoSimple,
.module.form .mktoForm .mktoButtonWrap.mktoGlow,
.module.form .mktoForm .mktoButtonWrap.mktoSimple {
  margin-left: 0 !important;
}
.module.html .mktoForm .mktoButtonWrap.mktoGlow .mktoButton,
.module.html .mktoForm .mktoButtonWrap.mktoSimple .mktoButton,
.module.form .mktoForm .mktoButtonWrap.mktoGlow .mktoButton,
.module.form .mktoForm .mktoButtonWrap.mktoSimple .mktoButton {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--radiant-flame);
  color: var(--white);
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  -webkit-user-select: none;
      -ms-user-select: none;
          user-select: none;
  border: 0;
  transition: color 0.3s, background 0.3s, border-color 0.3s, margin 0.3s;
  font-size: 1rem;
  line-height: 1.6;
  padding: 0.8125rem 1.75rem 0.8125rem 1.25rem;
  border-radius: 3.125rem;
  height: 3.125rem;
  font-weight: 600;
  box-shadow: none;
}
.module.html .mktoForm .mktoButtonWrap.mktoGlow .mktoButton::after,
.module.html .mktoForm .mktoButtonWrap.mktoSimple .mktoButton::after,
.module.form .mktoForm .mktoButtonWrap.mktoGlow .mktoButton::after,
.module.form .mktoForm .mktoButtonWrap.mktoSimple .mktoButton::after {
  content: "";
  width: 0.875rem;
  height: 1rem;
  margin-left: 0.5rem;
  transition: margin 0.3s, right 0.3s, left 0.3s, background 0.3s;
  left: 0;
  position: relative;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg width='15' height='13' viewBox='0 0 15 13' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M13.6875 7.71875L8.6875 12.7188C8.5 12.9062 8.25 13 8 13C7.71875 13 7.46875 12.9062 7.28125 12.7188C6.875 12.3438 6.875 11.6875 7.28125 11.3125L10.5625 8H1C0.4375 8 0 7.5625 0 7C0 6.46875 0.4375 6 1 6H10.5625L7.28125 2.71875C6.875 2.34375 6.875 1.6875 7.28125 1.3125C7.65625 0.90625 8.3125 0.90625 8.6875 1.3125L13.6875 6.3125C14.0938 6.6875 14.0938 7.34375 13.6875 7.71875Z' fill='%23fff'/%3E%3C/svg%3E");
}
.module.html .mktoForm .mktoButtonWrap.mktoGlow .mktoButton:hover,
.module.html .mktoForm .mktoButtonWrap.mktoSimple .mktoButton:hover,
.module.form .mktoForm .mktoButtonWrap.mktoGlow .mktoButton:hover,
.module.form .mktoForm .mktoButtonWrap.mktoSimple .mktoButton:hover {
  color: var(--white);
}
.module.html .mktoForm .mktoButtonWrap.mktoGlow .mktoButton:hover::after,
.module.html .mktoForm .mktoButtonWrap.mktoSimple .mktoButton:hover::after,
.module.form .mktoForm .mktoButtonWrap.mktoGlow .mktoButton:hover::after,
.module.form .mktoForm .mktoButtonWrap.mktoSimple .mktoButton:hover::after {
  left: 0.25rem;
}
.module.html .mktoForm .mktoError,
.module.form .mktoForm .mktoError {
  bottom: auto !important;
  left: 0;
  right: auto !important;
  top: calc(100% - 1.3rem);
}
.module.html .mktoForm .mktoError .mktoErrorMsg,
.module.form .mktoForm .mktoError .mktoErrorMsg {
  background: red;
  box-shadow: none;
  border: 0;
  color: var(--white);
  text-shadow: none;
  font-size: 0.875rem;
  font-weight: 400;
}
.module.html .mktoForm .mktoError .mktoErrorArrow,
.module.form .mktoForm .mktoError .mktoErrorArrow {
  background: red;
  border: 0;
}

#marketoFormAnchor {
  scroll-margin-top: 125px;
}

h2.marketoFormTitle {
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 125%;
  text-align: center;
  padding: 0 50px 25px 50px;
}

.mktoCaptchaDisclaimer {
  display: none;
}

section.hero-unit .hero-unit-html .module.html .mktoForm .mktoButtonWrap.mktoGlow .mktoButton,
section.hero-unit .hero-unit-html .module.html .mktoForm .mktoButtonWrap.mktoSimple .mktoButton,
section.hero-unit .hero-unit-html .module.form .mktoForm .mktoButtonWrap.mktoGlow .mktoButton,
section.hero-unit .hero-unit-html .module.form .mktoForm .mktoButtonWrap.mktoSimple .mktoButton {
  background: var(--radiant-flame);
  color: var(--white);
}
section.hero-unit .hero-unit-html .module.html .mktoForm .mktoButtonWrap.mktoGlow .mktoButton:after,
section.hero-unit .hero-unit-html .module.html .mktoForm .mktoButtonWrap.mktoSimple .mktoButton:after,
section.hero-unit .hero-unit-html .module.form .mktoForm .mktoButtonWrap.mktoGlow .mktoButton:after,
section.hero-unit .hero-unit-html .module.form .mktoForm .mktoButtonWrap.mktoSimple .mktoButton:after {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg width='15' height='13' viewBox='0 0 15 13' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M13.6875 7.71875L8.6875 12.7188C8.5 12.9062 8.25 13 8 13C7.71875 13 7.46875 12.9062 7.28125 12.7188C6.875 12.3438 6.875 11.6875 7.28125 11.3125L10.5625 8H1C0.4375 8 0 7.5625 0 7C0 6.46875 0.4375 6 1 6H10.5625L7.28125 2.71875C6.875 2.34375 6.875 1.6875 7.28125 1.3125C7.65625 0.90625 8.3125 0.90625 8.6875 1.3125L13.6875 6.3125C14.0938 6.6875 14.0938 7.34375 13.6875 7.71875Z' fill='%23fff'/%3E%3C/svg%3E");
}

.module.stats.align-center .grid-x {
  align-items: center;
  justify-content: center;
}
.module.stats .description {
  font-weight: 400;
  font-size: 0.75rem;
  line-height: 1.1666666667;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  justify-content: center;
  font-size: 1rem;
  max-width: 4.6875rem;
  max-width: 8rem;
}
.module.stats .inner {
  position: relative;
  padding: 0.75rem 2rem;
}
.module.stats .inner h3 {
  font-weight: 700;
  font-size: 4rem;
  color: var(--slate-mist);
}
@media screen and (max-width: 600px) {
  .module.stats .inner h3 {
    font-size: 2.5rem;
  }
}
.module.stats .grid-x {
  margin: -0.625rem -1.25rem;
}
.module.stats .stats-grid-4-2 {
  display: grid;
  grid-template-columns: 25% 25% 25% 25%;
}
@media print, screen and (max-width: 61.74875em) {
  .module.stats .stats-grid-4-2 {
    grid-template-columns: 50% 50%;
  }
}
.module.stats .cell {
  margin: 0.625rem 1.25rem;
}
.module.stats .bg-image {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
}
.module.stats .bg-image img,
.module.stats .bg-image svg {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.module.stats svg path {
  fill: var(--white);
}

section.content-block:not(.bg-dark) .module.stats svg path {
  fill: var(--black);
}

/* STATS */
section.content-block.template-free-form.stats1 {
  margin-top: 0;
  padding: 2.5rem 0;
}
section.content-block.template-free-form.stats1.tm-80 {
  margin-top: 5rem;
}

section.content-block.template-free-form .align-center.has-1-cols .module:not(.align-right):not(.align-left):not(.align-center) .grid-x {
  align-items: flex-start !important;
}

/* END STATS */
.module.accordion {
  background: none;
}
.module.accordion .accordion-item {
  padding: 0 0.625rem 0 0.625rem;
  background: none;
  border-bottom: 2px solid var(--icy-blue);
  transition: padding 0.3s;
}
.module.accordion .accordion-item:last-child {
  border-bottom: none;
}
.module.accordion .accordion-item:not(.is-active).accordion-item.accordion-title {
  color: var(--dark-matter);
}
.module.accordion .accordion-item .accordion-title {
  padding: 1.25rem 1.875rem 1.25rem 0;
  background: none;
  border: none;
  position: relative;
  display: block;
  transition: padding 0.3s;
  color: inherit;
}
.module.accordion .accordion-item .accordion-title:hover {
  color: rgb(39.75, 91.2777777778, 119.25);
  text-decoration: none;
}
.module.accordion .accordion-item .accordion-title h3 {
  font-weight: 500;
}
.module.accordion .accordion-item .accordion-title::before {
  display: none;
}
.module.accordion .accordion-item .accordion-title::after {
  content: "";
  display: block;
  position: absolute;
  width: 1.25rem;
  height: 1.25rem;
  right: 0;
  top: 50%;
  transform: translate(0, -50%);
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg width='20' height='20' viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M16.5 10C16.5 10.5625 16.0312 11.0312 15.5 11.0312H11V15.5312C11 16.0625 10.5312 16.5 10 16.5C9.4375 16.5 9 16.0625 9 15.5312V11.0312H4.5C3.9375 11.0312 3.5 10.5625 3.5 10C3.5 9.46875 3.9375 9.03125 4.5 9.03125H9V4.53125C9 3.96875 9.4375 3.5 10 3.5C10.5312 3.5 11 3.96875 11 4.53125V9.03125H15.5C16.0312 9 16.5 9.46875 16.5 10Z' fill='%231b3e51'/%3E%3C/svg%3E");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}
.module.accordion .accordion-item ul {
  padding: 0;
  margin: 0;
  list-style: none;
}
.module.accordion .accordion-item ul + * {
  margin-top: 0.625rem;
}
.module.accordion .accordion-item ul li {
  position: relative;
  padding-left: 1.5625rem;
}
.module.accordion .accordion-item ul li + li {
  margin-top: 0.125rem;
}
.module.accordion .accordion-item ul li::before {
  content: "";
  display: block;
  position: absolute;
  left: 0.625rem;
  top: 0.625rem;
  width: 4px;
  height: 4px;
  border-radius: 100%;
  background: var(--text-color);
}
.module.accordion .accordion-item * + ul {
  margin-top: 0.625rem;
}
.module.accordion .accordion-item p {
  max-width: 32.5rem;
}
.module.accordion .accordion-item * + .button, .module.accordion .accordion-item .menu li.button &gt; * + a, .menu .module.accordion .accordion-item li.button &gt; * + a {
  margin-top: 0.625rem;
}
.module.accordion .accordion-item .button, .module.accordion .accordion-item .menu li.button &gt; a, .menu .module.accordion .accordion-item li.button &gt; a {
  justify-content: flex-start;
}
.module.accordion .accordion-item.is-active {
  padding-bottom: 1.25rem;
}
.module.accordion .accordion-item.is-active .accordion-title {
  padding-bottom: 0.625rem;
}
.module.accordion .accordion-item.is-active .accordion-title::after {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg width='20' height='20' viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M15.5 11H4.5C3.9375 11 3.5 10.5625 3.5 10C3.5 9.46875 3.9375 9 4.5 9H15.5C16.0312 9 16.5 9.46875 16.5 10C16.5 10.5625 16.0312 11 15.5 11Z' fill='%230F0225'/%3E%3C/svg%3E");
}
.module.accordion .accordion-item .accordion-content {
  background: none;
  border: none;
  padding: 0;
}

.bg-dark .module.accordion .accordion-item {
  border-bottom: 2px solid var(--icy-blue);
}
.bg-dark .module.accordion .accordion-item .accordion-title::after {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg width='20' height='20' viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M16.5 10C16.5 10.5625 16.0312 11.0312 15.5 11.0312H11V15.5312C11 16.0625 10.5312 16.5 10 16.5C9.4375 16.5 9 16.0625 9 15.5312V11.0312H4.5C3.9375 11.0312 3.5 10.5625 3.5 10C3.5 9.46875 3.9375 9.03125 4.5 9.03125H9V4.53125C9 3.96875 9.4375 3.5 10 3.5C10.5312 3.5 11 3.96875 11 4.53125V9.03125H15.5C16.0312 9 16.5 9.46875 16.5 10Z' fill='%23fff'/%3E%3C/svg%3E");
}
.bg-dark .module.accordion .accordion-item ul li::before {
  background: var(--white);
}
.bg-dark .module.accordion .accordion-item .accordion-content {
  color: var(--white);
}
.bg-dark .module.accordion .accordion-item.is-active .accordion-title::after {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg width='20' height='20' viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M15.5 11H4.5C3.9375 11 3.5 10.5625 3.5 10C3.5 9.46875 3.9375 9 4.5 9H15.5C16.0312 9 16.5 9.46875 16.5 10C16.5 10.5625 16.0312 11 15.5 11Z' fill='%23fff'/%3E%3C/svg%3E");
}

.module.icon-list .item {
  display: flex;
  align-items: flex-start;
}
.module.icon-list .item .icon {
  margin-right: 1.25rem;
  min-width: 3rem;
  min-height: 3rem;
}
.module.icon-list .item .icon img,
.module.icon-list .item .icon svg {
  width: -moz-fit-content;
  width: fit-content;
  height: -moz-fit-content;
  height: fit-content;
  object-fit: contain;
}
.module.icon-list .item + .item {
  margin-top: 1.25rem;
}
.module.icon-list .title + * {
  margin-top: 0.625rem;
}

.module.gallery .wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 3.125rem 1.25rem;
}
.module.gallery .wrapper .item {
  width: calc(33% - 20px);
}
@media print, screen and (max-width: 61.74875em) {
  .module.gallery .wrapper .item {
    width: calc(50% - 10px);
  }
}
@media print, screen and (max-width: 25.93625em) {
  .module.gallery .wrapper .item {
    width: 100%;
  }
}

header.template-header {
  margin-bottom: 1.8rem;
}
@media print, screen and (min-width: 48em) {
  header.template-header {
    margin-bottom: 2rem;
  }
}
@media print, screen and (min-width: 64em) {
  header.template-header {
    margin-bottom: 2.5rem;
  }
}
header.template-header.size-large .headline {
  font-weight: 600;
  line-height: 1.3333333333;
}
header.template-header.size-large .headline {
  font-size: 2.25rem;
}
@media screen and (min-width: 768px) {
  header.template-header.size-large .headline {
    font-size: calc(36px + 12 * (100vw - 768px) / 256);
  }
}
@media screen and (min-width: 1024px) {
  header.template-header.size-large .headline {
    font-size: 3rem;
  }
}
@media print, screen and (min-width: 48em) {
  header.template-header.size-large .headline {
    line-height: 1.2083333333;
  }
}
header.template-header.align-center {
  text-align: center;
}
header.template-header .headline span {
  display: block;
}
header.template-header .preheadline {
  font-weight: 600;
  color: var(--radiant-flame);
  text-transform: uppercase;
}
header.template-header .preheadline + * {
  margin-top: 0.25rem;
}
header.template-header .subheadline {
  font-weight: 300;
  font-size: 1rem;
  line-height: 1.5;
}

section.content-block:not(.bg-dark) .template-header .subheadline {
  color: var(--dark-matter);
}

@media print, screen and (min-width: 48em) {
  .template-header-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 1.25rem;
    column-gap: 5rem;
  }
  .template-header-wrapper.align-center {
    display: block;
  }
  .template-header-wrapper.align-center .template-header {
    text-align: center;
  }
}
.template-header-wrapper .header-button {
  margin-bottom: 1.8rem;
}
@media print, screen and (min-width: 48em) {
  .template-header-wrapper .header-button {
    margin-bottom: 2rem;
  }
}
@media print, screen and (min-width: 64em) {
  .template-header-wrapper .header-button {
    margin-bottom: 2.5rem;
  }
}
.template-header-wrapper .header-button .button, .template-header-wrapper .header-button .menu li.button &gt; a, .menu .template-header-wrapper .header-button li.button &gt; a {
  white-space: nowrap;
}

@media print, screen and (min-width: 64em) {
  .template-split-content .grid-container {
    max-width: 61.25rem;
  }
}
.template-split-content .rows {
  display: flex;
  flex-direction: column;
  row-gap: 2.5rem;
}
@media print, screen and (min-width: 64em) {
  .template-split-content .rows {
    row-gap: 5rem;
  }
}
.template-split-content header.module .headline {
  font-weight: 600;
  font-size: 1.5rem;
  line-height: normal;
}
.template-split-content header.module &gt; img {
  width: 47px;
  height: auto;
}
@media print, screen and (min-width: 64em) {
  .template-split-content .rows .grid-x {
    margin: -0.625rem -1.875rem;
  }
}
.template-split-content .rows header.module + .module {
  margin-top: 0.375rem;
}
@media print, screen and (min-width: 64em) {
  .template-split-content .rows .cell {
    margin: 0.625rem 1.875rem;
    width: calc(50% - 60px);
  }
}
@media print, screen and (min-width: 48em) {
  .template-split-content .row:nth-child(even) .split-content-card {
    flex-direction: row-reverse;
  }
  .template-split-content.reversed .row:nth-child(even) .split-content-card {
    flex-direction: row;
  }
  .template-split-content.reversed .row:nth-child(odd) .split-content-card {
    flex-direction: row-reverse;
  }
}
.template-split-content .split-content-card {
  align-items: center;
}
.template-split-content .split-content-card .media img {
  border-radius: 0.5rem;
  width: auto;
  margin-left: auto;
  margin-right: auto;
}
@media print, screen and (max-width: 25.93625em) {
  .template-split-content .split-content-card .content .inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}
.template-split-content .split-content-card .content h3 {
  font-weight: 500;
  margin-bottom: 0.25rem;
}
@media print, screen and (min-width: 64em) {
  .template-split-content .split-content-card .content p {
    max-width: 27.5rem;
  }
}
@media print, screen and (min-width: 64em) {
  .template-split-content .split-content-card .content {
    padding-top: 1.25rem;
    padding-bottom: 1.25rem;
  }
}
.template-split-content.large-button-spacing * + .module.buttons {
  margin-top: 2.25rem;
}
@media print, screen and (min-width: 48em) {
  .template-split-content.large-button-spacing * + .module.buttons {
    margin-top: 2.5rem;
  }
}
@media print, screen and (min-width: 64em) {
  .template-split-content.large-button-spacing * + .module.buttons {
    margin-top: 3.125rem;
  }
}

section.content-block.template-free-form {
  overflow: hidden;
}
section.content-block.template-free-form .form-content.marketo-form1 {
  background: var(--dark-matter);
}
section.content-block.template-free-form.stat-header {
  padding-bottom: 0;
}
section.content-block.template-free-form.jitterbitScrollLogo {
  background: var(--white);
  padding-bottom: 3.6rem;
  padding-top: 3.6rem;
}
@media print, screen and (min-width: 48em) {
  section.content-block.template-free-form.jitterbitScrollLogo {
    padding-bottom: 4rem;
    padding-top: 4rem;
  }
}
@media print, screen and (min-width: 64em) {
  section.content-block.template-free-form.jitterbitScrollLogo {
    padding-bottom: 5rem;
    padding-top: 5rem;
  }
}
@media print, screen and (min-width: 48em) {
  section.content-block.template-free-form.extended-layout {
    padding-bottom: 15.625rem;
  }
  section.content-block.template-free-form.extended-layout + section.content-block {
    margin-top: -10.625rem;
    padding-top: 0;
    z-index: 2;
    position: relative;
  }
}
section.content-block.template-free-form .has-1-cols .medium-10 {
  width: calc(84.33333% - 1.25rem);
}
section.content-block.template-free-form .inner &gt; .module.gallery .grid-x {
  row-gap: 3.125rem;
}
section.content-block.template-free-form .align-center.has-1-cols .module:not(.align-right):not(.align-left):not(.align-center) {
  text-align: center;
}
section.content-block.template-free-form .align-center.has-1-cols .module:not(.align-right):not(.align-left):not(.align-center) .grid-x {
  align-items: center;
  justify-content: center;
}
section.content-block.template-free-form .align-center.has-1-cols .module.align-right {
  text-align: right;
}
section.content-block.template-free-form .align-center.has-1-cols .module.align-right .grid-x {
  align-items: flex-end;
  justify-content: flex-end;
}
section.content-block.template-free-form .align-center.has-1-cols .module.align-right.stats {
  text-align: center;
}
section.content-block.template-free-form .align-center.has-1-cols .module.align-left {
  text-align: left;
}
section.content-block.template-free-form .align-center.has-1-cols .module.align-left .grid-x {
  align-items: flex-start;
  justify-content: flex-start;
}
section.content-block.template-free-form .align-center.has-1-cols .module.align-left.stats {
  text-align: center;
}
section.content-block.template-free-form.pull-bottom-lg {
  padding-bottom: 11.25rem;
}
@media print, screen and (min-width: 48em) {
  section.content-block.template-free-form.pull-bottom-lg {
    padding-bottom: 12.5rem;
  }
}
@media print, screen and (min-width: 64em) {
  section.content-block.template-free-form.pull-bottom-lg {
    padding-bottom: 15.625rem;
  }
}
section.content-block.template-free-form.pull-bottom-lg + .template-free-form {
  margin-top: -7.65rem;
  padding-top: 0;
  z-index: 2;
  position: relative;
}
@media print, screen and (min-width: 48em) {
  section.content-block.template-free-form.pull-bottom-lg + .template-free-form {
    margin-top: -8.5rem;
  }
}
@media print, screen and (min-width: 64em) {
  section.content-block.template-free-form.pull-bottom-lg + .template-free-form {
    margin-top: -10.625rem;
  }
}
@media print, screen and (min-width: 64em) {
  section.content-block.template-free-form .has-2-cols {
    margin: -1.875rem;
  }
  section.content-block.template-free-form .has-2-cols .cell {
    margin: 1.875rem;
  }
  section.content-block.template-free-form .has-2-cols .cell.medium-6 {
    width: calc(50% - 60px);
  }
  section.content-block.template-free-form .has-2-cols .cell.medium-7 {
    width: calc(58.33333% - 60px);
  }
  section.content-block.template-free-form .has-2-cols .cell.medium-5 {
    width: calc(41.66667% - 60px);
  }
}
section.content-block.template-free-form .cords {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
}
section.content-block.template-free-form.has-logos {
  position: relative;
  overflow: initial;
}
section.content-block.template-free-form.has-logos .logos {
  width: 100%;
  max-width: 90rem;
  left: 50%;
  top: 50%;
  height: 100%;
  transform: translate(-50%, -50%);
  position: absolute;
  z-index: -1;
}
@media print, screen and (max-width: 61.74875em) {
  section.content-block.template-free-form.has-logos .logos {
    display: none;
  }
}
section.content-block.template-free-form.has-logos .logos .plank {
  position: absolute;
  background-image: url("../images/plank-small.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
  width: 8.75rem;
  height: 5.625rem;
  padding: 1.25rem 0.875rem;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0;
  border-radius: 0.5rem;
  overflow: hidden;
  box-shadow: 0px 8px 24px 0px rgba(27, 62, 81, 0.1019607843);
}
section.content-block.template-free-form.has-logos .logos .plank img,
section.content-block.template-free-form.has-logos .logos .plank svg {
  height: 100%;
  width: 100%;
  object-fit: contain;
}
section.content-block.template-free-form.has-logos .logos .plank.large {
  width: 10.5rem;
  height: 6.75rem;
  padding: 1.5rem 1.125rem;
  border-radius: 0.625rem;
}
section.content-block.template-free-form.has-logos .logos .plank.small {
  width: 7.5rem;
  height: 4.875rem;
  padding: 0.9375rem 0.75rem;
  border-radius: 0.3125rem;
}
section.content-block.template-free-form.has-logos header.module .subheadline {
  max-width: 48.75rem;
}
@media (min-width: 1024px) and (max-width: 1300px) {
  section.content-block.template-free-form.has-logos .cell &gt; .inner {
    padding-left: 20%;
    padding-right: 20%;
  }
}
@media print, screen and (min-width: 64em) {
  section.content-block.template-free-form.has-logos {
    min-height: 20.625rem;
    display: flex;
    align-items: center;
  }
  section.content-block.template-free-form.has-logos .grid-container {
    width: 100%;
  }
}
section.content-block.template-free-form.cords-type-1 .cords {
  z-index: -1;
  max-width: 77.5rem;
}
section.content-block.template-free-form.cords-type-1 .cords img,
section.content-block.template-free-form.cords-type-1 .cords svg {
  position: absolute;
  top: 37%;
  left: -35%;
  transform: translate(0, -50%);
}
@media print, screen and (max-width: 25.93625em) {
  section.content-block.template-free-form.cords-type-1 .cords img,
  section.content-block.template-free-form.cords-type-1 .cords svg {
    opacity: 0.5;
    top: initial;
    bottom: -10%;
    left: -50%;
    transform: translate(0, 0);
  }
}
section.content-block.template-free-form.has-cords {
  min-height: 15vw;
}
section.content-block.template-free-form.has-cords .overlay {
  display: none;
}
section.content-block.template-free-form.product-content-callout {
  background-image: url("https://www.jitterbit.com/wp-content/uploads/LCAP-Ebook-CallOut-image-a.png");
  background-position: right bottom;
  background-repeat: no-repeat;
  background-size: 640px;
  max-width: 75.625rem;
  margin: 30px auto 50px auto;
  border-radius: 20px;
  padding-top: 4rem;
  padding-bottom: 4rem;
}
section.content-block.template-free-form.episode-violet {
  background: radial-gradient(ellipse at center, rgb(96, 32, 214) 50%, rgb(70, 14, 173) 100%);
  max-width: 75.625rem;
  padding: 0 0.9375rem;
  border-radius: 30px;
  margin: 5rem 15px !important;
  box-shadow: 0 0 15px #000;
}
section.content-block.template-free-form.episode-violet.header.module .preheadline {
  color: var(--white);
}
section.content-block.template-free-form .module.html .vidyard-player-container {
  box-shadow: 0 3px 15px 10px rgba(255, 255, 255, 0.18);
}

.episode-violet {
  background: radial-gradient(ellipse at center, rgb(96, 32, 214) 50%, rgb(70, 14, 173) 100%);
  max-width: 75.625rem;
  padding-bottom: 5rem;
  padding-top: 5rem;
  border-radius: 30px;
  margin: 5rem 15px !important;
  box-shadow: 0 0 15px #000;
}
.episode-violet h3.subheadline {
  font-style: italic;
}

@media (min-width: 1280px) {
  .episode-violet {
    margin: 5rem auto;
  }
}
section.content-block.template-icon-grid .item .button, section.content-block.template-icon-grid .item .menu li.button &gt; a, .menu section.content-block.template-icon-grid .item li.button &gt; a {
  justify-content: inherit;
  margin-top: 1.5625rem;
}
section.content-block.template-icon-grid .icon {
  display: flex;
  width: 3rem;
  height: 3rem;
  align-items: center;
  margin: 0 auto;
}
section.content-block.template-icon-grid .icon img {
  max-height: 100%;
  object-fit: contain;
}
section.content-block.template-icon-grid:not(.layout-tabs):not(.layout-icon-left) .icon-grid-wrapper {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
}
section.content-block.template-icon-grid:not(.layout-tabs):not(.layout-icon-left) .icon-grid-wrapper .item {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
}
@media print, screen and (max-width: 25.93625em) {
  section.content-block.template-icon-grid:not(.layout-tabs):not(.layout-icon-left) .icon-grid-wrapper .item {
    width: 100%;
    min-width: 15.625rem;
  }
}
section.content-block.template-icon-grid:not(.layout-tabs):not(.layout-icon-left) .icon-grid-wrapper .item .icon + * {
  margin-top: 1.25rem;
}
section.content-block.template-icon-grid:not(.layout-tabs):not(.layout-icon-left) .icon-grid-wrapper .item h3,
section.content-block.template-icon-grid:not(.layout-tabs):not(.layout-icon-left) .icon-grid-wrapper .item .description {
  max-width: 15rem;
}
section.content-block.template-icon-grid:not(.layout-tabs):not(.layout-icon-left) .icon-grid-wrapper .item h3 {
  font-weight: 500;
}
section.content-block.template-icon-grid:not(.layout-tabs):not(.layout-icon-left) .icon-grid-wrapper .item h3 + * {
  margin-top: 0.375rem;
}
@media print, screen and (max-width: 25.93625em) {
  section.content-block.template-icon-grid:not(.layout-tabs):not(.layout-icon-left) .icon-grid-wrapper .item h3 br {
    display: none;
  }
}
section.content-block.template-icon-grid:not(.layout-tabs):not(.layout-icon-left) .icon-grid-wrapper .item.full-width h3,
section.content-block.template-icon-grid:not(.layout-tabs):not(.layout-icon-left) .icon-grid-wrapper .item.full-width .description {
  max-width: 100%;
}
section.content-block.template-icon-grid:not(.layout-tabs):not(.layout-icon-left).up-3 .icon-grid-wrapper {
  row-gap: 2.5rem;
}
section.content-block.template-icon-grid:not(.layout-tabs):not(.layout-icon-left).up-3 .icon-grid-wrapper .item {
  width: calc(33.333% - 13.5px);
}
@media print, screen and (max-width: 25.93625em) {
  section.content-block.template-icon-grid:not(.layout-tabs):not(.layout-icon-left).up-3 .icon-grid-wrapper .item {
    width: 100%;
  }
}
section.content-block.template-icon-grid:not(.layout-tabs):not(.layout-icon-left).up-3 .icon-grid-wrapper .item h3,
section.content-block.template-icon-grid:not(.layout-tabs):not(.layout-icon-left).up-3 .icon-grid-wrapper .item .description {
  max-width: 21.25rem;
}
section.content-block.template-icon-grid:not(.layout-tabs):not(.layout-icon-left).up-3 .icon-grid-wrapper .item.full-width h3,
section.content-block.template-icon-grid:not(.layout-tabs):not(.layout-icon-left).up-3 .icon-grid-wrapper .item.full-width .description {
  max-width: 100%;
}
section.content-block.template-icon-grid:not(.layout-tabs):not(.layout-icon-left).up-4 .item {
  width: calc(25% - 15px);
  display: flex;
  flex-direction: column;
}
@media print, screen and (min-width: 48em) and (max-width: 61.74875em) {
  section.content-block.template-icon-grid:not(.layout-tabs):not(.layout-icon-left).up-4 .item {
    width: calc(50% - 15px);
  }
}
@media print, screen and (max-width: 25.93625em) {
  section.content-block.template-icon-grid:not(.layout-tabs):not(.layout-icon-left).up-4 .item {
    width: 100%;
    min-width: 15.625rem;
  }
}
section.content-block.template-icon-grid:not(.layout-tabs):not(.layout-icon-left).up-2 .icon-grid-wrapper {
  gap: 2.5rem;
}
@media print, screen and (max-width: 25.93625em) {
  section.content-block.template-icon-grid:not(.layout-tabs):not(.layout-icon-left).up-2 .icon-grid-wrapper {
    gap: 1.25rem;
  }
}
section.content-block.template-icon-grid:not(.layout-tabs):not(.layout-icon-left).up-2 .item {
  width: calc(50% - 20px);
  display: flex;
  flex-direction: column;
}
section.content-block.template-icon-grid:not(.layout-tabs):not(.layout-icon-left).up-2 .item h3,
section.content-block.template-icon-grid:not(.layout-tabs):not(.layout-icon-left).up-2 .item .description {
  max-width: 100% !important;
}
@media print, screen and (max-width: 25.93625em) {
  section.content-block.template-icon-grid:not(.layout-tabs):not(.layout-icon-left).up-2 .item {
    width: calc(50% - 10px);
    min-width: 15.625rem;
  }
}
section.content-block.template-icon-grid:not(.layout-tabs):not(.layout-icon-left).align-items-center .icon {
  justify-content: center;
}
section.content-block.template-icon-grid:not(.layout-tabs):not(.layout-icon-left).align-items-center .icon-grid-wrapper {
  align-items: stretch;
  text-align: center;
}
@media print, screen and (max-width: 25.93625em) {
  section.content-block.template-icon-grid:not(.layout-tabs):not(.layout-icon-left).align-items-center .icon-grid-wrapper {
    justify-content: center;
  }
}
section.content-block.template-icon-grid:not(.layout-tabs):not(.layout-icon-left).align-items-center .icon-grid-wrapper h3,
section.content-block.template-icon-grid:not(.layout-tabs):not(.layout-icon-left).align-items-center .icon-grid-wrapper .description {
  margin-left: auto;
  margin-right: auto;
  color: var(--text-color);
}
section.content-block.template-icon-grid:not(.layout-tabs):not(.layout-icon-left).align-items-center .icon-grid-wrapper h3 {
  font-weight: 300;
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 600;
}
section.content-block.template-icon-grid:not(.layout-tabs):not(.layout-icon-left).align-items-center .icon-grid-wrapper .item {
  background: var(--white);
  padding: 2.5rem;
  box-shadow: 0px 3px 11px 5px rgba(0, 0, 0, 0.18);
  transition: box-shadow 0.3s;
  border-radius: 0.9375rem;
}
section.content-block.template-icon-grid:not(.layout-tabs):not(.layout-icon-left).align-items-center .icon-grid-wrapper .item .description {
  margin-bottom: 1.5625rem;
}
section.content-block.template-icon-grid:not(.layout-tabs):not(.layout-icon-left).align-items-center .icon-grid-wrapper .item .button, section.content-block.template-icon-grid:not(.layout-tabs):not(.layout-icon-left).align-items-center .icon-grid-wrapper .item .menu li.button &gt; a, .menu section.content-block.template-icon-grid:not(.layout-tabs):not(.layout-icon-left).align-items-center .icon-grid-wrapper .item li.button &gt; a {
  justify-content: center;
  margin-top: auto;
}
section.content-block.template-icon-grid:not(.layout-tabs):not(.layout-icon-left).align-items-center .icon-grid-wrapper.page-not-found-icon-wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
}
section.content-block.template-icon-grid:not(.layout-tabs):not(.layout-icon-left).align-items-center .icon-grid-wrapper.page-not-found-icon-wrapper .item {
  width: 100%;
  justify-content: space-between;
  align-items: center;
  row-gap: 0.25rem;
}
section.content-block.template-icon-grid:not(.layout-tabs):not(.layout-icon-left).align-items-center .icon-grid-wrapper.page-not-found-icon-wrapper .item .icon + * {
  margin-top: 0.5rem;
}
section.content-block.template-icon-grid:not(.layout-tabs):not(.layout-icon-left).align-items-center .icon-grid-wrapper.page-not-found-icon-wrapper .item .description {
  display: flex;
  flex-flow: column;
  row-gap: 1rem;
  height: 100%;
  margin: 0;
}
section.content-block.template-icon-grid:not(.layout-tabs):not(.layout-icon-left).align-items-center .icon-grid-wrapper.page-not-found-icon-wrapper .item .description &gt; p {
  margin: 0;
  height: 100%;
}
section.content-block.template-icon-grid:not(.layout-tabs):not(.layout-icon-left).align-items-center .icon-grid-wrapper.page-not-found-icon-wrapper .item .button, section.content-block.template-icon-grid:not(.layout-tabs):not(.layout-icon-left).align-items-center .icon-grid-wrapper.page-not-found-icon-wrapper .item .menu li.button &gt; a, .menu section.content-block.template-icon-grid:not(.layout-tabs):not(.layout-icon-left).align-items-center .icon-grid-wrapper.page-not-found-icon-wrapper .item li.button &gt; a {
  margin-top: 0;
}
section.content-block.template-icon-grid.layout-icon-left .icon-grid-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 2.5rem 1.25rem;
}
section.content-block.template-icon-grid.layout-icon-left .icon-grid-wrapper .item {
  display: flex;
  flex-flow: column;
  gap: 0.5rem;
  width: calc(50% - 10px);
}
@media print, screen and (max-width: 25.93625em) {
  section.content-block.template-icon-grid.layout-icon-left .icon-grid-wrapper .item {
    width: 100%;
    justify-content: center;
    flex-direction: column;
  }
  section.content-block.template-icon-grid.layout-icon-left .icon-grid-wrapper .item .icon + * {
    margin-top: 0.625rem;
  }
}
section.content-block.template-icon-grid.layout-icon-left .icon-grid-wrapper .item .description {
  max-width: 29.5rem;
}
section.content-block.template-icon-grid.layout-icon-left .icon-grid-wrapper .item .description + * {
  margin-top: 1.5625rem;
}
section.content-block.template-icon-grid.layout-icon-left .icon-grid-wrapper .item .icon {
  margin-right: 1.25rem;
  min-width: 3rem;
  min-height: 3rem;
  align-items: flex-start;
}
@media print, screen and (min-width: 64em) {
  section.content-block.template-icon-grid.layout-icon-left.up-2 .item {
    flex-wrap: wrap;
    padding-left: 4.25rem;
    position: relative;
  }
}
@media print, screen and (max-width: 25.93625em) {
  section.content-block.template-icon-grid.layout-icon-left.up-2 .item {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
  }
}
@media print, screen and (min-width: 64em) {
  section.content-block.template-icon-grid.layout-icon-left.up-2 .item .icon {
    position: absolute;
    left: 0;
    top: 0;
    width: 3rem;
    height: 3rem;
  }
}
section.content-block.template-icon-grid.layout-icon-left .button, section.content-block.template-icon-grid.layout-icon-left .menu li.button &gt; a, .menu section.content-block.template-icon-grid.layout-icon-left li.button &gt; a {
  justify-content: flex-start;
}
section.content-block.template-icon-grid.layout-icon-left h3 {
  font-weight: 500;
}
section.content-block.template-icon-grid.layout-icon-left h3 + * {
  margin-top: 0.375rem;
}
@media print, screen and (max-width: 25.93625em) {
  section.content-block.template-icon-grid.layout-icon-left h3 br {
    display: none;
  }
}
section.content-block.template-icon-grid.layout-icon-left ul {
  padding: 0;
  margin: 0;
  list-style: none;
}
section.content-block.template-icon-grid.layout-icon-left ul + * {
  margin-top: 1.5625rem;
}
section.content-block.template-icon-grid.layout-icon-left ul li {
  position: relative;
  padding-left: 1.5625rem;
}
section.content-block.template-icon-grid.layout-icon-left ul li + li {
  margin-top: 0.125rem;
}
section.content-block.template-icon-grid.layout-icon-left ul li::before {
  content: "";
  display: block;
  position: absolute;
  left: 0.625rem;
  top: 0.625rem;
  width: 4px;
  height: 4px;
  border-radius: 100%;
  background: var(--text-color);
}
section.content-block.template-icon-grid.layout-icon-left * + ul {
  margin-top: 0.3125rem;
}
section.content-block.template-icon-grid.layout-tabs .tabs {
  padding: 0;
  margin-bottom: 1.8rem;
  display: flex;
  gap: 2.5rem;
  flex-wrap: wrap;
}
@media print, screen and (min-width: 48em) {
  section.content-block.template-icon-grid.layout-tabs .tabs {
    margin-bottom: 2rem;
  }
}
@media print, screen and (min-width: 64em) {
  section.content-block.template-icon-grid.layout-tabs .tabs {
    margin-bottom: 2.5rem;
  }
}
section.content-block.template-icon-grid.layout-tabs .tabs-content,
section.content-block.template-icon-grid.layout-tabs .tabs {
  background: none;
  border: none;
  position: relative;
}
section.content-block.template-icon-grid.layout-tabs .tabs-title a {
  background: none;
  color: var(--dark-matter);
  font-weight: 600;
  font-size: 1.5rem;
  line-height: normal;
  padding: 0;
  font-weight: 600;
  font-size: 1.25rem;
  text-transform: uppercase;
  transition: color 0.3s, border 0.3s;
  border-bottom: 2px solid transparent;
}
section.content-block.template-icon-grid.layout-tabs .tabs-title a:hover {
  text-decoration: none;
  color: var(--radiant-flame);
}
section.content-block.template-icon-grid.layout-tabs .tabs-title.is-active a {
  color: var(--text-color);
  border-bottom: 4px solid var(--radiant-flame);
}
section.content-block.template-icon-grid.layout-tabs .tabs-content .item:hover {
  text-decoration: none;
}
section.content-block.template-icon-grid.layout-tabs .tabs-panel {
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  position: absolute;
  top: 0;
  left: 50%;
  width: 100%;
  transition: opacity 0.6s, transform 0.3s;
  opacity: 0;
  transform: translate(-50%, 30%);
  pointer-events: none;
  align-items: stretch;
  justify-content: center;
}
section.content-block.template-icon-grid.layout-tabs .tabs-panel.is-active {
  position: relative;
  opacity: 1;
  transform: translate(-50%, 0);
  pointer-events: initial;
}
section.content-block.template-icon-grid.layout-tabs .tabs-panel .inner {
  background: var(--radiant-flame);
  padding: 3.4375rem 3.75rem 2.5rem 3.75rem;
  box-sizing: border-box;
  width: 13.75rem;
  border-radius: 0.5rem;
  overflow: hidden;
  box-shadow: 0px 1px 0px 0px rgba(255, 255, 255, 0.2509803922) inset;
  height: 100%;
  align-items: center;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
section.content-block.template-icon-grid.layout-tabs .tabs-panel .inner:hover .icon {
  transform: scale(1.07);
}
section.content-block.template-icon-grid.layout-tabs .tabs-panel .inner .icon {
  width: 100%;
  height: 100%;
  max-height: 100px;
  max-width: 100px;
  transition: transform 0.6s;
}
section.content-block.template-icon-grid.layout-tabs .tabs-panel .inner .icon svg,
section.content-block.template-icon-grid.layout-tabs .tabs-panel .inner .icon img {
  width: 100%;
  height: 100%;
}
section.content-block.template-icon-grid.layout-tabs .tabs-panel .inner .icon svg path, section.content-block.template-icon-grid.layout-tabs .tabs-panel .inner .icon svg polygon, section.content-block.template-icon-grid.layout-tabs .tabs-panel .inner .icon svg rect {
  fill: white !important;
}
@media print, screen and (max-width: 79.99875em) {
  section.content-block.template-icon-grid.layout-tabs .tabs-panel .inner {
    width: 9.375rem;
    padding: 1.5625rem 1.875rem 1.25rem 1.875rem;
  }
}
section.content-block.template-icon-grid.layout-tabs .tabs-panel .inner .title {
  margin-top: 2.5rem;
  color: var(--white);
  text-align: center;
  font-weight: 500;
  display: flex;
  align-items: flex-end;
  flex: 1;
}
section.content-block.template-icon-grid.layout-tabs .tabs-panel .inner .icon + .title {
  align-items: flex-start;
}
@media print, screen and (min-width: 64em) {
  section.content-block.template-icon-grid.layout-tabs .tabs-panel .grid-x {
    margin: -0.625rem;
  }
  section.content-block.template-icon-grid.layout-tabs .tabs-panel .grid-x .cell {
    margin: 0.625rem;
  }
}
section.content-block.template-icon-grid.layout-tabs.bg-dark .tabs-title a {
  color: var(--icy-blue);
  border-bottom: 2px solid transparent;
}
section.content-block.template-icon-grid.layout-tabs.bg-dark .tabs-title.is-active a {
  color: var(--white);
  border-bottom: 2px solid white;
}
section.content-block.template-icon-grid.layout-tabs.bg-dark .tabs-panel .inner {
  background: white;
}
section.content-block.template-icon-grid.layout-tabs.bg-dark .tabs-panel .inner .title {
  color: var(--text-color);
}
section.content-block.template-icon-grid.layout-tabs.hide-tabs .tabs {
  display: none;
}

section.content-block.template-quote + .content-block {
  margin-top: 7.2rem;
}
@media print, screen and (min-width: 48em) {
  section.content-block.template-quote + .content-block {
    margin-top: 8rem;
  }
}
@media print, screen and (min-width: 64em) {
  section.content-block.template-quote + .content-block {
    margin-top: 10rem;
  }
}
@media print, screen and (max-width: 25.93625em) {
  section.content-block.template-quote {
    overflow: hidden;
  }
}
section.content-block.template-quote .cord {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
section.content-block.template-quote .cord img,
section.content-block.template-quote .cord svg {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
section.content-block.template-quote .patterns {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
  max-width: 90rem;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}
@media print, screen and (max-width: 25.93625em) {
  section.content-block.template-quote .patterns {
    opacity: 0.5;
  }
}
section.content-block.template-quote .patterns img {
  position: absolute;
}
section.content-block.template-quote .patterns img:nth-child(1) {
  left: 30%;
  top: -10%;
}
section.content-block.template-quote .patterns img:nth-child(2) {
  right: 8%;
  top: 2%;
}
section.content-block.template-quote .patterns img:nth-child(3) {
  left: 14%;
  top: -27%;
}
section.content-block.template-quote .quote-wrapper {
  display: flex;
  align-items: flex-start;
}
@media print, screen and (max-width: 25.93625em) {
  section.content-block.template-quote .quote-wrapper {
    flex-direction: column;
    gap: 2.5rem;
  }
}
section.content-block.template-quote .quote-wrapper .content {
  padding: 5.5rem;
  margin-top: 3.75rem;
  background: var(--white);
  border-radius: 0.5rem;
  flex-grow: 1;
  box-shadow: 0px 3px 11px 5px rgba(0, 0, 0, 0.18);
}
@media print, screen and (max-width: 61.74875em) {
  section.content-block.template-quote .quote-wrapper .content {
    padding: 3.75rem 5rem 3.75rem 3.75rem;
  }
}
@media print, screen and (max-width: 25.93625em) {
  section.content-block.template-quote .quote-wrapper .content {
    padding: 1.5rem;
  }
}
section.content-block.template-quote .quote-wrapper .content .pretitle + *,
section.content-block.template-quote .quote-wrapper .content h2 + * {
  margin-top: 1.25rem;
}
section.content-block.template-quote .quote-wrapper .content .pretitle {
  font-weight: 600;
  color: var(--radiant-flame);
  text-transform: uppercase;
}
section.content-block.template-quote .quote-wrapper .content h2 {
  font-size: 1.75rem;
  font-weight: 300;
}
section.content-block.template-quote .quote-wrapper .content .name {
  font-weight: 600;
}
section.content-block.template-quote .quote-wrapper .image {
  margin-left: -5rem;
  min-width: 13rem;
  width: 13rem;
}
section.content-block.template-quote .quote-wrapper .image img {
  box-shadow: 0px 3px 11px 5px rgba(0, 0, 0, 0.18);
  border-radius: 1.5625rem;
}
@media print, screen and (max-width: 61.74875em) {
  section.content-block.template-quote .quote-wrapper .image {
    margin-left: -3.125rem;
  }
}
@media print, screen and (max-width: 25.93625em) {
  section.content-block.template-quote .quote-wrapper .image {
    display: none;
  }
}
section.content-block.template-quote.bg-dark .content {
  color: var(--text-color);
}

section.content-block.template-accordion .accordions-wrapper {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
section.content-block.template-accordion .accordions-wrapper .accordion-item {
  padding: 0;
  background: var(--white);
  border: 2px solid var(--slate-mist);
  transition: padding 0.3s;
  background: none;
  border-radius: 0.5rem;
}
section.content-block.template-accordion .accordions-wrapper .accordion-item .accordion-title {
  padding: 1.25rem 5rem 1.25rem 2.5rem;
  border: none;
  position: relative;
  display: block;
  transition: padding 0.3s;
}
section.content-block.template-accordion .accordions-wrapper .accordion-item .accordion-title:hover {
  text-decoration: none;
  color: rgb(39.75, 91.2777777778, 119.25);
  background: none;
}
@media print, screen and (max-width: 25.93625em) {
  section.content-block.template-accordion .accordions-wrapper .accordion-item .accordion-title {
    padding: 1.25rem 2.5rem 1.25rem 1.25rem;
  }
}
@media print, screen and (min-width: 48em) {
  section.content-block.template-accordion .accordions-wrapper .accordion-item .accordion-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    column-gap: 1.25rem;
  }
}
section.content-block.template-accordion .accordions-wrapper .accordion-item .accordion-title:hover {
  text-decoration: none;
}
section.content-block.template-accordion .accordions-wrapper .accordion-item .accordion-title h3 {
  font-weight: 500;
}
section.content-block.template-accordion .accordions-wrapper .accordion-item .accordion-title::before {
  display: none;
}
section.content-block.template-accordion .accordions-wrapper .accordion-item .accordion-title::after {
  content: "";
  display: block;
  position: absolute;
  width: 1.25rem;
  height: 1.25rem;
  right: 2.5rem;
  top: 50%;
  transform: translate(0, -50%);
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg width='20' height='20' viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M16.5 10C16.5 10.5625 16.0312 11.0312 15.5 11.0312H11V15.5312C11 16.0625 10.5312 16.5 10 16.5C9.4375 16.5 9 16.0625 9 15.5312V11.0312H4.5C3.9375 11.0312 3.5 10.5625 3.5 10C3.5 9.46875 3.9375 9.03125 4.5 9.03125H9V4.53125C9 3.96875 9.4375 3.5 10 3.5C10.5312 3.5 11 3.96875 11 4.53125V9.03125H15.5C16.0312 9 16.5 9.46875 16.5 10Z' fill='%230F0225'/%3E%3C/svg%3E");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}
@media print, screen and (max-width: 25.93625em) {
  section.content-block.template-accordion .accordions-wrapper .accordion-item .accordion-title::after {
    right: 1.25rem;
  }
}
section.content-block.template-accordion .accordions-wrapper .accordion-item.is-active {
  padding-bottom: 1.25rem;
}
section.content-block.template-accordion .accordions-wrapper .accordion-item.is-active .accordion-title {
  padding-bottom: 1.25rem;
}
section.content-block.template-accordion .accordions-wrapper .accordion-item.is-active .accordion-title::after {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg width='20' height='20' viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M15.5 11H4.5C3.9375 11 3.5 10.5625 3.5 10C3.5 9.46875 3.9375 9 4.5 9H15.5C16.0312 9 16.5 9.46875 16.5 10C16.5 10.5625 16.0312 11 15.5 11Z' fill='%230F0225'/%3E%3C/svg%3E");
}
section.content-block.template-accordion .accordions-wrapper .accordion-item .accordion-content {
  padding: 0 5rem 0 2.5rem;
  border: none;
  background: none;
}
section.content-block.template-accordion .accordions-wrapper .accordion-item .accordion-content &gt; * {
  margin-bottom: 1.25rem;
}
section.content-block.template-accordion .accordions-wrapper .accordion-item .accordion-content &gt; *:last-child {
  margin-bottom: 0;
}
section.content-block.template-accordion .accordions-wrapper .accordion-item .accordion-content h1,
section.content-block.template-accordion .accordions-wrapper .accordion-item .accordion-content h2,
section.content-block.template-accordion .accordions-wrapper .accordion-item .accordion-content h3,
section.content-block.template-accordion .accordions-wrapper .accordion-item .accordion-content h4,
section.content-block.template-accordion .accordions-wrapper .accordion-item .accordion-content h5,
section.content-block.template-accordion .accordions-wrapper .accordion-item .accordion-content h6 {
  margin-bottom: 0.625rem;
}
* + section.content-block.template-accordion .accordions-wrapper .accordion-item .accordion-content h1,
* + section.content-block.template-accordion .accordions-wrapper .accordion-item .accordion-content h2,
* + section.content-block.template-accordion .accordions-wrapper .accordion-item .accordion-content h3,
* + section.content-block.template-accordion .accordions-wrapper .accordion-item .accordion-content h4,
* + section.content-block.template-accordion .accordions-wrapper .accordion-item .accordion-content h5,
* + section.content-block.template-accordion .accordions-wrapper .accordion-item .accordion-content h6 {
  margin-top: 2.5rem;
}
section.content-block.template-accordion .accordions-wrapper .accordion-item .accordion-content h1 + h1, section.content-block.template-accordion .accordions-wrapper .accordion-item .accordion-content h1 + h2, section.content-block.template-accordion .accordions-wrapper .accordion-item .accordion-content h1 + h3, section.content-block.template-accordion .accordions-wrapper .accordion-item .accordion-content h1 + h4, section.content-block.template-accordion .accordions-wrapper .accordion-item .accordion-content h1 + h5, section.content-block.template-accordion .accordions-wrapper .accordion-item .accordion-content h1 + h6,
section.content-block.template-accordion .accordions-wrapper .accordion-item .accordion-content h2 + h1,
section.content-block.template-accordion .accordions-wrapper .accordion-item .accordion-content h2 + h2,
section.content-block.template-accordion .accordions-wrapper .accordion-item .accordion-content h2 + h3,
section.content-block.template-accordion .accordions-wrapper .accordion-item .accordion-content h2 + h4,
section.content-block.template-accordion .accordions-wrapper .accordion-item .accordion-content h2 + h5,
section.content-block.template-accordion .accordions-wrapper .accordion-item .accordion-content h2 + h6,
section.content-block.template-accordion .accordions-wrapper .accordion-item .accordion-content h3 + h1,
section.content-block.template-accordion .accordions-wrapper .accordion-item .accordion-content h3 + h2,
section.content-block.template-accordion .accordions-wrapper .accordion-item .accordion-content h3 + h3,
section.content-block.template-accordion .accordions-wrapper .accordion-item .accordion-content h3 + h4,
section.content-block.template-accordion .accordions-wrapper .accordion-item .accordion-content h3 + h5,
section.content-block.template-accordion .accordions-wrapper .accordion-item .accordion-content h3 + h6,
section.content-block.template-accordion .accordions-wrapper .accordion-item .accordion-content h4 + h1,
section.content-block.template-accordion .accordions-wrapper .accordion-item .accordion-content h4 + h2,
section.content-block.template-accordion .accordions-wrapper .accordion-item .accordion-content h4 + h3,
section.content-block.template-accordion .accordions-wrapper .accordion-item .accordion-content h4 + h4,
section.content-block.template-accordion .accordions-wrapper .accordion-item .accordion-content h4 + h5,
section.content-block.template-accordion .accordions-wrapper .accordion-item .accordion-content h4 + h6,
section.content-block.template-accordion .accordions-wrapper .accordion-item .accordion-content h5 + h1,
section.content-block.template-accordion .accordions-wrapper .accordion-item .accordion-content h5 + h2,
section.content-block.template-accordion .accordions-wrapper .accordion-item .accordion-content h5 + h3,
section.content-block.template-accordion .accordions-wrapper .accordion-item .accordion-content h5 + h4,
section.content-block.template-accordion .accordions-wrapper .accordion-item .accordion-content h5 + h5,
section.content-block.template-accordion .accordions-wrapper .accordion-item .accordion-content h5 + h6,
section.content-block.template-accordion .accordions-wrapper .accordion-item .accordion-content h6 + h1,
section.content-block.template-accordion .accordions-wrapper .accordion-item .accordion-content h6 + h2,
section.content-block.template-accordion .accordions-wrapper .accordion-item .accordion-content h6 + h3,
section.content-block.template-accordion .accordions-wrapper .accordion-item .accordion-content h6 + h4,
section.content-block.template-accordion .accordions-wrapper .accordion-item .accordion-content h6 + h5,
section.content-block.template-accordion .accordions-wrapper .accordion-item .accordion-content h6 + h6 {
  margin-top: 0.625rem;
}
section.content-block.template-accordion .accordions-wrapper .accordion-item .accordion-content p {
  max-width: 100%;
}
section.content-block.template-accordion .accordions-wrapper .accordion-item .accordion-content .button, section.content-block.template-accordion .accordions-wrapper .accordion-item .accordion-content .menu li.button &gt; a, .menu section.content-block.template-accordion .accordions-wrapper .accordion-item .accordion-content li.button &gt; a {
  justify-content: flex-start;
}
section.content-block.template-accordion .accordions-wrapper .accordion-item .accordion-content ul {
  padding: 0;
  list-style: none;
}
section.content-block.template-accordion .accordions-wrapper .accordion-item .accordion-content ul li {
  position: relative;
  padding-left: 1.5625rem;
}
section.content-block.template-accordion .accordions-wrapper .accordion-item .accordion-content ul li + li {
  margin-top: 0.125rem;
}
section.content-block.template-accordion .accordions-wrapper .accordion-item .accordion-content ul li::before {
  content: "";
  display: block;
  position: absolute;
  left: 0.625rem;
  top: 0.625rem;
  width: 4px;
  height: 4px;
  border-radius: 100%;
  background: var(--text-color);
}
@media print, screen and (max-width: 25.93625em) {
  section.content-block.template-accordion .accordions-wrapper .accordion-item .accordion-content {
    padding: 0 2.5rem 0 1.25rem;
  }
}
section.content-block.template-accordion .accordions-wrapper .accordion-item .accordion-title {
  color: var(--text-color);
}
section.content-block.template-accordion .accordions-wrapper .accordion-item .accordion-title:focus {
  background: none;
}
section.content-block.template-accordion.bg-dark .accordions-wrapper .accordion-item {
  border: 2px solid var(--slate-mist);
  color: var(--text-color);
  background: var(--white);
}
section.content-block.template-accordion.bg-dark .accordions-wrapper .accordion-item .accordion-content {
  color: var(--text-color);
}
section.content-block.template-accordion.bg-dark .accordions-wrapper .accordion-item .accordion-title {
  color: var(--text-color);
}
section.content-block.template-accordion.bg-dark .accordions-wrapper .accordion-item .accordion-title:hover {
  color: rgb(39.75, 91.2777777778, 119.25);
}

section.content-block.template-cta {
  background: var(--radiant-flame);
  margin-bottom: 0;
  padding-top: 2rem;
  padding-bottom: 2rem;
}
section.content-block.template-cta .content {
  display: flex;
  gap: 3.75rem;
  justify-content: center;
}
@media print, screen and (max-width: 25.93625em) {
  section.content-block.template-cta .content {
    flex-direction: column;
    gap: 1.25rem;
  }
}
section.content-block.template-cta .content h2 {
  color: var(--white);
  max-width: calc(100% - 250px);
}
@media print, screen and (max-width: 25.93625em) {
  section.content-block.template-cta .content h2 {
    max-width: 100%;
  }
}
section.content-block.template-cta .content .button, section.content-block.template-cta .content .menu li.button &gt; a, .menu section.content-block.template-cta .content li.button &gt; a {
  border: 2px solid var(--white);
  color: var(--white);
}
@media print, screen and (max-width: 25.93625em) {
  section.content-block.template-cta .content .button, section.content-block.template-cta .content .menu li.button &gt; a, .menu section.content-block.template-cta .content li.button &gt; a {
    width: -moz-fit-content;
    width: fit-content;
  }
}
section.content-block.template-cta .content .button::after, section.content-block.template-cta .content .menu li.button &gt; a::after, .menu section.content-block.template-cta .content li.button &gt; a::after {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg width='15' height='13' viewBox='0 0 15 13' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M13.6875 7.71875L8.6875 12.7188C8.5 12.9062 8.25 13 8 13C7.71875 13 7.46875 12.9062 7.28125 12.7188C6.875 12.3438 6.875 11.6875 7.28125 11.3125L10.5625 8H1C0.4375 8 0 7.5625 0 7C0 6.46875 0.4375 6 1 6H10.5625L7.28125 2.71875C6.875 2.34375 6.875 1.6875 7.28125 1.3125C7.65625 0.90625 8.3125 0.90625 8.6875 1.3125L13.6875 6.3125C14.0938 6.6875 14.0938 7.34375 13.6875 7.71875Z' fill='%23fff'/%3E%3C/svg%3E");
}

.template-logo-wall.gradient-top {
  padding-bottom: 3.6rem;
  margin-bottom: 0;
}
@media print, screen and (min-width: 48em) {
  .template-logo-wall.gradient-top {
    padding-bottom: 4rem;
  }
}
@media print, screen and (min-width: 64em) {
  .template-logo-wall.gradient-top {
    padding-bottom: 5rem;
  }
}
.template-logo-wall.gradient-top + section.content-block {
  margin-top: 0;
}
.template-logo-wall .overlay {
  display: none;
}
.template-logo-wall ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.template-logo-wall .logo-list {
  display: flex;
  justify-content: center;
  align-items: center;
  row-gap: 1.25rem;
  column-gap: 3.125rem;
}
.template-logo-wall .logo-list img {
  height: 4.375rem;
  max-width: 8.75rem;
  object-fit: contain;
}
@media print, screen and (max-width: 25.93625em) {
  .template-logo-wall .logo-list {
    column-gap: 1.25rem;
  }
}
.template-logo-wall.size-large .logo-list img {
  height: 7.5rem;
}

.home .template-logo-wall .logo-list {
  display: grid;
  grid-template-columns: repeat(10, 1fr);
  text-align: center;
}
@media print, screen and (max-width: 95.99875em) {
  .home .template-logo-wall .logo-list {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  }
}
.home .template-logo-wall .logo-list img {
  max-height: 3rem;
}

section.content-block.template-applications .item {
  position: relative;
}
section.content-block.template-applications .item:hover .button.simple::after, section.content-block.template-applications .item:hover .menu li.button &gt; a.simple::after, .menu section.content-block.template-applications .item:hover li.button &gt; a.simple::after {
  left: 0.25rem;
}
section.content-block.template-applications .cover-link {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
}
section.content-block.template-applications .applications-grid-wrapper {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  width: 100%;
}
section.content-block.template-applications .applications-grid-wrapper .applications-grid {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
  width: 100%;
  height: -moz-fit-content;
  height: fit-content;
}
section.content-block.template-applications .applications-grid-wrapper .applications-grid .item {
  width: calc(33.333% - 13.4px);
  background: var(--white);
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  max-height: 7.5rem;
  transition: box-shadow ease 0.13s;
  box-shadow: 0 0 10px rgba(138, 141, 143, 0.5882352941);
  box-shadow: 0 0 10px #abb0b3;
  transition: box-shadow ease 0.13s;
}
section.content-block.template-applications .applications-grid-wrapper .applications-grid .item:hover {
  transition: box-shadow ease 0.13s;
  box-shadow: 0 0 10px #9fa3a6;
}
@media print, screen and (max-width: 61.74875em) {
  section.content-block.template-applications .applications-grid-wrapper .applications-grid .item {
    width: calc(50% - 10px);
    justify-content: center;
  }
}
@media print, screen and (max-width: 25.93625em) {
  section.content-block.template-applications .applications-grid-wrapper .applications-grid .item {
    width: 100%;
  }
}
section.content-block.template-applications .applications-grid-wrapper .applications-grid .item .icon {
  width: 100%;
  max-width: 11.875rem;
  height: 100%;
  max-height: 7.5rem;
  padding: 1.5625rem 1.25rem 1.5625rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1.25rem;
}
section.content-block.template-applications .applications-grid-wrapper .applications-grid .item .icon img {
  height: 100%;
  object-fit: contain;
}
section.content-block.template-applications .applications-grid-wrapper .applications-grid .item .content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 1.5625rem 1.25rem 1.5625rem 0;
  min-width: 8.75rem;
}
section.content-block.template-applications .applications-grid-wrapper .applications-grid .item .content h3 {
  font-weight: 500;
}
section.content-block.template-applications .applications-grid-wrapper .applications-grid .item .content h3 {
  font-size: 0.875rem;
}
@media screen and (min-width: 768px) {
  section.content-block.template-applications .applications-grid-wrapper .applications-grid .item .content h3 {
    font-size: calc(14px + 6 * (100vw - 768px) / 256);
  }
}
@media screen and (min-width: 1024px) {
  section.content-block.template-applications .applications-grid-wrapper .applications-grid .item .content h3 {
    font-size: 1.25rem;
  }
}
section.content-block.template-applications .applications-grid-wrapper .applications-grid .item .content h3 + * {
  margin-top: 0.3125rem;
}
section.content-block.template-applications[classË†=bg-] + .template-applications[classË†=bg-], section.content-block.template-applications[classË†=bg-] + .template-applications[class*=bg-], section.content-block.template-applications[class*=bg-] + .template-applications[classË†=bg-], section.content-block.template-applications[class*=bg-] + .template-applications[class*=bg-] {
  padding-top: 0;
}
section.content-block.template-applications.layout-aside[classË†=bg-], section.content-block.template-applications.layout-aside[class*=bg-] {
  padding-top: 4.5rem !important;
}
@media print, screen and (min-width: 48em) {
  section.content-block.template-applications.layout-aside[classË†=bg-], section.content-block.template-applications.layout-aside[class*=bg-] {
    padding-top: 5rem !important;
  }
}
@media print, screen and (min-width: 64em) {
  section.content-block.template-applications.layout-aside[classË†=bg-], section.content-block.template-applications.layout-aside[class*=bg-] {
    padding-top: 6.25rem !important;
  }
}
section.content-block.template-applications.layout-aside[classË†=bg-].pull-top, section.content-block.template-applications.layout-aside[classË†=bg-]#partners, section.content-block.template-applications.layout-aside[class*=bg-].pull-top, section.content-block.template-applications.layout-aside[class*=bg-]#partners {
  padding-top: 0 !important;
}
section.content-block.template-applications.layout-aside .template-header .headline {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
section.content-block.template-applications.layout-aside .pagination {
  width: 100%;
  margin-top: 1.875rem;
  text-align: center;
}
@media print, screen and (min-width: 48em) {
  section.content-block.template-applications.layout-aside .applications-wrapper {
    align-items: flex-start;
    display: grid;
    grid-template-columns: 1fr 3fr;
    gap: 1.25rem;
  }
}
section.content-block.template-applications.layout-aside .applications-wrapper.item.sort-module {
  position: relative;
  grid-column: 2/3;
  clear: both;
  margin-left: auto;
  z-index: 2;
}
section.content-block.template-applications.layout-aside .applications-wrapper.item.sort-module .accordion-item {
  width: 100%;
  max-width: 200px;
  margin-left: auto;
  margin-bottom: 0.5rem;
}
section.content-block.template-applications.layout-aside .applications-wrapper.item.sort-module .accordion-item.sort-item {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  column-gap: 0.5rem;
  max-width: 100%;
  height: 28px;
}
section.content-block.template-applications.layout-aside .applications-wrapper.item.sort-module .accordion-item.sort-item .facetwp-type-sort {
  height: 100%;
}
section.content-block.template-applications.layout-aside .applications-wrapper.item.sort-module .accordion-item .accordion-content {
  background: var(--cool-wave);
  padding: 0.25rem;
  margin-top: 0.625rem;
  border: none;
}
section.content-block.template-applications.layout-aside .applications-wrapper.item.sort-module .accordion-item .fs-wrap {
  width: 170px;
  display: inline-block;
  position: relative;
  cursor: pointer;
  font-weight: 400;
}
section.content-block.template-applications.layout-aside .applications-wrapper.item.sort-module .accordion-item .fs-wrap .fs-label-wrap {
  height: 28px;
}
section.content-block.template-applications.layout-aside .applications-wrapper.item.sort-module .accordion-item .fs-wrap .fs-arrow {
  width: 20px;
  height: 20px;
  border: none;
  position: absolute;
  top: 0;
  right: 5px;
  bottom: 0;
  margin: auto;
  transition: ease-in transform 0.3s;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg width='20' height='20' viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M10.0156 13.4961C9.73438 13.4961 9.48438 13.4023 9.29688 13.2148L4.29688 8.21484C3.89062 7.83984 3.89062 7.18359 4.29688 6.80859C4.67188 6.40234 5.32812 6.40234 5.70312 6.80859L10.0156 11.0898L14.2969 6.80859C14.6719 6.40234 15.3281 6.40234 15.7031 6.80859C16.1094 7.18359 16.1094 7.83984 15.7031 8.21484L10.7031 13.2148C10.5156 13.4023 10.2656 13.4961 10.0156 13.4961Z' fill='%231b3e51'/%3E%3C/svg%3E");
}
section.content-block.template-applications.layout-aside .applications-wrapper.item.sort-module .accordion-item .fs-wrap .fs-options .fs-option:first-child {
  display: none;
}
section.content-block.template-applications.layout-aside .applications-wrapper .aside .item {
  position: relative;
  margin-left: initial;
}
section.content-block.template-applications.layout-aside .applications-wrapper .applications-grid-wrapper .item {
  width: calc(50% - 10px);
  justify-content: flex-start;
}
@media print, screen and (max-width: 61.74875em) {
  section.content-block.template-applications.layout-aside .applications-wrapper .applications-grid-wrapper .item {
    justify-content: center;
  }
}
@media print, screen and (max-width: 25.93625em) {
  section.content-block.template-applications.layout-aside .applications-wrapper .applications-grid-wrapper .item {
    width: 100%;
  }
}
section.content-block.template-applications.bg-white .applications-grid-wrapper .item {
  background: var(--white);
}
section.content-block.template-applications.bg-dark .content {
  color: var(--text-color) !important;
}
section.content-block.template-applications.bg-dark .content .button.simple, section.content-block.template-applications.bg-dark .content .menu li.button &gt; a.simple, .menu section.content-block.template-applications.bg-dark .content li.button &gt; a.simple {
  color: var(--white) !important;
}
section.content-block.template-applications.bg-dark .content .button.simple::after, section.content-block.template-applications.bg-dark .content .menu li.button &gt; a.simple::after, .menu section.content-block.template-applications.bg-dark .content li.button &gt; a.simple::after {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg width='15' height='13' viewBox='0 0 15 13' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M13.6875 7.71875L8.6875 12.7188C8.5 12.9062 8.25 13 8 13C7.71875 13 7.46875 12.9062 7.28125 12.7188C6.875 12.3438 6.875 11.6875 7.28125 11.3125L10.5625 8H1C0.4375 8 0 7.5625 0 7C0 6.46875 0.4375 6 1 6H10.5625L7.28125 2.71875C6.875 2.34375 6.875 1.6875 7.28125 1.3125C7.65625 0.90625 8.3125 0.90625 8.6875 1.3125L13.6875 6.3125C14.0938 6.6875 14.0938 7.34375 13.6875 7.71875Z' fill='%23f44414'/%3E%3C/svg%3E") !important;
}
@media print, screen and (min-width: 48em) {
  section.content-block.template-applications .applications-wrapper.partners-wrap {
    align-items: flex-start;
    display: grid;
    grid-template-columns: 1fr 3fr;
    gap: 1.25rem;
  }
}
section.content-block.template-applications .applications-wrapper.partners-wrap .item.sort-module {
  position: relative;
  grid-column: 2/3;
  clear: both;
  margin-left: auto;
  z-index: 2;
}
section.content-block.template-applications .applications-wrapper.partners-wrap .item.sort-module .accordion-item {
  width: 100%;
  max-width: 200px;
  margin-left: auto;
  margin-bottom: 0.5rem;
}
section.content-block.template-applications .applications-wrapper.partners-wrap .item.sort-module .accordion-item.sort-item {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  column-gap: 0.5rem;
  max-width: 100%;
  margin-bottom: 0;
}
section.content-block.template-applications .applications-wrapper.partners-wrap .item.sort-module .accordion-item.sort-item .facetwp-type-sort {
  height: 100%;
}
section.content-block.template-applications .applications-wrapper.partners-wrap .item.sort-module .accordion-item .accordion-content {
  background: var(--cool-wave);
  padding: 0.25rem;
  margin-top: 0.625rem;
  border: none;
}
section.content-block.template-applications .applications-wrapper.partners-wrap .item.sort-module .accordion-item .fs-wrap {
  width: 150px;
  display: inline-block;
  position: relative;
  cursor: pointer;
  font-weight: 400;
}
section.content-block.template-applications .applications-wrapper.partners-wrap .item.sort-module .accordion-item .fs-wrap .fs-label-wrap .fs-label {
  padding: 10px 22px 10px 9px;
  font-weight: 300;
}
section.content-block.template-applications .applications-wrapper.partners-wrap .item.sort-module .accordion-item .fs-wrap .fs-arrow {
  width: 20px;
  height: 20px;
  border: none;
  position: absolute;
  top: 0;
  right: 5px;
  bottom: 0;
  margin: auto;
  transition: ease-in transform 0.3s;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg width='20' height='20' viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M10.0156 13.4961C9.73438 13.4961 9.48438 13.4023 9.29688 13.2148L4.29688 8.21484C3.89062 7.83984 3.89062 7.18359 4.29688 6.80859C4.67188 6.40234 5.32812 6.40234 5.70312 6.80859L10.0156 11.0898L14.2969 6.80859C14.6719 6.40234 15.3281 6.40234 15.7031 6.80859C16.1094 7.18359 16.1094 7.83984 15.7031 8.21484L10.7031 13.2148C10.5156 13.4023 10.2656 13.4961 10.0156 13.4961Z' fill='%231b3e51'/%3E%3C/svg%3E");
}
section.content-block.template-applications .applications-wrapper.partners-wrap .item.sort-module .accordion-item .fs-wrap .fs-options .fs-option:first-child {
  display: none;
}

.template-content-cards header.template-header a.button.simple, .template-content-cards header.template-header .menu li.button &gt; a.simple, .menu .template-content-cards header.template-header li.button &gt; a.simple {
  justify-content: start;
}
.template-content-cards .pagination {
  margin-top: 1.875rem;
  text-align: center;
}
.template-content-cards .pagination .facetwp-facet-pagination {
  display: flex;
  justify-content: center;
}
.template-content-cards .content-card {
  color: inherit;
  transition: box-shadow 0.6s;
  display: flex;
  flex-direction: column;
  height: auto;
  background-color: var(--white);
  display: flex;
  flex-direction: column;
  height: auto;
  background-color: var(--white);
  border-radius: 0.5rem;
}
.template-content-cards .content-card:not(.no-link):hover {
  text-decoration: none;
  box-shadow: 0 0 15px rgba(29, 62, 81, 0.55);
  transition: all 0.33s;
}
.template-content-cards .content-card:not(.no-link):hover h3 {
  color: var(--radiant-flame);
}
.template-content-cards .content-card .button.simple, .template-content-cards .content-card .menu li.button &gt; a.simple, .menu .template-content-cards .content-card li.button &gt; a.simple {
  justify-content: flex-end;
  padding-right: 1.25rem;
}
body.category .template-content-cards .pagination .facetwp-facet-pagination {
  justify-content: center;
  align-items: center;
}
.template-content-cards .hly-hub-embed .hly-hub-tile .hub-tile-content .hub-tile-content-title {
  margin: 0 !important;
}
.template-content-cards:not(.layout-aside):not(.layout-image-left) .content-card .card-inner-container {
  padding: 0 1.25rem 0;
  width: 100%;
}
.template-content-cards:not(.layout-aside):not(.layout-image-left) .content-card .card-inner-container .button.simple, .template-content-cards:not(.layout-aside):not(.layout-image-left) .content-card .card-inner-container .menu li.button &gt; a.simple, .menu .template-content-cards:not(.layout-aside):not(.layout-image-left) .content-card .card-inner-container li.button &gt; a.simple {
  justify-content: flex-end;
  padding-right: 1.25rem;
}
.template-content-cards:not(.layout-aside):not(.layout-image-left) .content-card .media {
  min-height: -moz-fit-content;
  min-height: fit-content;
  max-height: -moz-fit-content;
  max-height: fit-content;
  overflow: hidden;
}
.template-content-cards:not(.layout-aside):not(.layout-image-left) .content-card .media img,
.template-content-cards:not(.layout-aside):not(.layout-image-left) .content-card .media svg {
  width: 100%;
  max-height: 8.25rem;
  object-fit: cover;
  overflow: hidden;
  padding: 0;
}
.template-content-cards:not(.layout-aside):not(.layout-image-left) .content-card .media {
  min-height: 8.25rem;
  max-height: 8.25rem;
  overflow: hidden;
}
.template-content-cards:not(.layout-aside):not(.layout-image-left) .content-card .media img,
.template-content-cards:not(.layout-aside):not(.layout-image-left) .content-card .media svg {
  width: 100%;
  max-height: 8.25rem;
  overflow: hidden;
  object-fit: cover;
  padding: 0;
}
.template-content-cards.layout-image-left .content-card {
  flex-direction: row;
  border-radius: 0.5rem;
}
.template-content-cards.layout-image-left .content-card .media {
  max-width: 7.5rem;
  min-width: 7.5rem;
}
.template-content-cards.layout-image-left .content-card .media img,
.template-content-cards.layout-image-left .content-card .media svg {
  width: 100%;
  max-height: 8.25rem;
  overflow: hidden;
  object-fit: cover;
  border-radius: 0.5rem 0 0 0.5rem;
}
.template-content-cards.layout-image-left .content-card .content {
  padding: 1.25rem;
}
.template-content-cards.layout-image-left .content-card .content h3 {
  font-weight: 600;
  font-size: 1.5rem;
  line-height: normal;
  font-weight: 500;
  flex: 0;
}
@media print, screen and (min-width: 64em) {
  .template-content-cards .grid-margin-x &gt; .large-4.large-size {
    width: calc(50% - 1.25rem);
  }
  .template-content-cards .grid-margin-x &gt; .large-4.large-size .media {
    max-height: 11.25rem;
    overflow: hidden;
  }
  .template-content-cards .grid-margin-x &gt; .large-4.large-size .content {
    height: auto;
  }
}
.template-content-cards .grid-container &gt; .grid-x {
  row-gap: 2rem;
}
.template-content-cards .content-card {
  display: flex;
  flex-direction: column;
  height: auto;
}
.template-content-cards .content-card:hover .button::after, .template-content-cards .content-card:hover .menu li.button &gt; a::after, .menu .template-content-cards .content-card:hover li.button &gt; a::after {
  left: 0.25rem;
}
.template-content-cards .media {
  min-height: 8.25rem;
  max-height: 8.25rem;
  overflow: hidden;
}
.template-content-cards .media img,
.template-content-cards .media svg {
  border-radius: 0.5rem 0.5rem 0 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.template-content-cards .content {
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  height: auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  height: 100%;
}
.template-content-cards .content h3 {
  font-weight: 600;
  font-size: 1.25rem;
  line-height: 1.25;
  font-weight: 500;
}
.template-content-cards .content h3,
.template-content-cards .content .description {
  margin-bottom: 0.625rem;
}
.template-content-cards .content .description {
  display: none;
}
.template-content-cards .content .button, .template-content-cards .content .menu li.button &gt; a, .menu .template-content-cards .content li.button &gt; a {
  margin-top: auto;
  float: right;
}
.template-content-cards .content .tag-date-wrapper {
  display: flex;
  width: 100%;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
@media print, screen and (max-width: 61.74875em) {
  .template-content-cards .content .tag-date-wrapper {
    margin: 0.875rem 0;
  }
}
.template-content-cards .content .tag-date-wrapper .tag-list {
  padding: 0;
  display: flex;
  width: 100%;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 0.5rem;
}
.template-content-cards .content .tag-date-wrapper .tag-list li {
  list-style-type: none;
}
.template-content-cards .content .tag-date-wrapper .tag-list li.tag {
  font-size: 0.625rem;
  font-weight: 400;
  text-transform: uppercase;
  transition: color 0.3s;
  border: 1px solid var(--slate-mist);
  color: var(--lunar-silver);
  line-height: normal;
  padding: 4px 10px;
  border-radius: 0.25rem;
}
.template-content-cards .content .tag-date-wrapper .tag-list li.post-date {
  display: none;
  font-weight: 400;
  font-size: 0.75rem;
  line-height: normal;
  padding: 0.1875rem 0.3125rem 0.1875rem 0;
}
.template-content-cards .content .tag-date-wrapper .tag-list li.post-date.date-related-resources .post-date {
  display: none;
}
.template-content-cards .archive.tax-jbt_post_type .tag-list .post-date {
  display: block !important;
}
.template-content-cards .resource-card-post-date-container .post-date {
  padding: 0;
  margin-bottom: 0.5rem;
  color: var(--text-color);
  font-weight: 400;
  font-size: 0.75rem;
  line-height: normal;
}
.template-content-cards .tag-list-title + .tag-list-title {
  margin-bottom: 0.625rem;
}
.template-content-cards .tag-list-title p {
  font-size: 0.8125rem;
  font-weight: 700;
}
.template-content-cards .marketplace-card-content {
  padding: 1.25rem;
}
.template-content-cards .marketplace-card-content .tag-list {
  font-size: 0.75rem;
  line-height: 1.1666666667;
}
.template-content-cards .marketplace-card-content .tag-list-title + .tag-list-title {
  margin-bottom: 0.625rem;
}
.template-content-cards .marketplace-card-content .tag-list-title {
  display: flex;
  flex-direction: column;
}
.template-content-cards .marketplace-card-content .tag-list-title p {
  font-size: 1rem;
  font-weight: 700;
  margin-top: 0.5rem;
}
.template-content-cards .marketplace-card-content .tag-list {
  padding: 0;
  display: flex;
  width: 100%;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.5rem;
}
.template-content-cards .marketplace-card-content .tag-list li {
  list-style-type: none;
}
.template-content-cards .marketplace-card-content .tag-list li.accent {
  font-size: 0.625rem;
  font-weight: 400;
  text-transform: uppercase;
  transition: color 0.3s;
  border: 1px solid var(--slate-mist);
  color: var(--lunar-silver);
  line-height: normal;
  padding: 4px 10px;
  border-radius: 0.25rem;
}
.template-content-cards .marketplace-card-content .tag-list li.tag {
  font-size: 0.625rem;
  font-weight: 400;
  text-transform: uppercase;
  transition: color 0.3s;
  border: 1px solid var(--slate-mist);
  color: var(--lunar-silver);
  line-height: normal;
  padding: 4px 10px;
  border-radius: 0.25rem;
}
.template-content-cards .marketplace-card-content .tag-list li.post-date {
  display: none;
  font-weight: 400;
  font-size: 0.75rem;
  line-height: normal;
  padding: 0.1875rem 0.3125rem 0.1875rem 0;
}
.template-content-cards .marketplace-card-content .tag-list li.post-date.date-related-resources .post-date {
  display: none;
}
.template-content-cards.layout-aside .template-header .headline {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.template-content-cards.layout-aside .pagination {
  width: 100%;
}
.template-content-cards.layout-aside.two-columns .cards-grid-wrapper .item {
  width: calc(50% - 10px);
}
@media print, screen and (max-width: 25.93625em) {
  .template-content-cards.layout-aside.two-columns .cards-grid-wrapper .item {
    width: 100%;
  }
}
.template-content-cards.layout-aside.two-columns .cards-grid-wrapper .item .content {
  padding: 1.875rem;
}
.template-content-cards.layout-aside .cards-grid-wrapper {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}
.template-content-cards.layout-aside .cards-grid-wrapper .cards-grid {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
  width: 100%;
}
.template-content-cards.layout-aside .cards-grid-wrapper .cards-grid .item {
  width: calc(33.333% - 13.4px);
  background: var(--white);
  border-radius: 8px;
  overflow: hidden;
  display: flex;
}
.template-content-cards.layout-aside .cards-grid-wrapper .cards-grid .item.content-card:not(.no-link):hover {
  cursor: pointer;
}
.template-content-cards.layout-aside .cards-grid-wrapper .cards-grid .item.content-card:not(.no-link):hover h3 {
  color: var(--radiant-flame);
}
@media print, screen and (min-width: 48em) {
  .template-content-cards.layout-aside .cards-grid-wrapper .cards-grid .item.half-column {
    width: calc(50% - 13.4px);
  }
}
@media print, screen and (max-width: 61.74875em) {
  .template-content-cards.layout-aside .cards-grid-wrapper .cards-grid .item {
    width: calc(50% - 10px);
    justify-content: center;
  }
}
@media print, screen and (max-width: 25.93625em) {
  .template-content-cards.layout-aside .cards-grid-wrapper .cards-grid .item {
    width: 100%;
  }
}
.template-content-cards.layout-aside .cards-grid-wrapper .cards-grid .item .icon {
  width: 100%;
  max-width: 11.875rem;
  height: 100%;
  padding: 1.5625rem 1.25rem 1.5625rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  justify-items: stretch;
  margin-right: 1.25rem;
}
.template-content-cards.layout-aside .cards-grid-wrapper .cards-grid .item .content {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 0 1.25rem 1.25rem;
  min-width: 8.75rem;
  background: var(--white);
  height: 100%;
}
.template-content-cards.layout-aside .cards-grid-wrapper .cards-grid .item .content h3 {
  font-weight: 500;
}
.template-content-cards.layout-aside .cards-grid-wrapper .cards-grid .item .content h3 {
  font-size: 0.875rem;
}
@media screen and (min-width: 768px) {
  .template-content-cards.layout-aside .cards-grid-wrapper .cards-grid .item .content h3 {
    font-size: calc(14px + 6 * (100vw - 768px) / 256);
  }
}
@media screen and (min-width: 1024px) {
  .template-content-cards.layout-aside .cards-grid-wrapper .cards-grid .item .content h3 {
    font-size: 1.25rem;
  }
}
.template-content-cards.layout-aside .cards-grid-wrapper .cards-grid .item .content h3 + * {
  margin-top: 0.3125rem;
}
.template-content-cards.layout-aside .cards-grid-wrapper .cards-grid .item .content.marketplace-grid {
  padding: 1.25rem;
}
.template-content-cards.layout-aside .cards-grid-wrapper .cards-grid .item .content.marketplace-grid .tag-list {
  font-size: 0.75rem;
  line-height: 1.1666666667;
}
.template-content-cards.layout-aside .cards-grid-wrapper .cards-grid .item .content.marketplace-grid .tag-list-title + .tag-list-title {
  margin-bottom: 0.625rem;
}
.template-content-cards.layout-aside .cards-grid-wrapper .cards-grid .item .content.marketplace-grid .tag-list-title {
  display: flex;
  flex-direction: column;
}
.template-content-cards.layout-aside .cards-grid-wrapper .cards-grid .item .content.marketplace-grid .tag-list-title p {
  font-size: 1rem;
  font-weight: 700;
  margin-top: 0.5rem;
}
.template-content-cards.layout-aside .cards-grid-wrapper .cards-grid .item .content.marketplace-grid .tag-list {
  padding: 0;
  display: flex;
  width: 100%;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.5rem;
}
.template-content-cards.layout-aside .cards-grid-wrapper .cards-grid .item .content.marketplace-grid .tag-list li {
  list-style-type: none;
}
.template-content-cards.layout-aside .cards-grid-wrapper .cards-grid .item .content.marketplace-grid .tag-list li.accent {
  font-size: 0.625rem;
  font-weight: 400;
  text-transform: uppercase;
  transition: color 0.3s;
  border: 1px solid var(--slate-mist);
  color: var(--lunar-silver);
  line-height: normal;
  padding: 4px 10px;
  border-radius: 0.25rem;
}
.template-content-cards.layout-aside .cards-grid-wrapper .cards-grid .item .content.marketplace-grid .tag-list li.tag {
  font-size: 0.625rem;
  font-weight: 400;
  text-transform: uppercase;
  transition: color 0.3s;
  border: 1px solid var(--slate-mist);
  color: var(--lunar-silver);
  line-height: normal;
  padding: 4px 10px;
  border-radius: 0.25rem;
}
.template-content-cards.layout-aside .cards-grid-wrapper .cards-grid .item .content.marketplace-grid .tag-list li.post-date {
  display: none;
  font-weight: 400;
  font-size: 0.75rem;
  line-height: normal;
  padding: 0.1875rem 0.3125rem 0.1875rem 0;
}
.template-content-cards.layout-aside .cards-grid-wrapper .cards-grid .item .content.marketplace-grid .tag-list li.post-date.date-related-resources .post-date {
  display: none;
}
.template-content-cards.layout-aside .cards-grid-wrapper .cards-grid .item .button.simple, .template-content-cards.layout-aside .cards-grid-wrapper .cards-grid .item .menu li.button &gt; a.simple, .menu .template-content-cards.layout-aside .cards-grid-wrapper .cards-grid .item li.button &gt; a.simple {
  padding-right: 1.25rem;
  padding-bottom: 1.25rem;
  justify-content: flex-end;
}
.template-content-cards.layout-aside .content-cards-wrapper {
  display: block;
}
@media print, screen and (min-width: 48em) {
  .template-content-cards.layout-aside .content-cards-wrapper {
    display: grid;
    align-items: flex-start;
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
}
.template-content-cards.layout-aside .content-cards-wrapper .item.sort-module {
  position: relative;
  grid-column: 2/3;
  clear: both;
  margin-right: 1.25rem;
  margin-left: auto;
  z-index: 2;
}
.template-content-cards.layout-aside .content-cards-wrapper .item.sort-module .accordion-item {
  width: 100%;
  max-width: 200px;
  margin-left: auto;
  margin-bottom: 0.5rem;
}
.template-content-cards.layout-aside .content-cards-wrapper .item.sort-module .accordion-item.sort-item {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  column-gap: 0.5rem;
  max-width: 100%;
  margin-bottom: 0;
}
.template-content-cards.layout-aside .content-cards-wrapper .item.sort-module .accordion-item .fs-wrap {
  width: 150px;
  display: inline-block;
  position: relative;
  cursor: pointer;
  font-weight: 400;
}
.template-content-cards.layout-aside .content-cards-wrapper .item.sort-module .accordion-item .fs-wrap .fs-label-wrap .fs-label {
  padding: 10px 22px 10px 9px;
  font-weight: 300;
}
.template-content-cards.layout-aside .content-cards-wrapper .item.sort-module .accordion-item .fs-wrap .fs-arrow {
  width: 20px;
  height: 20px;
  border: none;
  position: absolute;
  top: 0;
  right: 5px;
  bottom: 0;
  margin: auto;
  transition: ease-in transform 0.3s;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg width='20' height='20' viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M10.0156 13.4961C9.73438 13.4961 9.48438 13.4023 9.29688 13.2148L4.29688 8.21484C3.89062 7.83984 3.89062 7.18359 4.29688 6.80859C4.67188 6.40234 5.32812 6.40234 5.70312 6.80859L10.0156 11.0898L14.2969 6.80859C14.6719 6.40234 15.3281 6.40234 15.7031 6.80859C16.1094 7.18359 16.1094 7.83984 15.7031 8.21484L10.7031 13.2148C10.5156 13.4023 10.2656 13.4961 10.0156 13.4961Z' fill='%231b3e51'/%3E%3C/svg%3E");
}
.template-content-cards.layout-aside .content-cards-wrapper .item.sort-module .accordion-item .fs-wrap .fs-options .fs-option:first-child {
  display: none;
}
.template-content-cards.layout-aside.bg-white .cards-grid-wrapper .item {
  background: var(--white);
}
.template-content-cards .hly-hub-embed {
  overflow: hidden !important;
}
@media screen and (max-width: 480px) {
  .template-content-cards .hly-hub-embed.small {
    width: auto;
  }
  .template-content-cards .hly-hub-embed.small .hly-stream {
    width: auto;
  }
}
.template-content-cards .hly-hub-embed .hly-stream {
  margin-left: -0.625rem;
  margin-right: -0.625rem;
  row-gap: 2rem;
  display: flex;
  flex-flow: row wrap;
}
.template-content-cards .hly-hub-embed .hly-stream .hly-hub-tile {
  margin: 0;
  margin-left: 0.625rem;
  margin-right: 0.625rem;
  width: calc(100% - 1.25rem);
  flex: 0 0 auto;
  min-height: 0;
  min-width: 0;
  float: none;
  box-shadow: none;
  background: var(--white);
  height: auto;
  border-radius: 0.5rem;
  border: 0;
  box-shadow: none;
  min-height: 18.75rem;
}
@media print, screen and (min-width: 48em) {
  .template-content-cards .hly-hub-embed .hly-stream .hly-hub-tile {
    width: calc(50% - 1.25rem);
  }
}
@media print, screen and (min-width: 64em) {
  .template-content-cards .hly-hub-embed .hly-stream .hly-hub-tile {
    width: calc(25% - 1.25rem);
  }
}
.template-content-cards .hly-hub-embed .hly-stream .hly-hub-tile &gt; a {
  display: block;
  height: 100%;
}
.template-content-cards .hly-hub-embed .hly-stream .hly-hub-tile &gt; a:hover .cta-button:after {
  left: 0.25rem;
}
.template-content-cards .hly-hub-embed .hly-stream .hly-hub-tile .article span {
  background: none;
  border: 0;
  padding: 1.25rem;
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  cursor: pointer;
  -webkit-user-select: none;
      -ms-user-select: none;
          user-select: none;
  border: 0;
  transition: color 0.3s, background 0.3s, border-color 0.3s, margin 0.3s;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--dark-matter);
  font-weight: 600;
}
.template-content-cards .hly-hub-embed .hly-stream .hly-hub-tile .article span::after {
  content: "";
  width: 0.875rem;
  height: 1rem;
  margin-left: 0.5rem;
  transition: margin 0.3s, right 0.3s, left 0.3s, background 0.3s;
  left: 0;
  position: relative;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg width='15' height='13' viewBox='0 0 15 13' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M13.6875 7.71875L8.6875 12.7188C8.5 12.9062 8.25 13 8 13C7.71875 13 7.46875 12.9062 7.28125 12.7188C6.875 12.3438 6.875 11.6875 7.28125 11.3125L10.5625 8H1C0.4375 8 0 7.5625 0 7C0 6.46875 0.4375 6 1 6H10.5625L7.28125 2.71875C6.875 2.34375 6.875 1.6875 7.28125 1.3125C7.65625 0.90625 8.3125 0.90625 8.6875 1.3125L13.6875 6.3125C14.0938 6.6875 14.0938 7.34375 13.6875 7.71875Z' fill='%23f44414'/%3E%3C/svg%3E");
}
.template-content-cards .hly-hub-embed .hly-stream .hly-hub-tile .article:hover span:after {
  left: 0.25rem;
}
.template-content-cards .hly-hub-embed .hly-stream .hly-hub-tile .img {
  height: 7.5rem;
}
.template-content-cards .hly-hub-embed .hly-stream .hly-hub-tile .img img {
  height: 100%;
  object-fit: cover;
}
.template-content-cards .hly-hub-embed .hly-stream .hly-hub-tile .img,
.template-content-cards .hly-hub-embed .hly-stream .hly-hub-tile .hub-tile-content {
  position: relative;
}
.template-content-cards .hly-hub-embed .hly-stream .hly-hub-tile .hub-tile-content {
  height: auto;
  padding: 1.25rem 1.25rem 3.75rem;
}
.template-content-cards .hly-hub-embed .hly-stream .hly-hub-tile .cta-tile-content {
  display: flex;
  flex-direction: column;
  position: relative;
}
.template-content-cards .hly-hub-embed .hly-stream .hly-hub-tile .cta-tile-content .cta-tile-content-tagline {
  font-weight: 600;
  font-size: 1.5rem;
  line-height: normal;
  font-size: 1.25rem !important;
  line-height: 1.25;
  font-weight: 500;
  text-align: left;
  margin: 0 !important;
  padding: 1.25rem;
  flex-grow: 1;
}
.template-content-cards .hly-hub-embed .hly-stream .hly-hub-tile .cta-tile-content .cta-button {
  background: var(--white);
  color: var(--radiant-flame) !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: color 0.3s, background 0.3s, border-color 0.3s, margin 0.3s;
  font-size: 1rem;
  line-height: 1.6;
  padding: 0.8125rem 1.75rem 0.8125rem 1.25rem;
  border-radius: 3.125rem;
  height: 3.125rem;
  font-weight: 500;
  width: calc(100% - 40px);
  margin: 1.25rem;
  position: relative;
}
.template-content-cards .hly-hub-embed .hly-stream .hly-hub-tile .cta-tile-content .cta-button::after {
  content: "";
  width: 0.875rem;
  height: 1rem;
  margin-left: 0.5rem;
  transition: margin 0.3s, right 0.3s, left 0.3s, background 0.3s;
  left: 0;
  position: relative;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg width='15' height='13' viewBox='0 0 15 13' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M13.6875 7.71875L8.6875 12.7188C8.5 12.9062 8.25 13 8 13C7.71875 13 7.46875 12.9062 7.28125 12.7188C6.875 12.3438 6.875 11.6875 7.28125 11.3125L10.5625 8H1C0.4375 8 0 7.5625 0 7C0 6.46875 0.4375 6 1 6H10.5625L7.28125 2.71875C6.875 2.34375 6.875 1.6875 7.28125 1.3125C7.65625 0.90625 8.3125 0.90625 8.6875 1.3125L13.6875 6.3125C14.0938 6.6875 14.0938 7.34375 13.6875 7.71875Z' fill='%23f44414'/%3E%3C/svg%3E");
}
.template-content-cards .hly-hub-embed .hly-stream .hly-hub-tile .cta-tile-content .cta-button:hover::after {
  left: 0.25rem;
}
.template-content-cards .hly-hub-embed .hly-stream .hly-hub-tile.small .hub-tile-content .hub-tile-content-title {
  margin: 0 !important;
  font-weight: 600;
  font-size: 1.5rem;
  line-height: normal;
  font-size: 1.25rem;
  line-height: 1.25;
  font-weight: 500;
}
.template-content-cards.bg-dark a:not(.button) {
  color: var(--text-color);
}
.template-content-cards.bg-dark .content-card .button.simple, .template-content-cards.bg-dark .content-card .menu li.button &gt; a.simple, .menu .template-content-cards.bg-dark .content-card li.button &gt; a.simple {
  color: var(--radiant-flame) !important;
  align-self: flex-end;
}
.template-content-cards.bg-dark .content-card .button.simple::after, .template-content-cards.bg-dark .content-card .menu li.button &gt; a.simple::after, .menu .template-content-cards.bg-dark .content-card li.button &gt; a.simple::after {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg width='15' height='13' viewBox='0 0 15 13' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M13.6875 7.71875L8.6875 12.7188C8.5 12.9062 8.25 13 8 13C7.71875 13 7.46875 12.9062 7.28125 12.7188C6.875 12.3438 6.875 11.6875 7.28125 11.3125L10.5625 8H1C0.4375 8 0 7.5625 0 7C0 6.46875 0.4375 6 1 6H10.5625L7.28125 2.71875C6.875 2.34375 6.875 1.6875 7.28125 1.3125C7.65625 0.90625 8.3125 0.90625 8.6875 1.3125L13.6875 6.3125C14.0938 6.6875 14.0938 7.34375 13.6875 7.71875Z' fill='%23f44414'/%3E%3C/svg%3E") !important;
}
.template-content-cards .hly-hub-embed .hly-stream .hly-hub-tile &gt; a {
  text-decoration: none;
}
.template-content-cards .hly-hub-embed .hly-stream .hly-hub-tile .cta-tile-content .cta-button[style*=background-color] {
  color: var(--dark-matter) !important;
  background: white !important;
}
.template-content-cards .hly-hub-embed .hly-stream .hly-hub-tile .cta-tile-content .cta-button[style*=background-color]:hover {
  text-decoration: none !important;
}
.template-content-cards .hly-hub-embed .hly-stream .hly-hub-tile .cta-tile-content .cta-button[style*=background-color]:after {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg width='15' height='13' viewBox='0 0 15 13' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M13.6875 7.71875L8.6875 12.7188C8.5 12.9062 8.25 13 8 13C7.71875 13 7.46875 12.9062 7.28125 12.7188C6.875 12.3438 6.875 11.6875 7.28125 11.3125L10.5625 8H1C0.4375 8 0 7.5625 0 7C0 6.46875 0.4375 6 1 6H10.5625L7.28125 2.71875C6.875 2.34375 6.875 1.6875 7.28125 1.3125C7.65625 0.90625 8.3125 0.90625 8.6875 1.3125L13.6875 6.3125C14.0938 6.6875 14.0938 7.34375 13.6875 7.71875Z' fill='%23f44414'/%3E%3C/svg%3E") !important;
}
.template-content-cards.application-grid .content {
  padding: 0 1.25rem 1.25rem;
  color: var(--dark-matter);
}
.template-content-cards.layout-image-top.jitterbitReviews .content-card .content {
  padding: 0 1.25rem 1.25rem;
}
.template-content-cards.layout-image-top.jitterbitReviews .content-card .media img {
  object-fit: contain;
}
.template-content-cards.layout-image-top .content {
  padding: 0 1.25rem;
}
.template-content-cards .content .card-inner-content {
  padding: 0 1.25rem 1.25rem;
  width: 100%;
}
.template-content-cards .related-resources-case-study .content,
.template-content-cards .archive.tax-jbt_post_type .content {
  padding: 0 1.25rem 1.25rem;
  align-items: flex-end;
}

.resource-card-post-date-container .post-date {
  padding: 0;
  margin-bottom: 0.5rem;
  color: var(--text-color);
  font-weight: 400;
  font-size: 0.75rem;
  line-height: normal;
}

body.category .template-content-cards .pagination .facetwp-facet-pagination,
body.tax-jbt_post_type .template-content-cards .pagination .facetwp-facet-pagination {
  justify-content: center;
  align-items: center;
}

.archive.tax-jbt_post_type .tag-list .post-date,
.archive.category .tag-list .post-date,
.page-template-template-resource-archive-page .tag-list .post-date {
  display: block !important;
}

.archive.tax-jbt_post_type .tag-list .tag.resource-type,
.archive.category .tag-list .tag.resource-type,
.post-template-default.single.single-post .tag-list .tag.resource-cat {
  display: none !important;
}

section.content-block.template-blog .items-wrapper {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
}
section.content-block.template-blog .items-wrapper .tag-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  column-gap: 0.625rem;
  row-gap: 0.25rem;
  margin-bottom: 0.625rem;
}
section.content-block.template-blog .items-wrapper .tag-list li {
  font-weight: 400;
  font-size: 0.75rem;
  line-height: 1.1666666667;
  padding: 0.1875rem 0.3125rem;
  background-color: var(--light-violet);
  border-radius: 0.125rem;
}
section.content-block.template-blog .items-wrapper .tag-list li.accent {
  background-color: var(--dark-matter);
  color: var(--white);
}
section.content-block.template-blog .items-wrapper .tag-list-title + .tag-list-title {
  margin-bottom: 0.625rem;
}
section.content-block.template-blog .items-wrapper .item {
  width: 100%;
  background: var(--white);
  border-radius: 8px;
  display: flex;
  max-height: initial;
  color: inherit;
  transition: box-shadow 0.6s;
}
section.content-block.template-blog .items-wrapper .item:hover {
  box-shadow: 0 0 15px rgba(29, 62, 81, 0.55);
}
@media print, screen and (max-width: 25.93625em) {
  section.content-block.template-blog .items-wrapper .item {
    flex-direction: column;
  }
}
section.content-block.template-blog .items-wrapper .item .media {
  max-width: 10rem;
  max-height: 100%;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1.25rem;
  overflow: hidden;
  border-radius: 8px 0 0 8px;
}
@media print, screen and (max-width: 25.93625em) {
  section.content-block.template-blog .items-wrapper .item .media {
    max-width: 100%;
    border-radius: 8px 8px 0 0;
    max-height: 11.25rem;
    margin-right: 0;
  }
}
section.content-block.template-blog .items-wrapper .item .media img,
section.content-block.template-blog .items-wrapper .item .media svg {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
section.content-block.template-blog .items-wrapper .item .content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 1.25rem 1.25rem 1.25rem 0;
  min-width: 8.75rem;
}
@media print, screen and (max-width: 25.93625em) {
  section.content-block.template-blog .items-wrapper .item .content {
    padding: 1rem;
  }
}
section.content-block.template-blog .items-wrapper .item .content h3 {
  font-weight: 500;
}
section.content-block.template-blog .items-wrapper .item .content h3 {
  font-size: 0.875rem;
}
@media screen and (min-width: 768px) {
  section.content-block.template-blog .items-wrapper .item .content h3 {
    font-size: calc(14px + 6 * (100vw - 768px) / 256);
  }
}
@media screen and (min-width: 1024px) {
  section.content-block.template-blog .items-wrapper .item .content h3 {
    font-size: 1.25rem;
  }
}
section.content-block.template-blog .items-wrapper .item .content h3 + * {
  margin-top: 0.3125rem;
}
section.content-block.template-blog .items-wrapper .item .content .description {
  font-size: 1rem;
}
section.content-block.template-blog .items-wrapper .item.featured {
  max-height: initial;
}
section.content-block.template-blog .items-wrapper .item.featured .media {
  max-width: 50%;
}
@media print, screen and (max-width: 25.93625em) {
  section.content-block.template-blog .items-wrapper .item.featured .media {
    max-width: 100%;
  }
}
section.content-block.template-blog .items-wrapper .item.featured .content {
  max-width: 50%;
}
@media print, screen and (max-width: 25.93625em) {
  section.content-block.template-blog .items-wrapper .item.featured .content {
    max-width: 100%;
  }
}
section.content-block.template-blog .row {
  display: flex;
  gap: 1.25rem;
  justify-content: space-between;
  align-items: flex-start;
}
@media print, screen and (max-width: 61.74875em) {
  section.content-block.template-blog .row {
    flex-direction: column;
  }
}
section.content-block.template-blog .row .items-wrapper {
  max-width: 48.75rem;
}
@media print, screen and (max-width: 61.74875em) {
  section.content-block.template-blog .row .items-wrapper {
    max-width: 100%;
  }
}
section.content-block.template-blog .row .button, section.content-block.template-blog .row .menu li.button &gt; a, .menu section.content-block.template-blog .row li.button &gt; a {
  justify-content: flex-start;
}
section.content-block.template-blog .row + .row {
  margin-top: 5rem;
}
section.content-block.template-blog .row .item.headline {
  background: none;
}

.template-single-resource .template-header .headline {
  font-weight: 600;
  line-height: 1.3333333333;
}
.template-single-resource .template-header .headline {
  font-size: 2.25rem;
}
@media screen and (min-width: 768px) {
  .template-single-resource .template-header .headline {
    font-size: calc(36px + 12 * (100vw - 768px) / 256);
  }
}
@media screen and (min-width: 1024px) {
  .template-single-resource .template-header .headline {
    font-size: 3rem;
  }
}
@media print, screen and (min-width: 48em) {
  .template-single-resource .template-header .headline {
    line-height: 1.2083333333;
  }
}
@media screen and (min-width: 63.75em) {
  .template-single-resource .template-header .preheadline {
    margin-top: -1.4375rem;
  }
}
.template-single-resource .description-img {
  position: relative;
}
.template-single-resource .description-img img {
  display: block;
}
@media print, screen and (max-width: 79.99875em) {
  .template-single-resource .description-img img {
    margin-bottom: 0;
  }
}
.template-single-resource .description-img p {
  font-weight: 400;
  font-size: 0.75rem;
  line-height: 1.1666666667;
  background-color: rgba(255, 255, 255, 0.7);
  padding: 1rem;
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media print, screen and (min-width: 64em) {
  .template-single-resource .description-img p {
    padding: 1.875rem;
    background-color: var(--white);
    bottom: 1.25rem;
    left: 1.25rem;
    max-width: 19.625rem;
  }
}
.template-single-resource .module.text-editor,
.template-single-resource .module.text-editor .wp-caption .wp-caption-text {
  font-weight: 300;
  font-size: 1rem;
  line-height: 1.5;
}
.template-single-resource .highlight-item ul {
  margin: 0;
}
.template-single-resource .highlight-item .highlight-headline + * {
  margin-top: 1rem;
}
.template-single-resource .highlight-item + .highlight-item {
  margin-top: 1.5rem;
}
.template-single-resource .wp-caption {
  position: relative;
  width: 100% !important;
}
.template-single-resource .wp-caption img {
  display: block;
  width: 100%;
}
@media print, screen and (max-width: 79.99875em) {
  .template-single-resource .wp-caption img {
    margin-bottom: 0;
  }
}
.template-single-resource .wp-caption .wp-caption-text {
  font-weight: 400;
  font-size: 0.75rem;
  line-height: 1.1666666667;
  background-color: rgba(255, 255, 255, 0.7);
  padding: 1rem;
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media print, screen and (min-width: 64em) {
  .template-single-resource .wp-caption .wp-caption-text {
    padding: 1.875rem;
    background-color: var(--white);
    bottom: 1.25rem;
    left: 1.25rem;
    max-width: 19.625rem;
  }
}
.template-single-resource .resource-image-img {
  margin-bottom: 2.5rem;
  text-align: center;
}
@media print, screen and (min-width: 64em) {
  .template-single-resource .resource-image-img {
    margin-bottom: 5rem;
  }
  .template-single-resource .resource-image-img img {
    max-height: 39.375rem;
    width: auto;
    object-fit: contain;
  }
}
.template-single-resource .text-editor h2,
.template-single-resource .text-editor h3,
.template-single-resource .text-editor h4 {
  font-weight: 500;
  line-height: 1.5;
}
.template-single-resource .text-editor h2,
.template-single-resource .text-editor h3,
.template-single-resource .text-editor h4 {
  font-size: 1.25rem;
}
@media screen and (min-width: 768px) {
  .template-single-resource .text-editor h2,
  .template-single-resource .text-editor h3,
  .template-single-resource .text-editor h4 {
    font-size: calc(20px + 4 * (100vw - 768px) / 256);
  }
}
@media screen and (min-width: 1024px) {
  .template-single-resource .text-editor h2,
  .template-single-resource .text-editor h3,
  .template-single-resource .text-editor h4 {
    font-size: 1.5rem;
  }
}
.template-single-resource .text-editor &gt; h4 {
  font-weight: 500;
}
.template-single-resource .text-editor &gt; p {
  font-weight: 300;
}
.template-single-resource .podcast-viewer &gt; * {
  margin: 0;
}
.template-single-resource .podcast-viewer + * {
  margin-top: 2.16rem;
}
@media print, screen and (min-width: 48em) {
  .template-single-resource .podcast-viewer + * {
    margin-top: 2.4rem;
  }
}
@media print, screen and (min-width: 64em) {
  .template-single-resource .podcast-viewer + * {
    margin-top: 3rem;
  }
}
.template-single-resource * + .podcast-viewer {
  margin-top: 2.16rem;
}
@media print, screen and (min-width: 48em) {
  .template-single-resource * + .podcast-viewer {
    margin-top: 2.4rem;
  }
}
@media print, screen and (min-width: 64em) {
  .template-single-resource * + .podcast-viewer {
    margin-top: 3rem;
  }
}
.template-single-resource .module.video {
  margin-top: 2.5rem;
}
@media print, screen and (min-width: 64em) {
  .template-single-resource .module.video {
    margin-top: 5rem;
  }
}
.template-single-resource .template-header-wrapper .template-header {
  margin-bottom: 2.5rem;
}
@media print, screen and (min-width: 64em) {
  .template-single-resource .template-header-wrapper .template-header {
    margin-bottom: 5rem;
  }
}
.template-single-resource .single-post-content {
  max-width: 61rem;
  margin-right: auto;
  margin-left: auto;
}
.template-single-resource .single-post-content .social-button-wrap {
  display: flex;
  align-items: baseline;
  column-gap: 0.5rem;
}
.template-single-resource .single-post-content .social-button-wrap .social-share-text {
  position: relative;
  bottom: 3px;
}
.template-single-resource .single-post-content .shared-counts-wrap {
  display: flex;
  justify-content: flex-start;
  align-items: baseline;
  width: 100%;
  max-width: 100px;
  margin: 2rem 0 0;
  overflow: hidden;
  color: var(--dark-matter);
  font-size: 1rem;
  column-gap: 0.5rem;
}
.template-single-resource .single-post-content .shared-counts-wrap .twitter svg {
  height: 1.5625rem;
}
.template-single-resource .single-post-content .shared-counts-wrap .shared-counts-button {
  width: 100%;
  height: auto;
  min-height: 32px;
  align-self: baseline;
}
.template-single-resource .single-post-content .shared-counts-wrap .shared-counts-label {
  display: none;
}
.template-single-resource .template-header {
  max-width: 48.75rem;
  margin-left: auto;
  margin-right: auto;
}
.template-single-resource[class*=resource-type-] {
  margin-top: 2.5rem;
  /************************
    Start Media Queries
  ************************/
  /************************
    End Media Queries
  ************************/
}
.template-single-resource[class*=resource-type-] h2,
.template-single-resource[class*=resource-type-] h2 a {
  display: inline-block;
  margin: 2.5rem 0 1.25rem 0 !important;
  font-size: 1.625rem !important;
  font-weight: 500 !important;
}
.template-single-resource[class*=resource-type-] h2::after {
  content: "";
  display: block;
  width: 6.25rem;
  height: 0.25rem;
  background-color: var(--radiant-flame);
}
.template-single-resource[class*=resource-type-] h3,
.template-single-resource[class*=resource-type-] h3 a {
  font-size: 1.25rem !important;
  font-weight: 500 !important;
  margin-top: 1.875rem !important;
}
.template-single-resource[class*=resource-type-] h4,
.template-single-resource[class*=resource-type-] h4 a {
  font-size: 1rem !important;
  font-weight: 500 !important;
  line-height: 1;
  text-transform: uppercase;
}
.template-single-resource[class*=resource-type-] ol,
.template-single-resource[class*=resource-type-] ul {
  padding-left: 2rem;
}
.template-single-resource[class*=resource-type-] ol li,
.template-single-resource[class*=resource-type-] ul li {
  margin-bottom: 0.5rem;
}
.template-single-resource[class*=resource-type-] ol li::marker,
.template-single-resource[class*=resource-type-] ul li::marker {
  font-size: 1rem !important;
}
.template-single-resource[class*=resource-type-] section.resource-type-blog-x ol ul,
.template-single-resource[class*=resource-type-] section.resource-type-blog ol li ul li::marker {
  list-style-type: disc !important;
}
.template-single-resource[class*=resource-type-] .template-header-wrapper .template-header {
  position: relative;
  width: 100%;
  max-width: 75.625rem;
  margin-bottom: 1rem !important;
  left: 0;
}
.template-single-resource[class*=resource-type-] .template-header-wrapper .template-header h1.headline {
  font-size: 2.5rem !important;
}
.template-single-resource[class*=resource-type-] .single-post-content .blog-intro {
  margin-bottom: 0;
}
.template-single-resource[class*=resource-type-] .single-post-content .blog-intro &gt; hr {
  width: 50%;
  margin: 0 auto;
}
.template-single-resource[class*=resource-type-] .single-post-content .blog-intro .attribution {
  margin-bottom: 3rem;
  font-size: 1rem;
}
.template-single-resource[class*=resource-type-] .hero-wrapper {
  display: flex;
  flex-direction: row;
  gap: 0;
  margin-top: 0;
  margin-bottom: 2rem;
}
.template-single-resource[class*=resource-type-] .hero-wrapper .tags-preheadline {
  display: flex;
  flex-wrap: wrap;
  row-gap: 0.5rem;
}
@media print, screen and (max-width: 61.74875em) {
  .template-single-resource[class*=resource-type-] .hero-wrapper .tags-preheadline {
    margin: 0.875rem 0;
  }
}
@media print, screen and (max-width: 39.68625em) {
  .template-single-resource[class*=resource-type-] .hero-wrapper .tags-preheadline {
    margin-top: 0;
  }
}
.template-single-resource[class*=resource-type-] .hero-wrapper .tags-preheadline a {
  font-size: 0.75rem;
  font-weight: 400;
  text-transform: uppercase;
  transition: color 0.3s;
  border: 1px solid var(--slate-mist);
  border-radius: 0.25rem;
  padding: 4px 10px;
  color: var(--lunar-silver);
  line-height: normal;
}
.template-single-resource[class*=resource-type-] .hero-wrapper .tags-preheadline a:hover {
  color: var(--radiant-flame);
}
@media print, screen and (min-width: 48em) {
  .template-single-resource[class*=resource-type-] .hero-wrapper .hero-content {
    flex: 0 0 60%;
    padding-right: 2.25rem;
  }
  .template-single-resource[class*=resource-type-] .hero-wrapper .hero-graphic {
    flex: 0 0 40%;
  }
}
@media print, screen and (max-width: 61.74875em) {
  .template-single-resource[class*=resource-type-] .hero-wrapper .hero-wrapper {
    display: block;
  }
  .template-single-resource[class*=resource-type-] .hero-wrapper .hero-content {
    padding-right: 1.75rem;
    flex: auto;
  }
  .template-single-resource[class*=resource-type-] .hero-wrapper .hero-graphic {
    display: none;
  }
}
.template-single-resource[class*=resource-type-] .hero-wrapper .hero-content {
  display: flex;
  flex-direction: column;
}
.template-single-resource[class*=resource-type-] .hero-wrapper .hero-content .post-date {
  margin-bottom: 1.75rem;
  font-size: 0.875rem;
  line-height: normal;
}
.template-single-resource[class*=resource-type-] .hero-wrapper .hero-content .intro {
  margin-top: 2rem;
  margin-bottom: 1.25rem;
  font-size: 1.5rem;
  font-weight: 300;
}
.template-single-resource[class*=resource-type-] .hero-wrapper .attribution {
  margin-bottom: 3rem;
  font-size: 1rem;
}
.template-single-resource[class*=resource-type-] .hero-wrapper .hero-graphic {
  margin-bottom: 0;
}
.template-single-resource[class*=resource-type-] .hero-wrapper .hero-graphic .resource-image-img {
  margin-bottom: 0;
}
.template-single-resource[class*=resource-type-] .hero-wrapper .hero-graphic .resource-image-img img {
  aspect-ratio: 1/1;
  object-fit: cover;
  margin-bottom: 0;
  object-position: right;
}
@media print, screen and (min-width: 64em) {
  .template-single-resource[class*=resource-type-] .grid-container {
    max-width: 61rem;
  }
}
@media print, screen and (max-width: 25.93625em) {
  .template-single-resource[class*=resource-type-] .template-header-wrapper .template-header {
    margin-bottom: 0.25rem !important;
  }
}

@media print, screen and (min-width: 64em) {
  .template-single-resource .resource-image-img {
    max-width: 48.75rem;
    margin-left: auto;
    margin-right: auto;
  }
}
@media print, screen and (max-width: 25.93625em) {
  section.content-block.template-team .template-header-wrapper {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }
}
section.content-block.template-team .team-list {
  row-gap: 1.25rem;
}
section.content-block.template-team .header-button {
  margin-right: 0.75rem;
}
section.content-block.template-team .team-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background-color: var(--white);
  border-radius: 0.5rem;
  padding: 1.25rem;
}
section.content-block.template-team .team-card:hover, section.content-block.template-team .team-card:active {
  color: inherit;
}
section.content-block.template-team .team-card:hover .button::after, section.content-block.template-team .team-card:hover .menu li.button &gt; a::after, .menu section.content-block.template-team .team-card:hover li.button &gt; a::after, section.content-block.template-team .team-card:active .button::after, section.content-block.template-team .team-card:active .menu li.button &gt; a::after, .menu section.content-block.template-team .team-card:active li.button &gt; a::after {
  left: 0.25rem;
}
section.content-block.template-team .team-card .button, section.content-block.template-team .team-card .menu li.button &gt; a, .menu section.content-block.template-team .team-card li.button &gt; a {
  margin-top: auto;
}
section.content-block.template-team .person-img {
  max-width: 9.375rem;
  min-width: 9.375rem;
  max-height: 9.375rem;
  min-height: 9.375rem;
  margin-bottom: 0.625rem;
  position: relative;
}
section.content-block.template-team .person-img .linkedin-link {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 3;
}
section.content-block.template-team .person-img .linkedin-link svg, section.content-block.template-team .person-img .linkedin-link img {
  width: 2.5rem;
  height: 2.5rem;
  background: white;
  border-radius: 100%;
  border: 2px solid white;
}
section.content-block.template-team .person-img .linkedin-link path {
  fill: var(--dark-matter) !important;
}
section.content-block.template-team .person-img .img-wrapper {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 4px solid var(--icy-blue);
  overflow: hidden;
}
section.content-block.template-team .person-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
section.content-block.template-team .person-name {
  font-weight: 600;
  margin-bottom: 0.625rem;
}
section.content-block.template-team .person-description {
  margin-bottom: 1.25rem;
}
@media print, screen and (max-width: 25.93625em) {
  section.content-block.template-team .person-description {
    font-size: 0.875rem;
  }
}
section.content-block.template-team .person-job-title {
  margin-bottom: 1.25rem;
}
@media print, screen and (max-width: 25.93625em) {
  section.content-block.template-team .person-job-title {
    font-size: 0.875rem;
  }
}
section.content-block.template-team.bg-dark .team-card {
  color: var(--text-color);
}
section.content-block.template-team.bg-dark .team-card .button.simple, section.content-block.template-team.bg-dark .team-card .menu li.button &gt; a.simple, .menu section.content-block.template-team.bg-dark .team-card li.button &gt; a.simple {
  color: var(--dark-matter) !important;
}
section.content-block.template-team.bg-dark .team-card .button.simple::after, section.content-block.template-team.bg-dark .team-card .menu li.button &gt; a.simple::after, .menu section.content-block.template-team.bg-dark .team-card li.button &gt; a.simple::after {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg width='15' height='13' viewBox='0 0 15 13' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M13.6875 7.71875L8.6875 12.7188C8.5 12.9062 8.25 13 8 13C7.71875 13 7.46875 12.9062 7.28125 12.7188C6.875 12.3438 6.875 11.6875 7.28125 11.3125L10.5625 8H1C0.4375 8 0 7.5625 0 7C0 6.46875 0.4375 6 1 6H10.5625L7.28125 2.71875C6.875 2.34375 6.875 1.6875 7.28125 1.3125C7.65625 0.90625 8.3125 0.90625 8.6875 1.3125L13.6875 6.3125C14.0938 6.6875 14.0938 7.34375 13.6875 7.71875Z' fill='%23f44414'/%3E%3C/svg%3E") !important;
}

section.content-block.template-marketplace-entries .items-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
}
section.content-block.template-marketplace-entries .items-wrapper .item {
  width: calc(33.333% - 13.3333333333px);
  padding: 1.875rem;
  background: var(--white);
  display: flex;
  flex-direction: column;
}
@media print, screen and (max-width: 61.74875em) {
  section.content-block.template-marketplace-entries .items-wrapper .item {
    width: calc(50% - 10px);
  }
}
@media print, screen and (max-width: 25.93625em) {
  section.content-block.template-marketplace-entries .items-wrapper .item {
    width: 100%;
  }
}
section.content-block.template-marketplace-entries .items-wrapper .item .preheadline {
  font-weight: 400;
  font-size: 0.75rem;
  line-height: 1.1666666667;
  padding: 0.1875rem 0.3125rem;
  border-radius: 0.125rem;
  background-color: var(--dark-matter);
  color: var(--white);
  width: -moz-fit-content;
  width: fit-content;
}
section.content-block.template-marketplace-entries .items-wrapper .item .preheadline + * {
  margin-top: 0.625rem;
}
section.content-block.template-marketplace-entries .items-wrapper .item h3 {
  font-weight: 600;
  font-size: 1.25rem;
  line-height: 1.25;
  font-weight: 500;
}
section.content-block.template-marketplace-entries .items-wrapper .item h3 + * {
  margin-top: 0.625rem;
}
section.content-block.template-marketplace-entries .items-wrapper .item * + .tags-wrapper {
  margin-top: 0.625rem;
}
section.content-block.template-marketplace-entries .items-wrapper .item .tags-wrapper:last-of-type {
  margin-bottom: 1.25rem;
}
section.content-block.template-marketplace-entries .items-wrapper .item .tags-wrapper + * {
  margin-top: 1.25rem;
}
section.content-block.template-marketplace-entries .items-wrapper .item .tags-wrapper .title + * {
  margin-top: 0.3125rem;
}
section.content-block.template-marketplace-entries .items-wrapper .item a.button, section.content-block.template-marketplace-entries .items-wrapper .item .menu li.button &gt; a, .menu section.content-block.template-marketplace-entries .items-wrapper .item li.button &gt; a {
  justify-content: flex-start;
  margin-top: auto;
}
section.content-block.template-marketplace-entries .items-wrapper .item .tags {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  column-gap: 0.625rem;
  row-gap: 0.3125rem;
}
section.content-block.template-marketplace-entries .items-wrapper .item .tags li {
  font-weight: 400;
  font-size: 0.75rem;
  line-height: 1.1666666667;
  padding: 0.1875rem 0.3125rem;
  background-color: var(--light-violet);
  border-radius: 0.125rem;
}
section.content-block.template-marketplace-entries .items-wrapper .item .tags li.accent {
  background-color: var(--dark-matter);
  color: var(--white);
}

section.content-block.template-table:not(.layout-accordion) .table {
  display: flex;
  flex-direction: column;
  background: var(--white);
  padding: 2.5rem;
}
@media print, screen and (max-width: 25.93625em) {
  section.content-block.template-table:not(.layout-accordion) .table {
    padding: 0.625rem;
  }
}
section.content-block.template-table:not(.layout-accordion) .table .row {
  display: flex;
  justify-content: space-between;
  gap: 1.25rem;
  min-height: 2.5rem;
  align-items: center;
}
@media print, screen and (min-width: 48em) {
  section.content-block.template-table:not(.layout-accordion) .table .row {
    padding-left: 0.625rem;
    padding-right: 0.625rem;
    gap: 0.625rem;
  }
}
section.content-block.template-table:not(.layout-accordion) .table .row:not(.header):not(:last-child) {
  border-bottom: 1px solid var(--icy-blue);
}
section.content-block.template-table:not(.layout-accordion) .table .row.header {
  margin-bottom: 0.625rem;
}
section.content-block.template-table:not(.layout-accordion) .table .row.header .item:first-child {
  font-weight: 600;
}
section.content-block.template-table:not(.layout-accordion) .table .row.row-header {
  background-color: var(--icy-blue);
}
section.content-block.template-table:not(.layout-accordion) .table .row.row-header h5 {
  text-transform: uppercase;
}
section.content-block.template-table:not(.layout-accordion) .table .row .table-tooltip {
  display: inline-block;
  border-bottom: 1px dotted var(--velvet-indigo);
}
section.content-block.template-table:not(.layout-accordion) .table .row .tippy-box {
  background-color: var(--dark-matter);
}
section.content-block.template-table:not(.layout-accordion) .table .row .tippy-arrow {
  color: var(--dark-matter);
}
section.content-block.template-table:not(.layout-accordion) .table .row .tippy-content {
  word-break: normal !important;
}
section.content-block.template-table:not(.layout-accordion) .table .row .item {
  word-break: normal !important;
}
@media print, screen and (max-width: 25.93625em) {
  section.content-block.template-table:not(.layout-accordion) .table .row .item {
    padding: 0.3125rem 0;
  }
}
section.content-block.template-table:not(.layout-accordion) .table .row .item:first-child {
  width: calc(48% - 13.3333333333px);
}
@media print, screen and (max-width: 25.93625em) {
  section.content-block.template-table:not(.layout-accordion) .table .row .item:first-child {
    width: calc(50% - 6.6666666667px);
  }
}
section.content-block.template-table:not(.layout-accordion) .table .row .item:first-child span {
  display: block;
  font-size: 0.75rem;
  line-height: 0.875rem;
}
section.content-block.template-table:not(.layout-accordion) .table .row .item:not(:first-child) {
  width: calc(26% - 13.3333333333px);
  display: flex;
  align-items: center;
  text-align: center;
  justify-content: center;
}
@media print, screen and (max-width: 25.93625em) {
  section.content-block.template-table:not(.layout-accordion) .table .row .item:not(:first-child) {
    width: calc(25% - 6.6666666667px);
  }
}
section.content-block.template-table.layout-accordion .table {
  display: flex;
  flex-direction: column;
  background: var(--white);
  padding: 2.5rem;
}
@media print, screen and (max-width: 25.93625em) {
  section.content-block.template-table.layout-accordion .table {
    padding: 0.625rem;
  }
}
section.content-block.template-table.layout-accordion .table .row {
  display: flex;
  justify-content: flex-start;
  gap: 1.25rem;
  align-items: flex-start;
  padding-top: 0.46875rem;
  padding-bottom: 0.46875rem;
}
@media print, screen and (min-width: 48em) {
  section.content-block.template-table.layout-accordion .table .row {
    padding-left: 0.625rem;
    padding-right: 0.625rem;
    gap: 0.625rem;
  }
}
section.content-block.template-table.layout-accordion .table .row:not(.header):not(:last-child) {
  border-bottom: 1px solid var(--icy-blue);
}
section.content-block.template-table.layout-accordion .table .row.header {
  margin-bottom: 0.625rem;
}
section.content-block.template-table.layout-accordion .table .row.header .item {
  font-weight: 600;
}
section.content-block.template-table.layout-accordion .table .row .item:not(.accordion-item) {
  min-width: 5rem;
}
@media print, screen and (max-width: 25.93625em) {
  section.content-block.template-table.layout-accordion .table .row .item:not(.accordion-item) {
    min-width: 2.5rem;
  }
}
section.content-block.template-table.layout-accordion .table .row .accordions-wrapper {
  width: calc(100% - 80px);
}
@media print, screen and (max-width: 25.93625em) {
  section.content-block.template-table.layout-accordion .table .row .accordions-wrapper {
    width: calc(100% - 40px);
  }
}
section.content-block.template-table.layout-accordion .table .row .accordions-wrapper .accordion-title {
  padding: 0 5rem 0 0;
  background: none;
  border: none;
  font-weight: 300;
  font-size: 1rem;
  line-height: 1.5;
  color: var(--text-color);
}
@media print, screen and (max-width: 25.93625em) {
  section.content-block.template-table.layout-accordion .table .row .accordions-wrapper .accordion-title {
    padding-right: 3rem;
  }
}
section.content-block.template-table.layout-accordion .table .row .accordions-wrapper .accordion-title::before {
  content: "";
  width: 1.25rem;
  height: 1.25rem;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg width='20' height='21' viewBox='0 0 20 21' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M10 14C9.78906 14 9.60156 13.9297 9.46094 13.7891L5.71094 10.0391C5.40625 9.75781 5.40625 9.26562 5.71094 8.98438C5.99219 8.67969 6.48438 8.67969 6.76562 8.98438L10 12.1953L13.2109 8.98438C13.4922 8.67969 13.9844 8.67969 14.2656 8.98438C14.5703 9.26562 14.5703 9.75781 14.2656 10.0391L10.5156 13.7891C10.375 13.9297 10.1875 14 10 14Z' fill='%230F0225'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
  transition: transform 0.3s;
}
section.content-block.template-table.layout-accordion .table .row .accordions-wrapper .item.is-active .accordion-title::before {
  transform: rotate(180deg);
}
section.content-block.template-table.layout-accordion .table .row .accordions-wrapper .accordion-content {
  padding: 1.375rem 5rem 0.6875rem 0;
  background: none;
  border: none;
  font-weight: 300;
  font-size: 1rem;
  line-height: 1.5;
  color: var(--text-color);
}
@media print, screen and (max-width: 25.93625em) {
  section.content-block.template-table.layout-accordion .table .row .accordions-wrapper .accordion-content {
    padding: 0.75rem 3rem 0.75rem 0;
  }
}
section.content-block.template-table .table-footnotes {
  margin-top: 1rem;
  font-size: 0.875rem;
}
section.content-block.template-table.bg-dark .table {
  color: var(--text-color);
}
section.content-block.template-table.bg-dark .table .button.simple, section.content-block.template-table.bg-dark .table .menu li.button &gt; a.simple, .menu section.content-block.template-table.bg-dark .table li.button &gt; a.simple {
  color: var(--dark-matter) !important;
}
section.content-block.template-table.bg-dark .table .button.simple::after, section.content-block.template-table.bg-dark .table .menu li.button &gt; a.simple::after, .menu section.content-block.template-table.bg-dark .table li.button &gt; a.simple::after {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg width='15' height='13' viewBox='0 0 15 13' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M13.6875 7.71875L8.6875 12.7188C8.5 12.9062 8.25 13 8 13C7.71875 13 7.46875 12.9062 7.28125 12.7188C6.875 12.3438 6.875 11.6875 7.28125 11.3125L10.5625 8H1C0.4375 8 0 7.5625 0 7C0 6.46875 0.4375 6 1 6H10.5625L7.28125 2.71875C6.875 2.34375 6.875 1.6875 7.28125 1.3125C7.65625 0.90625 8.3125 0.90625 8.6875 1.3125L13.6875 6.3125C14.0938 6.6875 14.0938 7.34375 13.6875 7.71875Z' fill='%23f44414'/%3E%3C/svg%3E") !important;
}

section.content-block.template-animated-asset .lottie-animation,
section.content-block.template-animated-asset .tabs-graphic-container,
section.content-block.template-animated-asset .tabs-graphic {
  width: 100%;
  height: 100%;
}

section.content-block.template-interactive-plugin .plugin-container {
  display: flex;
  flex-wrap: wrap;
  overflow: hidden;
}
@media print, screen and (min-width: 48em) {
  section.content-block.template-interactive-plugin .plugin-container {
    box-shadow: 0 0 15px rgba(29, 62, 81, 0.55);
    border-radius: 0.5rem;
    background: var(--light-violet);
    padding: 1.5rem 4.625rem;
  }
}
section.content-block.template-interactive-plugin .swiper-container {
  position: relative;
  padding-top: 2rem;
  padding-bottom: 2rem;
  max-width: 15.625rem;
}
@media print, screen and (min-width: 64em) {
  section.content-block.template-interactive-plugin .swiper-container {
    padding-top: 4.25rem;
    padding-bottom: 4.25rem;
  }
}
section.content-block.template-interactive-plugin .swiper-button-prev,
section.content-block.template-interactive-plugin .swiper-button-next {
  position: absolute;
  background: url("data:image/svg+xml;charset=utf8,%3Csvg width='46' height='19' viewBox='0 0 46 19' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M44.9407 15.224L23.5547 0.966001C23.3904 0.856362 23.1972 0.797852 22.9997 0.797852C22.8021 0.797852 22.609 0.856362 22.4447 0.966001L1.05869 15.224C0.838121 15.371 0.684942 15.5996 0.632814 15.8595C0.580685 16.1194 0.633873 16.3893 0.780689 16.61L1.89069 18.274C2.03769 18.4946 2.26626 18.6477 2.52615 18.6999C2.78604 18.752 3.05599 18.6988 3.27669 18.552L22.9997 5.4L42.7227 18.552C42.9434 18.6988 43.2133 18.752 43.4732 18.6999C43.7331 18.6477 43.9617 18.4946 44.1087 18.274L45.2187 16.61C45.3655 16.3893 45.4187 16.1194 45.3666 15.8595C45.3144 15.5996 45.1613 15.371 44.9407 15.224Z' fill='%233B3448'/%3E%3C/svg%3E") no-repeat 50% 50%;
  width: 2rem;
  height: 2rem;
  z-index: 20;
  background-size: 1.25rem 0.625rem;
  cursor: pointer;
  left: 50%;
  margin-left: -1rem;
}
section.content-block.template-interactive-plugin .swiper-button-prev.swiper-button-disabled,
section.content-block.template-interactive-plugin .swiper-button-next.swiper-button-disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
@media print, screen and (min-width: 64em) {
  section.content-block.template-interactive-plugin .swiper-button-prev,
  section.content-block.template-interactive-plugin .swiper-button-next {
    width: 3rem;
    height: 3rem;
    background-size: 2.875rem 1.1875rem;
    margin-left: -1.5rem;
  }
}
section.content-block.template-interactive-plugin .swiper-button-prev {
  transform: rotate(0deg);
  top: 0;
}
section.content-block.template-interactive-plugin .swiper-button-next {
  transform: rotate(180deg);
  bottom: 0;
}
section.content-block.template-interactive-plugin .app {
  background: var(--white);
  border: 0.25rem solid rgba(0, 0, 0, 0.1);
  border-radius: 15px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  position: relative;
  cursor: pointer;
}
section.content-block.template-interactive-plugin .app:before {
  content: "";
  display: block;
  padding-top: 59%;
}
section.content-block.template-interactive-plugin .app img,
section.content-block.template-interactive-plugin .app svg {
  display: block;
  width: 80%;
  height: 50%;
  max-width: 9.625rem;
  max-height: 3.75rem;
  object-fit: contain;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
section.content-block.template-interactive-plugin .app.is-active {
  border-color: var(--dark-matter);
}
section.content-block.template-interactive-plugin .to-apps .app.is-active {
  border-color: var(--cool-wave);
}
section.content-block.template-interactive-plugin .buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  row-gap: 0.625rem;
  column-gap: 1.25rem;
  margin-top: 2rem;
  transition: opacity 0.6s;
}
section.content-block.template-interactive-plugin .buttons .button, section.content-block.template-interactive-plugin .buttons .menu li.button &gt; a, .menu section.content-block.template-interactive-plugin .buttons li.button &gt; a {
  opacity: 0.5;
  pointer-events: none;
}
section.content-block.template-interactive-plugin header {
  text-align: center;
  max-width: 35.9375rem;
  margin-left: auto;
  margin-right: auto;
  margin-top: 2.5rem;
}
section.content-block.template-interactive-plugin header .title {
  font-weight: 600;
  line-height: 1.3333333333;
}
section.content-block.template-interactive-plugin header .title {
  font-size: 2.25rem;
}
@media screen and (min-width: 768px) {
  section.content-block.template-interactive-plugin header .title {
    font-size: calc(36px + 12 * (100vw - 768px) / 256);
  }
}
@media screen and (min-width: 1024px) {
  section.content-block.template-interactive-plugin header .title {
    font-size: 3rem;
  }
}
@media print, screen and (min-width: 48em) {
  section.content-block.template-interactive-plugin header .title {
    line-height: 1.2083333333;
  }
}
section.content-block.template-interactive-plugin header .description {
  font-weight: 300;
  line-height: normal;
  margin-top: 0.625rem;
}
section.content-block.template-interactive-plugin header .description {
  font-size: 1.25rem;
}
@media screen and (min-width: 768px) {
  section.content-block.template-interactive-plugin header .description {
    font-size: calc(20px + 4 * (100vw - 768px) / 256);
  }
}
@media screen and (min-width: 1024px) {
  section.content-block.template-interactive-plugin header .description {
    font-size: 1.5rem;
  }
}
section.content-block.template-interactive-plugin header.header-mobile {
  width: 100%;
  margin-bottom: 2rem;
}
@media print, screen and (min-width: 64em) {
  section.content-block.template-interactive-plugin header.header-mobile {
    display: none;
  }
}
section.content-block.template-interactive-plugin header.header-desktop {
  display: none;
}
@media print, screen and (min-width: 64em) {
  section.content-block.template-interactive-plugin header.header-desktop {
    display: block;
    margin-bottom: 3.5625rem;
  }
}
section.content-block.template-interactive-plugin .info {
  order: 10;
  width: 100%;
}
@media print, screen and (min-width: 64em) {
  section.content-block.template-interactive-plugin .info {
    order: initial;
    width: calc(100% - 24.25rem);
    align-self: center;
  }
}
@media (min-height: 1034px) {
  section.content-block.template-interactive-plugin .info {
    padding-top: 13.5%;
    align-self: flex-start;
  }
}
section.content-block.template-interactive-plugin .from-apps,
section.content-block.template-interactive-plugin .to-apps {
  width: 50%;
}
@media print, screen and (min-width: 64em) {
  section.content-block.template-interactive-plugin .from-apps,
  section.content-block.template-interactive-plugin .to-apps {
    width: 12.125rem;
  }
}
section.content-block.template-interactive-plugin .select-app-message {
  width: 31.25rem;
  text-align: center;
  margin-top: 0.9375rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.6s;
  color: #0f0225;
  font-weight: bold;
}
section.content-block.template-interactive-plugin .from-apps {
  padding-right: 0.625rem;
}
section.content-block.template-interactive-plugin .from-apps .swiper-container {
  margin-left: auto;
}
@media print, screen and (min-width: 64em) {
  section.content-block.template-interactive-plugin .from-apps {
    padding-right: 0;
  }
}
section.content-block.template-interactive-plugin .to-apps {
  padding-left: 0.625rem;
}
@media print, screen and (min-width: 64em) {
  section.content-block.template-interactive-plugin .to-apps {
    padding-left: 0;
  }
}
section.content-block.template-interactive-plugin .logo-cords {
  display: none;
}
@media print, screen and (min-width: 64em) {
  section.content-block.template-interactive-plugin .logo-cords {
    display: block;
    position: relative;
    margin-bottom: 3.75rem;
  }
  section.content-block.template-interactive-plugin .logo-cords .cords-logo {
    display: block;
    max-width: 18.125rem;
    margin-left: auto;
    margin-right: auto;
    position: relative;
  }
  section.content-block.template-interactive-plugin .logo-cords .cords-logo img {
    display: block;
    width: 100%;
    position: relative;
    z-index: 2;
  }
  section.content-block.template-interactive-plugin .logo-cords .cords-logo:after {
    content: "";
    display: block;
    box-shadow: 99px 103.4px 82.7197px rgba(0, 0, 0, 0.280353), 54.45px 55.2824px 44.2259px rgba(0, 0, 0, 0.232482), 29.7px 30.9908px 24.7927px rgba(0, 0, 0, 0.195), 14.85px 16.459px 13.1672px rgba(0, 0, 0, 0.157518), 4.95px 6.84896px 5.47917px rgba(0, 0, 0, 0.109647);
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    opacity: 0.6;
    width: calc(100% - 10px);
    border-radius: 0.5rem;
  }
  section.content-block.template-interactive-plugin .logo-cords .cord {
    position: absolute;
  }
  section.content-block.template-interactive-plugin .logo-cords .cord.cord-blue {
    width: 62.5rem;
    right: 65%;
    top: -74%;
    transform: translateX(-100%);
    transition: transform 1s;
  }
  section.content-block.template-interactive-plugin .logo-cords .cord.cord-red-1 {
    left: 65%;
    top: -13%;
    width: 38.125rem;
    transform: translateX(100%);
    transition: transform 1s;
  }
  section.content-block.template-interactive-plugin .logo-cords .cord.cord-red-2 {
    width: 37rem;
    left: 65%;
    top: 62%;
    transform: translateX(100%);
    transition: transform 1s;
  }
}
section.content-block.template-interactive-plugin.animate-from-cord .cord.cord-blue {
  transform: translateX(0);
}
section.content-block.template-interactive-plugin.animate-to-cord-1 .cord.cord-red-1 {
  transform: translateX(0);
}
section.content-block.template-interactive-plugin.animate-to-cord-2 .cord.cord-red-2 {
  transform: translateX(0);
}
section.content-block.template-interactive-plugin .swiper-slide.is-excluded {
  display: none;
}
section.content-block.template-interactive-plugin.enable-to-apps .from-apps .app:not(.is-active) {
  filter: grayscale(1);
}
section.content-block.template-interactive-plugin.enable-to-apps .from-apps .app:not(.is-active) img {
  opacity: 0.3;
}
section.content-block.template-interactive-plugin.enable-to-apps .to-apps .app {
  pointer-events: initial;
}
section.content-block.template-interactive-plugin.is-active-button .buttons .button, section.content-block.template-interactive-plugin.is-active-button .buttons .menu li.button &gt; a, .menu section.content-block.template-interactive-plugin.is-active-button .buttons li.button &gt; a {
  opacity: 1;
  pointer-events: initial;
}
section.content-block.template-interactive-plugin.is-active-button .select-app-message {
  opacity: 0;
  pointer-events: none;
}
section.content-block.template-interactive-plugin:not(.is-active-button) .buttons:hover .select-app-message {
  opacity: 1;
}
@media print, screen and (min-width: 48em) {
  section.content-block.template-interactive-plugin .bg-dark .plugin-container {
    background: none;
  }
}
section.content-block.template-interactive-plugin .live-search {
  width: 100%;
  height: 50px;
  margin-bottom: 1.25rem;
  border: 0.25rem solid #e5e5e5;
  border-radius: 0.3125rem;
  padding: 0 0.9375rem;
}

section.content-block.template-aside-content .spacer {
  height: 10rem;
}
section.content-block.template-aside-content .highlight-item ul {
  margin: 0;
}
section.content-block.template-aside-content .highlight-item .highlight-headline + * {
  margin-top: 1rem;
}
section.content-block.template-aside-content .highlight-item + .highlight-item {
  margin-top: 1.5rem;
}
section.content-block.template-aside-content .customer-info img {
  max-width: 70%;
}
section.content-block.template-aside-content .aside-content-wrapper {
  display: flex;
  flex-direction: column;
}
@media print, screen and (min-width: 48em) {
  section.content-block.template-aside-content .aside-content-wrapper {
    flex-direction: row;
    gap: 2.5rem;
  }
}
section.content-block.template-aside-content .aside-content-wrapper h2.title {
  font-size: 1.5rem;
}
section.content-block.template-aside-content .aside-content-wrapper h3.highlight-headline {
  font-size: 1.125rem;
}
section.content-block.template-aside-content .aside-content-wrapper &gt; .content {
  width: calc(76% - 20px);
  margin-top: 1rem;
}
@media print, screen and (max-width: 25.93625em) {
  section.content-block.template-aside-content .aside-content-wrapper &gt; .content {
    width: 100%;
  }
}
section.content-block.template-aside-content .aside-content-wrapper &gt; .content .social-button-wrap {
  display: flex;
  align-items: baseline;
  column-gap: 0.5rem;
}
section.content-block.template-aside-content .aside-content-wrapper &gt; .content .shared-counts-wrap {
  display: flex;
  justify-content: flex-start;
  align-items: baseline;
  width: 100%;
  max-width: 100px;
  margin: 2rem 0 0;
  overflow: hidden;
  color: var(--dark-matter);
  font-size: 1rem;
  column-gap: 0.5rem;
}
section.content-block.template-aside-content .aside-content-wrapper &gt; .content .shared-counts-wrap .shared-counts-button {
  width: 100%;
  height: auto;
  min-height: 32px;
  align-self: baseline;
}
section.content-block.template-aside-content .aside-content-wrapper &gt; .content .shared-counts-wrap .shared-counts-label {
  display: none;
}
section.content-block.template-aside-content .aside-content-wrapper &gt; .content .shared-counts-wrap .social-share-text {
  position: relative;
  bottom: 3px;
}
section.content-block.template-aside-content .aside-content-wrapper &gt; .aside {
  width: calc(24% - 20px);
}
@media print, screen and (max-width: 25.93625em) {
  section.content-block.template-aside-content .aside-content-wrapper &gt; .aside {
    width: 100%;
    order: 100;
    margin-top: 2.5rem;
  }
  section.content-block.template-aside-content .aside-content-wrapper &gt; .aside .back-button + * {
    margin-top: 0;
  }
}
section.content-block.template-aside-content .aside-content-wrapper &gt; .aside .title-block + * {
  margin-top: 1.5rem;
}
section.content-block.template-aside-content .aside-content-wrapper &gt; .aside .item &gt; * + * {
  margin-top: 1rem;
}
section.content-block.template-aside-content .aside-content-wrapper &gt; .aside .item-wrap + .item-wrap {
  margin-top: 1.35rem;
}
@media print, screen and (min-width: 48em) {
  section.content-block.template-aside-content .aside-content-wrapper &gt; .aside .item-wrap + .item-wrap {
    margin-top: 1.5rem;
  }
}
@media print, screen and (min-width: 64em) {
  section.content-block.template-aside-content .aside-content-wrapper &gt; .aside .item-wrap + .item-wrap {
    margin-top: 1.875rem;
  }
}
section.content-block.template-aside-content .aside-content-wrapper &gt; .aside .first-item.item-wrap {
  margin-top: 2rem;
}
section.content-block.template-aside-content .aside-content-wrapper &gt; .aside .button, section.content-block.template-aside-content .aside-content-wrapper &gt; .aside .menu li.button &gt; a, .menu section.content-block.template-aside-content .aside-content-wrapper &gt; .aside li.button &gt; a {
  justify-content: flex-start;
}
section.content-block.template-aside-content * + .aside-content-wrapper {
  margin-top: 5rem;
}
section.content-block.template-aside-content .aside-content-wrapper + * {
  margin-top: 5rem;
}
section.content-block.template-aside-content .back-button {
  position: sticky;
  top: 8.625rem;
  z-index: 2;
}
@media print, screen and (min-width: 64em) {
  section.content-block.template-aside-content .back-button {
    top: 12.5rem;
  }
}
section.content-block.template-aside-content .back-button + * {
  margin-top: 5rem;
}
section.content-block.template-aside-content .back-button + *.module.picture {
  display: flex;
  justify-content: center;
  align-items: center;
}
section.content-block.template-aside-content .back-button + *.module.picture img,
section.content-block.template-aside-content .back-button + *.module.picture svg {
  margin-left: auto;
  margin-right: auto;
}
section.content-block.template-aside-content .back-button a {
  justify-content: flex-start;
}
section.content-block.template-aside-content .back-button a:before {
  content: "";
  display: block;
  width: 0.875rem;
  height: 0.75rem;
  background: url("data:image/svg+xml;charset=utf8,%3Csvg width='14' height='12' viewBox='0 0 14 12' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0.304688 6.71875L5.30469 11.7188C5.49219 11.9062 5.74219 12 5.99219 12C6.27344 12 6.52344 11.9062 6.71094 11.7188C7.11719 11.3438 7.11719 10.6875 6.71094 10.3125L3.42969 7H12.9922C13.5547 7 13.9922 6.5625 13.9922 6C13.9922 5.46875 13.5547 5 12.9922 5H3.42969L6.71094 1.71875C7.11719 1.34375 7.11719 0.6875 6.71094 0.3125C6.33594 -0.09375 5.67969 -0.09375 5.30469 0.3125L0.304688 5.3125C-0.101562 5.6875 -0.101562 6.34375 0.304688 6.71875Z' fill='%23f44414'/%3E%3C/svg%3E") no-repeat center center;
  background-size: contain;
  margin-right: 0.5rem;
  transition: transform 0.3s;
}
section.content-block.template-aside-content .back-button a:after {
  content: none;
}
section.content-block.template-aside-content .back-button a:hover:before {
  transform: translateX(-8px);
}
section.content-block.template-aside-content .wp-caption {
  position: relative;
}
section.content-block.template-aside-content .wp-caption img {
  display: block;
}
@media print, screen and (max-width: 79.99875em) {
  section.content-block.template-aside-content .wp-caption img {
    margin-bottom: 0;
  }
}
section.content-block.template-aside-content .wp-caption .wp-caption-text {
  font-weight: 400;
  font-size: 0.75rem;
  line-height: 1.1666666667;
  background-color: rgba(255, 255, 255, 0.7);
  padding: 1rem;
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media print, screen and (min-width: 64em) {
  section.content-block.template-aside-content .wp-caption .wp-caption-text {
    padding: 1.875rem;
    background-color: var(--white);
    bottom: 1.25rem;
    left: 1.25rem;
    max-width: 19.625rem;
  }
}
section.content-block.template-aside-content .module.text-editor &gt; .first-element {
  margin-top: 0 !important;
}
section.content-block.template-aside-content .module.text-editor p &gt; br + .button {
  margin-top: 1.25rem;
}
section.content-block.template-aside-content .module.text-editor figure {
  width: 100% !important;
}
section.content-block.template-aside-content .social-share-text {
  position: relative !important;
  bottom: 3px !important;
}
section.content-block.template-aside-content .item-wrap ul li ::marker {
  color: var(--dark-matter);
}

section.content-block.template-content-tabs .tabs {
  padding: 0;
  margin-bottom: 1.8rem;
  display: flex;
  column-gap: 2.5rem;
  row-gap: 0.625rem;
  flex-wrap: wrap;
}
@media print, screen and (min-width: 48em) {
  section.content-block.template-content-tabs .tabs {
    margin-bottom: 2rem;
  }
}
@media print, screen and (min-width: 64em) {
  section.content-block.template-content-tabs .tabs {
    margin-bottom: 2.5rem;
  }
}
section.content-block.template-content-tabs .tabs-content,
section.content-block.template-content-tabs .tabs {
  background: none;
  border: none;
  position: relative;
}
section.content-block.template-content-tabs .tabs-title a {
  background: none;
  color: var(--dark-matter);
  font-weight: 600;
  font-size: 1.5rem;
  line-height: normal;
  padding: 0;
  font-weight: 500;
  transition: color 0.3s, border 0.3s;
  border-bottom: 2px solid transparent;
}
section.content-block.template-content-tabs .tabs-title a:hover {
  text-decoration: none;
}
section.content-block.template-content-tabs .tabs-title a span {
  display: block;
}
section.content-block.template-content-tabs .tabs-title.is-active a {
  color: var(--dark-matter);
  border-bottom: 2px solid var(--radiant-flame);
}
section.content-block.template-content-tabs .tabs-panel {
  background-color: var(--white);
  border-radius: 0.5rem;
  padding: 1.25rem;
}
@media print, screen and (min-width: 48em) {
  section.content-block.template-content-tabs .tabs-panel {
    padding: 2.5rem;
  }
}
section.content-block.template-content-tabs .tabs-panel .inner {
  position: relative;
}
section.content-block.template-content-tabs .tabs-panel .inner h3, section.content-block.template-content-tabs .tabs-panel .inner p {
  margin-bottom: 1.25rem;
}
section.content-block.template-content-tabs .tabs-panel .inner h3 {
  font-weight: 500;
  color: var();
}
section.content-block.template-content-tabs .tabs-panel .inner p {
  font-size: 1rem;
}
section.content-block.template-content-tabs .tabs-panel .inner .grid-x {
  row-gap: 1.25rem;
}
section.content-block.template-content-tabs .tabs-panel .inner img {
  width: 100%;
}
section.content-block.template-content-tabs.bg-dark .tabs-title a {
  color: var(--icy-blue);
  border-bottom: 2px solid transparent;
}
section.content-block.template-content-tabs.bg-dark .tabs-title.is-active a {
  color: var(--white);
  border-bottom: 2px solid white;
}
section.content-block.template-content-tabs.bg-dark .tabs-panel {
  background-color: var(--white);
}
section.content-block.template-content-tabs.bg-dark .tabs-panel .inner .title {
  color: var(--text-color);
}

@media print, screen and (min-width: 64em) {
  section.content-block.template-accordion-carousel .grid-x.has-2-cols {
    align-items: stretch;
  }
  section.content-block.template-accordion-carousel .grid-x.has-2-cols &gt; .cell:nth-child(1) {
    padding-right: 1.875rem;
  }
  section.content-block.template-accordion-carousel .grid-x.has-2-cols &gt; .cell:nth-child(2) {
    padding-left: 1.875rem;
  }
  section.content-block.template-accordion-carousel .grid-x.has-2-cols &gt; .cell &gt; .inner {
    height: 100%;
  }
}
section.content-block.template-accordion-carousel .accordions .accordion-item {
  padding: 0 0.625rem 0 0.625rem;
  background: none;
  border-bottom: 2px solid var(--icy-blue);
  transition: padding 0.3s;
}
section.content-block.template-accordion-carousel .accordions .accordion-item:last-child {
  border-bottom: none;
}
section.content-block.template-accordion-carousel .accordions .accordion-item .accordion-title {
  padding: 1.25rem 1.875rem 1.25rem 0;
  background: none;
  border: none;
  position: relative;
  display: block;
  transition: padding 0.3s;
  color: inherit;
}
section.content-block.template-accordion-carousel .accordions .accordion-item .accordion-title:hover {
  text-decoration: none;
  color: var(--radiant-flame);
}
section.content-block.template-accordion-carousel .accordions .accordion-item .accordion-title h3 {
  font-weight: 500;
}
section.content-block.template-accordion-carousel .accordions .accordion-item .accordion-title::before {
  display: none;
}
section.content-block.template-accordion-carousel .accordions .accordion-item .accordion-title::after {
  content: "";
  display: block;
  position: absolute;
  width: 1.25rem;
  height: 1.25rem;
  right: 0;
  top: 50%;
  transform: translate(0, -50%);
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg width='20' height='20' viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M16.5 10C16.5 10.5625 16.0312 11.0312 15.5 11.0312H11V15.5312C11 16.0625 10.5312 16.5 10 16.5C9.4375 16.5 9 16.0625 9 15.5312V11.0312H4.5C3.9375 11.0312 3.5 10.5625 3.5 10C3.5 9.46875 3.9375 9.03125 4.5 9.03125H9V4.53125C9 3.96875 9.4375 3.5 10 3.5C10.5312 3.5 11 3.96875 11 4.53125V9.03125H15.5C16.0312 9 16.5 9.46875 16.5 10Z' fill='%230F0225'/%3E%3C/svg%3E");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}
section.content-block.template-accordion-carousel .accordions .accordion-item ul {
  padding: 0;
  margin: 0;
  list-style: none;
}
section.content-block.template-accordion-carousel .accordions .accordion-item ul + * {
  margin-top: 0.625rem;
}
section.content-block.template-accordion-carousel .accordions .accordion-item ul li {
  position: relative;
  padding-left: 1.5625rem;
}
section.content-block.template-accordion-carousel .accordions .accordion-item ul li + li {
  margin-top: 0.125rem;
}
section.content-block.template-accordion-carousel .accordions .accordion-item ul li::before {
  content: "";
  display: block;
  position: absolute;
  left: 0.625rem;
  top: 0.625rem;
  width: 4px;
  height: 4px;
  border-radius: 100%;
  background: var(--dark-matter);
}
section.content-block.template-accordion-carousel .accordions .accordion-item * + ul {
  margin-top: 0.625rem;
}
section.content-block.template-accordion-carousel .accordions .accordion-item p {
  max-width: 32.5rem;
}
section.content-block.template-accordion-carousel .accordions .accordion-item * + .button, section.content-block.template-accordion-carousel .accordions .accordion-item .menu li.button &gt; * + a, .menu section.content-block.template-accordion-carousel .accordions .accordion-item li.button &gt; * + a {
  margin-top: 0.625rem;
}
section.content-block.template-accordion-carousel .accordions .accordion-item .button, section.content-block.template-accordion-carousel .accordions .accordion-item .menu li.button &gt; a, .menu section.content-block.template-accordion-carousel .accordions .accordion-item li.button &gt; a {
  justify-content: flex-start;
}
section.content-block.template-accordion-carousel .accordions .accordion-item.is-active {
  padding-bottom: 1.25rem;
}
section.content-block.template-accordion-carousel .accordions .accordion-item.is-active .accordion-title {
  padding-bottom: 0.625rem;
}
section.content-block.template-accordion-carousel .accordions .accordion-item.is-active .accordion-title::after {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg width='20' height='20' viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M15.5 11H4.5C3.9375 11 3.5 10.5625 3.5 10C3.5 9.46875 3.9375 9 4.5 9H15.5C16.0312 9 16.5 9.46875 16.5 10C16.5 10.5625 16.0312 11 15.5 11Z' fill='%230F0225'/%3E%3C/svg%3E");
}
section.content-block.template-accordion-carousel .accordions .accordion-item .accordion-content {
  background: none;
  border: none;
  padding: 0;
}
section.content-block.template-accordion-carousel.has-multiple-images .media-container {
  position: relative;
  opacity: 0;
  transition: opacity 0.6s;
}
section.content-block.template-accordion-carousel.has-multiple-images .media-container.loaded {
  opacity: 1;
}
section.content-block.template-accordion-carousel.has-multiple-images .media-container .media-item {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transition: opacity 0.6s;
  height: 100%;
  width: 100%;
}
section.content-block.template-accordion-carousel.has-multiple-images .media-container .media-item .module {
  height: 100%;
}
section.content-block.template-accordion-carousel.has-multiple-images .media-container .media-item.is-active {
  opacity: 1;
}
section.content-block.template-accordion-carousel.bg-dark .accordions .accordion-item {
  border-bottom: 2px solid var(--icy-blue);
}
section.content-block.template-accordion-carousel.bg-dark .accordions .accordion-item .accordion-title {
  color: var(--white);
}
section.content-block.template-accordion-carousel.bg-dark .accordions .accordion-item .accordion-title::after {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg width='20' height='20' viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M16.5 10C16.5 10.5625 16.0312 11.0312 15.5 11.0312H11V15.5312C11 16.0625 10.5312 16.5 10 16.5C9.4375 16.5 9 16.0625 9 15.5312V11.0312H4.5C3.9375 11.0312 3.5 10.5625 3.5 10C3.5 9.46875 3.9375 9.03125 4.5 9.03125H9V4.53125C9 3.96875 9.4375 3.5 10 3.5C10.5312 3.5 11 3.96875 11 4.53125V9.03125H15.5C16.0312 9 16.5 9.46875 16.5 10Z' fill='%23fff'/%3E%3C/svg%3E");
}
section.content-block.template-accordion-carousel.bg-dark .accordions .accordion-item .accordion-title:hover {
  color: var(--radiant-flame);
}
section.content-block.template-accordion-carousel.bg-dark .accordions .accordion-item ul li::before {
  background: var(--white);
}
section.content-block.template-accordion-carousel.bg-dark .accordions .accordion-item .accordion-content {
  color: var(--white);
}
section.content-block.template-accordion-carousel.bg-dark .accordions .accordion-item.is-active .accordion-title {
  color: var(--white);
}
section.content-block.template-accordion-carousel.bg-dark .accordions .accordion-item.is-active .accordion-title::after {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg width='20' height='20' viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M15.5 11H4.5C3.9375 11 3.5 10.5625 3.5 10C3.5 9.46875 3.9375 9 4.5 9H15.5C16.0312 9 16.5 9.46875 16.5 10C16.5 10.5625 16.0312 11 15.5 11Z' fill='%23fff'/%3E%3C/svg%3E");
}
section.content-block.template-accordion-carousel.bg-dark .accordions .accordion-item.is-active .accordion-title:hover {
  color: var(--radiant-flame);
}
section.content-block.template-accordion-carousel .module.picture .single-accordion-carousel-img {
  width: 100%;
  max-width: 780px;
}

body.legal-page main.content {
  overflow: hidden;
}
body.legal-page .hero-unit {
  padding-bottom: 0;
  overflow: initial;
  padding-top: 13.5rem;
}
@media print, screen and (min-width: 48em) {
  body.legal-page .hero-unit {
    padding-top: 15rem;
  }
}
@media print, screen and (min-width: 64em) {
  body.legal-page .hero-unit {
    padding-top: 18.75rem;
  }
}
body.legal-page .hero-unit .hero-unit-content {
  padding-top: 0;
}
body.legal-page .hero-unit + section.content-block {
  margin-top: 0;
}
body.legal-page .template-free-form .grid-container {
  max-width: 50.625rem;
}
body.legal-page .template-free-form .template-header {
  margin-bottom: 3.6rem;
}
@media print, screen and (min-width: 48em) {
  body.legal-page .template-free-form .template-header {
    margin-bottom: 4rem;
  }
}
@media print, screen and (min-width: 64em) {
  body.legal-page .template-free-form .template-header {
    margin-bottom: 5rem;
  }
}
body.legal-page .template-free-form .template-header .preheadline + * {
  margin-top: 0.9375rem;
}
body.legal-page .template-free-form .template-header .headline + * {
  margin-top: 0.9375rem;
}
body.legal-page .template-free-form .module.text-editor * + h1,
body.legal-page .template-free-form .module.text-editor * + h2,
body.legal-page .template-free-form .module.text-editor * + h3,
body.legal-page .template-free-form .module.text-editor * + h4,
body.legal-page .template-free-form .module.text-editor * + h5,
body.legal-page .template-free-form .module.text-editor * + h6 {
  margin-top: 3.6rem;
}
@media print, screen and (min-width: 48em) {
  body.legal-page .template-free-form .module.text-editor * + h1,
  body.legal-page .template-free-form .module.text-editor * + h2,
  body.legal-page .template-free-form .module.text-editor * + h3,
  body.legal-page .template-free-form .module.text-editor * + h4,
  body.legal-page .template-free-form .module.text-editor * + h5,
  body.legal-page .template-free-form .module.text-editor * + h6 {
    margin-top: 4rem;
  }
}
@media print, screen and (min-width: 64em) {
  body.legal-page .template-free-form .module.text-editor * + h1,
  body.legal-page .template-free-form .module.text-editor * + h2,
  body.legal-page .template-free-form .module.text-editor * + h3,
  body.legal-page .template-free-form .module.text-editor * + h4,
  body.legal-page .template-free-form .module.text-editor * + h5,
  body.legal-page .template-free-form .module.text-editor * + h6 {
    margin-top: 5rem;
  }
}
body.legal-page .template-free-form .module.text-editor h1 + *,
body.legal-page .template-free-form .module.text-editor h2 + *,
body.legal-page .template-free-form .module.text-editor h3 + *,
body.legal-page .template-free-form .module.text-editor h4 + *,
body.legal-page .template-free-form .module.text-editor h5 + *,
body.legal-page .template-free-form .module.text-editor h6 + * {
  margin-top: 1.25rem;
}
body.legal-page .template-free-form .module.text-editor ul {
  padding: 0;
  margin: 0;
  list-style: none;
}
body.legal-page .template-free-form .module.text-editor ul + * {
  margin-top: 0.625rem;
}
body.legal-page .template-free-form .module.text-editor ul li {
  position: relative;
  padding-left: 1.5625rem;
}
body.legal-page .template-free-form .module.text-editor ul li + li {
  margin-top: 0.125rem;
}
body.legal-page .template-free-form .module.text-editor ul li::before {
  content: "";
  display: block;
  position: absolute;
  left: 0.625rem;
  top: 0.625rem;
  width: 4px;
  height: 4px;
  border-radius: 100%;
  background: var(--text-color);
}

section.content-block.resource-type-case-study {
  margin-top: 2.5rem;
  /************************
    Start Media Queries
  ************************/
  /************************
    End Media Queries
  ************************/
}
section.content-block.resource-type-case-study .intro.first-element {
  display: none;
}
section.content-block.resource-type-case-study blockquote p {
  font-size: 1.25rem;
}
section.content-block.resource-type-case-study blockquote cite {
  font-size: 1rem;
}
section.content-block.resource-type-case-study .spacer {
  height: 10rem !important;
}
section.content-block.resource-type-case-study .template-header-wrapper .template-header {
  position: relative;
  width: 100%;
  max-width: 61rem;
  margin-bottom: 0.5rem !important;
  left: 0;
}
section.content-block.resource-type-case-study .template-header-wrapper .template-header h1.headline {
  font-size: 2.5rem;
}
section.content-block.resource-type-case-study .two-col-change {
  display: flex;
  flex-flow: row;
  gap: 1rem;
}
@media print, screen and (min-width: 31.25em) {
  section.content-block.resource-type-case-study .two-col-change {
    flex-flow: column;
  }
}
section.content-block.resource-type-case-study .two-col-change .before-change,
section.content-block.resource-type-case-study .two-col-change .after-change {
  flex: 1;
}
section.content-block.resource-type-case-study .customer-info img {
  margin-top: 1rem;
}
section.content-block.resource-type-case-study .aside h2,
section.content-block.resource-type-case-study .aside h3 {
  font-size: 1rem !important;
  font-weight: 600;
  color: var(--dark-matter);
  text-transform: uppercase;
  margin-top: 2.5rem;
}
section.content-block.resource-type-case-study .aside ul {
  padding-inline-start: 2rem;
}
section.content-block.resource-type-case-study .aside .highlight-item .highlight-headline + *,
section.content-block.resource-type-case-study .aside .aside-content-wrapper &gt; .aside .title-block + * {
  margin-top: 0.5rem !important;
}
section.content-block.resource-type-case-study .aside .item-wrap {
  margin-top: 0 !important;
}
section.content-block.resource-type-case-study .content h2,
section.content-block.resource-type-case-study .content h2 a {
  display: inline-block;
  margin: 2.5rem 0 1.25rem 0 !important;
  font-size: 1.625rem !important;
  font-weight: 500 !important;
  line-height: 1.5;
}
section.content-block.resource-type-case-study .content h2::after {
  content: "";
  display: block;
  width: 6.25rem;
  height: 0.25rem;
  background-color: var(--radiant-flame);
}
section.content-block.resource-type-case-study .content h3,
section.content-block.resource-type-case-study .content h3 a {
  font-size: 1.25rem !important;
  font-weight: 500 !important;
  margin-top: 1.875rem !important;
  line-height: 1;
}
section.content-block.resource-type-case-study .content h4,
section.content-block.resource-type-case-study .content h4 a {
  font-size: 1rem !important;
  font-weight: 500 !important;
  line-height: 1;
  text-transform: uppercase;
}
section.content-block.resource-type-case-study .content .intro {
  font-size: 1.5rem;
  font-weight: 300;
  margin-bottom: 1.25rem;
}
section.content-block.resource-type-case-study .hero-wrapper {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 1rem;
}
section.content-block.resource-type-case-study .hero-wrapper .tags-preheadline {
  display: flex;
  flex-wrap: wrap;
  row-gap: 0.5rem;
}
@media print, screen and (max-width: 61.74875em) {
  section.content-block.resource-type-case-study .hero-wrapper .tags-preheadline {
    margin: 0.875rem 0;
  }
}
@media print, screen and (max-width: 39.68625em) {
  section.content-block.resource-type-case-study .hero-wrapper .tags-preheadline {
    margin-top: 0;
  }
}
section.content-block.resource-type-case-study .hero-wrapper .tags-preheadline a {
  font-size: 0.75rem;
  font-weight: 400;
  text-transform: uppercase;
  transition: color 0.3s;
  border: 1px solid var(--slate-mist);
  border-radius: 0.25rem;
  padding: 4px 10px;
  line-height: normal;
  color: var(--lunar-silver);
}
section.content-block.resource-type-case-study .hero-wrapper .tags-preheadline a:hover {
  color: var(--radiant-flame);
}
section.content-block.resource-type-case-study .hero-wrapper .hero-content {
  display: flex;
  flex-direction: column;
}
section.content-block.resource-type-case-study .hero-wrapper .hero-content .intro {
  margin-top: 2.25rem;
  margin-bottom: 2.5rem;
  font-size: 1.5rem;
  font-weight: 300;
}
@media print, screen and (min-width: 64em) {
  section.content-block.resource-type-case-study .spacer {
    height: 14rem !important;
  }
  section.content-block.resource-type-case-study .aside-content-wrapper {
    gap: 5rem !important;
  }
  section.content-block.resource-type-case-study blockquote {
    margin: 2.5rem !important;
  }
}
section.content-block.resource-type-case-study .hero-content .intro {
  margin-bottom: 3rem;
}

body.resource-category-page main.content {
  overflow: hidden;
}
body.resource-category-page .hero-unit {
  padding-bottom: 3.6rem;
}
@media print, screen and (min-width: 48em) {
  body.resource-category-page .hero-unit {
    padding-bottom: 4rem;
  }
}
@media print, screen and (min-width: 64em) {
  body.resource-category-page .hero-unit {
    padding-bottom: 5rem;
  }
}
@media print, screen and (max-width: 61.74875em) {
  body.resource-category-page .hero-unit {
    padding-top: 10.8rem;
  }
}
@media print, screen and (max-width: 61.74875em) and (min-width: 48em) {
  body.resource-category-page .hero-unit {
    padding-top: 12rem;
  }
}
@media print, screen and (max-width: 61.74875em) and (min-width: 64em) {
  body.resource-category-page .hero-unit {
    padding-top: 15rem;
  }
}

section.content-block.resource-type-demo .hero-wrapper .hero-content {
  flex: 0 0 100%;
  padding-right: 0;
}
section.content-block.resource-type-demo .hero-wrapper .hero-graphic,
section.content-block.resource-type-demo .hero-wrapper .intro {
  display: none;
}
section.content-block.resource-type-demo .single-post-content {
  margin-right: 0;
  margin-left: 0;
}

section.content-block.resource-type-ebook .grid-container {
  max-width: 75.625rem;
}
section.content-block.resource-type-ebook .template-header-wrapper .template-header {
  margin-left: 0;
}
section.content-block.resource-type-ebook .hero-wrapper {
  margin-bottom: 0;
}
section.content-block.resource-type-ebook .hero-wrapper .hero-graphic {
  display: none;
}
section.content-block.resource-type-ebook .hero-wrapper .intro {
  display: none;
}

section.content-block.resource-type-event .grid-container {
  max-width: 75.625rem;
}
section.content-block.resource-type-event .template-header-wrapper .template-header {
  margin-bottom: 2.5rem !important;
}
section.content-block.resource-type-event .hero-wrapper .hero-content {
  flex: 0 0 100%;
  padding-right: 0;
}
section.content-block.resource-type-event .hero-wrapper .hero-content .intro,
section.content-block.resource-type-event .hero-wrapper .hero-content .post-date {
  display: none;
}

section.content-block.resource-type-podcast .hero-wrapper .hero-content {
  flex: 0 0 100%;
  padding-right: 0;
}
section.content-block.resource-type-podcast .hero-wrapper .hero-graphic {
  display: none;
}

section.content-block.resource-type-press-release .intro.first-element {
  display: none;
}
section.content-block.resource-type-press-release .hero-wrapper .hero-content {
  flex: 0 0 100%;
  padding-right: 0;
}
section.content-block.resource-type-press-release .hero-wrapper .hero-graphic {
  display: none;
}
section.content-block.resource-type-press-release .single-post-content {
  max-width: 100%;
}

section.content-block.resource-type-report .grid-container {
  max-width: 75.625rem;
}
section.content-block.resource-type-report .hero-wrapper .intro {
  display: none;
}

section.content-block.resource-type-solution-sheet .template-header-wrapper {
  max-width: 75.625rem;
}
section.content-block.resource-type-solution-sheet .hero-wrapper .hero-content {
  flex: 0 0 100%;
  padding-right: 0;
}
section.content-block.resource-type-solution-sheet .hero-wrapper .hero-graphic {
  display: none;
}

section.content-block.resource-type-testimonial .hero-wrapper .hero-content {
  flex: 0 0 100%;
  padding-right: 0;
}
section.content-block.resource-type-testimonial .hero-wrapper .hero-graphic {
  display: none;
}

section.content-block.resource-type-video .grid-container {
  max-width: 75.625rem;
}
section.content-block.resource-type-video .hero-wrapper .hero-content {
  flex: 0 0 100%;
  padding-right: 0;
}
section.content-block.resource-type-video .hero-wrapper .hero-graphic {
  display: none;
}

section.content-block.resource-type-webinar .grid-container {
  max-width: 75.625rem;
}
section.content-block.resource-type-webinar .template-header-wrapper {
  margin-bottom: 1rem;
}
section.content-block.resource-type-webinar .hero-wrapper .hero-content {
  flex: 0 0 100%;
  padding-right: 0;
}
section.content-block.resource-type-webinar .hero-wrapper .hero-content .post-date {
  display: none;
}
section.content-block.resource-type-webinar .hero-wrapper .hero-graphic {
  display: none;
}

section.content-block.resource-type-white-paper .grid-container {
  max-width: 75.625rem;
}
section.content-block.resource-type-white-paper .template-header {
  margin-bottom: 2rem !important;
}
section.content-block.resource-type-white-paper .hero-wrapper {
  margin-bottom: 0;
}
section.content-block.resource-type-white-paper .hero-wrapper .hero-content {
  flex: 0 0 100%;
}
section.content-block.resource-type-white-paper .hero-wrapper .intro,
section.content-block.resource-type-white-paper .hero-wrapper .hero-graphic {
  display: none;
}

body.single-jbt_team main.content {
  overflow-x: hidden;
}
body.single-jbt_team .hero-unit {
  padding-bottom: 0;
  overflow: initial;
  padding-top: 9rem;
}
@media print, screen and (min-width: 48em) {
  body.single-jbt_team .hero-unit {
    padding-top: 10rem;
  }
}
@media print, screen and (min-width: 64em) {
  body.single-jbt_team .hero-unit {
    padding-top: 12.5rem;
  }
}
body.single-jbt_team .hero-unit .hero-unit-content {
  padding-top: 0;
}
body.single-jbt_team .hero-unit + section.content-block {
  margin-top: 0;
}

@media print, screen and (min-width: 48em) {
  section.content-block.template-single-team-member {
    margin-top: 4.375rem;
  }
}
section.content-block.template-single-team-member .back-button {
  margin-bottom: 3.5rem;
}
section.content-block.template-single-team-member .back-button a {
  justify-content: flex-start;
}
section.content-block.template-single-team-member .back-button a:before {
  content: "";
  display: block;
  width: 0.875rem;
  height: 0.75rem;
  background: url("data:image/svg+xml;charset=utf8,%3Csvg width='14' height='12' viewBox='0 0 14 12' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0.304688 6.71875L5.30469 11.7188C5.49219 11.9062 5.74219 12 5.99219 12C6.27344 12 6.52344 11.9062 6.71094 11.7188C7.11719 11.3438 7.11719 10.6875 6.71094 10.3125L3.42969 7H12.9922C13.5547 7 13.9922 6.5625 13.9922 6C13.9922 5.46875 13.5547 5 12.9922 5H3.42969L6.71094 1.71875C7.11719 1.34375 7.11719 0.6875 6.71094 0.3125C6.33594 -0.09375 5.67969 -0.09375 5.30469 0.3125L0.304688 5.3125C-0.101562 5.6875 -0.101562 6.34375 0.304688 6.71875Z' fill='%23f44414'/%3E%3C/svg%3E") no-repeat center center;
  background-size: contain;
  margin-right: 0.5rem;
  transition: transform 0.3s;
}
section.content-block.template-single-team-member .back-button a:after {
  content: none;
}
section.content-block.template-single-team-member .back-button a:hover:before {
  transform: translateX(-8px);
}
section.content-block.template-single-team-member .template-header {
  margin-bottom: 3.6rem;
}
@media print, screen and (min-width: 48em) {
  section.content-block.template-single-team-member .template-header {
    margin-bottom: 4rem;
  }
}
@media print, screen and (min-width: 64em) {
  section.content-block.template-single-team-member .template-header {
    margin-bottom: 5rem;
  }
}
section.content-block.template-single-team-member .template-header .preheadline + * {
  margin-top: 0.9375rem;
}
section.content-block.template-single-team-member .template-header .headline + * {
  margin-top: 0.9375rem;
}
section.content-block.template-single-team-member .img-wrapper {
  width: 9.375rem;
  height: 9.375rem;
  margin: 0 auto;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid var(--icy-blue);
  box-sizing: content-box;
}
@media print, screen and (max-width: 61.74875em) {
  section.content-block.template-single-team-member .img-wrapper {
    margin-bottom: 1.875rem;
    margin-left: 0;
  }
}
section.content-block.template-single-team-member .img-wrapper img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media print, screen and (min-width: 64em) {
  section.content-block.template-single-team-member .content {
    display: flex;
    justify-content: flex-end;
    padding-right: 6.25rem;
  }
}
section.content-block.template-single-team-member .content-wrapper {
  max-width: 50.625rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
section.content-block.template-single-team-member .content-description {
  margin-bottom: 1.25rem;
}

section.content-block.template-free-form.search-results .search-item {
  border-bottom: 1px solid rgba(15, 2, 37, 0.168627451);
  padding-bottom: 1.25rem;
}
section.content-block.template-free-form.search-results .search-item:not(:last-child) {
  margin-bottom: 1.875rem;
}
section.content-block.template-free-form.search-results .pagination {
  margin-top: 3.75rem;
}

.hero-unit .search-wrapper form {
  display: flex;
  max-width: 31.25rem;
}
.hero-unit .search-wrapper form .search-input-wrapper {
  width: 100%;
}
.hero-unit .search-wrapper form .search-input-wrapper input {
  height: 3.125rem;
  border: 0;
  box-shadow: none;
  padding: 0 2.5rem;
  width: 100%;
}
.hero-unit .search-wrapper form .button, .hero-unit .search-wrapper form .menu li.button &gt; a, .menu .hero-unit .search-wrapper form li.button &gt; a {
  border-radius: 0 3.125rem 3.125rem 0;
}
/*# sourceMappingURL=app.css.map*/</pre></body></html>