* {
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
}
:root {
  --primary: #1b98d6;
  --secondary: #d8282a;
  --title: #161616;
  --text: #494949;
  --text2: #474747;
  --text_w: rgba(255, 255, 255, 0.8);
  --bg: #f8f8f8;
  --bg2: #f7f7f7;
  --border: #dcdedc;
  --shadow: 0 1.1rem 1.1rem rgba(209, 209, 209, 0.45);
}
html {
  scroll-behavior: smooth;
  font-size: clamp(7.5px, 0.520834vw, 10px);
}
.content {
  max-width: 144rem;
  margin: 0px auto;
  position: relative;
}
li {
  list-style: none;
}
a {
  color: inherit;
  cursor: pointer;
  font-size: inherit;
  text-decoration: none;
}
.center {
  text-align: center;
}
body {
  font-size: 1.6rem;
  word-break: break-word;
  color: var(--title);
}
.product_nav {
  padding: 2rem 0px;
}
.product_nav .nav {
  display: inline-block;
  margin: 0px auto;
  border-radius: 5rem;
  border: 1px solid rgb(231, 231, 231);
  background-color: rgb(255, 255, 255);
  box-shadow: var(--shadow);
  padding: 1.4rem 2.2rem;
}
.product_nav .nav_list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}
.product_nav .nav_item {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  border-radius: 3rem;
  cursor: pointer;
  transition: 0.3s;
  font-size: 1.8rem;
  opacity: 0.75;
  padding: 1.7rem 1.5rem 1.6rem;
}
.product_nav .nav_item.active,
.product_nav .nav_item:hover {
  color: rgb(255, 255, 255);
  opacity: 1;
  background-color: var(--secondary);
}
.product_nav .nav_item.active {
  padding-left: 2.8rem;
  padding-right: 2.8rem;
  font-weight: 500;
}
@media screen and (min-width: 769px) and (max-width: 1220px) {
  .content {
    padding: 0px 3rem;
    max-width: 1220px;
  }
}

@media screen and (min-width: 769px) and (max-width: 1024px) {
  .content,
  .swiper_content {
    max-width: 896px;
  }
}

@media screen and (min-width: 769px) and (max-width: 896px) {
  .content,
  .swiper_content {
    max-width: 768px;
  }
}

@media screen and (min-width: 769px) {
  ul::-webkit-scrollbar,
  div::-webkit-scrollbar {
    width: 4px;
  }
  ul::-webkit-scrollbar-thumb,
  div::-webkit-scrollbar-thumb {
    border-radius: 10px;
    background-color: rgb(139, 139, 139);
  }
}

@media screen and (max-width: 768px) {
  html {
    font-size: 10px;
  }
  body {
    font-size: 1.4rem;
  }
  .content {
    padding: 0px 30px;
  }
  .product_nav {
    padding: 20px 0px;
  }
  .product_nav .nav {
    padding: 10px;
    overflow: hidden;
    max-width: 100%;
  }
  .product_nav .nav_list {
    flex-wrap: nowrap;
    gap: 10px;
    white-space: nowrap;
    overflow-x: auto;
    border-radius: 100px;
  }
  .product_nav .nav_list::-webkit-scrollbar {
    display: none;
  }
  .product_nav .nav_item {
    font-size: 14px;
    padding: 10px 20px;
  }
  .product_nav .nav_item.active {
    padding: 10px 20px;
  }
}

@media screen and (max-width: 576px) {
  .content {
    padding: 0px 20px;
  }
}

