 
* {
	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/category_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/category_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/category_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/category_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/category_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/category_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);
}

.category_banner {
  background: url(https://measuresquare.com//wp-content/plugins/sytech-fronteditor/sytpl/category_banner/assets/img/cate-banner.jpg) no-repeat bottom center / cover;
}
.category_banner .flex {
  min-height: 770px;
}
.category_banner .head {
  color: #fff;
  max-width: 676px;
  padding-bottom: 4.722%;
}
.category_banner .head .subtitle {
  text-transform: none;
  margin-bottom: 13px;
}
.category_banner .head h1 {
  font-size: 4rem;
  font-weight: 600;
  line-height: 76px;
}
.category_banner .head p {
  font-size: 17px;
  font-weight: 200;
  line-height: 30px;
  max-width: 523px;
  margin-top: 18px;
}
.category_banner .head .btns {
  margin-top: 35px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 22px;
}
.category_banner .head .btns .try {
  background-color: #fff;
  color: var(--theme_color);
  font-size: 18px;
  font-weight: 500;
  text-align: center;
  border-radius: 6px;
  transition: all 0.3s;
  padding: 13.5px 55px;
}
.category_banner .head .btns .try:hover {
  color: #fff;
  background-color: var(--subtheme_color);
}
 
@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;
  }


  .category_banner {
    padding: 4rem 0 3rem;
  }
  .category_banner .flex {
    min-height: unset;
  }
  .category_banner .head {
    padding: 0;
  }
  .category_banner .head h1 {
    font-size: 25px;
    line-height: 1.5;
  }
  .category_banner .head p {
    font-size: 0.9rem;
    line-height: 1.5rem;
    margin-top: 0.5rem;
  }
  .category_banner .head .btns {
    margin-top: 2rem;
    gap: 1rem;
  }
  .category_banner .head .btns .try {
    font-size: 14px;
    padding: 9px 15px;
    flex: 1;
    text-align: center;
  }
  .category_banner .head .btns .button {
    flex: 1;
    max-width: unset;
  }
}

 
@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;
  }
}
 
/*
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;
  }
}
.content { 
	margin: 0 auto;
	position: relative;
}
@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;
  }
}
