






* {
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
}
:root {
  --primary: #1d95d4;
  --secondary: #000;
  --title: #161616;
  --text: #565656;
  --text_w: rgba(255, 255, 255, 0.85);
  --border: #cecece;
  --bg: #f7f9fb;
}
html {
  scroll-behavior: smooth;
  font-size: clamp(7.5px, 0.520834vw, 10px);
}
.content {
  max-width: 132rem;
  margin: 0px auto;
  position: relative;
}
a {
  color: inherit;
  cursor: pointer;
  font-size: inherit;
  text-decoration: none;
}
.flex {
  display: flex;
}
.flex_middle {
  align-items: center;
}
body {
  font-size: 1.6rem;
  word-break: break-word;
  color: var(--title);
}
.Oswald,
h1,
h2,
h3,
strong,
.title {
}
h1,
h2 {
  text-transform: uppercase;
}
.img_bg {
  position: relative;
  z-index: 2;
}
.img_bg > img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  left: 0px;
  top: 0px;
  z-index: -2;
  pointer-events: none;
}
.btn_w {
  display: inline-block;
  cursor: pointer;
  transition: 0.3s;
  text-align: center;
  text-transform: uppercase;
  background-color: rgb(255, 255, 255);
  border: 1px solid rgb(255, 255, 255);
  color: var(--primary);
  border-radius: 0.8rem;
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 6.2rem;
  padding: 0px 3.6rem;
  min-width: 18.5rem;
}
.btn_w:hover {
  background-color: var(--primary);
  color: rgb(255, 255, 255);
}
.syedittext p,
.syedittext .desc {
  font-size: 1.8rem;
  line-height: 2.8rem;
  color: var(--text);
}
.head.white {
  color: rgb(255, 255, 255);
}
.head.white p {
  color: var(--text_w);
  font-weight: 300;
  letter-spacing: 0.018rem;
}
.head.white.bn p {
  color: rgba(255, 255, 255, 0.8);
}
.head h1 {
  font-size: 6.6rem;
  line-height: 1.16667;
  font-weight: 600;
}
.page_banner .flex {
  height: 100vh;
  max-height: 81.6rem;
  min-height: max-content;
  padding: 6rem 0px;
}
.page_banner .head {
  width: 46.0606%;
  padding-bottom: 1.2%;
}
.page_banner p {
  max-width: 100% !important;
  margin-top: 1.5rem;
  white-space: normal;
}
.page_banner .btn_w {
  margin-top: 4.2rem;
}
@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;
  }
  .head h1 {
    font-size: 6rem;
  }
}

@media screen and (min-width: 769px) and (max-width: 896px) {
  .content,
  .swiper_content {
    max-width: 768px;
  }
  .head h1 {
    font-size: 5rem;
  }
}

@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;
  }
  .btn,
  .btn_w,
  .btn_line {
    font-size: 14px;
    line-height: 40px;
    padding: 0px 20px;
    min-width: 120px;
    border-radius: 4px;
  }
  .syedittext p,
  .syedittext .desc {
    font-size: 14px;
    line-height: 1.5;
  }
  div.head.white p {
    letter-spacing: unset;
  }
  div.head h1 {
    font-size: 25px;
    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: 100% !important;
    word-spacing: unset;
    margin-top: 12px;
    white-space: normal !important;
}
  div.head .btn,
  div.head .btn_w,
  div.head .btn_line {
    font-size: 14px;
    line-height: 40px;
    padding: 0px 20px;
    min-width: 120px;
    margin-top: 20px;
  }
  .page_banner .flex {
    height: auto;
    min-height: unset;
    max-height: unset;
    padding: 50px 0px;
  }
  .page_banner .flex .head {
    padding: 0px;
  }
}

