/*
Theme Name: Sika
Version: 1.0
Description: 三鸟科技提供一站式服务——网站搭建,谷歌SEO优化,谷歌竞价,谷歌SNS社媒营销等。
Author: 版权所有：三鸟科技
*/
@charset "utf-8";

@font-face {
  font-family: "Popping";
  src: url("./static/fonts/Poppins-Light.otf") format("truetype");
  font-weight: 100;
}

@font-face {
  font-family: "Popping";
  src: url("./static/fonts/Poppins-Regular.otf") format("truetype");
  font-weight: normal;
}

@font-face {
  font-family: "Popping";
  src: url("./static/fonts/Poppins-Bold.otf") format("truetype");
  font-weight: bold;
}

@font-face {
  font-family: "iconfont";
  /* Project id 5006519 */
  src: url('./static/fonts/iconfont.ttf') format('ttf'),
    url('./static/fonts/iconfont.woff') format('woff'),
    url('./static/fonts/iconfont.woff2') format('woff2');
}

.iconfont {
  font-family: "iconfont" !important;
  font-size: 16px;
  font-style: normal;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}


* {
  font-family: "Popping", Arial, Helvetica, sans-serif;
  box-sizing: border-box;
  line-height: 150%;
  font-size: 18px;
}

main {
  overflow: hidden;
}

:root {
  --i_color: #233d94;
  --i_color2: #118161;
  --bc_color: #f7f7f7;
  --i_shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
  /* --header_height: 0.8rem; */
  --header_height: 80px;
  --border_color: rgb(51, 51, 51, 0.2);
  --f_menu_height: 50px;
}

@media screen and (max-width: 1440px) {
  :root {
    /* --header_height: 0.8rem; */
    --header_height: 80px;
  }
}

@media screen and (max-width: 1024px) {
  :root {
    /* --header_height: 0.6rem; */
    --header_height: 60px;
    --border_color: rgb(0 0 0 / 6%);
  }
}

/* animation */
.come-in--top {
  transform: translateY(-1.5rem)
}

.come-in--bot {
  transform: translateY(1.5rem)
}

.come-in--left {
  transform: translateX(-1.5rem)
}

.come-in--right {
  transform: translateX(1.5rem)
}

.come-in--animate {
  animation: come-in 2s ease forwards
}

@keyframes come-in {
  to {
    transform: translate(0);
    visibility: visible
  }
}


.wrap {
  width: 83.33%;
  max-width: 1600px;
  margin-left: auto;
  margin-right: auto;
}

@media screen and (max-width: 1600px) {
  .wrap {
    width: 86%;
  }
}

@media screen and (max-width: 1024px) {
  .wrap {
    width: 92%;
  }
}

.wrap_l {
  padding-left: 8.335%;
}

.wrap_r {
  padding-right: 8.335%;
}

@media screen and (max-width: 1600px) {
  .wrap_l {
    padding-left: 7%;
  }

  .wrap_r {
    padding-right: 7%;
  }
}

@media screen and (max-width: 1024px) {

  .wrap_l,
  .wrap_r {
    padding-left: 4%;
    padding-right: 4%;
  }
}

.header_full {
  width: 100%;
  background-color: #fff;
  height: var(--header_height);
}

/* header */
header {
  position: fixed;
  background-color: #fff;
  /* background: rgba(0, 0, 0, 0); */
  width: 100%;
  /* padding: 0 60px; */
  z-index: 999;
  height: var(--header_height);
  box-shadow: var(--i_shadow);
  transition: all 0.3s ease-in-out;
}

.top_cont {

  position: relative;

  z-index: 2013;

}

.top_cont::after {

  content: '';

  position: absolute;

  top: 0;

  left: 0;

  width: 100%;

  height: 100%;

  background: rgba(255, 255, 255, 0.7);

  opacity: 0;

  z-index: -1;

  transition: all 0.3s ease;

}


.top {
  display: flex;
  justify-content: space-between;
  padding: 0 60px;
  box-shadow: 0 0 10px rgba(26, 26, 26, 0.5);
  z-index: 10000;
}

@media screen and (max-width: 1024px) {
  .top {
    padding: 0;
  }

}

.TopHeader .top_cont::after {

  opacity: 1;

  backdrop-filter: blur(6px);

  box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);

}

@media screen and (max-width:1024px) {

  header {

    top: 0;

    top: 0;

    width: 100%;

    box-shadow: 0 4px 10px rgba(0, 0, 0, .1);

  }

  .top_cont {

    background: #fff !important;

  }

}

@media screen and (min-width:1024px) {

  .TopHeader .top_cont {

    box-sizing: border-box;

    margin: 0.20px 0.20px 0 0.20px;

  }

  .top_cont::after {

    border-radius: 0.20px;

  }



  .top_cont::before {

    content: '';

    position: absolute;

    top: 0;

    left: 0;

    width: 100%;

    height: 100%;

    background-color: #fff;

    opacity: 0;

    transition: opacity 0.3s ease;

    z-index: -1;

  }

  .top_cont:hover {

    margin: 0;

    box-shadow: 0 0.040px 0.10px rgba(0, 0, 0, .1);

  }

  .top_cont:hover::after {

    border-radius: 0;

  }

  .top_cont:hover::before {

    opacity: 1;

  }

}

/* search */
.top_search_ico {
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}

.top_search_ico iconify-icon {
  font-size: 0.24rem;
  color: #666;
}

/* search main */
.top_search {
  --search_height: 0.38rem;
}

.top_search {
  width: 100%;
  visibility: hidden;
  opacity: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%);
  padding: 0.16rem 0;
  background: #fff;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  z-index: 6;
}

.top_search.on {
  visibility: visible;
  opacity: 1;
  top: 100%;
  box-shadow: 0 0.06rem 0.1rem rgb(0 0 0 / 8%);
}

.top_search form {
  width: 80%;
  margin: 0 auto;
  max-width: 5rem;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  box-sizing: border-box;
  border: 1px solid var(--i_color);
  overflow: hidden;
}

.top_search_ipt {
  width: calc(100% - var(--search_height) * 2);
  height: var(--search_height);
  box-sizing: border-box;
  padding: 0 0 0 0.12rem;
}

.top_search_btn {
  font-size: 0;
  color: #fff;
  width: calc(var(--search_height) * 2);
  height: var(--search_height);
  background: var(--i_color) url(static/images/search.svg) no-repeat center;
  background-size: 0.24rem;
  cursor: pointer;
}

@media screen and (max-width: 1200px) {}

@media screen and (max-width: 1024px) {
  .top_search.on {
    top: var(--header_height);
  }

  .top_r {
    margin-left: auto;
  }

  .top_search_ico {
    margin-right: 0.2rem;
  }

  .top_search_ico::before {
    display: none;
  }
}

@media screen and (max-width: 768px) {
  .top_search {
    --search_height: 0.34rem;
  }

  .top_search {
    padding: 0.12rem 0;
  }
}

@media screen and (max-width: 560px) {
  .top_search form {
    width: 94%;
  }
}


.top .logo {
  /* width: 285px;
  height: var(--header_height); */
  width: auto;
  height: var(--header_height);
  margin-left: 0.2rem;
}

.top .logo img {
  width: 100%;
  height: 100%;
}

.top .nav {
  width: 50%;
}

.top .nav .top_ul {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-left: 20px;
}

.top .nav .top_ul li {
  color: #000;
  display: flex;
  justify-content: center;
  align-items: center;
}

.top .nav .top_ul li:hover {
  color: red;
}

.top .top_language {
  width: 20%;
  display: flex;
  justify-content: space-around;
  align-items: center;
}



/* top_language */


.language {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
}

.language_box {
  display: flex;
  margin: 0.1rem;
}

.language_box img {
  width: 24px;
  height: auto;
  display: inline-block;
  margin-right: 0.05rem;
  border-radius: 5px;
}

.language_box span {
  padding: 0.01rem;
}


.language iconify-icon {
  justify-content: center;
  align-self: center;
}

.language_menu {
  position: absolute;
  top: 0.5rem;
  box-shadow: #666 0px 0px 10px;
  overflow: hidden;
  border-radius: 0.15rem;
}

