/* ========== 1. CSS 样式重置 (CSS Reset) ========== */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 1rem;
  -webkit-text-size-adjust: 100%;
}

body {
  /* 采用苹方字体及常见备用字体 */
  font-family: "PingFang SC", "Microsoft YaHei", sans-serif;
  background-color: #2b2f31;
  overflow-x: hidden;
}

ul,
ol {
  list-style: none;
}

a {
  text-decoration: none;
  color: inherit;
  background-color: transparent;
}

img {
  border-style: none;
  max-width: 100%;
  height: auto;
  display: block;
}

button,
input,
optgroup,
select,
textarea {
  font-family: inherit;
  font-size: 100%;
  line-height: 1.15;
  margin: 0;
}

button,
input {
  overflow: visible;
}

button {
  text-transform: none;
}

button,
[type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: button;
}

/* ========== 2. 基础公共样式 ========== */
.container {
  width: 100%;
  max-width: 75rem;
  margin: 0 auto;
  padding: 0 1.25rem;
}

/* ========== 3. 开屏全屏页面 ========== */
.splash-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: #474e5a;
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  transition:
    opacity 0.8s ease-out,
    visibility 0.8s ease-out;
}

/* 开屏时的淡入动画 */
.splash-content {
  text-align: center;
  animation: splashFadeIn 2s cubic-bezier(0.25, 0.46, 0.45, 0.94) 1s forwards;
  opacity: 0;
  transform: translateY(1.25rem);
}

.splash-logo {
  width: 8.125rem;
  height: auto;
  margin: 0 auto 1.25rem auto;
}

.splash-text {
  color: #ccccd8;
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: 0.125rem;
}

@keyframes splashFadeIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* 隐藏开屏的类 */
.splash-screen.hidden {
  opacity: 0;
  visibility: hidden;
}

/* ========== 4. 官网主内容区域 ========== */
.main-content {
  display: none;
  opacity: 0;
  transition: opacity 1s ease-in;
  min-height: 100vh;
  /* background-color: #2b2f31; */
}

.main-content.show-content {
  opacity: 1;
}

/* 滚动动画初始隐藏 */
.animate-on-scroll {
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.3s ease,
    visibility 0.3s ease;
}

/* 当动画开始时显示 */
.animate-on-scroll.animate__animated {
  opacity: 1;
  visibility: visible;
}

/* 方框1 */
.body-1-wrap {
  padding: 1rem;
}
.body-1-wrap .content-box {
  width: 100%;
  padding: 7rem;
  padding-bottom: 6.625rem;
  background: #000000 url("../images/body-bg-1.png") no-repeat center
    center/cover;
  border-image: linear-gradient(
      360deg,
      rgba(191, 176, 127, 1),
      rgba(191, 176, 127, 0),
      rgba(191, 176, 127, 0),
      rgba(191, 176, 127, 0),
      rgba(191, 176, 127, 1)
    )
    1 1;
  border-radius: 1.25rem;
}
.body-1-wrap .content-box h1 {
  color: #ccccd8;
  font-size: 6rem;
  line-height: 9rem;
  text-align: right;
  font-weight: 600;
}
.body-1-wrap .content-box .img-box-wrap {
  width: 40rem;
}
.body-1-wrap .content-box .img-box-wrap img {
  width: 100%;
}
.body-1-wrap .content-box p {
  margin-top: 7rem;
  color: #ccccd8;
  font-size: 2.75rem;
  line-height: 4.125rem;
  font-weight: 600;
}
/* 方框2 */
.body-2-wrap {
  padding: 1rem;
}