@media screen and (max-width: 576px) {
  .content {
    padding: 0px 20px;
  }
  .page_banner::before {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0px;
    top: 0px;
    content: "";
    z-index: -1;
    background-color: var(--title);
    opacity: 0.2;
    pointer-events: none;
  }
  .page_banner::after {
    width: 100%;
    height: 100%;
    position: absolute;
    right: 0px;
    top: 0px;
    content: "";
    background-image: linear-gradient(to left, rgb(148, 163, 180), transparent);
    opacity: 0.5;
    z-index: -1;
    pointer-events: none;
  }
  .page_banner .flex .head {
    width: 100%;
  }
}


* {
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
}
:root {
  --primary: #1d95d4;
  --secondary: #000;
  --title: #161616;
  --text: #565656;
  --text_w: rgba(255, 255, 255, 0.85);
  --border: #cecece;
  --bg: #f7f9fb;
}
html {
  scroll-behavior: smooth;
  font-size: clamp(7.5px, 0.520834vw, 10px);
}
.content {
  max-width: 132rem;
  margin: 0px auto;
  position: relative;
}
a {
  color: inherit;
  cursor: pointer;
  font-size: inherit;
  text-decoration: none;
}
i,
em {
  font-style: normal;
}
.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);
}
.Oswald,
h1,
h2,
h3,
strong,
.title {
}
h1,
h2 {
  text-transform: uppercase;
}
.gap {
  gap: 3rem;
}
.img.img_cv {
  overflow: hidden;
}
.img.img_aba {
  position: relative;
}
.img.img_aba::after {
  content: "";
  display: block;
  padding-bottom: var(--h);
}
.btn {
  display: inline-block;
  cursor: pointer;
  transition: 0.3s;
  text-align: center;
  text-transform: uppercase;
  background-color: var(--primary);
  border: 1px solid var(--primary);
  color: rgb(255, 255, 255);
  border-radius: 0.8rem;
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 6.2rem;
  padding: 0px 3.6rem;
  min-width: 18.5rem;
}
.btn:hover {
  background-color: transparent;
  color: var(--primary);
}
.syedittext p,
.syedittext .desc {
  font-size: 1.8rem;
  line-height: 2.8rem;
  color: var(--text);
}
.head .subtitle {
  font-size: 1.8rem;
  font-weight: 400;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 0.9rem;
  letter-spacing: 0.11rem;
}
.head h2 {
  font-size: 5rem;
  line-height: 1.16;
  font-weight: 600;
}
.oem_about {
  padding: 15.4rem 0px 14.1rem;
}
.oem_about h2 {
  max-width: 66rem;
}
.oem_about .subtitle {
  margin-bottom: 0.7rem;
}
.oem_about .head .flex {
  margin-top: 4rem;
}
.oem_about .head .desc {
  max-width: 93.6rem;
  hyphens: auto;
}
.oem_about .btn {
  margin-top: 1rem;
}
.oem_about .video {
  width: calc(100% + 7rem);
  margin: 7.6rem -3.5rem 0px;
  border-radius: 2.8rem;
  cursor: pointer;
  --h: 41.72662%;
}
.oem_about .video video,
.oem_about .video img,
.oem_about .video iframe,
.oem_about .video div:not(.btn_play) {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  position: absolute;
  left: 0px;
  top: 0px;
}
.oem_about .video .btn_play {
  position: absolute;
  width: 6.4rem;
  height: 6.4rem;
  z-index: 2;
  border-radius: 50%;
  background: url("https://kingwoiot.com//wp-content/plugins/sytech-fronteditor/sytpl/oem2-oem_about/assets/img/play.svg") center center / contain no-repeat;
  transition:
    0.4s,
    opacity 0.3s;
  cursor: pointer;
  left: 2.52%;
  bottom: 6.2069%;
}
.oem_about .video .btn_play:hover {
  transform: scale(1.1);
}
.oem_about .video.active .btn_play {
  opacity: 0;
}
@media screen and (min-width: 769px) and (max-width: 1220px) {
  .content {
    padding: 0px 3rem;
    max-width: 1220px;
  }
  .oem_about .video {
    width: 100%;
    margin: 7.6rem 0px 0px;
  }
}