* {
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
}
:root {
  --primary: #1b98d6;
  --secondary: #d8282a;
  --title: #161616;
  --text: #494949;
  --text2: #474747;
  --text_w: rgba(255, 255, 255, 0.8);
  --bg: #f8f8f8;
  --bg2: #f7f7f7;
  --border: #dcdedc;
  --shadow: 0 1.1rem 1.1rem rgba(209, 209, 209, 0.45);
}
html {
  scroll-behavior: smooth;
  font-size: clamp(7.5px, 0.520834vw, 10px);
}
.content {
  max-width: 144rem;
  margin: 0px auto;
  position: relative;
}
a {
  color: inherit;
  cursor: pointer;
  font-size: inherit;
  text-decoration: none;
}
table {
  width: 100%;
  word-break: normal;
  border-collapse: collapse;
}
.flex {
  display: flex;
}
.wrap {
  flex-wrap: wrap;
}
.between {
  justify-content: space-between;
}
.center {
  text-align: center;
}
.flex_middle {
  align-items: center;
}
body {
  font-size: 1.6rem;
  word-break: break-word;
  color: var(--title);
}
.gap {
  gap: 3rem;
}
.img.img_ct img {
  object-fit: contain;
}
.img.img_aba {
  position: relative;
}
.img.img_aba::after {
  content: "";
  display: block;
  padding-bottom: var(--h);
}
.img.img_aba img {
  position: absolute;
  left: 0px;
  top: 0px;
}
.img img {
  width: 100%;
  height: 100%;
  display: block;
  transition: 0.5s;
  aspect-ratio: inherit;
}
.btn {
  display: inline-grid;
  align-items: center;
  cursor: pointer;
  transition:
    0.3s,
    background-color 0.4s;
  grid-template-columns: 1fr 4.8rem;
  color: rgb(255, 255, 255);
  background-color: var(--primary);
  border-radius: 100px;
  font-size: 1.8rem;
  line-height: 2.3rem;
  font-weight: 600;
  text-align: center;
  padding: 1rem 0.8rem 1rem 3.9rem;
  min-width: 21.8rem;
  gap: 1rem;
}
.btn::after {
  padding-bottom: 100%;
  border-radius: 50%;
  background: url("https://www.fariplasmatech.com//////wp-content/plugins/sytech-fronteditor/sytpl/product3-product_tech/assets/img/arrow-tr.svg") center center / 22.92% no-repeat
    rgb(255, 255, 255);
  display: block;
  transition: 0.3s;
  content: "";
}
.btn:hover {
  background-color: var(--secondary);
}
.btn:hover::after {
  transform: rotate(45deg) scale(1.1);
}
.head.sm h2 {
  font-size: 4.8rem;
  line-height: 5.8rem;
  letter-spacing: 2px;
}
.head h2 {
  font-size: 5rem;
  line-height: 5.8rem;
  font-weight: 600;
  letter-spacing: 2.1px;
}
.product_tech {
  padding: 12.7rem 0px 10.7rem;
  overflow: hidden;
}
.product_tech .flex {
  margin-top: 4.7rem;
}
.product_tech .img {
  border-radius: 2rem;
  border: 1px solid rgb(221, 221, 221);
  width: 43.9583%;
  --h: 81.65%;
}
.product_tech .img:hover img {
  transform: scale(1.02);
}
.product_tech .img + .table {
  max-width: 68.5rem;
}
.product_tech .table {
  flex: 1 1 0%;
  width: 100%;
  padding-bottom: 1.3%;
}
.product_tech table td {
  font-size: 1.8rem;
  line-height: 3.2rem;
  font-weight: 500;
  color: rgb(30, 18, 13);
  border-bottom: 1px solid rgb(221, 221, 221);
  padding: 1.4rem 0px 1.1rem;
}
.product_tech table td:first-child {
  width: 37.5%;
  padding-right: 1rem;
  font-weight: 400;
  color: rgb(107, 107, 107);
}
.product_tech p.center:has(.btn) {
  margin-top: 4.5rem;
}
@media screen and (min-width: 769px) and (max-width: 1220px) {
  .content {
    padding: 0px 3rem;
    max-width: 1220px;
  }
  .head h2 {
    font-size: 4.6rem;
    line-height: 1.16;
  }
}

@media screen and (min-width: 769px) and (max-width: 1024px) {
  .content,
  .swiper_content {
    max-width: 896px;
  }
  .head h2 {
    font-size: 4rem;
  }
  .head.sm h2 {
    font-size: 4rem;
    line-height: 1.16;
  }
}

@media screen and (min-width: 769px) and (max-width: 896px) {
  .content,
  .swiper_content {
    max-width: 768px;
  }
}

@media screen and (min-width: 769px) {
  ul::-webkit-scrollbar,
  div::-webkit-scrollbar {
    width: 4px;
  }
  ul::-webkit-scrollbar-thumb,
  div::-webkit-scrollbar-thumb {
    border-radius: 10px;
    background-color: rgb(139, 139, 139);
  }
}

@media screen and (max-width: 768px) {
  html {
    font-size: 10px;
  }
  body {
    font-size: 1.4rem;
  }
  .content {
    padding: 0px 30px;
  }
  .gap {
    gap: 20px;
  }
  .btn {
    font-size: 14px;
    grid-template-columns: 1fr 32px;
    gap: 12px;
    min-width: 140px;
    padding: 5px 5px 5px 20px;
  }
  div.head.sm h2 {
    font-size: 22px;
    line-height: 1.3;
    letter-spacing: unset;
  }
  div.head h2 {
    font-size: 22px;
    line-height: 1.3;
    letter-spacing: unset;
    max-width: unset;
    word-spacing: unset;
  }
  .product_tech {
    padding: 50px 0px;
  }
  .product_tech .flex {
    margin-top: 30px;
  }
  .product_tech .img {
    border-radius: 10px;
  }
  .product_tech .img + .table {
    max-width: unset;
  }
  .product_tech .table {
    padding: 0px;
  }
  .product_tech table td {
    font-size: 14px;
    line-height: 1.5;
    padding: 14px 0px;
  }
  .product_tech p.center:has(.btn) {
    margin-top: 40px;
  }
}

@media screen and (max-width: 576px) {
  .content {
    padding: 0px 20px;
  }
  .product_tech .img {
    width: 100%;
  }
}

