@charset "UTF-8";
.StyledText {
  --lineHeightMultiplier: 1.1;
  --textVspaceMultiplier: 1.35;
  font-size: clamp(0.85rem, 1.5vw, 1rem);
}

.StyledText h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  line-height: 1.25;
}

.StyledText h3 {
  font-size: clamp(1rem, 2vw, 1.375rem);
  line-height: 1.45;
}

.StyledText h4 {
  font-size: clamp(0.9rem, 2vw, 1.125rem);
  line-height: 1.78;
}

.StyledText h1, .StyledText h2, .StyledText h3, .StyledText h4 {
  margin-bottom: calc(var(--spaceUnit) * 0.45 * var(--textVspaceMultiplier, 1));
}

.StyledText h2, .StyledText h3, .StyledText h4 {
  margin-top: calc(var(--spaceUnit) * 0.75 * var(--textVspaceMultiplier, 1));
}

.StyledText p, .StyledText ul li, .StyledText ol li {
  line-height: 1.5;
}

.StyledText ul, .StyledText ol, .StyledText p, .StyledText table {
  margin-bottom: calc(var(--spaceUnit) * 0.75 * var(--textVspaceMultiplier, 1));
}

.StyledText figcaption {
  margin-top: calc(var(--spaceUnit) * 0.5);
}

.StyledText em {
  font-style: italic;
}

.StyledText hr {
  margin: var(--spaceLg) 0;
  border: none;
  border-bottom: 1px solid var(--colorOutlines);
}

.StyledText blockquote {
  quotes: "“" "”" "‘" "’";
  border-top: 1px solid var(--colorOutlines);
  border-bottom: 1px solid var(--colorOutlines);
  font-family: Source Sans Pro, sans-serif;
  position: relative;
  padding: var(--spaceMd) 0;
  margin: var(--spaceLg) 0;
  font-style: italic;
}

.StyledText blockquote:before {
  content: open-quote;
  color: var(--colorOutlines);
  position: absolute;
  left: 50%;
  top: .2em;
  transform: translate(-50%, -50%);
  font-size: 4em;
  font-weight: 600;
  text-shadow: 5px 0 0 var(--colorThemeAccent);
}

.StyledText blockquote:after {
  content: no-close-quote;
}

.StyledText blockquote p {
  position: relative;
}

.StyledText blockquote p:last-child {
  margin-bottom: 0;
}

.StyledText ul, .StyledText ol {
  list-style-type: none;
}

.StyledText ul ul, .StyledText ul ol, .StyledText ol ul, .StyledText ol ol {
  margin-left: var(--spaceSm);
  margin-top: .5em;
  margin-bottom: .2em;
}

.StyledText ul li, .StyledText ol li {
  position: relative;
  padding-left: clamp(2rem, 4vw, 2.5rem);
  padding-bottom: .7em;
}

.StyledText ul li:last-child, .StyledText ol li:last-child {
  padding-bottom: 0;
}

.StyledText ul li:before, .StyledText ol li:before {
  content: ' ';
  display: block;
  width: 1rem;
  height: 2px;
  border-radius: 0;
  background: var(--colorText);
  position: absolute;
  left: 0;
  top: clamp(calc(0.85rem * 0.75 - 1px), 1vw, calc(1rem * 0.75 - 1px));
  z-index: var(--layerPageZIndex);
}

.StyledText ul li:last-child:after, .StyledText ol li:last-child:after {
  display: none;
}

.StyledText ol {
  list-style-type: none;
  counter-reset: li;
}

.StyledText ol li:before {
  counter-increment: li;
  content: counter(li, decimal) ".";
  background: var(--colorThemeAccent);
  color: var(--colorText);
  width: auto;
  height: auto;
  left: 0;
  top: 0;
  min-width: 1.5rem;
  text-align: left;
}

.StyledText ol ul > li {
  content: ' ';
}

.StyledText table {
  border-collapse: collapse;
  background: white;
  overflow: hidden;
  width: 100%;
  position: relative;
  border: none;
}

.StyledText table td, .StyledText table th {
  padding: clamp(0.5rem, 2vw, 1rem);
  text-align: left;
  border: 1px solid var(--colorOutlines);
}

.StyledText table thead tr {
  background: var(--colorSecondaryBg);
  color: hsl(0, 0%, calc((var(--colorSecondaryBg-l) - 60) * -100%));
}

.StyledText table th {
  font-weight: 700;
}

.StyledText iframe {
  border: none;
  width: 100%;
}

.StyledText > *:first-child, .StyledText div > *:first-child {
  margin-top: 0;
}

.StyledText > *:last-child, .StyledText div > *:last-child {
  margin-bottom: 0;
}

.StyledText .u-responsiveTable {
  overflow-x: auto;
}

.HomeSliderItem {
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  transition-property: transform;
  overflow: hidden;
  display: flex;
  min-height: clamp(32rem, 60vw, 40rem);
}

.HomeSliderItem-image {
  width: 50%;
  overflow: hidden;
  position: relative;
}

@media (max-width: 48rem) {
  .HomeSliderItem-image {
    position: absolute;
    width: 100%;
    inset: 0;
    z-index: -1;
  }
}

.HomeSliderItem-image::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 8rem;
  background: linear-gradient(to right bottom, var(--colorBodyBg) 0%, var(--colorBodyBg) 50%, transparent 50%);
}

@media (max-width: 48rem) {
  .HomeSliderItem-image::after {
    width: 100%;
    background: rgba(0, 0, 0, 0.7);
  }
}

.HomeSliderItem-image img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.HomeSliderItem-content {
  width: auto;
  padding-bottom: 3.5rem;
  margin-left: 0;
}

.HomeSliderItem-content-frame {
  width: 50%;
  box-sizing: border-box;
  position: relative;
  color: var(--colorText);
  display: flex;
  align-items: center;
}

@media (max-width: 48rem) {
  .HomeSliderItem-content-frame {
    width: 100%;
  }
}

@media (min-width: 80.01rem) {
  .HomeSliderItem-content {
    margin-left: calc((min(1920px, 100vw) - var(--sizeContentWidthMedium)) / 2 - var(--sizeContentOffset));
  }
}

.HomeSliderItem-title {
  font-size: clamp(2rem, 4vw, 2.5rem);
  margin: 0 0 var(--spaceXs);
  color: var(--colorText);
  font-weight: 700;
  line-height: 1.2;
}

@media (max-width: 48rem) {
  .HomeSliderItem-title {
    color: var(--colorThemeAccent);
  }
}

.HomeSliderItem-title:last-child {
  margin-bottom: 0;
}

.HomeSliderItem-text {
  font-size: clamp(0.85rem, 1.5vw, 1rem);
  line-height: 1.5;
  margin: 0 0 var(--spaceMd);
  color: var(--colorText);
}

@media (max-width: 48rem) {
  .HomeSliderItem-text {
    color: var(--colorThemeAccent);
  }
}

.HomeSliderItem-text ul li {
  font-weight: 700;
}

.HomeSliderItem-text ul li:before {
  background: var(--colorBrand);
}

.HomeSliderItem-text:last-child {
  margin-bottom: 0;
}

/*# sourceMappingURL=home-slider-item.min.css.map */