@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;
  }
  .head h2 {
    font-size: 4rem;
  }
}

@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,
  .btn_w,
  .btn_line {
    font-size: 14px;
    line-height: 40px;
    padding: 0px 20px;
    min-width: 120px;
    border-radius: 4px;
  }
  .syedittext p,
  .syedittext .desc {
    font-size: 14px;
    line-height: 1.5;
  }
  div.head .subtitle {
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 8px;
    word-spacing: unset;
    letter-spacing: 1px;
  }
  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;
  }
  div.head .btn,
  div.head .btn_w,
  div.head .btn_line {
    font-size: 14px;
    line-height: 40px;
    padding: 0px 20px;
    min-width: 120px;
    margin-top: 20px;
  }
  .oem_about {
    padding: 50px 0px;
  }
  .oem_about .head .flex {
    flex-direction: column-reverse;
    gap: 0px;
    margin: 0px;
    align-items: flex-start;
  }
  .oem_about .head .desc {
    margin: 0px;
  }
  .oem_about .video {
    width: 100%;
    border-radius: 10px;
    margin: 30px 0px 0px;
  }
  .oem_about .video .btn_play {
    width: 50px;
    height: 50px;
  }
}

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

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

* {
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
}
:root {
  --primary: #1d95d4;
  --secondary: #000;
  --title: #161616;
  --text: #565656;
  --text_w: rgba(255, 255, 255, 0.85);
  --border: #cecece;
  --bg: #f7f9fb;
}
html {
  scroll-behavior: smooth;
  font-size: clamp(7.5px, 0.520834vw, 10px);
}
.content {
  max-width: 132rem;
  margin: 0px auto;
  position: relative;
}
.swiper_box {
  position: relative;
}
li {
  list-style: none;
}
li.swiper-slide {
  height: auto;
}
body {
  font-size: 1.6rem;
  word-break: break-word;
  color: var(--title);
}
.Oswald,
h1,
h2,
h3,
strong,
.title {
}
h1,
h2 {
  text-transform: uppercase;
}
.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;
}
.img_bg {
  position: relative;
  z-index: 2;
}
.img_bg > img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  left: 0px;
  top: 0px;
  z-index: -2;
  pointer-events: none;
}
.swiper_btns {
  gap: 3.6rem;
  display: flex;
}
.swiper_btns div {
  width: 6.5rem;
  cursor: pointer;
  transition: 0.3s;
  border-radius: 0.8rem;
  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://kingwoiot.com//wp-content/plugins/sytech-fronteditor/sytpl/oem3-oem_factory-img_bg/assets/img/arrow.svg") center center / 30.1587% no-repeat;
  filter: contrast(0) brightness(2);
}
.swiper_btns div:hover {
  border-color: var(--title);
  background-color: var(--title);
}
.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: contrast(0) brightness(0);
}
.swiper_btns .swiper-button-lock {
  display: block;
  opacity: 0;
  pointer-events: none;
}
.swiper_btns.middle {
  width: 98%;
  max-width: 159.8rem;
  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;
}
.swiper_btns.white div:hover {
  border-color: rgb(255, 255, 255);
  background-color: transparent;
}
.swiper_btns.white .swiper-button-disabled {
  border-color: rgba(255, 255, 255, 0.45);
}
.swiper_btns.white .swiper-button-disabled::after {
  filter: contrast(0) brightness(2);
}
.syedittext p,
.syedittext .desc {
  font-size: 1.8rem;
  line-height: 2.8rem;
  color: var(--text);
}
.head.white {
  color: rgb(255, 255, 255);
}
.head .subtitle {
  font-size: 1.8rem;
  font-weight: 400;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 0.9rem;
  letter-spacing: 0.11rem;
}
.head h2 {
  font-size: 5rem;
  line-height: 1.16;
  font-weight: 600;
}
.oem_factory {
  padding: 13.5rem 0px 15rem;
}
.oem_factory .subtitle {
  margin-bottom: 0.7rem;
}
.oem_factory .head .subtitle {
  color: rgb(255, 255, 255);
}
.oem_factory .oem_factory_Swiper {
  overflow: hidden;
  border-radius: 2.4rem;
  margin-top: 5.9rem;
}
.oem_factory .oem_factory_Swiper .swiper-slide {
  max-width: 418px;
}
.oem_factory .item {
  display: flex;
  flex-direction: column;
  height: 100%;
  border-radius: 2.4rem;
  background-color: rgb(255, 255, 255);
  padding: 3.3493% 4.7847% 14.3541% 4.9043%;
}
.oem_factory .item:hover img {
  transform: scale(1.02);
}
.oem_factory .item .img {
  border-radius: 1.7rem;
  padding-bottom: 77.1958%;
}
.oem_factory .item .info {
  flex: 1 1 0%;
  padding: 0px 3.44353%;
  margin-top: 3rem;
}
.oem_factory .item .info h3 {
  font-size: 2.4rem;
  line-height: 3.4rem;
  font-weight: 600;
  color: rgb(35, 35, 35);
  max-width: 26rem;
}
.oem_factory .item .info p {
  margin-top: 1.1rem;
}
@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;
  }
  .head h2 {
    font-size: 4rem;
  }
}