* {
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
}
:root {
  --primary: #1b98d6;
  --secondary: #d8282a;
  --title: #161616;
  --text: #494949;
  --text2: #474747;
  --text_w: rgba(255, 255, 255, 0.8);
  --bg: #f8f8f8;
  --bg2: #f7f7f7;
  --border: #dcdedc;
  --shadow: 0 1.1rem 1.1rem rgba(209, 209, 209, 0.45);
}
html {
  scroll-behavior: smooth;
  font-size: clamp(7.5px, 0.520834vw, 10px);
}
.content {
  max-width: 144rem;
  margin: 0px auto;
  position: relative;
}
li {
  list-style: none;
}
li.swiper-slide {
  height: auto;
}
.flex {
  display: flex;
}
.wrap {
  flex-wrap: wrap;
}
.between {
  justify-content: space-between;
}
.flex_middle {
  align-items: center;
}
body {
  font-size: 1.6rem;
  word-break: break-word;
  color: var(--title);
}
.gap {
  gap: 3rem;
}
.img.img_cv {
  overflow: hidden;
}
.img.img_cv img {
  object-fit: cover;
}
.img.img_ab {
  position: relative;
}
.img.img_ab img {
  position: absolute;
  left: 0px;
  top: 0px;
}
.img img {
  width: 100%;
  height: 100%;
  display: block;
  transition: 0.5s;
  aspect-ratio: inherit;
}
.swiper_btns {
  gap: 3.2rem;
  display: flex;
}
.swiper_btns div {
  width: 6.4rem;
  cursor: pointer;
  transition: 0.3s;
  border-radius: 50%;
  border: 1px solid var(--primary);
  background-color: var(--primary);
}
.swiper_btns div::after {
  content: "";
  display: block;
  width: 100%;
  padding-bottom: 100%;
  transition: 0.3s;
  background: url("https://www.fariplasmatech.com//////wp-content/plugins/sytech-fronteditor/sytpl/product4-product_features/assets/img/arrow.svg") center center / 31% no-repeat;
  filter: contrast(0) brightness(2);
}
.swiper_btns div:hover {
  border-color: var(--secondary);
  background-color: var(--secondary);
}
.swiper_btns .btn_next::after {
  transform: rotate(180deg);
}
.swiper_btns .swiper-button-disabled {
  pointer-events: none;
  background-color: transparent;
  border-color: rgba(22, 22, 22, 0.45);
}
.swiper_btns .swiper-button-disabled::after {
  filter: none;
}
.swiper_btns .swiper-button-lock {
  display: block;
  opacity: 0;
  pointer-events: none;
}
.head.sm h2 {
  font-size: 4.8rem;
  line-height: 5.8rem;
  letter-spacing: 2px;
}
.head h2 {
  font-size: 5rem;
  line-height: 5.8rem;
  font-weight: 600;
  letter-spacing: 2.1px;
}
div.pagination {
  width: auto;
  display: flex;
  align-items: center;
  font-size: 1.8rem;
  color: rgb(162, 162, 162);
  gap: 1.6rem;
}
div.pagination .line {
  display: inline-block;
  width: 2.5rem;
  height: 1px;
  background-color: rgb(162, 162, 162);
  content: "";
}
div.pagination .current {
  color: rgb(12, 12, 12);
  font-weight: 500;
}
.product_features {
  background-color: var(--bg);
  padding: 10.7rem 0px 8.3rem;
  overflow: hidden;
}
.product_features .head h2 {
  letter-spacing: 2.3px;
}
.product_features .product_features_swiper {
  margin-top: 5rem;
}
.product_features .product_features_swiper .swiper-slide {
  max-width: 463px;
}
.product_features .product_features_swiper .active .item {
  box-shadow: var(--shadow);
}
.product_features .product_features_swiper .active .item::after {
  opacity: 1;
}
.product_features .item {
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: 0.3s;
  background-color: rgb(255, 255, 255);
  border-radius: 1.6rem;
  border: 1px solid rgb(229, 229, 229);
  padding: 8.9% 8.2% 6.9% 8%;
}
.product_features .item::after {
  position: absolute;
  width: calc(100% - 2px);
  height: calc(100% - 2px);
  left: -1px;
  top: -1px;
  content: "";
  border-radius: 1.6rem;
  border: 2px solid var(--secondary);
  transition: 0.3s;
  opacity: 0;
  pointer-events: none;
}
.product_features .item:hover img {
  transform: scale(1.02);
}
.product_features .item .info {
  flex: 1 1 0%;
}
.product_features .item .info h3 {
  font-size: 3rem;
  line-height: 3.8rem;
  font-weight: 600;
  color: rgb(12, 12, 12);
  max-width: 29.7rem;
  letter-spacing: 0.4px;
}
.product_features .item .info p {
  font-size: 1.8rem;
  line-height: 3.2rem;
  color: var(--text2);
  hyphens: auto;
  margin-top: 1.8rem;
}
.product_features .item .img {
  border-radius: 2.4rem;
  padding-bottom: 56.104%;
  margin-top: 2.7rem;
}
.product_features .swiper_con {
  margin-top: 5rem;
}
@media screen and (min-width: 769px) and (max-width: 1220px) {
  .content {
    padding: 0px 3rem;
    max-width: 1220px;
  }
  .head h2 {
    font-size: 4.6rem;
    line-height: 1.16;
  }
}

