.emod_slider_container {
  margin-bottom: 55px;
}

.emod_card_track {
  border-radius: 0px;
  overflow: hidden;
}

.emod_card {
  max-width: 300px;
  width: 100%;
  background: black;
  position: relative;
  border-radius: 8px;
  overflow: hidden;
}

.emod_card:before {
  content: "";
  display: block;
  padding-bottom: 145%;
}

.emod_card_content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 30px;
  color: white;
  display: grid;
  grid-gap: 15px;
  text-decoration: none;
  align-content: start;
  zoom: 1;
}

.emod_card_content:hover {
  color: white;
}

.emod_card_sublinks {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 30px;
  z-index: 1;
}

.emod_card_sublinks > div {
  display: flex;
  flex-wrap: wrap-reverse;
}

.emod_card_sublinks > div > a {
  text-decoration: none;
  /*background-color: white;
  color: #161d27;*/
  background-color: hsla(0, 0%, 100%, 0.25);
  backdrop-filter: blur(5px);
  color: white;
  display: inline-block;
  padding: 4px 10px;
  margin-top: 8px;
  margin-right: 8px;
  border-radius: 6px;
  font-size: 12px;
  transition: all 150ms ease-out;
}

.emod_card_sublinks-dark > div > a,
.emod_card_light .emod_card_sublinks > div > a {
  background-color: hsla(215, 30%, 10%, 0.35);
  backdrop-filter: blur(5px);
  color: white;
}

.emod_card_sublinks > div > a:hover {
  color: #161d27;
  background-color: white;
}

.emod_card_light {
  background-color: #f5f5f7;
}


.emod_card_light .emod_card_content,
.emod_card_light .emod_card_content:hover {
  color: #161d27;
}

.emod_card_content_type {
  font-size: 12px;
}

.emod_card_content_logo {
  max-width: 200px;
  max-height: 20px;
}

.emod_card_content_title {
  font-size: 20px;
  font-weight: bold;
}

.emod_card_content_title > s {
  text-decoration: none;
  opacity: .5;
}

.emod_card_content_desc {
  font-size: 14px;
}

.emod_card_content_notice {
  font-size: 16px;
  font-weight: bold;
  }
  
  .emod_card_cover {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform-origin: center;
  transform: scale(1);
  transition: transform 100ms ease-out;
}

.emod_card:hover .emod_card_cover {
  transform: scale(1.05);
}

.splide__container {
  box-sizing: border-box;
  position: relative;
}

.splide__list {
  backface-visibility: hidden;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  margin: 0 !important;
  padding: 0 !important;
}

.splide.is-initialized:not(.is-active) .splide__list {
  display: block;
}

.splide__progress__bar {
  width: 0;
}

.splide {
  position: relative;
  visibility: hidden;
}

.splide.is-initialized,
.splide.is-rendered {
  visibility: visible;
}

.splide__slide {
  backface-visibility: hidden;
  box-sizing: border-box;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  list-style-type: none !important;
  margin: 0;
  position: relative;
}

.splide__slide img {
  vertical-align: bottom;
}

.splide__spinner {
  animation: splide-loading 1s linear infinite;
  border: 2px solid #999;
  border-left-color: transparent;
  border-radius: 50%;
  bottom: 0;
  contain: strict;
  display: inline-block;
  height: 20px;
  left: 0;
  margin: auto;
  position: absolute;
  right: 0;
  top: 0;
  width: 20px;
}

.splide__sr {
  clip: rect(0 0 0 0);
  border: 0;
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}

.splide__toggle.is-active .splide__toggle__play,
.splide__toggle__pause {
  display: none;
}

.splide__toggle.is-active .splide__toggle__pause {
  display: inline;
}

.splide__track {
  overflow: hidden;
  position: relative;
  z-index: 0;
}

@keyframes splide-loading {
  0% {
    transform: rotate(0);
  }
  
  to {
    transform: rotate(1turn);
  }
}