@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;
  }
  .swiper_btns {
    gap: 20px;
  }
  .swiper_btns div {
    width: 40px;
  }
  .syedittext p,
  .syedittext .desc {
    font-size: 14px;
    line-height: 1.5;
  }
  div.head .subtitle {
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 8px;
    word-spacing: unset;
    letter-spacing: 1px;
  }
  div.head h2 {
    font-size: 22px;
    line-height: 1.3;
    letter-spacing: unset;
    max-width: unset;
    word-spacing: unset;
  }
  .oem_factory {
    overflow: hidden;
    padding: 50px 0px;
  }
  .oem_factory .oem_factory_Swiper {
    overflow: unset;
    margin-top: 30px;
  }
  .oem_factory .oem_factory_Swiper .swiper-slide {
    max-width: 314px;
  }
  .oem_factory .item {
    padding: 10px;
    border-radius: 10px;
  }
  .oem_factory .item .img {
    border-radius: 10px;
  }
  .oem_factory .item .info {
    padding: 0px 10px 20px;
    margin-top: 20px;
  }
  .oem_factory .item .info h3 {
    font-size: 18px;
    line-height: 1.5;
    max-width: 200px;
  }
  .oem_factory .item .info p {
    margin-top: 10px;
  }
}

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




* {
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
}
:root {
  --primary: #1d95d4;
  --secondary: #000;
  --title: #161616;
  --text: #565656;
  --text_w: rgba(255, 255, 255, 0.85);
  --border: #cecece;
  --bg: #f7f9fb;
}
html {
  scroll-behavior: smooth;
  font-size: clamp(7.5px, 0.520834vw, 10px);
}
.swiper_content {
  max-width: 135rem;
  margin: 0px auto;
  position: relative;
  padding: 1.5rem;
  overflow: hidden;
}
li {
  list-style: none;
}
li.swiper-slide {
  height: auto;
}
.wrap {
  flex-wrap: wrap;
}
body {
  font-size: 1.6rem;
  word-break: break-word;
  color: var(--title);
}
.Oswald,
h1,
h2,
h3,
strong,
.title {
}
h1,
h2 {
  text-transform: uppercase;
}
.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;
}
.icon img {
  display: block;
  object-fit: contain;
  width: 100%;
  height: 100%;
  transition: 0.3s;
}
.swiper_btns {
  gap: 3.6rem;
  display: flex;
}
.swiper_btns div {
  width: 6.5rem;
  cursor: pointer;
  transition: 0.3s;
  border-radius: 0.8rem;
  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://kingwoiot.com//wp-content/plugins/sytech-fronteditor/sytpl/oem4-oem_certifications/assets/img/arrow.svg") center center / 30.1587% no-repeat;
  filter: contrast(0) brightness(2);
}
.swiper_btns div:hover {
  border-color: var(--title);
  background-color: var(--title);
}
.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: contrast(0) brightness(0);
}
.swiper_btns .swiper-button-lock {
  display: block;
  opacity: 0;
  pointer-events: none;
}
.syedittext p,
.syedittext .desc {
  font-size: 1.8rem;
  line-height: 2.8rem;
  color: var(--text);
}
.head .subtitle {
  font-size: 1.8rem;
  font-weight: 400;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 0.9rem;
  letter-spacing: 0.11rem;
}
.head h2 {
  font-size: 5rem;
  line-height: 1.16;
  font-weight: 600;
}
.swiper_con {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2rem;
}
div.pagination {
  width: auto;
  display: flex;
  align-items: center;
  font-size: 1.8rem;
  color: rgb(0, 0, 0);
  gap: 1.5rem;
}
div.pagination .current {
  font-weight: 500;
}
div.pagination .line {
  width: 2.5rem;
  height: 1px;
  background-color: rgb(0, 0, 0);
  opacity: 0.5;
  content: "";
  display: inline-block;
  margin-left: 2px;
}
div.pagination .total {
  opacity: 0.5;
}
.oem_certifications {
  padding: 11.5rem 0px 15.9rem;
  overflow: hidden;
}
.oem_certifications .rt {
  width: 44.4697%;
  margin-left: auto;
  padding-top: 4.1rem;
  min-height: 65.4rem;
  padding-bottom: 1rem;
}
.oem_certifications .head p {
  color: rgba(86, 86, 86, 0.85);
}
.oem_certifications .subtitle {
  margin-bottom: 0.7rem;
}
.oem_certifications p {
  margin-top: 4rem;
}
.oem_certifications .swiper_con {
  margin-top: 11.1rem;
}
.oem_certifications .oem_certifications_Swiper {
  width: 125.597%;
  margin-left: -25.5973%;
  margin-top: 7.8rem;
}
.oem_certifications .oem_certifications_Swiper .swiper-slide {
  max-width: 134px;
  position: relative;
}
.oem_certifications .oem_certifications_Swiper .swiper-slide::after {
  padding-bottom: 100%;
  display: block;
  content: "";
  pointer-events: none;
}
.oem_certifications .oem_certifications_Swiper .swiper-slide-active .item {
  width: 479.51%;
  height: 480.51%;
  right: 57%;
  bottom: -18.5%;
}
.oem_certifications .oem_certifications_Swiper .swiper-slide-active .icon {
  opacity: 0;
}
.oem_certifications .oem_certifications_Swiper .swiper-slide-active .wrap {
  opacity: 1;
  pointer-events: all;
}
.oem_certifications .item {
  position: absolute;
  width: 100%;
  height: 100%;
  right: 0px;
  bottom: 0px;
  transition: 0.5s;
  border-radius: 2.1rem;
  background-color: rgb(245, 246, 247);
}
.oem_certifications .item .icon {
  position: absolute;
  width: 100%;
  max-width: 13.4rem;
  margin: 0px;
  top: 0px;
  transition: 0.4s;
}
.oem_certifications .item .icon::after {
  padding-bottom: 100%;
  display: block;
  content: "";
  pointer-events: none;
}
.oem_certifications .item .icon img {
  position: absolute;
  left: 0px;
  top: 0px;
}
.oem_certifications .item .wrap {
  position: absolute;
  left: 0px;
  bottom: 0px;
  right: 0px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex-wrap: unset;
  border-radius: 2.1rem;
  border: 2px solid var(--primary);
  background-color: rgb(255, 255, 255);
  transition: 0.5s;
  opacity: 0;
  pointer-events: none;
  padding: 2rem 0px;
}
.oem_certifications .item .pic {
  border-radius: 0.6rem;
  border: 1px solid rgb(215, 215, 215);
  padding: 1.2rem 1.3rem 1.4rem;
  width: 41.833%;
  margin: 0.4rem auto 0px;
}
.oem_certifications .item .pic .img {
  padding-bottom: 139.749%;
}
.oem_certifications .item .info {
  margin-top: 4.5rem;
  text-align: center;
  overflow-y: auto;
  padding: 0px 2rem 2px;
}
.oem_certifications .item .info h3 {
  font-size: 2.8rem;
  font-weight: 700;
  text-transform: uppercase;
}
.oem_certifications .item .info p {
  max-width: 40.6rem;
  hyphens: auto;
  margin: 2.7rem auto 0px;
}
@media screen and (min-width: 769px) and (max-width: 1220px) {
  .swiper_content {
    padding: 1.5rem 3rem;
    max-width: 1220px;
  }
  .oem_certifications .oem_certifications_Swiper .swiper-slide-active .item {
    bottom: 0px;
  }
  .oem_certifications .rt {
    padding: 12rem 0px 0px;
  }
}