@media screen and (min-width: 769px) and (max-width: 1024px) {
  .content,
  .swiper_content {
    max-width: 896px;
  }
  .head h2 {
    font-size: 4rem;
  }
  .head.sm h2 {
    font-size: 4rem;
    line-height: 1.16;
  }
}

@media screen and (min-width: 769px) and (max-width: 896px) {
  .content,
  .swiper_content {
    max-width: 768px;
  }
}

@media screen and (min-width: 769px) {
  ul::-webkit-scrollbar,
  div::-webkit-scrollbar {
    width: 4px;
  }
  ul::-webkit-scrollbar-thumb,
  div::-webkit-scrollbar-thumb {
    border-radius: 10px;
    background-color: rgb(139, 139, 139);
  }
}

@media screen and (max-width: 768px) {
  html {
    font-size: 10px;
  }
  body {
    font-size: 1.4rem;
  }
  .content {
    padding: 0px 30px;
  }
  .gap {
    gap: 20px;
  }
  .swiper_btns {
    gap: 20px;
  }
  .swiper_btns div {
    width: 40px;
  }
  div.head.sm h2 {
    font-size: 22px;
    line-height: 1.3;
    letter-spacing: unset;
  }
  div.head h2 {
    font-size: 22px;
    line-height: 1.3;
    letter-spacing: unset;
    max-width: unset;
    word-spacing: unset;
  }
  div.pagination {
    font-size: 14px;
    gap: 12px;
  }
  div.pagination .line {
    width: 22px;
  }
  .product_features {
    padding: 50px 0px;
  }
  .product_features .product_features_swiper {
    margin-top: 30px;
  }
  .product_features .product_features_swiper .swiper-slide {
    max-width: 277px;
  }
  .product_features .item {
    border-radius: 10px;
    padding: 20px;
  }
  .product_features .item::after {
    border-radius: 10px;
  }
  .product_features .item .info h3 {
    font-size: 18px;
    line-height: 1.5;
    letter-spacing: unset;
    max-width: 200px;
  }
  .product_features .item .info p {
    font-size: 14px;
    line-height: 1.5;
    margin-top: 10px;
  }
  .product_features .item .img {
    border-radius: 10px;
    margin-top: 20px;
  }
  .product_features .swiper_con {
    margin-top: 30px;
  }
}

@media screen and (max-width: 576px) {
  .content {
    padding: 0px 20px;
  }
}

