:root {
  --spacer-bx: 3rem;
  --spacer-lg: 5rem;
}

@media (min-width: 1024px) {
  :root {
    --spacer-bx: 5rem;
    --spacer-lg: 5rem;
  }
}
/*
* Breakpoint debugging
*/
/*
* MEDIA QUERIES
* Breakpoints for responsive sites
*/
/*
* SASS Parent append
* Useful if you want to add an append to the parent without writing it out again
* Usage: @include parent-append(":hover")
* Source: https://codepen.io/imkremen/pen/RMVBvq
*/
/*
* Skew
* Useful mixing to create skewed edges
* Usage: @include angle-edge(bottomright, 3deg, topleft, 3deg, #fff);
* Source: http://www.hongkiat.com/blog/skewed-edges-css/
*/
/*
* TEXT TRUNCATE
* An easy way to truncate text with an ellipsis. Requires the element to be block or inline-block.
* Usage: @include text-truncate;
* Source: http://web-design-weekly.com/2013/05/12/handy-sass-mixins/
*/
/*
* DON'T BREAK
* Useful mixing so links don't overrun their container
* Usage: @include dontbreak();
* Source: https://css-tricks.com/snippets/css/prevent-long-urls-from-breaking-out-of-container/
*/
/*
* Dynamic Spacing
* A nice easy way to create a vertical rhythm for section of content
*/
/*
* Accessibility Focus
* Using the focus-visible psuedo class to only show focus styles when the element is focused via the keyboard
*/
.home .pin-spacer {
  max-height: none !important;
}

@media (max-width: 899px) {
  .vertical-carousel-layout {
    margin-top: 6rem;
  }
}

.vertical-carousel-img {
  width: 50%;
  background: linear-gradient(207.34deg, #662D91 -4.03%, #BD238F 52.2%, #FF7C44 104.12%, #FFB444 135.17%);
  border-radius: 12px;
  overflow: hidden;
  margin-left: auto;
  max-height: 550px;
  max-width: 550px;
}

.vertical-carousel__slide {
  border-radius: 30px;
}
.vertical-carousel__slide h3 {
  font-size: 32px;
  margin-bottom: 1.35ch;
}
.vertical-carousel__slide h3 span {
  display: block;
  color: inherit;
}
.vertical-carousel__slide h3 em {
  font-style: normal;
}
.vertical-carousel__slide p em {
  font-size: 22px;
  font-weight: 300;
  font-style: normal;
  line-height: 1.3;
  color: white;
}
.vertical-carousel__slide p strong {
  font-weight: 500;
}
.vertical-carousel__slide p:last-child {
  margin-bottom: 0;
}
.vertical-carousel__slide ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.vertical-carousel__slide ul li {
  margin: 0;
  padding: 2rem 0 2rem 5rem;
  position: relative;
}
.vertical-carousel__slide ul li:before {
  content: "";
  display: block;
  width: 30px;
  height: 30px;
  background-image: url("data:image/svg+xml,...");
  background-size: cover;
  position: absolute;
  top: 2.25rem;
  left: 0;
}
.vertical-carousel__slide ul li strong {
  font-size: 20px;
  color: white;
}
@media (max-width: 781px) {
  .vertical-carousel__slide {
    margin-bottom: 3rem;
  }
  .vertical-carousel__slide:nth-last-of-type(3) {
    margin-bottom: 0;
  }
}
@media (max-width: 1023px) {
  .vertical-carousel__slide {
    display: flex;
    gap: 6rem;
    justify-content: center;
    align-items: center;
    height: auto;
    margin-bottom: 6rem;
  }
  .vertical-carousel__slide .vertical-carousel-img {
    height: 300px;
    min-width: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .vertical-carousel__slide .vertical-carousel-img img {
    max-width: 85%;
  }
}
@media (max-width: 899px) {
  .vertical-carousel__slide {
    flex-direction: column;
    height: auto !important;
  }
  .vertical-carousel__slide .vertical-carousel-img {
    min-height: unset;
    min-width: unset;
    max-height: unset;
    max-width: unset;
    width: auto;
    margin-left: 0;
    height: auto;
  }
}
@media (min-width: 1024px) {
  .vertical-carousel {
    position: relative;
  }
  .vertical-carousel__slide {
    width: 100%;
    display: flex;
    position: absolute;
    top: 5vh;
    bottom: 5vh;
    left: 0;
    right: 60px;
    opacity: 0;
    pointer-events: none;
    transition: none;
    flex-wrap: nowrap;
    flex-direction: row;
    align-items: center;
    gap: 6rem;
  }
  .vertical-carousel__slide.active {
    opacity: 1;
    pointer-events: auto;
  }
  .vertical-carousel__slide .inner {
    gap: 6rem;
    width: 50%;
  }
  .vertical-carousel__spacer {
    height: 100vh;
    width: 100%;
  }
}
@media (min-width: 1350px) {
  .vertical-carousel__slide {
    top: 10vh;
    bottom: 10vh;
  }
}
@media (min-height: 900px) {
  .vertical-carousel__slide {
    top: calc(50% - 245px);
    height: 500px;
  }
}

@media (min-width: 1024px) {
  .vertical-carousel-layout {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
  }
  .vertical-carousel-layout > div {
    flex: 1;
  }
  .vertical-carousel-layout .feature-image {
    margin: 5vh 0;
  }
  .vertical-carousel-layout .feature-image .feat {
    height: 100%;
  }
  .vertical-carousel-layout .feature-image .feat img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .vertical-carousel-layout .vertical-carousel-wrapper {
    padding-right: 70px;
  }
}
@media (min-width: 1350px) {
  .vertical-carousel-layout .feature-image {
    margin: 10vh 0;
  }
}
@media (max-width: 1023px) {
  .carousel-progress {
    display: none;
  }
}
@media (min-width: 1024px) {
  .carousel-progress {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    position: absolute;
    top: 5vh;
    bottom: 5vh;
    right: -70px;
    z-index: 100;
  }
  .carousel-progress__current, .carousel-progress__total {
    width: 40px;
    height: 40px;
    font-size: 16px;
    line-height: 0;
    aspect-ratio: 1;
    text-align: center;
    padding: 18px 0 0 0;
    color: inherit;
    border-radius: 100%;
  }
  .carousel-progress__bar {
    width: 3px;
    height: 100%;
    background: #e5e5e5;
    border-radius: 30px;
    position: relative;
    overflow: hidden;
  }
  .carousel-progress__fill {
    width: 100%;
    height: 0%;
    background: linear-gradient(180deg, #FFB444 0%, #FFB444 100%);
    transform-origin: top;
    position: absolute;
    top: 0;
    left: 0;
  }
}
@media (min-width: 1350px) {
  .carousel-progress {
    top: 10vh;
    bottom: 10vh;
  }
}
@media (min-height: 900px) {
  .carousel-progress {
    height: 500px;
    top: calc(50% - 245px);
    bottom: unset;
  }
}/*# sourceMappingURL=block-vertical-carousel-feat.css.map */