@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;
  }
  .head h2 {
    font-size: 4rem;
  }
}

@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;
  }
  .swiper_content {
    padding: 10px 30px;
  }
  .swiper_btns {
    gap: 20px;
  }
  .swiper_btns div {
    width: 40px;
  }
  .syedittext p,
  .syedittext .desc {
    font-size: 14px;
    line-height: 1.5;
  }
  div.head .subtitle {
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 8px;
    word-spacing: unset;
    letter-spacing: 1px;
  }
  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;
  }
  .swiper_con {
    gap: 16px;
  }
  div.pagination {
    font-size: 14px;
    gap: 12px;
  }
  div.pagination .line {
    width: 22px;
    margin-left: 0px;
  }
  .oem_certifications {
    padding: 50px 0px;
  }
  .oem_certifications .swiper_content {
    overflow: unset;
    padding-top: 0px;
    padding-bottom: 0px;
  }
  .oem_certifications .rt {
    padding: 0px;
    min-height: 320px;
  }
  .oem_certifications .swiper_con {
    margin-top: 30px;
  }
  .oem_certifications .oem_certifications_Swiper {
    margin-top: 30px;
  }
  .oem_certifications .oem_certifications_Swiper .swiper-slide {
    max-width: 67px;
  }
  .oem_certifications .oem_certifications_Swiper .swiper-slide-active .item {
    bottom: 0px;
  }
  .oem_certifications .item {
    border-radius: 10px;
  }
  .oem_certifications .item .wrap {
    border-radius: 10px;
  }
  .oem_certifications .item .wrap .pic {
    margin-top: 0px;
    padding: 10px;
  }
  .oem_certifications .item .wrap .info {
    margin-top: 20px;
    padding: 0px 20px;
  }
  .oem_certifications .item .wrap .info h3 {
    font-size: 18px;
  }
  .oem_certifications .item .wrap .info p {
    margin-top: 10px;
  }
}