* {
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
}
:root {
  --primary: #1b98d6;
  --secondary: #d8282a;
  --title: #161616;
  --text: #494949;
  --text2: #474747;
  --text_w: rgba(255, 255, 255, 0.8);
  --bg: #f8f8f8;
  --bg2: #f7f7f7;
  --border: #dcdedc;
  --shadow: 0 1.1rem 1.1rem rgba(209, 209, 209, 0.45);
}
html {
  scroll-behavior: smooth;
  font-size: clamp(7.5px, 0.520834vw, 10px);
}
.content {
  max-width: 144rem;
  margin: 0px auto;
  position: relative;
}
.swiper_box {
  position: relative;
}
li {
  list-style: none;
}
li.swiper-slide {
  height: auto;
}
.flex {
  display: flex;
}
.wrap {
  flex-wrap: wrap;
}
.between {
  justify-content: space-between;
}
body {
  font-size: 1.6rem;
  word-break: break-word;
  color: var(--title);
}
.gap {
  gap: 3rem;
}
.img.img_cv {
  overflow: hidden;
}
.img.img_cv img {
  object-fit: cover;
}
.img img {
  width: 100%;
  height: 100%;
  display: block;
  transition: 0.5s;
  aspect-ratio: inherit;
}
.swiper_btns {
  gap: 3.2rem;
  display: flex;
}
.swiper_btns div {
  width: 6.4rem;
  cursor: pointer;
  transition: 0.3s;
  border-radius: 50%;
  border: 1px solid var(--primary);
  background-color: var(--primary);
}
.swiper_btns div::after {
  content: "";
  display: block;
  width: 100%;
  padding-bottom: 100%;
  transition: 0.3s;
  background: url("https://www.fariplasmatech.com//////wp-content/plugins/sytech-fronteditor/sytpl/product5-product_compare/assets/img/arrow.svg") center center / 31% no-repeat;
  filter: contrast(0) brightness(2);
}
.swiper_btns div:hover {
  border-color: var(--secondary);
  background-color: var(--secondary);
}
.swiper_btns .btn_next::after {
  transform: rotate(180deg);
}
.swiper_btns .swiper-button-disabled {
  pointer-events: none;
  background-color: transparent;
  border-color: rgba(22, 22, 22, 0.45);
}
.swiper_btns .swiper-button-disabled::after {
  filter: none;
}
.swiper_btns .swiper-button-lock {
  display: block;
  opacity: 0;
  pointer-events: none;
}
.swiper_btns.middle {
  width: 98%;
  max-width: 169.9rem;
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 2;
  pointer-events: none;
  transform: translate(-50%, -50%);
  justify-content: space-between;
}
.swiper_btns.middle div {
  pointer-events: all;
}
.swiper_btns.middle .swiper-button-disabled,
.swiper_btns.middle .swiper-button-lock {
  pointer-events: none;
}
.head.sm h2 {
  font-size: 4.8rem;
  line-height: 5.8rem;
  letter-spacing: 2px;
}
.head h2 {
  font-size: 5rem;
  line-height: 5.8rem;
  font-weight: 600;
  letter-spacing: 2.1px;
}
.head p {
  font-size: 1.8rem;
  line-height: 3.2rem;
  color: var(--text);
  letter-spacing: 0.01px;
}
.compare_swiper {
  position: relative;
  border-radius: 1.8rem;
  overflow: hidden;
}
.compare_swiper .swiper_btns {
  width: 94.5%;
}
.compare_swiper .swiper_btns .swiper-button-disabled {
  background-color: rgba(22, 22, 22, 0.5);
  border-color: transparent;
}
.compare_swiper .swiper_btns .swiper-button-disabled::after {
  filter: contrast(0) brightness(2);
}
.compare_box {
  position: relative;
  user-select: none;
  border-radius: 1.8rem;
  overflow: hidden;
}
.compare_box .wrap {
  position: relative;
}
.compare_box .wrap .img {
  position: relative;
}
.compare_box .wrap .img::after {
  content: "";
  display: block;
  width: 100%;
  height: 32.353%;
  position: absolute;
  left: 0px;
  bottom: 0px;
  z-index: 2;
  opacity: 0.74;
  pointer-events: none;
  background-image: linear-gradient(to top, rgb(0, 0, 0), transparent 72.16%);
}
.compare_box .wrap .info {
  position: absolute;
  left: 0px;
  bottom: 0px;
  z-index: 3;
  width: 100%;
  color: rgb(255, 255, 255);
  padding: 3.1% 2.6966%;
}
.compare_box .wrap .info .subtitle {
  margin-bottom: 0.9rem;
  font-weight: 300;
  letter-spacing: 0.15px;
}
.compare_box .wrap .info .title {
  font-size: 2.2rem;
  letter-spacing: 0.26px;
}
.compare_box .wrap2 {
  width: 50%;
  height: 100%;
  position: absolute;
  right: 0px;
  top: 0px;
  z-index: 9;
  border-left: 4px solid rgb(255, 255, 255);
}
.compare_box .wrap2 .button {
  position: absolute;
  left: -2px;
  top: 50%;
  z-index: 9;
  transform: translate(-50%, -50%);
  width: 2.4rem;
  background: url("https://www.fariplasmatech.com//////wp-content/plugins/sytech-fronteditor/sytpl/product5-product_compare/assets/img/scrollblock.svg") center center / contain no-repeat;
  cursor: pointer;
}
.compare_box .wrap2 .button::after {
  content: "";
  display: block;
  padding-bottom: 170.833%;
  pointer-events: none;
}
.compare_box .wrap2 .hidden {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0px;
  top: 0px;
  overflow: hidden;
}
.compare_box .wrap2 .img2 {
  position: absolute;
  right: 0px;
  top: 0px;
  height: 100%;
}
.compare_box .wrap2 .info {
  left: unset;
  right: 0px;
  text-align: right;
}
.product_compare {
  padding: 14.3rem 0px 9.75rem;
  overflow: hidden;
}
.product_compare .lt {
  flex: 1 1 0%;
  width: 100%;
  max-width: 44.1rem;
  display: flex;
  flex-direction: column;
  gap: 3rem;
  padding: 0.7% 0px 0.3%;
}
.product_compare .head h2 {
  letter-spacing: 2.3px;
}
.product_compare p {
  hyphens: auto;
  margin-top: 3.8rem;
}
.product_compare .nav {
  margin-top: auto;
}
.product_compare .nav .nav_item {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 2.2rem;
  font-size: 2.4rem;
  font-weight: 500;
  color: rgb(127, 127, 127);
  cursor: pointer;
  transition: 0.3s;
  border-bottom: 1px solid rgb(214, 214, 214);
  gap: 2rem;
  padding: 2.8rem 0px 2.1rem;
}
.product_compare .nav .nav_item.active,
.product_compare .nav .nav_item:hover {
  color: rgb(37, 37, 37);
}
.product_compare .nav .nav_item.active::before,
.product_compare .nav .nav_item:hover::before {
  opacity: 1;
}
.product_compare .nav .nav_item.active::after,
.product_compare .nav .nav_item:hover::after {
  filter: unset;
}
.product_compare .nav .nav_item.active {
  font-weight: 600;
  font-size: 2.6rem;
  padding-bottom: 2.8rem;
}
.product_compare .nav .nav_item::before {
  position: absolute;
  width: 100%;
  height: 2px;
  left: 0px;
  bottom: -1px;
  content: "";
  background-color: var(--secondary);
  transition: 0.3s;
  opacity: 0;
}
.product_compare .nav .nav_item::after {
  padding-bottom: 100%;
  display: block;
  content: "";
  background: url("https://www.fariplasmatech.com//////wp-content/plugins/sytech-fronteditor/sytpl/product5-product_compare/assets/img/arrow-r-b.svg") center center / contain no-repeat;
  filter: contrast(0) brightness(1);
  transition: 0.3s;
}
.product_compare .rt {
  width: 61.8056%;
  align-self: center;
}
.product_compare .rt .swiper_box {
  display: none;
}
.product_compare .rt .swiper_box.active {
  display: block;
}
@media screen and (min-width: 769px) and (max-width: 1220px) {
  .content {
    padding: 0px 3rem;
    max-width: 1220px;
  }
  .head h2 {
    font-size: 4.6rem;
    line-height: 1.16;
  }
}

