﻿/*
 * 使用方法：
 * 1. 本样式与 download.html、header.css 配套使用。
 * 2. 桌面端以下载中心 PSD 的 1920 × 2253 画布为还原基准。
 * 3. 980px 以下切换为移动端内容流布局。
 */
:root {
  --download-blue: #138cff;
  --pagination-blue: #087dff;
  --download-blue-soft: #54a9f5;
  --download-dark: #4b5a65;
  --download-text: #222;
  --download-muted: #777;
  --download-surface: #f2f2f6;
  --download-container: 1404px;
  --header-height: 80px;
  --page-x: clamp(2rem, 8.35vw, 10rem);
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
  background: #fff;
}

body {
  min-height: 100%;
  margin: 0;
  overflow-x: hidden;
  color: var(--download-text);
  background: #fff;
  font-family: Arial, "Microsoft YaHei", "PingFang SC", sans-serif;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input {
  font: inherit;
}

button {
  cursor: pointer;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  border: 0;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

.download-container {
  position: relative;
  width: min(calc(100% - 4rem), var(--download-container));
  margin: 0 auto;
}

.download-hero {
  position: relative;
  isolation: isolate;
  height: 400px;
  overflow: hidden;
  color: #fff;
  background-color: #031334;
}

.download-hero-image {
  position: absolute;
  inset: 0;
  z-index: -1;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-copy {
  height: 100%;
  padding-top: 245px;
}

.hero-copy img {
  width: 130px;
  margin-bottom: 26px;
}

.hero-copy p {
  margin: 0 0 20px;
  font-size: 18px;
  line-height: 1;
  font-style: italic;
  font-weight: 800;
  letter-spacing: -0.4px;
}

.hero-copy h1 {
  margin: 0;
  font-size: 42px;
  line-height: 1;
  font-weight: 500;
}

.hero-copy h1 span {
  margin-left: 10px;
  font-size: 17px;
  font-weight: 700;
}

.filter-section {
  /*height: 206px;*/
  padding: 30px 0;
  background: #fff;
}

.filter-form {
  display: grid;
  grid-template-columns: minmax(294px, 1fr) repeat(3, minmax(0, 278px)) 120px;
  gap: 18px;
  align-items: end;
  padding-top: 68px;
}

.filter-form[hidden],
.product-header[hidden] {
  display: none;
}

.filter-field {
  display: grid;
  gap: 9px;
  min-width: 0;
  color: #666;
  font-size: 16px;
}

.search-field {
  width: min(294px, 100%);
}

.field-control {
  width: 100%;
  height: 53px;
  border: 1px solid #b4b7bd;
  border-radius: 3px;
  background: #fff;
}

.field-control {
  position: relative;
  display: block;
}

.field-control input {
  width: 100%;
  height: 100%;
  padding: 0 50px 0 24px;
  border: 0;
  outline: 0;
  color: #555;
  background: transparent;
}

.field-control input::placeholder {
  color: #777;
  opacity: 1;
}

.search-submit {
  position: absolute;
  top: 0;
  right: 0;
  width: 53px;
  height: 53px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.search-submit i {
  position: absolute;
  top: 16px;
  right: 17px;
  width: 17px;
  height: 17px;
  border: 2px solid #c7cad0;
  border-radius: 50%;
  pointer-events: none;
}

.search-submit i::after {
  content: "";
  position: absolute;
  right: -5px;
  bottom: -3px;
  width: 7px;
  height: 2px;
  background: #c7cad0;
  transform: rotate(48deg);
}

.search-submit:focus-visible {
  border-radius: 3px;
  outline: 2px solid rgba(19, 140, 255, 0.35);
  outline-offset: -2px;
}

.field-control:focus-within {
  border-color: var(--download-blue);
  outline: 2px solid rgba(19, 140, 255, 0.16);
  outline-offset: 1px;
}

.custom-select {
  position: relative;
  width: 100%;
}

.custom-select-trigger {
  position: relative;
  display: flex;
  width: 100%;
  height: 53px;
  padding: 0 48px 0 24px;
  border: 1px solid #b4b7bd;
  border-radius: 3px;
  align-items: center;
  color: #666;
  background: #fff;
  text-align: left;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.custom-select-trigger>span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.custom-select-trigger i {
  position: absolute;
  top: 50%;
  right: 17px;
  width: 8px;
  height: 8px;
  border-right: 1px solid #555;
  border-bottom: 1px solid #555;
  transform: translateY(-70%) rotate(45deg);
  transition: transform 180ms ease;
}

.custom-select.is-open .custom-select-trigger i {
  transform: translateY(-20%) rotate(225deg);
}

.custom-select-trigger:hover {
  border-color: #7db9f4;
}

.custom-select-trigger:focus-visible,
.custom-select.is-open .custom-select-trigger {
  border-color: var(--download-blue);
  box-shadow: 0 0 0 2px rgba(19, 140, 255, 0.14);
  outline: none;
}

.custom-select-menu {
  position: absolute;
  top: calc(100% + 6px);
  right: 0;
  left: 0;
  z-index: 20;
  max-height: 220px;
  padding: 6px;
  overflow-y: auto;
  border: 1px solid #e5e8eb;
  border-radius: 4px;
  background: #fff;
  box-shadow: 0 8px 24px rgba(26, 46, 66, 0.14);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-5px);
  transition: opacity 160ms ease, visibility 160ms ease, transform 160ms ease;
}

.custom-select.is-open .custom-select-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: none;
}

.custom-select-option {
  display: flex;
  width: 100%;
  min-height: 40px;
  padding: 8px 16px;
  border: 0;
  border-radius: 3px;
  align-items: center;
  color: #4c555d;
  background: transparent;
  text-align: left;
  transition: color 150ms ease, background 150ms ease;
}

.custom-select-option:hover,
.custom-select-option:focus-visible,
.custom-select-option.is-keyboard-active {
  color: var(--download-blue);
  background: #f1f7ff;
  outline: none;
}

.custom-select-option.is-selected {
  color: var(--download-blue);
  background: #eaf4ff;
  font-weight: 600;
}

.filter-submit {
  height: 53px;
  border: 0;
  border-radius: 3px;
  color: #fff;
  background: var(--download-blue-soft);
  font-size: 20px;
  transition: background 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.filter-submit:hover,
.filter-submit:focus-visible {
  background: var(--download-blue);
  box-shadow: 0 10px 24px rgba(19, 140, 255, 0.22);
  outline: none;
  transform: translateY(-1px);
}

.download-content {
  min-height: 1136px;
  padding: 63px 0 72px;
  background: var(--download-surface);
}

.download-layout {
  display: grid;
  grid-template-columns: 329px minmax(0, 1fr);
  gap: 34px;
  align-items: start;
}

.document-sidebar {
  min-height: 609px;
  background: #fff;
}

.document-sidebar h2 {
  height: 59px;
  margin: 0;
  padding: 0 36px;
  border-radius: 4px 4px 0 0;
  color: #fff;
  background: var(--download-dark);
  font-size: 26px;
  line-height: 59px;
  font-weight: 400;
}

.certification-search {
  position: relative;
  height: 53px;
  margin: 18px 16px 0;
}

.certification-search[hidden] {
  display: none;
}

.certification-search input {
  width: 100%;
  height: 100%;
  padding: 0 48px 0 20px;
  border: 1px solid #d8dce2;
  border-radius: 999px;
  color: #242a33;
  background: #fff;
  outline: none;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.certification-search input::placeholder {
  color: #777d85;
  opacity: 1;
}

.certification-search input:focus {
  border-color: var(--download-blue);
  box-shadow: 0 0 0 3px rgba(19, 140, 255, 0.14);
}

.certification-search button {
  position: absolute;
  top: 50%;
  right: 12px;
  width: 32px;
  height: 32px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: transparent;
  transform: translateY(-50%);
}

.certification-search button i::before {
  content: "";
  position: absolute;
  top: 7px;
  left: 6px;
  width: 12px;
  height: 12px;
  border: 2px solid #a1a7af;
  border-radius: 50%;
}

.certification-search button i::after {
  content: "";
  position: absolute;
  top: 20px;
  left: 19px;
  width: 8px;
  height: 2px;
  background: #a1a7af;
  transform: rotate(45deg);
  transform-origin: left center;
}

.certification-search button:focus-visible {
  outline: 2px solid rgba(19, 140, 255, 0.4);
  outline-offset: 1px;
}

.document-tree {
  padding: 29px 16px 38px;
}

.document-group+.document-group {
  margin-top: 10px;
}

.document-group-toggle {
  position: relative;
  display: flex;
  width: 100%;
  min-height: 59px;
  padding: 0 50px 0 21px;
  border: 0;
  border-radius: 4px;
  align-items: center;
  color: #111;
  background: #f5f5f8;
  font-size: 18px;
  text-align: left;
  transition: color 180ms ease, background 180ms ease;
}

.document-group-toggle::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 20px;
  width: 9px;
  height: 9px;
  border-right: 1px solid #aaaeb5;
  border-bottom: 1px solid #aaaeb5;
  transform: translateY(-68%) rotate(45deg);
  transition: transform 220ms ease;
}

.document-group.is-open .document-group-toggle::after {
  transform: translateY(-20%) rotate(225deg);
}

.document-group-toggle:hover,
.document-group-toggle:focus-visible {
  color: var(--download-blue);
  background: #eff6ff;
  outline: none;
}

.document-children {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 260ms var(--ease-out);
}

.document-group.is-open .document-children {
  grid-template-rows: 1fr;
}

.document-children-inner {
  position: relative;
  min-height: 0;
  overflow: hidden;
  padding-left: 57px;
}

.document-group.is-open .document-children-inner {
  padding-top: 24px;
  padding-bottom: 17px;
}

.document-children-inner::before {
  content: "";
  position: absolute;
  top: 26px;
  bottom: 20px;
  left: 39px;
  width: 1px;
  background: #d1d1d1;
}

.document-option {
  display: flex;
  width: 100%;
  height: 48px;
  padding: 0 10px;
  border: 0;
  border-radius: 4px;
  align-items: center;
  color: #111;
  background: transparent;
  font-size: 20px;
  text-align: left;
  transition: color 180ms ease, background 180ms ease;
}

.document-option:hover,
.document-option:focus-visible,
.document-option.is-active {
  color: #111;
  background: #f1f1f4;
  outline: none;
}

.document-option.is-active {
  color: #111;
}

.product-panel {
  min-width: 0;
}

.product-header,
.product-row {
  display: grid;
  grid-template-columns: 2fr 1.25fr 1.35fr 1.45fr 1.7fr;
  align-items: center;
}

.certification-header,
.certification-row {
  grid-template-columns: 1.5fr 1.2fr 1.4fr 1fr 1fr;
}

.product-header {
  height: 59px;
  padding: 0 31px;
  border-radius: 4px;
  color: #fff;
  background: var(--download-dark);
  font-size: 16px;
}

.product-header span {
  min-width: 0;
}

.product-sort-button {
  display: inline-flex;
  min-height: 44px;
  padding: 0 4px;
  border: 0;
  align-items: center;
  justify-content: center;
  color: inherit;
  background: transparent;
  cursor: pointer;
  font: inherit;
  word-break: keep-all;
}

.product-sort-button:hover,
.product-sort-button.is-active {
  color: #d9efff;
}

.product-sort-button:focus-visible {
  border-radius: 4px;
  outline: 2px solid rgba(255, 255, 255, 0.82);
  outline-offset: 2px;
}

.sort-icon {
  width: 18px;
  height: 18px;
  margin-left: 5px;
  flex: 0 0 auto;
  fill: none;
  stroke: rgba(255, 255, 255, 0.48);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.sort-icon path {
  transition: stroke 160ms ease, opacity 160ms ease;
}

.product-sort-button.is-active:not(.is-descending) .sort-icon-up,
.product-sort-button.is-descending .sort-icon-down {
  stroke: #69dcff;
  opacity: 1;
}

.product-sort-button.is-active:not(.is-descending) .sort-icon-down,
.product-sort-button.is-descending .sort-icon-up {
  stroke: rgba(255, 255, 255, 0.2);
  opacity: 0.65;
}

.product-header>span,
.product-row>span {
  text-align: center;
}

.product-status {
  display: flex;
  min-height: 96px;
  margin-top: 16px;
  align-items: center;
  justify-content: center;
  color: #777;
  background: #fff;
  font-size: 16px;
}

.product-status[hidden] {
  display: none;
}

.product-row[hidden] {
  display: none;
}

.product-list {
  display: grid;
  gap: 16px;
  margin-top: 16px;
}


.product-pagination .pages {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.15rem;
  margin-top: 5.425rem;
  color: #77849a;
  font-size: 1rem;
}

.product-pagination[hidden] {
  display: none;
}

.product-pagination button {
  position: relative;
  padding: 0.45rem 0;
  border: 0;
  color: inherit;
  background: transparent;
  cursor: pointer;
  transition: color 220ms ease;
}

.product-pagination button:hover,
.product-pagination button:focus-visible,
.product-pagination button.is-current {
  color: var(--pagination-blue);
}

.product-pagination button:focus-visible {
  border-radius: 0.15rem;
  outline: 2px solid rgba(8, 125, 255, 0.35);
  outline-offset: 0.2rem;
}

.product-pagination button.is-current::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 0.16rem;
  background: var(--pagination-blue);
  content: "";
}

.product-pagination button:disabled {
  opacity: 0.42;
  cursor: default;
}

.product-pagination button:disabled:hover {
  color: inherit;
}

.product-pagination-ellipsis {
  padding: 0.45rem 0;
}

.product-row {
  position: relative;
  min-height: 95px;
  padding: 0 31px;
  border-radius: 4px;
  color: #747474;
  background: #fff;
  font-size: 19px;
  transition: box-shadow 180ms ease, transform 180ms ease;
}

.product-row::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 6px;
  border-radius: 4px 0 0 4px;
  background: var(--download-blue);
  opacity: 0;
  transition: opacity 180ms ease;
}

.product-row:hover,
.product-row.is-highlighted {
  box-shadow: 0 10px 25px rgba(45, 61, 76, 0.08);
  transform: translateY(-1px);
}

.product-row:hover::before,
.product-row.is-highlighted::before {
  opacity: 1;
}

.product-identity {
  display: block;
  width: 100%;
  min-width: 0;
}

.product-identity strong {
  display: block;
  overflow: hidden;
  color: #333;
  /*font-size: 20px;*/
  font-weight: 400;
  text-overflow: ellipsis;
  white-space: nowrap;
  text-align: center
}

.product-name {
  position: relative;
  min-width: 0;
}

.product-downloads {
  font-size: 16px;
}

/*.product-name strong {
  cursor: help;
}*/

.product-name strong:focus-visible {
  border-radius: 2px;
  outline: 2px solid rgba(11, 145, 250, 0.35);
  outline-offset: 3px;
}

.product-name-tooltip {
  position: absolute;
  bottom: calc(100% + 0.7rem);
  left: 0;
  z-index: 30;
  width: max-content;
  max-width: min(30rem, calc(100vw - 2rem));
  padding: 0.55rem 0.75rem;
  border-radius: 4px;
  color: #fff;
  background: #2f3a45;
  box-shadow: 0 4px 8px rgba(20, 31, 42, 0.18);
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.45;
  opacity: 0;
  overflow-wrap: anywhere;
  pointer-events: none;
  text-align: left;
  transform: translateY(4px);
  transition: opacity 160ms ease, transform 160ms ease, visibility 160ms ease;
  visibility: hidden;
  white-space: normal;
}

.product-name-tooltip::after {
  position: absolute;
  top: 100%;
  left: 1rem;
  border: 0.35rem solid transparent;
  border-top-color: #2f3a45;
  content: "";
}

.product-name:hover .product-name-tooltip,
.product-name:focus-within .product-name-tooltip {
  opacity: 1;
  transform: translateY(0);
  visibility: visible;
}

.document-download {
  display: inline-flex;
  width: max-content;
  max-width: 100%;
  border: 0;
  align-items: center;
  gap: 9px;
  color: #747474;
  background: transparent;
  justify-self: center;
  white-space: nowrap;
  transition: color 180ms ease;
}

.product-downloads {
  display: flex;
  width: 100%;
  max-width: none;
  min-width: 0;
  padding-block: 8px;
  /*align-items: flex-start;*/
  align-items: center;
  flex-direction: column;
  gap: 8px;
  justify-self: stretch;
}

.document-download::before {
  content: "";
  width: 21px;
  height: 21px;
  flex: 0 0 auto;
  background: url("../image/sunlight-home/images/common/download-icon.png") center / contain no-repeat;
}

.document-download:hover,
.document-download:focus-visible,
.product-row.is-highlighted .document-download {
  color: var(--download-blue);
  outline: none;
}

.document-download:hover::before,
.document-download:focus-visible::before,
.product-row.is-highlighted .document-download::before {
  background-image: url("../image/sunlight-home/images/common/download-icon-active.png");
}

.document-download.is-disabled {
  align-self: center;
  opacity: 0.45;
  cursor: not-allowed;
  white-space: normal;
  text-align: center;
}

.document-download-label {
  display: inline-block;
  min-width: 0;
  text-align: center;
}

.download-toast {
  position: fixed;
  right: 28px;
  bottom: 28px;
  z-index: 50;
  max-width: min(360px, calc(100vw - 40px));
  padding: 13px 18px;
  border-radius: 4px;
  color: #fff;
  background: rgba(44, 57, 68, 0.94);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.2);
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity 200ms ease, transform 200ms ease;
}

.download-toast.is-visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 1280px) {

  .filter-form {
    grid-template-columns: 1.1fr repeat(3, 1fr) 100px;
  }

  .download-layout {
    grid-template-columns: 280px minmax(0, 1fr);
    gap: 24px;
  }

  .product-header,
  .product-row {
    font-size: 16px;
    /*grid-template-columns: 1.8fr 0.9fr 1fr 1.2fr 1fr;*/
  }

  .product-downloads {
    font-size: 12px;
  }

}

@media (max-width: 980px) {

  .download-container,
  .footer-container {
    width: min(calc(100% - 2.5rem), 700px);
  }

  .download-hero {
    height: 360px;
  }

  .download-hero-image {
    object-position: 54% center;
  }

  .hero-copy {
    padding-top: 225px;
  }

  .hero-copy h1 {
    font-size: 36px;
  }

  .filter-section {
    height: auto;
    padding: 32px 0 38px;
  }

  .filter-form {
    grid-template-columns: 1fr 1fr;
    padding-top: 0;
  }

  .search-field {
    grid-column: 1 / -1;
  }

  .filter-submit {
    align-self: end;
  }

  .download-content {
    min-height: 0;
    padding: 38px 0 55px;
  }

  .download-layout {
    grid-template-columns: 1fr;
  }

  .document-sidebar {
    min-height: 0;
  }

  .product-panel {
    overflow-x: visible;
  }

  .product-header,
  .product-row,
  .product-status {
    width: 100%;
    min-width: 0;
  }

  .product-header,
  .product-row {
    grid-template-columns: 1.5fr 1.25fr 1.45fr 1.45fr 1.5fr;
    padding-inline: clamp(0.75rem, 2.5vw, 1.4rem);
    font-size: 14px;
  }

  .product-header span,
  .product-row>span {
    min-width: 0;
    padding-inline: 0.2rem;
    overflow: hidden;
    text-overflow: ellipsis;
    /*white-space: nowrap;*/
  }

  .product-header span {
    font-size: 12px;
  }

  .sort-icon {
    width: 0.85rem;
    height: 0.85rem;
    margin-left: 1px;
  }

  /*.product-identity strong {
    font-size: 0.95rem;
  }*/

  .document-download {
    gap: 0.4rem;
    /*font-size: 0.85rem;*/
  }

  .document-download::before {
    width: 1.1rem;
    height: 1.1rem;
  }

  .download-footer {
    height: 500px;
    background-position: 58% center;
  }
}

@media (max-width: 640px) {

  .download-container {
    width: calc(100% - 2rem);
  }

  .footer-container {
    width: min(calc(100% - 2rem), 480px);
  }

  .download-hero {
    height: 330px;
  }

  .hero-copy {
    padding-top: 210px;
  }

  .hero-copy p {
    margin-bottom: 14px;
    font-size: 15px;
  }

  .hero-copy h1 {
    font-size: 30px;
  }

  .hero-copy h1 span {
    display: block;
    margin: 9px 0 0;
    font-size: 14px;
  }

  .filter-form {
    grid-template-columns: 1fr;
  }

  .search-field {
    grid-column: auto;
  }

  .filter-submit {
    margin-top: 5px;
  }

  .document-sidebar h2 {
    padding: 0 24px;
    font-size: 23px;
  }

  .document-tree {
    padding-right: 12px;
    padding-left: 12px;
  }

  .document-group-toggle {
    font-size: 19px;
  }

  .product-header,
  .product-row {
    grid-template-columns: 1.3fr 1.25fr 1.45fr 1.25fr 1.45fr;
    min-width: 0;
    padding-inline: clamp(0.3rem, 1.8vw, 0.6rem);
  }

  .product-header span {
    font-size: 8px;
  }

  .product-sort-button {
    padding: unset;
  }

  .certification-header,
  .certification-row {
    grid-template-columns:
      minmax(5.2rem, 1.45fr) minmax(3.6rem, 0.9fr) minmax(3.6rem, 0.95fr) minmax(3rem, 0.75fr) minmax(4.3rem, 1fr);
  }

  .product-header {
    height: 3.25rem;
    font-size: clamp(0.58rem, 2.45vw, 0.72rem);
  }

  .product-header span {
    padding-inline: 0.08rem;
  }

  .sort-icon {
    width: 0.65rem;
    height: 0.75rem;
    margin-left: 0.1rem;
  }

  .product-list {
    gap: 0.75rem;
    margin-top: 0.75rem;
  }

  .product-row {
    min-height: 5rem;
    font-size: clamp(0.58rem, 2.45vw, 0.72rem);
  }

  .product-row>span {
    padding-inline: 0.08rem;
  }

  .product-identity {
    min-width: 0;
  }

  .product-identity strong {
    font-size: clamp(0.58rem, 2.45vw, 0.72rem);
  }

  .product-name-tooltip {
    max-width: calc(100vw - 5rem);
    font-size: 0.75rem;
  }

  .document-download {
    width: max-content;
    min-height: 1.75rem;
    padding: 0;
    gap: 0.25rem;
    justify-content: flex-start;
    font-size: 7px;

  }

  .document-download::before {
    width: 0.9rem;
    height: 0.9rem;
  }

  .product-downloads {
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 0.35rem 0;
    align-items: flex-start;
    gap: 0.15rem;
    justify-self: stretch;
  }

  .product-status {
    min-height: 5rem;
    margin-top: 0.75rem;
    font-size: 0.85rem;
  }

  .product-pagination .pages {
    gap: 1rem;
    margin-top: 2.5rem;
    font-size: 0.82rem;
  }

  .download-footer {
    height: 470px;
    background-position: 58% center;
  }

  .footer-container {
    padding-top: 72px;
  }

  .footer-brand {
    width: 190px;
  }

  .footer-contact-list a {
    font-size: 13px;
  }
}

@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}