.body-2-wrap .content-box {
  padding: 6.875rem 10.5rem 4.75rem 10.0625rem;
  background: url("../images/body-2-bg.png") no-repeat center bottom/cover;
}
.body-2-wrap .content-box .info-wrap {
  margin-left: 22.5rem;
  margin-bottom: 1.875rem;
}
.body-2-wrap .content-box .info-wrap .zh-wrap {
  color: #ffffff;
  font-size: 2.5rem;
  line-height: 4rem;
  font-weight: 400;
  margin-bottom: 3.25rem;
}
.body-2-wrap .content-box .info-wrap .en-wrap {
  color: #ccccd8;
  font-size: 1.75rem;
  line-height: 2.625rem;
  font-weight: 400;
}
.body-2-wrap .content-box .img-box-wrap {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
.body-2-wrap .content-box .img-box-wrap .eg-img-wrap {
  width: 19.8125rem;
  height: 27.375rem;
}
.body-2-wrap .content-box .img-box-wrap .about-us-wrap {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-end;
}
.body-2-wrap .content-box .img-box-wrap .text-img {
  margin-right: 4.875rem;
  width: 38.25rem;
  margin-bottom: 1.0625rem;
}
.body-2-wrap .content-box .img-box-wrap .arrow-img {
  width: 11.5625rem;
}

/* 方框3 */
.body-3-wrap {
  padding: 1rem 0;
}
.body-3-wrap .content-box {
  padding: 5.25rem 8rem 0 8rem;
  display: flex;
  justify-content: flex-start;
  align-items: stretch;
}
.body-3-wrap .content-box .left-wrap {
  width: 60.875rem;
  height: 57rem;
}
.body-3-wrap .content-box .left-wrap img {
  width: 60.875rem;
  height: 57rem;
}
.body-3-wrap .content-box .right-wrap img {
  margin-left: 3.6875rem;
  margin-bottom: 3.125rem;
  width: 29rem;
  height: 18.75rem;
}
.body-3-wrap .content-box .right-wrap h2 {
  color: #ccccd8;
  font-size: 6.0625rem;
  font-weight: 600;
  white-space: nowrap;
  line-height: 9rem;
  text-align: right;
}
.body-3-wrap .content-box .right-wrap .zh-wrap {
  color: #ccccd8;
  font-size: 2rem;
  line-height: 3rem;
  margin-bottom: 3.125rem;
  font-weight: 400;
  text-align: right;
}
.body-3-wrap .content-box .right-wrap .en-wrap {
  color: #ccccd8;
  font-size: 2rem;
  line-height: 3rem;
  width: 37.5rem;
  margin-left: -16.4375rem;
  font-weight: 600;
}
.body-3-wrap .content-box .right-wrap .text-img {
  display: none;
}
/*方框4*/
.body-4-wrap {
  margin: 6rem 0 1.75rem 0;
  padding-left: 8rem;
  position: relative;
}
.body-4-wrap .content-box {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  position: relative;
}
.body-4-wrap .content-box .left-wrap {
  padding-top: 6.25rem;
  flex: 1;
  padding-right: 6.25rem;
}
.body-4-wrap .content-box .left-wrap .img-eg-wrap {
  width: 29rem;
}
.body-4-wrap .content-box .left-wrap .text-img {
  display: none;
}

.body-4-wrap .content-box .left-wrap h2 {
  margin-top: 5.1875rem;
  color: #ccccd8;
  font-size: 4rem;
  font-weight: 600;
  text-align: right;
  line-height: 6rem;
  margin-bottom: 2.0625rem;
}
.body-4-wrap .content-box .left-wrap .zh-wrap {
  color: #ccccd8;
  font-size: 1.9375rem;
  font-weight: 400;
  line-height: 3rem;
  white-space: nowrap;
  text-align: right;
}
.body-4-wrap .en-wrap {
  position: absolute;
  right: 7.625rem;
  bottom: 11.3125rem;
  white-space: nowrap;
  color: #ccccd8;
  font-size: 2rem;
  font-weight: 400;
  line-height: 3rem;
}
.body-4-wrap .content-box .right-wrap {
  width: 39.25rem;
}
.body-4-wrap .content-box .right-wrap img {
  width: 39.25rem;
}

.body-5-wrap {
  margin-top: 1.75rem;
  padding: 10.25rem 8rem 0 8rem;
  position: relative;
  &::after {
    display: block;
    top: 0;
    content: "";
    position: absolute;
    z-index: 1;
    left: 8rem;
    width: 21.8125rem;
    height: 1px;
    background-color: #454545;
  }
}
.body-5-wrap .info-wrap {
  padding-left: 9.3125rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 2rem;
}
.body-5-wrap .info-wrap h2 {
  color: #ccccd8;
  font-size: 4rem;
  font-weight: 600;
  line-height: 6rem;
}
.body-5-wrap .info-wrap p {
  color: #ccccd8;
  font-size: 2rem;
  font-weight: 400;
  line-height: 3rem;
}
.body-5-wrap .info-wrap .en-wrap {
  font-weight: 600;
}

.body-5-wrap .img-box-wrap {
  margin-top: 10.25rem;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
.body-5-wrap .img-box-wrap .text-img {
  width: 29rem;
  position: relative;
  z-index: 1;
}
.body-5-wrap .img-box-wrap .bg-img {
  width: 100%;
  margin-top: -8.4375rem;
}
.body-5-wrap .img-box-wrap .mobile-img {
  display: none;
}
.body-6-wrap {
  padding: 1rem;
  background: url("../images/body-6-bg.png") no-repeat center center/cover;
}
.body-6-wrap .content-box {
  padding: 7.6875rem 0 12.0625rem 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.body-6-wrap .content-box img {
  width: 29rem;
}
.body-6-wrap .content-box h2 {
  color: #ccccd8;
  font-size: 4rem;
  font-weight: 400;
  line-height: 6rem;
  margin-bottom: 2rem;
}
.body-6-wrap .content-box p {
  color: #ccccd8;
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 2.25rem;
  letter-spacing: 1.75rem;
}
.body-6-wrap .content-box h3 {
  margin-top: 3.25rem;
  color: #ccccd8;
  font-size: 4.5rem;
  font-weight: 600;
  line-height: 6.75rem;
}
/* --- 页脚 Footer --- */
.footer {
  background: #000000 url("../images/footer-bg.png") no-repeat center
    center/cover;
  padding: 7.4375rem 8rem;
}
.footer .logo-box-wrap {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 1rem;
}
.footer .logo-box-wrap img {
  width: 4.5rem;
  height: 4.5rem;
}
.footer .logo-box-wrap .logo-text-wrap {
  color: #ccccd8;
}
.footer .logo-box-wrap .logo-text-wrap h2 {
  font-size: 2rem;
  font-weight: 500;
}
.footer .logo-box-wrap .logo-text-wrap h3 {
  color: #ccccd8;
  font-weight: 300;
  font-size: 1rem;
}
.footer .partner-wrap {
  padding: 4.5rem 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 2.6875rem;
}

.footer .partner-wrap img:nth-child(1) {
  width: 4rem;
}
.footer .partner-wrap img:nth-child(2) {
  width: 26.75rem;
}
.footer .partner-wrap img:nth-child(3) {
  width: 8rem;
}
.footer .partner-wrap img:nth-child(4) {
  width: 14.8656rem;
}
.footer .partner-wrap img:nth-child(5) {
  width: 23.2188rem;
}

.footer .addres-box-wrap .flex-box-wrap {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 2.6875rem;
}
.footer .addres-box-wrap dl {
  width: 32rem;
  padding: 1rem;
  box-sizing: border-box;
}
.footer .addres-box-wrap dt {
  color: #f09500;
  font-weight: 400;
  font-size: 1.5rem;
  margin-bottom: 2rem;
}
.footer .addres-box-wrap dd {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.footer .addres-box-wrap dd img {
  width: 1rem;
}
.footer .addres-box-wrap dd p {
  color: #ccccd8;
  font-weight: 400;
  font-size: 0.875rem;
}

.footer .copy-box-wrap {
  margin-top: 8.625rem;
  color: #474a51;
  font-size: 1rem;
  font-weight: 400;
  padding: 0.625rem 0.625rem 1.5rem 0.625rem;
  border-bottom: 1px solid #454545;
}
.footer .footer-bottom-wrap {
  padding-top: 8rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
}
.footer .footer-bottom-wrap img {
  width: 3.5rem;
}

/* 默认屏幕宽度 >= 1920px 按照原始 px 还原 (1rem = 16px) */
@media screen and (min-width: 1920px) {
  html {
    font-size: 16px !important;
  }
  .mobile-show {
    display: none;
  }
}

/* 屏幕在 768px ~ 1919px 之间（如 1440, 1520） */
@media screen and (max-width: 1919px) and (min-width: 768px) {
  html {
    /* (100vw / 1920) * 16px，实现完全根据 1920px 设计稿计算的全局等比缩放 */
    font-size: calc(100vw / 1920 * 16) !important;
  }
  .mobile-show {
    display: none;
  }
}

/* 375px 设计稿为基准*/
@media screen and (max-width: 767px) {
  .pc-show {
    display: none !important;
  }
  .mobile-show {
    display: block;
  }
  html {
    font-size: calc(100vw / 375 * 16) !important;
  }

  .splash-logo {
    width: 4.0625rem;
    height: auto;
    margin: 0 auto 0.4375rem auto;
  }
  .splash-text {
    font-size: 1rem;
  }
  /* 方框1 */
  .body-1-wrap {
    padding: 1.5rem;
    padding-bottom: 10.5rem;
    background: url("../images/mobile-body-1-bg.svg") no-repeat;
    background-size: cover;
  }
  .body-1-wrap .content-box {
    padding: 0;
    background: none;
  }
  .body-1-wrap .content-box h1 {
    font-size: 2rem;
    font-weight: bold;
    line-height: 3rem;
    padding-top: 10rem;
    margin-bottom: 2.25rem;
  }
  .body-1-wrap .content-box .img-box-wrap {
    width: 20rem;
  }
  .body-1-wrap .content-box .img-box-wrap img {
    width: 100%;
  }
  .body-1-wrap .content-box p {
    margin-top: 0;
    color: #ccccd8;
    font-weight: 600;
    font-size: 0.875rem;
    line-height: 1.3125rem;
  }
  /* 方框2 */
  .body-2-wrap {
    position: relative;
    z-index: 1;
    margin-top: -12.5rem;
    padding: 0;
    background: url("../images/mobile-dot-bg.png") no-repeat center center/100%;
  }
  .body-2-wrap .content-box {
    padding: 5.625rem 1.875rem 5rem 1.875rem;
    background: none;
  }
  .body-2-wrap .content-box .info-wrap {
    margin-left: 6.75rem;
    margin-bottom: 0;
  }
  .body-2-wrap .content-box .info-wrap .zh-wrap {
    color: #ffffff;
    font-size: 0.875rem;
    font-weight: 400;
    line-height: 1.3125rem;
    margin-bottom: 1rem;
  }
  .body-2-wrap .content-box .info-wrap .en-wrap {
    color: #ccccd8;
    font-size: 0.75rem;
    font-weight: 400;
    line-height: 1.125rem;
  }
  .body-2-wrap .content-box .img-box-wrap {
    margin-top: 1.375rem;
  }
  .body-2-wrap .content-box .img-box-wrap .eg-img-wrap {
    width: 7.1875rem;
    height: 11.4375rem;
  }
  .body-2-wrap .content-box .img-box-wrap .text-img {
    margin-right: 0;
    width: 10.5rem;
    margin-bottom: 1.1875rem;
  }
  .body-2-wrap .content-box .img-box-wrap .arrow-img {
    width: 4.6875rem;
  }
  /* 方框3 */
  .body-3-wrap {
    padding: 0 1rem;
  }
  .body-3-wrap .content-box {
    padding: 0;
    display: flex;
    flex-direction: column-reverse;
    justify-content: flex-start;
    align-items: stretch;
  }
  .body-3-wrap .content-box .left-wrap {
    width: 18.75rem;
    height: 17.4375rem;
    position: relative;
    margin-top: 1rem;
  }
  .body-3-wrap .content-box .left-wrap img {
    width: 18.75rem;
    height: 17.4375rem;
  }
  .body-3-wrap .content-box .left-wrap .en-wrap {
    position: absolute;
    width: 100%;
    z-index: 1;
    bottom: 3.8125rem;
    left: 3.6875rem;
    color: #ccccd8;
    font-weight: 600;
    font-size: 1rem;
    line-height: 1.5rem;
  }
  .body-3-wrap .content-box .right-wrap {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    position: relative;
    padding-top: 4.375rem;
  }
  .body-3-wrap .content-box .right-wrap img {
    margin: 0;
  }
  .body-3-wrap .content-box .right-wrap .img-eg-wrap {
    margin-left: 0;
    margin-bottom: 1.5rem;
    width: 6.9375rem;
    height: 4.5rem;
  }
  .body-3-wrap .content-box .right-wrap .text-img {
    display: block;
    position: absolute;
    left: 10.625rem;
    top: -1.5rem;
    z-index: 1;
    width: 2.5rem;
    height: 8rem;
  }
  .body-3-wrap .content-box .right-wrap h2 {
    color: #ccccd8;
    font-size: 2rem;
    font-weight: 600;
    white-space: nowrap;
    line-height: 3rem;
  }
  .body-3-wrap .content-box .right-wrap .zh-wrap {
    margin-top: 1rem;
    color: #ccccd8;
    font-size: 0.875rem;
    font-weight: 400;
    line-height: 1.3125rem;
    margin-bottom: 0;
    text-align: right;
  }
  .body-3-wrap .content-box .right-wrap .en-wrap {
    display: none;
  }

  .body-4-wrap {
    margin: 0;
    padding: 0 1rem;
    position: relative;
  }
  .body-4-wrap::after {
    display: block;
    content: "";
    position: absolute;
    z-index: 1;
    left: 1.5rem;
    bottom: 0;
    width: 1px;
    height: 8rem;
    background-color: #454545;
  }
  .body-4-wrap .content-box {
    display: flex;
    flex-direction: column;
  }
  .body-4-wrap .content-box .left-wrap {
    padding-top: 4.75rem;
    padding-right: 0;
    position: relative;
  }
  .body-4-wrap .content-box .left-wrap .img-eg-wrap {
    width: 6.9375rem;
    height: 4.5rem;
  }
  .body-4-wrap .content-box .left-wrap .text-img {
    display: block;
    position: absolute;
    top: 0;
    left: 8.25rem;
    z-index: 1;
    width: 3.0625rem;
    height: 7rem;
  }
  .body-4-wrap .content-box .left-wrap h2 {
    margin-top: 1rem;
    color: #ccccd8;
    font-size: 2rem;
    text-align: left;
    line-height: 3rem;
    margin-bottom: 1rem;
  }
  .body-4-wrap .content-box .left-wrap .zh-wrap {
    color: #ccccd8;
    font-weight: 400;
    font-size: 0.875rem;
    line-height: 1.3125rem;
    white-space: nowrap;
    text-align: left;
  }
  .body-4-wrap .en-wrap {
    position: absolute;
    width: 19.4375rem;
    right: 2rem;
    bottom: 6.9375rem;
    white-space: wrap;
    text-align: right;
    color: #ccccd8;
    font-size: 1rem;
    line-height: 1.5rem;
    font-weight: 600;
  }
  .body-4-wrap .content-box .right-wrap {
    width: 100%;
    margin-top: 1rem;
    text-align: right;
    padding-bottom: 2.5rem;
  }
  .body-4-wrap .content-box .right-wrap img {
    width: 16.1875rem;
    height: 21.875rem;
    display: inline-block;
  }

  .body-5-wrap {
    margin-top: 0;
    padding: 1rem;
    position: relative;
    &::after {
      display: none;
    }
  }
  .body-5-wrap .info-wrap {
    padding: 0;
    gap: 1rem;
  }
  .body-5-wrap .info-wrap h2 {
    font-size: 2rem;
    line-height: 3rem;
    font-weight: 600;
  }
  .body-5-wrap .info-wrap p {
    font-size: 0.875rem;
    line-height: 1.3125rem;
  }
  .body-5-wrap .info-wrap .en-wrap {
    font-weight: 600;
  }
  .body-5-wrap .img-box-wrap {
    margin-top: 3.5rem;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    position: relative;
  }
  .body-5-wrap .img-box-wrap::after {
    display: block;
    content: "";
    position: absolute;
    left: 0;
    top: 2.25rem;
    width: 12.125rem;
    height: 1px;
    background-color: #454545;
  }
  .body-5-wrap .img-box-wrap .text-img {
    width: 6.9375rem;
    position: relative;
    z-index: 1;
  }
  .body-5-wrap .img-box-wrap .bg-img {
    display: none;
  }
  .body-5-wrap .img-box-wrap .mobile-img {
    display: block;
    width: 100%;
    margin-top: -0.225rem;
  }
  .body-6-wrap {
    padding: 1rem 1rem 0 1rem;
    background: none;
    margin-top: -7rem;
    position: relative;
    z-index: 2;
  }
  .body-6-wrap .content-box {
    padding: 7.1875rem 0 10.75rem 0;
    background: url("../images/mobile-body-6-bg.svg") no-repeat top
      center/contain;
  }
  .body-6-wrap .content-box img {
    width: 9.28rem;
  }
  .body-6-wrap .content-box h2 {
    margin-top: 0.875rem;
    color: #ccccd8;
    font-size: 2rem;
    line-height: 3rem;
    margin-bottom: 1rem;
  }
  .body-6-wrap .content-box p {
    color: #ccccd8;
    font-size: 0.875rem;
    line-height: 1.3125rem;
    letter-spacing: 0.1875rem;
  }
  .body-6-wrap .content-box h3 {
    margin-left: auto;
    width: 13.5625rem;
    text-align: left;
    margin-top: 6rem;
    color: #ccccd8;
    font-size: 1rem;
    line-height: 1.5rem;
    font-weight: 600;
  }
  .body-6-wrap .content-box h3 br {
    display: none;
  }
  .footer {
    background: url("../images/mobile-footer-bg.svg") no-repeat top center/
      cover;
    padding: 4rem 1rem 2.625rem 1rem;
  }
  .footer .logo-box-wrap {
    display: none;
  }
  .footer .partner-wrap {
    padding: 0 2.4375rem;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.0625rem 0.8125rem;
  }
  .footer .partner-wrap img:nth-child(1) {
    width: 1.375rem;
  }
  .footer .partner-wrap img:nth-child(2) {
    width: 9.5625rem;
  }
  .footer .partner-wrap img:nth-child(3) {
    width: 2.75rem;
  }
  .footer .partner-wrap img:nth-child(4) {
    width: 5.1063rem;
  }
  .footer .partner-wrap img:nth-child(5) {
    width: 7.9375rem;
  }
  .footer .addres-box-wrap .flex-box-wrap {
    margin-top: 2.25rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
  .footer .addres-box-wrap dl {
    width: 100%;
    padding: 0;
    box-sizing: border-box;
  }
  .footer .addres-box-wrap dt {
    font-size: 1.125rem;
    font-weight: 500;
    margin-bottom: 1rem;
  }
  .footer .addres-box-wrap dd {
    margin-bottom: 0.5rem;
  }
  .footer .addres-box-wrap dd p {
    font-size: 0.75rem;
  }
  .footer .copy-box-wrap {
    margin-top: 1.375rem;
    font-size: 0.75rem;
    color: #474a51;
    padding: 0.5rem 0 0.75rem 0;
    border-bottom: 1px solid #454545;
  }
  .footer .footer-bottom-wrap {
    padding: 2rem 1.25rem 1.625rem 1.25rem;
    gap: 1rem;
  }
  .footer .footer-bottom-wrap img {
    width: 3rem;
    height: 2rem;
  }
}