.language_menu .language_ul {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.language_menu .language_ul li {
  width: 100%;
  background-color: #fff;
  display: flex;
  justify-content: space-around;
  align-items: center;
  position: relative;
  padding: 0.1rem;
}

.language_menu .language_ul li a img {
  width: 24px;
  height: auto;
  display: inline-block;
  margin-right: 0.05rem;
  border-radius: 5px;
}

.hide {
  display: none;
}

.nav_menu {
  display: none;
}

@media screen and (max-width: 1200px) {
  .top_search_ico {
    display: none;
  }

  .language {
    display: none;
  }

  .nav_menu {
    display: block;
  }
}

/* 激活时显示内容 */
.solution_drop.active,
.capabilities_drop.active,
.about_drop.active,
.resources_drop.active,
.news_drop.active {
  display: block;
}

.solution_drop,
.capabilities_drop,
.about_drop,
.resources_drop {
  background-color: white;
  display: none;
  padding: 30px 0;
}

.solution_drop_title,
.capabilities_drop_title,
.about_drop_title,
.resources_drop_title {
  color: #df0707;
  font-size: 18px;
  font-weight: bold;
  /* 分界线 */
  border-bottom: 1px solid black;
  padding-bottom: 10px;
}

.solution_drop_ul {
  display: grid;
  grid-template-columns: 33.33% 33.33% 33.33%;
  grid-template-rows: auto;
  grid-gap: 20px;
  margin-top: 20px;
}

.solution_drop_img {
  width: 10px;
  height: 10px;
}

.solution_drop_img img {
  width: 100%;
  height: 100%;
}

.solution_drop_ul li a {
  display: flex;
}

.solution_drop_ul li a p {
  font-size: 16px;
  /* font-weight: bold; */
  color: #000;
  transition: all 0.3s ease-in-out;
}

.solution_drop_ul li a p:hover {
  color: red;
}

/* capabilities_drop */
.capabilities_drop_ul {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-gap: 20px;
  margin-top: 20px;
}

.capabilities_drop_ul li a p {
  font-size: 16px;
  /* font-weight: bold; */
  color: #000;
  transition: all 0.3s ease-in-out;
}

.capabilities_drop_ul li a p:hover {
  color: red;
}


/* about_drop resources_drop */
.header_list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 20px;
}

.about_drop_ul,
.resources_drop_ul {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 20px;
  margin-top: 20px;
}

.blog_ul {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 20px;
  margin-top: 20px;
}

.blog_ul li a {
  display: block;
  width: 100%;
}

.blog_ul li a img {
  width: 100%;
  height: auto;
}

.blog_ul li a h6 {
  font-size: 0.15rem;
}

.about_drop_bottom,
.resources_drop_bottom {
  color: #df0707;
  font-size: 18px;
  margin-top: 20px;
}

@media screen and (max-width: 1200px) {
  .top .nav {
    display: none;
  }

}


/* mobile nav */
.mobile_nav {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: space-around;
  top: var(--header_height);
  width: 100%;
  height: 100%;
  position: fixed;
  background-color: #fff;
  z-index: 9999;
}

.mobile_nav_no {
  display: none;
}

.mobile_nav .item_ul {
  display: none;

}

.mobile_nav .item {
  display: flex;
  justify-content: space-between;
  padding: 5%;
  border-bottom: #747474 solid 1px;
}

.mobile_nav .item h3 {
  font-weight: 400;
}

/* 点击显示 */
.mobile_nav .item_ul {
  padding: 5%;
}

.mobile_nav .item_ul h4 {
  font-size: 0.15rem;
  color: red;
  margin-bottom: 0.1rem;
}

.mobile_nav .item_ul li {
  font-size: 0.15rem;
  margin-bottom: 0.1rem;
}

.mobile_nav .nav_item h3 {
  font-weight: 400;
}









/* banner */
.hero-banner {
  background-color: #f5f5f5;
  padding: 0.75rem 0
}

.hero-banner__container {
  display: flex;
  align-items: center;
  gap: 0.25rem
}

@media screen and (max-width: 768px) {
  .hero-banner__container {
    flex-direction: column;
    gap: 0.25rem
  }
}

.hero-banner__content {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  flex: 1 0 45%
}

@media screen and (max-width: 768px) {
  .hero-banner__content {
    width: 100%
  }
}

.hero-banner__label {
  display: flex;
  flex-direction: column;
  gap: 0.05rem;
  font-size: 0.18rem;
  font-family: NunitoSans;
  text-transform: uppercase;
  margin-block-start: 0;
  margin-block-end: 0
}

.hero-banner__title {
  margin-block-start: 0;
  margin-block-end: 0;
  font-size: 0.6rem;
  font-family: NunitoSans-Bold, system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica, Arial, sans-serif
}

.hero-banner__title em {
  color: #df0707;
  font-style: normal;
  font-size: 0.6rem;
}

.hero-banner__text {
  margin-block-start: 0;
  margin-block-end: 0;
  font-size: 0.28rem;
  font-family: NunitoSans
}

.hero-banner__checklist {
  display: flex;
  flex-direction: column;
  gap: 0.1rem
}

.hero-banner__checklist-item {
  display: flex;
  align-items: center;
  font-size: 0.2rem;
  font-family: NunitoSans;
  gap: 0.15rem
}

.hero-banner__checklist-item i {
  font-size: 0.15rem;
  background-color: #df0707;
  padding: 0.075rem;
  border-radius: 50%;
  color: #fff
}

@media screen and (max-width: 768px) {
  .hero-banner__checklist-item span {
    font-size: 0.15rem;
    font-weight: 300;
  }

}

.hero-banner__buttons {
  margin-top: 0.3rem;
  display: flex;
  gap: 0.2rem;
  flex-wrap: wrap
}

.hero-banner__images {
  display: flex;
  gap: 0.3rem;
  flex: 1 1 auto
}

@media screen and (max-width: 1199.98px) {
  .hero-banner__images {
    flex-direction: column
  }
}

@media screen and (max-width: 768px) {
  .hero-banner__images {
    display: none
  }
}

.hero-banner__images--alternate {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.24rem
}

.hero-banner__images--alternate .hero-banner__image {
  grid-column: span 1;
  margin-top: unset !important
}

.hero-banner__images--alternate .hero-banner__image-wrapper {
  aspect-ratio: 241/200;
  height: 100% !important
}

.hero-banner__images--alternate .hero-banner__image:nth-of-type(3) {
  grid-column: span 2
}

.hero-banner__images--alternate .hero-banner__image:nth-of-type(3) .hero-banner__image-wrapper {
  aspect-ratio: 498/200;
  height: 100% !important
}

.hero-banner__image-background {
  width: 100%;
  height: 100%;
  object-fit: cover
}

.hero-banner__image-label {
  position: absolute;
  bottom: 0.3rem;
  left: 0;
  color: #fff;
  font-size: 0.18rem;
  font-family: NunitoSans-Bold, system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  border-left: 6px solid #df0707;
  padding: 0.05rem 0.1rem
}

.hero-banner__image-wrapper {
  position: relative;
  aspect-ratio: 5/8;
  height: calc(100% - 0.4rem);
  width: 100%;
  overflow: hidden;
  border-radius: 0.12rem
}

.hero-banner__image-wrapper:before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 39.05%, rgba(0, 0, 0, .7));
  pointer-events: none
}

@media screen and (max-width: 1199.98px) {
  .hero-banner__image-wrapper {
    aspect-ratio: 12/5;
    height: 100%
  }
}

.hero-banner__image:nth-of-type(2) {
  margin-top: 0.5rem
}

.hero-banner__image:nth-of-type(2) .hero-banner__image-wrapper {
  height: 100%
}

@media screen and (max-width: 1199.98px) {
  .hero-banner__image:nth-of-type(2) {
    margin-top: unset
  }
}

@media screen and (max-width: 768px) {
  .hero-banner {
    padding: 0.42rem 0;
    text-align: center
  }

  .hero-banner__label {
    text-align: center;
    align-items: center;
    font-size: 0.15rem;
  }

  .hero-banner__title {
    font-size: 0.3rem;
    line-height: normal
  }

  .hero-banner__title em {
    font-size: 0.3rem;
  }

  .hero-banner__text {
    font-size: 0.18rem;
    line-height: normal
  }

  .hero-banner__buttons {
    flex-direction: column
  }

  .hero-banner__buttons .btn {
    width: 100%
  }
}


/* process */
.process {
  padding-top: 0.6rem;
  padding-bottom: 0.6rem;
  --process-progress: 0%
}

.process--animate {
  --process-progress: 100%
}

.process__items {
  display: flex;
  flex-direction: column;
  gap: 0.46rem
}

.process__items-bar {
  position: relative;
  height: 0.11rem;
  border-radius: 0.05rem;
  width: 100%;
  border: 3px solid #fff;
  outline: 1px solid #dfedeb;
  z-index: -1
}

.process__items-bar:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: var(--process-progress);
  height: 100%;
  background: linear-gradient(90deg, #8c1e1e, #f23434);
  border-radius: 0.05rem;
  transition: width 1s ease, height 1s ease
}

.process__items-lower,
.process__items-upper {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(0, 1fr));
  gap: 0.65rem;
  justify-items: center
}

.process__items-lower .process__item:nth-child(odd),
.process__items-upper .process__item:nth-child(odd) {
  margin-left: auto
}

.process__items-lower .process__item:nth-child(2n),
.process__items-upper .process__item:nth-child(2n) {
  margin-right: auto
}

.process__items-upper .process__item-number {
  bottom: -0.78rem;
}

.process__items-lower .process__item-number {
  top: -0.75rem
}

.process__items-lower .process__item-arrow {
  transform: translateX(-50%) rotate(180deg);
  bottom: unset;
  top: -0.18rem
}

