 
* {
	margin:0;
	padding: 0;
	box-sizing: border-box;
}
.content {
	max-width: 1440px;
	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: #0073ad;
  --subtheme_color: #4fabe7;
  --title_color: #19191e;
  --bg_color: linear-gradient(to right, var(--theme_color), var(--subtheme_color));
}
ul {
  list-style: none;
}
a {
  color: var(--title_color);
  text-decoration: none;
  font-size: 1rem;
}
i {
  font-style: normal;
}
.swiper_box {
  position: relative;
}
.swiper_content {
  max-width: 1460px;
  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;
  font-family: unset;
}
.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 {
  color: var(--title_color);
  font-family: 'Poppins', sans-serif;
}
body.fixed {
  overflow: hidden;
  padding-right: 17px;
}
.only_mobile {
  display: none;
}
.content .content {
  padding: 0;
}
.gap {
  gap: 1.25rem;
}
li.swiper-slide {
  height: auto;
}
.head .subtitle {
  display: block;
  font-weight: 500;
  color: var(--theme_color);
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.head h2 {
  font-size: 46px;
  font-weight: 600;
  line-height: 56px;
}
.button {
  display: inline-block;
  background-image: linear-gradient(to right, var(--theme_color), var(--subtheme_color), var(--theme_color));
  background-size: 200%;
  border-radius: 6px;
  transition: all 0.3s;
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  text-align: center;
  cursor: pointer;
  padding: 13.5px 44px 13.5px 28px;
  position: relative;
}
.button::after {
  content: '';
  display: block;
  width: 14px;
  height: 12px;
  background: url(https://measuresquare.com/wp-content/plugins/sytech-fronteditor/sytpl/home_banner/assets/img/arrow-line-w.svg) no-repeat center / contain;
  position: absolute;
  right: 26px;
  top: 50%;
  transform: translateY(-50%);
  transition: all 0.4s;
}
.button:hover {
  background-position: right;
  padding: 13.5px 36px;
}
.button:hover::after {
  transform: translate(100%, -50%) scale(0);
}
.button_more {
  display: inline-block;
  border-radius: 6px;
  border: 1px solid var(--theme_color);
  transition: all 0.3s;
  color: var(--theme_color);
  font-size: 18px;
  font-weight: 500;
  text-align: center;
  cursor: pointer;
  padding: 12.5px 57px 12.5px 38px;
  position: relative;
  z-index: 2;
}
.button_more::before {
  content: '';
  display: block;
  width: calc(100% + 2px);
  height: calc(100% + 2px);
  position: absolute;
  z-index: -1;
  left: -1px;
  top: -1px;
  background-image: var(--bg_color);
  transition: all 0.3s;
  opacity: 0;
  border-radius: 6px;
}
.button_more::after {
  content: '';
  display: block;
  width: 14px;
  height: 12px;
  background: url(https://measuresquare.com/wp-content/plugins/sytech-fronteditor/sytpl/home_banner/assets/img/arrow-line.svg) no-repeat center / contain;
  position: absolute;
  right: 36px;
  top: 50%;
  transform: translateY(-50%);
  transition: all 0.4s;
}
.button_more:hover {
  color: #fff;
  padding: 12.5px 47.5px;
}
.button_more:hover::before {
  opacity: 1;
}
.button_more:hover::after {
  transform: translate(100%, -50%) scale(0);
}
.view_more {
  display: inline-block;
  color: var(--theme_color);
  border: 1px solid var(--theme_color);
  font-size: 18px;
  font-weight: 500;
  border-radius: 6px;
  padding: 12.5px 48.5px;
  background-color: transparent;
  transition: all 0.3s;
  position: relative;
  z-index: 2;
}
.view_more::after {
  content: '';
  display: block;
  width: calc(100% + 2px);
  height: calc(100% + 2px);
  position: absolute;
  z-index: -1;
  left: -1px;
  top: -1px;
  border-radius: 6px;
  background-image: var(--bg_color);
  transition: all 0.3s;
  opacity: 0;
}
.view_more:hover {
  color: #fff;
}
.view_more:hover::after {
  opacity: 1;
}
.swiper_btns {
  display: flex;
}
.swiper_btns div {
  width: 1rem;
  height: 30px;
  background: url(https://measuresquare.com/wp-content/plugins/sytech-fronteditor/sytpl/home_banner/assets/img/arrow-w.svg) no-repeat center / contain;
  transition: all 0.3s;
  cursor: pointer;
}
.swiper_btns div.swiper-button-disabled {
  cursor: default;
  opacity: 0.68;
}
.swiper_btns .btn_next {
  transform: rotate(180deg);
}
.swiper_btns.middle {
  max-width: 1430px;
  width: 98%;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  justify-content: space-between;
}
.swiper_btns.middle div {
  position: absolute;
  left: 0;
  top: 0;
  transform: translateY(-50%);
}
.swiper_btns.middle .btn_next {
  left: unset;
  right: 0;
  transform: translateY(-50%) rotate(180deg);
}
.swiper_btns.small {
  max-width: 1830px;
}
.swiper_btns.small div {
  width: 12px;
  height: 22px;
}
.swiper_btns.full {
  gap: 38px;
}
.swiper_btns.full.middle {
  max-width: 1678px;
}
.swiper_btns.full.middle div {
  position: absolute;
}
.swiper_btns.full div {
  width: 60px;
  height: 60px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #e9e9e9;
  position: relative;
  z-index: 2;
  background-image: none;
}
.swiper_btns.full div::before {
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  background-image: var(--bg_color);
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
  transition: all 0.3s;
  border-radius: 8px;
}
.swiper_btns.full div::after {
  content: '';
  display: block;
  width: 36%;
  height: 36%;
  background: url(https://measuresquare.com/wp-content/plugins/sytech-fronteditor/sytpl/home_banner/assets/img/arrow-w.svg) no-repeat center / contain;
}
.swiper_btns.full div.swiper-button-disabled {
  opacity: 1;
  box-shadow: none;
  pointer-events: none;
}
.swiper_btns.full div.swiper-button-disabled::before {
  opacity: 0;
}
.swiper_btns.full div.swiper-button-disabled::after {
  background-image: url(https://measuresquare.com/wp-content/plugins/sytech-fronteditor/sytpl/home_banner/assets/img/arrow-b.svg);
}
.swiper_btns.full div.swiper-button-disabled:hover {
  filter: none;
}
.swiper_btns.full div:hover {
  filter: brightness(1.2);
}
.swiper_btns.black div {
  background-image: url(https://measuresquare.com/wp-content/plugins/sytech-fronteditor/sytpl/home_banner/assets/img/arrow-b.svg);
}
div.swiper-pagination {
  position: static;
  display: flex;
  align-items: center;
  height: 1rem;
  width: 100%;
  gap: 21px;
}
div.swiper-pagination .swiper-pagination-bullet {
  display: block;
  width: 8px;
  height: 8px;
  border: 1px solid var(--title_color);
  background-color: var(--title_color);
  opacity: 1;
  transition: all 0.3s linear;
  margin: 0 4px;
}
div.swiper-pagination .swiper-pagination-bullet-active {
  width: 1rem;
  height: 1rem;
  background-color: transparent;
  margin: 0 !important;
}
div.swiper-pagination.big {
  height: 19px;
  gap: 24px;
}
div.swiper-pagination.big .swiper-pagination-bullet {
  width: 9px;
  height: 9px;
  margin: 0 5px;
}
div.swiper-pagination.big .swiper-pagination-bullet-active {
  width: 19px;
  height: 19px;
}
div.swiper-pagination.white {
  filter: brightness(20);
}


.home_banner {
  overflow: hidden;
  background-image: linear-gradient(to right, #0b151e, #132430);
  padding: 67.5px 0;
}
.home_banner .content {
  max-width: 1580px;
  width: calc(100% - 2.5rem);
}
.home_banner .head {
  color: #fff;
  min-width: 39.3038%;
}
.home_banner .head h1 {
  font-size: 4rem;
  line-height: 72px;
  font-weight: 600;
}
.home_banner .head p {
  opacity: 0.85;
  font-size: 17px;
  line-height: 30px;
  font-weight: 200;
  max-width: 489px;
  margin-top: 20px;
}
.home_banner .head .btns {
  margin-top: 40px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 22px;
}
.home_banner .head .btns .try {
  display: block;
  background-color: #fff;
  color: var(--theme_color);
  font-size: 18px;
  font-weight: 500;
  border-radius: 6px;
  transition: all 0.3s;
  padding: 13.5px 55px;
}
.home_banner .head .btns .try:hover {
  color: #fff;
  background-color: var(--subtheme_color);
}
.home_banner .head .nums {
  margin-top: 70px;
  padding-top: 52px;
  max-width: 447px;
  border-top: 1px solid rgba(255, 255, 255, 0.25);
  display: flex;
  gap: 1rem;
}
.home_banner .head .nums li {
  flex: 1;
  max-width: 145px;
}
.home_banner .head .nums li span {
  color: var(--theme_color);
  font-size: 44px;
  font-weight: 600;
  line-height: 1;
}
.home_banner .head .nums li p {
  font-size: 1rem;
  opacity: 1;
}
.home_banner .img {
  min-width: 79.62%;
  aspect-ratio: 1258/843;
  position: relative;
  left: -14px;
  top: -44px;
}
.home_banner .img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
 
@media screen and (max-width: 786px) {
  .content {
    padding: 0 1.2rem;
  }
  .swiper_content {
    padding: 10px 1.2rem;
  }
  .only_mobile {
    display: block;
  }
  .head .subtitle {
    font-size: 14px;
    margin-bottom: 0.5rem !important;
  }
  .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;
  }
  .video_pop .pop_content {
    width: 90vw;
    height: auto;
  }
  body.fixed {
    padding: 0;
  }
  .button {
    font-size: 14px;
    padding: 10px 1rem !important;
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: max-content;
    gap: 5px;
  }
  .button::after {
    position: static;
    transform: translate(0);
  }
  .button:hover {
    padding: 10px 1rem !important;
  }
  .button:hover::after {
    transform: translate(0);
  }
  .button_more {
    font-size: 14px;
    padding: 10px 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: max-content;
    margin: 0 auto;
    gap: 5px;
  }
  .button_more::after {
    position: static;
    transform: translate(0);
    transition: none;
  }
  .button_more:hover {
    padding: 10px 1rem;
  }
  .button_more:hover::after {
    transform: translate(0);
    filter: contrast(0) brightness(20);
  }
  .view_more {
    font-size: 14px;
    padding: 9px 22px;
  }
  .swiper_btns.full {
    gap: 1rem;
  }
  .swiper_btns.full div {
    width: 2.5rem !important;
    height: 2.5rem !important;
  }
  div.swiper-pagination {
    gap: 1rem;
  }
  div.swiper-pagination .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    margin: 0 2px !important;
  }
  div.swiper-pagination .swiper-pagination-bullet-active {
    width: 12px;
    height: 12px;
    margin: 0 !important;
  }



  .home_banner {
    padding: 4rem 0 2rem;
    min-height: calc(100vh - 4rem);
    display: flex;
    align-items: center;
  }
  .home_banner .flex {
    display: block;
  }
  .home_banner .content {
    width: 100%;
  }
  .home_banner .head h1 {
    font-size: 25px;
    line-height: 1.5;
  }
  .home_banner .head h1 br {
    display: none;
  }
  .home_banner .head p {
    font-size: 0.9rem;
    line-height: 1.5rem;
    margin-top: 0.5rem;
  }
  .home_banner .head .btns {
    margin-top: 2rem;
    gap: 1rem;
  }
  .home_banner .head .btns .try {
    font-size: 14px;
    padding: 9px 15px;
    flex: 1;
    text-align: center;
  }
  .home_banner .head .btns .button {
    flex: 1;
    max-width: unset;
  }
  .home_banner .head .nums {
    margin-top: 2rem;
    padding-top: 1.25rem;
  }
  .home_banner .head .nums li span {
    font-size: 1.6rem;
  }
  .home_banner .head .nums li p {
    font-size: 13px;
    line-height: 1.5;
    margin-top: 8px;
  }
  .home_banner .img {
    position: static;
    margin-top: 2rem;
  }
}

 
@media screen and (min-width: 786px)  and (max-width: 1600px) {
  .content {
    padding: 0 1.2rem;
  }
}
@media screen and (min-width: 786px)  and (max-width: 1440px) {
  .content {
    max-width: 1220px;
  }
  .swiper_content {
    max-width: 1240px;
  }
}
@media screen and (min-width: 786px)  and (max-width: 1220px) {
  .content {
    max-width: 1000px;
  }
  .swiper_content {
    max-width: 1020px;
  }
}
@media screen and (min-width: 786px)  and (max-width: 1000px) {
  .content {
    max-width: 786px;
  }
  .swiper_content {
    max-width: 806px;
  }
  .swiper_btns.full {
    gap: 1.25rem;
  }

  .home_banner {
    padding-top: 6rem;
  }
  .home_banner .img {
    position: static;
    margin-top: 4rem;
  }
}
.button::after {
  content: '';
  display: block;
  width: 14px;
  height: 12px;
  background: url(https://measuresquare.com//wp-content/plugins/sytech-fronteditor/sytpl/home_trust/assets/img/arrow-line-w.svg) no-repeat center / contain;
  position: absolute;
  right: 26px;
  top: 50%;
  transform: translateY(-50%);
  transition: all 0.4s;
}
.button_more::after {
  content: '';
  display: block;
  width: 14px;
  height: 12px;
  background: url(https://measuresquare.com//wp-content/plugins/sytech-fronteditor/sytpl/home_trust/assets/img/arrow-line.svg) no-repeat center / contain;
  position: absolute;
  right: 36px;
  top: 50%;
  transform: translateY(-50%);
  transition: all 0.4s;
}
.swiper_btns div {
  width: 1rem;
  height: 30px;
  background: url(https://measuresquare.com//wp-content/plugins/sytech-fronteditor/sytpl/home_trust/assets/img/arrow-w.svg) no-repeat center / contain;
  transition: all 0.3s;
  cursor: pointer;
}
.swiper_btns.full div::after {
  content: '';
  display: block;
  width: 36%;
  height: 36%;
  background: url(https://measuresquare.com//wp-content/plugins/sytech-fronteditor/sytpl/home_trust/assets/img/arrow-w.svg) no-repeat center / contain;
}
.swiper_btns.full div.swiper-button-disabled::after {
  background-image: url(https://measuresquare.com//wp-content/plugins/sytech-fronteditor/sytpl/home_trust/assets/img/arrow-b.svg);
}
.swiper_btns.black div {
  background-image: url(https://measuresquare.com//wp-content/plugins/sytech-fronteditor/sytpl/home_trust/assets/img/arrow-b.svg);
}

.home_trust {
  overflow: hidden;
  padding: 146px 0 96px;
  background: url(https://measuresquare.com//wp-content/plugins/sytech-fronteditor/sytpl/home_trust/assets/img/home-trust-bg.jpg) no-repeat center / cover;
}
.home_trust .head {
  color: #fff;
}
.home_trust .home_trust_swiper {
  margin-top: 72px;
}
.home_trust .home_trust_swiper .swiper-wrapper {
  transition: all linear;
}
.home_trust .home_trust_swiper .swiper-slide {
  border-radius: 4px;
  overflow: hidden;
  background-color: #fff;
  aspect-ratio: 290/116;
  transition: all 0.3s;
}
.home_trust .home_trust_swiper .swiper-slide:hover {
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}
.home_trust .home_trust_swiper .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
 
@media screen and (max-width: 786px) {
  .content {
    padding: 0 1.2rem;
  }
  .home_trust {
    padding: 3rem 0 4rem;
  }
  .home_trust .home_trust_swiper {
    margin-top: 3rem;
  }
}

 
@media screen and (min-width: 786px)  and (max-width: 1600px) {
  .content {
    padding: 0 1.2rem;
  }
}
@media screen and (min-width: 786px)  and (max-width: 1440px) {
  .content {
    max-width: 1220px;
  }
}
@media screen and (min-width: 786px)  and (max-width: 1220px) {
  .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;
  }
  .solution_strength .head p {
    width: 70%;
  }
}
@media screen and (min-width: 786px)  and (max-width: 1000px) {
  .content {
    max-width: 786px;
  }
  .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;
  }
}
.button::after {
  content: '';
  display: block;
  width: 14px;
  height: 12px;
  background: url(https://measuresquare.com//wp-content/plugins/sytech-fronteditor/sytpl/home_crm/assets/img/arrow-line-w.svg) no-repeat center / contain;
  position: absolute;
  right: 26px;
  top: 50%;
  transform: translateY(-50%);
  transition: all 0.4s;
}
.button_more::after {
  content: '';
  display: block;
  width: 14px;
  height: 12px;
  background: url(https://measuresquare.com//wp-content/plugins/sytech-fronteditor/sytpl/home_crm/assets/img/arrow-line.svg) no-repeat center / contain;
  position: absolute;
  right: 36px;
  top: 50%;
  transform: translateY(-50%);
  transition: all 0.4s;
}
.swiper_btns div {
  width: 1rem;
  height: 30px;
  background: url(https://measuresquare.com//wp-content/plugins/sytech-fronteditor/sytpl/home_crm/assets/img/arrow-w.svg) no-repeat center / contain;
  transition: all 0.3s;
  cursor: pointer;
}
.swiper_btns.full div::after {
  content: '';
  display: block;
  width: 36%;
  height: 36%;
  background: url(https://measuresquare.com//wp-content/plugins/sytech-fronteditor/sytpl/home_crm/assets/img/arrow-w.svg) no-repeat center / contain;
}
.swiper_btns.full div.swiper-button-disabled::after {
  background-image: url(https://measuresquare.com//wp-content/plugins/sytech-fronteditor/sytpl/home_crm/assets/img/arrow-b.svg);
}
.swiper_btns.black div {
  background-image: url(https://measuresquare.com//wp-content/plugins/sytech-fronteditor/sytpl/home_crm/assets/img/arrow-b.svg);
}

.home_trade {
  padding: 93px 0 76px;
}
.home_trade .head h2 {
  max-width: 976px;
  margin: 0 auto;
}
.home_trade .nav {
  margin-top: 44px;
}
.home_trade .nav ul {
  display: flex;
  justify-content: center;
  gap: 2.36%;
}
.home_trade .nav ul li {
  color: #515151;
  font-size: 18px;
  font-weight: 500;
  transition: all 0.3s;
  cursor: pointer;
  border-bottom: 3px solid transparent;
  padding-bottom: 18px;
}
.home_trade .nav ul li.active,
.home_trade .nav ul li:hover {
  border-color: var(--theme_color);
  color: #242424;
}
.home_trade .home_trade_swiper {
  max-width: 1724px;
  width: calc(100% - 2.5rem);
  margin: 22px auto 0;
  overflow: hidden;
  border-radius: 28px;
  background: url(https://measuresquare.com//wp-content/plugins/sytech-fronteditor/sytpl/home_crm/assets/img/home-trade-bg.svg) no-repeat center / cover;
}
.home_trade .home_trade_swiper .swiper-slide .flex {
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  padding: 76px 0;
}
.home_trade .home_trade_swiper .swiper-slide .info {
  color: #fff;
  flex: 1;
  max-width: 30rem;
}
.home_trade .home_trade_swiper .swiper-slide .info h3 {
  font-size: 2rem;
  font-weight: 600;
}
.home_trade .home_trade_swiper .swiper-slide .info p {
  opacity: 0.85;
  font-size: 17px;
  font-weight: 200;
  line-height: 30px;
  margin-top: 22px;
}
.home_trade .home_trade_swiper .swiper-slide .info .button {
  margin-top: 46px;
}
.home_trade .home_trade_swiper .swiper-slide .img {
  width: 55.7639%;
  aspect-ratio: 803/518;
}
.home_trade .home_trade_swiper .swiper-slide .img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.home_crm {
  padding: 76px 0 162px;
  background: url(https://measuresquare.com//wp-content/plugins/sytech-fronteditor/sytpl/home_crm/assets/img/home-crm-bg.svg) no-repeat center / cover;
}
.home_crm .img {
  width: 52.7083%;
  aspect-ratio: 759/740;
}
.home_crm .img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
.home_crm .head {
  flex: 1;
  max-width: 532px;
}
.home_crm .head i {
  display: block;
  width: 74px;
  height: 76px;
  background: url(https://measuresquare.com//wp-content/plugins/sytech-fronteditor/sytpl/home_crm/assets/img/home-crm-icon.svg) no-repeat center / contain;
  margin-bottom: 36px;
}
.home_crm .head p {
  color: #757575;
  font-size: 17px;
  font-weight: 300;
  line-height: 30px;
  margin-top: 26px;
}
.home_crm .head ul {
  padding-top: 2px;
}
.home_crm .head ul li {
  color: #383838;
  font-size: 17px;
  font-weight: 300;
  line-height: 26px;
  padding-left: 2rem;
  position: relative;
  margin-top: 20px;
}
.home_crm .head ul li::before {
  content: '';
  display: block;
  width: 17px;
  height: 12px;
  background: url(https://measuresquare.com//wp-content/plugins/sytech-fronteditor/sytpl/home_crm/assets/img/gou.svg) no-repeat center / contain;
  position: absolute;
  left: 0;
  top: 8px;
}
.home_crm .head .button {
  margin-top: 26px;
}
 
@media screen and (max-width: 786px) {
  .content {
    padding: 0 1.2rem;
  }

  
  .home_crm {
    padding: 2rem 0 3rem;
  }
  .home_crm .flex {
    display: block;
  }
  .home_crm .img {
    width: 100%;
  }
  .home_crm .head {
    margin-top: 2rem;
  }
  .home_crm .head i {
    width: 3rem;
    height: 3rem;
    margin-bottom: 1rem;
  }
  .home_crm .head p {
    font-size: 0.9rem;
    line-height: 1.5rem;
    margin-top: 0.5rem;
  }
  .home_crm .head ul li {
    font-size: 0.9rem;
    line-height: 1.5rem;
    margin-top: 0.5rem;
    padding-left: 1rem;
  }
  .home_crm .head ul li::before {
    width: 12px;
    height: 12px;
    top: 4px;
  }
}

 
@media screen and (min-width: 786px)  and (max-width: 1600px) {
  .content {
    padding: 0 1.2rem;
  }
}
@media screen and (min-width: 786px)  and (max-width: 1440px) {
  .content {
    max-width: 1220px;
  }
}
@media screen and (min-width: 786px)  and (max-width: 1220px) {
  .content {
    max-width: 1000px;
  }
}
@media screen and (min-width: 786px)  and (max-width: 1000px) {
  .content {
    max-width: 786px;
  }
}
.button::after {
  content: '';
  display: block;
  width: 14px;
  height: 12px;
  background: url(https://measuresquare.com//wp-content/plugins/sytech-fronteditor/sytpl/home_resource/assets/img/arrow-line-w.svg) no-repeat center / contain;
  position: absolute;
  right: 26px;
  top: 50%;
  transform: translateY(-50%);
  transition: all 0.4s;
}
.button_more::after {
  content: '';
  display: block;
  width: 14px;
  height: 12px;
  background: url(https://measuresquare.com//wp-content/plugins/sytech-fronteditor/sytpl/home_resource/assets/img/arrow-line.svg) no-repeat center / contain;
  position: absolute;
  right: 36px;
  top: 50%;
  transform: translateY(-50%);
  transition: all 0.4s;
}
.swiper_btns div {
  width: 1rem;
  height: 30px;
  background: url(https://measuresquare.com//wp-content/plugins/sytech-fronteditor/sytpl/home_resource/assets/img/arrow-w.svg) no-repeat center / contain;
  transition: all 0.3s;
  cursor: pointer;
}
.swiper_btns.full div::after {
  content: '';
  display: block;
  width: 36%;
  height: 36%;
  background: url(https://measuresquare.com//wp-content/plugins/sytech-fronteditor/sytpl/home_resource/assets/img/arrow-w.svg) no-repeat center / contain;
}
.swiper_btns.full div.swiper-button-disabled::after {
  background-image: url(https://measuresquare.com//wp-content/plugins/sytech-fronteditor/sytpl/home_resource/assets/img/arrow-b.svg);
}
.swiper_btns.black div {
  background-image: url(https://measuresquare.com//wp-content/plugins/sytech-fronteditor/sytpl/home_resource/assets/img/arrow-b.svg);
}


.home_resource {
  background: url(https://measuresquare.com//wp-content/plugins/sytech-fronteditor/sytpl/home_resource/assets/img/home-resource-bg.jpg) no-repeat center / cover;
  border-radius: 1rem;
  padding: 160px 0 185px;
  overflow: hidden;
}
.home_resource .head {
  color: #fff;
}
.home_resource .swiper_btns.full div {
  background-color: rgba(255, 255, 255, 0.2);
}
.home_resource .swiper_btns.full div::after {
  background-image: url(https://measuresquare.com//wp-content/plugins/sytech-fronteditor/sytpl/home_resource/assets/img/arrow-w.svg);
}
.home_resource .home_resource_swiper {
  margin-top: 60px;
}
.home_resource .home_resource_swiper .swiper-slide a {
  display: flex;
  flex-direction: column;
  height: 100%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  background-color: rgba(255, 255, 255, 0.08);
  color: #fff;
  transition: all 0.3s;
  padding: 58px 10.2564% 60px;
}
.home_resource .home_resource_swiper .swiper-slide a:hover {
  border-color: rgba(255, 255, 255, 0.8);
  background-color: rgba(255, 255, 255, 0.14);
}
.home_resource .home_resource_swiper .swiper-slide a:hover span::after {
  transform: translateX(5px);
}
.home_resource .home_resource_swiper .swiper-slide i {
  width: 72px;
  height: 72px;
  background: no-repeat left center / contain;
}
.home_resource .home_resource_swiper .swiper-slide h3 {
  font-size: 26px;
  font-weight: 600;
  line-height: 2rem;
  margin-top: 52px;
}
.home_resource .home_resource_swiper .swiper-slide p {
  font-weight: 200;
  opacity: 0.85;
  font-size: 17px;
  line-height: 30px;
  margin-top: 14px;
  flex: 1;
}
.home_resource .home_resource_swiper .swiper-slide span {
  display: flex;
  align-items: center;
  color: var(--theme_color);
  font-size: 18px;
  font-weight: 500;
  gap: 10px;
  margin-top: 42px;
}
.home_resource .home_resource_swiper .swiper-slide span::after {
  content: '';
  display: block;
  width: 14px;
  height: 11px;
  background: url(https://measuresquare.com//wp-content/plugins/sytech-fronteditor/sytpl/home_resource/assets/img/arrow-line.svg) no-repeat center / contain;
  transition: all 0.3s;
}
 
@media screen and (max-width: 786px) {
  .content {
    padding: 0 1.2rem;
  }

  .home_resource {
    padding: 4rem 0;
    border-radius: 0;
  }
  .home_resource .home_resource_swiper {
    margin-top: 2rem;
  }
  .home_resource .home_resource_swiper .swiper-slide.swiper-slide-active a {
    border-color: rgba(255, 255, 255, 0.8);
    background-color: rgba(255, 255, 255, 0.14);
  }
  .home_resource .home_resource_swiper .swiper-slide a {
    padding: 2rem 1.2rem 1.6rem;
    border-radius: 8px;
  }
  .home_resource .home_resource_swiper .swiper-slide i {
    width: 2.5rem;
    height: 2.5rem;
  }
  .home_resource .home_resource_swiper .swiper-slide h3 {
    font-size: 18px;
    line-height: 1.5;
    margin-top: 1rem;
  }
  .home_resource .home_resource_swiper .swiper-slide p {
    font-size: 0.9rem;
    line-height: 1.5rem;
    margin-top: 0.5rem;
  }
  .home_resource .home_resource_swiper .swiper-slide span {
    font-size: 14px;
    margin-top: 1.25rem;
    gap: 5px;
  }
  .home_resource .home_resource_swiper .swiper-slide span::after {
    width: 14px;
    height: 14px;
  }
}

 
@media screen and (min-width: 786px)  and (max-width: 1600px) {
  .content {
    padding: 0 1.2rem;
  }
}
@media screen and (min-width: 786px)  and (max-width: 1440px) {
  .content {
    max-width: 1220px;
  }
}
@media screen and (min-width: 786px)  and (max-width: 1220px) {
  .content {
    max-width: 1000px;
  }
}
@media screen and (min-width: 786px)  and (max-width: 1000px) {
  .content {
    max-width: 786px;
  }
}
.button::after {
  content: '';
  display: block;
  width: 14px;
  height: 12px;
  background: url(https://measuresquare.com//wp-content/plugins/sytech-fronteditor/sytpl/home_voice/assets/img/arrow-line-w.svg) no-repeat center / contain;
  position: absolute;
  right: 26px;
  top: 50%;
  transform: translateY(-50%);
  transition: all 0.4s;
}
.button_more::after {
  content: '';
  display: block;
  width: 14px;
  height: 12px;
  background: url(https://measuresquare.com//wp-content/plugins/sytech-fronteditor/sytpl/home_voice/assets/img/arrow-line.svg) no-repeat center / contain;
  position: absolute;
  right: 36px;
  top: 50%;
  transform: translateY(-50%);
  transition: all 0.4s;
}
.swiper_btns div {
  width: 1rem;
  height: 30px;
  background: url(https://measuresquare.com//wp-content/plugins/sytech-fronteditor/sytpl/home_voice/assets/img/arrow-w.svg) no-repeat center / contain;
  transition: all 0.3s;
  cursor: pointer;
}
.swiper_btns.full div::after {
  content: '';
  display: block;
  width: 36%;
  height: 36%;
  background: url(https://measuresquare.com//wp-content/plugins/sytech-fronteditor/sytpl/home_voice/assets/img/arrow-w.svg) no-repeat center / contain;
}
.swiper_btns.full div.swiper-button-disabled::after {
  background-image: url(https://measuresquare.com//wp-content/plugins/sytech-fronteditor/sytpl/home_voice/assets/img/arrow-b.svg);
}
.swiper_btns.black div {
  background-image: url(https://measuresquare.com//wp-content/plugins/sytech-fronteditor/sytpl/home_voice/assets/img/arrow-b.svg);
}



.home_voice {
  padding: 87px 0 3rem;
  overflow: hidden;
}
.home_voice .head h2 {
  position: relative;
  max-width: max-content;
  margin: 0 auto;
}
.home_voice .head h2::before {
  content: '';
  display: block;
  width: 29px;
  height: 34px;
  background: url(https://measuresquare.com//wp-content/plugins/sytech-fronteditor/sytpl/home_voice/assets/img/home-voice-icon1.svg) no-repeat center / contain;
  position: absolute;
  left: -46px;
  top: -44px;
}
.home_voice .head h2::after {
  content: '';
  display: block;
  width: 34px;
  height: 34px;
  background: url(https://measuresquare.com//wp-content/plugins/sytech-fronteditor/sytpl/home_voice/assets/img/home-voice-icon2.svg) no-repeat center / contain;
  position: absolute;
  right: -70px;
  bottom: -26px;
}
.home_voice .button {
  padding: 18.5px 58px 18.5px 38px;
}
.home_voice .button::after {
  right: 36px;
}
.home_voice .button:hover {
  padding: 18.5px 3rem;
}
.home_voice .main {
  margin: 73px 0 38px;
  background-color: #0b151e;
}
.home_voice .main .flex {
  max-width: 1920px;
  margin: 0 auto;
}
.home_voice .imgs {
  min-width: 50.15625%;
  position: relative;
  overflow: hidden;
}
.home_voice .imgs li {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  transition: all 0.3s;
  opacity: 0;
  pointer-events: none;
}
.home_voice .imgs li.active {
  opacity: 1;
  pointer-events: all;
}
.home_voice .imgs li img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.home_voice .home_voice_swiper_box {
  min-width: 100%;
  overflow: hidden;
  padding: 100px 10px 5rem;
  transform: translateX(-4.86%);
}
.home_voice .home_voice_swiper {
  max-width: 700px;
}
.home_voice .home_voice_swiper .swiper-slide {
  background-color: #fff;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
  border-radius: 6px;
  color: #383838;
  padding: 90px 8.57% 62px;
  position: relative;
}
.home_voice .home_voice_swiper .swiper-slide::before {
  content: '';
  display: block;
  width: 10.857%;
  aspect-ratio: 1/1;
  background: url(https://measuresquare.com//wp-content/plugins/sytech-fronteditor/sytpl/home_voice/assets/img/home-voice-icon3.svg) no-repeat center / contain;
  position: absolute;
  left: 8.57%;
  top: 0;
  transform: translateY(-50%);
}
.home_voice .home_voice_swiper .swiper-slide p {
  font-size: 20px;
  line-height: 34px;
  margin-bottom: 56px;
}
.home_voice .home_voice_swiper .swiper-slide strong {
  display: block;
  font-size: 18px;
  font-weight: 600;
  line-height: 34px;
  margin-bottom: 5px;
}
.home_voice .home_voice_swiper .swiper-slide span {
  color: #969696;
  font-size: 14px;
  line-height: 24px;
}
.home_voice .home_voice_swiper .flex {
  margin-top: 28px;
  padding-left: 14.2857%;
}
 
@media screen and (max-width: 786px) {
  .content {
    padding: 0 1.2rem;
  }

  .home_voice {
    padding: 4rem 0;
  }
  .home_voice .head h2::before {
    width: 1rem;
    height: 1rem;
    left: -1rem;
    top: -1rem;
  }
  .home_voice .head h2::after {
    width: 1rem;
    height: 1rem;
    right: -1rem;
    bottom: -1rem;
  }
  .home_voice .main {
    margin: 2rem 0;
  }
  .home_voice .main > .flex {
    display: block;
  }
  .home_voice .imgs {
    width: 100%;
    height: 220px;
  }
  .home_voice .home_voice_swiper_box {
    transform: translate(0);
    padding: 3rem 1.2rem 2rem;
  }
  .home_voice .home_voice_swiper .swiper-slide {
    padding: 2rem 1.2rem 1.6rem;
  }
  .home_voice .home_voice_swiper .swiper-slide::before {
    left: 1.2rem;
  }
  .home_voice .home_voice_swiper .swiper-slide p {
    font-size: 0.9rem;
    line-height: 1.5rem;
    margin-bottom: 2rem;
  }
  .home_voice .home_voice_swiper .swiper-slide strong {
    font-size: 15px;
    line-height: 1.5;
  }
  .home_voice .home_voice_swiper .swiper-slide span {
    font-size: 13px;
  }
  .home_voice .home_voice_swiper .flex {
    padding-left: 1.2rem;
    margin-top: 1.25rem;
  }
  .home_voice .button {
    padding: 10px 1rem;
    margin: 0 auto;
  }
  .home_voice .button:hover {
    padding: 10px 1rem;
  }
}

 
@media screen and (min-width: 786px)  and (max-width: 1600px) {
  .content {
    padding: 0 1.2rem;
  }
}
@media screen and (min-width: 786px)  and (max-width: 1440px) {
  .content {
    max-width: 1220px;
  }
  .home_voice .home_voice_swiper {
    max-width: 600px;
  }
}
@media screen and (min-width: 786px)  and (max-width: 1220px) {
  .content {
    max-width: 1000px;
  }
  .home_voice .home_voice_swiper {
    max-width: 500px;
  }
}
@media screen and (min-width: 786px)  and (max-width: 1000px) {
  .content {
    max-width: 786px;
  }
  .home_voice .home_voice_swiper {
    max-width: 400px;
  }
}
.button::after {
  content: '';
  display: block;
  width: 14px;
  height: 12px;
  background: url(https://measuresquare.com//wp-content/plugins/sytech-fronteditor/sytpl/home_partner/assets/img/arrow-line-w.svg) no-repeat center / contain;
  position: absolute;
  right: 26px;
  top: 50%;
  transform: translateY(-50%);
  transition: all 0.4s;
}
.button_more::after {
  content: '';
  display: block;
  width: 14px;
  height: 12px;
  background: url(https://measuresquare.com//wp-content/plugins/sytech-fronteditor/sytpl/home_partner/assets/img/arrow-line.svg) no-repeat center / contain;
  position: absolute;
  right: 36px;
  top: 50%;
  transform: translateY(-50%);
  transition: all 0.4s;
}
.swiper_btns div {
  width: 1rem;
  height: 30px;
  background: url(https://measuresquare.com//wp-content/plugins/sytech-fronteditor/sytpl/home_partner/assets/img/arrow-w.svg) no-repeat center / contain;
  transition: all 0.3s;
  cursor: pointer;
}
.swiper_btns.full div::after {
  content: '';
  display: block;
  width: 36%;
  height: 36%;
  background: url(https://measuresquare.com//wp-content/plugins/sytech-fronteditor/sytpl/home_partner/assets/img/arrow-w.svg) no-repeat center / contain;
}
.swiper_btns.full div.swiper-button-disabled::after {
  background-image: url(https://measuresquare.com//wp-content/plugins/sytech-fronteditor/sytpl/home_partner/assets/img/arrow-b.svg);
}
.swiper_btns.black div {
  background-image: url(https://measuresquare.com//wp-content/plugins/sytech-fronteditor/sytpl/home_partner/assets/img/arrow-b.svg);
}



.home_partner {
  overflow: hidden;
  padding: 66px 0 68px;
  border-top: 1px solid #dcdcdc;
  border-bottom: 1px solid #dcdcdc;
}
.home_partner .head h2 {
  max-width: 976px;
  margin: 0 auto;
}
.home_partner .home_partner_swiper {
  margin-top: 72px;
}
.home_partner .home_partner_swiper .swiper-wrapper {
  transition: all linear;
}
.home_partner .home_partner_swiper .swiper-slide {
  border-radius: 4px;
  overflow: hidden;
  background-color: #fff;
  aspect-ratio: 290/116;
  transition: all 0.3s;
}
.home_partner .home_partner_swiper .swiper-slide:hover {
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}
.home_partner .home_partner_swiper .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
 
@media screen and (max-width: 786px) {
  .content {
    padding: 0 1.2rem;
  }

  .home_partner {
    padding: 3rem 0 4rem;
  }
  .home_partner .home_partner_swiper {
    margin-top: 3rem;
  }
}

 
@media screen and (min-width: 786px)  and (max-width: 1600px) {
  .content {
    padding: 0 1.2rem;
  }
}
@media screen and (min-width: 786px)  and (max-width: 1440px) {
  .content {
    max-width: 1220px;
  }
}
@media screen and (min-width: 786px)  and (max-width: 1220px) {
  .content {
    max-width: 1000px;
  }
}
@media screen and (min-width: 786px)  and (max-width: 1000px) {
  .content {
    max-width: 786px;
  }
}
.button::after {
  content: '';
  display: block;
  width: 14px;
  height: 12px;
  background: url(https://measuresquare.com//wp-content/plugins/sytech-fronteditor/sytpl/home_blog/assets/img/arrow-line-w.svg) no-repeat center / contain;
  position: absolute;
  right: 26px;
  top: 50%;
  transform: translateY(-50%);
  transition: all 0.4s;
}
.button_more::after {
  content: '';
  display: block;
  width: 14px;
  height: 12px;
  background: url(https://measuresquare.com//wp-content/plugins/sytech-fronteditor/sytpl/home_blog/assets/img/arrow-line.svg) no-repeat center / contain;
  position: absolute;
  right: 36px;
  top: 50%;
  transform: translateY(-50%);
  transition: all 0.4s;
}
.swiper_btns div {
  width: 1rem;
  height: 30px;
  background: url(https://measuresquare.com//wp-content/plugins/sytech-fronteditor/sytpl/home_blog/assets/img/arrow-w.svg) no-repeat center / contain;
  transition: all 0.3s;
  cursor: pointer;
}
.swiper_btns.full div::after {
  content: '';
  display: block;
  width: 36%;
  height: 36%;
  background: url(https://measuresquare.com//wp-content/plugins/sytech-fronteditor/sytpl/home_blog/assets/img/arrow-w.svg) no-repeat center / contain;
}
.swiper_btns.full div.swiper-button-disabled::after {
  background-image: url(https://measuresquare.com//wp-content/plugins/sytech-fronteditor/sytpl/home_blog/assets/img/arrow-b.svg);
}
.swiper_btns.black div {
  background-image: url(https://measuresquare.com//wp-content/plugins/sytech-fronteditor/sytpl/home_blog/assets/img/arrow-b.svg);
}


.home_blog {
  padding: 118px 0 184px;
}
.home_blog .main {
  margin-top: 52px;
}
.home_blog .main ul {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(3, 1fr);
}

.resources .resource a {
  display: flex;
  flex-direction: column;
  height: 100%;
  background-color: #fff;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
  border-radius: 12px;
  overflow: hidden;
}
.resources .resource a:hover img {
  transform: scale(1.05);
}
.resources .resource a:hover .info > span::after {
  transform: translateX(5px);
}
.resources .resource .img {
  aspect-ratio: 470/300;
  overflow: hidden;
}
.resources .resource .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: all 0.5s;
}
.resources .resource .info {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 35px 7.234%;
}
.resources .resource .info p {
  color: var(--theme_color);
  font-size: 18px;
  font-weight: 500;
  line-height: 22px;
  margin-bottom: 22px;
}
.resources .resource .info p span {
  color: #757575;
  font-weight: 300;
}
.resources .resource .info strong {
  font-size: 26px;
  font-weight: 600;
  line-height: 2rem;
  flex: 1;
  min-height: 6rem;
  -webkit-line-clamp: 3;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.resources .resource .info > span {
  margin-top: 34px;
  color: var(--theme_color);
  font-size: 18px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 9px;
}
.resources .resource .info > span::after {
  content: '';
  display: block;
  width: 14px;
  height: 12px;
  background: url(https://measuresquare.com//wp-content/plugins/sytech-fronteditor/sytpl/home_blog/assets/img/arrow-line.svg) no-repeat center / contain;
  transition: all 0.3s;
}
 
@media screen and (max-width: 786px) {
  .content {
    padding: 0 1.2rem;
  }

  .home_blog {
    padding: 4rem 0;
  }
  .home_blog .content {
    padding: 0;
  }
  .home_blog .head {
    padding: 0 1.2rem;
  }
  .home_blog .main {
    margin-top: 1rem;
  }
  .home_blog .main ul {
    display: flex;
    overflow: auto;
    padding: 1.2rem;
  }
  .home_blog .main ul li {
    min-width: 75%;
  }


  .resources .resource a {
    border-radius: 8px;
  }
  .resources .resource .info {
    padding: 1rem 1rem 1.25rem;
  }
  .resources .resource .info p {
    font-size: 14px;
    margin-bottom: 0.5rem;
  }
  .resources .resource .info strong {
    font-size: 1rem;
    line-height: 1.5;
    min-height: unset;
  }
  .resources .resource .info span {
    margin-top: 1rem;
    font-size: 14px;
    gap: 5px;
  }
  .resources .resource .info span::after {
    width: 13px;
    height: 13px;
  }
}

 
@media screen and (min-width: 786px)  and (max-width: 1600px) {
  .content {
    padding: 0 1.2rem;
  }
}
@media screen and (min-width: 786px)  and (max-width: 1440px) {
  .content {
    max-width: 1220px;
  }
}
@media screen and (min-width: 786px)  and (max-width: 1220px) {
  .content {
    max-width: 1000px;
  }
}
@media screen and (min-width: 786px)  and (max-width: 1000px) {
  .content {
    max-width: 786px;
  }
  .home_blog .main ul {
    grid-template-columns: repeat(2, 1fr);
  }
}