@media screen and (min-width: 769px) and (max-width: 1024px) {
  .content,
  .swiper_content {
    max-width: 896px;
  }
  .head h2 {
    font-size: 4rem;
  }
  .head.sm h2 {
    font-size: 4rem;
    line-height: 1.16;
  }
}

@media screen and (min-width: 769px) and (max-width: 896px) {
  .content,
  .swiper_content {
    max-width: 768px;
  }
}

@media screen and (min-width: 769px) {
  ul::-webkit-scrollbar,
  div::-webkit-scrollbar {
    width: 4px;
  }
  ul::-webkit-scrollbar-thumb,
  div::-webkit-scrollbar-thumb {
    border-radius: 10px;
    background-color: rgb(139, 139, 139);
  }
}

@media screen and (max-width: 768px) {
  html {
    font-size: 10px;
  }
  body {
    font-size: 1.4rem;
  }
  .content {
    padding: 0px 30px;
  }
  .gap {
    gap: 20px;
  }
  .swiper_btns {
    gap: 20px;
  }
  .swiper_btns div {
    width: 40px;
  }
  div.head.sm h2 {
    font-size: 22px;
    line-height: 1.3;
    letter-spacing: unset;
  }
  div.head h2 {
    font-size: 22px;
    line-height: 1.3;
    letter-spacing: unset;
    max-width: unset;
    word-spacing: unset;
  }
  div.head .desc,
  div.head p {
    font-size: 14px;
    line-height: 1.5;
    letter-spacing: unset;
    max-width: unset;
    word-spacing: unset;
    margin-top: 12px;
  }
  .compare_swiper {
    border-radius: 10px;
  }
  .compare_box .wrap .info .subtitle {
    margin-bottom: 10px;
    letter-spacing: unset;
  }
  .compare_box .wrap .info .title {
    font-size: 16px;
    letter-spacing: unset;
  }
  .compare_box .wrap2 .button {
    width: 22px;
  }
  .product_compare {
    padding: 50px 0px;
  }
  .product_compare .lt {
    max-width: unset;
    padding: 0px;
    gap: 20px;
  }
  .product_compare .rt {
    width: 100%;
  }
  .product_compare .nav .nav_item {
    font-size: 14px;
    grid-template-columns: 1fr 16px;
    padding: 14px 0px;
  }
  .product_compare .nav .nav_item.active {
    font-size: 14px;
    padding: 14px 0px;
  }
}

@media screen and (max-width: 576px) {
  .content {
    padding: 0px 20px;
  }
}

