@layer reset {
  :not(:-webkit-any(html, iframe, canvas, img, svg, video, audio, svg *, symbol *)) {
    all: unset;
    display: revert;
  }

  :not(:-moz-any(html, iframe, canvas, img, svg, video, audio, svg *, symbol *)) {
    all: unset;
    display: revert;
  }

  :not(:is(html, iframe, canvas, img, svg, video, audio, svg *, symbol *)) {
    all: unset;
    display: revert;
  }

  *, :before, :after {
    box-sizing: border-box;
  }

  html {
    -moz-text-size-adjust: none;
    text-size-adjust: none;
  }

  body, h1, h2, h3, h4, p, figure, blockquote, dl, dd {
    margin: 0;
  }

  ul[role="list"], ol[role="list"], menu {
    list-style: none;
  }

  body {
    min-height: 100vh;
    line-height: 1.5;
  }

  h1, h2, h3, h4, button, input, label {
    line-height: 1.1;
  }

  h1, h2, h3, h4 {
    text-wrap: balance;
  }

  a, button {
    cursor: revert;
  }

  a:not([class]) {
    color: currentColor;
    text-decoration-skip-ink: auto;
  }

  img, picture {
    max-block-size: 100%;
    max-inline-size: 100%;
  }

  table {
    border-collapse: collapse;
  }

  input, textarea {
    -webkit-user-select: auto;
    user-select: auto;
  }

  textarea {
    white-space: revert;
  }

  input, button, textarea, select {
    font: inherit;
  }

  textarea:not([rows]) {
    min-height: 10em;
  }

  meter {
    -webkit-appearance: revert;
    -moz-appearance: revert;
    appearance: revert;
  }

  :where(pre) {
    all: revert;
  }

  ::placeholder {
    color: unset;
  }

  ::marker {
    content: initial;
  }

  :where([hidden]) {
    display: none;
  }

  :where([contenteditable]:not([contenteditable="false"])) {
    -webkit-user-select: auto;
    user-select: auto;
    -webkit-line-break: after-white-space;
    line-break: auto;
    overflow-wrap: break-word;
    -moz-user-modify: read-write;
    -webkit-user-modify: read-write;
  }

  :where([draggable="true"]) {
    -webkit-user-drag: element;
  }

  :where(dialog:modal) {
    all: revert;
  }

  :target {
    scroll-margin-block: 5ex;
  }
}
body {
  font-family: var(--font-family);
  font-size: var(--font-size);
  color: var(--colors-text);
  background-color: var(--colors-background);
  -webkit-font-smoothing: antialiased;
  -moz-font-smoothing: grayscale;
  margin: 0;
  padding: 0;
}

#app-root {
  background-color: var(--colors-background-fallback);
  background-image: image-set(var(--background-src-set-avif) 1dppx type("image/avif"), var(--background-src-set-webp) 1dppx type("image/webp"), var(--background-src-set-jpg) 1dppx type("image/jpeg"));
  background-position: center;
  background-size: cover;
  background-attachment: fixed;
  min-height: 100dvh;
}
@layer components {
  .Container-module_container {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
  }
}
.Footer-module_footer {
  color: var(--colors-text-contrast);
  padding: max(1rem, min(3dvw, 3rem)) 0 1.5rem;
}

.Footer-module_footer a:before {
  display: none;
}

.Footer-module_navigations {
  flex-wrap: wrap;
  gap: max(1rem, min(5dvw, 3rem));
  padding: 0 max(1rem, min(2dvw, 3rem));
  display: flex;
}

.Footer-module_socialsNav {
  margin-top: 3rem;
}

.Footer-module_socialsList {
  flex-direction: row;
  justify-content: center;
  gap: 2rem;
  width: 100%;
  display: flex;
}

.Footer-module_copyright {
  text-align: center;
  margin: 3rem auto 0;
  font-size: .8rem;
  font-weight: 500;
  display: block;
}
@layer components {
  .Link-module_link {
    cursor: pointer;
    position: relative;
  }

  .Link-module_link:before {
    content: "";
    height: 2px;
    position: absolute;
    bottom: 0;
  }

  .Link-module_link:after {
    content: "";
    height: 2px;
    position: absolute;
    bottom: 0;
  }

  .Link-module_link:before {
    background-color: var(--colors-text);
    width: 100%;
    left: 0;
  }

  .Link-module_link:after {
    background-color: var(--colors-link);
    width: 0%;
    transition: width .2s ease-in-out;
    right: 0;
  }

  .Link-module_link:hover {
    color: var(--colors-link);
  }

  .Link-module_link:focus-visible {
    color: var(--colors-link);
    outline-offset: .1rem;
    outline: 2px solid orange;
  }

  .Link-module_link:hover:after {
    right: unset;
    width: 100%;
    left: 0;
  }

  .Link-module_link:focus-visible:after {
    right: unset;
    width: 100%;
    left: 0;
  }

  .Link-module_link:has(svg):before {
    display: none;
  }
}
.LinksList-module_listItem:not(:last-of-type) {
  margin-bottom: 1rem;
}