.process__item {
  display: flex;
  gap: 0.15rem;
  position: relative;
  max-width: 4.1rem;
  padding: 0.2rem;
  border-radius: 0.16rem;
  border: 1px solid #dfedeb;
  filter: grayscale(100%);
  opacity: .7
}

.process__item--active {
  filter: grayscale(0);
  opacity: 1;
  transition: filter .5s ease, opacity .5s ease;
  animation: process-item-scale .6s cubic-bezier(.4, 0, .2, 1);
  box-shadow: 0 14px 14px 0 rgba(0, 0, 0, .050980392156862744)
}

@keyframes process-item-scale {
  0% {
    transform: scale(1)
  }

  30% {
    transform: scale(1.08)
  }

  to {
    transform: scale(1)
  }
}

.process__item-image {
  aspect-ratio: 1/1;
  border-radius: 0.1rem;
  overflow: hidden;
  min-width: 1rem;
  height: 1rem
}

.process__item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover
}

.process__item-text {
  display: flex;
  flex-direction: column
}

.process__item-title {
  font-family: NunitoSans-SemiBold, system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  font-size: 0.2rem
}

.process__item-description {
  font-family: NunitoSans;
  font-size: 0.16rem;
  color: #4b4a4b
}

.process__item-number {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.16rem;
  font-family: NunitoSans;
  font-weight: 500;
  color: #fff;
  z-index: 1;
  width: 0.48rem;
  height: 0.48rem;
  background: #df0707;
  border-radius: 50%;
  border: 7px solid #fff;
  outline: 1px solid #df0707
}

.process__item-arrow,
.process__item-number {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.process__item-arrow {
  bottom: -0.18rem;
  width: 0.36rem
}

@media screen and (max-width: 1199.98px) {
  .process__item-arrow {
    position: absolute;
    bottom: unset;
    top: 50%;
    left: unset;
    right: -0.27rem;
    transform: translateY(-50%) rotate(-90deg)
  }

  .process__items {
    flex-direction: row;
    align-items: stretch;
    width: fit-content;
    margin-left: auto;
    margin-right: auto
  }

  .process__items-lower,
  .process__items-upper {
    display: flex;
    flex-direction: column;
    justify-content: center
  }

  .process__items-bar {
    width: 0.11rem;
    height: unset
  }

  .process__items-bar:after {
    width: 100%;
    height: var(--process-progress)
  }

  .process__items-upper .process__item-number {
    bottom: unset;
    left: unset;
    top: 50%;
    transform: translateY(-50%);
    right: -0.76rem
  }

  .process__items-lower .process__item-number {
    top: 50%;
    transform: translateY(-50%);
    left: -0.76rem
  }

  .process__items-lower .process__item-arrow {
    transform: translateY(-50%) rotate(90deg);
    right: unset;
    left: -0.27rem;
    top: 50%
  }
}

@media screen and (max-width: 768px) {
  .process {
    padding-top: 0.3rem;
    padding-bottom: 0.3rem
  }

  .process__items {
    gap: 0.2rem
  }

  .process__items-upper .process__item-number {
    right: -0.42rem
  }

  .process__items-lower .process__item-number {
    left: -0.41rem
  }

  .process__item {
    padding: 0.1rem
  }

  .process__item-arrow,
  .process__item-image {
    display: none
  }

  .process__item-number {
    border: 2px solid #fff;
    width: 0.3rem;
    height: 0.3rem
  }
}




/* solutions */
.solutions {
  width: 100%;
  background-color: var(--bc_color);
  padding: 60px 0;
  margin: 80px 0;
  background: url(static/images/ad1.webp) no-repeat center;
  background-size: cover;
  /* margin: 0 10%; */
}

.solutions .container {
  /* background: url(static/images/ad1.webp) no-repeat center; */
  padding: 10px 0;
  position: relative;
  z-index: 2;
  border-radius: 15px;
  overflow: hidden;
  height: 40vh;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
}

.solutions .title {
  text-align: center;
  font-size: 0.25rem;
  color: #000;
  margin-bottom: 40px;
}

.home_solutions_ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  margin-top: 2.90px;
  display: -webkit-flex;
  backdrop-filter: blur(6px);
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
  border-radius: 30px;
  position: relative;
  overflow: hidden;
  z-index: 4;
  background: rgba(255, 255, 255, 0.7);
  margin: 0 20px;
}

.home_solutions_ul li {
  width: 25%;
  display: flex;
  display: -webkit-flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  padding: 0.40px 3%;
  position: relative;
}


.home_solutions_ul li:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translate(0, -50%);
  width: 1px;
  height: 65%;
  background-color: #fff;
}

.home_solutions_text p span {
  font-family: NunitoSans-Bold, system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  font-size: 32px;
}

@media screen and (max-width: 1024px) {
  .home_solutions_ul {
    flex-wrap: wrap;
  }

  .home_solutions_ul li {
    width: 50%;
  }
}

@media screen and (max-width: 375px) {
  .home_solutions_ul li {
    width: 100%;
  }
}

/* home_do */

.home_do .container {
  display: flex;
  align-items: center;
  justify-content: space-between;

}

.home_do .container .do_content .title {
  font-family: NunitoSans-Bold, system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  font-size: 38px;
  margin-block-start: 0;
  margin-block-end: 0;
}

.home_do_text article p {
  font-family: NunitoSans;
  font-size: 18px;
  margin-block-start: 0;
  margin-block-end: 0;
  color: #4b4a4b;
}

/* do_btn */

.do_btn {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 30px;
}

a.btn {
  text-decoration: none;
  line-height: normal;
}

.btn {
  border: none;
  background: #df0707;
  color: #fff !important;
  padding: 15px 24px;
  border-radius: 46px;
  transition: .2s ease-in-out;
  font-size: 14px;
  cursor: pointer;
  display: inline-flex;
  justify-content: center;
  width: fit-content;
  gap: 15px;
  align-items: center;
  text-align: center;
  vertical-align: middle;
  touch-action: manipulation;
  background-image: none;
  white-space: nowrap;
  transform-origin: bottom;
  transition: width 0.3s ease;
  transition: background-color 0.3s ease;
}

.btn:hover {
  background-color: black;
  opacity: 8;
  box-shadow: none;
}

.btn--outlined {
  background-color: transparent;
  border: 1px solid #fff;
  color: #fff !important;
}

.icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

@media screen and (max-width: 768px) {
  .home_do .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 30px;
    margin-bottom: 0.5rem;
  }

  .do_btn {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-around;
  }

  .do_btn a {
    display: block;
    width: 50%;
  }

}

/* home_do_content */
.home_do {
  margin-bottom: 80px;
}

