/* 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;
  --primary-blue: #025FD8;
  --primary-cream: #FFFCEE;
  --pink: #FFC7F5;
  --yellow: #FBE546;
  --orange: #FF9F32;
  --red: #FF5F2D;
  --green: #8CE202;
  --base-light: #FFFCEE;
  --base-lighter: #FFFCEE;
}

:root {
  --primary-font: "Montserrat", serif;
  --secondary-font: "Nombre Sans", sans-serif ;
  --tertiary-font: "Inter", sans-serif;
}

@font-face {
  font-family: "Montserrat";
  src: url("../../css/fonts/Montserrat-SemiBold.woff2") format("woff2"), url("../../css/fonts/Montserrat-SemiBold.woff") format("woff");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Montserrat";
  src: url("../../css/fonts/Montserrat-Regular.woff2") format("woff2"), url("../../css/fonts/Montserrat-Regular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Montserrat";
  src: url("../../css/fonts/Montserrat-Black.woff2") format("woff2"), url("../../css/fonts/Montserrat-Black.woff") format("woff");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Nombre Sans";
  src: url("../../css/fonts/NombreSans-Bold.woff2") format("woff2"), url("../../css/fonts/NombreSans-Bold.woff") format("woff");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Nombre Sans";
  src: url("../../css/fonts/NombreSans-Black.woff2") format("woff2"), url("../../css/fonts/NombreSans-Black.woff") format("woff");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}
.ss.brand-scroller {
  position: relative;
  height: 100vh;
}
.ss.brand-scroller .brand-scroller__wrapper {
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.ss.brand-scroller .brand-scroller__overlay {
  position: absolute;
  inset: 0;
  list-style: none;
  pointer-events: none;
  list-style: none;
}
.ss.brand-scroller .brand-scroller__overlay .brand-scroller__overlay-item {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: all 0.3s ease-in-out;
}
.ss.brand-scroller .brand-scroller__overlay .brand-scroller__overlay-item--pink {
  background-color: var(--pink);
}
.ss.brand-scroller .brand-scroller__overlay .brand-scroller__overlay-item--green {
  background-color: var(--green);
}
.ss.brand-scroller .brand-scroller__overlay .brand-scroller__overlay-item--orange {
  background-color: var(--orange);
}
.ss.brand-scroller .brand-scroller__overlay .brand-scroller__overlay-item--blue-light {
  background-color: var(--primary-blue-light);
}
.ss.brand-scroller .brand-scroller__overlay .brand-scroller__overlay-item--yellow {
  background-color: var(--yellow);
}
.ss.brand-scroller .brand-scroller__block {
  height: 100%;
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media screen and (min-width:768px) {
  .ss.brand-scroller .brand-scroller__block {
    padding: var(--u-size-large) 0;
  }
}
.ss.brand-scroller .brand-scroller__list {
  list-style: none;
  text-align: center;
  padding: 5.634vh var(--u-size-2x-medium) 0;
  position: relative;
}
@media (max-width: 581px) and (max-height: 700px) {
  .ss.brand-scroller .brand-scroller__list {
    padding: 0 var(--u-size-2x-medium) 0;
  }
}
@media screen and (min-width:768px) {
  .ss.brand-scroller .brand-scroller__list {
    padding: 0 var(--u-size-large);
  }
}
.ss.brand-scroller .brand-scroller__list li:not(:last-child) {
  margin-bottom: var(--u-size-medium);
}
@media screen and (min-width:1199px) {
  .ss.brand-scroller .brand-scroller__list li:not(:last-child) {
    margin-bottom: var(--u-size-2x-medium);
  }
}
.ss.brand-scroller .brand-scroller__item {
  font-size: 1.875rem;
  font-weight: 900;
  line-height: 112%;
  letter-spacing: -0.025rem;
  color: var(--primary-blue-dark);
  font-family: var(--secondary-font);
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: all 0.3s ease-in-out;
}
@media screen and (min-width:390px) {
  .ss.brand-scroller .brand-scroller__item {
    font-size: 2.5rem;
  }
}
@media screen and (min-width:768px) {
  .ss.brand-scroller .brand-scroller__item {
    font-size: 3.125rem;
  }
}
@media screen and (min-width:1199px) {
  .ss.brand-scroller .brand-scroller__item {
    letter-spacing: -0.045rem;
    font-size: 5rem;
  }
}
.ss.brand-scroller .brand-scroller__cta {
  text-align: center;
  margin-top: 5.634vh;
  position: relative;
  padding: 0 var(--u-size-small);
}
@media screen and (min-width:768px) {
  .ss.brand-scroller .brand-scroller__cta {
    margin-top: var(--u-size-large);
  }
}
@media screen and (min-width:1199px) {
  .ss.brand-scroller .brand-scroller__cta {
    margin-top: 5.766vh;
  }
}
.ss.brand-scroller .brand-scroller__cta .l-btn {
  width: 100%;
}
@media screen and (min-width:768px) {
  .ss.brand-scroller .brand-scroller__cta .l-btn {
    width: auto;
  }
}
.ss.brand-scroller .brand-scroller__images {
  position: absolute;
  inset: 0;
  list-style: none;
  pointer-events: none;
}
.ss.brand-scroller .brand-scroller__bg {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: all 0.3s ease-in-out;
}
.ss.brand-scroller .brand-scroller__bg picture {
  height: 100%;
}
.ss.brand-scroller .brand-scroller__bg img {
  height: 100%;
  width: 100%;
  object-fit: contain;
  object-position: center;
}
@media screen and (min-width:768px) {
  .ss.brand-scroller .brand-scroller__bg img {
    object-fit: cover;
  }
}
@media screen and (min-width:991px) {
  .ss.brand-scroller .brand-scroller__bg img {
    object-fit: contain;
  }
}
.ss.brand-scroller .brand-scroller__item-link {
  display: flex;
  opacity: 0;
  visibility: hidden;
  position: absolute;
  right: -1.875rem;
  top: 50%;
  transform: translateY(-50%);
  width: 1.5rem;
  height: 1.5rem;
  background-color: var(--primary-cream);
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease-in-out;
}
@media screen and (min-width:768px) {
  .ss.brand-scroller .brand-scroller__item-link {
    right: -3.625rem;
    width: 3rem;
    height: 3rem;
  }
}
.ss.brand-scroller--active .brand-scroller__item:not(.is-active) {
  opacity: 0.24;
}
.ss.brand-scroller--active .brand-scroller__item.is-active .brand-scroller__item-link {
  opacity: 1;
  visibility: visible;
}
.ss.brand-scroller--active .brand-scroller__item.is-active .brand-scroller__item-link:hover, .ss.brand-scroller--active .brand-scroller__item.is-active .brand-scroller__item-link:focus-visible {
  opacity: 0.75;
}
.ss.brand-scroller--active .brand-scroller__overlay .brand-scroller__overlay-item.is-active {
  opacity: 1;
}
.ss.brand-scroller--active .brand-scroller__bg.is-active {
  opacity: 1;
}

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