.LinksList-module_listIcons {
  gap: 1rem;
  display: flex;
}
.DisclosureContent-module_content {
  grid-template-rows: 0fr;
  margin-bottom: 0;
  transition: grid-template-rows .2s linear, margin-bottom .2s linear;
  display: grid;
}

.DisclosureContent-module_content[data-is-expanded="true"] {
  grid-template-rows: 1fr;
  margin-bottom: 1rem;
}

.DisclosureContent-module_container {
  overflow: hidden;
}
.DisclosureTrigger-module_trigger {
  cursor: pointer;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  min-height: 3rem;
  margin-bottom: 0;
  transition: margin-bottom .2s linear;
  display: flex;
}

.DisclosureTrigger-module_trigger:focus-visible {
  outline-offset: .2rem;
  outline: 2px solid orange;
}

.DisclosureTrigger-module_trigger[data-is-expanded="true"] {
  margin-bottom: 1rem;
}

.DisclosureTrigger-module_icon {
  width: 1.5rem;
  height: 1.5rem;
  transition: transform .2s linear;
}

.DisclosureTrigger-module_icon[data-is-expanded="true"] {
  transform: rotateZ(45deg);
}
.NavigationSection-module_navigationDisclosure {
  width: 100%;
}

.NavigationSection-module_heading {
  width: 100%;
  font-size: 1.5rem;
  font-weight: 700;
}

.NavigationSection-module_navigation .NavigationSection-module_heading {
  margin-bottom: 1rem;
}
.ColorSchemeSelectorTrigger-module_trigger {
  aspect-ratio: 1;
  justify-content: center;
  align-items: center;
  height: 100%;
  display: flex;
}

.ColorSchemeSelectorTrigger-module_trigger > svg {
  width: 1rem;
  height: 1rem;
}
.Header-module_header {
  z-index: 1000;
  width: 100%;
  height: 4rem;
  transition: background-color .1s ease-in-out, color .2s ease-in-out;
}

.Header-module_header[data-is-fixed="true"] {
  color: var(--colors-text);
  background-color: var(--colors-card-background);
  position: fixed;
  top: 0;
  left: 0;
  box-shadow: 0 4px 4px #00000040;
}

.Header-module_header[data-is-fixed="false"] {
  color: var(--colors-text-contrast);
  background-color: #0000;
  position: absolute;
  bottom: 0;
  left: 0;
}

.Header-module_container {
  justify-content: space-between;
  align-items: center;
  height: 100%;
  padding: 0 1.5rem;
  display: flex;
}

