 
* {
	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/hydrogen_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/hydrogen_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/hydrogen_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/hydrogen_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/hydrogen_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/hydrogen_banner/assets/img/right-b.svg);
}
.parallax-mirror {
  z-index: 1 !important;
}


.product_banner {
  padding: 50px 0;
  background: no-repeat bottom right / cover;
}
.product_banner .content{
  position: relative;
  z-index: 2;
}
.product_banner .flex {
  min-height: 595px;
}
.product_banner .head {
  max-width: 1066px;
  padding-bottom: 46px;
}
.product_banner .head h1 {
  font-size: 58px;
  font-weight: 700;
  color: #fff;
}
.product_banner .head h1 sup {
  font-size: 34px;
}
.product_banner .head p {
  max-width: 629px;
  color: #fff;
  opacity: 0.8;
  font-size: 17px;
  line-height: 30px;
  margin: 26px 0;
}
.product_banner .head .button_to {
  padding: 21px 71px 23px 34px;
}
.product_banner .head .button_to:hover {
  padding: 21px 52.5px 23px;
}
.product_banner .head.no_description h1 {
  font-size: 42px;
  line-height: 58px;
  max-width: 640px;
  font-weight: 700;
  margin: 20px 0 40px;
}
.product_banner .head.no_description h1 sup {
  font-size: 1.5rem;
}
.product_banner .breadcrumbs {
  position: absolute;
  left: 0;
  bottom: -5px;
}
.product_banner .breadcrumbs span {
  color: var(--subtheme_color);
}
.product_banner .breadcrumbs span span a {
  color: #fff;
  transition: all 0.3s;
}
.product_banner .breadcrumbs span span a:hover {
  color: var(--subtheme_color);
}
.product_banner .breadcrumbs span sup {
  font-size: 12px;
}
.product_banner.mask {
  position: relative;
  z-index: 2;
}
.product_banner.mask::after {
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), transparent);
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
}
.product_banner.mask .head {
  padding: 0;
}





/*----custom_pc_start----*/  #GG10SD .product_banner{padding-top:50px;padding-bottom:50;} /*----custom_pc_end----*/ 
/*----custom_mobile_start----*/ @media screen and (max-width: 786px) { #GG10SD .product_banner{} } /*----custom_mobile_end----*/
 
@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;
      }

      .product_banner {
        padding: 5rem 0 2rem;
        background-position: center;
      }
      .product_banner .flex {
        min-height: unset;
      }
      .product_banner .head h1 {
        font-size: 25px;
        line-height: 1.5;
      }
      .product_banner .head h1 sup {
        font-size: 12px;
      }
      .product_banner .head p {
        font-size: 0.9rem;
        line-height: 1.5rem;
        margin: 0.5rem 0 1.2rem;
      }
      .product_banner .head .button_to {
        font-size: 14px;
        padding: 14px 3rem 14px 22px;
        white-space: nowrap;
      }
      .product_banner .head .button_to::after {
        width: 2rem;
        height: 2rem;
        top: 5px;
        right: 5px;
      }
      .product_banner .head .button_to:hover {
        padding: 14px 35px;
      }
      .product_banner .head.no_description {
        padding: 0;
      }
      .product_banner .head.no_description h1 {
        font-size: 25px;
        line-height: 1.5;
        margin: 0.5rem 0 1.2rem;
      }
      .product_banner .breadcrumbs {
        margin-top: 2.5rem;
        position: static;
        overflow: auto;
      }
      .product_banner .breadcrumbs::-webkit-scrollbar {
        display: none;
      }
      .product_banner .breadcrumbs span {
        white-space: nowrap;
        font-size: 13px;
      }
      .product_banner .breadcrumbs span span a {
        font-size: 13px;
      }
}

 
@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: 1400px) {
  .content {
    max-width: 1200px;
  }
  .swiper_content {
    max-width: 1180px;
    padding: 10px;
  }
  .swiper_btns_full div {
    width: 50px;
    height: 50px;
  }
  .product_banner {
    position: relative;
    z-index: 2;
  }
  .product_banner::after {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
    background-color: rgba(0, 0, 0, 0.3);
  }
}
@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;
  }
}
@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;
  }
}
.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/coating_industries/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/coating_industries/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/coating_industries/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/coating_industries/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/coating_industries/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/coating_industries/assets/img/right-b.svg);
}

.coating_industries{
  padding: 160px 0 120px;
}
.coating_industries .head{
  margin-bottom: 80px;
}
.coating_industries ul{
  gap: 38px 30px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.coating_industries ul li{
  position: relative;
  border-radius: 8px;
}
.coating_industries ul li img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}
.coating_industries ul li:after{
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  background: rgba(0, 0, 0, 0.15);
}
.coating_industries ul li:before{
  content: "";
  width: 100%;
  height: 50px;
  z-index: -1;
  position: absolute;
  bottom: 0;
  transition: all 0.3s;
  background: linear-gradient(to right,#043274,#28B4ED);
  border-radius: 8px;
}
.coating_industries ul li:hover:before{
  transform: translateY(8px);
}
.coating_industries ul li div{
  position: absolute;
  bottom: 0;
  padding: 0 30px 30px;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  z-index: 5;
}
.coating_industries ul li div i{
  width: 56px;
  height: 56px;
  position: relative;
  border-radius: 50%;
  background-color: transparent;
  outline: 1px solid #fff;
}
.coating_industries ul li div i:after{
  width: 15px;
  height: 15px;
  content: "";
  background: url('https://www.nti-nanofilm.com/wp-content/plugins/sytech-fronteditor/sytpl/coating_industries/assets/img/right-line.svg') no-repeat center/contain;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%,-50%);
  filter: brightness(20);
}
.coating_industries ul li div strong{
  color: white;
  font-size: 22px;
  line-height: 33px;
}
.coating_industries ul li:hover div i{
  border-color: transparent;
  background: var(--bg_color);
  background-position: center;
  outline: 1px solid transparent;
}
.coating_industries .button_more{
  margin-top: 57px;
}
 
@media screen and (max-width: 786px) {
    .content {
        padding: 0 1.2rem;
      }
      .coating_industries{
        overflow: hidden;
        padding: 5rem 0;
      }
      .coating_industries .head{
        margin-bottom: 30px;
      }
      .coating_industries ul{
        grid-template-columns: repeat(2, 1fr);
        gap: 13px;
      }
      .coating_industries ul li div strong{
        font-size: 13px;
        line-height: 22px;
      }
      .coating_industries ul li div{
        padding: 1.2rem;
        padding-top: 0;
      }
      .coating_industries ul li div i{
        width: 25px;
        height: 25px;
        min-width: 25px;
      }
}

 
@media screen and (min-width: 786px)  and (max-width: 1600px) {
  .content {
    padding: 0 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;
  }
  .coating_industries ul li div i{
    width: 30px;
    height: 30px;
  }
  .coating_industries ul li div strong{
    font-size: 19px;
  }
}
.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/coating_industries/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/coating_industries/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/coating_industries/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/coating_industries/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/coating_industries/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/coating_industries/assets/img/right-b.svg);
}
.coating_industries ul li div i:after{
  width: 15px;
  height: 15px;
  content: "";
  background: url('https://www.nti-nanofilm.com//wp-content/plugins/sytech-fronteditor/sytpl/coating_industries/assets/img/right-line.svg') no-repeat center/contain;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%,-50%);
  filter: brightness(20);
}
 
@media screen and (max-width: 786px) {
    .content {
        padding: 0 1.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: 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;
  }
}