/* stylelint-disable-next-line wrap-rem-on-px/wrap-rem-on-px */
/* stylelint-disable wrap-rem-on-px/wrap-rem-on-px */
/* stylelint-enable wrap-rem-on-px/wrap-rem-on-px */
/*
USAGE:
font-size: fluid(12, 62); : from rem(12)@380px to  rem(62)@1440px
gap: fluid(10, 33, 992);  : from rem(10)@991px to  rem(33)@1440px
margin-right: fluid(32, 65, 320, 2560);  : from rem(32)@320px to  rem(65)@2560px
*/
/*
AUTOFILL

USAGE:
@include mixin.autofill(background-color, text-color);
@include mixin.autofill;

Note: Call this mixin in the wrapper or container to where you intend to manipulate the
      default chrome autofill styles for input, textarea and select elements.
*/
/* stylelint-disable */
/* stylelint-enable */
:root {
  --u-size-tiny: 0.25rem;
  --u-size-2x-tiny: 0.5rem;
  --u-size-3x-tiny: 0.75rem;
  --u-size-small: 1rem;
  --u-size-medium: 1.5rem;
  --u-size-2x-medium: 2rem;
  --u-size-large: 3rem;
  --u-size-2x-large: 4rem;
  --u-size-3x-large: 6rem;
  --u-size-huge: 8rem;
  --u-size-2x-huge: 12rem;
  --u-size-3x-huge: 16rem;
}

/* ===================================
   Brand Palette
=================================== */
:root {
  --black: #000;
  --white: #fff;
  --primary-blue-dark: #024482;
  --primary-blue-light: #C8EBFF;
  --blue-light-secondary: #C0DFEC;
  --primary-blue: #025FD8;
  --primary-cream: #FFFCEE;
  --pink: #FFC7F5;
  --yellow: #FBE546;
  --orange: #FF9F32;
  --red: #FF5F2D;
  --green: #8CE202;
  --base-light: #FFFCEE;
  --base-lighter: #FFFCEE;
}

section.section--reduced:has(.ss.image-text.is-primary-cream) {
  background-color: var(--primary-cream);
}
section.section--reduced:has(.ss.image-text.is-yellow) {
  background-color: var(--yellow);
}
section.section--reduced:has(.ss.image-text.is-blue) {
  background-color: var(--primary-blue);
}
section.section--reduced:has(.ss.image-text.is-light-blue) {
  background-color: var(--primary-blue-light);
}

main > section.section--reduced:has(.ss.image-text):first-child {
  padding-top: var(--u-size-medium);
}
@media screen and (min-width:1199px) {
  main > section.section--reduced:has(.ss.image-text):first-child {
    padding-top: var(--u-size-2x-medium);
  }
}