@media screen and (max-width: 576px) {
  .swiper_content {
    padding: 10px 20px;
  }
  .oem_certifications .rt {
    width: 100%;
  }
  .oem_certifications .oem_certifications_Swiper {
    width: 100%;
    margin-left: 0px;
  }
  .oem_certifications .oem_certifications_Swiper .swiper-slide {
    max-width: 277px;
  }
  .oem_certifications .oem_certifications_Swiper .swiper-slide::after {
    display: none;
  }
  .oem_certifications .oem_certifications_Swiper .swiper-slide .item {
    width: 100%;
    height: 100%;
    position: relative;
    bottom: 0px;
    right: 0px;
  }
  .oem_certifications .oem_certifications_Swiper .swiper-slide .item .icon {
    display: none;
  }
  .oem_certifications .oem_certifications_Swiper .swiper-slide .item .wrap {
    opacity: 1;
    position: static;
  }
  .oem_certifications
    .oem_certifications_Swiper
    .swiper-slide
    .item
    .wrap
    .info {
    overflow: unset;
  }
}

* {
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
}
:root {
  --primary: #1d95d4;
  --secondary: #000;
  --title: #161616;
  --text: #565656;
  --text_w: rgba(255, 255, 255, 0.85);
  --border: #cecece;
  --bg: #f7f9fb;
}
html {
  scroll-behavior: smooth;
  font-size: clamp(7.5px, 0.520834vw, 10px);
}
.content {
  max-width: 132rem;
  margin: 0px auto;
  position: relative;
}
li {
  list-style: none;
}
li.swiper-slide {
  height: auto;
}
a {
  color: inherit;
  cursor: pointer;
  font-size: inherit;
  text-decoration: none;
}
.flex {
  display: flex;
}
.wrap {
  flex-wrap: wrap;
}
.between {
  justify-content: space-between;
}
.flex_middle {
  align-items: center;
}
.flex_bottom {
  align-items: flex-end;
}
body {
  font-size: 1.6rem;
  word-break: break-word;
  color: var(--title);
}
.Oswald,
h1,
h2,
h3,
strong,
.title {
}
h1,
h2 {
  text-transform: uppercase;
}
.gap {
  gap: 3rem;
}
.img.img_cv {
  overflow: hidden;
}
.img.img_cv img {
  object-fit: cover;
}
.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;
}
.img_bg {
  position: relative;
  z-index: 2;
}
.img_bg > img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  left: 0px;
  top: 0px;
  z-index: -2;
  pointer-events: none;
}
.btn {
  display: inline-block;
  cursor: pointer;
  transition: 0.3s;
  text-align: center;
  text-transform: uppercase;
  background-color: var(--primary);
  border: 1px solid var(--primary);
  color: rgb(255, 255, 255);
  border-radius: 0.8rem;
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 6.2rem;
  padding: 0px 3.6rem;
  min-width: 18.5rem;
}
.btn:hover {
  background-color: transparent;
  color: var(--primary);
}
.swiper_btns {
  gap: 3.6rem;
  display: flex;
}
.swiper_btns div {
  width: 6.5rem;
  cursor: pointer;
  transition: 0.3s;
  border-radius: 0.8rem;
  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://kingwoiot.com//wp-content/plugins/sytech-fronteditor/sytpl/oem5-page_stories-img_bg/assets/img/arrow.svg") center center / 30.1587% no-repeat;
  filter: contrast(0) brightness(2);
}
.swiper_btns div:hover {
  border-color: var(--title);
  background-color: var(--title);
}
.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: contrast(0) brightness(0);
}
.swiper_btns .swiper-button-lock {
  display: block;
  opacity: 0;
  pointer-events: none;
}
.syedittext p,
.syedittext .desc {
  font-size: 1.8rem;
  line-height: 2.8rem;
  color: var(--text);
}
.head .subtitle {
  font-size: 1.8rem;
  font-weight: 400;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 0.9rem;
  letter-spacing: 0.11rem;
}
.head h2 {
  font-size: 5rem;
  line-height: 1.16;
  font-weight: 600;
}
.page_stories {
  padding: 9.9rem 0px 13.6rem;
}
.page_stories .head {
  max-width: 51rem;
}
.page_stories .subtitle {
  margin-bottom: 0.7rem;
}
.page_stories .swiper_btns {
  margin-bottom: 0.6rem;
}
.page_stories .page_stories_swiper {
  width: calc(100% + 6.9rem);
  margin: 6.4rem -3.5rem 0px;
  overflow: hidden;
  border-radius: 2.8rem;
  background-color: rgb(255, 255, 255);
  border: 1px solid rgb(234, 234, 234);
  padding: 3.5rem 3.5rem 3.2rem;
}
.page_stories .page_stories_swiper .flex {
  height: 100%;
}
.page_stories .page_stories_swiper .img {
  width: 50.1%;
  border-radius: 2.4rem;
  --h: 66.76783%;
}
.page_stories .page_stories_swiper .img:hover img {
  transform: scale(1.02);
}
.page_stories .page_stories_swiper .info {
  flex: 1 1 0%;
  max-width: 58.2rem;
  width: 100%;
  padding-bottom: 0.8%;
}
.page_stories .page_stories_swiper .info h3 {
  font-size: 3.8rem;
  font-weight: 600;
  text-transform: uppercase;
}
.page_stories .page_stories_swiper .info p {
  max-width: 52rem;
  margin-top: 2.4rem;
}
.page_stories .page_stories_swiper .info ul {
  margin-top: 2.6rem;
}
.page_stories .page_stories_swiper .info ul li + li {
  margin-top: 1.7rem;
}
.page_stories .page_stories_swiper .info ul li {
  position: relative;
  padding-left: 4.8rem;
}
.page_stories .page_stories_swiper .info ul li::before {
  width: 2.9rem;
  height: 2.9rem;
  position: absolute;
  left: 0px;
  top: -2px;
  content: "";
  background: url("https://kingwoiot.com//wp-content/plugins/sytech-fronteditor/sytpl/oem5-page_stories-img_bg/assets/img/gou-full.svg") center center / contain no-repeat;
}
.page_stories .page_stories_swiper .info .btn {
  margin-top: 6.2rem;
  line-height: 5.4rem;
  min-width: 21.3rem;
}
.page_stories {
  padding-bottom: 19.5rem;
  margin-bottom: -6rem;
}
.page_stories .page_stories_swiper .info {
  max-width: 57.7rem;
}
@media screen and (min-width: 769px) and (max-width: 1220px) {
  .content {
    padding: 0px 3rem;
    max-width: 1220px;
  }
  .page_stories .page_stories_swiper {
    width: 100%;
    margin: 6.4rem 0px 0px;
  }
}

