/*! @algolia/autocomplete-theme-classic 1.8.2 | MIT License | © Algolia, Inc. and contributors | https://github.com/algolia/autocomplete */
:root {
  --aa-search-input-height: 44px;
  --aa-input-icon-size: 20px;
  --aa-base-unit: 16;
  --aa-spacing-factor: 1;
  --aa-spacing: calc(var(--aa-base-unit) * var(--aa-spacing-factor) * 1px);
  --aa-spacing-half: calc(var(--aa-spacing) / 2);
  --aa-panel-max-height: 650px;
  --aa-base-z-index: 9999;
  --aa-font-size: calc(var(--aa-base-unit) * 1px);
  --aa-font-family: inherit;
  --aa-font-weight-medium: 500;
  --aa-font-weight-semibold: 600;
  --aa-font-weight-bold: 700;
  --aa-icon-size: 20px;
  --aa-icon-stroke-width: 1.6;
  --aa-icon-color-rgb: 119, 119, 163;
  --aa-icon-color-alpha: 1;
  --aa-action-icon-size: 20px;
  --aa-text-color-rgb: 38, 38, 39;
  --aa-text-color-alpha: 1;
  --aa-primary-color-rgb: 62, 52, 211;
  --aa-primary-color-alpha: 0.2;
  --aa-muted-color-rgb: 128, 126, 163;
  --aa-muted-color-alpha: 0.6;
  --aa-panel-border-color-rgb: 128, 126, 163;
  --aa-panel-border-color-alpha: 0.3;
  --aa-input-border-color-rgb: 128, 126, 163;
  --aa-input-border-color-alpha: 0.8;
  --aa-background-color-rgb: 255, 255, 255;
  --aa-background-color-alpha: 1;
  --aa-input-background-color-rgb: 255, 255, 255;
  --aa-input-background-color-alpha: 1;
  --aa-selected-color-rgb: 179, 173, 214;
  --aa-selected-color-alpha: 0.205;
  --aa-description-highlight-background-color-rgb: 245, 223, 77;
  --aa-description-highlight-background-color-alpha: 0.5;
  --aa-detached-media-query: (max-width: 680px);
  --aa-detached-modal-media-query: (min-width: 680px);
  --aa-detached-modal-max-width: 680px;
  --aa-detached-modal-max-height: 500px;
  --aa-overlay-color-rgb: 115, 114, 129;
  --aa-overlay-color-alpha: 0.4;
  --aa-panel-shadow: 0 0 0 1px #23263b1a, 0 6px 16px -4px #23263b26;
  --aa-scrollbar-width: 13px;
  --aa-scrollbar-track-background-color-rgb: 234, 234, 234;
  --aa-scrollbar-track-background-color-alpha: 1;
  --aa-scrollbar-thumb-background-color-rgb: var(--aa-background-color-rgb);
  --aa-scrollbar-thumb-background-color-alpha: 1;
}
@media (hover: none) and (pointer: coarse) {
  :root {
    --aa-spacing-factor: 1.2;
    --aa-action-icon-size: 22px;
  }
}
body.dark,
body[data-theme="dark"] {
  --aa-text-color-rgb: 183, 192, 199;
  --aa-primary-color-rgb: 146, 138, 255;
  --aa-muted-color-rgb: 146, 138, 255;
  --aa-input-background-color-rgb: 0, 3, 9;
  --aa-background-color-rgb: 21, 24, 42;
  --aa-selected-color-rgb: 146, 138, 255;
  --aa-selected-color-alpha: 0.25;
  --aa-description-highlight-background-color-rgb: 0 255 255;
  --aa-description-highlight-background-color-alpha: 0.25;
  --aa-icon-color-rgb: 119, 119, 163;
  --aa-panel-shadow: inset 1px 1px 0 0 #2c2e40, 0 3px 8px 0 #000309;
  --aa-scrollbar-track-background-color-rgb: 44, 46, 64;
  --aa-scrollbar-thumb-background-color-rgb: var(--aa-background-color-rgb);
}
.aa-Autocomplete *,
.aa-DetachedFormContainer *,
.aa-Panel * {
  box-sizing: border-box;
}
.aa-Autocomplete,
.aa-DetachedFormContainer,
.aa-Panel {
  color: #262627;
  color: rgba(var(--aa-text-color-rgb), var(--aa-text-color-alpha));
  font-family: inherit;
  font-family: var(--aa-font-family);
  font-size: 16px;
  font-size: var(--aa-font-size);
  font-weight: 400;
  line-height: 1em;
  margin: 0;
  padding: 0;
  text-align: left;
}
.aa-Form {
  align-items: center;
  background-color: #fff;
  background-color: rgba(
    var(--aa-input-background-color-rgb),
    var(--aa-input-background-color-alpha)
  );
  border: 1px solid #807ea3cc;
  border: 1px solid
    rgba(var(--aa-input-border-color-rgb), var(--aa-input-border-color-alpha));
  border-radius: 3px;
  display: flex;
  line-height: 1em;
  margin: 0;
  position: relative;
  width: 100%;
}
.aa-Form:focus-within,
.aa-Form[focus-within] {
  border-color: #3e34d3;
  border-color: rgba(var(--aa-primary-color-rgb), 1);
  box-shadow: 0 0 0 2px #3e34d333, inset 0 0 0 2px #3e34d333;
  box-shadow: rgba(var(--aa-primary-color-rgb), var(--aa-primary-color-alpha)) 0
      0 0 2px,
    inset rgba(var(--aa-primary-color-rgb), var(--aa-primary-color-alpha)) 0 0 0
      2px;
  outline: medium none currentColor;
}
.aa-InputWrapperPrefix {
  align-items: center;
  display: flex;
  flex-shrink: 0;
  height: 44px;
  height: var(--aa-search-input-height);
  order: 1;
}
.aa-Label,
.aa-LoadingIndicator {
  cursor: auto;
  flex-shrink: 0;
  height: 100%;
  padding: 0;
  text-align: left;
}
.aa-Label svg,
.aa-LoadingIndicator svg {
  color: #3e34d3;
  color: rgba(var(--aa-primary-color-rgb), 1);
  height: auto;
  max-height: 20px;
  max-height: var(--aa-input-icon-size);
  stroke-width: 1.6;
  stroke-width: var(--aa-icon-stroke-width);
  width: 20px;
  width: var(--aa-input-icon-size);
}
.aa-LoadingIndicator,
.aa-SubmitButton {
  height: 100%;
  padding-left: 11px;
  padding-left: calc(var(--aa-spacing) * 0.75 - 1px);
  padding-right: 8px;
  padding-right: var(--aa-spacing-half);
  width: 47px;
  width: calc(var(--aa-spacing) * 1.75 + var(--aa-icon-size) - 1px);
}
@media (hover: none) and (pointer: coarse) {
  .aa-LoadingIndicator,
  .aa-SubmitButton {
    padding-left: 3px;
    padding-left: calc(var(--aa-spacing-half) / 2 - 1px);
    width: 39px;
    width: calc(var(--aa-icon-size) + var(--aa-spacing) * 1.25 - 1px);
  }
}
.aa-SubmitButton {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: none;
  border: 0;
  margin: 0;
}
.aa-LoadingIndicator {
  align-items: center;
  display: flex;
  justify-content: center;
}
.aa-LoadingIndicator[hidden] {
  display: none;
}
.aa-InputWrapper {
  order: 3;
  position: relative;
  width: 100%;
}
.aa-Input {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: none;
  border: 0;
  color: #262627;
  color: rgba(var(--aa-text-color-rgb), var(--aa-text-color-alpha));
  font: inherit;
  height: 44px;
  height: var(--aa-search-input-height);
  padding: 0;
  width: 100%;
}
.aa-Input::-moz-placeholder {
  color: #807ea399;
  color: rgba(var(--aa-muted-color-rgb), var(--aa-muted-color-alpha));
  opacity: 1;
}
.aa-Input::placeholder {
  color: #807ea399;
  color: rgba(var(--aa-muted-color-rgb), var(--aa-muted-color-alpha));
  opacity: 1;
}
.aa-Input:focus {
  border-color: none;
  box-shadow: none;
  outline: none;
}
.aa-Input::-webkit-search-cancel-button,
.aa-Input::-webkit-search-decoration,
.aa-Input::-webkit-search-results-button,
.aa-Input::-webkit-search-results-decoration {
  -webkit-appearance: none;
  appearance: none;
}
.aa-InputWrapperSuffix {
  align-items: center;
  display: flex;
  height: 44px;
  height: var(--aa-search-input-height);
  order: 4;
}
.aa-ClearButton {
  align-items: center;
  background: none;
  border: 0;
  color: #807ea399;
  color: rgba(var(--aa-muted-color-rgb), var(--aa-muted-color-alpha));
  cursor: pointer;
  display: flex;
  height: 100%;
  margin: 0;
  padding: 0 12.8333333333px;
  padding: 0 calc(var(--aa-spacing) * 0.8333333333 - 0.5px);
}
@media (hover: none) and (pointer: coarse) {
  .aa-ClearButton {
    padding: 0 10.1666666667px;
    padding: 0 calc(var(--aa-spacing) * 0.6666666667 - 0.5px);
  }
}
.aa-ClearButton:focus,
.aa-ClearButton:hover {
  color: #262627;
  color: rgba(var(--aa-text-color-rgb), var(--aa-text-color-alpha));
}
.aa-ClearButton[hidden] {
  display: none;
}
.aa-ClearButton svg {
  stroke-width: 1.6;
  stroke-width: var(--aa-icon-stroke-width);
  width: 20px;
  width: var(--aa-icon-size);
}
.aa-Panel {
  background-color: #fff;
  background-color: rgba(
    var(--aa-background-color-rgb),
    var(--aa-background-color-alpha)
  );
  border-radius: 4px;
  border-radius: calc(var(--aa-spacing) / 4);
  box-shadow: 0 0 0 1px #23263b1a, 0 6px 16px -4px #23263b26;
  box-shadow: var(--aa-panel-shadow);
  margin: 8px 0 0;
  overflow: hidden;
  position: absolute;
  transition: opacity 0.2s ease-in, filter 0.2s ease-in;
}
@media screen and (prefers-reduced-motion) {
  .aa-Panel {
    transition: none;
  }
}
.aa-Panel button {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: none;
  border: 0;
  margin: 0;
  padding: 0;
}
.aa-PanelLayout {
  height: 100%;
  margin: 0;
  max-height: 650px;
  max-height: var(--aa-panel-max-height);
  overflow-y: auto;
  padding: 0;
  position: relative;
  text-align: left;
}
.aa-PanelLayoutColumns--twoGolden {
  display: grid;
  grid-template-columns: 39.2% auto;
  overflow: hidden;
  padding: 0;
}
.aa-PanelLayoutColumns--two {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  overflow: hidden;
  padding: 0;
}
.aa-PanelLayoutColumns--three {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  overflow: hidden;
  padding: 0;
}
.aa-Panel--stalled .aa-Source {
  filter: grayscale(1);
  opacity: 0.8;
}
.aa-Panel--scrollable {
  margin: 0;
  max-height: 650px;
  max-height: var(--aa-panel-max-height);
  overflow-x: hidden;
  overflow-y: auto;
  padding: 8px;
  padding: var(--aa-spacing-half);
  scrollbar-color: #fff #eaeaea;
  scrollbar-color: rgba(
      var(--aa-scrollbar-thumb-background-color-rgb),
      var(--aa-scrollbar-thumb-background-color-alpha)
    )
    rgba(
      var(--aa-scrollbar-track-background-color-rgb),
      var(--aa-scrollbar-track-background-color-alpha)
    );
  scrollbar-width: thin;
}
.aa-Panel--scrollable::-webkit-scrollbar {
  width: 13px;
  width: var(--aa-scrollbar-width);
}
.aa-Panel--scrollable::-webkit-scrollbar-track {
  background-color: #eaeaea;
  background-color: rgba(
    var(--aa-scrollbar-track-background-color-rgb),
    var(--aa-scrollbar-track-background-color-alpha)
  );
}
.aa-Panel--scrollable::-webkit-scrollbar-thumb {
  background-color: #fff;
  background-color: rgba(
    var(--aa-scrollbar-thumb-background-color-rgb),
    var(--aa-scrollbar-thumb-background-color-alpha)
  );
  border-color: #eaeaea;
  border-color: rgba(
    var(--aa-scrollbar-track-background-color-rgb),
    var(--aa-scrollbar-track-background-color-alpha)
  );
  border-radius: 9999px;
  border-style: solid;
  border-width: 3px 2px 3px 3px;
}
.aa-Source {
  margin: 0;
  padding: 0;
  position: relative;
  width: 100%;
}
.aa-Source:empty {
  display: none;
}
.aa-SourceNoResults {
  font-size: 1em;
  margin: 0;
  padding: 16px;
  padding: var(--aa-spacing);
}
.aa-List {
  list-style: none;
  margin: 0;
}
.aa-List,
.aa-SourceHeader {
  padding: 0;
  position: relative;
}
.aa-SourceHeader {
  margin: 8px 0.5em 8px 0;
  margin: var(--aa-spacing-half) 0.5em var(--aa-spacing-half) 0;
}
.aa-SourceHeader:empty {
  display: none;
}
.aa-SourceHeaderTitle {
  background: #fff;
  background: rgba(
    var(--aa-background-color-rgb),
    var(--aa-background-color-alpha)
  );
  color: #3e34d3;
  color: rgba(var(--aa-primary-color-rgb), 1);
  display: inline-block;
  font-size: 0.8em;
  font-weight: 600;
  font-weight: var(--aa-font-weight-semibold);
  margin: 0;
  padding: 0 8px 0 0;
  padding: 0 var(--aa-spacing-half) 0 0;
  position: relative;
  z-index: 9999;
  z-index: var(--aa-base-z-index);
}
.aa-SourceHeaderLine {
  border-bottom: 1px solid #3e34d3;
  border-bottom: 1px solid rgba(var(--aa-primary-color-rgb), 1);
  display: block;
  height: 2px;
  left: 0;
  margin: 0;
  opacity: 0.3;
  padding: 0;
  position: absolute;
  right: 0;
  top: 8px;
  top: var(--aa-spacing-half);
  z-index: 9998;
  z-index: calc(var(--aa-base-z-index) - 1);
}
.aa-SourceFooterSeeAll {
  background: linear-gradient(180deg, #fff, #807ea324);
  background: linear-gradient(
    180deg,
    rgba(var(--aa-background-color-rgb), var(--aa-background-color-alpha)),
    #807ea324
  );
  border: 1px solid #807ea399;
  border: 1px solid rgba(var(--aa-muted-color-rgb), var(--aa-muted-color-alpha));
  border-radius: 5px;
  box-shadow: inset 0 0 2px #fff, 0 2px 2px -1px #4c455826;
  color: inherit;
  font-size: 0.95em;
  font-weight: 500;
  font-weight: var(--aa-font-weight-medium);
  padding: 0.475em 1em 0.6em;
  text-decoration: none;
}
.aa-SourceFooterSeeAll:focus,
.aa-SourceFooterSeeAll:hover {
  border: 1px solid #3e34d3;
  border: 1px solid rgba(var(--aa-primary-color-rgb), 1);
  color: #3e34d3;
  color: rgba(var(--aa-primary-color-rgb), 1);
}
.aa-Item {
  align-items: center;
  border-radius: 3px;
  cursor: pointer;
  display: grid;
  min-height: 40px;
  min-height: calc(var(--aa-spacing) * 2.5);
  padding: 4px;
  padding: calc(var(--aa-spacing-half) / 2);
}
.aa-Item[aria-selected="true"] {
  background-color: rgba(179, 173, 214, 0.205);
  background-color: rgba(
    var(--aa-selected-color-rgb),
    var(--aa-selected-color-alpha)
  );
}
.aa-Item[aria-selected="true"] .aa-ActiveOnly,
.aa-Item[aria-selected="true"] .aa-ItemActionButton {
  visibility: visible;
}
.aa-ItemIcon {
  align-items: center;
  background: #fff;
  background: rgba(
    var(--aa-background-color-rgb),
    var(--aa-background-color-alpha)
  );
  border-radius: 3px;
  box-shadow: inset 0 0 0 1px #807ea34d;
  box-shadow: inset 0 0 0 1px
    rgba(var(--aa-panel-border-color-rgb), var(--aa-panel-border-color-alpha));
  color: #7777a3;
  color: rgba(var(--aa-icon-color-rgb), var(--aa-icon-color-alpha));
  display: flex;
  flex-shrink: 0;
  font-size: 0.7em;
  height: 28px;
  height: calc(var(--aa-icon-size) + var(--aa-spacing-half));
  justify-content: center;
  overflow: hidden;
  stroke-width: 1.6;
  stroke-width: var(--aa-icon-stroke-width);
  text-align: center;
  width: 28px;
  width: calc(var(--aa-icon-size) + var(--aa-spacing-half));
}
.aa-ItemIcon img {
  height: auto;
  max-height: 20px;
  max-height: calc(var(--aa-icon-size) + var(--aa-spacing-half) - 8px);
  max-width: 20px;
  max-width: calc(var(--aa-icon-size) + var(--aa-spacing-half) - 8px);
  width: auto;
}
.aa-ItemIcon svg {
  height: 20px;
  height: var(--aa-icon-size);
  width: 20px;
  width: var(--aa-icon-size);
}
.aa-ItemIcon--alignTop {
  align-self: flex-start;
}
.aa-ItemIcon--noBorder {
  background: none;
  box-shadow: none;
}
.aa-ItemIcon--picture {
  height: 96px;
  width: 96px;
}
.aa-ItemIcon--picture img {
  max-height: 100%;
  max-width: 100%;
  padding: 8px;
  padding: var(--aa-spacing-half);
}
.aa-ItemContent {
  align-items: center;
  cursor: pointer;
  display: grid;
  grid-gap: 8px;
  gap: 8px;
  grid-gap: var(--aa-spacing-half);
  gap: var(--aa-spacing-half);
  grid-auto-flow: column;
  line-height: 1.25em;
  overflow: hidden;
}
.aa-ItemContent:empty {
  display: none;
}
.aa-ItemContent mark {
  background: none;
  color: #262627;
  color: rgba(var(--aa-text-color-rgb), var(--aa-text-color-alpha));
  font-style: normal;
  font-weight: 700;
  font-weight: var(--aa-font-weight-bold);
}
.aa-ItemContent--dual {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-align: left;
}
.aa-ItemContent--dual .aa-ItemContentSubtitle,
.aa-ItemContent--dual .aa-ItemContentTitle {
  display: block;
}
.aa-ItemContent--indented {
  padding-left: 36px;
  padding-left: calc(var(--aa-icon-size) + var(--aa-spacing));
}
.aa-ItemContentBody {
  display: grid;
  grid-gap: 4px;
  gap: 4px;
  grid-gap: calc(var(--aa-spacing-half) / 2);
  gap: calc(var(--aa-spacing-half) / 2);
}
.aa-ItemContentTitle {
  display: inline-block;
  margin: 0 0.5em 0 0;
  max-width: 100%;
  overflow: hidden;
  padding: 0;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.aa-ItemContentSubtitle {
  font-size: 0.92em;
}
.aa-ItemContentSubtitleIcon:before {
  border-color: #807ea3a3;
  border-color: rgba(var(--aa-muted-color-rgb), 0.64);
  border-style: solid;
  content: "";
  display: inline-block;
  left: 1px;
  position: relative;
  top: -3px;
}
.aa-ItemContentSubtitle--inline .aa-ItemContentSubtitleIcon:before {
  border-width: 0 0 1.5px;
  margin-left: 8px;
  margin-left: var(--aa-spacing-half);
  margin-right: 4px;
  margin-right: calc(var(--aa-spacing-half) / 2);
  width: 10px;
  width: calc(var(--aa-spacing-half) + 2px);
}
.aa-ItemContentSubtitle--standalone {
  align-items: center;
  color: #262627;
  color: rgba(var(--aa-text-color-rgb), var(--aa-text-color-alpha));
  display: grid;
  grid-gap: 8px;
  gap: 8px;
  grid-gap: var(--aa-spacing-half);
  gap: var(--aa-spacing-half);
  grid-auto-flow: column;
  justify-content: start;
}
.aa-ItemContentSubtitle--standalone .aa-ItemContentSubtitleIcon:before {
  border-radius: 0 0 0 3px;
  border-width: 0 0 1.5px 1.5px;
  height: 8px;
  height: var(--aa-spacing-half);
  width: 8px;
  width: var(--aa-spacing-half);
}
.aa-ItemContentSubtitleCategory {
  color: #807ea3;
  color: rgba(var(--aa-muted-color-rgb), 1);
  font-weight: 500;
}
.aa-ItemContentDescription {
  color: #262627;
  color: rgba(var(--aa-text-color-rgb), var(--aa-text-color-alpha));
  font-size: 0.85em;
  max-width: 100%;
  overflow-x: hidden;
  text-overflow: ellipsis;
}
.aa-ItemContentDescription:empty {
  display: none;
}
.aa-ItemContentDescription mark {
  background: #f5df4d80;
  background: rgba(
    var(--aa-description-highlight-background-color-rgb),
    var(--aa-description-highlight-background-color-alpha)
  );
  color: #262627;
  color: rgba(var(--aa-text-color-rgb), var(--aa-text-color-alpha));
  font-style: normal;
  font-weight: 500;
  font-weight: var(--aa-font-weight-medium);
}
.aa-ItemContentDash {
  color: #807ea399;
  color: rgba(var(--aa-muted-color-rgb), var(--aa-muted-color-alpha));
  display: none;
  opacity: 0.4;
}
.aa-ItemContentTag {
  background-color: #3e34d333;
  background-color: rgba(
    var(--aa-primary-color-rgb),
    var(--aa-primary-color-alpha)
  );
  border-radius: 3px;
  margin: 0 0.4em 0 0;
  padding: 0.08em 0.3em;
}
.aa-ItemLink,
.aa-ItemWrapper {
  align-items: center;
  color: inherit;
  display: grid;
  grid-gap: 4px;
  gap: 4px;
  grid-gap: calc(var(--aa-spacing-half) / 2);
  gap: calc(var(--aa-spacing-half) / 2);
  grid-auto-flow: column;
  justify-content: space-between;
  width: 100%;
}
.aa-ItemLink {
  color: inherit;
  text-decoration: none;
}
.aa-ItemActions {
  display: grid;
  grid-auto-flow: column;
  height: 100%;
  justify-self: end;
  margin: 0 -5.3333333333px;
  margin: 0 calc(var(--aa-spacing) / -3);
  padding: 0 2px 0 0;
}
.aa-ItemActionButton {
  align-items: center;
  background: none;
  border: 0;
  color: #807ea399;
  color: rgba(var(--aa-muted-color-rgb), var(--aa-muted-color-alpha));
  cursor: pointer;
  display: flex;
  flex-shrink: 0;
  padding: 0;
}
.aa-ItemActionButton:focus svg,
.aa-ItemActionButton:hover svg {
  color: #262627;
  color: rgba(var(--aa-text-color-rgb), var(--aa-text-color-alpha));
}
@media (hover: none) and (pointer: coarse) {
  .aa-ItemActionButton:focus svg,
  .aa-ItemActionButton:hover svg {
    color: inherit;
  }
}
.aa-ItemActionButton svg {
  color: #807ea399;
  color: rgba(var(--aa-muted-color-rgb), var(--aa-muted-color-alpha));
  margin: 5.3333333333px;
  margin: calc(var(--aa-spacing) / 3);
  stroke-width: 1.6;
  stroke-width: var(--aa-icon-stroke-width);
  width: 20px;
  width: var(--aa-action-icon-size);
}
.aa-ActiveOnly {
  visibility: hidden;
}
.aa-PanelHeader {
  align-items: center;
  background: #3e34d3;
  background: rgba(var(--aa-primary-color-rgb), 1);
  color: #fff;
  display: grid;
  height: var(--aa-modal-header-height);
  margin: 0;
  padding: 8px 16px;
  padding: var(--aa-spacing-half) var(--aa-spacing);
  position: relative;
}
.aa-PanelHeader:after {
  background-image: linear-gradient(#fff, #fff0);
  background-image: linear-gradient(
    rgba(var(--aa-background-color-rgb), 1),
    rgba(var(--aa-background-color-rgb), 0)
  );
  bottom: -8px;
  bottom: calc(var(--aa-spacing-half) * -1);
  content: "";
  height: 8px;
  height: var(--aa-spacing-half);
  left: 0;
  pointer-events: none;
  position: absolute;
  right: 0;
}
.aa-PanelFooter,
.aa-PanelHeader:after {
  z-index: 9999;
  z-index: var(--aa-base-z-index);
}
.aa-PanelFooter {
  background-color: #fff;
  background-color: rgba(
    var(--aa-background-color-rgb),
    var(--aa-background-color-alpha)
  );
  box-shadow: inset 0 1px 0 #807ea34d;
  box-shadow: inset 0 1px 0
    rgba(var(--aa-panel-border-color-rgb), var(--aa-panel-border-color-alpha));
  display: flex;
  justify-content: space-between;
  margin: 0;
  padding: 16px;
  padding: var(--aa-spacing);
  position: relative;
}
.aa-PanelFooter:after {
  background-image: linear-gradient(#fff0, #807ea399);
  background-image: linear-gradient(
    rgba(var(--aa-background-color-rgb), 0),
    rgba(var(--aa-muted-color-rgb), var(--aa-muted-color-alpha))
  );
  content: "";
  height: 16px;
  height: var(--aa-spacing);
  left: 0;
  opacity: 0.12;
  pointer-events: none;
  position: absolute;
  right: 0;
  top: -16px;
  top: calc(var(--aa-spacing) * -1);
  z-index: 9998;
  z-index: calc(var(--aa-base-z-index) - 1);
}
.aa-DetachedContainer {
  background: #fff;
  background: rgba(
    var(--aa-background-color-rgb),
    var(--aa-background-color-alpha)
  );
  bottom: 0;
  box-shadow: 0 0 0 1px #23263b1a, 0 6px 16px -4px #23263b26;
  box-shadow: var(--aa-panel-shadow);
  display: flex;
  flex-direction: column;
  left: 0;
  margin: 0;
  overflow: hidden;
  padding: 0;
  position: fixed;
  right: 0;
  top: 0;
  z-index: 9999;
  z-index: var(--aa-base-z-index);
}
.aa-DetachedContainer:after {
  height: 32px;
}
.aa-DetachedContainer .aa-SourceHeader {
  margin: 8px 0 8px 2px;
  margin: var(--aa-spacing-half) 0 var(--aa-spacing-half) 2px;
}
.aa-DetachedContainer .aa-Panel {
  background-color: #fff;
  background-color: rgba(
    var(--aa-background-color-rgb),
    var(--aa-background-color-alpha)
  );
  border-radius: 0;
  box-shadow: none;
  flex-grow: 1;
  margin: 0;
  padding: 0;
  position: relative;
}
.aa-DetachedContainer .aa-PanelLayout {
  bottom: 0;
  box-shadow: none;
  left: 0;
  margin: 0;
  max-height: none;
  overflow-y: auto;
  position: absolute;
  right: 0;
  top: 0;
  width: 100%;
}
.aa-DetachedFormContainer {
  border-bottom: 1px solid #807ea34d;
  border-bottom: 1px solid
    rgba(var(--aa-panel-border-color-rgb), var(--aa-panel-border-color-alpha));
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  margin: 0;
  padding: 8px;
  padding: var(--aa-spacing-half);
}
.aa-DetachedCancelButton {
  background: none;
  border: 0;
  border-radius: 3px;
  color: inherit;
  color: #262627;
  color: rgba(var(--aa-text-color-rgb), var(--aa-text-color-alpha));
  cursor: pointer;
  font: inherit;
  margin: 0 0 0 8px;
  margin: 0 0 0 var(--aa-spacing-half);
  padding: 0 8px;
  padding: 0 var(--aa-spacing-half);
}
.aa-DetachedCancelButton:focus,
.aa-DetachedCancelButton:hover {
  box-shadow: inset 0 0 0 1px #807ea34d;
  box-shadow: inset 0 0 0 1px
    rgba(var(--aa-panel-border-color-rgb), var(--aa-panel-border-color-alpha));
}
.aa-DetachedContainer--modal {
  border-radius: 6px;
  bottom: inherit;
  height: auto;
  margin: 0 auto;
  max-width: 680px;
  max-width: var(--aa-detached-modal-max-width);
  position: absolute;
  top: 3%;
}
.aa-DetachedContainer--modal .aa-PanelLayout {
  max-height: 500px;
  max-height: var(--aa-detached-modal-max-height);
  padding-bottom: 8px;
  padding-bottom: var(--aa-spacing-half);
  position: static;
}
.aa-DetachedSearchButton {
  align-items: center;
  background-color: #fff;
  background-color: rgba(
    var(--aa-input-background-color-rgb),
    var(--aa-input-background-color-alpha)
  );
  border: 1px solid #807ea3cc;
  border: 1px solid
    rgba(var(--aa-input-border-color-rgb), var(--aa-input-border-color-alpha));
  border-radius: 3px;
  color: #807ea399;
  color: rgba(var(--aa-muted-color-rgb), var(--aa-muted-color-alpha));
  cursor: pointer;
  display: flex;
  font: inherit;
  font-family: inherit;
  font-family: var(--aa-font-family);
  font-size: 16px;
  font-size: var(--aa-font-size);
  height: 44px;
  height: var(--aa-search-input-height);
  margin: 0;
  padding: 0 5.5px;
  padding: 0 calc(var(--aa-search-input-height) / 8);
  position: relative;
  text-align: left;
  width: 100%;
}
.aa-DetachedSearchButton:focus {
  border-color: #3e34d3;
  border-color: rgba(var(--aa-primary-color-rgb), 1);
  box-shadow: 0 0 0 3px #3e34d333, inset 0 0 0 2px #3e34d333;
  box-shadow: rgba(var(--aa-primary-color-rgb), var(--aa-primary-color-alpha)) 0
      0 0 3px,
    inset rgba(var(--aa-primary-color-rgb), var(--aa-primary-color-alpha)) 0 0 0
      2px;
  outline: medium none currentColor;
}
.aa-DetachedSearchButtonIcon {
  align-items: center;
  color: #3e34d3;
  color: rgba(var(--aa-primary-color-rgb), 1);
  cursor: auto;
  display: flex;
  height: 100%;
  justify-content: center;
  width: 36px;
  width: calc(var(--aa-icon-size) + var(--aa-spacing));
}
.aa-Detached {
  height: 100vh;
  overflow: hidden;
}
.aa-DetachedOverlay {
  background-color: #73728166;
  background-color: rgba(
    var(--aa-overlay-color-rgb),
    var(--aa-overlay-color-alpha)
  );
  height: 100vh;
  left: 0;
  margin: 0;
  padding: 0;
  position: fixed;
  right: 0;
  top: 0;
  z-index: 9998;
  z-index: calc(var(--aa-base-z-index) - 1);
}
.aa-GradientBottom,
.aa-GradientTop {
  height: 8px;
  height: var(--aa-spacing-half);
  left: 0;
  pointer-events: none;
  position: absolute;
  right: 0;
  z-index: 9999;
  z-index: var(--aa-base-z-index);
}
.aa-GradientTop {
  background-image: linear-gradient(#fff, #fff0);
  background-image: linear-gradient(
    rgba(var(--aa-background-color-rgb), 1),
    rgba(var(--aa-background-color-rgb), 0)
  );
  top: 0;
}
.aa-GradientBottom {
  background-image: linear-gradient(#fff0, #fff);
  background-image: linear-gradient(
    rgba(var(--aa-background-color-rgb), 0),
    rgba(var(--aa-background-color-rgb), 1)
  );
  border-bottom-left-radius: 4px;
  border-bottom-left-radius: calc(var(--aa-spacing) / 4);
  border-bottom-right-radius: 4px;
  border-bottom-right-radius: calc(var(--aa-spacing) / 4);
  bottom: 0;
}
@media (hover: none) and (pointer: coarse) {
  .aa-DesktopOnly {
    display: none;
  }
}
@media (hover: hover) {
  .aa-TouchOnly {
    display: none;
  }
}
@font-face {
  font-family: Figtree;
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(../fonts/Figtree-Regular.ttf) format("truetype");
}
@font-face {
  font-family: Figtree;
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url(../fonts/Figtree-Italic.ttf) format("truetype");
}
@font-face {
  font-family: Figtree;
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url(../fonts/Figtree-Medium.ttf) format("truetype");
}
@font-face {
  font-family: Figtree;
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url(../fonts/Figtree-Bold.ttf) format("truetype");
}
@font-face {
  font-family: Figtree;
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url(../fonts/Figtree-ExtraBold.ttf) format("truetype");
}
@font-face {
  font-family: Figtree;
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url(../fonts/Figtree-Black.ttf) format("truetype");
}
@font-face {
  font-family: Figtree;
  font-display: swap;
  font-weight: 300;
  src: url(../fonts/Figtree-Light.ttf) format("truetype");
}
@font-face {
  font-family: Figtree;
  font-display: swap;
  font-weight: 400;
  src: url(../fonts/Figtree-Regular.ttf) format("truetype");
}
@font-face {
  font-family: Figtree;
  font-display: swap;
  font-weight: 500;
  src: url(../fonts/Figtree-Medium.ttf) format("truetype");
}
@font-face {
  font-family: Figtree;
  font-display: swap;
  font-weight: 700;
  src: url(../fonts/Figtree-Bold.ttf) format("truetype");
}
code {
  font-family: source-code-pro, Menlo, Monaco, Consolas, Courier New, monospace;
}
.search-outer .bg-gray-cloud {
  background-color: initial;
}
.header_search .aa-Autocomplete {
  margin-top: -2.5rem;
}
.header_search .aa-Autocomplete .aa-Form {
  border: none;
}
.header_search .aa-Autocomplete .aa-Form:focus-within {
  border: none;
  box-shadow: none;
}
.header_search .aa-Autocomplete .aa-InputWrapperSuffix {
  display: none;
}
.aa-Form svg.aa-SubmitIcon {
  color: #0056b8;
}
.aa-Panel {
  z-index: 50;
  min-width: 18rem;
}
.aa-Autocomplete .aa-Form {
  border-radius: 30px;
}
body {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: var(--midnight);
}
.u-Text--mini {
  font-size: 12px;
  line-height: 16px;
  font-weight: 400;
}
.u-Text--miniLight {
  font-size: 12px;
  line-height: 16px;
  font-weight: 300;
}
.u-Text--small {
  font-size: 14px;
  line-height: 20px;
}
.u-Text--base,
.u-Text--small {
  font-weight: 400;
  color: var(--midnight);
}
.u-Text--base {
  font-size: 16px;
  line-height: 24px;
}
.u-Text--lgBase {
  font-size: 18px;
  font-weight: 600;
}
.u-Text--lgBase,
.u-Text--xlTitle {
  line-height: 28px;
  color: var(--midnight);
}
.u-Text--xlTitle {
  font-size: 20px;
  font-weight: 700;
}
.u-Text--subTitle {
  font-size: 24px;
  line-height: 32px;
  font-weight: 700;
  color: var(--midnight);
}
.u-Text--lead {
  font-size: 30px;
  line-height: 36px;
  font-weight: 900;
  color: var(--midnight);
}
.u-Text--head,
.u-Text--lead {
  padding-top: 40px;
  padding-bottom: 16px;
}
.u-Text--head {
  font-size: 36px;
  line-height: 40px;
  font-weight: 600;
  color: var(--white);
}
.u-Text--emphasis {
  color: var(--white);
  font-weight: 900;
  background-color: var(--meadow);
  display: inline-block;
  padding: 0 0.25rem;
}
.u-Button--primary {
  font-size: 16px;
  line-height: 24px;
  font-weight: 700;
  color: var(--white);
  border-radius: 10px;
  padding: 14px 32px;
  min-width: 160px;
  height: 50px;
  width: 100%;
  text-align: center;
  background-color: var(--sky-blue);
}
.u-Button--primary:not(:disabled):hover {
  opacity: 0.95;
}
.u-Button--secondary {
  font-size: 16px;
  line-height: 24px;
  font-weight: 700;
  color: var(--sky-blue);
  border: 2px solid var(--sky-blue);
  border-radius: 10px;
  padding: 14px 32px;
  min-width: 160px;
  height: 50px;
  width: 100%;
  text-align: center;
  background-color: var(--white);
}
.u-Button--secondary_new {
  font-size: 18px;
  line-height: 140%;
  font-weight: 400;
  color: var(--white);
  min-width: fit-content;
  height: fit-content;
  width: 100%;
  text-align: center;
  background-color: initial;
  vertical-align: middle;
  border-bottom: 1.4px solid var(--bright-sun);
}
.u-List--head {
  list-style-type: disc;
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
  color: var(--midnight);
}
.u-List--items {
  margin-left: 1.5rem;
}
ul li p.pb-4 {
  padding-bottom: 0.5em;
}
.u-Text--link {
  text-decoration: underline;
  color: var(--sky-blue);
}
.u-Text--link:hover {
  text-decoration: none;
}
.u-Flex--center {
  display: flex;
  align-items: center;
  justify-content: center;
}
.u-Flex--between {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-opacity {
  background-color: #0006;
}
.u-List--decimalBg li {
  position: relative;
  padding-left: 2rem;
  color: var(--cloud);
  margin: 15px 0;
}
.u-List--decimalBg li:before {
  content: counter(list-item);
  position: absolute;
  left: 0;
  top: 0;
  width: 26px;
  height: 26px;
  line-height: 22px;
  background-color: var(--sunset);
  text-align: center;
  border: 2px solid var(--cloud);
  border-radius: 50%;
}
.u-List--decimalBgDark li {
  position: relative;
  padding-left: 2rem;
  color: var(--sky-light);
  margin: 15px 0;
}
.u-List--decimalBgDark li:before {
  content: counter(list-item);
  position: absolute;
  left: 0;
  top: 0;
  width: 26px;
  height: 26px;
  line-height: 22px;
  background-color: var(--midnight);
  text-align: center;
  border: 2px solid var(--midnight);
  border-radius: 50%;
}
.u-RichTextArea ol {
  list-style-type: decimal;
}
.u-RichTextArea > ol > li > ol {
  list-style-type: upper-alpha;
}
.u-RichTextArea > ol > li > ol > li > ol {
  list-style-type: lower-roman;
}
.pageheroClip {
  clip-path: circle(30rem at right);
}
@media only screen and (min-width: 990px) and (max-width: 1070px) {
  .pageheroClip {
    clip-path: circle(28rem at right);
  }
}
@media only screen and (min-width: 879px) and (max-width: 989px) {
  .pageheroClip {
    clip-path: circle(25rem at right);
  }
}
@media only screen and (min-width: 768px) and (max-width: 880px) {
  .pageheroClip {
    clip-path: circle(20rem at right);
  }
}
@media only screen and (max-width: 767px) {
  .pageheroClip {
    clip-path: circle(167px at top);
  }
}
.iconBoxShadow {
  box-shadow: 4px 4px 24px #d5d6d799;
}
main {
  overflow: hidden;
}
section {
  clear: both;
}
.border-gradient {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 9;
  width: 100%;
  height: 20px;
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
  border-top: 2px solid #0056b8;
  border-left: 2px solid #0056b8;
  border-right: 2px solid #0056b8;
  pointer-events: none;
}
.faded-outline {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
}
.faded-outline:before {
  left: 0;
}
.faded-outline:after,
.faded-outline:before {
  content: "";
  position: absolute;
  height: calc(100% - 20px);
  width: 2px;
  top: 20px;
  z-index: 9;
  border-image: repeating-linear-gradient(
      180deg,
      #0056b8 0,
      #0056b8 20%,
      #fbfbfb 50%,
      #0000 60%,
      #0000
    )
    1;
  border-width: 1px;
  border-style: solid;
}
.faded-outline:after {
  right: 0;
}
.border-gradient-product {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 9;
  width: 100%;
  height: 20px;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  border-top: 2px solid #0056b8;
  border-left: 2px solid #0056b8;
  border-right: 2px solid #0056b8;
  pointer-events: none;
}
.faded-outline-product {
  position: relative;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  overflow: hidden;
}
.faded-outline-product:before {
  left: 0;
}
.faded-outline-product:after,
.faded-outline-product:before {
  content: "";
  position: absolute;
  height: calc(100% - 10px);
  width: 2px;
  top: 18px;
  z-index: 9;
  border-image: repeating-linear-gradient(
      180deg,
      #0056b8 0,
      #0056b8 20%,
      #fbfbfb 50%,
      #0000 60%,
      #0000
    )
    1;
  border-width: 1px;
  border-style: solid;
}
.faded-outline-product:after {
  right: 0;
}
.carousel-container {
  display: flex;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.carousel-container::-webkit-scrollbar {
  display: none;
}
.carousel-item {
  flex: 0 0 auto;
}
.swiper {
  width: 100%;
  height: 100%;
}
.swiper:not(.heroSlider) .swiper-horizontal > .swiper-pagination-bullets,
.swiper:not(.heroSlider)
  .swiper-pagination-bullets.swiper-pagination-horizontal,
.swiper:not(.heroSlider) .swiper-pagination-custom,
.swiper:not(.heroSlider) .swiper-pagination-fraction {
  bottom: 0 !important;
  margin-top: 48px;
}
.swiper:not(.heroSlider) .swiper-pagination {
  position: relative !important;
}
.autoplay-progress,
.swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
}
.autoplay-progress {
  position: absolute;
  right: 16px;
  bottom: 16px;
  z-index: 10;
  width: 48px;
  height: 48px;
  font-weight: 700;
  color: #fff;
}
.autoplay-progress svg {
  --progress: 0;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 10;
  width: 100%;
  height: 100%;
  stroke-width: 4px;
  stroke: #fff;
  fill: none;
  stroke-dashoffset: calc(125.6px * (1 - var(--progress)));
  stroke-dasharray: 125.6;
  transform: rotate(-90deg);
}
*,
::backdrop,
:after,
:before {
  --tw-border-spacing-x: 0;
  --tw-border-spacing-y: 0;
  --tw-translate-x: 0;
  --tw-translate-y: 0;
  --tw-rotate: 0;
  --tw-skew-x: 0;
  --tw-skew-y: 0;
  --tw-scale-x: 1;
  --tw-scale-y: 1;
  --tw-pan-x: ;
  --tw-pan-y: ;
  --tw-pinch-zoom: ;
  --tw-scroll-snap-strictness: proximity;
  --tw-gradient-from-position: ;
  --tw-gradient-via-position: ;
  --tw-gradient-to-position: ;
  --tw-ordinal: ;
  --tw-slashed-zero: ;
  --tw-numeric-figure: ;
  --tw-numeric-spacing: ;
  --tw-numeric-fraction: ;
  --tw-ring-inset: ;
  --tw-ring-offset-width: 0px;
  --tw-ring-offset-color: #fff;
  --tw-ring-color: #3b82f680;
  --tw-ring-offset-shadow: 0 0 #0000;
  --tw-ring-shadow: 0 0 #0000;
  --tw-shadow: 0 0 #0000;
  --tw-shadow-colored: 0 0 #0000;
  --tw-blur: ;
  --tw-brightness: ;
  --tw-contrast: ;
  --tw-grayscale: ;
  --tw-hue-rotate: ;
  --tw-invert: ;
  --tw-saturate: ;
  --tw-sepia: ;
  --tw-drop-shadow: ;
  --tw-backdrop-blur: ;
  --tw-backdrop-brightness: ;
  --tw-backdrop-contrast: ;
  --tw-backdrop-grayscale: ;
  --tw-backdrop-hue-rotate: ;
  --tw-backdrop-invert: ;
  --tw-backdrop-opacity: ;
  --tw-backdrop-saturate: ;
  --tw-backdrop-sepia: ;
  --tw-contain-size: ;
  --tw-contain-layout: ;
  --tw-contain-paint: ;
  --tw-contain-style: ;
}

/* ! tailwindcss v3.4.17 | MIT License | https://tailwindcss.com */
*,
:after,
:before {
  box-sizing: border-box;
  border-width: 0;
  border-style: solid;
  border-color: var(--neutral-gray-200);
}
:after,
:before {
  --tw-content: "";
}
:host,
html {
  line-height: 1.5;
  -webkit-text-size-adjust: 100%;
  -moz-tab-size: 4;
  tab-size: 4;
  font-family: Open Sans, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto,
    Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
  font-feature-settings: normal;
  font-variation-settings: normal;
  -webkit-tap-highlight-color: transparent;
}
body {
  margin: 0;
  line-height: inherit;
}
hr {
  height: 0;
  color: inherit;
  border-top-width: 1px;
}
abbr:where([title]) {
  text-decoration: underline dotted;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: inherit;
}
a {
  color: inherit;
  text-decoration: inherit;
}
b,
strong {
  font-weight: bolder;
}
code,
kbd,
pre,
samp {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas,
    Liberation Mono, Courier New, monospace;
  font-feature-settings: normal;
  font-variation-settings: normal;
  font-size: 1em;
}
small {
  font-size: 80%;
}
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: initial;
}
sub {
  bottom: -0.25em;
}
sup {
  top: -0.5em;
}
table {
  text-indent: 0;
  border-color: inherit;
  border-collapse: collapse;
}
button,
input,
optgroup,
select,
textarea {
  font-family: inherit;
  font-feature-settings: inherit;
  font-variation-settings: inherit;
  font-size: 100%;
  font-weight: inherit;
  line-height: inherit;
  letter-spacing: inherit;
  color: inherit;
  margin: 0;
  padding: 0;
}
button,
select {
  text-transform: none;
}
button,
input:where([type="button"]),
input:where([type="reset"]),
input:where([type="submit"]) {
  -webkit-appearance: button;
  background-color: initial;
  background-image: none;
}
:-moz-focusring {
  outline: auto;
}
:-moz-ui-invalid {
  box-shadow: none;
}
progress {
  vertical-align: initial;
}
::-webkit-inner-spin-button,
::-webkit-outer-spin-button {
  height: auto;
}
[type="search"] {
  -webkit-appearance: textfield;
  outline-offset: -2px;
}
::-webkit-search-decoration {
  -webkit-appearance: none;
}
::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit;
}
summary {
  display: list-item;
}
blockquote,
dd,
dl,
figure,
h1,
h2,
h3,
h4,
h5,
h6,
hr,
p,
pre {
  margin: 0;
}
fieldset {
  margin: 0;
}
fieldset,
legend {
  padding: 0;
}
menu,
ol,
ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
dialog {
  padding: 0;
}
textarea {
  resize: vertical;
}
input::placeholder,
textarea::placeholder {
  opacity: 1;
  color: var(--neutral-gray-400);
}
[role="button"],
button {
  cursor: pointer;
}
:disabled {
  cursor: default;
}
audio,
canvas,
embed,
iframe,
img,
object,
svg,
video {
  display: block;
  vertical-align: middle;
}
img,
video {
  max-width: 100%;
  height: auto;
}
[hidden]:where(:not([hidden="until-found"])) {
  display: none;
}
:root {
  --neutral-black: #000;
  --neutral-dark-grey-500: #404040;
  --neutral-gray-500: #404040;
  --neutral-gray-400: #acb6c0;
  --neutral-gray-300: #dfe3e8;
  --neutral-gray-200: #f2f2f2;
  --neutral-white: #fff;
  --primary-sky-blue: #0056b8;
  --primary-dark-blue: #162241;
  --primary-bright-sun-orange: #f08b23;
  --primary-sunshine-yellow: #fad646;
  --secondary-cool-cloud: #faf8f4;
  --secondary-cool-dawn: #e6f0ff;
  --secondary-cool-dusk: #839ffe;
  --secondary-warm-lightning: #ebff01;
  --secondary-warm-sun: #f8d520;
  --secondary-warm-sunset: #ff7241;
  --red: #ae1e14;
  --btn-primary-bg: var(--primary-sky-blue);
  --btn-primary-text: var(--neutral-white);
  --btn-radius: 10px;
  --btn-sm-font-size: 14px;
  --btn-md-font-size: 18px;
  --btn-md-padding-x: 32px;
  --btn-md-padding-y: 14px;
  --btn-lg-font-size: 20px;
  --swiper-theme-color: var(--primary-sky-blue);
}
html {
  font-family: Figtree, Open Sans, -apple-system, BlinkMacSystemFont, Segoe UI,
    Roboto, Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue,
    sans-serif;
  color: var(--midnight);
}
ol ol {
  margin-bottom: 1rem;
  list-style-type: lower-alpha;
}
li p {
  padding-bottom: 0;
  font-size: 1.125rem;
  line-height: 1.75rem;
}
:root {
  --line-height-sm: 1.1;
  --line-height-md: 1.2;
  --line-height-lg: 1.4;
  --line-height-xl: 1.6;
  --line-height-xxl: 2.1;
  --input-border: #52606d;
  --swiper-pagination-bullet-size: 0.875rem;
  --swiper-pagination-color: var(--primary-dark-blue);
}
[data-bg="dark"] {
  --red: #f5938d;
}
.heroSlider {
  --swiper-pagination-color: #fff;
}
.Layout.theme-oldBrand {
  --white: #fff;
  --black: #000;
  --black-light: #231f20;
  --midnight: #404040;
  --gray-earth: #707272;
  --gray-stone: #bfbfbf;
  --gray-sand: #cccbca;
  --gray-granite: #e6e6e6;
  --cloud: #f2f2f2;
  --cloud-50: #fafafa;
  --sky-blue: #0056b8;
  --sky-light: #f8fafb;
  --dusk: #3eb3e1;
  --dawn: #9fd9f0;
  --dawn-light: #edfaff;
  --lightning: #ebff01;
  --bright-sun: #f08b23;
  --sunset: #f26829;
  --sand: #eac895;
  --meadow: #6aa442;
  --forest: #6aa442;
  --ocean: #0056b8;
  --dessert: #ffc72c;
  --reef: #9d57a3;
}
.Layout.theme-default,
.Layout.theme-newBrand {
  --white: #fff;
  --black: #000;
  --black-light: #231f20;
  --midnight: #162241;
  --gray-earth: #6e7484;
  --gray-stone: #b3b6bc;
  --gray-sand: #cccbca;
  --gray-granite: #e6e5e3;
  --cloud: #faf8f4;
  --cloud-50: #fcfbf9;
  --sky-blue: #0056b8;
  --sky-light: #f2f7ff;
  --dusk: #839ffe;
  --dawn-light: #f2f7ff;
  --lightning: #ebff01;
  --bright-sun: #f08b23;
  --sunset: #ff7241;
  --dawn: #e6f0ff;
  --sand: #eac895;
  --meadow: #4ba385;
  --forest: #0e4337;
  --ocean: #0056b8;
  --dessert: #f8d520;
  --reef: #9d57a3;
  --grey-300: #dfe3e8;
}
.container {
  width: 100%;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 640px) {
  .container {
    max-width: 640px;
  }
}
@media (min-width: 768px) {
  .container {
    max-width: 768px;
  }
}
@media (min-width: 1024px) {
  .container {
    max-width: 1024px;
  }
}
@media (min-width: 1280px) {
  .container {
    max-width: 1280px;
  }
}
@media (min-width: 1440px) {
  .container {
    max-width: 1440px;
  }
}
@media (min-width: 1536px) {
  .container {
    max-width: 1536px;
  }
}
.aspect-h-1 {
  --tw-aspect-h: 1;
}
.aspect-h-4 {
  --tw-aspect-h: 4;
}
.aspect-h-5 {
  --tw-aspect-h: 5;
}
.aspect-h-9 {
  --tw-aspect-h: 9;
}
.aspect-w-1 {
  position: relative;
  padding-bottom: calc(var(--tw-aspect-h) / var(--tw-aspect-w) * 100%);
  --tw-aspect-w: 1;
}
.aspect-w-1 > * {
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.aspect-w-16 {
  position: relative;
  padding-bottom: calc(var(--tw-aspect-h) / var(--tw-aspect-w) * 100%);
  --tw-aspect-w: 16;
}
.aspect-w-16 > * {
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.aspect-w-4 {
  position: relative;
  padding-bottom: calc(var(--tw-aspect-h) / var(--tw-aspect-w) * 100%);
  --tw-aspect-w: 4;
}
.aspect-w-4 > * {
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.aspect-w-5 {
  position: relative;
  padding-bottom: calc(var(--tw-aspect-h) / var(--tw-aspect-w) * 100%);
  --tw-aspect-w: 5;
}
.aspect-w-5 > * {
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.vertical-trim-cap-height {
  @supports not (text-box-trim: trim-both) {
    --line-height-xxl: 1.6;
  }
}
.dark-gradient-overlay {
  background-image: linear-gradient(180deg, #000 40.5%, #0000);
}
@media (min-width: 1024px) {
  .dark-gradient-overlay {
    background-image: linear-gradient(270deg, #0000, #000 59.5%);
  }
}
.vertical-trim-cap-height {
  text-box-edge: cap alphabetic;
  text-edge: cap;
  text-box-trim: trim-both;
}
@supports not (text-box-trim: trim-both) {
  .vertical-trim-cap-height {
    --line-height-xxl: 1.6;
  }
}
.blog-content p {
  font-size: 16px;
}
@media (min-width: 768px) {
  .blog-content p {
    font-size: 20px;
  }
}
.blog-content h2 + h3 {
  padding-top: 0;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}
.pointer-events-none {
  pointer-events: none;
}
.visible {
  visibility: visible;
}
.invisible {
  visibility: hidden;
}
.\!static {
  position: static !important;
}
.static {
  position: static;
}
.fixed {
  position: fixed;
}
.absolute {
  position: absolute;
}
.relative {
  position: relative;
}
.sticky {
  position: sticky;
}
.inset-0 {
  inset: 0;
}
.inset-x-0 {
  left: 0;
  right: 0;
}
.inset-y-\[-2px\] {
  top: -2px;
  bottom: -2px;
}
.-bottom-\[40px\] {
  bottom: -40px;
}
.-left-10 {
  left: -2.5rem;
}
.-left-\[2\.06rem\] {
  left: -2.06rem;
}
.-left-\[3\.84rem\] {
  left: -3.84rem;
}
.-right-10 {
  right: -2.5rem;
}
.-top-1 {
  top: -0.25rem;
}
.-top-10 {
  top: -2.5rem;
}
.-top-\[17\.25rem\] {
  top: -17.25rem;
}
.-top-\[8\.5rem\] {
  top: -8.5rem;
}
.bottom-0 {
  bottom: 0;
}
.bottom-14 {
  bottom: 3.5rem;
}
.bottom-4 {
  bottom: 1rem;
}
.bottom-5 {
  bottom: 1.25rem;
}
.bottom-\[-35\%\] {
  bottom: -35%;
}
.bottom-\[10px\] {
  bottom: 10px;
}
.bottom-\[5px\] {
  bottom: 5px;
}
.left-0 {
  left: 0;
}
.left-1\/2 {
  left: 50%;
}
.left-2\.5 {
  left: 0.625rem;
}
.left-\[-100\%\] {
  left: -100%;
}
.left-\[-60px\] {
  left: -60px;
}
.left-\[-70px\] {
  left: -70px;
}
.left-\[0\] {
  left: 0;
}
.left-\[5\%\] {
  left: 5%;
}
.left-\[50\%\] {
  left: 50%;
}
.left-\[55\%\] {
  left: 55%;
}
.left-\[60px\] {
  left: 60px;
}
.right-0 {
  right: 0;
}
.right-1\/2 {
  right: 50%;
}
.right-2 {
  right: 0.5rem;
}
.right-24 {
  right: 6rem;
}
.right-\[15px\] {
  right: 15px;
}
.right-\[24\.5\%\] {
  right: 24.5%;
}
.right-\[26\.5\%\] {
  right: 26.5%;
}
.right-\[35\%\] {
  right: 35%;
}
.right-\[41\%\] {
  right: 41%;
}
.right-\[45\%\] {
  right: 45%;
}
.right-\[52px\] {
  right: 52px;
}
.right-\[7\%\] {
  right: 7%;
}
.right-\[8\%\] {
  right: 8%;
}
.top-0 {
  top: 0;
}
.top-1\/2 {
  top: 50%;
}
.top-28 {
  top: 7rem;
}
.top-3 {
  top: 0.75rem;
}
.top-60 {
  top: 15rem;
}
.top-\[-100px\] {
  top: -100px;
}
.top-\[0\] {
  top: 0;
}
.top-\[12\%\] {
  top: 12%;
}
.top-\[50\%\] {
  top: 50%;
}
.top-\[88px\] {
  top: 88px;
}
.isolate {
  isolation: isolate;
}
.-z-10 {
  z-index: -10;
}
.-z-20 {
  z-index: -20;
}
.-z-\[1\] {
  z-index: -1;
}
.z-0 {
  z-index: 0;
}
.z-10 {
  z-index: 10;
}
.z-20 {
  z-index: 20;
}
.z-40 {
  z-index: 40;
}
.z-50 {
  z-index: 50;
}
.z-\[0\] {
  z-index: 0;
}
.z-\[100\] {
  z-index: 100;
}
.z-\[2\] {
  z-index: 2;
}
.z-\[3\] {
  z-index: 3;
}
.z-\[4\] {
  z-index: 4;
}
.z-\[99999\] {
  z-index: 99999;
}
.order-1 {
  order: 1;
}
.order-last {
  order: 9999;
}
.col-auto {
  grid-column: auto;
}
.col-start-1 {
  grid-column-start: 1;
}
.col-end-1 {
  grid-column-end: 1;
}
.float-right {
  float: right;
}
.float-left {
  float: left;
}
.-m-2 {
  margin: -0.5rem;
}
.m-0 {
  margin: 0;
}
.m-1\.5 {
  margin: 0.375rem;
}
.m-6 {
  margin: 1.5rem;
}
.m-\[5px\] {
  margin: 5px;
}
.m-auto {
  margin: auto;
}
.-mx-8 {
  margin-left: -2rem;
  margin-right: -2rem;
}
.mx-0 {
  margin-left: 0;
  margin-right: 0;
}
.mx-0\.5 {
  margin-left: 0.125rem;
  margin-right: 0.125rem;
}
.mx-1 {
  margin-left: 0.25rem;
  margin-right: 0.25rem;
}
.mx-2 {
  margin-left: 0.5rem;
  margin-right: 0.5rem;
}
.mx-4 {
  margin-left: 1rem;
  margin-right: 1rem;
}
.mx-5 {
  margin-left: 1.25rem;
  margin-right: 1.25rem;
}
.mx-\[10\%\] {
  margin-left: 10%;
  margin-right: 10%;
}
.mx-auto {
  margin-left: auto;
  margin-right: auto;
}
.my-1 {
  margin-top: 0.25rem;
  margin-bottom: 0.25rem;
}
.my-10 {
  margin-top: 2.5rem;
  margin-bottom: 2.5rem;
}
.my-14 {
  margin-top: 3.5rem;
  margin-bottom: 3.5rem;
}
.my-2 {
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
}
.my-28 {
  margin-top: 7rem;
  margin-bottom: 7rem;
}
.my-4 {
  margin-top: 1rem;
  margin-bottom: 1rem;
}
.my-5 {
  margin-top: 1.25rem;
  margin-bottom: 1.25rem;
}
.my-6 {
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
}
.my-8 {
  margin-top: 2rem;
  margin-bottom: 2rem;
}
.my-auto {
  margin-top: auto;
  margin-bottom: auto;
}
.\!mt-0 {
  margin-top: 0 !important;
}
.-ml-5 {
  margin-left: -1.25rem;
}
.-ml-8 {
  margin-left: -2rem;
}
.-mt-14 {
  margin-top: -3.5rem;
}
.-mt-16 {
  margin-top: -4rem;
}
.-mt-20 {
  margin-top: -5rem;
}
.-mt-24 {
  margin-top: -6rem;
}
.-mt-4 {
  margin-top: -1rem;
}
.-mt-5 {
  margin-top: -1.25rem;
}
.-mt-6 {
  margin-top: -1.5rem;
}
.-mt-\[24px\] {
  margin-top: -24px;
}
.-mt-\[5px\] {
  margin-top: -5px;
}
.mb-0 {
  margin-bottom: 0;
}
.mb-1 {
  margin-bottom: 0.25rem;
}
.mb-1\.5 {
  margin-bottom: 0.375rem;
}
.mb-10 {
  margin-bottom: 2.5rem;
}
.mb-14 {
  margin-bottom: 3.5rem;
}
.mb-16 {
  margin-bottom: 4rem;
}
.mb-2 {
  margin-bottom: 0.5rem;
}
.mb-20 {
  margin-bottom: 5rem;
}
.mb-3 {
  margin-bottom: 0.75rem;
}
.mb-32 {
  margin-bottom: 8rem;
}
.mb-4 {
  margin-bottom: 1rem;
}
.mb-5 {
  margin-bottom: 1.25rem;
}
.mb-6 {
  margin-bottom: 1.5rem;
}
.mb-7 {
  margin-bottom: 1.75rem;
}
.mb-8 {
  margin-bottom: 2rem;
}
.mb-9 {
  margin-bottom: 2.25rem;
}
.mb-\[-15px\] {
  margin-bottom: -15px;
}
.mb-\[10px\] {
  margin-bottom: 10px;
}
.mb-\[12px\] {
  margin-bottom: 12px;
}
.mb-\[15px\] {
  margin-bottom: 15px;
}
.mb-\[16px\] {
  margin-bottom: 16px;
}
.mb-\[1em\] {
  margin-bottom: 1em;
}
.mb-\[20px\] {
  margin-bottom: 20px;
}
.mb-\[40px\] {
  margin-bottom: 40px;
}
.mb-\[45px\] {
  margin-bottom: 45px;
}
.mb-\[56px\] {
  margin-bottom: 56px;
}
.mb-\[8px\] {
  margin-bottom: 8px;
}
.ml-0 {
  margin-left: 0;
}
.ml-1 {
  margin-left: 0.25rem;
}
.ml-2 {
  margin-left: 0.5rem;
}
.ml-2\.5 {
  margin-left: 0.625rem;
}
.ml-3 {
  margin-left: 0.75rem;
}
.ml-36 {
  margin-left: 9rem;
}
.ml-4 {
  margin-left: 1rem;
}
.ml-5 {
  margin-left: 1.25rem;
}
.ml-6 {
  margin-left: 1.5rem;
}
.ml-8 {
  margin-left: 2rem;
}
.ml-\[-6px\] {
  margin-left: -6px;
}
.ml-\[10px\] {
  margin-left: 10px;
}
.ml-\[13px\] {
  margin-left: 13px;
}
.ml-\[2px\] {
  margin-left: 2px;
}
.mr-0 {
  margin-right: 0;
}
.mr-1 {
  margin-right: 0.25rem;
}
.mr-2 {
  margin-right: 0.5rem;
}
.mr-2\.5 {
  margin-right: 0.625rem;
}
.mr-3 {
  margin-right: 0.75rem;
}
.mr-4 {
  margin-right: 1rem;
}
.mr-5 {
  margin-right: 1.25rem;
}
.mr-6 {
  margin-right: 1.5rem;
}
.mr-8 {
  margin-right: 2rem;
}
.mr-\[13px\] {
  margin-right: 13px;
}
.mr-\[5px\] {
  margin-right: 5px;
}
.mr-auto {
  margin-right: auto;
}
.mr-px {
  margin-right: 1px;
}
.mt-0 {
  margin-top: 0;
}
.mt-0\.5 {
  margin-top: 0.125rem;
}
.mt-1 {
  margin-top: 0.25rem;
}
.mt-1\.5 {
  margin-top: 0.375rem;
}
.mt-10 {
  margin-top: 2.5rem;
}
.mt-12 {
  margin-top: 3rem;
}
.mt-14 {
  margin-top: 3.5rem;
}
.mt-16 {
  margin-top: 4rem;
}
.mt-2 {
  margin-top: 0.5rem;
}
.mt-2\.5 {
  margin-top: 0.625rem;
}
.mt-20 {
  margin-top: 5rem;
}
.mt-28 {
  margin-top: 7rem;
}
.mt-3 {
  margin-top: 0.75rem;
}
.mt-4 {
  margin-top: 1rem;
}
.mt-5 {
  margin-top: 1.25rem;
}
.mt-6 {
  margin-top: 1.5rem;
}
.mt-7 {
  margin-top: 1.75rem;
}
.mt-8 {
  margin-top: 2rem;
}
.mt-\[-10px\] {
  margin-top: -10px;
}
.mt-\[-30px\] {
  margin-top: -30px;
}
.mt-\[-5px\] {
  margin-top: -5px;
}
.mt-\[10px\] {
  margin-top: 10px;
}
.mt-\[15px\] {
  margin-top: 15px;
}
.mt-\[2\.625rem\] {
  margin-top: 2.625rem;
}
.mt-\[2px\] {
  margin-top: 2px;
}
.mt-\[30px\] {
  margin-top: 30px;
}
.mt-\[34px\] {
  margin-top: 34px;
}
.mt-\[35px\] {
  margin-top: 35px;
}
.mt-\[3px\] {
  margin-top: 3px;
}
.mt-\[40px\] {
  margin-top: 40px;
}
.mt-\[60px\] {
  margin-top: 60px;
}
.mt-\[6px\] {
  margin-top: 6px;
}
.mt-\[7px\] {
  margin-top: 7px;
}
.line-clamp-3 {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}
.block {
  display: block;
}
.inline-block {
  display: inline-block;
}
.inline {
  display: inline;
}
.flex {
  display: flex;
}
.inline-flex {
  display: inline-flex;
}
.table {
  display: table;
}
.table-column {
  display: table-column;
}
.grid {
  display: grid;
}
.hidden {
  display: none;
}
.h-0 {
  height: 0;
}
.h-1 {
  height: 0.25rem;
}
.h-10 {
  height: 2.5rem;
}
.h-12 {
  height: 3rem;
}
.h-14 {
  height: 3.5rem;
}
.h-16 {
  height: 4rem;
}
.h-2 {
  height: 0.5rem;
}
.h-24 {
  height: 6rem;
}
.h-3 {
  height: 0.75rem;
}
.h-3\.5 {
  height: 0.875rem;
}
.h-3\/5 {
  height: 60%;
}
.h-4 {
  height: 1rem;
}
.h-6 {
  height: 1.5rem;
}
.h-8 {
  height: 2rem;
}
.h-9 {
  height: 2.25rem;
}
.h-\[1\.875rem\] {
  height: 1.875rem;
}
.h-\[146px\] {
  height: 146px;
}
.h-\[14px\] {
  height: 14px;
}
.h-\[16px\] {
  height: 16px;
}
.h-\[1px\] {
  height: 1px;
}
.h-\[200px\] {
  height: 200px;
}
.h-\[20px\] {
  height: 20px;
}
.h-\[220px\] {
  height: 220px;
}
.h-\[23\.44rem\] {
  height: 23.44rem;
}
.h-\[250px\] {
  height: 250px;
}
.h-\[26px\] {
  height: 26px;
}
.h-\[2px\] {
  height: 2px;
}
.h-\[307px\] {
  height: 307px;
}
.h-\[31\.1rem\] {
  height: 31.1rem;
}
.h-\[31\.75rem\] {
  height: 31.75rem;
}
.h-\[330px\] {
  height: 330px;
}
.h-\[35\.44rem\] {
  height: 35.44rem;
}
.h-\[38\.063rem\] {
  height: 38.063rem;
}
.h-\[40px\] {
  height: 40px;
}
.h-\[420px\] {
  height: 420px;
}
.h-\[500px\] {
  height: 500px;
}
.h-\[50px\] {
  height: 50px;
}
.h-\[55px\] {
  height: 55px;
}
.h-\[5px\] {
  height: 5px;
}
.h-\[60px\] {
  height: 60px;
}
.h-\[700px\] {
  height: 700px;
}
.h-\[800px\] {
  height: 800px;
}
.h-\[8px\] {
  height: 8px;
}
.h-auto {
  height: auto;
}
.h-fit {
  height: fit-content;
}
.h-full {
  height: 100%;
}
.h-px {
  height: 1px;
}
.h-screen {
  height: 100vh;
}
.\!max-h-min {
  max-height: min-content !important;
}
.max-h-5\.25 {
  max-height: 1.5625rem;
}
.max-h-\[115px\] {
  max-height: 115px;
}
.max-h-\[120px\] {
  max-height: 120px;
}
.max-h-\[31rem\] {
  max-height: 31rem;
}
.max-h-\[320px\] {
  max-height: 320px;
}
.max-h-\[360px\] {
  max-height: 360px;
}
.max-h-\[400px\] {
  max-height: 400px;
}
.max-h-\[582px\] {
  max-height: 582px;
}
.max-h-\[800px\] {
  max-height: 800px;
}
.max-h-\[80vh\] {
  max-height: 80vh;
}
.max-h-full {
  max-height: 100%;
}
.\!min-h-0 {
  min-height: 0 !important;
}
.min-h-80 {
  min-height: 20rem;
}
.min-h-\[198px\] {
  min-height: 198px;
}
.min-h-\[250px\] {
  min-height: 250px;
}
.min-h-\[3\.35rem\] {
  min-height: 3.35rem;
}
.min-h-\[320px\] {
  min-height: 320px;
}
.min-h-\[40px\] {
  min-height: 40px;
}
.min-h-\[41px\] {
  min-height: 41px;
}
.min-h-\[47\.5rem\] {
  min-height: 47.5rem;
}
.min-h-\[500px\] {
  min-height: 500px;
}
.min-h-\[65px\] {
  min-height: 65px;
}
.min-h-\[72px\] {
  min-height: 72px;
}
.min-h-\[89px\] {
  min-height: 89px;
}
.min-h-full {
  min-height: 100%;
}
.min-h-screen {
  min-height: 100vh;
}
.w-0 {
  width: 0;
}
.w-1\/2 {
  width: 50%;
}
.w-1\/3 {
  width: 33.333333%;
}
.w-10 {
  width: 2.5rem;
}
.w-12 {
  width: 3rem;
}
.w-14 {
  width: 3.5rem;
}
.w-2 {
  width: 0.5rem;
}
.w-2\/3 {
  width: 66.666667%;
}
.w-20 {
  width: 5rem;
}
.w-24 {
  width: 6rem;
}
.w-3 {
  width: 0.75rem;
}
.w-3\.5 {
  width: 0.875rem;
}
.w-3\/12 {
  width: 25%;
}
.w-3\/4 {
  width: 75%;
}
.w-3\/5 {
  width: 60%;
}
.w-4 {
  width: 1rem;
}
.w-4\/5 {
  width: 80%;
}
.w-5 {
  width: 1.25rem;
}
.w-5\.5 {
  width: 1.625rem;
}
.w-6 {
  width: 1.5rem;
}
.w-72 {
  width: 18rem;
}
.w-8 {
  width: 2rem;
}
.w-9 {
  width: 2.25rem;
}
.w-9\/12 {
  width: 75%;
}
.w-\[10\%\] {
  width: 10%;
}
.w-\[100\%\] {
  width: 100%;
}
.w-\[100px\] {
  width: 100px;
}
.w-\[10px\] {
  width: 10px;
}
.w-\[112px\] {
  width: 112px;
}
.w-\[140px\] {
  width: 140px;
}
.w-\[148px\] {
  width: 148px;
}
.w-\[14px\] {
  width: 14px;
}
.w-\[15\.88rem\] {
  width: 15.88rem;
}
.w-\[15rem\] {
  width: 15rem;
}
.w-\[16px\] {
  width: 16px;
}
.w-\[17rem\] {
  width: 17rem;
}
.w-\[19\.75rem\] {
  width: 19.75rem;
}
.w-\[20px\] {
  width: 20px;
}
.w-\[24\%\] {
  width: 24%;
}
.w-\[250px\] {
  width: 250px;
}
.w-\[260px\] {
  width: 260px;
}
.w-\[276px\] {
  width: 276px;
}
.w-\[3\.25rem\] {
  width: 3.25rem;
}
.w-\[30\%\] {
  width: 30%;
}
.w-\[31\.12rem\] {
  width: 31.12rem;
}
.w-\[330px\] {
  width: 330px;
}
.w-\[350px\] {
  width: 350px;
}
.w-\[36\%\] {
  width: 36%;
}
.w-\[40\%\] {
  width: 40%;
}
.w-\[40px\] {
  width: 40px;
}
.w-\[50px\] {
  width: 50px;
}
.w-\[56\.94rem\] {
  width: 56.94rem;
}
.w-\[6\%\] {
  width: 6%;
}
.w-\[672px\] {
  width: 672px;
}
.w-\[70\%\] {
  width: 70%;
}
.w-\[707px\] {
  width: 707px;
}
.w-\[8\%\] {
  width: 8%;
}
.w-\[90px\] {
  width: 90px;
}
.w-auto {
  width: auto;
}
.w-fit {
  width: fit-content;
}
.w-full {
  width: 100%;
}
.w-max {
  width: max-content;
}
.w-screen {
  width: 100vw;
}
.min-w-0 {
  min-width: 0;
}
.min-w-36 {
  min-width: 9rem;
}
.min-w-72 {
  min-width: 18rem;
}
.min-w-\[200px\] {
  min-width: 200px;
}
.min-w-\[300px\] {
  min-width: 300px;
}
.min-w-full {
  min-width: 100%;
}
.min-w-max {
  min-width: max-content;
}
.max-w-4xl {
  max-width: 56rem;
}
.max-w-\[100px\] {
  max-width: 100px;
}
.max-w-\[1172px\] {
  max-width: 1172px;
}
.max-w-\[1360px\] {
  max-width: 1360px;
}
.max-w-\[150px\] {
  max-width: 150px;
}
.max-w-\[16\%\] {
  max-width: 16%;
}
.max-w-\[18\%\] {
  max-width: 18%;
}
.max-w-\[180px\] {
  max-width: 180px;
}
.max-w-\[18rem\] {
  max-width: 18rem;
}
.max-w-\[190px\] {
  max-width: 190px;
}
.max-w-\[230px\] {
  max-width: 230px;
}
.max-w-\[236px\] {
  max-width: 236px;
}
.max-w-\[26\%\] {
  max-width: 26%;
}
.max-w-\[300px\] {
  max-width: 300px;
}
.max-w-\[33rem\] {
  max-width: 33rem;
}
.max-w-\[365px\] {
  max-width: 365px;
}
.max-w-\[42\.5rem\] {
  max-width: 42.5rem;
}
.max-w-\[420px\] {
  max-width: 420px;
}
.max-w-\[480px\] {
  max-width: 480px;
}
.max-w-\[485px\] {
  max-width: 485px;
}
.max-w-\[520px\] {
  max-width: 520px;
}
.max-w-\[560px\] {
  max-width: 560px;
}
.max-w-\[6\.6rem\] {
  max-width: 6.6rem;
}
.max-w-\[64\.625rem\] {
  max-width: 64.625rem;
}
.max-w-\[64\.75rem\] {
  max-width: 64.75rem;
}
.max-w-\[850px\] {
  max-width: 850px;
}
.max-w-\[950px\] {
  max-width: 950px;
}
.max-w-\[95px\] {
  max-width: 95px;
}
.max-w-fit {
  max-width: fit-content;
}
.max-w-full {
  max-width: 100%;
}
.max-w-lg {
  max-width: 32rem;
}
.max-w-md {
  max-width: 28rem;
}
.max-w-screen-lg {
  max-width: 1024px;
}
.max-w-sm {
  max-width: 24rem;
}
.max-w-xl {
  max-width: 36rem;
}
.max-w-xs {
  max-width: 20rem;
}
.flex-1 {
  flex: 1 1 0%;
}
.flex-\[0_0_auto\] {
  flex: 0 0 auto;
}
.flex-shrink-0,
.shrink-0 {
  flex-shrink: 0;
}
.flex-grow-0 {
  flex-grow: 0;
}
.grow {
  flex-grow: 1;
}
.basis-1\/3 {
  flex-basis: 33.333333%;
}
.basis-8 {
  flex-basis: 2rem;
}
.basis-\[26px\] {
  flex-basis: 26px;
}
.basis-\[70\%\] {
  flex-basis: 70%;
}
.basis-full {
  flex-basis: 100%;
}
.-translate-x-1\/2,
.-translate-x-\[50\%\] {
  --tw-translate-x: -50%;
}
.-translate-x-1\/2,
.-translate-x-\[50\%\],
.-translate-y-1 {
  transform: translate(var(--tw-translate-x), var(--tw-translate-y))
    rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y))
    scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.-translate-y-1 {
  --tw-translate-y: -0.25rem;
}
.-translate-y-1\/2 {
  --tw-translate-y: -50%;
}
.-translate-y-1\/2,
.-translate-y-full {
  transform: translate(var(--tw-translate-x), var(--tw-translate-y))
    rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y))
    scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.-translate-y-full {
  --tw-translate-y: -100%;
}
.translate-x-0 {
  --tw-translate-x: 0px;
}
.translate-x-0,
.translate-x-10 {
  transform: translate(var(--tw-translate-x), var(--tw-translate-y))
    rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y))
    scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.translate-x-10 {
  --tw-translate-x: 2.5rem;
}
.translate-x-\[-100\%\] {
  --tw-translate-x: -100%;
}
.translate-x-\[-100\%\],
.translate-y-0 {
  transform: translate(var(--tw-translate-x), var(--tw-translate-y))
    rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y))
    scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.translate-y-0 {
  --tw-translate-y: 0px;
}
.translate-y-1\/2 {
  --tw-translate-y: 50%;
}
.translate-y-12,
.translate-y-1\/2 {
  transform: translate(var(--tw-translate-x), var(--tw-translate-y))
    rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y))
    scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.translate-y-12 {
  --tw-translate-y: 3rem;
}
.translate-y-14 {
  --tw-translate-y: 3.5rem;
}
.-rotate-45,
.translate-y-14 {
  transform: translate(var(--tw-translate-x), var(--tw-translate-y))
    rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y))
    scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.-rotate-45 {
  --tw-rotate: -45deg;
}
.rotate-180 {
  --tw-rotate: 180deg;
}
.rotate-180,
.rotate-45 {
  transform: translate(var(--tw-translate-x), var(--tw-translate-y))
    rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y))
    scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.rotate-45 {
  --tw-rotate: 45deg;
}
.transform {
  transform: translate(var(--tw-translate-x), var(--tw-translate-y))
    rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y))
    scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.cursor-auto {
  cursor: auto;
}
.cursor-default {
  cursor: default;
}
.cursor-pointer {
  cursor: pointer;
}
.cursor-text {
  cursor: text;
}
.select-none {
  user-select: none;
}
.resize {
  resize: both;
}
.list-inside {
  list-style-position: inside;
}
.list-outside {
  list-style-position: outside;
}
.list-decimal {
  list-style-type: decimal;
}
.list-disc {
  list-style-type: disc;
}
.list-none {
  list-style-type: none;
}
.appearance-none {
  appearance: none;
}
.grid-cols-1 {
  grid-template-columns: repeat(1, minmax(0, 1fr));
}
.grid-cols-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.grid-cols-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.flex-row {
  flex-direction: row;
}
.flex-row-reverse {
  flex-direction: row-reverse;
}
.flex-col {
  flex-direction: column;
}
.flex-col-reverse {
  flex-direction: column-reverse;
}
.flex-wrap {
  flex-wrap: wrap;
}
.flex-nowrap {
  flex-wrap: nowrap;
}
.place-content-center {
  place-content: center;
}
.place-items-center {
  place-items: center;
}
.content-center {
  align-content: center;
}
.content-between {
  align-content: space-between;
}
.items-start {
  align-items: flex-start;
}
.items-end {
  align-items: flex-end;
}
.items-center {
  align-items: center;
}
.items-baseline {
  align-items: baseline;
}
.justify-start {
  justify-content: flex-start;
}
.justify-end {
  justify-content: flex-end;
}
.justify-center {
  justify-content: center;
}
.justify-between {
  justify-content: space-between;
}
.justify-around {
  justify-content: space-around;
}
.justify-evenly {
  justify-content: space-evenly;
}
.gap-0 {
  gap: 0;
}
.gap-10 {
  gap: 2.5rem;
}
.gap-14 {
  gap: 3.5rem;
}
.gap-2 {
  gap: 0.5rem;
}
.gap-3 {
  gap: 0.75rem;
}
.gap-4 {
  gap: 1rem;
}
.gap-5 {
  gap: 1.25rem;
}
.gap-6 {
  gap: 1.5rem;
}
.gap-7 {
  gap: 1.75rem;
}
.gap-8 {
  gap: 2rem;
}
.gap-9 {
  gap: 2.25rem;
}
.gap-\[1ch\] {
  gap: 1ch;
}
.gap-x-10 {
  column-gap: 2.5rem;
}
.gap-x-12 {
  column-gap: 3rem;
}
.gap-x-16 {
  column-gap: 4rem;
}
.gap-x-2 {
  column-gap: 0.5rem;
}
.gap-x-20 {
  column-gap: 5rem;
}
.gap-y-10 {
  row-gap: 2.5rem;
}
.gap-y-12 {
  row-gap: 3rem;
}
.gap-y-14 {
  row-gap: 3.5rem;
}
.gap-y-4 {
  row-gap: 1rem;
}
.gap-y-5 {
  row-gap: 1.25rem;
}
.gap-y-6 {
  row-gap: 1.5rem;
}
.gap-y-7 {
  row-gap: 1.75rem;
}
.gap-y-8 {
  row-gap: 2rem;
}
.-space-x-2 > :not([hidden]) ~ :not([hidden]) {
  --tw-space-x-reverse: 0;
  margin-right: calc(-0.5rem * var(--tw-space-x-reverse));
  margin-left: calc(-0.5rem * calc(1 - var(--tw-space-x-reverse)));
}
.space-x-1 > :not([hidden]) ~ :not([hidden]) {
  --tw-space-x-reverse: 0;
  margin-right: calc(0.25rem * var(--tw-space-x-reverse));
  margin-left: calc(0.25rem * calc(1 - var(--tw-space-x-reverse)));
}
.space-x-4 > :not([hidden]) ~ :not([hidden]) {
  --tw-space-x-reverse: 0;
  margin-right: calc(1rem * var(--tw-space-x-reverse));
  margin-left: calc(1rem * calc(1 - var(--tw-space-x-reverse)));
}
.space-y-1 > :not([hidden]) ~ :not([hidden]) {
  --tw-space-y-reverse: 0;
  margin-top: calc(0.25rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(0.25rem * var(--tw-space-y-reverse));
}
.space-y-4 > :not([hidden]) ~ :not([hidden]) {
  --tw-space-y-reverse: 0;
  margin-top: calc(1rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(1rem * var(--tw-space-y-reverse));
}
.space-y-\[4px\] > :not([hidden]) ~ :not([hidden]) {
  --tw-space-y-reverse: 0;
  margin-top: calc(4px * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(4px * var(--tw-space-y-reverse));
}
.divide-y > :not([hidden]) ~ :not([hidden]) {
  --tw-divide-y-reverse: 0;
  border-top-width: calc(1px * calc(1 - var(--tw-divide-y-reverse)));
  border-bottom-width: calc(1px * var(--tw-divide-y-reverse));
}
.divide-dashed > :not([hidden]) ~ :not([hidden]) {
  border-style: dashed;
}
.divide-gray-sand > :not([hidden]) ~ :not([hidden]) {
  border-color: var(--gray-sand);
}
.self-start {
  align-self: flex-start;
}
.justify-self-end {
  justify-self: end;
}
.overflow-hidden {
  overflow: hidden;
}
.overflow-clip {
  overflow: clip;
}
.\!overflow-visible {
  overflow: visible !important;
}
.overflow-x-auto {
  overflow-x: auto;
}
.overflow-y-auto {
  overflow-y: auto;
}
.overflow-x-hidden {
  overflow-x: hidden;
}
.overscroll-contain {
  overscroll-behavior: contain;
}
.scroll-smooth {
  scroll-behavior: smooth;
}
.text-ellipsis {
  text-overflow: ellipsis;
}
.whitespace-nowrap {
  white-space: nowrap;
}
.break-words {
  overflow-wrap: break-word;
}
.break-all {
  word-break: break-all;
}
.\!rounded-\[0\] {
  border-radius: 0 !important;
}
.rounded {
  border-radius: 0.25rem;
}
.rounded-2\.5 {
  border-radius: 0.625rem;
}
.rounded-2xl {
  border-radius: 1rem;
}
.rounded-3xl {
  border-radius: 1.5rem;
}
.rounded-5 {
  border-radius: 1.25rem;
}
.rounded-\[10px\] {
  border-radius: 10px;
}
.rounded-\[12px\] {
  border-radius: 12px;
}
.rounded-\[5\.3px\] {
  border-radius: 5.3px;
}
.rounded-\[6px\] {
  border-radius: 6px;
}
.rounded-\[7px\] {
  border-radius: 7px;
}
.rounded-full {
  border-radius: 9999px;
}
.rounded-lg {
  border-radius: 0.5rem;
}
.rounded-md {
  border-radius: 0.375rem;
}
.rounded-none {
  border-radius: 0;
}
.rounded-xl {
  border-radius: 0.75rem;
}
.rounded-t-lg {
  border-top-left-radius: 0.5rem;
  border-top-right-radius: 0.5rem;
}
.rounded-bl-2xl {
  border-bottom-left-radius: 1rem;
}
.rounded-bl-\[5px\] {
  border-bottom-left-radius: 5px;
}
.rounded-br-2xl {
  border-bottom-right-radius: 1rem;
}
.rounded-br-\[5px\] {
  border-bottom-right-radius: 5px;
}
.border {
  border-width: 1px;
}
.border-0 {
  border-width: 0;
}
.border-2 {
  border-width: 2px;
}
.border-4 {
  border-width: 4px;
}
.border-\[1px\] {
  border-width: 1px;
}
.border-\[2px\] {
  border-width: 2px;
}
.border-y {
  border-top-width: 1px;
}
.border-b,
.border-y {
  border-bottom-width: 1px;
}
.border-b-2 {
  border-bottom-width: 2px;
}
.border-b-\[1\.5px\] {
  border-bottom-width: 1.5px;
}
.border-l,
.border-l-\[1px\] {
  border-left-width: 1px;
}
.border-r {
  border-right-width: 1px;
}
.border-r-2 {
  border-right-width: 2px;
}
.border-r-\[1px\] {
  border-right-width: 1px;
}
.border-t {
  border-top-width: 1px;
}
.border-t-2 {
  border-top-width: 2px;
}
.border-t-\[1px\] {
  border-top-width: 1px;
}
.border-solid {
  border-style: solid;
}
.border-dashed {
  border-style: dashed;
}
.border-none {
  border-style: none;
}
.border-\[\#52606D\] {
  --tw-border-opacity: 1;
  border-color: rgb(82 96 109 / var(--tw-border-opacity, 1));
}
.border-black {
  border-color: var(--black);
}
.border-gray-200 {
  border-color: var(--neutral-gray-200);
}
.border-gray-300 {
  border-color: var(--grey-300);
}
.border-gray-400 {
  border-color: var(--neutral-gray-400);
}
.border-gray-cloud {
  border-color: var(--cloud);
}
.border-gray-earth {
  border-color: var(--gray-earth);
}
.border-gray-granite {
  border-color: var(--gray-granite);
}
.border-gray-sand {
  border-color: var(--gray-sand);
}
.border-gray-stone {
  border-color: var(--gray-stone);
}
.border-input-border {
  border-color: var(--input-border);
}
.border-primary-sky-blue {
  border-color: var(--primary-sky-blue);
}
.border-primary-sunshine-yellow {
  border-color: var(--primary-sunshine-yellow);
}
.border-red {
  border-color: var(--red);
}
.border-sky-blue {
  border-color: var(--primary-sky-blue);
}
.border-sky-dawn {
  border-color: var(--secondary-cool-dawn);
}
.border-sky-dusk {
  border-color: var(--secondary-cool-dusk);
}
.border-transparent {
  border-color: #0000;
}
.border-white {
  border-color: var(--white);
}
.border-b-gray-sand {
  border-bottom-color: var(--gray-sand);
}
.bg-\[\#82ca9d\] {
  --tw-bg-opacity: 1;
  background-color: rgb(130 202 157 / var(--tw-bg-opacity, 1));
}
.bg-\[\#BEBEBE\] {
  --tw-bg-opacity: 1;
  background-color: rgb(190 190 190 / var(--tw-bg-opacity, 1));
}
.bg-\[\#FFF\],
.bg-\[\#fff\] {
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / var(--tw-bg-opacity, 1));
}
.bg-black {
  background-color: var(--black);
}
.bg-bright-sun {
  background-color: var(--bright-sun);
}
.bg-forest {
  background-color: var(--forest);
}
.bg-gray-300 {
  background-color: var(--grey-300);
}
.bg-gray-cloud {
  background-color: var(--cloud);
}
.bg-gray-earth {
  background-color: var(--gray-earth);
}
.bg-meadow {
  background-color: var(--meadow);
}
.bg-primary-dark-blue {
  background-color: var(--primary-dark-blue);
}
.bg-primary-sky-blue {
  background-color: var(--primary-sky-blue);
}
.bg-red {
  background-color: var(--red);
}
.bg-secondary-cool-dawn {
  background-color: var(--secondary-cool-dawn);
}
.bg-sky-blue {
  background-color: var(--primary-sky-blue);
}
.bg-sky-dawn-light {
  background-color: var(--dawn-light);
}
.bg-transparent {
  background-color: initial;
}
.bg-white {
  background-color: var(--white);
}
.bg-opacity-50 {
  --tw-bg-opacity: 0.5;
}
.bg-FeatureMoment {
  background-image: url(../images/feature-moment.svg);
}
.bg-ProductSelectionEnphase {
  background-image: url(../images/solar-battery.webp);
}
.bg-ProductSelectionSolar {
  background-image: url(../images/residential-solar.webp);
}
.bg-\[linear-gradient\(0deg\2c _\#000000\2c _\#00000000\)\] {
  background-image: linear-gradient(0deg, #000, #0000);
}
.bg-\[linear-gradient\(180deg\2c _\#000000\2c _\#00000000\)\] {
  background-image: linear-gradient(180deg, #000, #0000);
}
.bg-dealer {
  background-image: url(../images/dealer-hero.jpg);
}
.bg-gradient-to-t {
  background-image: linear-gradient(to top, var(--tw-gradient-stops));
}
.bg-none {
  background-image: none;
}
.bg-privacyChoice {
  background-image: url(../images/privacy-options.png);
}
.from-sky-blue {
  --tw-gradient-from: var(--primary-sky-blue) var(--tw-gradient-from-position);
  --tw-gradient-to: #fff0 var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.to-transparent {
  --tw-gradient-to: #0000 var(--tw-gradient-to-position);
}
.bg-\[auto_700px\] {
  background-size: auto 700px;
}
.bg-\[length\:45\%_100px\] {
  background-size: 45% 100px;
}
.bg-cover {
  background-size: cover;
}
.bg-center {
  background-position: 50%;
}
.bg-right {
  background-position: 100%;
}
.bg-right-bottom {
  background-position: 100% 100%;
}
.bg-top {
  background-position: top;
}
.bg-no-repeat {
  background-repeat: no-repeat;
}
.fill-bright-sun {
  fill: var(--bright-sun);
}
.fill-forest {
  fill: var(--forest);
}
.fill-gray-earth {
  fill: var(--gray-earth);
}
.fill-gray-sand {
  fill: var(--gray-sand);
}
.fill-gray-stone {
  fill: var(--gray-stone);
}
.fill-meadow {
  fill: var(--meadow);
}
.fill-midnight {
  fill: var(--midnight);
}
.fill-primary-sky-blue {
  fill: var(--primary-sky-blue);
}
.fill-red {
  fill: var(--red);
}
.fill-sky-blue {
  fill: var(--primary-sky-blue);
}
.fill-sky-dusk {
  fill: var(--secondary-cool-dusk);
}
.fill-white {
  fill: var(--white);
}
.stroke-black {
  stroke: var(--black);
}
.stroke-sky-blue {
  stroke: var(--primary-sky-blue);
}
.stroke-2 {
  stroke-width: 2;
}
.object-contain {
  object-fit: contain;
}
.object-cover {
  object-fit: cover;
}
.object-center {
  object-position: center;
}
.p-0 {
  padding: 0;
}
.p-1 {
  padding: 0.25rem;
}
.p-16 {
  padding: 4rem;
}
.p-2 {
  padding: 0.5rem;
}
.p-2\.5 {
  padding: 0.625rem;
}
.p-3 {
  padding: 0.75rem;
}
.p-4 {
  padding: 1rem;
}
.p-5 {
  padding: 1.25rem;
}
.p-6 {
  padding: 1.5rem;
}
.p-8 {
  padding: 2rem;
}
.p-\[2px\] {
  padding: 2px;
}
.p-\[30px\] {
  padding: 30px;
}
.p-\[5px\] {
  padding: 5px;
}
.p-\[6px\] {
  padding: 6px;
}
.\!px-0 {
  padding-left: 0 !important;
  padding-right: 0 !important;
}
.px-0 {
  padding-left: 0;
  padding-right: 0;
}
.px-1 {
  padding-left: 0.25rem;
  padding-right: 0.25rem;
}
.px-10 {
  padding-left: 2.5rem;
  padding-right: 2.5rem;
}
.px-14 {
  padding-left: 3.5rem;
  padding-right: 3.5rem;
}
.px-2 {
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}
.px-2\.5 {
  padding-left: 0.625rem;
  padding-right: 0.625rem;
}
.px-24 {
  padding-left: 6rem;
  padding-right: 6rem;
}
.px-3 {
  padding-left: 0.75rem;
  padding-right: 0.75rem;
}
.px-4 {
  padding-left: 1rem;
  padding-right: 1rem;
}
.px-5 {
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}
.px-6 {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}
.px-8 {
  padding-left: 2rem;
  padding-right: 2rem;
}
.px-\[15px\] {
  padding-left: 15px;
  padding-right: 15px;
}
.px-\[20px\] {
  padding-left: 20px;
  padding-right: 20px;
}
.px-\[32px\] {
  padding-left: 32px;
  padding-right: 32px;
}
.py-0 {
  padding-top: 0;
  padding-bottom: 0;
}
.py-1 {
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
}
.py-10 {
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
}
.py-12 {
  padding-top: 3rem;
  padding-bottom: 3rem;
}
.py-14 {
  padding-top: 3.5rem;
  padding-bottom: 3.5rem;
}
.py-2 {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
.py-2\.5 {
  padding-top: 0.625rem;
  padding-bottom: 0.625rem;
}
.py-20 {
  padding-top: 5rem;
  padding-bottom: 5rem;
}
.py-3 {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}
.py-30 {
  padding-top: 7.5rem;
  padding-bottom: 7.5rem;
}
.py-4 {
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.py-5 {
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
}
.py-6 {
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}
.py-8 {
  padding-top: 2rem;
  padding-bottom: 2rem;
}
.py-9 {
  padding-top: 2.25rem;
  padding-bottom: 2.25rem;
}
.py-\[14px\] {
  padding-top: 14px;
  padding-bottom: 14px;
}
.py-\[30px\] {
  padding-top: 30px;
  padding-bottom: 30px;
}
.py-\[52px\] {
  padding-top: 52px;
  padding-bottom: 52px;
}
.py-\[5px\] {
  padding-top: 5px;
  padding-bottom: 5px;
}
.py-\[90px\] {
  padding-top: 90px;
  padding-bottom: 90px;
}
.\!pb-3 {
  padding-bottom: 0.75rem !important;
}
.pb-0 {
  padding-bottom: 0;
}
.pb-1 {
  padding-bottom: 0.25rem;
}
.pb-10 {
  padding-bottom: 2.5rem;
}
.pb-12 {
  padding-bottom: 3rem;
}
.pb-2 {
  padding-bottom: 0.5rem;
}
.pb-2\.5 {
  padding-bottom: 0.625rem;
}
.pb-20 {
  padding-bottom: 5rem;
}
.pb-28 {
  padding-bottom: 7rem;
}
.pb-3 {
  padding-bottom: 0.75rem;
}
.pb-30 {
  padding-bottom: 7.5rem;
}
.pb-4 {
  padding-bottom: 1rem;
}
.pb-5 {
  padding-bottom: 1.25rem;
}
.pb-6 {
  padding-bottom: 1.5rem;
}
.pb-8 {
  padding-bottom: 2rem;
}
.pb-9 {
  padding-bottom: 2.25rem;
}
.pb-\[22px\] {
  padding-bottom: 22px;
}
.pb-\[50px\] {
  padding-bottom: 50px;
}
.pb-\[5px\] {
  padding-bottom: 5px;
}
.pl-0 {
  padding-left: 0;
}
.pl-1 {
  padding-left: 0.25rem;
}
.pl-12 {
  padding-left: 3rem;
}
.pl-2 {
  padding-left: 0.5rem;
}
.pl-3 {
  padding-left: 0.75rem;
}
.pl-4 {
  padding-left: 1rem;
}
.pl-5 {
  padding-left: 1.25rem;
}
.pl-\[10px\] {
  padding-left: 10px;
}
.pl-\[14px\] {
  padding-left: 14px;
}
.pr-1 {
  padding-right: 0.25rem;
}
.pr-10 {
  padding-right: 2.5rem;
}
.pr-2 {
  padding-right: 0.5rem;
}
.pr-3 {
  padding-right: 0.75rem;
}
.pr-4 {
  padding-right: 1rem;
}
.pr-5 {
  padding-right: 1.25rem;
}
.pr-6 {
  padding-right: 1.5rem;
}
.pr-7 {
  padding-right: 1.75rem;
}
.pr-8 {
  padding-right: 2rem;
}
.pr-9 {
  padding-right: 2.25rem;
}
.pr-\[14px\] {
  padding-right: 14px;
}
.pr-\[35px\] {
  padding-right: 35px;
}
.pt-0 {
  padding-top: 0;
}
.pt-1 {
  padding-top: 0.25rem;
}
.pt-10 {
  padding-top: 2.5rem;
}
.pt-12 {
  padding-top: 3rem;
}
.pt-14 {
  padding-top: 3.5rem;
}
.pt-16 {
  padding-top: 4rem;
}
.pt-2 {
  padding-top: 0.5rem;
}
.pt-2\.5 {
  padding-top: 0.625rem;
}
.pt-20 {
  padding-top: 5rem;
}
.pt-3 {
  padding-top: 0.75rem;
}
.pt-32 {
  padding-top: 8rem;
}
.pt-4 {
  padding-top: 1rem;
}
.pt-5 {
  padding-top: 1.25rem;
}
.pt-6 {
  padding-top: 1.5rem;
}
.pt-7 {
  padding-top: 1.75rem;
}
.pt-8 {
  padding-top: 2rem;
}
.pt-9 {
  padding-top: 2.25rem;
}
.pt-\[10rem\] {
  padding-top: 10rem;
}
.pt-\[15px\] {
  padding-top: 15px;
}
.pt-\[42px\] {
  padding-top: 42px;
}
.pt-\[7\.313rem\] {
  padding-top: 7.313rem;
}
.text-left {
  text-align: left;
}
.text-center {
  text-align: center;
}
.text-right {
  text-align: right;
}
.text-justify {
  text-align: justify;
}
.text-start {
  text-align: start;
}
.align-top {
  vertical-align: top;
}
.align-middle {
  vertical-align: middle;
}
.font-\[bold\] {
  font-family: bold;
}
.font-figtree {
  font-family: Figtree, ui-serif, Georgia, Cambria, Times New Roman, Times,
    serif;
}
.\!text-base {
  font-size: 1rem !important;
  line-height: 1.5rem !important;
}
.text-2xl {
  font-size: 1.5rem;
  line-height: 2rem;
}
.text-3xl {
  font-size: 1.875rem;
  line-height: 2.25rem;
}
.text-4xl {
  font-size: 2.25rem;
  line-height: 2.5rem;
}
.text-5xl {
  font-size: 3rem;
  line-height: 1;
}
.text-6xl {
  font-size: 3.75rem;
  line-height: 1;
}
.text-9xl {
  font-size: 8rem;
  line-height: 1;
}
.text-\[0\.615rem\] {
  font-size: 0.615rem;
}
.text-\[1\.375rem\] {
  font-size: 1.375rem;
}
.text-\[1\.625rem\] {
  font-size: 1.625rem;
}
.text-\[12px\] {
  font-size: 12px;
}
.text-\[13px\] {
  font-size: 13px;
}
.text-\[14px\] {
  font-size: 14px;
}
.text-\[15px\] {
  font-size: 15px;
}
.text-\[16px\] {
  font-size: 16px;
}
.text-\[18px\] {
  font-size: 18px;
}
.text-\[2\.5rem\] {
  font-size: 2.5rem;
}
.text-\[2\.75rem\] {
  font-size: 2.75rem;
}
.text-\[26px\] {
  font-size: 26px;
}
.text-\[2rem\] {
  font-size: 2rem;
}
.text-\[31px\] {
  font-size: 31px;
}
.text-\[33px\] {
  font-size: 33px;
}
.text-\[36px\] {
  font-size: 36px;
}
.text-\[40px\] {
  font-size: 40px;
}
.text-\[48px\] {
  font-size: 48px;
}
.text-\[9px\] {
  font-size: 9px;
}
.text-base {
  font-size: 1rem;
  line-height: 1.5rem;
}
.text-lg {
  font-size: 1.125rem;
  line-height: 1.75rem;
}
.text-sm {
  font-size: 0.875rem;
  line-height: 1.25rem;
}
.text-xl {
  font-size: 1.25rem;
  line-height: 1.75rem;
}
.text-xs {
  font-size: 0.75rem;
  line-height: 1rem;
}
.font-black {
  font-weight: 900;
}
.font-bold {
  font-weight: 700;
}
.font-extrabold {
  font-weight: 800;
}
.font-light {
  font-weight: 300;
}
.font-medium {
  font-weight: 500;
}
.font-normal {
  font-weight: 400;
}
.font-semibold {
  font-weight: 600;
}
.font-thin {
  font-weight: 100;
}
.lowercase {
  text-transform: lowercase;
}
.capitalize {
  text-transform: capitalize;
}
.italic {
  font-style: italic;
}
.not-italic {
  font-style: normal;
}
.leading-4 {
  line-height: 1rem;
}
.leading-5 {
  line-height: 1.25rem;
}
.leading-8 {
  line-height: 2rem;
}
.leading-\[1\.4\] {
  line-height: 1.4;
}
.leading-\[12px\] {
  line-height: 12px;
}
.leading-\[15px\] {
  line-height: 15px;
}
.leading-\[18px\] {
  line-height: 18px;
}
.leading-\[19px\] {
  line-height: 19px;
}
.leading-\[1\] {
  line-height: 1;
}
.leading-\[20px\] {
  line-height: 20px;
}
.leading-\[25px\] {
  line-height: 25px;
}
.leading-\[31px\] {
  line-height: 31px;
}
.leading-\[34px\] {
  line-height: 34px;
}
.leading-\[35px\] {
  line-height: 35px;
}
.leading-\[40px\] {
  line-height: 40px;
}
.leading-lg {
  line-height: var(--line-height-lg);
}
.leading-loose {
  line-height: 2;
}
.leading-md {
  line-height: var(--line-height-md);
}
.leading-normal {
  line-height: 1.5;
}
.leading-xl {
  line-height: var(--line-height-xl);
}
.\!tracking-normal {
  letter-spacing: 0 !important;
}
.tracking-\[\.03em\] {
  letter-spacing: 0.03em;
}
.tracking-\[0\%\] {
  letter-spacing: 0;
}
.tracking-\[0\.03em\] {
  letter-spacing: 0.03em;
}
.tracking-loose {
  letter-spacing: 0.02em;
}
.tracking-normal {
  letter-spacing: 0;
}
.tracking-snug {
  letter-spacing: -0.02em;
}
.text-black {
  color: var(--black);
}
.text-dessert {
  color: var(--dessert);
}
.text-forest {
  color: var(--forest);
}
.text-gray-400 {
  color: var(--neutral-gray-400);
}
.text-gray-500 {
  color: var(--neutral-gray-500);
}
.text-gray-cloud {
  color: var(--cloud);
}
.text-gray-earth {
  color: var(--gray-earth);
}
.text-gray-stone {
  color: var(--gray-stone);
}
.text-meadow {
  color: var(--meadow);
}
.text-midnight {
  color: var(--midnight);
}
.text-ocean {
  color: var(--ocean);
}
.text-primary-dark-blue {
  color: var(--primary-dark-blue);
}
.text-primary-sky-blue {
  color: var(--primary-sky-blue);
}
.text-primary-sunshine-yellow {
  color: var(--primary-sunshine-yellow);
}
.text-red {
  color: var(--red);
}
.text-secondary-cool-dusk {
  color: var(--secondary-cool-dusk);
}
.text-sky-blue {
  color: var(--primary-sky-blue);
}
.text-tertiary {
  color: var(--neutral-white);
}
.text-white {
  color: var(--white);
}
.underline {
  text-decoration-line: underline;
}
.no-underline {
  text-decoration-line: none;
}
.decoration-bright-sun {
  text-decoration-color: var(--bright-sun);
}
.decoration-primary-sky-blue {
  text-decoration-color: var(--primary-sky-blue);
}
.decoration-\[1\.5px\] {
  text-decoration-thickness: 1.5px;
}
.underline-offset-8 {
  text-underline-offset: 8px;
}
.antialiased {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.opacity-0 {
  opacity: 0;
}
.opacity-100 {
  opacity: 1;
}
.opacity-50 {
  opacity: 0.5;
}
.opacity-75 {
  opacity: 0.75;
}
.opacity-\[\.57\] {
  opacity: 0.57;
}
.opacity-\[20\%\] {
  opacity: 20%;
}
.shadow {
  --tw-shadow: 0 1px 3px 0 #0000001a, 0 1px 2px -1px #0000001a;
  --tw-shadow-colored: 0 1px 3px 0 var(--tw-shadow-color),
    0 1px 2px -1px var(--tw-shadow-color);
}
.shadow,
.shadow-\[0_20px_41px_1px_rgb\(127\2c 185\2c 188\2c 0\.3\)\] {
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000),
    var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.shadow-\[0_20px_41px_1px_rgb\(127\2c 185\2c 188\2c 0\.3\)\] {
  --tw-shadow: 0 20px 41px 1px #7fb9bc4d;
  --tw-shadow-colored: 0 20px 41px 1px var(--tw-shadow-color);
}
.shadow-\[0_3px_20px_-3px_rgba\(233\2c 220\2c 208\2c 0\.3\)\] {
  --tw-shadow: 0 3px 20px -3px #e9dcd04d;
  --tw-shadow-colored: 0 3px 20px -3px var(--tw-shadow-color);
}
.shadow-\[0_3px_20px_-3px_rgba\(233\2c 220\2c 208\2c 0\.3\)\],
.shadow-card {
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000),
    var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.shadow-card {
  --tw-shadow: 0px 4px 26px -4px #1018281a;
  --tw-shadow-colored: 0px 4px 26px -4px var(--tw-shadow-color);
}
.shadow-inner {
  --tw-shadow: inset 0 2px 4px 0 #0000000d;
  --tw-shadow-colored: inset 0 2px 4px 0 var(--tw-shadow-color);
}
.shadow-inner,
.shadow-lg {
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000),
    var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.shadow-lg {
  --tw-shadow: 0 10px 15px -3px #0000001a, 0 4px 6px -4px #0000001a;
  --tw-shadow-colored: 0 10px 15px -3px var(--tw-shadow-color),
    0 4px 6px -4px var(--tw-shadow-color);
}
.shadow-md {
  --tw-shadow: 0 4px 6px -1px #0000001a, 0 2px 4px -2px #0000001a;
  --tw-shadow-colored: 0 4px 6px -1px var(--tw-shadow-color),
    0 2px 4px -2px var(--tw-shadow-color);
}
.shadow-md,
.shadow-sm {
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000),
    var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.shadow-sm {
  --tw-shadow: 0 1px 2px 0 #0000000d;
  --tw-shadow-colored: 0 1px 2px 0 var(--tw-shadow-color);
}
.shadow-xl {
  --tw-shadow: 0 20px 25px -5px #0000001a, 0 8px 10px -6px #0000001a;
  --tw-shadow-colored: 0 20px 25px -5px var(--tw-shadow-color),
    0 8px 10px -6px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000),
    var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.shadow-\[\#DCE7F9\] {
  --tw-shadow-color: #dce7f9;
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-gray-granite {
  --tw-shadow-color: var(--gray-granite);
  --tw-shadow: var(--tw-shadow-colored);
}
.outline-none {
  outline: 2px solid #0000;
  outline-offset: 2px;
}
.outline-0 {
  outline-width: 0;
}
.ring-2 {
  --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0
    var(--tw-ring-offset-width) var(--tw-ring-offset-color);
  --tw-ring-shadow: var(--tw-ring-inset) 0 0 0
    calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow),
    var(--tw-shadow, 0 0 #0000);
}
.ring-transparent {
  --tw-ring-color: #0000;
}
.ring-offset-0 {
  --tw-ring-offset-width: 0px;
}
.filter {
  filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast)
    var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate)
    var(--tw-sepia) var(--tw-drop-shadow);
}
.transition {
  transition-property: color, background-color, border-color,
    text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter,
    backdrop-filter;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 0.15s;
}
.transition-all {
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 0.15s;
}
.transition-colors {
  transition-property: color, background-color, border-color,
    text-decoration-color, fill, stroke;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 0.15s;
}
.transition-opacity {
  transition-property: opacity;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 0.15s;
}
.delay-100 {
  transition-delay: 0.1s;
}
.delay-300 {
  transition-delay: 0.3s;
}
.delay-500 {
  transition-delay: 0.5s;
}
.duration-1000 {
  transition-duration: 1s;
}
.duration-200 {
  transition-duration: 0.2s;
}
.duration-300 {
  transition-duration: 0.3s;
}
.duration-500 {
  transition-duration: 0.5s;
}
.duration-\[2s\] {
  transition-duration: 2s;
}
.ease-\[ease-in-out\] {
  transition-timing-function: ease-in-out;
}
.ease-in-out {
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}
.ease-out {
  transition-timing-function: cubic-bezier(0, 0, 0.2, 1);
}
@media (min-width: 1024px) {
  .lg\:container {
    width: 100%;
    margin-right: auto;
    margin-left: auto;
  }
  @media (min-width: 640px) {
    .lg\:container {
      max-width: 640px;
    }
  }
  @media (min-width: 768px) {
    .lg\:container {
      max-width: 768px;
    }
  }
  @media (min-width: 1024px) {
    .lg\:container {
      max-width: 1024px;
    }
  }
  @media (min-width: 1280px) {
    .lg\:container {
      max-width: 1280px;
    }
  }
  @media (min-width: 1440px) {
    .lg\:container {
      max-width: 1440px;
    }
  }
  @media (min-width: 1536px) {
    .lg\:container {
      max-width: 1536px;
    }
  }
}
@media (min-width: 1280px) {
  .xl\:container {
    width: 100%;
    margin-right: auto;
    margin-left: auto;
  }
  @media (min-width: 640px) {
    .xl\:container {
      max-width: 640px;
    }
  }
  @media (min-width: 768px) {
    .xl\:container {
      max-width: 768px;
    }
  }
  @media (min-width: 1024px) {
    .xl\:container {
      max-width: 1024px;
    }
  }
  @media (min-width: 1280px) {
    .xl\:container {
      max-width: 1280px;
    }
  }
  @media (min-width: 1440px) {
    .xl\:container {
      max-width: 1440px;
    }
  }
  @media (min-width: 1536px) {
    .xl\:container {
      max-width: 1536px;
    }
  }
}
.placeholder\:text-gray-400::placeholder {
  color: var(--neutral-gray-400);
}
.before\:absolute:before {
  content: var(--tw-content);
  position: absolute;
}
.before\:left-0:before {
  content: var(--tw-content);
  left: 0;
}
.before\:top-0:before {
  content: var(--tw-content);
  top: 0;
}
.before\:z-\[1\]:before {
  content: var(--tw-content);
  z-index: 1;
}
.before\:h-full:before {
  content: var(--tw-content);
  height: 100%;
}
.before\:w-full:before {
  content: var(--tw-content);
  width: 100%;
}
.before\:bg-black:before {
  content: var(--tw-content);
  background-color: var(--black);
}
.before\:opacity-70:before {
  content: var(--tw-content);
  opacity: 0.7;
}
.before\:content-\[\'\'\]:before {
  --tw-content: "";
  content: var(--tw-content);
}
.first\:mt-0:first-child {
  margin-top: 0;
}
.first\:pt-0:first-child {
  padding-top: 0;
}
.last\:mb-0:last-child {
  margin-bottom: 0;
}
.last\:mt-8:last-child {
  margin-top: 2rem;
}
.last\:pb-0:last-child {
  padding-bottom: 0;
}
.last\:pb-14:last-child {
  padding-bottom: 3.5rem;
}
.odd\:bg-sky-dawn-light:nth-child(odd) {
  background-color: var(--dawn-light);
}
.even\:bg-white:nth-child(2n) {
  background-color: var(--white);
}
.first-of-type\:border-none:first-of-type {
  border-style: none;
}
.visited\:text-sky-blue:visited {
  color: var(--primary-sky-blue);
}
.target\:visible:target {
  visibility: visible;
}
.target\:opacity-100:target {
  opacity: 1;
}
.hover\:border-b-2:hover {
  border-bottom-width: 2px;
}
.hover\:border-primary-dark-blue:hover {
  border-color: var(--primary-dark-blue);
}
.hover\:border-primary-sky-blue:hover,
.hover\:border-sky-blue:hover {
  border-color: var(--primary-sky-blue);
}
.hover\:border-b-sky-blue:hover {
  border-bottom-color: var(--primary-sky-blue);
}
.hover\:bg-bright-sun:hover {
  background-color: var(--bright-sun);
}
.hover\:bg-secondary-cool-cloud:hover {
  background-color: var(--secondary-cool-cloud);
}
.hover\:bg-white:hover {
  background-color: var(--white);
}
.hover\:fill-midnight:hover {
  fill: var(--midnight);
}
.hover\:text-black:hover {
  color: var(--black);
}
.hover\:text-bright-sun:hover {
  color: var(--bright-sun);
}
.hover\:text-primary-dark-blue:hover {
  color: var(--primary-dark-blue);
}
.hover\:text-primary-sky-blue:hover {
  color: var(--primary-sky-blue);
}
.hover\:text-primary-sunshine-yellow:hover {
  color: var(--primary-sunshine-yellow);
}
.hover\:text-secondary-cool-dusk:hover {
  color: var(--secondary-cool-dusk);
}
.hover\:text-sky-blue:hover {
  color: var(--primary-sky-blue);
}
.hover\:text-white:hover {
  color: var(--white);
}
.hover\:underline:hover {
  text-decoration-line: underline;
}
.hover\:no-underline:hover {
  text-decoration-line: none;
}
.hover\:ring-primary-sky-blue:hover {
  --tw-ring-color: var(--primary-sky-blue);
}
.focus\:border-b-2:focus {
  border-bottom-width: 2px;
}
.focus\:border-sky-blue:focus {
  border-color: var(--primary-sky-blue);
}
.focus\:border-white:focus {
  border-color: var(--white);
}
.focus\:outline-none:focus {
  outline: 2px solid #0000;
  outline-offset: 2px;
}
.focus\:ring:focus {
  --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0
    var(--tw-ring-offset-width) var(--tw-ring-offset-color);
  --tw-ring-shadow: var(--tw-ring-inset) 0 0 0
    calc(3px + var(--tw-ring-offset-width)) var(--tw-ring-color);
}
.focus\:ring-2:focus,
.focus\:ring:focus {
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow),
    var(--tw-shadow, 0 0 #0000);
}
.focus\:ring-2:focus {
  --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0
    var(--tw-ring-offset-width) var(--tw-ring-offset-color);
  --tw-ring-shadow: var(--tw-ring-inset) 0 0 0
    calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);
}
.focus\:ring-opacity-40:focus {
  --tw-ring-opacity: 0.4;
}
.active\:border-primary-dark-blue:active {
  border-color: var(--primary-dark-blue);
}
.active\:border-primary-sky-blue:active {
  border-color: var(--primary-sky-blue);
}
.active\:border-b-bright-sun:active {
  border-bottom-color: var(--bright-sun);
}
.active\:bg-sunset:active {
  background-color: var(--sunset);
}
.active\:bg-white:active {
  background-color: var(--white);
}
.active\:text-bright-sun:active {
  color: var(--bright-sun);
}
.active\:text-primary-dark-blue:active {
  color: var(--primary-dark-blue);
}
.active\:text-primary-sky-blue:active {
  color: var(--primary-sky-blue);
}
.active\:text-primary-sunshine-yellow:active {
  color: var(--primary-sunshine-yellow);
}
.active\:ring-primary-dark-blue:active {
  --tw-ring-color: var(--primary-dark-blue);
}
.disabled\:decoration-white:disabled {
  text-decoration-color: var(--white);
}
.disabled\:opacity-50:disabled {
  opacity: 0.5;
}
.group:first-child .group-first\:border-t {
  border-top-width: 1px;
}
.group:first-child .group-first\:fill-primary-sky-blue {
  fill: var(--primary-sky-blue);
}
.group:nth-child(2n) .group-even\:fill-meadow {
  fill: var(--meadow);
}
.group:last-of-type .group-last-of-type\:fill-primary-sky-blue {
  fill: var(--primary-sky-blue);
}
.group:hover .group-hover\:block,
.group\/menulist:hover .group-hover\/menulist\:block {
  display: block;
}
.group\/menulist:hover .group-hover\/menulist\:hidden {
  display: none;
}
.group:hover .group-hover\:w-3 {
  width: 0.75rem;
}
.group:hover .group-hover\:w-4 {
  width: 1rem;
}
.group:hover .group-hover\:text-primary-dark-blue {
  color: var(--primary-dark-blue);
}
.group:hover .group-hover\:text-sky-blue {
  color: var(--primary-sky-blue);
}
.group:hover .group-hover\:opacity-100 {
  opacity: 1;
}
.group:hover .group-hover\:opacity-50 {
  opacity: 0.5;
}
@media not all and (min-width: 1280px) {
  .max-xl\:size-8 {
    width: 2rem;
    height: 2rem;
  }
}
@media not all and (min-width: 1024px) {
  .max-lg\:top-\[20rem\] {
    top: 20rem;
  }
  .max-lg\:max-w-full {
    max-width: 100%;
  }
}
@media not all and (min-width: 640px) {
  .max-sm\:-left-\[16\.76rem\] {
    left: -16.76rem;
  }
}
@media (min-width: 640px) {
  .sm\:left-\[16rem\] {
    left: 16rem;
  }
  .sm\:col-start-2 {
    grid-column-start: 2;
  }
  .sm\:col-end-2 {
    grid-column-end: 2;
  }
  .sm\:mx-12 {
    margin-left: 3rem;
    margin-right: 3rem;
  }
  .sm\:mx-auto {
    margin-left: auto;
    margin-right: auto;
  }
  .sm\:mb-8 {
    margin-bottom: 2rem;
  }
  .sm\:ml-10 {
    margin-left: 2.5rem;
  }
  .sm\:ml-2 {
    margin-left: 0.5rem;
  }
  .sm\:mr-10 {
    margin-right: 2.5rem;
  }
  .sm\:mr-6 {
    margin-right: 1.5rem;
  }
  .sm\:mt-0 {
    margin-top: 0;
  }
  .sm\:mt-12 {
    margin-top: 3rem;
  }
  .sm\:mt-2 {
    margin-top: 0.5rem;
  }
  .sm\:mt-4 {
    margin-top: 1rem;
  }
  .sm\:mt-8 {
    margin-top: 2rem;
  }
  .sm\:block {
    display: block;
  }
  .sm\:flex {
    display: flex;
  }
  .sm\:w-1\/2 {
    width: 50%;
  }
  .sm\:w-14 {
    width: 3.5rem;
  }
  .sm\:w-80 {
    width: 20rem;
  }
  .sm\:w-auto {
    width: auto;
  }
  .sm\:max-w-\[130px\] {
    max-width: 130px;
  }
  .sm\:max-w-\[230px\] {
    max-width: 230px;
  }
  .sm\:max-w-none {
    max-width: none;
  }
  .sm\:max-w-sm {
    max-width: 24rem;
  }
  .sm\:flex-1 {
    flex: 1 1 0%;
  }
  .sm\:basis-1\/2 {
    flex-basis: 50%;
  }
  .sm\:grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .sm\:grid-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .sm\:flex-row {
    flex-direction: row;
  }
  .sm\:justify-end {
    justify-content: flex-end;
  }
  .sm\:justify-center {
    justify-content: center;
  }
  .sm\:gap-10 {
    gap: 2.5rem;
  }
  .sm\:bg-cover {
    background-size: cover;
  }
  .sm\:p-2 {
    padding: 0.5rem;
  }
  .sm\:p-3 {
    padding: 0.75rem;
  }
  .sm\:p-8 {
    padding: 2rem;
  }
  .sm\:px-0 {
    padding-left: 0;
    padding-right: 0;
  }
  .sm\:px-2 {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }
  .sm\:px-3 {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
  }
  .sm\:px-4 {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .sm\:px-8 {
    padding-left: 2rem;
    padding-right: 2rem;
  }
  .sm\:py-14 {
    padding-top: 3.5rem;
    padding-bottom: 3.5rem;
  }
  .sm\:py-3 {
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
  }
  .sm\:pb-0 {
    padding-bottom: 0;
  }
  .sm\:pb-16 {
    padding-bottom: 4rem;
  }
  .sm\:pl-0 {
    padding-left: 0;
  }
  .sm\:pt-0 {
    padding-top: 0;
  }
  .sm\:pt-2 {
    padding-top: 0.5rem;
  }
  .sm\:text-center {
    text-align: center;
  }
  .sm\:text-right {
    text-align: right;
  }
  .sm\:text-4xl {
    font-size: 2.25rem;
    line-height: 2.5rem;
  }
}
@media (min-width: 768px) {
  .md\:pointer-events-none {
    pointer-events: none;
  }
  .md\:absolute {
    position: absolute;
  }
  .md\:relative {
    position: relative;
  }
  .md\:bottom-0 {
    bottom: 0;
  }
  .md\:left-0 {
    left: 0;
  }
  .md\:right-0 {
    right: 0;
  }
  .md\:right-\[30px\] {
    right: 30px;
  }
  .md\:top-0 {
    top: 0;
  }
  .md\:top-56 {
    top: 14rem;
  }
  .md\:order-1 {
    order: 1;
  }
  .md\:order-none {
    order: 0;
  }
  .md\:col-span-2 {
    grid-column: span 2 / span 2;
  }
  .md\:float-none {
    float: none;
  }
  .md\:mx-0 {
    margin-left: 0;
    margin-right: 0;
  }
  .md\:mx-1 {
    margin-left: 0.25rem;
    margin-right: 0.25rem;
  }
  .md\:mx-2 {
    margin-left: 0.5rem;
    margin-right: 0.5rem;
  }
  .md\:mx-auto {
    margin-left: auto;
    margin-right: auto;
  }
  .md\:my-16 {
    margin-top: 4rem;
    margin-bottom: 4rem;
  }
  .md\:my-20 {
    margin-top: 5rem;
    margin-bottom: 5rem;
  }
  .md\:my-28 {
    margin-top: 7rem;
    margin-bottom: 7rem;
  }
  .md\:-mt-24 {
    margin-top: -6rem;
  }
  .md\:mb-0 {
    margin-bottom: 0;
  }
  .md\:mb-10 {
    margin-bottom: 2.5rem;
  }
  .md\:mb-2 {
    margin-bottom: 0.5rem;
  }
  .md\:mb-5 {
    margin-bottom: 1.25rem;
  }
  .md\:mb-8 {
    margin-bottom: 2rem;
  }
  .md\:mb-\[18px\] {
    margin-bottom: 18px;
  }
  .md\:ml-0 {
    margin-left: 0;
  }
  .md\:ml-32 {
    margin-left: 8rem;
  }
  .md\:ml-\[0px\] {
    margin-left: 0;
  }
  .md\:ml-\[5\%\] {
    margin-left: 5%;
  }
  .md\:mr-2 {
    margin-right: 0.5rem;
  }
  .md\:mr-6 {
    margin-right: 1.5rem;
  }
  .md\:mt-0 {
    margin-top: 0;
  }
  .md\:mt-14 {
    margin-top: 3.5rem;
  }
  .md\:mt-16 {
    margin-top: 4rem;
  }
  .md\:mt-4 {
    margin-top: 1rem;
  }
  .md\:mt-6 {
    margin-top: 1.5rem;
  }
  .md\:mt-8 {
    margin-top: 2rem;
  }
  .md\:mt-\[30px\] {
    margin-top: 30px;
  }
  .md\:line-clamp-6 {
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 6;
  }
  .md\:block {
    display: block;
  }
  .md\:flex {
    display: flex;
  }
  .md\:grid {
    display: grid;
  }
  .md\:hidden {
    display: none;
  }
  .md\:h-\[2\.375rem\] {
    height: 2.375rem;
  }
  .md\:h-\[248px\] {
    height: 248px;
  }
  .md\:h-\[613px\] {
    height: 613px;
  }
  .md\:h-auto {
    height: auto;
  }
  .md\:h-full {
    height: 100%;
  }
  .md\:min-h-0 {
    min-height: 0;
  }
  .md\:min-h-\[248px\] {
    min-height: 248px;
  }
  .md\:w-1\/3 {
    width: 33.333333%;
  }
  .md\:w-2\/3 {
    width: 66.666667%;
  }
  .md\:w-\[160px\] {
    width: 160px;
  }
  .md\:w-\[18\.75rem\] {
    width: 18.75rem;
  }
  .md\:w-\[200px\] {
    width: 200px;
  }
  .md\:w-\[30rem\] {
    width: 30rem;
  }
  .md\:w-\[45\%\] {
    width: 45%;
  }
  .md\:w-\[646px\] {
    width: 646px;
  }
  .md\:w-\[80\%\] {
    width: 80%;
  }
  .md\:w-\[95\%\] {
    width: 95%;
  }
  .md\:w-auto {
    width: auto;
  }
  .md\:w-full {
    width: 100%;
  }
  .md\:max-w-\[125px\] {
    max-width: 125px;
  }
  .md\:max-w-\[200px\] {
    max-width: 200px;
  }
  .md\:max-w-\[282px\] {
    max-width: 282px;
  }
  .md\:max-w-full {
    max-width: 100%;
  }
  .md\:max-w-lg {
    max-width: 32rem;
  }
  .md\:basis-1\/2 {
    flex-basis: 50%;
  }
  .md\:basis-1\/3 {
    flex-basis: 33.333333%;
  }
  .md\:basis-1\/4 {
    flex-basis: 25%;
  }
  .md\:basis-2\/3 {
    flex-basis: 66.666667%;
  }
  .md\:basis-3\/4 {
    flex-basis: 75%;
  }
  .md\:basis-full {
    flex-basis: 100%;
  }
  .md\:translate-x-0 {
    --tw-translate-x: 0px;
  }
  .md\:translate-x-0,
  .md\:translate-y-10 {
    transform: translate(var(--tw-translate-x), var(--tw-translate-y))
      rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y))
      scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
  }
  .md\:translate-y-10 {
    --tw-translate-y: 2.5rem;
  }
  .md\:grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .md\:grid-cols-\[25\%_75\%\] {
    grid-template-columns: 25% 75%;
  }
  .md\:flex-row {
    flex-direction: row;
  }
  .md\:flex-col {
    flex-direction: column;
  }
  .md\:flex-wrap {
    flex-wrap: wrap;
  }
  .md\:flex-nowrap {
    flex-wrap: nowrap;
  }
  .md\:items-center {
    align-items: center;
  }
  .md\:justify-start {
    justify-content: flex-start;
  }
  .md\:justify-end {
    justify-content: flex-end;
  }
  .md\:justify-between {
    justify-content: space-between;
  }
  .md\:gap-10 {
    gap: 2.5rem;
  }
  .md\:gap-12 {
    gap: 3rem;
  }
  .md\:gap-4 {
    gap: 1rem;
  }
  .md\:gap-6 {
    gap: 1.5rem;
  }
  .md\:gap-8 {
    gap: 2rem;
  }
  .md\:gap-y-10 {
    row-gap: 2.5rem;
  }
  .md\:gap-y-8 {
    row-gap: 2rem;
  }
  .md\:space-x-2 > :not([hidden]) ~ :not([hidden]) {
    --tw-space-x-reverse: 0;
    margin-right: calc(0.5rem * var(--tw-space-x-reverse));
    margin-left: calc(0.5rem * calc(1 - var(--tw-space-x-reverse)));
  }
  .md\:\!overflow-hidden {
    overflow: hidden !important;
  }
  .md\:rounded-none {
    border-radius: 0;
  }
  .md\:rounded-l-lg {
    border-top-left-radius: 0.5rem;
    border-bottom-left-radius: 0.5rem;
  }
  .md\:rounded-r-\[0px\] {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
  }
  .md\:border-r {
    border-right-width: 1px;
  }
  .md\:bg-sky-dawn-light {
    background-color: var(--dawn-light);
  }
  .md\:bg-\[length\:35\%_100px\] {
    background-size: 35% 100px;
  }
  .md\:bg-cover {
    background-size: cover;
  }
  .md\:p-0 {
    padding: 0;
  }
  .md\:p-2 {
    padding: 0.5rem;
  }
  .md\:px-0 {
    padding-left: 0;
    padding-right: 0;
  }
  .md\:px-10 {
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
  .md\:px-12 {
    padding-left: 3rem;
    padding-right: 3rem;
  }
  .md\:px-2 {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }
  .md\:px-24 {
    padding-left: 6rem;
    padding-right: 6rem;
  }
  .md\:px-4 {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .md\:px-5 {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }
  .md\:px-6 {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
  .md\:px-8 {
    padding-left: 2rem;
    padding-right: 2rem;
  }
  .md\:px-9 {
    padding-left: 2.25rem;
    padding-right: 2.25rem;
  }
  .md\:px-\[15px\] {
    padding-left: 15px;
    padding-right: 15px;
  }
  .md\:px-\[25px\] {
    padding-left: 25px;
    padding-right: 25px;
  }
  .md\:py-20 {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }
  .md\:py-4 {
    padding-top: 1rem;
    padding-bottom: 1rem;
  }
  .md\:py-6 {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
  }
  .md\:py-8 {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }
  .md\:py-\[120px\] {
    padding-top: 120px;
    padding-bottom: 120px;
  }
  .md\:py-\[14px\] {
    padding-top: 14px;
    padding-bottom: 14px;
  }
  .md\:py-\[60px\] {
    padding-top: 60px;
    padding-bottom: 60px;
  }
  .md\:pb-24 {
    padding-bottom: 6rem;
  }
  .md\:pb-4 {
    padding-bottom: 1rem;
  }
  .md\:pb-7 {
    padding-bottom: 1.75rem;
  }
  .md\:pb-\[40px\] {
    padding-bottom: 40px;
  }
  .md\:pl-0 {
    padding-left: 0;
  }
  .md\:pl-10 {
    padding-left: 2.5rem;
  }
  .md\:pl-4 {
    padding-left: 1rem;
  }
  .md\:pr-0 {
    padding-right: 0;
  }
  .md\:pr-4 {
    padding-right: 1rem;
  }
  .md\:pt-0 {
    padding-top: 0;
  }
  .md\:pt-4 {
    padding-top: 1rem;
  }
  .md\:pt-5 {
    padding-top: 1.25rem;
  }
  .md\:pt-7 {
    padding-top: 1.75rem;
  }
  .md\:text-left {
    text-align: left;
  }
  .md\:text-2xl {
    font-size: 1.5rem;
    line-height: 2rem;
  }
  .md\:text-3xl {
    font-size: 1.875rem;
    line-height: 2.25rem;
  }
  .md\:text-5xl {
    font-size: 3rem;
    line-height: 1;
  }
  .md\:text-6xl {
    font-size: 3.75rem;
    line-height: 1;
  }
  .md\:text-\[64px\] {
    font-size: 64px;
  }
  .md\:text-base {
    font-size: 1rem;
    line-height: 1.5rem;
  }
  .md\:text-lg {
    font-size: 1.125rem;
    line-height: 1.75rem;
  }
  .md\:text-xl {
    font-size: 1.25rem;
    line-height: 1.75rem;
  }
  .md\:font-extrabold {
    font-weight: 800;
  }
  .md\:leading-\[25px\] {
    line-height: 25px;
  }
  .md\:leading-\[50px\] {
    line-height: 50px;
  }
  .md\:text-white {
    color: var(--white);
  }
  .md\:opacity-0 {
    opacity: 0;
  }
  .md\:shadow-none {
    --tw-shadow: 0 0 #0000;
    --tw-shadow-colored: 0 0 #0000;
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000),
      var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
  }
  .md\:last\:mt-6:last-child {
    margin-top: 1.5rem;
  }
  .group:hover .md\:group-hover\:pointer-events-auto {
    pointer-events: auto;
  }
  .group:hover .md\:group-hover\:bottom-10 {
    bottom: 2.5rem;
  }
  .group:hover .md\:group-hover\:flex {
    display: flex;
  }
  .group:hover .md\:group-hover\:translate-y-0 {
    --tw-translate-y: 0px;
    transform: translate(var(--tw-translate-x), var(--tw-translate-y))
      rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y))
      scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
  }
  .group:hover .md\:group-hover\:opacity-0 {
    opacity: 0;
  }
  .group:hover .md\:group-hover\:opacity-100 {
    opacity: 1;
  }
}
@media (min-width: 1024px) {
  .lg\:-left-\[23\.86rem\] {
    left: -23.86rem;
  }
  .lg\:-top-\[15\.28rem\] {
    top: -15.28rem;
  }
  .lg\:-top-\[3\.56rem\] {
    top: -3.56rem;
  }
  .lg\:-top-\[8\.98rem\] {
    top: -8.98rem;
  }
  .lg\:left-\[1\.3rem\] {
    left: 1.3rem;
  }
  .lg\:left-\[26\.21rem\] {
    left: 26.21rem;
  }
  .lg\:left-auto {
    left: auto;
  }
  .lg\:right-10 {
    right: 2.5rem;
  }
  .lg\:top-0 {
    top: 0;
  }
  .lg\:order-none {
    order: 0;
  }
  .lg\:-mt-2 {
    margin-top: -0.5rem;
  }
  .lg\:-mt-20 {
    margin-top: -5rem;
  }
  .lg\:mb-0 {
    margin-bottom: 0;
  }
  .lg\:mb-12 {
    margin-bottom: 3rem;
  }
  .lg\:mb-14 {
    margin-bottom: 3.5rem;
  }
  .lg\:mb-7 {
    margin-bottom: 1.75rem;
  }
  .lg\:mb-\[0px\] {
    margin-bottom: 0;
  }
  .lg\:mb-\[90px\] {
    margin-bottom: 90px;
  }
  .lg\:ml-72 {
    margin-left: 18rem;
  }
  .lg\:ml-\[3px\] {
    margin-left: 3px;
  }
  .lg\:mr-6 {
    margin-right: 1.5rem;
  }
  .lg\:mr-8 {
    margin-right: 2rem;
  }
  .lg\:mt-0 {
    margin-top: 0;
  }
  .lg\:mt-12 {
    margin-top: 3rem;
  }
  .lg\:mt-14 {
    margin-top: 3.5rem;
  }
  .lg\:mt-2 {
    margin-top: 0.5rem;
  }
  .lg\:mt-\[-250px\] {
    margin-top: -250px;
  }
  .lg\:mt-\[0px\] {
    margin-top: 0;
  }
  .lg\:mt-\[10x\] {
    margin-top: 10x;
  }
  .lg\:mt-\[3px\] {
    margin-top: 3px;
  }
  .lg\:mt-\[50px\] {
    margin-top: 50px;
  }
  .lg\:block {
    display: block;
  }
  .lg\:flex {
    display: flex;
  }
  .lg\:table {
    display: table;
  }
  .lg\:table-cell {
    display: table-cell;
  }
  .lg\:hidden {
    display: none;
  }
  .lg\:h-4 {
    height: 1rem;
  }
  .lg\:h-6 {
    height: 1.5rem;
  }
  .lg\:h-\[112\.56rem\] {
    height: 112.56rem;
  }
  .lg\:h-\[380px\] {
    height: 380px;
  }
  .lg\:h-\[71\.25rem\] {
    height: 71.25rem;
  }
  .lg\:h-\[77\.75rem\] {
    height: 77.75rem;
  }
  .lg\:h-\[800px\] {
    height: 800px;
  }
  .lg\:h-full {
    height: 100%;
  }
  .lg\:min-h-full {
    min-height: 100%;
  }
  .lg\:w-1\/3 {
    width: 33.333333%;
  }
  .lg\:w-11 {
    width: 2.75rem;
  }
  .lg\:w-2\/3 {
    width: 66.666667%;
  }
  .lg\:w-4 {
    width: 1rem;
  }
  .lg\:w-4\/5 {
    width: 80%;
  }
  .lg\:w-40 {
    width: 10rem;
  }
  .lg\:w-6 {
    width: 1.5rem;
  }
  .lg\:w-6\/12 {
    width: 50%;
  }
  .lg\:w-\[124\.88rem\] {
    width: 124.88rem;
  }
  .lg\:w-\[210px\] {
    width: 210px;
  }
  .lg\:w-\[235px\] {
    width: 235px;
  }
  .lg\:w-\[24\.44rem\] {
    width: 24.44rem;
  }
  .lg\:w-\[33\%\] {
    width: 33%;
  }
  .lg\:w-\[380px\] {
    width: 380px;
  }
  .lg\:w-\[56\.25rem\] {
    width: 56.25rem;
  }
  .lg\:w-\[56\.31rem\] {
    width: 56.31rem;
  }
  .lg\:w-\[57\.26rem\] {
    width: 57.26rem;
  }
  .lg\:w-\[71\.28rem\] {
    width: 71.28rem;
  }
  .lg\:w-\[80px\] {
    width: 80px;
  }
  .lg\:w-auto {
    width: auto;
  }
  .lg\:w-full {
    width: 100%;
  }
  .lg\:max-w-\[300px\] {
    max-width: 300px;
  }
  .lg\:max-w-\[410px\] {
    max-width: 410px;
  }
  .lg\:max-w-\[50\%\] {
    max-width: 50%;
  }
  .lg\:max-w-\[500px\] {
    max-width: 500px;
  }
  .lg\:max-w-\[65\%\] {
    max-width: 65%;
  }
  .lg\:max-w-lg {
    max-width: 32rem;
  }
  .lg\:max-w-sm {
    max-width: 24rem;
  }
  .lg\:max-w-xl {
    max-width: 36rem;
  }
  .lg\:flex-none {
    flex: none;
  }
  .lg\:basis-1\/2 {
    flex-basis: 50%;
  }
  .lg\:basis-1\/3 {
    flex-basis: 33.333333%;
  }
  .lg\:basis-2\/3 {
    flex-basis: 66.666667%;
  }
  .lg\:grid-cols-1 {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
  .lg\:grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .lg\:grid-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .lg\:grid-cols-5 {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
  .lg\:flex-row {
    flex-direction: row;
  }
  .lg\:flex-col {
    flex-direction: column;
  }
  .lg\:items-start {
    align-items: flex-start;
  }
  .lg\:items-end {
    align-items: flex-end;
  }
  .lg\:justify-start {
    justify-content: flex-start;
  }
  .lg\:justify-end {
    justify-content: flex-end;
  }
  .lg\:justify-between {
    justify-content: space-between;
  }
  .lg\:gap-11 {
    gap: 2.75rem;
  }
  .lg\:gap-12 {
    gap: 3rem;
  }
  .lg\:gap-5 {
    gap: 1.25rem;
  }
  .lg\:gap-8 {
    gap: 2rem;
  }
  .lg\:gap-y-14 {
    row-gap: 3.5rem;
  }
  .lg\:gap-y-9 {
    row-gap: 2.25rem;
  }
  .lg\:self-end {
    align-self: flex-end;
  }
  .lg\:border-t-0 {
    border-top-width: 0;
  }
  .lg\:bg-sand {
    background-color: var(--sand);
  }
  .lg\:bg-opacity-0 {
    --tw-bg-opacity: 0;
  }
  .lg\:bg-contain {
    background-size: contain;
  }
  .lg\:bg-right {
    background-position: 100%;
  }
  .lg\:px-0 {
    padding-left: 0;
    padding-right: 0;
  }
  .lg\:px-1 {
    padding-left: 0.25rem;
    padding-right: 0.25rem;
  }
  .lg\:px-10 {
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
  .lg\:px-12 {
    padding-left: 3rem;
    padding-right: 3rem;
  }
  .lg\:px-8 {
    padding-left: 2rem;
    padding-right: 2rem;
  }
  .lg\:px-\[52px\] {
    padding-left: 52px;
    padding-right: 52px;
  }
  .lg\:py-0 {
    padding-top: 0;
    padding-bottom: 0;
  }
  .lg\:py-16 {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }
  .lg\:py-30 {
    padding-top: 7.5rem;
    padding-bottom: 7.5rem;
  }
  .lg\:py-4 {
    padding-top: 1rem;
    padding-bottom: 1rem;
  }
  .lg\:py-6 {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
  }
  .lg\:py-\[140px\] {
    padding-top: 140px;
    padding-bottom: 140px;
  }
  .lg\:py-\[60px\] {
    padding-top: 60px;
    padding-bottom: 60px;
  }
  .lg\:pb-0 {
    padding-bottom: 0;
  }
  .lg\:pb-30 {
    padding-bottom: 7.5rem;
  }
  .lg\:pb-9 {
    padding-bottom: 2.25rem;
  }
  .lg\:pb-\[11\.75rem\] {
    padding-bottom: 11.75rem;
  }
  .lg\:pl-0 {
    padding-left: 0;
  }
  .lg\:pl-10 {
    padding-left: 2.5rem;
  }
  .lg\:pl-4 {
    padding-left: 1rem;
  }
  .lg\:pr-10 {
    padding-right: 2.5rem;
  }
  .lg\:pr-16 {
    padding-right: 4rem;
  }
  .lg\:pr-20 {
    padding-right: 5rem;
  }
  .lg\:pr-8 {
    padding-right: 2rem;
  }
  .lg\:pr-\[2\%\] {
    padding-right: 2%;
  }
  .lg\:pt-0 {
    padding-top: 0;
  }
  .lg\:pt-16 {
    padding-top: 4rem;
  }
  .lg\:pt-30 {
    padding-top: 7.5rem;
  }
  .lg\:pt-4 {
    padding-top: 1rem;
  }
  .lg\:pt-5 {
    padding-top: 1.25rem;
  }
  .lg\:pt-\[11\.75rem\] {
    padding-top: 11.75rem;
  }
  .lg\:pt-\[6\.25rem\] {
    padding-top: 6.25rem;
  }
  .lg\:pt-\[7\.5rem\] {
    padding-top: 7.5rem;
  }
  .lg\:text-center {
    text-align: center;
  }
  .lg\:text-right {
    text-align: right;
  }
  .lg\:text-3xl {
    font-size: 1.875rem;
    line-height: 2.25rem;
  }
  .lg\:text-4xl {
    font-size: 2.25rem;
    line-height: 2.5rem;
  }
  .lg\:text-5xl {
    font-size: 3rem;
    line-height: 1;
  }
  .lg\:text-6xl {
    font-size: 3.75rem;
    line-height: 1;
  }
  .lg\:text-7xl {
    font-size: 4.5rem;
    line-height: 1;
  }
  .lg\:text-8xl {
    font-size: 6rem;
    line-height: 1;
  }
  .lg\:text-\[1\.625rem\] {
    font-size: 1.625rem;
  }
  .lg\:text-\[2\.5rem\] {
    font-size: 2.5rem;
  }
  .lg\:text-\[2\.75rem\] {
    font-size: 2.75rem;
  }
  .lg\:text-\[3\.5rem\] {
    font-size: 3.5rem;
  }
  .lg\:text-base {
    font-size: 1rem;
    line-height: 1.5rem;
  }
  .lg\:text-lg {
    font-size: 1.125rem;
    line-height: 1.75rem;
  }
  .lg\:text-sm {
    font-size: 0.875rem;
    line-height: 1.25rem;
  }
  .lg\:text-xl {
    font-size: 1.25rem;
    line-height: 1.75rem;
  }
  .lg\:leading-5 {
    line-height: 1.25rem;
  }
  .lg\:leading-lg {
    line-height: var(--line-height-lg);
  }
  .lg\:leading-md {
    line-height: var(--line-height-md);
  }
  .lg\:leading-xl {
    line-height: var(--line-height-xl);
  }
  .lg\:tracking-normal {
    letter-spacing: 0;
  }
  .last\:lg\:pb-24:last-child {
    padding-bottom: 6rem;
  }
  @media not all and (min-width: 1536px) {
    .lg\:max-2xl\:-right-\[29\.94rem\] {
      right: -29.94rem;
    }
  }
  @media not all and (min-width: 1280px) {
    .lg\:max-xl\:\!text-lg {
      font-size: 1.125rem !important;
      line-height: 1.75rem !important;
    }
  }
}
@media (min-width: 1280px) {
  .xl\:-left-16 {
    left: -4rem;
  }
  .xl\:-right-16 {
    right: -4rem;
  }
  .xl\:bottom-\[-50\%\] {
    bottom: -50%;
  }
  .xl\:mx-0 {
    margin-left: 0;
    margin-right: 0;
  }
  .xl\:mx-2 {
    margin-left: 0.5rem;
    margin-right: 0.5rem;
  }
  .xl\:mx-auto {
    margin-left: auto;
    margin-right: auto;
  }
  .xl\:mt-12 {
    margin-top: 3rem;
  }
  .xl\:block {
    display: block;
  }
  .xl\:hidden {
    display: none;
  }
  .xl\:h-3\/4 {
    height: 75%;
  }
  .xl\:h-\[430px\] {
    height: 430px;
  }
  .xl\:w-1\/2 {
    width: 50%;
  }
  .xl\:w-2\/3 {
    width: 66.666667%;
  }
  .xl\:w-52 {
    width: 13rem;
  }
  .xl\:w-\[40\%\] {
    width: 40%;
  }
  .xl\:w-\[430px\] {
    width: 430px;
  }
  .xl\:w-\[60\%\] {
    width: 60%;
  }
  .xl\:max-w-3xl {
    max-width: 48rem;
  }
  .xl\:max-w-\[60\%\] {
    max-width: 60%;
  }
  .xl\:max-w-\[67\%\] {
    max-width: 67%;
  }
  .xl\:max-w-\[90\%\] {
    max-width: 90%;
  }
  .xl\:max-w-xl {
    max-width: 36rem;
  }
  .xl\:basis-1\/3 {
    flex-basis: 33.333333%;
  }
  .xl\:basis-2\/3 {
    flex-basis: 66.666667%;
  }
  .xl\:grid-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .xl\:flex-row {
    flex-direction: row;
  }
  .xl\:justify-between {
    justify-content: space-between;
  }
  .xl\:gap-10 {
    gap: 2.5rem;
  }
  .xl\:gap-16 {
    gap: 4rem;
  }
  .xl\:gap-x-6 {
    column-gap: 1.5rem;
  }
  .xl\:px-0 {
    padding-left: 0;
    padding-right: 0;
  }
  .xl\:px-12 {
    padding-left: 3rem;
    padding-right: 3rem;
  }
  .xl\:px-20 {
    padding-left: 5rem;
    padding-right: 5rem;
  }
  .xl\:px-24 {
    padding-left: 6rem;
    padding-right: 6rem;
  }
  .xl\:px-36 {
    padding-left: 9rem;
    padding-right: 9rem;
  }
  .xl\:px-6 {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
  .xl\:pb-4 {
    padding-bottom: 1rem;
  }
  .xl\:leading-6 {
    line-height: 1.5rem;
  }
}
@media (min-width: 1440px) {
  .\31\.5xl\:p-9 {
    padding: 2.25rem;
  }
  .\31\.5xl\:px-51 {
    padding-left: 12.75rem;
    padding-right: 12.75rem;
  }
  .\31\.5xl\:px-\[6\.75rem\] {
    padding-left: 6.75rem;
    padding-right: 6.75rem;
  }
}
@media (min-width: 1536px) {
  .\32xl\:top-\[0\%\] {
    top: 0;
  }
  .\32xl\:max-h-\[75\%\] {
    max-height: 75%;
  }
  .\32xl\:max-w-4xl {
    max-width: 56rem;
  }
  .\32xl\:px-24 {
    padding-left: 6rem;
    padding-right: 6rem;
  }
  .\32xl\:px-3 {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
  }
}
@media (orientation: landscape) {
  .landscape\:overflow-scroll {
    overflow: scroll;
  }
}
