 
* {
	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: #043274;
  --subtheme_color: #28b6ef;
  --hover_color: #0077b5;
  --title_color: #242424;
  --subtitle_color: #25292d;
  --bg_color: linear-gradient(to right, #043274, #28b4ed);
}
ul {
  list-style: none;
}
a {
  color: #1c232f;
  text-decoration: none;
  font-size: 1rem;
}
i {
  font-style: normal;
}
.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 {
  /* font-family: 'Verdana', sans-serif; */
}
.only_mobile {
  display: none;
}

.head .subtitle {
  color: var(--subtheme_color);
}
.head h2 {
  color: var(--title_color);
  font-size: 46px;
  font-weight: 700;
  line-height: 62px;
}
.head h2 sup {
  font-size: 26px;
}
.button {
  display: inline-block;
  line-height: 1;
  color: #fff;
  background-image: var(--bg_color);
  border-radius: 24px;
  padding: 1rem 2rem;
  transition: all 0.3s;
}
.button:hover {
  filter: brightness(1.2);
}
.button_more {
  display: inline-block;
  line-height: 1;
  background-color: #ebeff4;
  position: relative;
  overflow: hidden;
  border-radius: 2rem;
  color: var(--title_color);
  font-size: 20px;
  padding: 21px 70px 23px 45px;
  transition: all 0.3s;
  z-index: 2;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.05);
}
.button_more::before {
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
  background-image: var(--bg_color);
  transition: all 0.3s;
  opacity: 0;
}
.button_more::after {
  content: '';
  display: block;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: url(https://www.nti-nanofilm.com//wp-content/plugins/sytech-fronteditor/sytpl/home_banner/assets/img/btn_more.svg) no-repeat center / cover;
  position: absolute;
  right: 8px;
  top: 8px;
  transition: all 0.3s;
}
.button_more:hover {
  color: #fff;
  padding: 21px 57.5px 23px;
}
.button_more:hover::before {
  opacity: 1;
}
.button_more:hover::after {
  right: 0;
  transform: translateX(100%);
  opacity: 0;
}
.button_to {
  display: inline-block;
  line-height: 1;
  font-size: 20px;
  color: #fff;
  background-image: var(--bg_color);
  border-radius: 2rem;
  transition: all 0.3s;
  position: relative;
  padding: 21px 74px 23px 42px;
  overflow: hidden;
  white-space: nowrap;
}
.button_to::after {
  content: '';
  display: block;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: url(https://www.nti-nanofilm.com//wp-content/plugins/sytech-fronteditor/sytpl/home_banner/assets/img/right-line.svg) no-repeat center / 25%;
  background-color: #fff;
  position: absolute;
  top: 8px;
  right: 8px;
  z-index: 2;
  transition: all 0.3s;
}
.button_to:hover {
  filter: brightness(1.2);
  padding: 21px 58px 23px;
}
.button_to:hover::after {
  opacity: 0;
  right: 0;
  transform: translateX(100%);
}
div.swiper-pagination {
  position: static;
  display: flex;
  align-items: center;
  gap: 28px;
  height: 1rem;
}
div.swiper-pagination .swiper-pagination-bullet {
  opacity: 1;
  margin: 0;
  transition: all 0.2s linear;
  width: 0.5rem;
  height: 0.5rem;
  border: 1px solid #25292d;
  background-color: #25292d;
}
div.swiper-pagination .swiper-pagination-bullet-active {
  background-color: transparent;
  width: 1rem;
  height: 1rem;
}
.swiper_btns {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 98%;
  max-width: 1766px;
  z-index: 2;
}
.swiper_btns div {
  position: absolute;
  left: 0;
  top: 0;
  transform: translateY(-50%);
  background: url(https://www.nti-nanofilm.com//wp-content/plugins/sytech-fronteditor/sytpl/home_banner/assets/img/left-w.svg) no-repeat center / contain;
  transition: all 0.3s;
  width: 12px;
  height: 22px;
  cursor: pointer;
}
.swiper_btns div.swiper-button-disabled {
  cursor: default;
  opacity: 0.5;
}
.swiper_btns .btn_next {
  left: unset;
  right: 0;
  background-image: url(https://www.nti-nanofilm.com//wp-content/plugins/sytech-fronteditor/sytpl/home_banner/assets/img/right-w.svg);
}
.swiper_btns_full {
  display: flex;
  gap: 24px;
}
.swiper_btns_full div {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background-color: #eaeaea;
  cursor: pointer;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
}
.swiper_btns_full div::after {
  content: '';
  display: block;
  width: 30%;
  height: 30%;
  background: url(https://www.nti-nanofilm.com//wp-content/plugins/sytech-fronteditor/sytpl/home_banner/assets/img/left-b.svg) no-repeat center / contain;
  filter: brightness(20);
  transition: all 0.3s;
}
.swiper_btns_full div:hover {
  filter: brightness(1.3);
}
.swiper_btns_full div::before {
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-image: var(--bg_color);
  transition: all 0.3s;
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
}
.swiper_btns_full div.swiper-button-disabled {
  cursor: default;
}
.swiper_btns_full div.swiper-button-disabled:hover {
  filter: brightness(1);
}
.swiper_btns_full div.swiper-button-disabled::before {
  opacity: 0;
}
.swiper_btns_full div.swiper-button-disabled::after {
  filter: none;
}
.swiper_btns_full .btn_next::after {
  background-image: url(https://www.nti-nanofilm.com//wp-content/plugins/sytech-fronteditor/sytpl/home_banner/assets/img/right-b.svg);
}
.parallax-mirror {
  z-index: 1 !important;
}




.home_banner {
  background-color: #eeeeee;
}
.home_banner .home_banner_swiper {
  overflow: hidden;
  position: relative;
}
.home_banner .home_banner_swiper .swiper-slide {
  padding: 80px 0 185px;
  background: url() no-repeat center / cover;
  background-color: #0c3762;
}
.home_banner .home_banner_swiper .swiper-slide .flex {
  min-height: 718px;
  align-items: center;
}
.home_banner .home_banner_swiper .swiper-slide .head {
  text-align: center;
  max-width: 1066px;
  margin: 0 auto;
}
.home_banner .home_banner_swiper .swiper-slide .head h1,
.home_banner .home_banner_swiper .swiper-slide .head h2 {
  color: #fff;
  font-size: 62px;
  font-weight: 700;
  line-height: 92px;
  margin: 35px 0 5px;
}
.home_banner .home_banner_swiper .swiper-slide .head p {
  color: #fff;
  font-size: 17px;
  line-height: 29px;
  max-width: 796px;
  margin: 0 auto 30px;
  opacity: 0.9;
}
.home_banner .home_banner_swiper .swiper-pagination {
  position: absolute;
  left: 50%;
  bottom: 128px;
  transform: translateX(-50%);
  z-index: 2;
  filter: brightness(20);
  justify-content: center;
}
 
@media screen and (max-width: 786px) {
    .content {
        padding: 0 1.2rem;
      }
      .swiper_content {
        padding: 10px 1.2rem;
      }
      .obly_mobile {
        display: block;
      }
      .head .subtitle {
        font-size: 14px;
      }
      .head h1 {
        font-size: 25px;
        line-height: 1.5;
      }
      .head h2 {
        font-size: 22px;
        line-height: 1.5;
      }
      .head h2 sup {
        font-size: 12px;
      }
      .head p {
        font-size: 0.9rem;
        line-height: 1.5rem;
      }
      .button_more {
        font-size: 14px;
        padding: 14px 3rem 14px 22px;
        white-space: nowrap;
      }
      .button_more::after {
        width: 2rem;
        height: 2rem;
        top: 5px;
        right: 5px;
      }
      .button_more:hover {
        padding: 14px 35px;
      }
      .button_to {
        font-size: 14px;
        padding: 14px 3rem 14px 22px;
        white-space: nowrap;
      }
      .button_to::after {
        width: 2rem;
        height: 2rem;
        top: 5px;
        right: 5px;
      }
      .button_to:hover {
        padding: 14px 35px;
      }
      div.swiper-pagination {
        gap: 1rem;
      }
      div.swiper-pagination .swiper-pagination-bullet {
        width: 11px;
        height: 11px;
      }
      div.swiper-pagination .swiper-pagination-bullet-active {
        width: 15px;
        height: 15px;
      }

  .home_banner .home_banner_swiper .swiper_btns {
    display: none;
  }
  .home_banner .home_banner_swiper .swiper-pagination {
    bottom: 2rem;
  }
  .home_banner .home_banner_swiper .swiper-slide {
    padding: 5rem 0 6rem;
  }
  .home_banner .home_banner_swiper .swiper-slide .head h1,
  .home_banner .home_banner_swiper .swiper-slide .head h2 {
    font-size: 25px;
    line-height: 1.5;
    margin: 0.5rem 0;
  }
  .home_banner .home_banner_swiper .swiper-slide .head p {
    margin: 0 0 1.2rem;
    font-size: 0.9rem;
    line-height: 1.5rem;
  }
  .home_banner .home_banner_swiper .swiper-slide .flex {
    min-height: unset;
  }
}

 
@media screen and (min-width: 786px)  and (max-width: 1600px) {
  .content {
    padding: 0 1.2rem;
  }
  .swiper_content {
    padding: 10px 20px;
    max-width: 1460px;
  }
  .swiper_btns_full div {
    width: 60px;
    height: 60px;
  }
}
@media screen and (min-width: 786px)  and (max-width: 1450px) {
  .content {
    max-width: 1200px;
  }
  .swiper_content {
    max-width: 1180px;
    padding: 10px;
  }
  .swiper_btns_full div {
    width: 50px;
    height: 50px;
  }
}
@media screen and (min-width: 786px)  and (max-width: 1200px) {
  .content {
    max-width: 1000px;
  }
  .swiper_content {
    max-width: 980px;
  }
  .swiper_btns_full div {
    width: 2.5rem;
    height: 2.5rem;
  }
  .home_banner .home_banner_swiper .swiper-slide {
    padding: 50px 0 5rem;
  }
  .home_banner .home_banner_swiper .swiper-slide .head h1,
  .home_banner .home_banner_swiper .swiper-slide .head h2 {
    font-size: 3.5rem;
    line-height: 1.5;
  }
  .home_banner .home_banner_swiper .swiper-pagination {
    bottom: 3rem;
  }
}
@media screen and (min-width: 786px)  and (max-width: 1000px) {
  .content {
    max-width: 786px;
  }
  .swiper_content {
    max-width: 766px;
  }
  .head h2 {
    font-size: 36px;
    line-height: 1.5;
  }
  .button_to,
  .button_more {
    zoom: 0.8;
  }
  .home_banner .home_banner_swiper .swiper-slide .head p {
    width: 90%;
  }
}
 
/*
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%;
  }
}
.button_more::after {
  content: '';
  display: block;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: url(https://www.nti-nanofilm.com//wp-content/plugins/sytech-fronteditor/sytpl/home_intro/assets/img/btn_more.svg) no-repeat center / cover;
  position: absolute;
  right: 8px;
  top: 8px;
  transition: all 0.3s;
}
.button_to::after {
  content: '';
  display: block;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: url(https://www.nti-nanofilm.com//wp-content/plugins/sytech-fronteditor/sytpl/home_intro/assets/img/right-line.svg) no-repeat center / 25%;
  background-color: #fff;
  position: absolute;
  top: 8px;
  right: 8px;
  z-index: 2;
  transition: all 0.3s;
}
.swiper_btns div {
  position: absolute;
  left: 0;
  top: 0;
  transform: translateY(-50%);
  background: url(https://www.nti-nanofilm.com//wp-content/plugins/sytech-fronteditor/sytpl/home_intro/assets/img/left-w.svg) no-repeat center / contain;
  transition: all 0.3s;
  width: 12px;
  height: 22px;
  cursor: pointer;
}
.swiper_btns .btn_next {
  left: unset;
  right: 0;
  background-image: url(https://www.nti-nanofilm.com//wp-content/plugins/sytech-fronteditor/sytpl/home_intro/assets/img/right-w.svg);
}
.swiper_btns_full div::after {
  content: '';
  display: block;
  width: 30%;
  height: 30%;
  background: url(https://www.nti-nanofilm.com//wp-content/plugins/sytech-fronteditor/sytpl/home_intro/assets/img/left-b.svg) no-repeat center / contain;
  filter: brightness(20);
  transition: all 0.3s;
}
.swiper_btns_full .btn_next::after {
  background-image: url(https://www.nti-nanofilm.com//wp-content/plugins/sytech-fronteditor/sytpl/home_intro/assets/img/right-b.svg);
}


.home_intro {
  overflow: hidden;
  padding: 188px 0 374px;
  background: url(https://www.nti-nanofilm.com//wp-content/plugins/sytech-fronteditor/sytpl/home_intro/assets/img/home-intro-bg.svg) no-repeat center / cover;
  position: relative;
}
.home_intro .img {
  min-width: 62.3%;
  transition: all 1s;
}
.home_intro .img img {
  width: 100%;
  height: auto;
  object-fit: contain;
}
.home_intro .head {
  min-width: 40.555%;
  margin-left: 6.944%;
}
.home_intro .head p {
  color: #666666;
  font-size: 17px;
  line-height: 30px;
  margin: 2rem 0 36px;
}
.home_intro .head ul {
  margin-bottom: 40px;
}
.home_intro .head ul li {
  color: var(--title_color);
  font-size: 18px;
  padding-left: 8.5616%;
  position: relative;
  margin-bottom: 22px;
}
.home_intro .head ul li:last-child {
  margin-bottom: 0;
}
.home_intro .head ul li::before {
  content: '';
  display: block;
  width: 4.7945%;
  padding-bottom: 4.7945%;
  background: url(https://www.nti-nanofilm.com//wp-content/plugins/sytech-fronteditor/sytpl/home_intro/assets/img/gou-yuan.svg) no-repeat center / contain;
  position: absolute;
  left: 0;
  top: 0;
}
.home_intro .head .button_more {
  padding: 21px 66px 23px 41px;
}
.home_intro .head .button_more:hover {
  padding: 21px 53.5px 23px;
}
.home_intro .bg1 {
  width: 105%;
  height: calc(95% - 100px);
  background: url(https://www.nti-nanofilm.com//wp-content/plugins/sytech-fronteditor/sytpl/home_intro/assets/img/home-intro-bg1.svg) no-repeat center / contain;
  position: absolute;
  left: 0;
  top: 2%;
  transition: all 1s;
}
.home_intro .bg3 {
  width: 2.34375%;
  padding-bottom: 2.55208%;
  background: url(https://www.nti-nanofilm.com//wp-content/plugins/sytech-fronteditor/sytpl/home_intro/assets/img/home-intro-bg3.png) no-repeat center / contain;
  position: absolute;
  right: 2.604%;
  top: 4.6875%;
  transition: all 1s;
}
.home_intro .bg4 {
  width: 2.083%;
  padding-bottom: 2.23958%;
  background: url(https://www.nti-nanofilm.com//wp-content/plugins/sytech-fronteditor/sytpl/home_intro/assets/img/home-intro-bg4.png) no-repeat center / contain;
  position: absolute;
  left: 50%;
  top: 50%;
  transition: all 1s;
}
.home_intro .bg5 {
  width: 3.3854%;
  padding-bottom: 4.1667%;
  background: url(https://www.nti-nanofilm.com//wp-content/plugins/sytech-fronteditor/sytpl/home_intro/assets/img/home-intro-bg5.png) no-repeat center / contain;
  left: 3.90625%;
  bottom: calc(4.166% + 100px);
  position: absolute;
  transition: all 1s;
}
 
@media screen and (max-width: 786px) {
    .content {
        padding: 0 1.2rem;
      }


      .home_intro {
        padding: 4rem 0 30px;
      }
      .home_intro .content > .flex {
        flex-wrap: wrap;
      }
      .home_intro .img {
        width: 100%;
        height: 250px;
        margin-top: 30px;
        order: 2;
      }
      .home_intro .img img {
        width: 100%;
        height: 100%;
        object-fit: contain;
      }
      .home_intro .head {
        width: 100%;
        margin: 0;
      }
      .home_intro .head p {
        font-size: 0.9rem;
        line-height: 1.5rem;
        margin: 0.5rem 0 1rem;
      }
      .home_intro .head ul {
        margin-bottom: 1.2rem;
      }
      .home_intro .head ul li {
        padding-left: 1.5rem;
        font-size: 14px;
        line-height: 1.4rem;
        margin-bottom: 8px;
      }
      .home_intro .head ul li::before {
        top: 3px;
      }
      .home_intro .head .button_more {
        font-size: 14px;
        padding: 14px 3rem 14px 22px;
      }
      .home_intro .head .button_more::after {
        width: 2rem;
        height: 2rem;
        top: 5px;
        right: 5px;
      }
      .home_intro .head .button_more:hover {
        padding: 14px 35px;
      }
}

 
@media screen and (min-width: 786px)  and (max-width: 1600px) {
  .content {
    padding: 0 1.2rem;
  }
  .home_intro .img {
    min-width: 50%;
    flex: 1;
  }
  .home_intro .head {
    margin-left: 2rem;
  }
}
@media screen and (min-width: 786px)  and (max-width: 1400px) {
  .content {
    max-width: 1200px;
  }
}
@media screen and (min-width: 786px)  and (max-width: 1200px) {
  .content {
    max-width: 1000px;
  }
  .home_intro .head ul {
    display: flex;
    flex-wrap: wrap;
    gap: 1.2rem;
  }
  .home_intro .head ul li {
    padding-left: 2.2rem;
  }
  .home_intro .head ul li::before {
    min-width: 1.5rem;
    height: 1.5rem;
    top: -1px;
    padding: 0;
  }
}
@media screen and (min-width: 786px)  and (max-width: 1000px) {
  .content {
    max-width: 786px;
  }
  .home_intro {
    padding: 150px 0;
  }
  .home_intro .content > .flex {
    display: block;
  }
  .home_intro .head {
    margin-top: 3rem;
    min-width: 50%;
  }
  .home_intro .head h2 {
    font-size: 2.5rem;
  }
  .home_intro .img {
    min-width: 45%;
    max-width: 600px;
    margin: 0 auto;
  }
}
.button_more::after {
  content: '';
  display: block;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: url(https://www.nti-nanofilm.com//wp-content/plugins/sytech-fronteditor/sytpl/home_solution/assets/img/btn_more.svg) no-repeat center / cover;
  position: absolute;
  right: 8px;
  top: 8px;
  transition: all 0.3s;
}
.button_to::after {
  content: '';
  display: block;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: url(https://www.nti-nanofilm.com//wp-content/plugins/sytech-fronteditor/sytpl/home_solution/assets/img/right-line.svg) no-repeat center / 25%;
  background-color: #fff;
  position: absolute;
  top: 8px;
  right: 8px;
  z-index: 2;
  transition: all 0.3s;
}
.swiper_btns div {
  position: absolute;
  left: 0;
  top: 0;
  transform: translateY(-50%);
  background: url(https://www.nti-nanofilm.com//wp-content/plugins/sytech-fronteditor/sytpl/home_solution/assets/img/left-w.svg) no-repeat center / contain;
  transition: all 0.3s;
  width: 12px;
  height: 22px;
  cursor: pointer;
}
.swiper_btns .btn_next {
  left: unset;
  right: 0;
  background-image: url(https://www.nti-nanofilm.com//wp-content/plugins/sytech-fronteditor/sytpl/home_solution/assets/img/right-w.svg);
}
.swiper_btns_full div::after {
  content: '';
  display: block;
  width: 30%;
  height: 30%;
  background: url(https://www.nti-nanofilm.com//wp-content/plugins/sytech-fronteditor/sytpl/home_solution/assets/img/left-b.svg) no-repeat center / contain;
  filter: brightness(20);
  transition: all 0.3s;
}
.swiper_btns_full .btn_next::after {
  background-image: url(https://www.nti-nanofilm.com//wp-content/plugins/sytech-fronteditor/sytpl/home_solution/assets/img/right-b.svg);
}


.home_solution {
  background: no-repeat center / cover;
  padding: 120px 0 165px;
  overflow: hidden;
  position: relative;
  z-index: 2;
  margin-top: -100px;
}
.home_solution .home_solution_swiper {
  max-width: 384px;
  margin: 92px auto 0;
}
.home_solution .home_solution_swiper .swiper-slide {
  transition: all 0.3s;
  transform: scale(0.9125475);
}
.home_solution .home_solution_swiper .swiper-slide a {
  display: block;
  height: 526px;
  overflow: hidden;
  position: relative;
  border-radius: 35px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}
.home_solution .home_solution_swiper .swiper-slide a:hover .pic {
  transform: scale(1.05);
}
.home_solution .home_solution_swiper .swiper-slide a::after {
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  background: url(https://www.nti-nanofilm.com//wp-content/plugins/sytech-fronteditor/sytpl/home_solution/assets/img/home-solution-mask.svg) no-repeat center / cover;
  position: absolute;
  left: 0;
  top: 2;
  z-index: 2;
}
.home_solution .home_solution_swiper .swiper-slide a .pic {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  transition: all 0.5s;
}
.home_solution .home_solution_swiper .swiper-slide a .pic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.home_solution .home_solution_swiper .swiper-slide a h3 {
  position: absolute;
  left: 0;
  bottom: 42px;
  font-size: 28px;
  color: #fff;
  font-weight: 700;
  line-height: 36px;
  text-align: center;
  width: 100%;
  padding: 0 1.2rem;
  z-index: 3;
}
.home_solution .home_solution_swiper .swiper-slide-active {
  transform: scale(1);
}
.home_solution .home_solution_swiper .home_solution_pagination {
  position: relative;
  max-width: 225px;
  width: 100%;
  height: 3px;
  border-radius: 12px;
  margin: 90px auto 0;
  background-color: #a0a7af;
}
.home_solution .home_solution_swiper .home_solution_pagination .line {
  display: block;
  border-radius: 12px;
  width: 100%;
  height: 100%;
  transition: all 0.3s;
  background-color: var(--theme_color);
  cursor: pointer;
}
.home_solution .home_solution_swiper .home_solution_pagination span {
  position: absolute;
  color: var(--title_color);
  font-size: 22px;
  font-weight: 500;
  right: 100%;
  top: 50%;
  transform: translateY(-50%);
  padding: 0 1rem;
  transition: all 0.3s;
  cursor: pointer;
}
.home_solution .home_solution_swiper .home_solution_pagination .next {
  opacity: 0.35;
  left: 100%;
}
.home_solution .text1,
.home_solution .text2 {
  color: var(--title_color);
  font-size: 12px;
  text-transform: uppercase;
  position: absolute;
  bottom: -95px;
  white-space: nowrap;
}
.home_solution .text1 {
  right: 105%;
}
.home_solution .text2 {
  left: 100%;
}
 
@media screen and (max-width: 786px) {
    .content {
        padding: 0 1.2rem;
      }



      .home_solution {
        padding: 4rem 0;
        margin-top: 0;
      }
      .home_solution .home_solution_swiper {
        margin-top: 2rem;
        max-width: 70%;
      }
      .home_solution .home_solution_swiper .swiper-slide a {
        border-radius: 20px;
        height: 325px;
      }
      .home_solution .home_solution_swiper .swiper-slide a h3 {
        font-size: 18px;
        line-height: 1.5;
        bottom: 1.2rem;
      }
      .home_solution .home_solution_swiper .home_solution_pagination {
        margin-top: 3rem;
        max-width: 150px;
      }
      .home_solution .home_solution_swiper .home_solution_pagination span {
        font-size: 14px;
        padding: 0 10px;
      }
}

 
@media screen and (min-width: 786px)  and (max-width: 1600px) {
  .content {
    padding: 0 1.2rem;
  }
  .home_solution .text1 {
    left: 1.2rem;
    right: unset;
  }
  .home_solution .text2 {
    left: unset;
    right: 1.2rem;
  }
}
@media screen and (min-width: 786px)  and (max-width: 1400px) {
  .content {
    max-width: 1200px;
  }
}
@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;
  }
}
 
@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;
  }
}