.home_do_content {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

@media screen and (max-width: 1200px) {
  .home_do_content {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 30px;
  }

  .what-we-do__item {
    width: 100%;
  }

}

.what-we-do__item {
  position: relative;
  aspect-ratio: 16/17;
  border-radius: 20px;
  overflow: hidden
}

.what-we-do__item-image {
  position: relative;
  z-index: 1;
  object-fit: cover;
  width: 100%;
  height: 100%
}

.what-we-do__item-content {
  padding: 200px 20px 30px;
  width: 100%;
  color: #fff;
  z-index: 2;
  position: absolute;
  bottom: 0;
  left: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: linear-gradient(180deg, transparent, #000 96.02%)
}

.what-we-do__item-more {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease-in-out
}

.what-we-do__item-title {
  font-size: 0.3rem;
  font-family: NunitoSans-SemiBold, system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica, Arial, sans-serif
}

.what-we-do__item-text {
  font-size: 0.18rem;
  font-family: NunitoSans
}


.home_do a.what-we-do__item:hover {
  cursor: pointer
}

.home_do a.what-we-do__item:hover .what-we-do__item-more {
  max-height: 150px
}

@media screen and (max-width: 1199.98px) {
  .what-we-do__items {
    grid-template-columns: repeat(1, 1fr)
  }

  .what-we-do__item {
    aspect-ratio: 4/3
  }

  .what-we-do__item-more {
    max-height: 150px
  }
}

@media screen and (max-width: 768px) {
  .home_do {
    padding-top: 30px;
    padding-bottom: 30px
  }

  .what-we-do__item {
    aspect-ratio: 9/10
  }

  .what-we-do__item-title {
    font-size: 0.2rem;
  }

  .what-we-do__item-text {
    font-size: 0.15rem;
  }


}





/* who for */
.who_for .wrap {
  margin-bottom: 0.8rem;
}

.who_for_title {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.who_for_title h2 {
  font-family: NunitoSans-Bold, system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  font-size: 0.45rem;
  margin-block-start: 0;
  margin-block-end: 0;
}

.who_for_title p {
  font-family: NunitoSans;
  font-size: 0.25rem;
  margin-block-start: 0;
  margin-block-end: 0;
  color: #4b4a4b;
}

@media screen and (max-width: 768px) {
  .who_for_title h2 {
    font-size: 0.3rem;
  }

  .who_for_title p {
    font-size: 0.2rem;
  }


}

.who_for_content {
  display: flex;
  width: 100%;
}

.who_for_content .text {
  width: 50%;
}

.who_for_content .text .title h3 {
  font-family: NunitoSans-Bold, system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  font-size: 0.4rem;
}

.who_for_content .text .title p {
  font-family: NunitoSans;
  font-size: 0.25rem;
  color: #4b4a4b;
}

@media screen and (max-width: 768px) {
  .who_for_content .text .title h3 {
    font-size: 0.3rem;
  }

  .who_for_content .text .title p {
    font-size: 0.2rem;
  }

}

.who_for_content .text .list {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.who_for_content .who_for_img {
  width: 50%;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  margin-left: 0.2rem;
}

.who_for_img .img {
  height: 2.7rem;
  border-radius: 1rem;
  overflow: hidden;
}

.who_for_content .who_for_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media screen and (max-width: 1024px) {
  .who_for_content {
    display: flex;
    flex-direction: column;
  }

  .who_for_content .text {
    width: 100%;
  }

  .who_for_content .who_for_img {
    width: 100%;
    margin-left: 0;
  }

}


/* who we are */
.who_we_are {
  margin-top: 80px;
}

.about-us {
  position: relative;
  color: #fff
}

.about-us__image {
  object-fit: cover;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1
}

.about-us__container {
  padding-top: 60px;
  padding-bottom: 60px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 30px
}

.about-us__left {
  display: flex;
  flex-direction: column;
  gap: 32px
}

.about-us__content {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding-bottom: 32px;
  border-bottom: 1px solid;
  border-image-source: linear-gradient(90deg, hsla(0, 0%, 100%, .7), hsla(0, 0%, 60%, 0));
  border-image-slice: 1
}

.about-us__title {
  font-size: 42px
}

.about-us__subtitle,
.about-us__title {
  font-family: NunitoSans-Bold, system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  margin-block-start: 0;
  margin-block-end: 0
}

.about-us__subtitle {
  font-size: 20px
}

.about-us__text p {
  font-family: NunitoSans;
  font-size: 18px;
  margin-block-start: 0;
  margin-block-end: 0
}

.about-us__list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px
}

.about-us__list-item {
  display: flex;
  align-items: start;
  gap: 10px
}

.about-us__list-item i {
  font-size: 12px;
  color: #fff;
  background-color: #df0707;
  padding: .60px .80px;
  border-radius: 50%
}

.icon-chevron-right-light:before {
  content: "\25B6";
}

[class*=" icon-"]:before,
[class^=icon-]:before {
  font-family: "Popping";
  font-style: normal;
  font-weight: 400;
  display: inline-block;
  text-decoration: inherit;
  text-align: center;
  font-variant: normal;
  text-transform: none;
  line-height: 10px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.about-us__list-text {
  display: flex;
  flex-direction: column;
  font-family: NunitoSans;
  gap: 10px;
}

.about-us__right {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.about-us__image-wrapper {
  position: relative;
  aspect-ratio: 4/3;
  grid-column: span 1;
  overflow: hidden;
  border-radius: 20px
}

.about-us__image-wrapper:first-child {
  aspect-ratio: 16/9;
  grid-column: span 2
}

.about-us__image-wrapper i {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 29px;
  color: #df0707
}

.about-us__image-wrapper i:after {
  content: "\25B6";
  text-align: center;
  align-content: center;
  position: absolute;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: #fff;
  z-index: -1
}

.about-us__image-wrapper:hover i {
  opacity: .8;
  transition: opacity .6s ease-in-out
}

.about-us__image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover
}

@media screen and (max-width: 1199.98px) {
  .about-us__container {
    grid-template-columns: unset
  }
}

@media screen and (max-width: 768px) {
  .about-us__title {
    text-align: center
  }

  .about-us__list {
    grid-template-columns: 1fr
  }

  .about-us__left .btn {
    width: 100%
  }

  .about-us__container {
    grid-template-columns: unset;
    padding-top: 30px;
    padding-bottom: 30px;
  }
}


/* feature */
.features {
  padding-top: 60px;
  padding-bottom: 60px;
  display: flex;
  flex-direction: column
}

.module-intro {
  display: flex;
  justify-content: space-between;
  margin-bottom: 80px;
}

.module-intro__title {
  font-family: NunitoSans-Bold, system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  font-size: 0.3rem;
  margin-block-start: 0;
  margin-block-end: 0;
}

.module-intro__text {
  font-family: NunitoSans;
  font-size: 0.18rem;
  color: #4b4a4b;
  margin-block-start: 0;
  margin-block-end: 0;
  max-width: 600px;
}

.features__items {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px
}

.features__item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  padding: 30px;
  border-radius: 20px;
  border: 1px solid #dfedeb;
  text-decoration: none;
  transition: box-shadow .3s
}

.features__item-image {
  height: 44px
}

.features__item-title {
  font-family: NunitoSans-Bold, system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  font-size: 22px;
  margin-block-start: 0;
  margin-block-end: 0;
  transition: color .3s
}

.features__item-text {
  padding-top: 10px;
  font-family: NunitoSans;
  font-size: 18px;
  color: #4b4a4b;
  margin-block-start: 0;
  margin-block-end: 0
}

.features__item:hover {
  box-shadow: 0 14px 14px 0 rgba(0, 0, 0, .05)
}

.features__item:hover .features__item-title {
  color: #df0707;
  text-decoration: underline
}

@media screen and (max-width: 1199.98px) {
  .features__items {
    grid-template-columns: repeat(2, 1fr)
  }
}

@media screen and (max-width: 768px) {
  .features {
    padding-top: 30px;
    padding-bottom: 30px
  }

  .features__items {
    grid-template-columns: repeat(1, 1fr)
  }
}


/* location */

/* faq */
.faqs {
  background-color: #f6f6f6;
  padding-top: 60px;
  padding-bottom: 60px
}

.faqs .module-intro {
  display: flex;
  justify-content: center;
  margin-bottom: 80px
}


.faqs .module-intro__title {
  text-align: center;
}

.faqs__wrapper {
  display: flex;
  flex-direction: column;
  gap: 80px;
}

.faqs__wrapper .accordion__items {
  /* max-width: 66.67%;
  margin-left: auto;
  margin-right: auto */
}

.faqs__wrapper .accordion__item {
  margin-top: 20px;
  background: #fff;
  box-shadow: unset;
  border-radius: .80px;
  overflow: hidden;
  outline: 1px solid #ececec
}

.faqs__wrapper .accordion__item:has(.accordion__checkbox:checked) {
  outline: unset
}

.faqs__wrapper .accordion__button {
  background: #fff;
  padding: 30px;
}

.faqs__wrapper .accordion__button:after {
  transform: rotate(90deg);
  color: #999
}

.faqs__wrapper .accordion__checkbox:checked~label .accordion__button {
  color: #df0707
}

.faqs__wrapper .accordion__checkbox:checked~label .accordion__button:after {
  transform: rotate(-90deg);
  color: #df0707
}

.faqs__wrapper .accordion__checkbox:checked~.accordion__text {
  padding-bottom: 30px !important
}

.faqs__wrapper .accordion__text {
  padding: 0 30px !important;
  display: none;
}

.faqs__wrapper .accordion__text.active {
  display: block;
  /* 展开时显示 */
}

.faqs__bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 40px;
}

.faqs__bottom-content {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faqs__bottom-title {
  font-size: 38px;
  font-family: NunitoSans-Bold, system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica, Arial, sans-serif
}

.faqs__bottom-text {
  font-size: 18px;
  font-family: NunitoSans;
  color: #4b4a4b
}

.faqs__bottom-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap
}

@media screen and (max-width: 768px) {
  .faqs {
    padding-top: 30px;
    padding-bottom: 30px
  }

  .faqs__wrapper {
    gap: 40px;
  }

  .faqs__bottom-buttons {
    flex-direction: column;
    width: 100%
  }

  .faqs__bottom-buttons .btn {
    width: 100%
  }

  .faqs .accordion__items {
    max-width: 100%
  }
}



/* contact us */
.in_banner .img {
  width: 100%;
  position: relative;
  height: 40vh;
}

.in_banner .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.in_banner .banner_text {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: absolute;
  top: 20%;
  left: 5%;
}

.in_banner .banner_text h2 {
  font-family: Raleway-SemiBold, system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  font-size: 0.2rem;
  color: #fff;
  text-transform: uppercase;
}

.in_banner .banner_text h1 {
  font-family: Raleway-Bold, system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  font-size: 0.48rem;
  color: #fff;
  margin-block-start: 0;
  margin-block-end: 0;
}

.in_banner .banner_text p {
  font-family: NunitoSans;
  font-size: 0.18rem;
  color: #fff;
  margin-block-start: 0;
  margin-block-end: 0;
  max-width: 600px;
  margin-bottom: 0.3rem;
}

@media screen and (max-width: 540px) {
  .in_banner .banner_text h2 {
    font-size: 0.15rem;
  }

  .in_banner .banner_text h1 {
    font-size: 0.3rem;
  }

  .in_banner .banner_text p {
    font-size: 0.12rem;
  }

}


.contact_container {
  display: flex;
  margin-top: 80px;
  margin-bottom: 80px;
}

.company_message {
  width: 40%;
  margin-left: 10%;
  transition: all 2s ease-in-out;
}

.contactform__connect {
  width: 80%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: space-evenly;
  -ms-flex-pack: space-evenly;
  justify-content: space-evenly;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 100%;
  background-color: #f9f9f9;
  padding: 30px;
}

.contactform__connect h3 {
  font-family: Raleway-Bold, system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  margin-bottom: 40px;
}

@media only screen and (max-width: 768px) {
  .contactform__connect {
    width: 100%
  }
}

.contactform__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-family: NunitoSans-SemiBold, system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  font-size: 16px;
  text-decoration: none;
  text-align: center;
  width: 70%
}

.contact_form {
  width: 40%;
}

.contact_form h2 {
  font-size: 0.5rem;
}

@media only screen and (max-width: 768px) {
  .contactform__item {
    padding-bottom: 50px
  }
}

.contactform__item i {
  font-size: 30px;
  color: #df0707
}

.contactform__item a {
  text-decoration: none;
  color: initial !important
}

.contactform__item a.focus,
.contactform__item a:focus,
.contactform__item a:hover {
  text-decoration: underline
}

.input {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 10px;
  margin-bottom: 20px;
}

.input input,
.textarea textarea {
  font-family: NunitoSans;
  font-size: 0.14rem;
  line-height: 0.18rem;
  padding: 0.1rem;
  border: 1px solid #bababa;
  border-radius: 4px;
  width: 100% !important;
}

.submit button {
  width: 100%;
  font-family: NunitoSans-Bold, system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  color: #fff;
  text-align: center;
  padding: 0.2rem;
  text-transform: uppercase;
  background-color: #df0707;
  border: none;
  border-radius: 4px;
}

@media screen and (max-width: 768px) {
  .contact_container {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-top: 30px;
  }

  .company_message {
    width: 100%;
  }

  .contact_form {
    width: 100%;
  }

}





/* buttom_section */
.bottom-section {
  min-height: 450px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background-repeat: no-repeat;
  background-size: cover
}

.bottom-section__content {
  margin-top: auto;
  margin-bottom: auto
}



/* footer */
.footer {
  background-color: #fff;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, .1)
}

.footer__container {
  position: relative;
  padding-top: 60px;
  display: flex;
  flex-direction: column
}

.footer__main {
  display: flex;
  gap: 30px;
  padding-bottom: 30px
}

@media screen and (max-width: 1199.98px) {
  .footer__main {
    flex-direction: column;
    align-items: center;
    justify-content: center
  }
}

.footer__details {
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 430px
}

.footer__details-text p {
  font-size: 16px;
  font-family: NunitoSans;
  margin-block-start: 0
}

.footer__details-upper {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

@media screen and (max-width: 1199.98px) {
  .footer__details-upper {
    align-items: center;
    text-align: center
  }
}

@media screen and (max-width: 1199.98px) {
  .footer__details {
    max-width: unset;
    flex-direction: row;
    flex-wrap: wrap
  }
}

.footer__socials {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer__socials-text {
  font-size: 18px;
  font-family: NunitoSans-Bold, system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica, Arial, sans-serif
}

.footer__socials-list {
  display: flex;
  gap: 10px;
}

.footer__socials-link {
  text-decoration: none
}

.footer__socials-link i {
  font-size: 32px;
}

.footer__socials-link:hover {
  color: #f76363
}

@media screen and (max-width: 1199.98px) {
  .footer__socials {
    margin-left: auto;
    margin-right: auto;
    text-align: center
  }
}

.footer__columns {
  margin-left: auto;
  display: flex;
  gap: 30px;
}

@media screen and (max-width: 1199.98px) {
  .footer__columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    margin-left: unset;
    flex-wrap: unset
  }
}

.footer__column {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer__column-title {
  font-size: 16px;
  font-family: NunitoSans-Bold, system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  margin-block-start: 0;
  margin-block-end: 0
}

.footer__column-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer__column-link {
  font-size: 16px;
  font-family: NunitoSans;
  color: #323232;
  text-decoration: none
}

.footer__column-link:hover {
  color: #f76363
}

.footer__column-link:focus {
  outline: none;
  color: #f76363
}

.footer__bottom {
  position: relative;
  padding-top: 20px;
  padding-bottom: 30px;
  border-top: 1px solid #dfedeb;
  display: flex;
  justify-content: space-between;
  gap: 24px;
}

@media screen and (max-width: 1199.98px) {
  .footer__bottom {
    flex-direction: column;
    justify-content: center;
    align-items: center
  }
}

.footer__links {
  display: flex;
  gap: 30px;
  align-items: center
}

.footer__copyright {
  margin-block-start: 0;
  margin-block-end: 0
}

.footer__copyright,
.footer__link {
  font-size: 14px;
  font-family: NunitoSans;
  color: #686868
}

.footer__link {
  text-decoration: none
}

.footer__link:hover {
  color: #323232
}

.footer__goto {
  position: absolute;
  top: -30px;
  right: -90px;
  padding: 22px;
  border-radius: 50%;
  background-color: #df0707;
  color: #fff;
  cursor: pointer;
  transition: background-color .3s ease;
  user-select: none
}

.footer__goto i {
  font-size: 12px
}

.footer__goto:hover {
  background-color: #f76363
}

/* sulotion */
.solutions_banner {
  /* margin-top: 80px; */
  position: relative;
}

.solutions_banner img {
  width: 100%;
  height: auto;
  /* height: 70vh; */
  object-fit: cover;
}

@media screen and (max-width: 1300px) {
  .solutions_banner img {
    width: 100%;
    /* height: auto; */
    height: 70vh;
    object-fit: cover;
  }

}

.solutions_banner .container .text {
  position: absolute;
  top: 20%;
  left: 10%;
}

.solutions_label {
  display: block;
  color: white;
  /* font-size: 20px; */
  font-size: 0.2rem;
  font-weight: 400;
  /* margin-bottom: 20px; */
  margin-bottom: 0.2rem;
}

.solutions_banner .container .text h1 {
  color: white;
  /* font-size: 50px; */
  font-size: 0.5rem;
  /* margin-bottom: 20px; */
  margin-bottom: 0.2rem;
}

.solutions_banner .container .text h2 {
  color: white;
  /* font-size: 30px; */
  font-size: 0.3rem;
  margin-bottom: 0.2rem;
}

.solutions_banner .container .text p {
  color: white;
  /* font-size: 18px; */
  font-size: 0.18rem;
  margin-bottom: 0.2rem;
}

.solutions_banner .container .text .list p {
  color: white;
}

.solutions_banner .container .text .list {
  margin-bottom: 0.2rem;
}

@media screen and (max-width: 768px) {
  .solutions_label {
    font-size: 0.15rem;
  }

  .solutions_banner .container .text h1 {
    font-size: 0.4rem;
  }

  .solutions_banner .container .text h2 {
    font-size: 0.2rem;
  }

  .solutions_banner .container .text p {
    font-size: 0.15rem;
  }

  .solutions_banner .container .text {
    top: 10%;
  }
}

.solutions_banner2 {
  background-color: red;
  padding: 0.3rem;
  position: relative;
  bottom: 0.4rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.solutions_banner2 .title h2 {
  /* font-size: 34px; */
  font-size: 0.34rem;
  line-height: 0.44rem;
  margin: 0.3rem 0;
  /* margin: 30px 0; */
  color: #fff;
}

.solutions_banner2 .grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.solutions_banner2 .banner2_text {
  margin-top: 0.3rem;
}


.solutions_banner2 .banner2_text p {
  font-size: 0.24rem;
  line-height: 0.28rem;
  color: white;
}

.solutions_banner2 .banner2_logo {
  width: 0.54rem;
  height: 0.54rem;
}

.solutions_banner2 .banner2_logo img {
  width: 100%;
  height: auto;
}

/* solutions_do */
.solutions_do {
  text-align: center;
}

.solutions_do .title h2 {
  text-align: center;
  font-size: 0.64rem;
  line-height: 0.72rem;
  letter-spacing: .10px;
}

.solutions_do .text p {
  margin-top: 0.8rem;
  /* font-size: 10px; */
  text-align: center;
}

.solutions_do .list {
  margin-top: 0.8rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: space-around;
  align-items: flex-end;
}

.solutions_do a {
  text-align: center;
  margin-top: 0.8rem;
}

.solutions_do .img {
  width: 60%;
  margin-top: 0.8rem;
}

.solutions_do .img img {
  width: 100%;
}

.solutions_introduce1 {
  margin-right: 10%;
  background-color: Off-white;
  margin-top: 0.8rem;
  background-color: #f9f9f9;
}

.solutions_introduce1 .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.solutions_introduce1 .text {
  padding-top: 80px;
  padding-left: 10%;
  padding-right: 10px;
  width: 52%;
}

.solutions_introduce1 .text h2 {
  font-size: 0.5rem;
  line-height: 0.6rem;
  /* font-weight: 700; */
}

.solutions_introduce1 .content {
  margin-bottom: 0.8rem;
}

.solutions_introduce1 .content p {
  font-size: 0.24rem;
  line-height: 0.4rem;
  margin-top: 0.5rem;
}

.solutions_introduce1 .img {
  width: 48%;

  /* position: absolute; */
}

.solutions_introduce1 .img img {
  width: 100%;
  height: auto;
  /* position: relative; */
}

@media screen and (max-width: 1024px) {
  .solutions_introduce1 .container {
    flex-direction: column;
  }

  .solutions_introduce1 .text {
    width: 100%;
  }

  .solutions_introduce1 .img {
    width: 100%;
  }

}

.solutions_introduce2 {
  margin-left: 10%;
  background-color: Off-white;
  margin-top: 80px;
  background-color: #f9f9f9;
}

.solutions_introduce2 .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.solutions_introduce2 .text {
  padding-top: 80px;
  padding-right: 10%;
  padding-left: 10px;
  width: 52%;
}

.solutions_introduce2 .text h2 {
  font-size: 40px;
  line-height: 48px;
  /* font-weight: 700; */
}

.solutions_introduce2 .content {
  margin-bottom: 80px;
}

.solutions_introduce2 .content p {
  font-size: 18px;
  line-height: 24px;
  margin-top: 40px;
}

.solutions_introduce2 .img {
  width: 48%;

  /* position: absolute; */
}

.solutions_introduce2 .img img {
  width: 100%;
  height: auto;
  /* position: relative; */
}

@media screen and (max-width: 1024px) {
  .solutions_introduce2 .container {
    flex-direction: column-reverse;
  }

  .solutions_introduce2 .text {
    width: 100%;
  }

  .solutions_introduce2 .img {
    width: 100%;
  }

}

/* richtext */
.container .richtext h1 {
  margin-top: 80px;
  margin-bottom: 40px;
  font-size: 40px;
  line-height: 48px;
}

.container .richtext p {
  font-size: 18px;
  line-height: 24px;
  font-weight: 300;
  margin-top: 20px;
  margin-bottom: 20px;
}

.paragraph__small {
  margin-top: 20px;
}



/* solution-blocks */

.padding--m {
  padding-top: 40px !important;
  padding-bottom: 40px !important;
}

.solution-blocks {
  background-color: #f9f9f9;
  margin-top: 80px;
}

.solution-blocks__title {
  margin: 0;
  text-align: center;
  font-size: 40px;
  margin-top: 40px;
}

.solution-blocks__learn-more {
  margin-top: auto;
  position: relative;
  color: #df0707;
  font-size: 14px;
  font-family: NunitoSans;
  margin-right: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: flex-end
}

.solution-blocks__learn-more:after {
  position: absolute;
  font-family: iconfont;
  content: "\e62b";
  font-size: 14px;
  line-height: 15px;
  right: -20px
}

.solution-blocks__items {
  padding-top: 50px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding-bottom: 50px
}

.solution-blocks__item {
  position: relative;
  flex: 0 1 30%;
  margin-bottom: 50px;
  padding: 16px;
  box-shadow: 0 5px 15px 0 rgba(0, 0, 0, .07);
  text-decoration: none;
  display: flex;
  flex-direction: column
}

.solution-blocks__item:hover {
  box-shadow: none
}

.solution-blocks__item:hover .solution-blocks__item-icon,
.solution-blocks__item:hover .solution-blocks__item-text,
.solution-blocks__item:hover .solution-blocks__item-title,
.solution-blocks__item:hover:after {
  opacity: .8;
  transform: scale(.99)
}

.solution-blocks__item-header {
  display: flex;
  align-items: center
}

.solution-blocks__item-icon {
  width: 50px;
  margin-right: 15px
}

.solution-blocks__item-text {
  font-family: NunitoSans-Light, system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 20px
}

.solution-blocks__item-title {
  font-family: Raleway-SemiBold, system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  font-size: 20px;
  line-height: 24px
}

@media only screen and (max-width: 1199.98px) {
  .solution-blocks__item {
    flex: 0 1 48%
  }
}

@media only screen and (max-width: 430px) {
  .solution-blocks__item {
    flex: 0 1 100%
  }
}

/* accordion */


.accordion {
  margin-bottom: 70px
}

.accordion h3 {
  font-size: 40px;
  text-align: center;
  margin-top: 40px;
}

.accordion__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  align-items: center;
}

.accordion__item {
  margin-top: 20px;
  border-radius: 6px;
  box-shadow: 1px 1px 2px 1px rgba(39, 39, 39, .1);
  width: 60%;
}

.accordion__button {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 20px;
  width: 100%;
  text-align: left;
  font-family: Raleway-SemiBold, system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  font-size: 20px;
  border: none;
  background-color: transparent;
  cursor: pointer;
  position: relative
}

.accordion__button,
.accordion__button:after {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex
}

.accordion__button:after {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-transition: all 1s ease;
  transition: all 1s ease;
  font-family: iconfont;
  content: "\e62b";
  color: #fb5863;
  font-size: 15px;
}

.accordion__button.focus,
.accordion__button:focus,
.accordion__button:hover {
  background-color: hsla(0, 0%, 39.2%, .05)
}

.accordion__checkbox:checked~label .accordion__button:after {
  -webkit-transform: rotate(90deg);
  transform: rotate(90def)
}

.accordion__checkbox:checked~label .accordion__button.focus,
.accordion__checkbox:checked~label .accordion__button:focus,
.accordion__checkbox:checked~label .accordion__button:hover {
  background-color: unset
}

.accordion__checkbox:checked~.accordion__text {
  max-height: 600px;
  padding: 20px
}

.accordion__text {
  overflow: hidden;
  max-height: 0;
  -webkit-transition: all .5s ease;
  transition: all .5s ease;
  padding: 0 20px
}

.accordion__text p {
  font-family: NunitoSans-Light, system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica, Arial, sans-serif !important
}


/* share */
.share {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding: 25px 40px
}

.share__now {
  font-family: Raleway-SemiBold, system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  font-size: 24px;
  line-height: 29px;
  color: #8d8d8d
}

.share__social {
  margin-left: 60px;
  display: flex;
  gap: 30px
}

.share__social-item {
  text-decoration: none
}

.share__social-item:hover i {
  color: #df0707
}

@media only screen and (max-width: 768px) {
  .share {
    flex-direction: column;
    justify-content: center
  }

  .share__now {
    margin-bottom: 20px
  }

  .share__social {
    margin-left: 0
  }
}

/* chooseus */


.chooseus__items {
  padding-top: 60px;
  display: flex;
  flex-direction: column;
  padding-bottom: 60px
}

.chooseus__title {
  text-align: center
}

.chooseus__bg {
  background-color: #f9f9f9;
  left: 0;
  width: 100%;
  height: 100%;
  position: absolute;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: -1
}

.chooseus__bg--with-block {
  top: 10vh;
  height: calc(100% - 10vh)
}

.chooseus__item {
  display: flex;
  align-items: center
}

.chooseus__item>* {
  flex: 1 1 50%;
  width: 50%
}

.chooseus__item:nth-of-type(2n) {
  flex-direction: row-reverse
}

.chooseus__item:nth-of-type(2n) .chooseus__description {
  justify-content: start
}

.chooseus__description {
  display: flex;
  justify-content: end
}

.chooseus__description p {
  position: relative;
  font-family: NunitoSans-Light, system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 20px;
  width: 55%
}

.chooseus__description p:after {
  position: absolute;
  top: 0;
  left: -30px;
  font-family: 'Popping';
  content: "\2714";
  font-size: 18px;
  line-height: 20px;
  color: #df0707
}

.chooseus__description-wrapper {
  max-width: 720px;
  display: flex;
  justify-content: center;
  align-items: center
}

@media only screen and (max-width: 1199.98px) {
  .chooseus__item {
    flex-direction: column-reverse !important
  }

  .chooseus__item>* {
    flex: 1 1 100%;
    width: 100%
  }

  .chooseus__description {
    padding-top: 20px;
    padding-bottom: 20px;
    justify-content: center !important
  }
}


/* block-solutions */

.block-solutions {
  background-color: unset;
  display: flex;
  flex-direction: row
}

.block-solutions__item {
  flex: 1 1 0px;
  margin: .50px;
  background-color: #fff;
  box-shadow: 0 5px 15px 0 rgba(0, 0, 0, .07);
  padding: 10px
}

.block-solutions__item-title {
  font-family: Raleway-SemiBold, system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  font-size: 24px;
  line-height: 29px;
  color: #df0707
}

.block-solutions__item-list {
  font-family: NunitoSans-Light, system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 24px;
}

.block-solutions__item-col {
  flex: 1 1 0px;
  display: flex;
  flex-direction: column
}

@media only screen and (max-width: 768px) {
  .block-solutions {
    flex-direction: column
  }
}

/* stamping */
.stamping {
  display: flex;
  justify-content: space-between;
  background-color: #f9f9f9;
  padding-bottom: 80px
}

.stamping__left,
.stamping__right {
  background-color: #e8e8e8;
  width: calc(50% - 50px);
  display: flex
}

.stamping__left-wrapper,
.stamping__right-wrapper {
  max-width: 720px;
  min-width: 40%;
  padding-top: 40px;
  padding-bottom: 40px
}

.stamping__icon {
  height: 48px
}

.stamping__title {
  margin-top: 10px;
  font-family: Raleway-SemiBold, system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  font-size: 28px;
  line-height: 33px
}

.stamping__advantage,
.stamping__disadvantage {
  position: relative;
  font-family: NunitoSans-SemiBold, system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  font-size: 20px;
  line-height: 27px;
  padding-left: 30px
}

.stamping__advantage-list,
.stamping__disadvantage-list {
  padding-left: 30px
}

.stamping__advantage-list li,
.stamping__disadvantage-list li {
  font-family: NunitoSans-Light, system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 20px
}

.stamping__advantage:before {
  content: "\f062"
}

.stamping__advantage:before,
.stamping__disadvantage:after {
  position: absolute;
  font-family: icomoon;
  font-size: 16px;
  color: #fb5863;
  top: 0;
  left: 0
}

.stamping__disadvantage:after {
  content: "\f063"
}

.stamping__left {
  justify-content: flex-end;
  padding-left: 60px
}

.stamping__left-wrapper>* {
  margin-right: 20%
}

@media only screen and (max-width: 1199.98px) {
  .stamping__left {
    padding-left: 40px
  }
}

@media only screen and (max-width: 992px) {
  .stamping__left {
    padding-left: 30px
  }
}

@media only screen and (max-width: 767.98px) {
  .stamping__left {
    padding-left: 20px
  }
}

.stamping__right {
  justify-content: flex-start;
  padding-right: 60px
}

.stamping__right-wrapper>* {
  margin-left: 20%
}

@media only screen and (max-width: 1199.98px) {
  .stamping__right {
    padding-right: 40px
  }
}

@media only screen and (max-width: 992px) {
  .stamping__right {
    padding-right: 30px
  }
}

@media only screen and (max-width: 767.98px) {
  .stamping__right {
    padding-right: 20px
  }
}

@media only screen and (max-width: 768px) {
  .stamping {
    flex-direction: column
  }

  .stamping__left,
  .stamping__right {
    width: 90%
  }

  .stamping__left {
    margin-bottom: 30px
  }

  .stamping__right {
    margin-left: auto
  }
}

/* icon-list */
.icon-listing__wrapper {
  padding-top: 100px;
  margin: 0 auto
}

.icon-listing__title {
  font-family: Raleway-SemiBold, system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  font-size: 28px;
  line-height: 33px
}

.icon-listing__item {
  margin-bottom: 60px
}

.icon-listing__upper {
  display: flex;
  align-items: center
}

.icon-listing__icon {
  width: 44px;
  height: 44px
}

.icon-listing__title {
  margin-left: 10px
}

.icon-listing__description p {
  font-family: NunitoSans-Light, system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 20px
}

.img .img-item {
  /* position: relative; */
}

.img .img-item img {
  width: 100%;
  height: auto;
  /* position: absolute; */
}

/* capability */
.capability {
  text-align: center;
  align-content: center;
  height: 40vh;
  width: 100%;
  background: url(./static/images/banner.png);
}

.capability .text p {
  font-size: 28px;
  line-height: 40px;
  margin-bottom: 20px;
}


/* news */
.news_banner .container .news_label {
  display: block;
  font-size: 0.3rem;
  color: red;
  font-weight: bold;
  margin-bottom: 0.4rem;
  margin-top: 0.2rem;
}

.news_banner .container h1 {
  font-size: 0.6rem;
  line-height: 0.7rem;
  margin-bottom: 0.4rem;
}

.news_banner .container h2 {
  font-size: 0.3rem;
  font-weight: 400;
}

/* blog */
.blogs {
  margin-bottom: 100px
}

.blogs__filter {
  display: flex;
  align-items: center;
  margin-top: 0.2rem;
  margin-bottom: 0.2rem;
}

.blogs__filter-title {
  font-size: 18px;
  font-family: NunitoSans-SemiBold, system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  margin-right: 10px
}

.blogs__filter-items {
  display: flex;
  flex-wrap: wrap
}

.blogs__filter-item {
  background-color: #f9f9f9;
  margin-right: 15px;
  margin-bottom: 10px;
  border-radius: 5px;
  min-width: 75px
}

.blogs__filter-item a {
  display: inline-block;
  width: 100%;
  text-align: center;
  padding: 5px 13px;
  font-size: 13px;
  color: #747474;
  text-decoration: none
}

.blogs__filter-item--active,
.blogs__filter-item:hover {
  background-color: #f76363
}

.blogs__filter-item--active a,
.blogs__filter-item:hover a {
  color: #fff
}

.blogs__items {
  position: relative;
  margin-top: 25px;
  flex-wrap: wrap
}

.blogs__description,
.blogs__items {
  display: flex;
  justify-content: space-between
}

.blogs__description {
  margin-top: -40px;
  background-color: #fff;
  margin-left: 20px;
  margin-right: 20px;
  padding: 13px;
  z-index: 1;
  box-shadow: 0 5px 15px 0 rgba(0, 0, 0, .07);
  flex-direction: column;
  flex-grow: 1
}

.blogs__description:only-child {
  margin-top: unset;
  flex-grow: unset
}

.blogs__text {
  font-family: NunitoSans-Light, system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 20px
}

.blogs__item {
  position: relative;
  text-decoration: none;
  flex: 0 1 calc(33% - 10px);
  /* margin-bottom: 50px; */
  display: flex;
  flex-direction: column;
  width: calc(33% - 10px)
}

.blogs__item:last-child {
  padding-right: 0
}

.blogs a.blogs__item:hover .blogs__description {
  box-shadow: none
}

.blogs a.blogs__item:hover .blogs__description>* {
  opacity: .8;
  transform: scale(.99)
}

.blogs__image {
  width: 100%;
  /* height: 250px; */
  position: relative;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: -1
}

.blogs__image img {
  width: 100%;
  height: auto;
}

.blogs__image:after {
  position: absolute;
  content: "";
  height: 4px;
  width: 100%;
  background-color: #df0707;
  left: 0;
  bottom: 0
}

.blogs__title {
  font-size: 24px;
  line-height: 28px;
  font-family: Raleway-SemiBold, system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  margin-block-end: 14px
}

.blogs__footer {
  display: flex;
  align-items: center
}

.blogs__category {
  background-color: #f9f9f9;
  margin-right: 15px;
  border-radius: 5px;
  min-width: 75px;
  padding: 5px 13px;
  font-size: 13px;
  color: #747474
}

.blogs__date {
  color: #a80000;
  font-family: NunitoSans;
  font-size: 14px;
  line-height: 19px;
  margin-right: 10px
}

.blogs__loadmore {
  position: absolute;
  flex: 1 1 100%;
  width: 100%;
  display: flex;
  justify-content: center;
  bottom: 0
}

@media only screen and (max-width: 768px) {
  .blogs__item {
    flex: 0 1 100%;
    width: 100%
  }

  .blogs__filter {
    flex-direction: column;
    margin-bottom: 0.2rem;
  }

  .blogs__filter-title {
    margin-bottom: 0.15rem;
  }
}


/* about */
.about_factory {
  /* position: relative; */
  width: 100%;
  height: auto;
}

.about_factory .img-fluid {
  width: 100vw;
  height: auto;
  /* position: absolute; */
}



/* numbers__items */
.numbers__pretext,
.numbers__title {
  text-align: center
}

.numbers__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  padding-left: 50px;
  padding-right: 50px;
  margin-top: 80px;
  margin-bottom: 80px;
}

@media only screen and (max-width: 768px) {
  .numbers__items {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column
  }
}

.numbers__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 24%;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center
}

.numbers__item img {
  max-height: 80px;
  max-width: 70px
}

@media only screen and (max-width: 768px) {
  .numbers__item {
    width: 100%;
    margin-bottom: 40px
  }
}

.numbers__text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  font-size: 14px;
  font-family: NunitoSans;
  margin-left: 20px
}

