@font-face {
  font-family: "ClashDisplay-Variable";
  src: url("../fonts/ClashDisplay-Variable.woff2") format("woff2"),
      url("../fonts/ClashDisplay-Variable.woff") format("woff"),
      url("../fonts/ClashDisplay-Variable.ttf") format("truetype");
  font-weight: 200 700;
  font-display: swap;
  font-style: normal;
}

@font-face {
  font-family: "ClashDisplay-Extralight";
  src: url("../fonts/ClashDisplay-Extralight.woff2") format("woff2"),
      url("../fonts/ClashDisplay-Extralight.woff") format("woff"),
      url("../fonts/ClashDisplay-Extralight.ttf") format("truetype");
  font-weight: 200;
  font-display: swap;
  font-style: normal;
}

@font-face {
  font-family: "ClashDisplay-Light";
  src: url("../fonts/ClashDisplay-Light.woff2") format("woff2"),
      url("../fonts/ClashDisplay-Light.woff") format("woff"),
      url("../fonts/ClashDisplay-Light.ttf") format("truetype");
  font-weight: 300;
  font-display: swap;
  font-style: normal;
}

@font-face {
  font-family: "ClashDisplay-Regular";
  src: url("../fonts/ClashDisplay-Regular.woff2") format("woff2"),
      url("../fonts/ClashDisplay-Regular.woff") format("woff"),
      url("../fonts/ClashDisplay-Regular.ttf") format("truetype");
  font-weight: 400;
  font-display: swap;
  font-style: normal;
}

@font-face {
  font-family: "ClashDisplay-Medium";
  src: url("../fonts/ClashDisplay-Medium.woff2") format("woff2"),
      url("../fonts/ClashDisplay-Medium.woff") format("woff"),
      url("../fonts/ClashDisplay-Medium.ttf") format("truetype");
  font-weight: 500;
  font-display: swap;
  font-style: normal;
}

@font-face {
  font-family: "ClashDisplay-Semibold";
  src: url("../fonts/ClashDisplay-Semibold.woff2") format("woff2"),
      url("../fonts/ClashDisplay-Semibold.woff") format("woff"),
      url("../fonts/ClashDisplay-Semibold.ttf") format("truetype");
  font-weight: 600;
  font-display: swap;
  font-style: normal;
}

@font-face {
  font-family: "ClashDisplay-Bold";
  src: url("../fonts/ClashDisplay-Bold.woff2") format("woff2"),
      url("../fonts/ClashDisplay-Bold.woff") format("woff"),
      url("../fonts/ClashDisplay-Bold.ttf") format("truetype");
  font-weight: 700;
  font-display: swap;
  font-style: normal;
}


body {
  padding: 20px 0;
  margin: 0;
  background-color: #fff;
}
a {
  text-decoration: none;
}
.banner {
  padding: 0 20px;
}
.banner .logo {
  width: 183px;
  border-radius: 18px;
  box-shadow: 4px 4px 22px 0px rgba(0, 0, 0, 0.05);
}
.banner-container {
  background-image: url("../image/theme-inner-cover.png");
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 24px;
  padding: 12px 20px;
  height: 260px;
}

/* technology */
.technology {
  padding: 0 60px;
}
.technology .title-box {
  margin-top: 26px;
  margin-bottom: 40px;
}
.technology .back-btn {
  padding: 8px 24px;
  border-radius: 40px;
  border: 0.5px solid #dfdde4;
  background: #fff;
  color: #1c1127;
  text-align: center;
  font-family: "ClashDisplay-Medium";
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 18px; /* 128.571% */
  letter-spacing: 0.28px;
  text-transform: uppercase;
}
.technology .title {
  color: #1c1127;
  font-family: "ClashDisplay-Medium";
  font-size: 48px;
  font-style: normal;
  font-weight: 500;
  line-height: 52px; /* 108.333% */
  letter-spacing: 0.96px;
}

.technology .tech-items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.technology .tech-items .item {
  background-repeat: no-repeat;
  background-size: cover;
  height: 200px;
  border-radius: 24px;
  padding: 20px;
}
.tech-items .item .title {
  color: #fff;
  font-family: "ClashDisplay-Medium";
  font-size: 32px;
  font-style: normal;
  font-weight: 500;
  line-height: 36px; /* 112.5% */
}

.tech-items .item .box-bottom .title {
  color: rgba(255, 255, 255, 0.7);
  font-family: Onest;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 20px; /* 125% */
}
.tech-items .item .box-bottom .number {
  color: #fff;
  font-family: Onest;
  font-size: 28px;
  font-style: normal;
  font-weight: 700;
  line-height: 32px; /* 114.286% */
}
.tech-items .item .box-bottom .next {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
}

/* footer */
.footer {
  padding: 0 60px;
  margin-top: 120px;
}
.footer .left {
  color: #968aaf;
  font-family: Onest;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 18px; /* 128.571% */
}
.footer .right a {
  color: #968aaf;
  text-align: right;
  font-family: Onest;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px; /* 125% */
}

@media only screen and (max-width: 820px) {
  .technology {
    padding: 0 20px;
  }
  .footer {
    padding: 0 20px;
  }
}
@media only screen and (max-width: 664px) {
  .technology .tech-items {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .technology .title {
    font-size: 30px;
    line-height: 36px;
  }
  .footer .left {
    font-size: 12px;
  }
  .footer .right a {
    font-size: 14px;
  }
}
@media only screen and (max-width: 460px) {
  .banner img {
    width: 100px;
  }
  .banner .logo {
    padding: 30px 12px !important;
  }
  .technology .title {
    font-size: 24px;
    line-height: 28px;
  }
  .technology .tech-items {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
  }
  .footer .left {
    font-size: 10px;
  }
  .footer .right a {
    font-size: 10px;
  }
}
@media only screen and (max-width: 380px) {
  .technology .title {
    font-size: 20px;
    line-height: 24px;
  }
  .technology .back-btn {
    padding: 4px 20px;
    border-radius: 40px;
    font-size: 12px;
  }
  .banner , .technology, .footer{
    padding: 0 10px;
  }
}