.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;
}
* {
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
}
:root {
  --primary: #1b98d6;
  --secondary: #d8282a;
  --title: #161616;
  --text: #494949;
  --text2: #474747;
  --text_w: rgba(255, 255, 255, 0.8);
  --bg: #f8f8f8;
  --bg2: #f7f7f7;
  --border: #dcdedc;
  --shadow: 0 1.1rem 1.1rem rgba(209, 209, 209, 0.45);
}
html {
  scroll-behavior: smooth;
  font-size: clamp(7.5px, 0.520834vw, 10px);
}
.content {
  max-width: 144rem;
  margin: 0px auto;
  position: relative;
}
li {
  list-style: none;
}
li.swiper-slide {
  height: auto;
}
.wrap {
  flex-wrap: wrap;
}
.center {
  text-align: center;
}
body {
  font-size: 1.6rem;
  word-break: break-word;
  color: var(--title);
}
.img.img_ct img {
  object-fit: contain;
}
.img.img_ab {
  position: relative;
}
.img.img_ab img {
  position: absolute;
  left: 0px;
  top: 0px;
}
.img img {
  width: 100%;
  height: 100%;
  display: block;
  transition: 0.5s;
  aspect-ratio: inherit;
}
.head.sm h2 {
  font-size: 4.8rem;
  line-height: 5.8rem;
  letter-spacing: 2px;
}
.head h2 {
  font-size: 5rem;
  line-height: 5.8rem;
  font-weight: 600;
  letter-spacing: 2.1px;
}
.product_process {
  background-color: var(--bg);
  padding: 12.5rem 0px 15.4rem;
  overflow: hidden;
}
.product_process .product_process_swiper {
  margin-top: 12.3rem;
}
.product_process .product_process_swiper .swiper-slide {
  max-width: 34.4rem;
}
.product_process .product_process_swiper .swiper-slide:last-child .arrow {
  opacity: 0;
}
.product_process
  .product_process_swiper
  .swiper-slide:last-child
  .wrap::before {
  display: none;
}
.product_process .item {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.product_process .item .wrap {
  position: relative;
  display: grid;
  grid-template-columns: 67.733% 14.2442%;
  justify-content: space-between;
  align-items: center;
}
.product_process .item .wrap::before {
  width: 100%;
  border-bottom: 1px dashed var(--title);
  position: absolute;
  left: 50%;
  top: 50%;
  content: "";
  z-index: -1;
}
.product_process .item .img {
  padding-bottom: 100%;
  border-radius: 50%;
  background-color: rgb(255, 255, 255);
  overflow: hidden;
}
.product_process .item .arrow {
  padding-bottom: 67.35%;
  display: block;
  content: "";
  background: url("https://www.fariplasmatech.com//wp-content/plugins/sytech-fronteditor/sytpl/product7-product_process/assets/img/big-arrow.svg") center center / contain no-repeat;
}
.product_process .item .info {
  flex: 1 1 0%;
  max-width: 26rem;
  margin-top: 6.6rem;
}
.product_process .item .info h3 {
  font-size: 2.2rem;
  font-weight: 600;
}
.product_process .item .info p {
  line-height: 1.5;
  opacity: 0.75;
  margin-top: 1.4rem;
}
@media screen and (min-width: 769px) and (max-width: 1220px) {
  .content {
    padding: 0px 3rem;
    max-width: 1220px;
  }
  .head h2 {
    font-size: 4.6rem;
    line-height: 1.16;
  }
}

@media screen and (min-width: 769px) and (max-width: 1024px) {
  .content,
  .swiper_content {
    max-width: 896px;
  }
  .head h2 {
    font-size: 4rem;
  }
  .head.sm h2 {
    font-size: 4rem;
    line-height: 1.16;
  }
}

@media screen and (min-width: 769px) and (max-width: 896px) {
  .content,
  .swiper_content {
    max-width: 768px;
  }
}

@media screen and (min-width: 769px) {
  ul::-webkit-scrollbar,
  div::-webkit-scrollbar {
    width: 4px;
  }
  ul::-webkit-scrollbar-thumb,
  div::-webkit-scrollbar-thumb {
    border-radius: 10px;
    background-color: rgb(139, 139, 139);
  }
}

@media screen and (max-width: 768px) {
  html {
    font-size: 10px;
  }
  body {
    font-size: 1.4rem;
  }
  .content {
    padding: 0px 30px;
  }
  div.head.sm h2 {
    font-size: 22px;
    line-height: 1.3;
    letter-spacing: unset;
  }
  div.head h2 {
    font-size: 22px;
    line-height: 1.3;
    letter-spacing: unset;
    max-width: unset;
    word-spacing: unset;
  }
  .product_process {
    padding: 50px 0px;
  }
  .product_process .product_process_swiper {
    margin-top: 30px;
  }
  .product_process .product_process_swiper .swiper-slide {
    max-width: 200px;
  }
  .product_process .item .info {
    margin-top: 20px;
    max-width: 180px;
  }
  .product_process .item .info h3 {
    font-size: 18px;
    line-height: 1.5;
  }
  .product_process .item .info p {
    font-size: 14px;
    margin-top: 10px;
  }
}

@media screen and (max-width: 576px) {
  .content {
    padding: 0px 20px;
  }
}

* {
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
}
:root {
  --primary: #1b98d6;
  --secondary: #d8282a;
  --title: #161616;
  --text: #494949;
  --text2: #474747;
  --text_w: rgba(255, 255, 255, 0.8);
  --bg: #f8f8f8;
  --bg2: #f7f7f7;
  --border: #dcdedc;
  --shadow: 0 1.1rem 1.1rem rgba(209, 209, 209, 0.45);
}
html {
  scroll-behavior: smooth;
  font-size: clamp(7.5px, 0.520834vw, 10px);
}
.content {
  max-width: 144rem;
  margin: 0px auto;
  position: relative;
}
i,
em {
  font-style: normal;
}
.center {
  text-align: center;
}
body {
  font-size: 1.6rem;
  word-break: break-word;
  color: var(--title);
}
.head.sm h2 {
  font-size: 4.8rem;
  line-height: 5.8rem;
  letter-spacing: 2px;
}
.head h2 {
  font-size: 5rem;
  line-height: 5.8rem;
  font-weight: 600;
  letter-spacing: 2.1px;
}
.product_guide {
  padding: 14.4rem 0px 11.8rem;
  overflow: hidden;
}
.product_guide .box {
  max-width: 109.5rem;
  margin: 5.8rem auto 0px;
  position: relative;
  border: 1px dashed rgb(170, 167, 167);
  border-radius: 2.8rem;
  padding: 0.8rem 1.1rem;
}
.product_guide .box::before,
.product_guide .box::after {
  width: 64.4749%;
  padding-bottom: 25.75%;
  position: absolute;
  opacity: 0.17;
  pointer-events: none;
  z-index: -1;
  content: "";
}
.product_guide .box::before {
  background-image: linear-gradient(to left, rgb(27, 152, 214), transparent);
  bottom: -11.6%;
  right: 73.1%;
  border-radius: 0px 30rem 30rem 0px;
}
.product_guide .box::after {
  background-image: linear-gradient(to right, rgb(27, 152, 214), transparent);
  top: -8.5%;
  left: 73.1%;
  border-radius: 30rem 0px 0px 30rem;
}
.product_guide .video {
  position: relative;
  width: 100%;
  padding-bottom: 56.168%;
  border-radius: 2.8rem;
  overflow: hidden;
  cursor: pointer;
}
.product_guide .video video,
.product_guide .video img,
.product_guide .video iframe,
.product_guide .video div:not(.btn_play) {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  position: absolute;
  left: 0px;
  top: 0px;
}
.product_guide .video .btn_play {
  position: absolute;
  width: 8.8rem;
  height: 8.8rem;
  left: 50%;
  top: 50%;
  z-index: 2;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: url("https://www.fariplasmatech.com//////wp-content/plugins/sytech-fronteditor/sytpl/product8-product_guide/assets/img/play.svg") no-repeat center / contain var(--secondary);
  transition:
    0.4s,
    opacity 0.3s;
  cursor: pointer;
}
.product_guide .video .btn_play:hover {
  transform: translate(-50%, -50%) scale(1.1);
}
.product_guide .video.active .btn_play {
  opacity: 0;
}
@media screen and (min-width: 769px) and (max-width: 1220px) {
  .content {
    padding: 0px 3rem;
    max-width: 1220px;
  }
  .head h2 {
    font-size: 4.6rem;
    line-height: 1.16;
  }
}

@media screen and (min-width: 769px) and (max-width: 1024px) {
  .content,
  .swiper_content {
    max-width: 896px;
  }
  .head h2 {
    font-size: 4rem;
  }
  .head.sm h2 {
    font-size: 4rem;
    line-height: 1.16;
  }
}

@media screen and (min-width: 769px) and (max-width: 896px) {
  .content,
  .swiper_content {
    max-width: 768px;
  }
}

@media screen and (min-width: 769px) {
  ul::-webkit-scrollbar,
  div::-webkit-scrollbar {
    width: 4px;
  }
  ul::-webkit-scrollbar-thumb,
  div::-webkit-scrollbar-thumb {
    border-radius: 10px;
    background-color: rgb(139, 139, 139);
  }
}

@media screen and (max-width: 768px) {
  html {
    font-size: 10px;
  }
  body {
    font-size: 1.4rem;
  }
  .content {
    padding: 0px 30px;
  }
  div.head.sm h2 {
    font-size: 22px;
    line-height: 1.3;
    letter-spacing: unset;
  }
  div.head h2 {
    font-size: 22px;
    line-height: 1.3;
    letter-spacing: unset;
    max-width: unset;
    word-spacing: unset;
  }
  .product_guide {
    padding: 50px 0px;
  }
  .product_guide .box {
    border-radius: 10px;
    padding: 8px;
    margin-top: 30px;
  }
  .product_guide .video {
    border-radius: 10px;
  }
  .product_guide .video .btn_play {
    width: 50px;
    height: 50px;
  }
}

@media screen and (max-width: 576px) {
  .content {
    padding: 0px 20px;
  }
}

.product_guide input {
  padding: 8px;
  width: 80%;
  display: none;
  border: 1px solid rgba(0, 0, 0, 0.5);
}
.toplevel_page_sytech_fronteditor .product_guide input {
  display: block;
}
.product_guide input + input {
  margin-top: 4rem;
}