/* 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;
}

.ss.gallery {
  background: linear-gradient(180deg, #fff 0%, #C8EBFF 100%);
  padding-top: var(--u-size-2x-medium);
}
@media screen and (min-width:768px) {
  .ss.gallery {
    padding-top: var(--u-size-large);
  }
}
@media screen and (min-width:1199px) {
  .ss.gallery {
    padding-top: 0;
  }
}
.ss.gallery .gallery__controls {
  display: flex;
  justify-content: flex-end;
  margin-bottom: var(--u-size-3x-tiny);
  padding-inline: var(--u-size-3x-tiny);
}
@media screen and (min-width:1199px) {
  .ss.gallery .gallery__controls {
    margin-bottom: 1rem;
    padding-inline: var(--u-size-medium);
  }
}
.ss.gallery .gallery__motion-toggle {
  appearance: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 0.625rem;
  width: var(--u-size-large);
  height: var(--u-size-large);
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 50%;
  background: var(--white);
  color: var(--primary-blue-dark);
  cursor: pointer;
  transition: background 0.15s ease, border-color 0.15s ease;
}
.ss.gallery .gallery__motion-toggle:hover {
  background: rgba(255, 255, 255, 0.85);
  border-color: rgba(0, 0, 0, 0.25);
}
.ss.gallery .gallery__motion-toggle:focus-visible {
  outline: 0.125rem solid currentColor;
  outline-offset: 0.125rem;
}
.ss.gallery .gallery__motion-toggle-icons {
  display: block;
  line-height: 0;
}
.ss.gallery .gallery__motion-icon {
  display: block;
}
.ss.gallery .gallery__motion-icon svg {
  display: block;
  width: var(--u-size-medium);
  height: var(--u-size-medium);
}
.ss.gallery .gallery__container {
  overflow: hidden;
}
.ss.gallery .gallery__container--static {
  overflow-x: auto;
}
.ss.gallery .gallery__container--static .gallery__slider {
  display: flex;
  align-items: flex-start;
}
.ss.gallery .gallery__container--static .gallery__slide-item {
  width: 33%;
  flex: 0 0 33%;
}
@media screen and (min-width:1199px) {
  .ss.gallery .gallery__container--static .gallery__slide-item {
    width: 23%;
    flex: 0 0 23%;
  }
}
.ss.gallery .gallery__slider-track {
  display: flex;
  align-items: flex-end;
  will-change: transform;
  /* Reduce Motion Support */
}
@media (prefers-reduced-motion: reduce) {
  .ss.gallery .gallery__slider-track .marquee-track {
    animation: none;
    transform: translateX(0);
  }
}
.ss.gallery .gallery__slide-item {
  flex-shrink: 0;
  padding: 0 0.5625rem;
}
@media screen and (min-width:1199px) {
  .ss.gallery .gallery__slide-item {
    padding: 0 0.9375rem;
  }
}
.ss.gallery .gallery__card {
  display: block;
  border-radius: var(--u-size-small);
  overflow: hidden;
  position: relative;
  will-change: transform;
  width: 100%;
  aspect-ratio: 200/244;
}
@media screen and (min-width:1199px) {
  .ss.gallery .gallery__card {
    aspect-ratio: 310/380;
  }
}
.ss.gallery .gallery__card img,
.ss.gallery .gallery__card lottie-playe,
.ss.gallery .gallery__card video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}

.section:has(.ss.gallery):has(+ .section .ss.team-module) {
  padding-top: 4.5rem;
}
@media screen and (min-width:1199px) {
  .section:has(.ss.gallery):has(+ .section .ss.team-module) {
    padding-top: 5.0625rem;
  }
}
.section:has(.ss.gallery):has(+ .section .ss.team-module) .ss.gallery {
  padding-top: 0;
}

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