.splide__track--draggable {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.splide__track--fade > .splide__list > .splide__slide {
  margin: 0 !important;
  opacity: 0;
  z-index: 0;
}

.splide__track--fade > .splide__list > .splide__slide.is-active {
  opacity: 1;
  z-index: 1;
}

.splide--rtl {
  direction: rtl;
}

.splide__track--ttb > .splide__list {
  display: block;
}

.splide__arrow {
  -ms-flex-align: center;
  align-items: center;
  background: #ccc;
  border: 0;
  cursor: pointer;
  display: -ms-flexbox;
  display: flex;
  height: 80px;
  -ms-flex-pack: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 100ms ease-in-out;
  padding: 0;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  z-index: 1;
  background-color: rgba(255,255,255,.2);
  backdrop-filter: blur(10px);
  box-shadow: 0 0 10px rgba(30, 30, 30, 0.1);
}

.splide:hover .splide__arrow {
  opacity: 0.8;
}

.splide__arrow svg {
  fill: #fff;
  height: 1.2em;
  width: 1.2em;
  filter: drop-shadow(0px 0px 5px rgba(0, 0, 0, .5));
}

.splide__arrow:hover:not(:disabled) {
  opacity: 1;
}

.splide__arrow:disabled {
  opacity: 0;
}

.splide__arrow:focus-visible {
  outline: 3px solid #0bf;
  outline-offset: 3px;
}

.splide__arrow--prev {
  left: 0;
  border-top-right-radius: 6px;
  border-bottom-right-radius: 6px;
  box-shadow: 5px 0px 10px rgba(30, 30, 30, 0.1);
}

.splide__arrow--prev svg {
  transform: scaleX(-1);
}

.splide__arrow--next {
  right: 0;
  border-top-left-radius: 6px;
  border-bottom-left-radius: 6px;
  box-shadow: -5px 0px 10px rgba(30, 30, 30, 0.1);
}

.splide.is-focus-in .splide__arrow:focus {
  outline: 3px solid #0bf;
  outline-offset: 3px;
}

ul.splide__pagination {
  -ms-flex-align: center;
  align-items: center;
  display: -ms-flexbox;
  display: inline-flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-pack: center;
  justify-content: center;
  margin: 0;
  margin-top: 10px;
  pointer-events: none;
  top: 100%;
  padding: 4px 8px;
  z-index: 1;
  background-color: #f5f5f7;
  box-sizing: border-box;
  line-height: 1;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: max-content;
  border-radius: 50px;
}

.splide__pagination:before {
  left: -10px;
  transform: skewX(30deg);
  border-radius: 0 0 0 3px;
}

.splide__pagination:after {
  right: -10px;
  transform: skewX(-30deg);
  border-radius: 0 0 3px 0;
}

.splide__pagination li {
  display: inline-block;
  line-height: 0;
  list-style-type: none;
  margin: 0;
  pointer-events: auto;
}

.splide:not(.is-overflow) .splide__pagination {
  display: none;
}

.splide__pagination__page {
  background: rgba(0, 0, 0, 0.2);
  border: 0;
  border-radius: 50%;
  display: inline-block;
  height: 5px;
  width: 5px;
  margin: 4px;
  opacity: 0.7;
  padding: 0;
  position: relative;
  transition: transform 0.2s linear;
}

.splide__pagination__page.is-active {
  background: rgba(0, 0, 0, 0.8);
  z-index: 1;
}

.splide__pagination__page:hover {
  cursor: pointer;
  opacity: 1;
}

.splide__pagination__page:focus-visible {
  outline: 3px solid #0bf;
  outline-offset: 3px;
}

.splide.is-focus-in .splide__pagination__page:focus {
  outline: 3px solid #0bf;
  outline-offset: 3px;
}

.splide__progress {
  background-color: #191b1e;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 10px;
  width: 200px;
}

.splide__progress__bar {
  background: #ccc;
  height: 3px;
}

.splide__slide {
  -webkit-tap-highlight-color: transparent;
}

.splide__slide:focus {
  outline: 0;
}

@supports (outline-offset: -3px) {
  .splide__slide:focus-visible {
    outline: 3px solid #0bf;
    outline-offset: -3px;
  }
}

@media screen and (-ms-high-contrast: none) {
  .splide__slide:focus-visible {
    border: 3px solid #0bf;
  }
}

@supports (outline-offset: -3px) {
  .splide.is-focus-in .splide__slide:focus {
    outline: 3px solid #0bf;
    outline-offset: -3px;
  }
}

@media screen and (-ms-high-contrast: none) {
  .splide.is-focus-in .splide__slide:focus {
    border: 3px solid #0bf;
  }
  
  .splide.is-focus-in .splide__track > .splide__list > .splide__slide:focus {
    border-color: #0bf;
  }
}

.splide__toggle {
  cursor: pointer;
}

.splide__toggle:focus-visible {
  outline: 3px solid #0bf;
  outline-offset: 3px;
}

.splide.is-focus-in .splide__toggle:focus {
  outline: 3px solid #0bf;
  outline-offset: 3px;
}

.splide__track--nav > .splide__list > .splide__slide {
  border: 3px solid transparent;
  cursor: pointer;
}

.splide__track--nav > .splide__list > .splide__slide.is-active {
  border: 3px solid #000;
}

.splide__arrows--rtl .splide__arrow--prev {
  left: auto;
  right: 1em;
}

.splide__arrows--rtl .splide__arrow--prev svg {
  transform: scaleX(1);
}

.splide__arrows--rtl .splide__arrow--next {
  left: 1em;
  right: auto;
}

.splide__arrows--rtl .splide__arrow--next svg {
  transform: scaleX(-1);
}

.splide__arrows--ttb .splide__arrow {
  left: 50%;
  transform: translate(-50%);
}

.splide__arrows--ttb .splide__arrow--prev {
  top: 1em;
}

.splide__arrows--ttb .splide__arrow--prev svg {
  transform: rotate(-90deg);
}

.splide__arrows--ttb .splide__arrow--next {
  bottom: 1em;
  top: auto;
}

.splide__arrows--ttb .splide__arrow--next svg {
  transform: rotate(90deg);
}

.splide__pagination--ttb {
  bottom: 0;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  left: auto;
  padding: 1em 0;
  right: 0.5em;
  top: 0;
}

@media (max-width: 768px) {
.splide__arrows {
  display: none;
}
}

/* HPS */
.hps_section {
    background: hsl(220 40% 96%);
    padding-top: 20px;
    padding-bottom: 20px;
}


.hpc_progress {
  margin-top: 20px;
  background: hsla(0, 0%, 0%, 0.1);
}
/*
@media (min-width: 1360px) {
.hpc_progress {
display: none;
}
}*/

.hpc_progress_bar {
  background: #f05;
  height: 2px;
  transition: width 400ms ease;
  width: 0;
}

.hps_container {
  display: grid;
  grid-template-columns: 2fr 1fr;
  grid-template-rows: repeat(2, auto);
  gap: 20px;
  min-height: 300px;
  --hero_slider_padding: 60px;
}

.hps_slider {
  grid-row: 1 / 3;
  background-color: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 0.1rem 2rem rgba(30, 30, 30, 0.1);
}

.hps_slider > section > ul.splide__pagination {
  top: 20px;
  left: var(--hero_slider_padding);
  padding: 2px;
  border-radius: 6px;
  transform: none;
  z-index: 1;
  margin: 0;
  box-sizing: border-box;
}

.hps_top {
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 0.1rem 2rem rgba(30, 30, 30, 0.1);
}
.hps_bottom {
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 0.1rem 2rem rgba(30, 30, 30, 0.1);
}

.hps_slide {
  display: flex;
}

.hps_slide_img {
  overflow: hidden;
  position: absolute;
  height: 100%;
  width: 100%;
  left: 25%;
}

.hps_slide_img img {
  position: absolute;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  object-position: bottom;
  transition: 1s;
  opacity: 0;
}

.hps_slide_img_cover img {
  -o-object-fit: cover;
  object-fit: cover;

}

.hps_slide.is-active .hps_slide_img img {
  transition-delay: 0.5s;
  opacity: 1;
}

.hps_slide_content {
  position: relative;
  display: flex;
  flex-wrap: wrap;

  margin-top: auto;
  max-width: 75%;
  padding: var(--hero_slider_padding);
  box-sizing: border-box;
}

.hps_slide_dark,
.hps_slide_dark p, 
.hps_slide_dark h2 {
  color: white;
}

.hps_slide_content > * {
  width: 100%;
  transition: 0.5s;
  transform: translateY(20px);
  opacity: 0;
}

.hps_slide_content s {
    text-decoration: none;
    display: inline-block;
    font-weight: 100;
    margin: 0 0.25em;
}

.hps_slide_content small {
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.hps_slide_dark .hps_slide_content small {
    color: white;
}

.hps_slide.is-active .hps_slide_content > * {
  transform: translateY(0px);
  opacity: 1;
}

.hps_slide_content h2 {
  margin: 0;
  font-size: 26px;
  line-height: 1.5;
  transition-delay: 100ms;
  display: inline-flex;
  align-items: baseline;
}
.hps_slide_content h2 svg {
  margin-right: 0.25em;
  width: auto;
  min-width: 1em;
  height: 1em;
  display: block;
}

.hps_slide_dark .hps_slide_content h2 svg {
  fill: #fff;
}

.hps_slide_content p {
  transition-delay: 150ms;
  margin: 0;
  margin-top: 1rem;
  font-size: 16px;
  line-height: 1.5;
  padding: 6px 0;
}
.hps_slide_content p:not(:first-child) {
  margin-top: 0;
}

.hps_slide_button {
  width: auto;
  transition-delay: 200ms;
  margin-top: 2rem;
  text-decoration: none;
  background-color: #191b1e;
  color: #fff;
  text-align: center;
  justify-content: center;
  padding: 1rem 2rem;
  font-weight: 500;
  cursor: pointer;
  font-size: 16px;
  line-height: 1;
  border-radius: 6px;
  box-sizing: border-box;
  display: inline-flex;
  text-align: center;
}

.hps_slide_dark .hps_slide_button {
    background-color: #fff;
  color: #191b1e;
}

@media only screen and (max-width: 768px) {
  .hps_container {
    grid-template-columns: 1fr;
    grid-template-rows: 3fr;
    --hero_slider_padding: 20px;
  }
  .hps_slide {
    height: 360px;
  }

  .hps_slide_content {
    z-index: 1;
    max-width: 100%;
    width: 100%;
  }
  .hps_slide_content:after {
    opacity: 1;
    transition: 2s;
    content: "";
    position: absolute;
    background-color: hsla(var(--hero_slide_color) / 0.75);
    -webkit-backdrop-filter: saturate(1) blur(4px);
    -o-backdrop-filter: saturate(1) blur(4px);
    -ms-backdrop-filter: saturate(1) blur(4px);
    backdrop-filter: saturate(1) blur(4px);
    -webkit-mask: linear-gradient(
      hsl(0deg 0% 0% / 0%),
      hsl(0deg 0% 0% / 75%),
      black
    );
    mask: linear-gradient(hsl(0deg 0% 0% / 0%), hsl(0deg 0% 0% / 75%), black);
    width: 100%;
    height: 100%;
    z-index: -1;
    left: 0;
    top: 0;
  }
  .hps_slide.is-active .hps_slide_content:after {
    transition-delay: 100ms;
    opacity: 1;
  }
  .hps_slide_imgtransp .hps_slide_img {
    opacity: 0.3;
  }
}

.hps_ysplit,
.hps_tbank {
  padding: 30px;
  display: grid;
  grid-gap: 0.75rem;
  align-content: baseline;
  text-decoration: none;
  color: #000;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.hps_ysplit:before {
  content: "";
  position: absolute;
  background-color: #55d48e;
  right: -50px;
  top: -50px;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  z-index: -1;
  filter: blur(50px);
}

.hps_tbank:before {
  content: "";
  position: absolute;
  background-color: #ffdd2d;
  right: -50px;
  top: -50px;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  z-index: -1;
  filter: blur(50px);
}

.hps_ysplit > *,
.hps_tbank > * {
  margin: 0;
}

.hps_ysplit img,
.hps_tbank img {
  display: block;
  max-width: 200px;
  max-height: 20px;
  width: auto;
  margin-bottom: 0.75rem;

}

.hps_ysplit p,
.hps_tbank p {
  font-weight: bold;
}

.hps_slider_container,
.hps_slider_track {
  height: 100%;
}

/*************/

.hpc_slider_container {
  margin-top: 20px;
}

.hpc_item > a {
  text-decoration: none;
  color: #000;
  text-align: center;
  display: block;
  width: 120px;
}

/* Fix width */
/*@media (min-width: 768px) {
.hpc_item > a {
  width: 133.4px;
}
}*/

.hpc_item div {
  padding-bottom: 80%;
  background-color: #fff;
  border-radius: 8px;
  /*box-shadow: 0 0.1rem 2rem rgba(30, 30, 30, 0.1);*/
  margin-bottom: 15px;
  position: relative;
  overflow: hidden;
}

.hpc_item_all div {
  color: #fff;
  background-color: #f05;
}

.hpc_item > a > div > img,
.hpc_item > a > div > svg {
  display: block;
  width: 70%;
  height: 60%;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  position: absolute;
      -o-object-fit: contain;
  object-fit: contain;
}