 
* {
	margin:0;
	padding: 0;
	box-sizing: border-box;
}
.content {
	max-width: 1220px;
	margin: 0 auto;
	position: relative;
}
.largecontent {
	max-width: 100%;
	padding: 0 4rem;
}
html {
	scroll-behavior: smooth;
}
.flex {
	display: flex;
}
.wrap {
	flex-wrap: wrap;
}
.flex1 {
	flex:1;
}
.flex2 {
	flex:2;
}
.flex3 {
	flex:3;
}
.between {
	justify-content: space-between;
}
.center {
	text-align: center;
}
.boxshadow {
	box-shadow: 0 0 15px rgba(0,0,0,0.1);
	background: white;
}
.vertical {
	display: flex;
	flex-direction:column;
	justify-content: center;
}

:root {
  --theme_color: #22b6af;
  --subtheme_color: #e9f8f8;
  --hover_color: #00182c;
  --a_color: #1c232f;
  --shadow_color: rgba(0, 0, 0, 0.1);
  --title_color: #232323;
  --content_color: #858585;
  --bg_color: linear-gradient(to right, #000, #000);
}
ul {
  list-style: none;
}
a {
  color: #1c232f;
  text-decoration: none;
  font-size: 1rem;
}
i {
  font-style: normal;
}
.swiper_content {
  max-width: 1240px;
  margin: 0 auto;
  position: relative;
  padding: 10px;
  overflow: hidden;
}
button,
input,
textarea {
  outline: none;
  border: none;
  font-family: unset;
}
input[type="submit"],
button {
  cursor: pointer;
}
textarea {
  resize: none;
}
input[type="number"] {
  -moz-appearance: textfield;
}
input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
select {
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
}
.center {
  text-align: center;
}
.flex_start {
  justify-content: flex-start;
}
.flex_center {
  justify-content: center;
}
.flex_end {
  justify-content: flex-end;
}
.flex_top {
  align-items: flex-start;
}
.flex_middle {
  align-items: center;
}
.flex_bottom {
  align-items: flex-end;
}
body {
  font-family: 'Poppins', sans-serif;
}
.only_mobile {
  display: none;
}
.head h1 {
  font-size: 52px;
  font-weight: 600;
  line-height: 70px;
}
.head h2 {
  font-size: 44px;
  font-weight: 600;
  line-height: 60px;
  color: var(--title_color);
}
.head p {
  line-height: 27px;
  color: var(--content_color);
}
.button {
  display: inline-block;
  line-height: 1;
  font-size: 18px;
  color: #fff;
  background-color: var(--theme_color);
  border-radius: 4px;
  padding: 17px 48px;
  transition: all 0.3s;
}
.button:hover {
  background-color: var(--hover_color);
}
.button_b {
  display: inline-block;
  line-height: 1;
  font-size: 18px;
  color: #fff;
  background-color: var(--hover_color);
  border-radius: 4px;
  padding: 17px 48px;
  transition: all 0.3s;
}
.button_b:hover {
  background-color: var(--theme_color);
}
.button_more {
  display: inline-block;
  line-height: 1;
  color: var(--title_color);
  font-size: 17px;
  font-weight: 500;
  border: 1px solid var(--shadow_color);
  border-radius: 4px;
  background-color: transparent;
  transition: all 0.3s;
  padding: 18px 52px;
}
.button_more:hover {
  background-color: var(--theme_color);
  color: #fff;
  border-color: var(--theme_color);
}
.swiper_btns {
  display: flex;
  justify-content: space-between;
  width: 98%;
  max-width: 1428px;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.swiper_btns div {
  width: 18px;
  height: 34px;
  background: url(https://www.taskcm.com//wp-content/plugins/sytech-fronteditor/sytpl/home_banner/assets/img/left-b.svg) no-repeat center / contain;
  cursor: pointer;
  transition: all 0.3s;
}
.swiper_btns div.swiper-button-disabled {
  opacity: 0.3;
  cursor: default;
}
.swiper_btns .btn_next {
  background-image: url(https://www.taskcm.com//wp-content/plugins/sytech-fronteditor/sytpl/home_banner/assets/img/right-b.svg);
}

.home_banner {
  padding: 50px 0;
  background: url(https://www.taskcm.com//wp-content/plugins/sytech-fronteditor/sytpl/home_banner/assets/img/home-banner.jpg) no-repeat center / cover;
  position: relative;
}
.home_banner::after {
  content: '';
  display: block;
  width: 100%;
  height: 188px;
  background: url(https://www.taskcm.com//wp-content/plugins/sytech-fronteditor/sytpl/home_banner/assets/img/home-banner-mask.svg) no-repeat center / cover;
  position: absolute;
  left: 0;
  top: 95%;
}
.home_banner .flex {
  min-height: 782px;
}
.home_banner .head {
  padding-bottom: 50px;
}
.home_banner .head h1 {
  color: #fff;
  max-width: 752px;
}
.home_banner .head p {
  color: #fff;
  line-height: 28px;
  max-width: 510px;
  font-weight: 200;
  opacity: 0.8;
  margin: 1rem 0 40px;
}
 
@media screen and (max-width: 786px) {
  .content {
    padding: 0 1.2rem;
  }
  .swiper_content {
    padding: 10px 1.2rem;
  }
  .head h1 {
    font-size: 25px;
    line-height: 1.5;
  }
  .head h2 {
    font-size: 22px;
    line-height: 1.5;
  }
  .head p {
    font-size: 0.9rem;
    line-height: 1.5rem;
  }
  .button,
  .button_b,
  .button_more {
    padding: 11px 20px;
    font-size: 14px;
  }
  .swiper_btns {
    display: none;
  }
  .swiper_btns_full {
    gap: 0.5rem;
  }
  .swiper_btns_full div {
    width: 2rem;
    height: 2rem;
  }
  div.swiper-pagination {
    gap: 0.5rem;
    height: 10px;
  }
  div.swiper-pagination .swiper-pagination-bullet {
    width: 6px;
    height: 6px;
  }
  div.swiper-pagination .swiper-pagination-bullet-active {
    width: 10px;
    height: 10px;
  }
  .home_banner {
    padding: 50px 0 5rem;
  }
  .home_banner .content > .flex {
    min-height: unset;
  }
  .home_banner .head {
    padding: 0;
  }
  .home_banner .head p {
    margin: 0.5rem 0 1.2rem;
    line-height: 1.5rem;
  }
  
}

 
@media screen and (min-width: 786px)  and (max-width: 1600px) {
  
}
@media screen and (min-width: 786px)  and (max-width: 1400px) {
  .content {
    padding: 0 1.2rem;
  }
}
@media screen and (min-width: 786px)  and (max-width: 1200px) {
  .content {
    max-width: 1000px;
  }
}
@media screen and (min-width: 786px)  and (max-width: 1000px) {
  .content {
    max-width: 786px;
  }
}
 
/*
Theme Name: Sytech Web
Author: The Sytech Team
Author URI:  https://sytech-web.cn
Description: A Beautiful, Fast Loading and SEO Ready Website
Version: 2.0.0
*/

* {
	margin:0;
	padding: 0;
	box-sizing: border-box;
}


.tools_part_vendor .tools_part_box{
  padding: 4rem 0px;
  text-align: center;
}

.tools_part_vendor .tools_part_box input{
  padding: .8rem 1rem;
  border-radius: 5px;
  min-width: 300px;
  border: 1px #ddd solid ;
}
.tools_part_vendor .tools_part_box button{
  background: white;
  border: 1px solid #f8f8f8;
  color: #4c4c4c;
  padding: 0.8rem 1.5rem;
  display: inline-block;
  font-weight: 500;
  border: none;
  font-size: 16px;
  cursor: pointer;
  border-radius: 10px;
  background-color: #33bde9;
  border: 1px solid #33bde9;
  color: white;
  padding: 0.8rem 1.5rem;
}
 
@media screen and (max-width: 786px) {
  .content {
    padding: 0 1.2rem;
  }
}

 
@media screen and (min-width: 786px)  and (max-width: 1600px) {
  
}
@media screen and (min-width: 786px)  and (max-width: 1400px) {
  .content {
    padding: 0 1.2rem;
  }
}
@media screen and (min-width: 786px)  and (max-width: 1200px) {
  .content {
    max-width: 1000px;
  }
  .swiper_content {
    max-width: 1020px;
  }
  .solution_strength .head p {
    width: 70%;
  }
}
@media screen and (min-width: 786px)  and (max-width: 1000px) {
  .content {
    max-width: 786px;
  }
  .swiper_content {
    max-width: 806px;
  }
  .solution_strength .head p {
    width: 90%;
  }
}
 
@media screen and (max-width: 786px) {
  .content {
    padding: 0 1.2rem;
  }
}

 
@media screen and (min-width: 786px)  and (max-width: 1600px) {
  
}
@media screen and (min-width: 786px)  and (max-width: 1400px) {
  .content {
    padding: 0 1.2rem;
  }
}
@media screen and (min-width: 786px)  and (max-width: 1200px) {
  .content {
    max-width: 1000px;
  }
}
@media screen and (min-width: 786px)  and (max-width: 1000px) {
  .content {
    max-width: 786px;
  }
}
 
@media screen and (max-width: 786px) {
  .content {
    padding: 0 1.2rem;
  }
}

 
@media screen and (min-width: 786px)  and (max-width: 1600px) {
  
}
@media screen and (min-width: 786px)  and (max-width: 1400px) {
  .content {
    padding: 0 1.2rem;
  }
}
@media screen and (min-width: 786px)  and (max-width: 1200px) {
  .content {
    max-width: 1000px;
  }
}
@media screen and (min-width: 786px)  and (max-width: 1000px) {
  .content {
    max-width: 786px;
  }
}
.swiper_btns div {
  width: 18px;
  height: 34px;
  background: url(https://www.taskcm.com//wp-content/plugins/sytech-fronteditor/sytpl/home_about/assets/img/left-b.svg) no-repeat center / contain;
  cursor: pointer;
  transition: all 0.3s;
}
.swiper_btns .btn_next {
  background-image: url(https://www.taskcm.com//wp-content/plugins/sytech-fronteditor/sytpl/home_about/assets/img/right-b.svg);
}

.home_focus {
  background: url(https://www.taskcm.com//wp-content/plugins/sytech-fronteditor/sytpl/home_about/assets/img/home-focus-bg.png) no-repeat center / cover;
  padding: 50px 0;
  position: relative;
  z-index: 2;
}
.home_focus .head {
  width: 47.541%;
}
.home_focus .head h2 {
  margin-bottom: 20px;
}
.home_focus .head p {
  max-width: 514px;
  color: #666;
}
.home_focus .head ul {
  display: flex;
  gap: 10%;
  margin: 36px 0;
}
.home_focus .head ul li {
  width: 40%;
  color: var(--title_color);
  font-size: 18px;
  font-weight: 500;
  line-height: 28px;
  display: flex;
  align-items: center;
  gap: 30px;
}
.home_focus .head ul li i {
  display: block;
  min-width: 56px;
  height: 56px;
  background: url(https://www.taskcm.com//wp-content/plugins/sytech-fronteditor/sytpl/home_about/assets/img/home-focus-icon1.svg) no-repeat center / contain;
}
.home_focus .img {
  margin: 170px 0 105px;
  width: 52.377%;
  padding-bottom: 53.85246%;
  position: relative;
  left: 15px;
  background: url(https://www.taskcm.com//wp-content/plugins/sytech-fronteditor/sytpl/home_about/assets/img/home-focus-bg.svg) no-repeat center / contain;
}
.home_focus .img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  position: absolute;
  left: 20px;
  top: -10px;
  transition: all 1s;
}
.home_focus .img .text {
  transition: all 1s;
  position: absolute;
  right: 10px;
  bottom: 30px;
  background: url(https://www.taskcm.com//wp-content/plugins/sytech-fronteditor/sytpl/home_about/assets/img/home-focus-bg2.svg) no-repeat center / contain;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  padding: 42px 32px;
}
.home_focus .img .text strong {
  color: #fff;
  font-size: 50px;
  font-weight: 600;
  line-height: 1;
}
.home_focus .img .text p {
  color: #fff;
  padding-top: 9px;
}
 
@media screen and (max-width: 786px) {
  .content {
    padding: 0 1.2rem;
  }

  .home_focus {
    padding: 5rem 0;
  }
  .home_focus .content > .flex {
    display: block;
  }
  .home_focus .head {
    width: 100%;
  }
  .home_focus .head h2 {
    margin-bottom: 1rem;
  }
  .home_focus .head ul {
    justify-content: space-between;
    margin: 1rem 0;
  }
  .home_focus .head ul li {
    width: 48%;
    gap: 5px;
    font-size: 14px;
    line-height: 1.4;
  }
  .home_focus .head ul li i {
    min-width: 2rem;
    height: 2rem;
  }
  .home_focus .img {
    margin: 30px 0 0;
    width: 100%;
    padding-bottom: 300px;
    left: 0;
  }
  .home_focus .img img {
    left: 10px;
  }
  .home_focus .img .text {
    bottom: 0;
  }
  .home_focus .img .text strong {
    font-size: 2rem;
  }
  .home_focus .img .text p {
    font-size: 12px;
  }
}

 
@media screen and (min-width: 786px)  and (max-width: 1600px) {
  
}
@media screen and (min-width: 786px)  and (max-width: 1400px) {
  .content {
    padding: 0 1.2rem;
  }
}
@media screen and (min-width: 786px)  and (max-width: 1200px) {
  .content {
    max-width: 1000px;
  }
}
@media screen and (min-width: 786px)  and (max-width: 1000px) {
  .content {
    max-width: 786px;
  }
  .home_focus .head ul li {
    width: 48%;
    gap: 5px;
  }
}
.swiper_btns div {
  width: 18px;
  height: 34px;
  background: url(https://www.taskcm.com/wp-content/plugins/sytech-fronteditor/sytpl/home_different/assets/img/left-b.svg) no-repeat center / contain;
  cursor: pointer;
  transition: all 0.3s;
}
.swiper_btns .btn_next {
  background-image: url(https://www.taskcm.com/wp-content/plugins/sytech-fronteditor/sytpl/home_different/assets/img/right-b.svg);
}

.home_different {
  margin-top: -65px;
  padding: 175px 0 210px;
  background: url(https://www.taskcm.com/wp-content/plugins/sytech-fronteditor/sytpl/home_different/assets/img/home-diff-bg.png) no-repeat top center / contain;
}
.home_different .home_different_swiper_box {
  position: relative;
}
.home_different .home_different_swiper_box .swiper-pagination {
  bottom: -50px;
}
.home_different .home_different_swiper {
  padding: 75px 0;
}
.home_different .home_different_swiper a {
  display: block;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
  border-radius: 5px;
  background-color: #fff;
  text-align: center;
  padding: 60px 0 85px;
}
.home_different .home_different_swiper a:hover .img {
  transform: rotate(180deg);
}
.home_different .home_different_swiper a:hover .img img {
  transform: translate(-50%, -50%) rotate(-180deg);
}
.home_different .home_different_swiper a:hover strong {
  background-color: var(--theme_color);
  border-color: #def2fb;
}
.home_different .home_different_swiper .img {
  width: 26.316%;
  padding-bottom: 26.316%;
  position: relative;
  margin: 0 auto;
  background: url(https://www.taskcm.com/wp-content/plugins/sytech-fronteditor/sytpl/home_different/assets/img/home-diff-itembg.svg) no-repeat center / cover;
  transition: all 0.3s;
}
.home_different .home_different_swiper .img img {
  transition: all 0.3s;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 55%;
  height: 55%;
  object-fit: contain;
}
.home_different .home_different_swiper h3 {
  font-size: 24px;
  font-weight: 600;
  color: var(--title_color);
  line-height: 36px;
  width: 70%;
  margin: 42px auto 1rem;
}
.home_different .home_different_swiper p {
  color: #7f7f7f;
  font-size: 1rem;
  line-height: 25px;
  width: 80%;
  margin: 0 auto;
}
.home_different .home_different_swiper strong {
  display: block;
  width: 73px;
  height: 73px;
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translate(-50%, 50%);
  border-radius: 50%;
  background-color: var(--hover_color);
  border: 8px solid #dde1e2;
  transition: all 0.3s;
}
.home_different .home_different_swiper strong i {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 32%;
  height: 32%;
  background: url(https://www.taskcm.com/wp-content/plugins/sytech-fronteditor/sytpl/home_different/assets/img/right-line-w2.svg) no-repeat center / contain;
}
div.swiper-pagination {
  height: 17px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
}
div.swiper-pagination .swiper-pagination-bullet {
  opacity: 1;
  background-color: #1b1b1b;
  width: 8px;
  height: 8px;
  transition: all 0.3s;
}
div.swiper-pagination .swiper-pagination-bullet-active {
  width: 17px;
  height: 17px;
  background-color: transparent;
  border: 1px solid #1b1b1b;
}
 
@media screen and (max-width: 786px) {
  .content {
    padding: 0 1.2rem;
  }

  .home_different {
    padding: 7rem 0 5rem;
  }
  .home_different .home_different_swiper {
    padding: 30px 0;
  }
  .home_different .home_different_swiper a {
    height: auto;
    padding: 2rem 1rem;
  }
  .home_different .home_different_swiper h3 {
    font-size: 1rem;
    line-height: 1.5;
    margin: 1rem 0 0.5rem;
    width: 100%;
  }
  .home_different .home_different_swiper p {
    width: 100%;
    font-size: 0.9rem;
    line-height: 1.5rem;
  }
  .home_different .home_different_swiper strong {
    width: 3rem;
    height: 3rem;
    border-width: 5px;
  }
  .home_different .home_different_swiper_box .swiper-pagination {
    bottom: -1.2rem;
  }
}

 
@media screen and (min-width: 786px)  and (max-width: 1600px) {
  
}
@media screen and (min-width: 786px)  and (max-width: 1400px) {
  .content {
    padding: 0 1.2rem;
  }
}
@media screen and (min-width: 786px)  and (max-width: 1200px) {
  .content {
    max-width: 1000px;
  }
}
@media screen and (min-width: 786px)  and (max-width: 1000px) {
  .content {
    max-width: 786px;
  }
}
.swiper_btns div {
  width: 18px;
  height: 34px;
  background: url(https://www.taskcm.com/wp-content/plugins/sytech-fronteditor/sytpl/home_feature/assets/img/left-b.svg) no-repeat center / contain;
  cursor: pointer;
  transition: all 0.3s;
}
.swiper_btns .btn_next {
  background-image: url(https://www.taskcm.com/wp-content/plugins/sytech-fronteditor/sytpl/home_feature/assets/img/right-b.svg);
}

.home_future {
  max-width: 1920px;
  margin: 0 auto 85px;
  position: relative;
}
.home_future .img {
  width: 54.0625%;
  height: auto;
  overflow: hidden;
  border-radius: 0 10px 10px 0;
  position: absolute;
  top: 0;
  left: 0;
  transition: all 1s;
}
.home_future .img img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}
.home_future .bg {
  position: absolute;
  right: 0;
  top: 85px;
  z-index: 2;
  width: 57.1875%;
  height: 100%;
  background: url(https://www.taskcm.com/wp-content/plugins/sytech-fronteditor/sytpl/home_feature/assets/img/home-future-bg.svg) no-repeat right center / contain;
  background-color: var(--subtheme_color);
  border-radius: 10px 0 0 10px;
  background-position-x: 650px;
}
.home_future .head {
  width: 55.3278%;
  padding: 110px 0 125px;
  position: relative;
  top: 85px;
  z-index: 3;
}
.home_future .head h2 {
  margin-bottom: 25px;
}
.home_future .head ul {
  max-width: 700px;
  margin-top: 45px;
}
.home_future .head ul li {
  height: 50px;
  margin-bottom: 40px;
}
.home_future .head ul li p {
  display: flex;
  justify-content: space-between;
}
.home_future .head ul li p span,
.home_future .head ul li p strong {
  font-weight: normal;
  color: var(--title_color);
  font-weight: 500;
  margin-bottom: 18px;
  opacity: 0.8;
}
.home_future .head div.bar {
  position: relative;
  width: 100%;
  height: 0.6875rem;
  background: #dde2e6;
  border-radius: 16px;
}
.home_future .head div.bar .bar-btn {
  transition: all 2s ease-out;
  position: absolute;
  top: -0.3125rem;
  left: 0;
  width: 1.1875rem;
  height: 1.1875rem;
  background-color: white;
  border: 0.1875rem solid var(--theme_color);
  border-radius: 0.9375rem;
}
.home_future .head div.bar span {
  display: block;
  width: 0%;
  height: 100%;
  background-color: var(--theme_color);
  position: relative;
  border-radius: 16px;
  transition: 2s all ease-out;
}
.home_future .head div.bar span::before {
  width: 1.25rem;
  position: absolute;
  top: -0.3125rem;
  right: 0rem;
}
 
@media screen and (max-width: 786px) {
  .content {
    padding: 0 1.2rem;
  }
  .home_future {
    margin: 0;
  }
  .home_future .img {
    position: static;
    width: 100%;
    height: 200px;
  }
  .home_future .bg {
    top: 0;
    width: 100%;
    left: 0;
    z-index: -1;
  }
  .home_future .head {
    width: 100%;
    padding: 30px 0 50px;
    top: 0;
  }
  .home_future .head h2 {
    margin-bottom: 0.5rem;
  }
  .home_future .head ul {
    margin-top: 20px;
  }
  .home_future .head ul li {
    margin-bottom: 1rem;
  }
  .home_future .head ul li p span,
  .home_future .head ul li p strong {
    font-size: 13px;
    margin-bottom: 5px;
  }
  
}

 
@media screen and (min-width: 786px)  and (max-width: 1700px) {

  .home_future .head{
    padding-bottom: 1rem;
  }
}
@media screen and (min-width: 786px)  and (max-width: 1600px) {
  .home_future .head {
    padding: 50px 0;
  }
  .home_future .img {
    top: 10%;
  }
  .home_future .head{
    padding-bottom: 10rem;
  }
}
@media screen and (min-width: 786px)  and (max-width: 1400px) {
  .content {
    padding: 0 1.2rem;
  }
  .home_future .head{
    padding-bottom: 0rem;
  }
}
@media screen and (min-width: 786px)  and (max-width: 1200px) {
  .content {
    max-width: 1000px;
  }
}
@media screen and (min-width: 786px)  and (max-width: 1000px) {
  .content {
    max-width: 786px;
  }
}
 
@media screen and (max-width: 786px) {
  .content {
    padding: 0 1.2rem;
  }
}

 
@media screen and (min-width: 786px)  and (max-width: 1600px) {
  
}
@media screen and (min-width: 786px)  and (max-width: 1400px) {
  .content {
    padding: 0 1.2rem;
  }
}
@media screen and (min-width: 786px)  and (max-width: 1200px) {
  .content {
    max-width: 1000px;
  }
}
@media screen and (min-width: 786px)  and (max-width: 1000px) {
  .content {
    max-width: 786px;
  }
}