@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;
  }
  .head h2 {
    font-size: 4rem;
  }
}

@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,
  .btn_w,
  .btn_line {
    font-size: 14px;
    line-height: 40px;
    padding: 0px 20px;
    min-width: 120px;
    border-radius: 4px;
  }
  .swiper_btns {
    gap: 20px;
  }
  .swiper_btns div {
    width: 40px;
  }
  .syedittext p,
  .syedittext .desc {
    font-size: 14px;
    line-height: 1.5;
  }
  div.head .subtitle {
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 8px;
    word-spacing: unset;
    letter-spacing: 1px;
  }
  div.head h2 {
    font-size: 22px;
    line-height: 1.3;
    letter-spacing: unset;
    max-width: unset;
    word-spacing: unset;
  }
  .page_stories {
    padding: 50px 0px;
  }
  .page_stories .swiper_btns {
    margin-bottom: 0px;
  }
  .page_stories .page_stories_swiper {
    width: 100%;
    margin: 30px 0px 0px;
    border-radius: 10px;
    padding: 20px;
  }
  .page_stories .page_stories_swiper .img {
    border-radius: 10px;
  }
  .page_stories .page_stories_swiper .info {
    padding: 0px;
  }
  .page_stories .page_stories_swiper .info h3 {
    font-size: 18px;
  }
  .page_stories .page_stories_swiper .info p {
    margin-top: 10px;
  }
  .page_stories .page_stories_swiper .info ul {
    margin-top: 14px;
  }
  .page_stories .page_stories_swiper .info ul li + li {
    margin-top: 10px;
  }
  .page_stories .page_stories_swiper .info ul li {
    padding-left: 25px;
  }
  .page_stories .page_stories_swiper .info ul li::before {
    width: 16px;
    height: 16px;
    top: 1px;
  }
  .page_stories .page_stories_swiper .info .btn {
    margin-top: 20px;
    line-height: 40px;
    min-width: 120px;
  }
  .page_stories {
    padding: 50px 0px;
    margin: 0px;
  }
}

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