/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

* {
  font-family: "DM Sans", sans-serif;
}

header {
  padding: 7.5px 24px;
  border-bottom: 1px solid #E9E9E9;
  background: #FEFEFE;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 0;
  z-index: 999; /* Increased z-index to be higher than any other element */
}
@media screen and (max-height: 1024px) {
  header {
    padding: 7.5px 16px;
  }
}
@media screen and (max-height: 769px) {
  header {
    z-index: 9999; /* Consistent z-index for all screen heights */
  }
}
header .wrapper {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
header .wrapper .logo-light {
  display: flex;
  align-items: center;
  height: 40px;
}
header .wrapper .logo-light a {
  display: flex;
  align-items: center;
}
header .wrapper .logo-light img {
  width: 179px;
  height: 40px;
}
@media screen and (max-width: 540px) {
  header .wrapper .logo-light img {
    width: 140px;
    height: 40px;
  }
}
header .wrapper .logo-light,
header .wrapper .logo-dark {
  margin-right: 32px;
}
header .wrapper .search-bar {
  width: 100%;
  margin-right: 32px;
  display: flex;
  flex-direction: row;
  align-items: center;
}
header .wrapper .search-bar .search-container {
  padding: 0 16px;
  display: flex;
  width: 100%;
  align-items: center;
  gap: 8px;
  border-radius: 68px;
  border: 1px solid #E9E9E9;
  background: #FFF;
}
header .wrapper .search-bar .search-container .search-icon {
  width: 16px;
  height: 16px;
  pointer-events: none;
  cursor: default;
}
header .wrapper .search-bar input {
  width: 100%;
  height: 38px;
  color: #0C0F16;
  font-family: "DM Sans";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px; /* 125% */
  border: 0;
  outline: none;
}
header .wrapper .search-bar input::-moz-placeholder {
  color: #B5B5B5;
  font-family: "DM Sans";
  font-size: 16px;
  font-style: normal;
  font-weight: light;
  line-height: 20px; /* 125% */
}
header .wrapper .search-bar input::placeholder {
  color: #B5B5B5;
  font-family: "DM Sans";
  font-size: 16px;
  font-style: normal;
  font-weight: light;
  line-height: 20px; /* 125% */
}
header .wrapper nav ul {
  display: flex;
  gap: 24px;
  align-items: center;
}
header .wrapper nav ul li a {
  color: #0C0F16;
  font-family: "DM Sans", sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 20px; /* 142.857% */
  letter-spacing: 0;
  text-decoration: none;
}
header .wrapper nav ul li a:hover {
  color: #D38A52;
}
header .wrapper nav ul li.save-shipments {
  padding: 4px;
  display: none;
}
header .wrapper nav ul li.save-shipments a {
  display: flex;
  gap: 8px;
  align-items: center;
}
@media screen and (max-width: 360px) {
  header .wrapper nav ul li.save-shipments a {
    font-size: 10px;
  }
}
header .wrapper nav ul li.save-shipments span {
  white-space: nowrap;
}
header .wrapper nav ul li.save-shipments.active, header .wrapper nav ul li.save-shipments:hover {
  position: relative;
  border-radius: 4px;
  background: #FFF9F5;
}
header .wrapper nav ul li.save-shipments.active a, header .wrapper nav ul li.save-shipments:hover a {
  color: var(--Dark-500, #0C0F16);
  font-family: "DM Sans";
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 20px; /* 142.857% */
}
header .wrapper nav ul li.save-shipments.active a img, header .wrapper nav ul li.save-shipments:hover a img {
  filter: brightness(0);
}
header .wrapper nav ul li.save-shipments.disabled a {
  cursor: not-allowed;
}
header .wrapper nav ul li.save-shipments.disabled:hover {
  background: transparent;
}
header .wrapper nav ul li.save-shipments.disabled:hover img {
  filter: brightness(1);
}
header .wrapper nav ul li.language-selector {
  display: none;
}
header .wrapper nav ul li.language-selector a {
  display: flex;
  gap: 24px;
}
header .wrapper nav ul li.language-selector a div {
  display: flex;
  gap: 8px;
  align-items: center;
}
header .wrapper nav ul li.theme-selector {
  display: flex;
  border-radius: 8px;
}
header .wrapper nav ul li.theme-selector a {
  display: flex;
  gap: 4px;
  align-items: center;
  background-color: #F0E4DA;
  padding: 2px;
  border-radius: 8px;
  color: #D38A52;
  font-family: "DM Sans";
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 20px;
  letter-spacing: 0;
  text-decoration: none;
  transition: background 0.3s;
}
header .wrapper nav ul li.theme-selector a span {
  display: block;
  padding-right: 6px;
  padding-top: 2px;
  padding-bottom: 2px;
}
header .wrapper nav ul li.theme-selector a img {
  padding: 4px;
  background-color: #fff;
  border-radius: 8px;
}
header .wrapper nav ul li.theme-selector a.dark-theme {
  flex-direction: row-reverse;
  border-radius: 8px;
  background: #0C0F16;
  color: #fff;
  display: none;
}
header .wrapper nav ul li.theme-selector a.dark-theme img {
  background-color: #fff;
}
header .wrapper nav ul li.theme-selector a.dark-theme span {
  padding-left: 6px;
  padding-right: 0;
}

.hero {
  position: relative;
  background-image: url(../../images/product/banner-bg-graphic.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.hero .wrapper {
  width: 100%;
  margin: 0 auto;
  height: 100%;
}
.hero .inner-content {
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 1024px) {
  .hero .inner-content {
    flex-direction: column;
  }
}
.hero .inner-content .inner-content-left {
  padding-left: 120px;
  padding-top: 78px;
  max-width: 660px;
  width: 100%;
  max-width: 520px;
  width: 100%;
  padding-top: 100px;
}
@media screen and (max-width: 1360px) {
  .hero .inner-content .inner-content-left {
    max-width: 520px;
    width: 100%;
    padding-top: 100px;
  }
}
@media screen and (max-width: 1024px) {
  .hero .inner-content .inner-content-left {
    margin: 0 20px;
    max-width: unset;
    width: auto;
    padding-left: 0;
  }
}
@media screen and (max-width: 1024px) {
  .hero .inner-content .inner-content-left {
    padding-top: 56px;
  }
}
.hero .inner-content .inner-content-left p {
  color: var(--Dark-400, #797B82);
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-bottom: 32px;
  margin-bottom: 22.5px;
  font-size: 16px;
  line-height: normal;
}
@media screen and (max-width: 1360px) {
  .hero .inner-content .inner-content-left p {
    margin-bottom: 22.5px;
    font-size: 16px;
    line-height: normal;
  }
}
@media screen and (max-width: 861px) {
  .hero .inner-content .inner-content-left p {
    margin-bottom: 24px;
  }
}
.hero .inner-content .inner-content-left p.disclaimer {
  max-width: 575px;
  margin-top: 10.96px;
  color: var(--Dark-400, #797B82);
  font-family: "Red Hat Display";
  font-size: 10px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
}
.hero .inner-content .inner-content-left p a {
  color: var(--Dark-400, #797B82);
  font-family: "Red Hat Display";
  font-size: 10px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  text-decoration: none;
}
.hero .inner-content .inner-content-left p a:hover {
  text-decoration: underline;
}
.hero .inner-content .inner-content-right {
  width: 746px;
}
@media screen and (max-width: 1024px) {
  .hero .inner-content .inner-content-right {
    width: auto;
  }
}
.hero .inner-content .inner-content-right figure {
  width: 100%;
}
@media screen and (max-width: 1024px) {
  .hero .inner-content .inner-content-right figure {
    max-width: 600px;
    width: 100%;
    margin: 0 auto;
  }
}
.hero .inner-content .inner-content-right img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.hero h1 {
  color: #0D0F16;
  font-size: 64px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  margin-bottom: 17px;
  font-size: 48px;
  line-height: normal;
}
@media screen and (max-width: 1360px) {
  .hero h1 {
    margin-bottom: 17px;
    font-size: 48px;
    line-height: normal;
  }
}
@media screen and (max-width: 1024px) {
  .hero h1 {
    margin-bottom: 16px;
    font-size: 40px;
  }
}
@media screen and (max-width: 861px) {
  .hero h1 {
    font-size: 32px;
  }
}
@media screen and (max-width: 540px) {
  .hero h1 {
    font-size: 28px;
  }
}
.hero::after {
  content: "";
  position: absolute;
  top: 134px;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.hero .store-cta {
  margin-top: 10px;
}
.hero .store-cta .firefox-cta {
  width: 220px;
  height: 56px;
}
.hero .store-cta .firefox-cta img {
  width: 135px;
  height: 48px;
}
.hero .store-cta .chrome-cta {
  width: 220px;
  height: 56px;
}
.hero .store-cta .chrome-cta img, .hero .store-cta .chrome-cta a {
  width: 181px;
  height: 39.9px;
}
@media screen and (max-width: 861px) {
  .hero .store-cta {
    flex-direction: row;
  }
  .hero .store-cta .firefox-cta,
  .hero .store-cta .chrome-cta {
    width: 194px;
    height: 56px;
  }
  .hero .store-cta .firefox-cta img {
    width: 119px;
    height: 48px;
  }
  .hero .store-cta .chrome-cta img {
    width: 181px;
    height: 39px;
  }
  .hero .store-cta .chrome-cta a {
    display: flex;
    align-items: center;
  }
}
@media screen and (max-width: 440px) {
  .hero .store-cta {
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
}

.smart-tracking {
  background: linear-gradient(180deg, #FFFFFF 0%, #FCFAF9 100%);
}
.smart-tracking .wrapper {
  padding-top: 120px;
  padding-bottom: 96px;
  max-width: 1696px;
  margin: 0 auto;
  width: 100%;
}
@media screen and (max-width: 1360px) {
  .smart-tracking .wrapper {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}
.smart-tracking .gradient-wrapper {
  background: radial-gradient(50% 50% at 50% 50%, rgba(226, 162, 113, 0.7) 0%, rgba(124, 79, 45, 0) 100%);
  -webkit-backdrop-filter: blur(400px);
          backdrop-filter: blur(400px);
}
.smart-tracking h2 {
  margin-bottom: 18px;
  margin-left: 20px;
  margin-right: 20px;
  color: #0D0F16;
  font-size: 56px;
  font-style: normal;
  font-weight: 400;
  line-height: 60px; /* 107.143% */
  text-align: center;
}
@media screen and (max-width: 1360px) {
  .smart-tracking h2 {
    margin-bottom: 12px;
    font-size: 48px;
  }
}
@media screen and (max-width: 861px) {
  .smart-tracking h2 {
    margin-bottom: 8px;
    line-height: normal;
    font-size: 32px;
  }
}
.smart-tracking h2 > span.orange {
  color: #D38A52;
  font-size: 56px;
  font-style: normal;
  font-weight: 600;
  line-height: 60px;
}
@media screen and (max-width: 861px) {
  .smart-tracking h2 > span.orange {
    font-size: 32px;
    line-height: normal;
  }
}
.smart-tracking p {
  margin-bottom: 88px;
  color: var(--Dark-400, #797B82);
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: 24px; /* 100% */
  text-align: center;
}
.smart-tracking p.sub-text {
  margin-left: 20px;
  margin-right: 20px;
}
@media screen and (max-width: 1360px) {
  .smart-tracking p {
    margin-bottom: 40px;
    font-size: 20px;
  }
}
@media screen and (max-width: 861px) {
  .smart-tracking p {
    margin-bottom: 24px;
    font-size: 16px;
  }
}
.smart-tracking ul {
  margin-bottom: 88px;
  width: 1216px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  border-radius: 1837px;
  background: radial-gradient(50% 50% at 50% 50%, rgba(226, 162, 113, 0.7) 0%, rgba(124, 79, 45, 0) 100%);
  gap: 32px;
}
@media screen and (max-width: 1279px) {
  .smart-tracking ul {
    max-width: 1000px;
    width: 90%;
  }
}
@media screen and (max-width: 861px) {
  .smart-tracking ul {
    gap: 16px;
    width: 100%;
  }
}
.smart-tracking ul li {
  width: 33.33%;
  height: 372px;
  padding-top: 32px;
  padding-left: 24px;
  padding-right: 24px;
  border-radius: 24px;
  background: #FFF;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  box-shadow: 0px 0px 34px 0px rgba(0, 0, 0, 0.1019607843);
}
@media screen and (max-width: 861px) {
  .smart-tracking ul li {
    height: 278px;
    padding-left: 20px;
    padding-right: 20px;
    padding-top: 20px;
    margin: 0 20px;
  }
}
.smart-tracking ul li h3 {
  margin-bottom: 16px;
  color: #0D0F16;
  font-size: 27px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  letter-spacing: -0.56px;
}
@media screen and (max-width: 861px) {
  .smart-tracking ul li h3 {
    margin-bottom: 12px;
    font-size: 22px;
    letter-spacing: -0.48px;
  }
}
.smart-tracking ul li p {
  margin-bottom: 0;
  color: #797B82;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-align: left;
}
@media screen and (max-width: 861px) {
  .smart-tracking ul li p {
    font-size: 16px;
  }
}
.smart-tracking ul li img {
  width: 100%;
  height: auto;
}
@media screen and (max-width: 861px) {
  .smart-tracking ul li img {
    height: 158px;
  }
}
.smart-tracking ul li .lower-content {
  height: 252px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.smart-tracking ul li:nth-child(1) {
  width: 274.5px;
}
@media screen and (max-width: 861px) {
  .smart-tracking ul li:nth-child(1) {
    width: 100%;
  }
}
@media screen and (max-width: 405px) {
  .smart-tracking ul li:nth-child(1) img {
    height: 128px;
  }
}
.smart-tracking ul li:nth-child(2) {
  width: 459px;
}
@media screen and (max-width: 861px) {
  .smart-tracking ul li:nth-child(2) {
    width: 100%;
    height: 281px;
  }
}
.smart-tracking ul li:nth-child(2) figure {
  width: 374px;
  height: 226px;
  overflow: hidden;
  margin-top: 20px;
}
@media screen and (max-width: 861px) {
  .smart-tracking ul li:nth-child(2) figure {
    width: auto;
    margin-top: 0;
    height: 170px;
  }
}
.smart-tracking ul li:nth-child(2) img {
  width: 374px;
  height: 260px;
}
@media screen and (max-width: 861px) {
  .smart-tracking ul li:nth-child(2) img {
    content: url("../../images/product/smart-tracking2mobile.png");
    width: 264px;
    height: 170px;
  }
}
@media screen and (max-width: 405px) {
  .smart-tracking ul li:nth-child(2) img {
    height: 149px;
  }
}
@media screen and (max-width: 403px) {
  .smart-tracking ul li:nth-child(2) img {
    height: auto;
    width: 248px;
    height: 128px;
  }
}
@media screen and (max-width: 388px) {
  .smart-tracking ul li:nth-child(2) img {
    height: auto;
  }
}
@media screen and (max-width: 861px) {
  .smart-tracking ul li:nth-child(2) .lower-content {
    height: 168px;
  }
}
.smart-tracking ul li:nth-child(3) {
  width: 298.5px;
  padding-left: 0;
}
@media screen and (max-width: 861px) {
  .smart-tracking ul li:nth-child(3) {
    width: 100%;
  }
}
.smart-tracking ul li:nth-child(3) .upper-content {
  padding-left: 24px;
}
.smart-tracking ul li:nth-child(3) figure {
  width: 316px;
  overflow: hidden;
}
@media screen and (max-width: 861px) {
  .smart-tracking ul li:nth-child(3) figure {
    width: 246px;
  }
}
.smart-tracking ul li:nth-child(3) figure img {
  margin-left: -35px;
}
@media screen and (max-width: 861px) {
  .smart-tracking ul li:nth-child(3) figure img {
    width: 246px;
    height: auto;
    margin-left: 0;
  }
}
.smart-tracking ul li:nth-child(4), .smart-tracking ul li:nth-child(5) {
  width: 384px;
}
.smart-tracking ul li:nth-child(4) {
  padding-left: 0;
  padding-right: 0;
}
@media screen and (max-width: 861px) {
  .smart-tracking ul li:nth-child(4) {
    width: 100%;
  }
}
.smart-tracking ul li:nth-child(4) .upper-content {
  padding-left: 24px;
  padding-right: 24px;
}
.smart-tracking ul li:nth-child(4) figure {
  margin-top: -22px;
}
@media screen and (max-width: 861px) {
  .smart-tracking ul li:nth-child(4) figure img {
    height: 140px;
  }
}
@media screen and (max-width: 400px) {
  .smart-tracking ul li:nth-child(4) figure img {
    height: 118px;
  }
}
.smart-tracking ul li figure {
  text-align: center;
}
.smart-tracking ul li:nth-child(5) {
  padding-left: 0;
  padding-right: 0;
}
@media screen and (max-width: 861px) {
  .smart-tracking ul li:nth-child(5) {
    width: 100%;
  }
}
.smart-tracking ul li:nth-child(5) .upper-content {
  padding-left: 24px;
  padding-right: 24px;
}
.smart-tracking ul li:nth-child(5) .lower-content {
  justify-content: center;
  position: relative;
}
.smart-tracking ul li:nth-child(5) .lower-content:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 200px;
  height: 253px;
  background-image: url("../../images/product/smart-tracking5a.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 24px;
}
@media screen and (max-width: 861px) {
  .smart-tracking ul li:nth-child(5) .lower-content:before {
    width: 135px;
    height: 100%;
    left: 0;
  }
}
.smart-tracking ul li:nth-child(5) figure {
  width: 100%;
  height: 276px;
  margin-right: 32px;
  text-align: right;
  position: relative;
  z-index: 1;
  margin-top: 25px;
}
@media screen and (max-width: 861px) {
  .smart-tracking ul li:nth-child(5) figure {
    height: auto;
    margin-top: 0;
    margin-right: 50px;
    margin: 0 auto;
    text-align: center;
  }
}
.smart-tracking ul li:nth-child(5) img {
  width: 204px;
  height: 231px;
}
@media screen and (max-width: 861px) {
  .smart-tracking ul li:nth-child(5) img {
    width: 140px;
    height: 150px;
    margin-top: -8px;
  }
}
@media screen and (max-width: 425px) {
  .smart-tracking ul li:nth-child(5) img {
    width: 131px;
    height: 126px;
    margin-top: 0;
  }
}
.smart-tracking ul li:nth-child(6) {
  width: 336px;
}
@media screen and (max-width: 861px) {
  .smart-tracking ul li:nth-child(6) {
    width: 100%;
  }
}
@media screen and (max-width: 861px) {
  .smart-tracking ul li:nth-child(6) img {
    width: 226px;
    height: 149px;
  }
}
@media screen and (max-width: 440px) {
  .smart-tracking ul li:nth-child(6) img {
    width: 175px;
    height: auto;
  }
}
.smart-tracking .store-cta {
  margin-top: 88px;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 1360px) {
  .smart-tracking .store-cta {
    margin-top: 40px;
  }
}
.smart-tracking p.disclaimer, .smart-tracking a {
  max-width: 423px;
  margin: 0 auto;
  color: #0D0F16;
  text-align: center;
  font-family: "Red Hat Display";
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 18px */
  text-align: center;
}
@media screen and (max-width: 861px) {
  .smart-tracking p.disclaimer {
    display: block;
    margin: 0 auto;
  }
}
@media screen and (max-width: 475px) {
  .smart-tracking p.disclaimer {
    margin: 0 20px;
    width: 87%;
  }
}
.smart-tracking a {
  text-decoration: none;
}
.smart-tracking a:hover {
  text-decoration: underline;
}

.choose-us {
  padding: 120px 0 130px;
}
@media screen and (max-width: 1360px) {
  .choose-us {
    padding: 60px 0 60px;
  }
}
@media screen and (max-width: 861px) {
  .choose-us {
    padding: 40px 0 80px;
  }
}
.choose-us .wrapper {
  max-width: 1696px;
  width: 86.96%;
  margin: 0 auto;
}
.choose-us h2 {
  margin-bottom: 18px;
  color: #0D0F16;
  font-size: 56px;
  font-style: normal;
  font-weight: 400;
  line-height: 60px; /* 107.143% */
  text-align: center;
}
@media screen and (max-width: 1360px) {
  .choose-us h2 {
    margin-bottom: 12px;
    font-size: 48px;
  }
}
@media screen and (max-width: 861px) {
  .choose-us h2 {
    margin-bottom: 12px;
    margin-left: 20px;
    margin-right: 20px;
    font-size: 32px;
    line-height: 100%;
  }
}
.choose-us p {
  margin-bottom: 84px;
  color: #797B82;
  font-weight: 500;
  font-style: Medium;
  font-size: 24px;
  line-height: 24px;
  letter-spacing: 0%;
  text-align: center;
}
@media screen and (max-width: 1360px) {
  .choose-us p {
    margin-bottom: 40px;
    font-size: 20px;
  }
}
@media screen and (max-width: 861px) {
  .choose-us p {
    font-size: 16px;
    margin-left: 20px;
    margin-right: 20px;
    line-height: 100%;
  }
}
.choose-us ul {
  display: flex;
  align-items: center;
  justify-content: center;
  align-items: center;
  gap: 40px;
}
@media screen and (max-width: 1366px) {
  .choose-us ul {
    gap: 20px;
  }
}
@media screen and (max-width: 1279px) {
  .choose-us ul {
    margin: 0 20px;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    padding-left: unset;
  }
}
.choose-us ul li {
  min-width: 400px;
  width: 400px;
  height: 540px;
  flex-basis: 400px;
  display: flex;
  flex-direction: column;
  border-radius: 32px;
  justify-content: space-between;
}
@media screen and (max-width: 1360px) {
  .choose-us ul li {
    flex-basis: 384px;
  }
}
@media screen and (max-width: 1279px) {
  .choose-us ul li {
    min-width: auto;
    width: auto;
    flex-basis: auto;
    height: auto;
  }
}
.choose-us ul li:last-child {
  margin-right: 0;
}
.choose-us ul li figure {
  margin-bottom: -3px;
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
@media screen and (max-width: 861px) {
  .choose-us ul li figure {
    max-height: 202px;
    height: 100%;
  }
}
.choose-us ul li .lower-content {
  padding: 20px;
  margin-left: 8px;
  margin-right: 8px;
  margin-bottom: 8px;
  border-radius: 24px;
  background: #FFF;
  box-shadow: 0 -4px 32px 0 rgba(0, 0, 0, 0.1);
}
.choose-us ul li h3 {
  margin-bottom: 8px;
  color: #0D0F16;
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}
.choose-us ul li p {
  margin-bottom: 0;
  color: #797B82;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-align: left;
}
@media screen and (max-width: 861px) {
  .choose-us ul li p {
    margin-left: 0;
    margin-right: 0;
    font-size: 12px;
  }
}
.choose-us ul li:first-child {
  background-image: url("../../images/product/choose1-bg.svg"), radial-gradient(139.36% 113.52% at 23.46% 14.75%, #ECE1D3 43.75%, #D38A52 100%);
  background-position: center, center; /* adjust per layer */
  background-size: cover, cover; /* adjust per layer */
  background-repeat: no-repeat, no-repeat;
  background-color: lightgray; /* fallback color */
  background-blend-mode: multiply, normal;
}
.choose-us ul li:first-child figure img {
  height: 315px;
  margin-top: 52px;
}
@media screen and (max-width: 1360px) {
  .choose-us ul li:first-child figure img {
    margin-top: 30px;
  }
}
@media screen and (max-width: 861px) {
  .choose-us ul li:first-child figure img {
    width: auto;
    height: 172px;
    margin-top: 5px;
  }
}
.choose-us ul li:nth-child(2) {
  background-image: url("../../images/product/choose2-bg.svg"), radial-gradient(139.36% 113.52% at 23.46% 14.75%, #ECE1D3 43.75%, #D38A52 100%);
  background-position: center, center; /* adjust per layer */
  background-size: cover, cover; /* adjust per layer */
  background-repeat: no-repeat, no-repeat;
  background-color: lightgray; /* fallback color */
  background-blend-mode: multiply, normal;
}
@media screen and (max-width: 861px) {
  .choose-us ul li:nth-child(2) img {
    width: 135px;
    height: auto;
    margin-top: 10px;
    margin-bottom: 10px;
  }
}
.choose-us ul li:last-child {
  background-image: url("../../images/product/choose3-bg.svg"), radial-gradient(139.36% 113.52% at 23.46% 14.75%, #ECE1D3 43.75%, #D38A52 100%);
  background-position: center, center; /* adjust per layer */
  background-size: cover, cover; /* adjust per layer */
  background-repeat: no-repeat, no-repeat;
  background-color: lightgray; /* fallback color */
  background-blend-mode: multiply, normal;
}
@media screen and (max-width: 861px) {
  .choose-us ul li:last-child img {
    width: 252px;
    height: auto;
    margin-top: 25px;
    margin-bottom: 19px;
  }
}

.track-packages .wrapper {
  max-width: 1696px;
  width: 86.96%;
  padding: 100px 0;
  margin: 0 auto 120px;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  background-image: url("../../images/product/track-banner.png");
  background-size: cover;
  background-position: top;
  background-repeat: no-repeat;
  border-radius: 40px;
}
@media screen and (max-width: 1360px) {
  .track-packages .wrapper {
    width: 90.96%;
    padding: 60px 0;
    margin-top: 40px;
  }
}
@media screen and (max-width: 861px) {
  .track-packages .wrapper {
    width: unset;
    max-width: unset;
    margin-top: 0;
    margin-left: 20px;
    margin-right: 20px;
    margin-bottom: 60px;
    padding: 32px 16px;
    justify-content: flex-start;
  }
}
@media screen and (max-width: 440px) {
  .track-packages .wrapper {
    height: 540px;
    background-image: url("../../images/product/track-bg.png");
  }
}
.track-packages .wrapper h2 {
  margin-bottom: 24px;
  color: #0D0F16;
  text-align: center;
  font-size: 56px;
  font-style: normal;
  font-weight: 600;
  line-height: 60px; /* 107.143% */
}
@media screen and (max-width: 1360px) {
  .track-packages .wrapper h2 {
    font-size: 40px;
    margin-bottom: 12px;
  }
}
@media screen and (max-width: 861px) {
  .track-packages .wrapper h2 {
    font-size: 32px;
    margin-bottom: 12px;
    line-height: 100%;
  }
}
.track-packages .wrapper p {
  margin-bottom: 40px;
  color: var(--Dark-400, #797B82);
  text-align: center;
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: 24px; /* 100% */
}
@media screen and (max-width: 1360px) {
  .track-packages .wrapper p {
    font-size: 18px;
  }
}
@media screen and (max-width: 861px) {
  .track-packages .wrapper p {
    font-size: 16px;
    line-height: 100%;
  }
}

.faq {
  background-color: #F9F9F9;
  padding: 120px 0 160px;
}
@media screen and (max-width: 1360px) {
  .faq {
    padding: 60px 0;
  }
}
.faq .wrapper {
  max-width: 1696px;
  width: 86.96%;
  margin: 0 auto;
}
.faq .wrapper h2 {
  margin-bottom: 80px;
  color: #0D0F16;
  font-size: 56px;
  font-style: normal;
  font-weight: 600;
  line-height: 60px; /* 107.143% */
  text-align: center;
}
@media screen and (max-width: 1360px) {
  .faq .wrapper h2 {
    margin-bottom: 40px;
    font-size: 48px;
  }
}
@media screen and (max-width: 861px) {
  .faq .wrapper h2 {
    margin-bottom: 12px;
    font-size: 32px;
    line-height: normal;
  }
}
.faq .faq-inner {
  max-width: 1054px;
  margin: 0 auto;
}
.faq .faq-title {
  text-align: center;
  font-size: 34px;
  font-style: normal;
  font-weight: 700;
  line-height: 42px;
  color: #2A2037;
  padding: 50px 0 56px 0;
}
.faq .faq-title .gradient-text {
  background: linear-gradient(90.08deg, rgba(67, 191, 152, 0.94) 58.54%, rgba(111, 53, 219, 0.94) 74.92%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.faq .accordion {
  overflow: hidden;
}
.faq .accordion-item {
  border-bottom: 1px solid #CCCCCC;
}
.faq .accordion-header {
  display: flex;
  padding: 35px 24px;
  align-items: center;
  align-self: stretch;
  gap: 27px;
  cursor: pointer;
}
@media screen and (max-width: 861px) {
  .faq .accordion-header {
    padding: 24px 24px;
  }
}
.faq .accordion-header:hover .faq-questions-title {
  color: #D38A52;
}
.faq .accordion-header .faq-questions-title {
  color: rgba(13, 15, 22, 0.7);
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 34px; /* 170% */
}
@media screen and (max-width: 861px) {
  .faq .accordion-header .faq-questions-title {
    font-size: 18px;
    line-height: normal;
  }
}
.faq .accordion-header .faq-open {
  display: none;
}
.faq .accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease-in-out;
  padding: 0 20px;
  color: #666;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  padding: 0 68px;
}
@media screen and (max-width: 861px) {
  .faq .accordion-content {
    font-size: 16px;
  }
}
.faq .accordion-content ol {
  padding-left: 24px;
  margin: 10px 0;
}
.faq .accordion-content ol li {
  margin-bottom: 8px;
}
.faq .accordion-item.active .accordion-content {
  padding: 0 68px 35px;
  max-height: none !important;
}
@media screen and (max-width: 861px) {
  .faq .accordion-item.active .accordion-content {
    padding-bottom: 24px;
  }
}
.faq .accordion-item.active .faq-close {
  display: none;
}
.faq .accordion-item.active .faq-open {
  display: block;
}
.faq .accordion-item.active {
  border-color: #CCCCCC;
}
.faq .accordion-item.active .accordion-header {
  padding-bottom: 8px;
}
.faq .accordion-item.active .accordion-header .faq-questions-title {
  color: #191227;
}
@media screen and (max-width: 1023px) {
  .faq .faq-inner {
    padding: 0 20px;
  }
}
@media screen and (max-width: 768px) {
  .faq .faq-title {
    font-size: 28px;
    line-height: 32px;
  }
  .faq .faq-wrapper {
    background-position: top -50px right 100%, center center;
  }
}
@media screen and (max-width: 412px) {
  .faq .faq-wrapper {
    background-position: top -50px right 70%, center center;
  }
}

/* Footer Start */
.siteFooter {
  position: relative;
  background: #F8F6EF url("../../images/product/footerbg.png") no-repeat center;
  background-size: cover;
  padding: 60px 48px 0px;
  overflow: hidden;
  max-height: 280px;
  height: 280px;
  border-radius: 40px 40px 0 0;
  z-index: 0;
  /* font-family: system-ui, sans-serif; */
}

.footerContent {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 84px;
  position: relative;
  z-index: 1;
  max-width: 1696px;
  margin: 0 auto 20px;
  font-family: "DM Sans";
}
@media screen and (max-width: 1280px) {
  .footerContent {
    margin-bottom: 0;
  }
}

/* Left brand area */
.footerBrand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}

.footerLogo {
  max-width: 188px;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.footerTitle {
  color: #191227;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 22px;
  /* 122.222% */
}

.footerDesc {
  flex: 1;
  color: #444;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 18px;
  max-width: 446px;
  /* 150% */
}
@media screen and (max-width: 1160px) {
  .footerDesc {
    max-width: unset;
  }
}

/* Right links */
.footerLinks {
  display: flex;
  gap: 15px;
  white-space: nowrap;
  padding-bottom: 10px;
}

.footerLinks a {
  text-decoration: none;
  color: #444;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 28px;
  /* 175% */
  transition: all 0.3s ease;
}

.footerLinks a:hover {
  text-decoration: underline;
}

/* Big background watermark text */
.footerBgText {
  color: rgba(211, 209, 203, 0.6);
  text-align: center;
  padding-left: 200px;
  font-size: 200px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  white-space: nowrap;
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  opacity: 0.2;
  transform: translateY(-4px);
}

.footerImage {
  max-width: 1121px;
  height: 135px;
  /* margin: 0 auto; */
  float: right;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}
@media screen and (max-width: 1024px) {
  .footerImage {
    height: 100px;
  }
}
@media screen and (max-width: 540px) {
  .footerImage {
    height: 50px;
  }
}

.footerImage img {
  width: 100%;
  height: 135px;
}
@media screen and (max-width: 1024px) {
  .footerImage img {
    height: 100px;
  }
}
@media screen and (max-width: 540px) {
  .footerImage img {
    height: 50px;
  }
}

.footerImage img.mobileBrand {
  display: none;
}

/* Responsive */
@media (max-width: 1439px) {
  .footerLinks {
    padding-bottom: 19px;
  }
}
@media (max-width: 1180px) {
  .footerLinks {
    flex-wrap: wrap;
    gap: 4px 15px;
    padding-bottom: 0;
  }
}
@media (max-width: 1023px) {
  .footerContent {
    gap: 40px;
  }
}
@media (max-width: 768px) {
  .siteFooter {
    padding: 60px 20px 39px;
  }
  .footerContent {
    flex-direction: column;
    gap: 25px;
    align-items: center;
    margin-bottom: -15px;
  }
  .footerBrand {
    justify-content: center;
  }
  .footerDesc {
    max-width: 100%;
    text-align: center;
  }
  .footerLinks {
    justify-content: center;
  }
  .footerBgText {
    font-size: 100px;
    padding-left: 45px;
  }
}
@media (max-width: 641px) {
  .footerImage img.desktopBrand {
    display: none;
  }
  .footerImage img.mobileBrand {
    display: block;
  }
}
@media (max-width: 404px) {
  .footerBgText {
    font-size: 75px;
    padding-left: 20px;
    transform: translateY(-20px);
  }
  .footerImage img.mobileBrand {
    margin-top: -30px;
  }
}
@media (max-width: 391px) {
  .footerImage img.mobileBrand {
    margin-top: -45px;
  }
}
/* Footer End */
.orange {
  color: #D38A52;
  font-weight: 600;
}

header .wrapper .search-bar {
  display: none;
}

header .wrapper nav ul li.theme-selector {
  display: none;
}

header .wrapper nav ul li a.links {
  padding: 4px;
}
header .wrapper nav ul li a.links:hover {
  color: #0c0f16;
  background-color: #FFF9F5;
}

@media screen and (max-width: 768px) {
  header .wrapper nav ul li.save-shipments:hover a {
    font-size: 14px;
  }
}
@media screen and (max-width: 540px) {
  header .wrapper nav ul li.save-shipments:hover a {
    font-size: 12px;
  }
}

@media screen and (max-width: 768px) {
  .navigation ul li {
    display: none;
  }
  .navigation ul li.save-shipments {
    display: block;
  }
}
@media screen and (max-width: 768px) {
  .navigation {
    display: flex;
  }
}

.mobile-links-dropdown {
  display: none;
}
@media screen and (max-width: 768px) {
  .mobile-links-dropdown {
    display: block;
  }
}
.mobile-links-dropdown button {
  background: none;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  padding: 0;
  cursor: pointer;
  transition: background-color 0.2s ease;
  margin-left: 20px;
}
@media screen and (max-width: 440px) {
  .mobile-links-dropdown button {
    margin-left: 0;
  }
}
@media screen and (max-width: 360px) {
  .mobile-links-dropdown button {
    width: 30px;
    height: 30px;
  }
}
.mobile-links-dropdown button:hover {
  background-color: #FFF9F5;
}
.mobile-links-dropdown .mobile-links-content {
  display: none;
}
@media screen and (max-width: 768px) {
  .mobile-links-dropdown .mobile-links-content {
    position: absolute;
    display: flex;
    flex-direction: column;
    width: 150px;
    right: 20px;
    background: #fff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    padding: 10px 0;
    display: none;
  }
  .mobile-links-dropdown .mobile-links-content.active {
    display: flex;
  }
  .mobile-links-dropdown .mobile-links-content a {
    padding: 4px 8px;
    color: #0C0F16;
    font-family: "DM Sans", sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 20px;
    letter-spacing: 0;
    text-decoration: none;
  }
  .mobile-links-dropdown .mobile-links-content a:hover {
    background-color: #FFF9F5;
  }
}
@media screen and (max-width: 360px) {
  .mobile-links-dropdown .mobile-links-content a {
    font-size: 10px;
  }
}

.store-cta {
  display: flex;
  gap: 15px;
}
@media screen and (max-width: 861px) {
  .store-cta {
    flex-direction: column;
  }
}
.store-cta .firefox-cta,
.store-cta .chrome-cta {
  width: 280px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.4s ease;
  cursor: pointer;
}
.store-cta .firefox-cta:hover,
.store-cta .chrome-cta:hover {
  opacity: 0.9;
}
@media screen and (max-width: 360px) {
  .store-cta .firefox-cta,
  .store-cta .chrome-cta {
    width: 220px;
    margin: 0 auto;
  }
}
.store-cta .firefox-cta {
  background-color: #109AD6;
  border-radius: 6px;
}
.store-cta .firefox-cta a {
  display: flex;
}
.store-cta .chrome-cta {
  width: 278px;
  height: 68px;
  border: 0.76px solid #DADCE0;
  box-shadow: 0px 1.65px 3.31px 0px rgba(0, 0, 0, 0.0509803922);
  background-color: #fff;
  border-radius: 6px;
}
.store-cta .chrome-cta a {
  height: 51px;
  display: flex;
}
@media screen and (max-width: 360px) {
  .store-cta .chrome-cta {
    width: 220px;
  }
  .store-cta .chrome-cta img {
    width: 200px;
  }
}

@media screen and (max-width: 385px) {
  header .wrapper .logo-light {
    margin-right: 7px;
  }
}/*# sourceMappingURL=product.css.map */