.numbers__text--semibold {
  font-family: NunitoSans-SemiBold, system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  font-size: 18px
}

@media only screen and (max-width: 768px) {
  .numbers__text {
    width: 80%;
    align-items: center;
    text-align: center
  }
}

@media only screen and (max-width: 390px) {
  .numbers__text {
    width: 80%
  }
}

.numbers__number {
  padding: 10px 0;
  font-size: 50px;
  line-height: 39px;
  font-family: NunitoSans-Bold, system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica, Arial, sans-serif
}




/* milistone */
.milestones {
  position: relative;
  display: flex;
  justify-content: center;
  --card-margin: 35px
}

.milestones:after,
.milestones:before {
  content: "";
  position: absolute;
  width: 253px;
  height: 253px;
  background-position: 50%;
  background-size: cover;
  background-image: url();
  z-index: -1
}

@media only screen and (max-width: 1199.98px) {

  .milestones:after,
  .milestones:before {
    width: 150px;
    height: 150px
  }
}

@media only screen and (max-width: 768px) {

  .milestones:after,
  .milestones:before {
    content: none
  }
}

.milestones:before {
  left: 0
}

.milestones:after {
  right: 0;
  bottom: 20%
}

.milestones__list {
  display: flex;
  flex-wrap: wrap;
  position: relative
}

