.home-banner {
  background: url("../img/banner-bg.webp") no-repeat; 
  background-size: cover;
  padding-top: 136px;
  padding-bottom: 110px;
  overflow: hidden;
  position: relative;
}
.home-banner::after {
  position: absolute;
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.5);
}
.home-banner > div {
  gap: 10px 2.3rem;
  position: relative;
  z-index: 2;
}
.home-banner .left {
  width: 60%;
  padding-top: 93px;
}
.home-banner .left p {
  font-size: 16px;
  line-height: 26px;
  color: rgba(255, 255, 255, 0.8);
  margin-top: 22px;
  margin-bottom: 58px;
  max-width: 510px;
}
.home-banner .right {
  width: 50%;
}
.home-banner .right form {
  display: block;
  padding: 55px 44px 45px;
  background-color: rgba(20, 20, 20, 0.78);
  clip-path: polygon(24px 0, 100% 0, 100% 100%, 0 100%, 0 5%);
}
.home-banner .right .info {
  display: flex;
  flex-direction: column;
  row-gap: 35px;
}
.home-banner .right .info label {
  display: flex;
  align-items: center;
}
.home-banner .right .info select option {
  color: #242424;
}
.home-banner .right .info i {
  display: inline-block;
  width: 46px;
  height: 46px;
  margin-right: 18px;
  flex-shrink: 0;
}
.home-banner .right .info i img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.home-banner .right input[type="submit"] {
  display: block;
  width: 100%;
  text-align: center;
  line-height: 54px;
  background-color: var(--theme_color);
  color: #fff;
  margin-top: 45px;
  font-size: 18px;
  transition: 0.3s;
  padding: 0;
  border: 1px solid var(--theme_color);
}
.home-banner .right input[type="submit"]:hover {
  background-color: transparent;
  border: 1px solid #fff;
}
.home-banner .right input[type="submit"].disabled {
  pointer-events: none;
  opacity: 0.5;
}
.home-banner .right strong {
  font-size: 30px;
  color: rgba(255, 255, 255);
  display: block;
  margin-bottom: 41px;
  font-weight: 500;
  text-transform: uppercase;
}
.home-banner .right select {
  flex: auto;
  padding: 11px 0;
  padding-right: 20px;
  font-size: 18px;
  max-width: 395px;
  overflow: hidden;
  text-wrap: nowrap;
  text-overflow: ellipsis;
  color: #fff;
  background: url("../img/banner-icon.svg") no-repeat;
  background-position-y: 61%;
  background-position-x: right;
  background-size: 4%;
  border: none;
  border-bottom: 1px solid #515151;
  cursor: pointer;
}
.banner_swiper {
  position: relative;
  width: 100%;
  background-color: #efefef;
}
.banner_swiper .swiper-slide {
  width: 210px;
}
.product-swiper-box {
  max-width: 1608px;
  width: 100%;
  margin: 0 auto;
  border: 1px solid transparent;
  margin-bottom: -1px;
}
.product-swiper-box .swiper_btns {
  width: 98%;
  max-width: 1847px;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
}
.product-swiper-box .swiper_btns div {
  width: 66px;
  height: 66px;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  transition: all 0.3s;
  opacity: 1;
  cursor: pointer;
  background-color: var(--theme_color);
  display: flex;
  align-items: center;
  justify-content: center;
}
.product-swiper-box .swiper_btns div:hover {
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
}
.product-swiper-box .swiper_btns div::after {
  content: "";
  display: block;
  width: 12px;
  height: 19px;
  background: url(../img/w-reight.svg) no-repeat center / contain;
}
.product-swiper-box .swiper_btns div::before {
  background: #3cbc71;
}
.product-swiper-box .swiper_btns .btn_next {
  left: unset;
  right: 0;
  transform: translateY(-50%) rotate(0deg);
}
.product-swiper-box .swiper_btns .btn_prev {
  transform: translateY(-50%) rotate(180deg);
}
.product-swiper-box .swiper_btns .swiper-button-disabled {
  pointer-events: none;
  background-color: #d2d2d2;
  box-shadow: none;
  cursor: default;
}
.product-swiper-box .swiper_btns .swiper-button-disabled::after {
  background-image: url("../img/b-right.svg");
  transform: rotate(180deg);
}
.product-swiper-box .product_swiper {
  overflow: hidden;
  max-width: 1608px;
  width: 99%;
  margin: 0 auto;
  margin-top: -20px;
}
.product-swiper-box .product_swiper a {
  display: flex;
  justify-content: center;
  flex-direction: column;
  width: 100%;
  height: 100%;
  padding: 23.55% 17.642% 21.7%;
  clip-path: polygon(88% 0, 100% 9%, 100% 100%, 0 100%, 0 0);
  transition: 0.3s;
}
.product-swiper-box .product_swiper a .img {
  transition: 0.3s;
}
.product-swiper-box .product_swiper li {
  height: auto;
}
.product-swiper-box .product_swiper li:hover a,
.product-swiper-box .product_swiper li.active a {
  background-color: var(--theme_color);
}
.product-swiper-box .product_swiper li:hover a .img,
.product-swiper-box .product_swiper li.active a .img {
  filter: grayscale(100%) brightness(1000%);
}
.product-swiper-box .product_swiper li:hover p,
.product-swiper-box .product_swiper li.active p {
  color: #fff;
}
.product-swiper-box .img {
  width: 100%;
  padding-bottom: 80%;
  position: relative;
}
.product-swiper-box .img img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
.product-swiper-box p {
  font-size: 20px;
  color: #242424;
  text-align: center;
  margin-top: 27px;
  transition: 0.3s;
  font-weight: 600;
  flex: 1;
}
a.to-btn {
  font-size: 18px;
  color: #fff;
  padding: 15px 51px;
  background-color: var(--theme_color);
  transition: 0.3s;
}
a.to-btn:hover {
  background-color: #000;
}
.head span {
  margin-bottom: 16px;
  display: block;
  text-transform: uppercase;
}
.home_about {
  background: url("../img/about-wbg.png") no-repeat;
  background-size: 24%;
  background-position-y: 54px;
  background-position-x: -10px;
  overflow: hidden;
}
.home_about > div {
  column-gap: 55px;
}
.home_about .textleft {
  padding: 130px 0;
  flex: 1;
  min-width: 43.27868852%;
}
.home_about .textleft p {
  margin-top: 23px;
  line-height: 30px;
  font-size: 17px;
  color: #666666;
  max-width: 461px;
}
.home_about .textleft a {
  font-size: 18px;
  color: #fff;
  background-color: var(--theme_color);
  padding: 15px 33px;
  transition: 0.3s;
}
.home_about .textleft a:hover {
  background-color: #000;
}
.home_about .imgright {
  min-width: 80%;
  position: relative;
  overflow: hidden;
}
.home_about .imgright .bg-img {
  width: 78.607%;
  display: block;
  margin-left: auto;
}
.home_about .imgright .bg-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.home_about .imgright .prodimg {
  max-width: 1040px;
  width: 100%;
  aspect-ratio: 1040/895;
  position: absolute;
  bottom: -62px;
  left: 0;
}
.home_about .imgright .prodimg img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
}
.home_about .nums {
  margin-top: 31px;
  margin-bottom: 60px;
}
.home_about .nums li {
  min-width: 107px;
}
.home_about .nums ul {
  column-gap: 44px;
}
.home_about .nums div {
  font-size: 33.58px;
}
.home_about .nums span {
  font-size: 50.8px;
  color: var(--theme_color);
  font-weight: 500;
}
.home_about .nums p {
  font-size: 17px;
  color: #242424;
  margin-top: 5px;
}
.home_partners {
  background: url("../img/partners-bg.png") no-repeat;
  background-size: cover;
  padding: 80px 0 23px;
  overflow: hidden;
}
.home_partners .partners-container {
  max-width: 1903px;
  width: 100%;
  margin: 0 auto;
}
.home_partners span {
  color: var(--theme_color);
  text-transform: uppercase;
}
.home_partners h2 {
  color: #ffff;
  margin-top: 10px;
}
.home_partners .partnersswiper-container {
  margin-top: 53px;
}
.home_partners .partnersswiper-container ul {
  transition: all linear;
}
.home_partners .partnersswiper-container .img {
  width: 100%;
  aspect-ratio: 231/92;
}
.home_partners .partnersswiper-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.home_flexible {
  padding-top: 107px;
  padding-bottom: 140px;
  background: url("../img/solu-bg.png") no-repeat;
  background-size: cover;
}
.home_flexible .head {
  gap: 2rem 65px;
}
.home_flexible .left {
  flex: auto;
}
.home_flexible .rightp {
  max-width: 38.983%;
  display: flex;
  align-items: flex-end;
  padding: 0.5rem 0 1.4375rem;
}
.home_flexible .rightp p {
  color: #666666;
}
.home_flexible .main-conainer {
  max-width: 1267px;
  width: 100%;
  margin: 0 auto;
}
.home_flexible .main {
  margin-top: 35px;
}
.home_flexible .main .right-swiper {
  overflow: hidden;
  width: 70%;
  position: relative;
  z-index: 1;
  clip-path: polygon(22px 0%, 100% 0, 100% 97%, 97% 100%, 0 100%, 0% 3%);
}
.home_flexible .main .right-swiper li {
  height: auto;
}
.home_flexible .main .right-swiper li > a {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
}
.home_flexible .main .right-swiper li > a:hover .img img {
  transform: scale(1.03);
}
.home_flexible .main .right-swiper li > a:hover span {
  column-gap: 12px;
}
.home_flexible .main .right-swiper > a {
  display: block;
  width: 100%;
  height: 100%;
}
.home_flexible .main .right-swiper .btmtext {
  flex: 1;
  background-color: #2d2d2d;
}
.home_flexible .main .right-swiper .btmtext div {
  padding: 28px 5.298759% 30px;
}
.home_flexible .main .right-swiper .btmtext strong {
  display: block;
  margin-bottom: 10px;
}
.home_flexible .main .right-swiper .btmtext p {
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 400;
  display: -webkit-box;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.home_flexible .main .right-swiper .btmtext span {
  display: flex;
  column-gap: 7px;
  align-items: center;
  text-transform: uppercase;
  transition: 0.3s;
}
.home_flexible .main .right-swiper .btmtext span::after {
  content: "";
  display: block;
  background: url("../img/r-right.svg") no-repeat;
  width: 19px;
  height: 18px;
  background-position: center;
  background-size: contain;
  transition: 0.3s;
}
.home_flexible .main .right-swiper strong {
  color: #fff;
  font-size: 24px;
  font-weight: 500;
  -webkit-line-clamp: 2;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.home_flexible .main .right-swiper p {
  font-size: 17px;
  line-height: 26px;
  color: #fff;
}
.home_flexible .main .right-swiper span {
  font-size: 18px;
  color: var(--theme_color);
}
.home_flexible .main .right-swiper li {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
}
.home_flexible .main .right-swiper .img {
  width: 100%;
  height: 431px;
  overflow: hidden;
  background-color: #2d2d2d;
}
.home_flexible .main .right-swiper .img img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.3s;
}
.home_flexible .main .left-option {
  flex: auto;
  position: relative;
  z-index: 20;
  padding-top: 76px;
}
.home_flexible .main li.item.active > div::after {
  width: 430px;
  opacity: 1;
}
.home_flexible .main li.item.active > div span {
  color: #fff;
}
.home_flexible .main li.item.active > div i {
  filter: grayscale(100%) brightness(1000%);
}
.home_flexible .main .left-option li {
  min-height: 94px;
  position: relative;
  cursor: pointer;
  margin-bottom: 12px;
}
.home_flexible .main .left-option li > div {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  display: flex;
  align-items: center;
  column-gap: 23px;
  padding-left: 44px;
  padding: 0.625rem 0.9375rem 0.625rem 10.232%;
  width: 110.8%;
  z-index: 10;
  clip-path: polygon(5% 0%, 100% 0, 100% 80%, 95% 100%, 0 100%, 0% 20%);
}
.home_flexible .main .left-option li > div::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 380px;
  height: 10rem;
  background-color: var(--theme_color);
  z-index: -1;
  transition: 0.3s ease-in;
  opacity: 0;
}
.home_flexible .main .left-option li > div:hover span {
  color: #fff;
}
.home_flexible .main .left-option li > div:hover i {
  filter: grayscale(100%) brightness(1000%);
}
.home_flexible .main .left-option li > div:hover::after {
  width: 430px;
  opacity: 1;
}
.home_flexible .main .left-option li i {
  display: inline-block;
  width: 46px;
  aspect-ratio: 1/1;
  transition: 0.3s;
  flex-shrink: 0;
}
.home_flexible .main .left-option li i img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.home_flexible .main .left-option li span {
  font-size: 24px;
  color: #898989;
  font-weight: 500;
  transition: 0.3s;
  -webkit-line-clamp: 2;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.home_Shape {
  padding-top: 149px;
  padding-bottom: 68px;
  overflow: hidden;
}
.home_Shape .container {
  max-width: 1903px;
  width: 100%;
  margin: 0 auto;
}
.home_Shape .head {
  align-items: end;
}
.home_Shape .head .left {
  margin-bottom: 14px;
}
.home_Shape .shape-swiper-box {
  margin-top: 37px;
}
.home_Shape .shape-swiper-box li {
  height: auto;
  background-size: cover;
  overflow: hidden;
}
.home_Shape .shape-swiper-box li > div {
  display: flex;
  width: 100%;
  height: 100%;
  align-items: end;
}
.home_Shape .shape-swiper-box li > a {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
}
.home_Shape .shape-swiper-box li > a .cardbg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.home_Shape .shape-swiper-box li > a .cardbg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: 0.3s;
}
.home_Shape .shape-swiper-box li > a::after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 301px;
  transition: 0.3s;
  opacity: 1;
  background: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.9));
}
.home_Shape .shape-swiper-box li > a:hover .card-main {
  transform: translateY(0);
  background-color: #d5042b;
}
.home_Shape .shape-swiper-box li > a:hover .cardbg img {
  transform: scale(1.03);
}
.home_Shape .shape-swiper-box li > a:hover::after {
  opacity: 0;
}
.home_Shape .shape-swiper-box li > a:hover span,
.home_Shape .shape-swiper-box li > a:hover i {
  opacity: 1;
}
.home_Shape .shape-swiper-box li > a > div {
  width: 100%;
  height: 100%;
  min-height: 350px;
  display: flex;
  align-items: end;
}
.home_Shape .shape-swiper-box li .text {
  display: inline-block;
  width: 100%;
  padding: 25px 20px 20px;
  position: relative;
  z-index: 2;
}
.home_Shape .shape-swiper-box li .card-main {
  display: flex;
  flex-direction: column;
  padding: 33px 20px;
  transform: translateY(47px);
  transition: 0.3s;
  background-color: transparent;
}
.home_Shape .shape-swiper-box li span {
  font-size: 15px;
  line-height: 18px;
  color: #fff;
  display: block;
  margin-bottom: 12px;
  opacity: 0;
  transition: 0.3s;
}
.home_Shape .shape-swiper-box li strong {
  font-size: 20px;
  line-height: 1.5;
  color: #ffff;
  display: block;
  margin-bottom: 10px;
  transition: 0.3s;
}
.home_Shape .shape-swiper-box li i {
  display: block;
  width: 18px;
  height: 15px;
  background: url("../img/right-w.svg") no-repeat;
  background-position: center;
  background-size: contain;
  opacity: 0;
}
.home_Shape .advanced_swiper_btns {
  flex: 0.72;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  column-gap: 17px;
}
.home_Shape .advanced_swiper_btns div {
  width: 66px;
  height: 66px;
  position: relative;
  background-color: #d5042a;
  cursor: pointer;
  transition: 0.3s;
}
.home_Shape .advanced_swiper_btns div:hover {
  box-shadow: 0 0 15px 5px rgba(0, 0, 0, 0.2);
}
.home_Shape .advanced_swiper_btns div.advanced_btn_next.swiper-button-disabled {
  background-color: #242424;
  cursor: default;
}
.home_Shape .advanced_swiper_btns div.advanced_btn_next.swiper-button-disabled:hover {
  box-shadow: none;
}
.home_Shape .advanced_swiper_btns div.advanced_btn_next.swiper-button-disabled::after {
  background: url("../img/w-reight.svg") no-repeat;
  background-position: center;
  background-size: contain;
  transform: translate(-50%, -50%) rotate(0deg);
}
.home_Shape .advanced_swiper_btns div.advanced_btn_prev::after {
  transform: translate(-50%, -50%) rotate(180deg);
}
.home_Shape .advanced_swiper_btns div.advanced_btn_prev.swiper-button-disabled {
  background-color: #242424;
  cursor: default;
}
.home_Shape .advanced_swiper_btns div.advanced_btn_prev.swiper-button-disabled:hover {
  box-shadow: none;
}
.home_Shape .advanced_swiper_btns div.advanced_btn_prev.swiper-button-disabled::after {
  background: url("../img/w-reight.svg") no-repeat;
  background-position: center;
  background-size: contain;
  transform: translate(-50%, -50%) rotate(180deg);
}
.home_Shape .advanced_swiper_btns div:after {
  position: absolute;
  content: "";
  display: block;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(0deg);
  width: 15px;
  height: 18px;
  background: url("../img/w-reight.svg") no-repeat;
  background-position: center;
  background-size: contain;
}
.home_laster {
  padding-top: 100px;
  padding-bottom: 269px;
  overflow: hidden;
}
.home_laster .nav {
  position: relative;
}
.home_laster .nav .line {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100px;
  height: 2px;
  transition: 0.3s;
  background-color: var(--theme_color);
}
.home_laster .nav ul {
  display: flex;
  flex-direction: row;
  gap: 2.3rem;
}
.home_laster .nav ul li {
  font-size: 18px;
  color: #757575;
  padding-bottom: 11px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s;
  border-bottom: 2px solid transparent;
  text-transform: capitalize;
}
.home_laster .nav ul li.active,
.home_laster .nav ul li:hover {
  border-color: var(--theme_color);
  color: #242424;
}
.home_laster .main {
  max-width: 1249px;
  width: 99%;
  margin: 0 auto;
  margin-top: 129px;
  gap: 2rem 64px;
  position: relative;
  z-index: 2;
}
.home_laster .main::after {
  content: '';
  display: block;
  width: 100vw;
  height: calc(100% + 172px);
  background-color: #f7f7f7;
  position: absolute;
  z-index: -1;
  top: 50%;
  transform: translateY(-48%);
  left: 41.8735%;
}
.home_laster .main .left {
  flex-basis: 715px;
  height: 465px;
  position: relative;
}
.home_laster .main .left a {
  position: absolute;
  left: 0;
  top: 0;
  display: block;
  width: 100%;
  height: 100%;
  opacity: 0;
  pointer-events: none;
  transition: 0.3s;
}
.home_laster .main .left a:hover .img img {
  transform: scale(1.03);
}
.home_laster .main .left a.active {
  opacity: 1;
  pointer-events: all;
}
.home_laster .main .left .img {
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.home_laster .main .left .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: 0.5s;
}
.home_laster .main .right {
  flex: 1;
}
.home_laster .main .right strong {
  font-size: 16px;
  color: var(--theme_color);
  padding-right: 15px;
  border-right: 1px solid black;
  margin-right: 10px;
}
.home_laster .main .right div {
  color: #5b5b5b;
  font-size: 16px;
}
.home_laster .main .right p {
  font-size: 20px;
  color: #222222;
  font-weight: 600;
}
.home_laster .main .right .item {
  border-bottom: 1px solid #e1e1e1;
  position: relative;
}
.home_laster .main .right .item > a {
  display: block;
  padding: 47px 0 34px;
}
.home_laster .main .right .item.active::after {
  width: 217px;
  opacity: 1;
}
.home_laster .main .right .item:after {
  content: "";
  position: absolute;
  bottom: -1.5px;
  left: 0;
  width: 0;
  height: 2px;
  opacity: 0;
  transition: 0.3s;
  background-color: var(--theme_color);
}
.home_laster .main .right .item:not(:first-child) a {
  padding-top: 31px;
}
.home_laster .main .right .meta {
  margin-bottom: 15px;
}
.home_laster .main .right .meta strong {
  text-transform: capitalize;
}
.home_laster .main .right .more {
  font-size: 18px;
  color: var(--theme_color);
  display: flex;
  justify-content: flex-end;
  align-items: center;
  column-gap: 8px;
  margin-top: 20px;
  font-weight: 600;
}
.home_laster .main .right .more:hover::after {
  transform: translateX(5px);
}
.home_laster .main .right .more::after {
  content: "";
  display: block;
  width: 18px;
  height: 15px;
  background: url("../img/r-right.svg") no-repeat;
  background-position: center;
  background-size: contain;
  transition: 0.3s;
}
.home_about .nums div {
  color: #242424;
}
.home_about .nums ul {
  justify-content: flex-start;
}
.home_about .nums p {
  text-align: left;
}
.home_Shape .advanced_swiper_btns {
  gap: 34px;
}
.home_flexible .main .left-option li > div {
  padding: 0.625rem 10.232%;
}
.about_business .textleft {
  padding-bottom: 3rem;
}