.Header-module_heading {
  text-transform: uppercase;
  font-size: max(1rem, min(2dvw, 2rem));
  font-weight: 700;
}
@layer components {
  .Card-module_card {
    background-color: var(--colors-card-background);
    border: 1px solid;
    border-color: var(--colors-card-border);
    border-radius: 1rem;
  }
}
.AdvantageCard-module_card {
  align-items: center;
  gap: 1.5rem;
  width: 18.75rem;
  padding: 1.5rem;
  font-weight: 500;
  line-height: 1.2;
  display: flex;
}
@layer components {
  .Marquee-module_list {
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin: 0;
    padding-block-start: 1rem;
    padding-block-end: 1rem;
    padding-inline-start: 0;
    padding-inline-end: 0;
    display: flex;
  }

  .Marquee-module_list > li {
    flex: 0 0 fit-content;
  }

  .Marquee-module_marquee {
    max-width: 100dvw;
  }

  .Marquee-module_marquee[data-animated="true"] {
    scrollbar-width: none;
    overflow: -moz-scrollbars-none;
    -ms-overflow-style: none;
    overflow-x: scroll;
    -webkit-mask: linear-gradient(90deg, #0000, #fff 10% 90%, #0000);
    mask: linear-gradient(90deg, #0000, #fff 10% 90%, #0000);
  }

  .Marquee-module_marquee[data-animated="true"]::-webkit-scrollbar {
    display: none;
    width: 0 !important;
    height: 0 !important;
  }

  .Marquee-module_marquee[data-animated="true"] > .Marquee-module_list {
    animation-name: Marquee-module_scroll;
    animation-duration: var(--animation-duration, 60s);
    animation-play-state: var(--animation-play-state, running);
    animation-timing-function: linear;
    animation-iteration-count: infinite;
    animation-direction: var(--animation-direction, normal);
    flex-wrap: nowrap;
    width: max-content;
  }

  @keyframes Marquee-module_scroll {
    to {
      translate: calc(-50% - .5rem);
    }
  }
}
@layer components {
  .Section-module_section {
    content-visibility: auto;
    contain-intrinsic-size: 1000px;
    background-color: var(--colors-background);
    padding: 3rem max(1rem, min(2dvw, 3rem));
  }

  .Section-module_heading {
    margin-bottom: max(1rem, min(5dvw, 3rem));
    font-size: max(2.5rem, min(8dvw, 4rem));
    font-weight: 700;
  }
}
.PostCard-module_card {
  border-radius: unset;
  outline-offset: .2rem;
  outline: 5px solid #0000;
  flex-direction: column;
  justify-content: space-between;
  gap: 1rem;
  transition: outline-color .2s ease-in-out;
  display: flex;
  position: relative;
  overflow: hidden;
}

.PostCard-module_card:focus-within {
  outline-color: var(--colors-text);
}

.PostCard-module_card:has(a:hover) {
  outline-color: var(--colors-text);
}

.PostCard-module_link {
  position: unset;
  width: 100%;
  height: 100%;
}

.PostCard-module_link:after {
  display: none;
}

.PostCard-module_link:before {
  z-index: 1;
  width: unset;
  height: unset;
  background-color: #0000;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}

.PostCard-module_cover {
  aspect-ratio: 1;
  max-inline-size: unset;
  max-block-size: unset;
  object-fit: cover;
  width: 100%;
}

.PostCard-module_tagList {
  flex-wrap: wrap;
  gap: .5rem;
  padding: 0 1rem;
  display: flex;
}

.PostCard-module_tag {
  color: var(--colors-text-invert);
  background: var(--colors-text);
  border-radius: .5rem;
  padding: .25rem .5rem;
  font-size: .8rem;
}

.PostCard-module_title {
  padding: 0 1rem;
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.2;
}

.PostCard-module_footer {
  opacity: .7;
  justify-content: space-between;
  gap: 1rem;
  margin-top: auto;
  padding: 0 1rem 1rem;
  display: flex;
}

.PostCard-module_viewsIcon {
  width: 1rem;
  height: .8rem;
  margin-right: .2rem;
}
.Blog-module_grid {
  grid-template-columns: repeat(auto-fit, minmax(18rem, 1fr));
  grid-auto-rows: 1fr;
  gap: max(1rem, min(2dvw, 2rem));
  display: grid;
}

.Blog-module_header {
  justify-content: space-between;
  align-items: center;
  margin-bottom: max(1rem, min(5dvw, 3rem));
  display: flex;
}

.Blog-module_heading {
  margin-bottom: 0;
}

.Blog-module_link {
  justify-content: space-between;
  align-items: center;
  font-size: 1.5rem;
  display: flex;
}

.Blog-module_linkIcon {
  width: 2rem;
  height: 1rem;
}
.BrandCard-module_card {
  width: 14.75rem;
  min-width: 14.75rem;
  padding: 2rem 1.5rem;
}

.BrandCard-module_image {
  width: 100%;
  height: 100%;
}

.BrandCard-module_image[data-is-inverted="true"] {
  filter: grayscale() invert();
}

.BrandCard-module_image[data-is-inverted="false"] {
  filter: grayscale();
}
.Subscribe-module_container {
  text-align: center;
}

.Subscribe-module_heading {
  margin-bottom: 0;
  font-size: max(1.5rem, min(8dvw, 2.5rem));
}

.Subscribe-module_description {
  opacity: .7;
  margin: 0 0 3rem;
  line-height: 1.5;
}
.UsefulInformation-module_section {
  background-color: var(--colors-background-pale);
}

.UsefulInformation-module_container {
  flex-wrap: wrap;
  gap: 0 1rem;
  display: flex;
}

.UsefulInformation-module_heading {
  flex-basis: 100%;
}

.UsefulInformation-module_navigation {
  flex: 1;
  min-width: 20rem;
  margin-bottom: 1rem;
}

.UsefulInformation-module_list {
  line-height: 1.4;
}

.UsefulInformation-module_listItem {
  display: inline-block;
}

.UsefulInformation-module_listItem:not(:last-of-type) {
  margin-right: 1.5rem;
}

.UsefulInformation-module_link {
  white-space: nowrap;
  font-size: 1.25rem;
}

.UsefulInformation-module_description {
  opacity: .7;
  flex: 1;
  min-width: 20rem;
  font-size: 1.25rem;
  line-height: 1.4;
}