.milestones__list:before {
  content: "";
  position: absolute;
  top: 0;
  height: calc(100% - 100px);
  width: 5px;
  background: #d3d3d3;
  left: 50%;
  transform: translateX(-50%)
}

.milestones__item {
  position: relative;
  flex: 0 1 50%
}

.milestones__item :before {
  width: var(--card-margin);
  height: 5px;
  top: 20px
}

.milestones__item :after,
.milestones__item :before {
  content: "";
  position: absolute;
  background-color: #df0707
}

.milestones__item :after {
  top: 10px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 4px solid #fff;
  z-index: 1
}

.milestones__item:nth-child(odd) :before {
  right: 0
}

.milestones__item:nth-child(odd) :after {
  right: -12px
}

.milestones__item:nth-child(odd) .milestones__item-card {
  margin-right: var(--card-margin)
}

.milestones__item:nth-child(2n) {
  top: 50px
}

.milestones__item:nth-child(2n) :before {
  left: 0
}

.milestones__item:nth-child(2n) :after {
  left: -12px
}

.milestones__item:nth-child(2n) .milestones__item-card {
  margin-left: var(--card-margin)
}

.milestones__item-card {
  background: #fff;
  padding: 1em;
  box-shadow: 0 5px 15px 0 rgba(0, 0, 0, .07), 0 15px 4px 0 rgba(50, 50, 93, .01);
  margin-bottom: 1em
}