@media screen and (min-width:768px) {
  .ss.image-text .image-text__inner {
    display: grid;
    grid-template-columns: auto 60%;
    gap: var(--u-size-medium);
    align-items: center;
  }
}
@media screen and (min-width:1199px) {
  .ss.image-text .image-text__inner {
    grid-template-columns: 46.493902439% auto;
    gap: var(--u-size-2x-large);
  }
}
.ss.image-text .aspect-box--editor-preview {
  overflow: hidden;
}
.ss.image-text .aspect-box--editor-preview::before {
  display: block;
  padding-top: calc(var(--aspect-ratio) * 100%);
  content: "";
}
.ss.image-text .aspect-box--editor-preview img,
.ss.image-text .aspect-box--editor-preview video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ss.image-text figure.aspect-box {
  --aspect-ratio: 1/1;
  position: relative;
  height: fit-content;
}
.ss.image-text figure.image-border-yellow {
  border: 0.880625rem solid var(--yellow);
  overflow: visible;
}
@media screen and (min-width:1199px) {
  .ss.image-text figure.image-border-yellow {
    border-width: 1.5rem;
  }
}
.ss.image-text figure.image-border-blue {
  border: 0.880625rem solid var(--primary-blue-light);
  overflow: visible;
}
@media screen and (min-width:1199px) {
  .ss.image-text figure.image-border-blue {
    border-width: 1.5rem;
  }
}
.ss.image-text figure.is-rounded {
  border-radius: 50%;
}
.ss.image-text figure .corner-decoration {
  position: absolute;
  width: 0.8803125rem;
  height: 0.8803125rem;
  display: block;
  z-index: 1;
}
@media screen and (min-width:1199px) {
  .ss.image-text figure .corner-decoration {
    width: 1.5rem;
    height: 1.5rem;
  }
}
.ss.image-text figure .corner-decoration.corner-tl {
  top: -0.880625rem;
  left: -0.880625rem;
}
@media screen and (min-width:1199px) {
  .ss.image-text figure .corner-decoration.corner-tl {
    top: -1.5rem;
    left: -1.5rem;
  }
}
.ss.image-text figure .corner-decoration.corner-tr {
  top: -0.880625rem;
  right: -0.880625rem;
}
@media screen and (min-width:1199px) {
  .ss.image-text figure .corner-decoration.corner-tr {
    top: -1.5rem;
    right: -1.5rem;
  }
}
.ss.image-text figure .corner-decoration.corner-bl {
  bottom: -0.880625rem;
  left: -0.880625rem;
}
@media screen and (min-width:1199px) {
  .ss.image-text figure .corner-decoration.corner-bl {
    bottom: -1.5rem;
    left: -1.5rem;
  }
}
.ss.image-text figure .corner-decoration.corner-br {
  bottom: -0.880625rem;
  right: -0.880625rem;
}
@media screen and (min-width:1199px) {
  .ss.image-text figure .corner-decoration.corner-br {
    bottom: -1.5rem;
    right: -1.5rem;
  }
}
.ss.image-text figure .corner-decoration.corner-blue {
  background-color: var(--primary-blue);
}
.ss.image-text figure .corner-decoration.corner-yellow {
  background-color: var(--yellow);
}
@media screen and (max-width:767px) {
  .ss.image-text figure:has(+ .image-text__content) {
    margin-bottom: var(--u-size-large);
  }
}
@media screen and (min-width:768px) {
  .ss.image-text .image-text__content {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
}
.ss.image-text .image-text__content .image-text__subtitle {
  display: block;
}
.ss.image-text .image-text__content .image-text__subtitle:has(+ .image-text__title) {
  margin-bottom: var(--u-size-2x-medium);
}
@media screen and (min-width:768px) {
  .ss.image-text .image-text__content .image-text__subtitle:has(+ .image-text__title) {
    margin-bottom: var(--u-size-3x-tiny);
  }
}
@media screen and (min-width:1199px) {
  .ss.image-text .image-text__content .image-text__subtitle:has(+ .image-text__title) {
    margin-bottom: var(--u-size-2x-medium);
  }
}
.ss.image-text .image-text__content .image-text__title {
  color: var(--primary-blue-dark);
  font-family: var(--secondary-font);
  letter-spacing: -0.02rem;
}
@media screen and (min-width:1199px) {
  .ss.image-text .image-text__content .image-text__title {
    letter-spacing: -0.03rem;
  }
}
.ss.image-text .image-text__content .image-text__title:has(+ footer) {
  margin-bottom: var(--u-size-large);
}
@media screen and (min-width:768px) {
  .ss.image-text .image-text__content .image-text__title:has(+ footer) {
    margin-bottom: var(--u-size-medium);
  }
}
@media screen and (min-width:1199px) {
  .ss.image-text .image-text__content .image-text__title:has(+ footer) {
    margin-bottom: var(--u-size-large);
  }
}
.ss.image-text .image-text__content .image-text__title:has(+ .generic) {
  margin-bottom: var(--u-size-3x-tiny);
}
.ss.image-text .image-text__content .image-text__title sup {
  top: -0.3125rem;
}
.ss.image-text .image-text__content .image-text__title.l-h4 {
  letter-spacing: normal;
}
.ss.image-text .image-text__content .image-text__title.l-h1,
.ss.image-text .image-text__content .image-text__title.l-h3 {
  font-size: 2rem;
  line-height: 128%;
  letter-spacing: -0.02rem;
}
@media screen and (min-width:1199px) {
  .ss.image-text .image-text__content .image-text__title.l-h1,
  .ss.image-text .image-text__content .image-text__title.l-h3 {
    font-size: 3rem;
    letter-spacing: -0.03rem;
    max-width: 32.125rem;
  }
}
.ss.image-text .image-text__content h1.image-text__title.l-h3 {
  max-width: unset;
}
@media screen and (max-width:767px) {
  .ss.image-text .image-text__content .l-btn {
    width: 100%;
  }
}
.ss.image-text .image-text__content p sup {
  font-size: 0.625rem;
  top: -0.375rem;
}
@media screen and (min-width:1199px) {
  .ss.image-text .image-text__content p sup {
    font-size: 0.75rem;
  }
}
.ss.image-text--right .image-text__inner {
  display: flex;
  flex-direction: column;
  row-gap: var(--u-size-large);
}
@media screen and (min-width:768px) {
  .ss.image-text--right .image-text__inner {
    display: grid;
    grid-template-columns: 60% auto;
  }
}
@media screen and (min-width:1199px) {
  .ss.image-text--right .image-text__inner {
    grid-template-columns: auto 46.493902439%;
  }
}
@media screen and (max-width:767px) {
  .ss.image-text--right .image-text__content {
    order: 2;
  }
}
.ss.image-text.is-blue .l-tag {
  color: var(--primary-cream);
}
.ss.image-text.is-blue .image-text__content .image-text__title {
  color: var(--primary-cream);
}
.ss.image-text.is-blue .image-text__content p {
  color: var(--primary-cream);
}
.ss.image-text.is-blue .l-btn {
  background-color: var(--primary-cream);
  color: var(--primary-blue);
}
.ss.image-text.is-blue .l-btn:hover, .ss.image-text.is-blue .l-btn:focus-visible {
  background-color: var(--primary-blue-dark);
  color: var(--primary-cream);
}
.ss.image-text--contain .aspect-box img {
  object-fit: contain;
}
.ss.image-text--contain .aspect-box:has(video):before {
  padding-top: 0;
}
.ss.image-text--contain .aspect-box:has(video) video {
  position: relative;
}

/*# sourceMappingURL=style.css.map */
