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

.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;
}
.tools_template_vendor .tools_template_box{
          padding: 4rem 0px;
          text-align: center;
        }
        .tools_template_vendor .tools_template_box input{
          padding: .8rem 1rem;
          border-radius: 5px;
          min-width: 300px;
          border: 1px #ddd solid;
        }
        .tools_template_vendor .tools_template_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;
        }
        