.milestones__date {
  font-family: NunitoSans-Bold, system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  /* font-size: 320px;
  line-height: 320x; */
  letter-spacing: 2.4px
}

.milestones__description {
  font-family: NunitoSans-Bold, system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica, Arial, sans-serif
}

.milestones__description,
.milestones__facts {
  font-size: 14px;
  line-height: 18px
}

@media only screen and (max-width: 768px) {
  .milestones__list:before {
    left: 0
  }

  .milestones__item {
    flex: 0 1 100%;
    top: 20px !important
  }

  .milestones__item :before {
    left: 0 !important
  }

  .milestones__item :after {
    left: -12px !important
  }

  .milestones__item-card {
    margin-left: var(--card-margin);
    margin-right: unset !important
  }
}



/* table */
table {
  box-shadow: 1px 1px 2px 1px rgba(39, 39, 39, .05);
  border-radius: 5px;
  border-collapse: separate;
  border-spacing: 0;
  table-layout: auto
}

table td,
table th {
  padding: 10px;
  border: 1px solid #e4e8e5;
  border-left: unset
}

table td i {
  font-size: 16px
}

table td p {
  margin-block-end: 7px;
  margin-block-start: 0;
  font-family: NunitoSans
}

table thead {
  background-color: #df0707;
  font-size: 11px;
  text-transform: uppercase;
  color: #fff
}

table thead tr th {
  border: none
}

table thead tr:nth-child(2) {
  background-color: #e8e8e8;
  color: #4b4b4b;
  text-transform: none;
  font-size: 10px;
  font-family: NunitoSans
}

table thead tr:nth-child(2) th {
  padding: 5px 8px
}

table thead tr:nth-child(2) th:empty {
  background-color: #df0707;
  border: none
}

table thead tr:first-child th:first-child {
  border-top-left-radius: 5px
}

table thead tr:first-child th:last-child {
  border-top-right-radius: 5px
}

table tbody {
  font-size: 14px;
  font-family: NunitoSans;
  line-height: 14px
}

table tbody tr>:first-child {
  border-left: 1px solid #e4e8e5
}

table tbody tr:last-child :first-child {
  border-bottom-left-radius: 5px
}

table tbody tr:last-child :last-child {
  border-bottom-right-radius: 5px
}

table tbody tr th {
  text-align: left;
  font-size: 16px;
  font-family: NunitoSans-SemiBold, system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  background-color: #f9f9f9;
  white-space: nowrap
}

.cta {
  background-color: #f9f9f9;
  padding: 20px;
  text-decoration: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  position: relative;
  box-shadow: -1px 1px 2px 1px rgba(0, 0, 0, .15)
}

@media only screen and (max-width: 768px) {
  .cta {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column
  }
}

.cta:after {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-family: icomoon;
  content: "\2192";
  height: 100%;
  font-size: 36px;
  padding-left: 40px;
  padding-right: 20px;
  color: #df0707
}

@media only screen and (max-width: 768px) {
  .cta:after {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    width: 100%;
    padding-left: 0;
    padding-right: 0
  }
}

.cta__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column
}

.cta__title {
  font-family: NunitoSans-Bold, system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  font-size: 28px;
  -webkit-margin-after: .5em;
  margin-block-end: .5em;
  line-height: 32px
}

.cta__subtitle {
  font-family: NunitoSans-SemiBold, system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica, Arial, sans-serif
}

/* resources */
.resources_banner {
  padding-top: 60px;
  padding-bottom: 20px;
  /* width: 100%; */
  background: url(./static/images/plasticstop-image-2x.jpg);
  text-align: left;
  display: grid;
  grid-template-columns: 1fr 1fr;
}



.resources_banner .label {
  font-size: 20px;
  color: #df0707;
}

.resources_banner .title h1 {
  font-size: 50px;
  margin: 33.5px 0;
  color: #323232
}

.resources_banner .text p {
  font-size: 18px;
  margin: 10px 0;
}

.padding--l {
  padding: 60px 0;
}

/* faq */

.faq_banner {
  margin-top: 80px;
  margin-bottom: 80px;
}

.faq_banner .label {
  font-size: 20px;
  color: #df0707;
}

.faq_banner .title h1 {
  font-size: 50px;
  margin: 33.5px 0;
  color: #323232
}

.faq_banner .text p {
  font-size: 18px;
  margin: 10px 0;
}

.faq_section {
  display: flex;
}

.sections_left {
  width: 20%;
  margin-right: 20px;
}

.sections_left .title h2 {
  font-size: 18px;
  font-weight: 500;
}

.sections_left .section_li {
  margin-left: 15px;
  margin-top: 30px;
  border-radius: 7.5px;
  overflow: hidden;
}

.section_li p {
  font-size: 15px;
  background-color: #bdb8b8;
}

.sections_right {
  width: 70%;

}

/* customers */
.tubiao canvas {
  width: 360px !important;
  height: 360px !important;
}

.chart-container {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
}

@media screen and (max-width: 1080px) {
  .chart-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  /* .tubiao canvas {
    width: 100% !important;
    height: 100% !important;
  } */
}

/* our team */
.team_ceo .container {
  display: flex;
  margin-top: 1rem;
}

.team_ceo .container .left {
  width: 100%;
  height: auto;
}

.team_ceo .container .left img {
  width: 100%;
  height: auto;
}

.team_ceo .container .left .introduce {
  width: 80%;
  background-color: #fff;
}

.team_ceo .container .left .introduce {
  position: relative;
  bottom: 0.3rem;
  left: 0.1rem;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.introduce .name h2 {
  font-size: 0.25rem;
  line-height: 0.30rem;
  margin-left: 0.1rem;
}

.introduce .posts h2 {

  font-size: 0.2rem;
  line-height: 0.25rem;
  color: #a80000;
  margin-left: 0.1rem;
}

.team_ceo .container .right ul {
  padding-left: 0.3rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
}

.team_ceo .container .right ul li p {
  margin-top: 0.37rem;
  font-size: 0.25rem;
  font-weight: 700;
}

.team_ceo .container .right ul li a {
  color: #a80000;
}

.team_number .container {
  margin-top: 0.8rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.8rem;
}

.team_number .container .number {
  display: flex;
  align-items: center;
}

.team_number .container .number .introduce {
  position: relative;
  left: -0.15rem;
  background-color: white;
  top: 0.60rem;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

@media screen and (max-width: 1024px) {
  .team_ceo .container {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .team_ceo .container .left {
    width: 100%;
    height: auto;
  }

}

@media screen and (max-width: 768px) {
  .team_number .container {
    grid-template-columns: 1fr;
  }
}

/* footer_img */
.footer_img .banner {
  width: 100%;
  height: 40vh;
  margin-top: 1rem;
  position: relative;
}

.footer_img .banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.footer_img .banner .text {
  position: absolute;
  bottom: 1.5rem;
  left: 1rem;
}

.footer_img .banner .text h3 {
  font-size: 0.25rem;
  line-height: 0.30rem;
  margin-bottom: 0.25rem;
  font-weight: 700;
}

@media screen and (max-width: 540px) {
  .footer_img .banner .text h3 {
    font-size: 0.2rem;
    line-height: 0.25rem;
  }
}