﻿@charset "utf-8";

/*
	CSS Document 
*/
.sk-display-pc {
  display: block !important;
}

.sk-display-mobile {
  display: none !important;
}

/* header start */
.sk-header{  }

.sk-header-box {
  display: block;
}

.sk-header-main {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.sk-header-logo {
  display: block;
  flex-shrink: 0;
  padding: 15px 0;
}

.sk-header-logo a {
  display: block;
}

.sk-header-logo img {
  display: block;
  max-height: 60px;
  width: auto;
  transition: all .3s;
}

.sk-header-sns{ display: flex; justify-content: flex-start; align-items: center}
.sk-header-follow{ display: flex; justify-content: flex-start; align-items: center; }
.sk-header-follow a{ margin-left: 8px; width: 28px; }
.sk-header-follow a img{ display: block; width: 100%; height: auto; }
.sk-header-follow a:hover {
  transform: rotate(20deg);
}
.sk-header-email{ display: block; margin-left: 8px; }
.sk-header-email a{ display: flex; justify-content: flex-start; align-items: center; color: var(--greener); }
.sk-header-email i{ font-size: 36px; line-height: 32px; }
.sk-header-email span{ font-size: 18px; margin-left: 5px; }
.sk-header-email a:hover{ color: var(--black); }

.sk-navigation{ background-color: var(--greener); }

.sk-navigation-main{ display: flex; justify-content: space-between; }

/* search start */
.sk-header-right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-shrink: 0;
}

.sk-header-search-item {
  position: relative;
  width: 48px;
  height: 32px;
  text-align: center;
  display: block;
  margin-right: 15px;
  cursor: pointer;
  padding-right: 15px;
}

.sk-header-search-item .iconfont {
  display: block;
  line-height: 32px;
  font-size: 20px;
  color: var(--mainalt);
}

.sk-header-search-item::after {
  position: absolute;
  content: "";
  display: block;
  background-color: var(--mainalt);
  width: 1px;
  height: 18px;
  top: 7px;
  right: 0;
}

.sk-header-search-item:hover .iconfont{ 
  color: var(--white);
 }

.sk-header-search {
  position: fixed;
  width: 100%;
  height: 100vh;
  z-index: 100;
  top: 0;
  left: 0;
  display: none;
}

.sk-header-search::after {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0px;
  content: "";
  display: block;
  background-color: var(--black);
  opacity: .8;
  z-index: 101;
}

.sk-header-search-box {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0px;
  z-index: 102;
  display: flex;
  justify-content: center;
  align-items: center;
}
.sk-header-search-box form{ position: relative; }

.sk-search-group {
  display: block;
  position: relative;
  width: 500px;
}
.sk-search-group .sk-search-control {
  display: block;
  border: 0;
  border-bottom: 1px solid var(--border);
  background-color: transparent;
  outline: none;
  padding: 5px 64px 5px 10px;
  height: 54px;
  position: relative;
  width: 100%;
  color: var(--white);
}

.sk-search-group .sk-search-btn {
  border: 0px;
  background: unset;
  width: 54px;
  height: 54px;
  color: var(--white);
  position: absolute;
  right: 0;
  top: 0;
  z-index: 103;
  transition: all .8s;
}

.sk-search-group .sk-search-btn span{
  font-size: 20px;
}

.sk-search-group .sk-search-btn:hover{ color: var(--main); }

.sk-header-search-close{
  position: absolute;
  width: 36px;
  height: 36px;
  display: block;
  right: -60px;
  top: -60px;
  cursor: pointer;
}
.sk-header-search-close i{
  display: block;
  text-align: center;
  line-height: 36px;
  font-size: 24px;
  color: var(--white);
  transition: all .8s;
}
.sk-header-search-close:hover i{
  color: var(--main);
}

/* navigation */
.sk-navigation-box {
  display: flex;
  justify-content: flex-start;
}

.sk-navigation-box .sk-navigation-li {
  position: relative;
}

.sk-navigation-box .sk-navigation-li::after{
  position: absolute;
  content: "";
  display: block;
  background-color: var(--mainalt);
  width: 1px;
  height: 18px;
  top: 15px;
  right: 0;
}
.sk-navigation-box .sk-navigation-li:last-child:after{
  display: none;
}

.sk-navigation-box .sk-navigation-link {
  font-weight: 400;
  font-size: 16px;
  color: var(--white);
  padding: 0 20px;
  display: flex;
  justify-content: center;
  line-height: 50px;
  text-transform: uppercase;
}

.sk-navigation-box .sk-navigation-link .iconfont {
  padding-left: 8px;
}

.sk-navigation-box .sk-navigation-sub {
  display: block;
  opacity: 0;
  position: absolute;
  top: 100%;
  left: -1px;
  z-index: 100;
  background-color: var(--white);
  box-shadow: 0 2px 8px var(--grey);
  width: 250px;
  transform: scaleY(0);
  -webkit-transform: scaleY(0);
  -moz-transform: scaleY(0);
  -ms-transform: scaleY(0);
  -o-transform: scaleY(0);
  transform-origin: center top 0;
  -webkit-transform-origin: center top 0;
  -moz-transform-origin: center top 0;
  -ms-transform-origin: center top 0;
  -o-transform-origin: center top 0;
  transition: all 0.3s ease-in-out 0s;
  -webkit-transition: all 0.3s ease-in-out 0s;
  -moz-transition: all 0.3s ease-in-out 0s;
  -ms-transition: all 0.3s ease-in-out 0s;
  -o-transition: all 0.3s ease-in-out 0s;
}

.sk-navigation-box .sk-navigation-sub .sk-navigation-sub-li {
  position: relative;
  border-bottom: 1px solid var(--border);
  display: block;
}

.sk-navigation-box .sk-navigation-sub .sk-navigation-sub-link {
  padding: 10px 15px;
  color: var(--black);
  font-weight: 300;
  font-size: 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.sk-navigation-box .sk-navigation-sub .sk-navigation-sub-link i {
  font-size: 14px;
}

.sk-navigation-child {
  left: 250px;
  opacity: 0;
  position: absolute;
  top: 0;
  transform: scaleX(0);
  transform-origin: 0 0 0;
  transition: all 0.4s ease 0s;
  box-shadow: 0 2px 8px var(--grey);
  z-index: 101;
  padding: 0;
  visibility: hidden;
  text-align: left;
  width: 240px;
  background: var(--white);
  transition: .3s ease;
  max-height: 400px;
  overflow-y: auto;
  
  border: 1px solid var(--border);
  border-bottom: 0;
}

.sk-navigation-child .sk-navigation-child-li {
  display: block;
  padding: 0;
  position: relative;
  border-bottom: 1px solid var(--border);
}

.sk-navigation-child .sk-navigation-child-link {
  color: var(--black);
  padding: 10px 15px;
  text-transform: capitalize;
  font-size: 14px;
  overflow: hidden;
  display: block;
  font-weight: 400;
  transition: all .5s;
}

.sk-navigation-box .sk-navigation-link.active,.sk-navigation-box .sk-navigation-li:hover .sk-navigation-link{
  color: var(--main);
}

.sk-navigation-child .sk-navigation-child-link:hover,.sk-navigation-box .sk-navigation-sub .sk-navigation-sub-link:hover {
  color: var(--greener);
}

.sk-navigation-box .sk-navigation-li:hover .sk-navigation-sub {
  opacity: 1;
  visibility: visible;
  transform: scaleY(1);
  -webkit-transform: scaleY(1);
  -moz-transform: scaleY(1);
  -ms-transform: scaleY(1);
  -o-transform: scaleY(1);
}

.sk-navigation-sub-li:hover .sk-navigation-child {
  opacity: 1;
  visibility: visible;
  transform: scaleX(1);
}

.sk-header-fixed {
  width: 100%;
  left: 0;
  position: fixed;
  right: 0;
  top: 0;
  z-index: 99;
  background: var(--white);
  box-shadow: 0 0 20px -1px rgb(0 0 0 / 10%);
  -ms-box-shadow: 0 0 20px -1px rgba(0, 0, 0, .1);
  -moz-box-shadow: 0 0 20px -1px rgba(0, 0, 0, .1);
  -o-box-shadow: 0 0 20px -1px rgba(0, 0, 0, .1);
  -webkit-box-shadow: 0 0 20px -1px rgb(0 0 0 / 10%);
}

.sk-header-fixed .sk-header-logo {
  padding: 10px 0;
}

.sk-header-fixed .sk-header-logo img {
  max-height: 50px;
}
/* header end */

/* mobile nav */
.sk-mobile-header {
  display: none;
}

.sk-mobile-header-box {
  display: flex;
  justify-content: space-between;
  align-self: center;
  padding: 10px;
}

.sk-mobile-header-logo {
  display: block;
}

.sk-mobile-header-logo img {
  height: 45px;
  width: auto;
  display: block;
}

.sk-mobile-header-right {
  display: flex;
  justify-content: space-between;
  align-self: center;
}

.sk-mobile-header-right .sk-header-search-item .iconfont{
  color: var(--black);
}

.sk-mobile-header-right .sk-header-search-item::after{
  background-color: var(--border);
}

.sk-mobile-header-right .language-flag {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.sk-mobile-header-right .language-flag span {
  font-size: 15px;
  text-transform: uppercase;
}

.sk-mobile-caidan {
  margin-left: 20px;
  display: block;
  width: 30px;
  height: 30px;
  overflow: hidden;
  border-radius: 3px;
  border: 0px solid var(--black);
  background-color: var(--white);
  outline: none;
}

.sk-mobile-caidan .iconfont {
  display: block;
  width: 100%;
  height: 100%;
  color: var(--black);
  line-height: 30px;
  text-align: center;
  font-size: 28px;
}

.sk-header-colse {
  display: block;
  width: 36px;
  height: 36px;
  background-color: var(--white);
  position: absolute;
  left: -38px;
  top: 2px;
}

.sk-header-colse .iconfont {
  display: block;
  text-align: center;
  line-height: 36px;
}

.sk-mobile-nav {
  position: fixed;
  width: 80%;
  height: 100vh;
  top: 0px;
  right: -90%;
  background-color: var(--white);
  box-shadow: -1px 0 5px 0 var(--border);
  z-index: 1001;
  opacity: 0;
  transform: scaleX(0);
  transform-origin: 0 0 0;
  transition: all 0.4s ease 0s;
}

.sk-mobile-nav-box {
  overflow-y: auto;
  max-height: 100%;
  padding: 10px 0px 20px;
}

.sk-mobile-nav-box .sk-mobile-nav-li {
  display: block;
}

.sk-mobile-nav-box .sk-mobile-nav-link {
  padding: 0 12px;
  line-height: 42px;
  font-size: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-transform: capitalize;
  border-bottom: 1px solid var(--border);
}

.sk-mobile-nav-box .sk-mobile-nav-sub-li {
  display: block;
}

.sk-mobile-nav-box .sk-mobile-nav-link.active {
  color: var(--greener);
}

.sk-mobile-nav-box .sk-mobile-nav-sub-link {
  padding: 0 12px 0 15px;
  color: var(--black);
  line-height: 42px;
  font-size: 15px;
  text-transform: capitalize;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--border);
}

.sk-mobile-nav-box .sk-mobile-nav-child-li {
  display: block;
}

.sk-mobile-nav-box .sk-mobile-nav-child-link {
  color: var(--black);
  padding: 0 12px 0 25px;
  line-height: 42px;
  font-size: 14px;
  text-transform: capitalize;
  border-bottom: 1px dashed var(--border);
  display: block;
}

/* mobile lang */
.sk-mobile-lang {
  position: fixed;
  width: 60%;
  height: 100vh;
  top: 0px;
  right: -90%;
  background-color: var(--white);
  box-shadow: -1px 0 5px 0 var(--border);
  z-index: 1001;
  opacity: 0;
  transform: scaleX(0);
  transform-origin: 0 0 0;
  transition: all 0.4s ease 0s;
}

.sk-mobile-lang-box {
  overflow-y: auto;
  max-height: 100%;
  padding: 10px 0px 20px;
}

.sk-mobile-lang-box .language-flag {
  border-bottom: 1px solid var(--border);
}

.sk-mobile-lang-box .language-flag a {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding: 8px 10px;
}

.sk-mobile-lang-box .language-flag a span {
  font-size: 14px;
  margin-left: 5px;
}

.sk-mobile-block {
  opacity: 1;
  visibility: visible;
  transform: scaleX(1);
  right: 0;
}

.sk-mobile-fixed {
  width: 100%;
  left: 0;
  position: fixed;
  right: 0;
  top: 0;
  z-index: 98;
  background: var(--white);
  box-shadow: 0 0 20px -1px rgb(0 0 0 / 10%);
  -ms-box-shadow: 0 0 20px -1px rgba(0, 0, 0, .1);
  -moz-box-shadow: 0 0 20px -1px rgba(0, 0, 0, .1);
  -o-box-shadow: 0 0 20px -1px rgba(0, 0, 0, .1);
  -webkit-box-shadow: 0 0 20px -1px rgb(0 0 0 / 10%);
}

@media screen and (max-width: 1024px) {
  .sk-header {
    display: none;
  }

  .sk-mobile-header {
    display: block;
  }
  .sk-header-search-box form{ width: 100vh; }
  .sk-search-group{ width: 96%; margin: auto; }
  .sk-header-search-close{ right: 10px; }
}
/* mobile end */

/* footer start */
.sk-footer {
  background-color: var(--greener);
  overflow: hidden;
}

.sk-footer-box {
  padding: 50px 0;
}
.sk-footer-box-title {
  text-align: left;
  color: var(--white);
  font-size: 24px;
  text-transform: capitalize;
  line-height: 32px;
  margin-bottom: 20px;
}
.sk-footer-box-contact {
  display: block;
}

.sk-footer-box-nav-box li {
  display: block;
  line-height: 28px;
}

.sk-footer-box-nav-box li a {
  font-size: 14px;
  color: var(--mainalt);
  transition: all .8s;
  text-transform: capitalize;
}

.sk-footer-box-nav-box li a:hover {
  color: var(--white);
}

.sk-footer-box-contact-box {
  display: block;
}

.sk-footer-box-contact-box p,
.sk-footer-box-contact-box a {
  font-size: 14px;
  line-height: 28px;
  color: var(--mainalt);
  font-weight: 300;
  display: flex;
  justify-content: flex-start;
}

.sk-footer-box-contact-box p i,
.sk-footer-box-contact-box a i {
  flex-shrink: 0;
  font-size: 16px;
  margin-right: 8px;
}

.sk-footer-box-contact-box a:hover {
  color: var(--white);
  transition: all .8s;
}

.sk-footer-box-follow {
  height: 100%;
  padding: 0 25px;
}

.sk-footer-box-follow-box {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
}

.sk-footer-box-follow-box a {
  display: block;
  margin: 0 8px 8px 0;
  width: 30px;
  height: 30px;
  transition: all .5s;
}

.sk-footer-box-follow-box img {
  width: 100%;
  height: auto;
  display: block;
}

.sk-footer-box-follow-box a:hover {
  transform: rotate(30deg);
}

/* copyright */
.sk-footer-copyright {
  border-top: 1px solid var(--mainalt);
}

.sk-footer-copyright-text {
  color: var(--mainalt);
  font-size: 14px;
  line-height: 30px;
  text-align: center;
  padding: 15px 0;
}

.sk-footer-copyright-text a {
  color: var(--mainalt);
}

.sk-footer-copyright-text a:hover {
  color: var(--white);
}

/* blank top */
.sk-meau-top {
  width: 50px;
  height: 50px;
  line-height: 50px;
  border-radius: 50%;
  position: fixed;
  bottom: 75px;
  right: 15px;
  z-index: 98;
  text-align: center;
  color: var(--white);
  cursor: pointer;
  background: var(--main);
}

.sk-meau-top i{
  font-size: 24px;
}
/* footer end */

/* crumbs start */
.sk-breadcrumb {
  background: var(--bgadv);
  padding: 22px 0;
}

.sk-breadcrumb-title {
  font-size: 30px;
  font-weight: 600;
  text-align: center;
  line-height: 32px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.sk-breadcrumb-line{
  padding: 10px 0 0;
}

.sk-breadcrumb-line-up,
.sk-breadcrumb-line-down{
  display: flex;
  justify-content: center;
  align-items: center;
}

.sk-breadcrumb-line-up{ margin-bottom: 6px; }
.sk-breadcrumb-line-up::after,.sk-breadcrumb-line-up::before,
.sk-breadcrumb-line-down::after,.sk-breadcrumb-line-down::before{
  content: "";
  display: block;
  width: 40px;
  height: 2px;
  margin: 0px 5px;
  background-color: var(--greener);
}
.sk-breadcrumb-line-down::after,.sk-breadcrumb-line-down::before{
  width: 20px;
}

.sk-position-crumbs {
  line-height: 22px;
  margin-top: 18px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.sk-position-crumbs a {
  margin: 0 5px;
  font-weight: 300;
  font-size: 15px;
  color: var(--grey);
}

.sk-position-crumbs i {
  font-size: 15px;
  color: var(--grey);
  font-weight: 600;
}

.sk-position-crumbs a:hover {
  color: var(--greener);
}

/* crumbs end */

/* content start */
.sk-content {
  display: block;
}

.sk-content-main {
  padding: 60px 0;
}

.sk-pages-title {
  display: block;
  color: var(--black);
  margin-bottom: 25px;
  font-size: 30px;
  line-height: 36px;
  text-transform: capitalize;
  font-family: var(--fonts-tow);
}

.sk-pages-title i {
  font-size: 30px;
}

/* content end */

/* contact start */
.sk-content-contact {
  margin-bottom: 50px;
}

.sk-content-contact .sk-content-contact-box {
  padding-right: 60px;
}

.sk-content-contact .sk-content-contact-text {
  font-size: 14px;
  color: var(--black);
  line-height: 25px;
}

.sk-content-contact .sk-content-contact-list {
  padding-top: 30px;
}

.sk-content-contact .sk-content-contact-list p {
  display: flex;
  justify-content: flex-start;
  margin-bottom: 10px;
  line-height: 25px;
}

.sk-content-contact .sk-content-contact-list i {
  font-size: 18px;
  margin-right: 8px;
  color: var(--black);
}

.sk-content-contact .sk-content-contact-list a,
.sk-content-contact .sk-content-contact-list span {
  font-size: 16px;
  color: var(--black);
}

.sk-content-contact .sk-content-contact-list a:hover {
  color: var(--main);
}

.sk-content-contact-follow {
  padding-top: 15px;
}

.sk-follow-box {
  display: flex;
  justify-content: flex-start;
}

.sk-follow-box a {
  width: 32px;
  display: block;
  margin: 0 8px 8px 0;
}

.sk-follow-box img {
  width: 100%;
  height: auto;
  display: block;
}

.sk-follow-box a:hover {
  transform: rotate(20deg);
}

/* contact end */

/* message start */
.sk-content-message {
  display: block;
  background-color: var(--bgpro);
  padding: 30px;
  border-radius: 2px;
}

.sk-content-message2 {
  display: block;
}

.sk-content-message-form {
  display: block;
}

.sk-content-message-form .sk-content-message-form-input,
.sk-content-message-form .sk-content-message-form-textarea {
  margin-bottom: 20px;
}

.sk-content-message-form label {
  font-size: 16px;
  color: var(--black);
  line-height: 30px;
}

.sk-content-message-form .sk-content-message-form-input input,
.sk-content-message-form .sk-content-message-form-textarea textarea {
  width: 100%;
  line-height: 23px;
  display: block;
  border: 1px solid var(--border);
  outline: none;
  background-color: var(--white);
  font-size: 14px;
  padding: 9px 12px;
  border-radius: 3px;
  transition: all .8s;
}

.sk-content-message-form .sk-content-message-form-textarea textarea {
  resize: none;
  height: 150px;
}

.sk-content-message-form .sk-content-message-form-input input:focus,
.sk-content-message-form .sk-content-message-form-textarea textarea:focus {
  border-color: var(--main);
}

.sk-content-message-form .sk-content-message-form-submit {
  display: block;
}

.sk-content-message-form .sk-content-message-form-button {
  width: auto;
  text-transform: uppercase;
  transition: all .8s;
  border: 1px solid var(--main);
  background: unset;
  color: var(--main);
  cursor: pointer;
  font-size: 18px;
  padding: 0px 36px;
  border-radius: 3px;
  line-height: 42px;
  letter-spacing: 2px;
}

.sk-content-message-form .sk-content-message-form-button:hover {
  color: var(--white);
  background-color: var(--main);
}

/* message end */

/* about start */
.sk-content-about {
  margin-bottom: 60px;
}

.sk-content-about-img {
  float: left;
  max-width: 600px;
  padding: 0 15px 15px 0;
}

.sk-content-about-img img {
  display: block;
  width: 100%;
  height: auto;
}

/* about end */

/* page start */
.sk-content-page-box {
  margin-bottom: 25px;
}

.sk-content-page-main {
  font-size: 16px;
  line-height: 28px;
}

.sk-content-page-main img {
  max-width: 100%;
  height: auto !important;
}
/* page end */

/* images start */
.sk-list-images-box {
  margin-top: 10px;
  margin-bottom: 10px;
}

.sk-list-images-box a {
  display: block;
  border: 1px solid var(--border);
}

.sk-list-images-box a img {
  width: 100%;
  height: auto;
  display: block;
}

/* video list start */
.sk-video-list {
  background-color: var(--white);
  display: block;
  border-radius: 1px;
  overflow: hidden;
  margin-bottom: 25px;
  box-shadow: 0px 0px 6px 0px rgb(0 0 0 / 8%);
  transition: all 0.3s ease-in-out 0s;
  -moz-transition: all 0.3s ease-in-out 0s;
  -webkit-transition: all 0.3s ease-in-out 0s;
  -o-transition: all 0.3s ease-in-out 0s;
  -ms-transition: all 0.3s ease-in-out 0s;
}

.sk-video-list .sk-video-list-img {
  display: block;
  border-bottom: 1px solid var(--border);
}

.sk-video-list .sk-video-list-img a {
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.sk-video-list .sk-video-list-img img {
  width: 100%;
  height: auto;
  display: block;
}

.sk-video-list .sk-video-list-title {
  display: block;
}

.sk-video-list .sk-video-list-title a {
  padding: 10px;
  font-size: 16px;
  color: var(--black);
  transition: all .6s;
  display: block;
  line-height: 25px;
  text-align: center;
}

.sk-video-list:hover .sk-video-list-title a {
  color: var(--main);
}

/* show start */
.sk-content-show {
  display: block;
}

.sk-content-show-banner {
  margin-bottom: 25px;
}

.sk-content-show .sk-content-show-title {
  font-size: 28px;
  line-height: 30px;
  margin-bottom: 15px;
  color: var(--black);
}

.sk-content-show .sk-content-show-resource {
  padding: 5px 10px;
  line-height: 25px;
  border: 1px solid var(--border);
  border-radius: 1px;
  display: flex;
  justify-content: flex-start;
}

.sk-content-show .sk-content-show-resource i {
  font-size: 14px;
  color: var(--grey);
}

.sk-content-show .sk-content-show-resource span {
  font-size: 14px;
  color: var(--grey);
  margin-left: 8px;
}

.sk-content-show .sk-content-page-main {
  padding: 15px 0 30px 0;
}

.sk-content-show-prenext {
  border: 1px solid var(--border);
}

.sk-content-show-prenext p {
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  display: block;
  font-size: 14px;
  font-weight: 400;
  line-height: 30px;
  padding: 5px 12px;
}

.sk-content-show-prenext p~p {
  border-top: 1px solid var(--border);
}

/* video show */
.sk-player {
  width: 100%;
  padding: 15px 0;
  border-bottom: 1px solid var(--border);
}

/* news start */
.sk-list-box {
  display: block;
}

.sk-list-news-item {
  box-shadow: 0px 0px 10px 0px rgb(0 0 0 / 8%);
  border-radius: 0px;
  border: 1px solid var(--border);
  margin-bottom: 25px;
  transition: all 0.3s ease-in-out 0s;
  -moz-transition: all 0.3s ease-in-out 0s;
  -webkit-transition: all 0.3s ease-in-out 0s;
  -o-transition: all 0.3s ease-in-out 0s;
  -ms-transition: all 0.3s ease-in-out 0s;
}

.sk-list-news-item-img {
  border-bottom: 1px solid var(--border);
}

.sk-list-news-item-img a {
  display: block;
  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.sk-list-news-item-img img {
  display: block;
  width: 100%;
  height: auto;
}

.sk-list-news-item-info {
  display: block;
  padding: 15px;
}

.sk-list-news-item-sortname {
  margin-bottom: 10px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  letter-spacing: 0.00em;
  text-transform: capitalize;
  color: var(--grey);
  font-size: 14px;
  font-weight: 400;
  line-height: 1;
}

.sk-list-news-item-sortname i {
  color: var(--grey);
  margin-right: 7px;
  font-size: 14px;
}

.sk-list-news-item-title {
  margin-bottom: 10px;
  font-size: 20px;
  line-height: 25px;
  font-weight: 700;
}

.sk-list-news-item-title a {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  transition: all .8s;
  color: var(--black);
}

.sk-list-news-item-desc {
  margin-bottom: 25px;
  color: var(--grey);
  font-size: 14px;
  line-height: 23px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

.sk-list-news-item-more {
  font-size: 15px;
  color: var(--main);
  position: relative;
  padding-bottom: 5px;
  text-transform: uppercase;
  display: inline-block;
  border: 1px solid var(--main);
  padding: 8px 15px;
  background-color: transparent;
}

.sk-list-news-item-more span {
  position: relative;
  z-index: 3;
}

.sk-list-news-item-more .iconfont {
  margin-left: 3px;
  font-size: 15px;
}

.sk-list-news-item-more::after {
  content: '';
  position: absolute;
  background: currentcolor;
  width: 2%;
  height: 1px;
  bottom: 0;
  left: 0;
  top: 0;
  z-index: 1;
  height: 100%;
  transition: all 0.5s linear;
  -webkit-transition: all 0.4s linear;
  background: var(--main);
}

.sk-list-news-item:hover .sk-list-news-item-more::after {
  background: var(--main);
  width: 100%;
}

.sk-list-news-item:hover .sk-list-news-item-more {
  color: var(--white);
}

.sk-list-news-item:hover .sk-list-news-item-title a{
  color: var(--main);
}

/* right start */
.sk-content-left-box {
  margin-bottom: 30px;
  padding: 20px;
  position: relative;
  background: var(--bgadv);
}

.sk-content-left-box-title {
  padding-left: 40px;
  font-size: 20px;
  text-transform: uppercase;
  line-height: 1;
  margin-bottom: 25px;
  position: relative;
  padding-top: 0;
  color: var(--main);
}

.sk-content-left-box-title::before,
.sk-content-left-box-title::after {
  content: "";
  height: 5px;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  background-color: var(--greener);
}

.sk-content-left-box-title::before {
  border-radius: 5px;
  left: 0;
  width: 18px;
}

.sk-content-left-box-title::after {
  border-radius: 50%;
  left: 22px;
  width: 5px;
  background-color: var(--black);
}

.sk-content-left-search {
  width: 100%;
  position: relative;
}

.sk-content-left-search .sk-content-left-search-control {
  width: 100%;
  height: 55px;
  border: 1px solid var(--border);
  outline: none;
  padding: 5px 55px 5px 10px;
}

.sk-content-left-search .sk-content-left-search-btn {
  line-height: 42px;
  position: absolute;
  border-left: none;
  height: 40px;
  top: 7px;
  right: 7px;
  width: 40px;
  padding: 0;
  border: 0;
}

.sk-content-left-search .sk-content-left-search-btn .iconfont {
  font-size: 20px;
  color: var(--white);
}

.sk-content-left-box-nav {
  display: block;
}

.sk-content-left-box-nav .sk-expmenu-dt {
  padding-bottom: 8px;
  border-bottom: 1px dashed var(--grey);
  margin-bottom: 8px;
}

.sk-content-left-box-nav .sk-expmenu-dt a {
  font-size: 14px;
  line-height: 30px;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  font-weight: 400;
}

.sk-content-left-box-nav .sk-expmenu-dt .iconfont {
  width: 25px;
  height: 30px;
  color: var(--grey);
  font-size: 14px;
}

.sk-content-left-box-nav .sk-expmenu-dt:last-child {
  margin-bottom: 0;
}

.sk-content-left-news-item {
  margin-bottom: 15px;
}

.sk-content-left-news-item a {
  display: block;
}

.sk-content-left-news-item .sk-content-left-news-img {
  float: left;
  margin-right: 10px;
  border-radius: 8px;
  flex-shrink: 0;
  width: 70px;
  height: 70px;
  overflow: hidden;
  border: 1px solid var(--border);
}

.sk-content-left-news-item .sk-content-left-news-img img {
  display: block;
  width: 100%;
  height: 100%;
}

.sk-content-left-news-item .sk-content-left-news-info {
  display: block;
  width: calc(100% - 80px);
  float: left;
}

.sk-content-left-news-item .sk-content-left-news-info p {
  display: block;
  transition: all .8s;
  width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  position: relative;
  margin-bottom: 5px;
  line-height: 20px;
  font-size: 14px;
  color: var(--black);
}

.sk-content-left-news-item .sk-content-left-news-info span {
  font-size: 12px;
  color: var(--grey);
}

.sk-content-left-news-item .sk-content-left-news-info .iconfont {
  font-size: 12px;
}

.sk-content-left-news-item a:hover .sk-content-left-news-info p {
  color: var(--main);
}

.sk-content-left-news-item:last-child {
  margin-bottom: 0;
}

/* product list item */
.sk-product-item {
  margin-bottom: 25px;
  border: 1px solid var(--border);
  background-color: var(--white);
  padding-bottom: 20px;
  overflow: hidden;
  border-radius: 2px;
  transition: all .8s;
}

.sk-content-left-box-product .sk-product-item:last-child {
  margin-bottom: 0;
}

.sk-product-item .sk-product-img {
  transition: all .4s;
  position: relative;
  overflow: hidden;
}

.sk-product-item .sk-product-img img {
  width: 100%;
  height: auto;
  display: block;
}

.sk-product-item:hover .sk-product-img {
  border-color: var(--main);
}

.sk-product-item:hover .sk-product-img img {
  opacity: .9;
}

.sk-product-item .sk-product-title {
  margin-bottom: 6px;
  padding: 10px;
}

.sk-product-item .sk-product-title a {
  text-align: center;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  font-size: 16px;
  line-height: 22px;
  color: var(--black);
  transition: all .6s;
}

.sk-product-item:hover .sk-product-title a {
  color: var(--main);
}

.sk-product-item .sk-product-link {
  max-width: 80%;
  height: 40px;
  line-height: 40px;
  font-size: 12px;
  font-weight: 500;
  color: var(--black);
  border: 1px solid var(--grey);
  text-transform: uppercase;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  margin: auto;
  transition: all .6s;
  border-radius: 5px;
}

.sk-product-item .sk-product-link i {
  margin-left: 6px;
}

.sk-product-item:hover .sk-product-link {
  background-color: var(--main);
  border-color: var(--main);
  color: var(--white);
}

.sk-product-item:hover {
  border-color: var(--main);
}

/* product list */
.sk-content-page-content {
  padding: 60px 0;
  text-align: center;
  color: var(--grey);
  font-size: 16px;
  line-height: 30px;
}

/* product images start */
.product-view .product-image {
  position: relative;
  padding: 0px;
  border: 1px solid var(--border);
  background-color: var(--white);
}

.product-view .product-image img {
  position: relative;
  width: 100%;
  height: auto;
  display: block;
}

.product-view .image-additional {
  position: relative;
  width: 100%;
  margin: 12px 0;
}

.product-view .image-additional ul {
  position: relative;
  width: 90%;
  margin: 0 auto;
}

.product-view .image-additional li {
  position: relative;
  width: 100%;
  margin: 0 23px 0 0;
  padding: 1px;
}

.product-view .image-additional li img {
  position: relative;
  width: 100%;
  border: 1px solid var(--border);
  background-color: var(--grey);
  display: block;
}

.product-view .image-additional li a {
  position: relative;
  display: block;
  padding: 0 .18rem;
}

.product-view .image-additional li.current img {
  border-color: var(--main);
  outline: 0px solid var(--main);
  background-color: var(--white);
}

.product-view .image-additional li.single,
.product-view .image-additional img.popup {
  display: none;
}

.product-view .image-additional .owl-carousel .owl-nav .owl-prev,
.product-view .image-additional .owl-carousel .owl-nav .owl-next {
  position: absolute;
  margin: 0;
  padding: 0;
  display: block;
  width: 20px;
  height: 20px;
  border-radius: unset;
  border: 0;
  background-color: unset;
  text-align: center;
  line-height: 14px;
  color: var(--greener);
  font-size: 28px;
  top: 40%;
  z-index: 10;
}

.product-view .image-additional .owl-carousel .owl-nav .owl-prev {
  left: -25px;
}

.product-view .image-additional .owl-carousel .owl-nav .owl-next {
  right: -25px;
}

.product-view .image-additional .owl-carousel .owl-nav .owl-prev:hover,
.product-view .image-additional .owl-carousel .owl-nav .owl-next:hover {
  color: var(--main);
}

/* product images end */
.sk-products-title {
  font-size: 30px;
  margin-bottom: 15px;
  color: var(--black);
}

.sk-product-parameter {
  margin-bottom: 20px;
  border-top: 2px solid var(--main);
  border-bottom: 2px solid var(--main);
  padding: 15px 0;
}

.sk-product-parameter .sk-products-price {
  font-size: 24px;
  color: var(--main);
  line-height: 42px;
}

.sk-product-parameter .sk-product-meta-item {
  line-height: 30px;
  font-size: 16px;
}

.sk-product-summary .sk-pages-title {
  margin-bottom: 0px;
  font-size: 20px;
}

.sk-product-con {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 15px;
}

.sk-product-con .sk-product-con-link {
  background-color: var(--main);
  padding: 10px 25px;
  border-radius: 5px;
  margin-right: 20px;
  color: var(--white);
  font-size: 16px;
  text-transform: uppercase;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.sk-product-con .sk-product-con-link:hover {
  box-shadow: 0 3px 10px 1px rgba(1, 198, 60, 0.3);
}

.sk-product-con .sk-product-con-link i {
  margin-right: 6px;
  font-size: 16px;
}

.sk-advantages-box {
  padding-top: 2px;
}

.sk-advantages-box .sk-advantages-li {
  font-size: 14px;
  border-radius: 4px;
  background-color: var(--bgpro);
  margin-top: 8px;
  padding: 8px;
  line-height: 23px;
}

/* product show */
.sk-product-show {
  padding: 36px 0 20px;
}

.sk-product-tab {
  margin-bottom: 30px;
  background-color: var(--white);
  border: 1px solid var(--border);
}

.sk-product-tab-maincell {
  padding: 20px 15px;
}

.sk-product-tab-titcell {
  display: flex;
  justify-content: flex-start;
  padding: 10px;
  background-color: var(--bgadv);
}

.sk-product-tab-titcell .sk-product-tab-titcell-dost {
  font-size: 18px;
  line-height: 28px;
  margin-right: 10px;
  color: var(--black);
  cursor: pointer;
  transition: all .8s;
}

.sk-product-tab-titcell::before {
  content: "|";
  margin-right: 10px;
  color: var(--black);
  font-size: 18px;
  line-height: 28px;
}

.sk-product-tab-titcell .sk-product-tab-titcell-dost::after {
  content: "|";
  margin-left: 10px;
  color: var(--black);
}

.sk-product-tab-titcell .sk-product-tab-titcell-dost:hover,
.sk-product-tab-titcell .sk-product-tab-titcell-dost.on {
  color: var(--main);
}

.sk-product-inquiry {
  padding: 20px 0 40px 0;
}

/* product show */
.sk-related-list {
  padding-top: 40px;
}

.sk-related-list .sk-pages-title {
  margin-bottom: 20px;
}

/* banner start */
.sk-index-slide {
  position: relative;
  display: block;
}

.sk-index-slide .sk-index-slide-box {
  flex: 1;
  position: unset;
}

.sk-index-slide .sk-index-slide-box .owl-nav {
  position: absolute;
  left: 0;
  top: calc((100% - 48px) / 2);
  margin: auto;
  width: 100%;
  height: auto;
  z-index: 20;
}

.sk-index-slide .sk-index-slide-box .owl-nav .owl-prev,
.sk-index-slide .sk-index-slide-box .owl-nav .owl-next {
  margin: 0 auto;
  width: 48px;
  height: 48px;
  line-height: 48px;
  outline: none;
  position: absolute;
  left: 35px;
  opacity: .8;
  background-color: rgb(255, 255, 255, .3);
  border: 0;
  border-radius: 0;
  transition: all .8s;
  color: var(--white);
}

.sk-index-slide .sk-index-slide-box .owl-nav .owl-next {
  right: 35px;
  left: unset;
}

.sk-index-slide .owl-nav .owl-prev::after,
.sk-index-slide .owl-nav .owl-next::after {
  text-align: center;
  width: 100%;
  height: 100%;
  font-size: 30px;
  content: "\f104";
  font-family: 'FontAwesome';
}

.sk-index-slide .owl-nav .owl-next::after {
  content: "\f105";
}

.sk-index-slide .sk-index-slide-box .owl-nav .owl-prev span,
.sk-index-slide .sk-index-slide-box .owl-nav .owl-next span {
  display: none;
}

.sk-index-slide .sk-index-slide-box .owl-nav .owl-prev:hover,
.sk-index-slide .sk-index-slide-box .owl-nav .owl-next:hover {
  background-color: rgba(255, 255, 255, .8);
  opacity: 1;
  color: var(--black);
}

.sk-index-slide .sk-index-slide-box .owl-dots {
  position: absolute;
  z-index: 19;
  bottom: 15px;
  left: 0;
  right: 0;
  margin: auto;
  display: flex;
  justify-content: center;
  align-items: center;
}

.sk-index-slide .sk-index-slide-box .owl-dots .owl-dot {
  margin: 0 3px;
  border-radius: 50%;
  transition: all .6s;
  border: 1px solid transparent;
  overflow: hidden;
}

.sk-index-slide .sk-index-slide-box .owl-dots .owl-dot span {
  margin: 0;
  width: 8px;
  height: 8px;
  background-color: var(--white);
  margin: 4px;
}

.sk-index-slide .sk-index-slide-box .owl-dots .owl-dot.active,
.sk-index-slide .sk-index-slide-box .owl-dots .owl-dot:hover {
  border: 1px solid var(--main);
}

.sk-index-slide .sk-index-slide-box .owl-dots .owl-dot.active span,
.sk-index-slide .sk-index-slide-box .owl-dots .owl-dot:hover span {
  background-color: var(--main);
}

/* index title*/
.sk-index-title {
  margin-bottom: 25px;
}

.sk-index-title .sk-index-title-item {
  text-align: center;
  font-size: 36px;
  text-transform: uppercase;
  line-height: 48px;
}

.sk-index-title .sk-index-title-text {
  text-align: center;
  font-size: 14px;
  color: var(--grey);
  max-width: 768px;
  margin: auto;
  line-height: 25px;
  text-transform: capitalize;
  margin-top: 15px;
}

/* index product */
.sk-index-product {
  padding: 60px 0 40px;
}

/* index about */
.sk-index-company {
  padding: 60px 0;
  background-color: var(--bgadv);
}

.sk-index-company-left {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-direction: column;
  padding: 25px;
}

.sk-index-company--title {
  font-size: 36px;
  /* font-weight: 600; */
  margin-bottom: 10px;
}

.sk-index-company--title::after{
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background-color: var(--greener);
}

.sk-index-company-text {
  font-size: 16px;
  line-height: 30px;
  display: block;
  color: var(--black);
  margin-bottom: 20px;
}

.sk-index-company-link {
  display: block;
  padding: 10px 25px;
  border: 1px solid var(--greener);
  font-size: 14px;
  color: var(--white);
  text-transform: uppercase;
  background-color: var(--greener);
  border-radius: 2px;
}

.sk-index-company-link .iconfont {
  font-size: 15px;
  margin-left: 5px;
}

.sk-index-company-link:hover {
  background-color: var(--main);
  border-color: var(--main);
  color: var(--white);
}

.sk-index-company-img {
  width: 100%;
}

.sk-index-company-img img {
  display: block;
  width: 100%;
  height: auto;
}

/* honor start */
.sk-index-certificate {
  padding: 60px 0 0;
}

.sk-index-honor-box {
  position: relative;
}

.sk-index-honor-item {
  border: 1px solid var(--border);
  overflow: hidden;
}

.sk-index-honor-box .owl-nav {
  margin: 0;
}

.sk-index-honor-box .owl-nav .owl-prev,
.sk-index-honor-box .owl-nav .owl-next {
  transition: all .8s;
  background: var(--black) !important;
  margin: 0;
  width: 40px;
  height: 60px;
  line-height: 60px;
  border-radius: 5px;
  outline: none;
  position: absolute;
  top: calc((100% - 60px)/2);
}

.sk-index-honor-box .owl-nav .owl-prev {
  left: -45px;
}

.sk-index-honor-box .owl-nav .owl-next {
  right: -45px;
}

.sk-index-honor-box .owl-nav .owl-prev:hover,
.sk-index-honor-box .owl-nav .owl-next:hover {
  background: var(--main) !important;
}

.sk-index-honor-box .owl-nav .owl-prev::after,
.sk-index-honor-box .owl-nav .owl-next::after {
  text-align: center;
  width: 100%;
  height: 100%;
  font-size: 20px;
  color: var(--white);
  content: "\f104";
  font-family: 'FontAwesome';
}

.sk-index-honor-box .owl-nav .owl-next::after {
  content: "\f105";
}

.sk-index-honor-box .owl-nav .owl-prev span,
.sk-index-honor-box .owl-nav .owl-next span {
  display: none;
}

.sk-index-honor-box .owl-dots {
  padding-top: 10px;
}

.sk-index-honor-box .owl-dots .owl-dot {
  margin: 0 3px;
}

.sk-index-honor-box .owl-dots .owl-dot span {
  margin: 0;
  width: 12px;
  height: 12px;
}

.sk-index-honor-box .owl-dots .owl-dot.active span {
  background-color: var(--main);
}

/* case start */
.sk-index-partner {
  padding: 60px 0 0;
}

.sk-index-partner-main {
  display: block;
  width: 100%;
  margin: auto;
  overflow: hidden;
  padding: 0;
}

.sk-index-partner-item {
  margin: 0;
  float: left;
  display: block;
  width: 330px;
}

.sk-index-partner-item img {
  width: 100%;
  height: auto;
  display: block;
}

/* advantage */
.sk-index-advantage {
  padding: 60px 0 0;
}

.sk-index-advantage-item {
  display: flex;
  justify-content: space-between;
}

.sk-index-advantage-item .sk-index-advantage-item-img {
  width: 50%;
  display: block;
  overflow: hidden;
}

.sk-index-advantage-item .sk-index-advantage-item-img img {
  width: 100%;
  height: auto;
  display: block;
}

.sk-index-advantage-item .sk-index-advantage-item-info {
  width: 50%;
  background-color: var(--bgpro);
  padding: 60px 50px 0 80px;
  overflow: hidden;
  flex-shrink: 0;
}

.sk-index-advantage-item .sk-index-advantage-item-info h3 {
  font-size: 30px;
  font-weight: 600;
  color: var(--main);
  margin-bottom: 20px;
}

.sk-index-advantage-item .sk-index-advantage-item-info p {
  font-size: 18px;
  line-height: 32px;
  color: var(--black);
}

.sk-index-advantage-item .sk-index-advantage-item-info p i {
  font-size: 14px;
}

/* index blog start */
.sk-index-blog {
  padding: 60px 0;
}

.sk-index-blog-box {
  padding: 10px 0 0;
}

.sk-index-blog-box .owl-nav .owl-prev,
.sk-index-blog-box .owl-nav .owl-next {
  padding: 0;
  margin: 0 5px;
  border-radius: 0;
  width: 32px;
  height: 32px;
  line-height: 32px;
  text-align: center;
  color: var(--grey);
  cursor: pointer;
  opacity: 1;
}

.sk-index-blog-box .owl-nav .owl-prev span,
.sk-index-blog-box .owl-nav .owl-next span {
  display: none;
}

.sk-index-blog-box .owl-nav .owl-prev::after,
.sk-index-blog-box .owl-nav .owl-next::after {
  text-align: center;
  width: 100%;
  height: 100%;
  font-size: 22px;
  content: "\e64e";
  font-family: 'iconfont';
}

.sk-index-blog-box .owl-nav .owl-next {
  transform: scaleX(-1);
}

.sk-index-blog-box .owl-nav .owl-prev:hover,
.sk-index-blog-box .owl-nav .owl-next:hover {
  color: var(--main);
  background-color: transparent;
}

.sk-index-blog-box .owl-nav .owl-prev.disabled,
.sk-index-blog-box .owl-nav .owl-next.disabled {
  cursor: default;
}

/* index message */
.sk-index-msg {
  padding: 60px 0 80px;
  background-image: url(../images/index-msg-bg.jpg);
}

.sk-index-msg .sk-content-message-form {
  max-width: 1100px;
  margin: auto;
}

.sk-index-msg .sk-content-message-form .sk-content-message-form-submit {
  text-align: center;
  padding-top: 20px;
}

.sk-index-msg .sk-content-message-form .sk-content-message-form-button {
  background-color: var(--main);
  color: var(--white);
  padding: 0 60px;
}

.sk-index-msg .sk-content-message-form .sk-content-message-form-button:hover {
  background-color: var(--greener);
  color: var(--white);
  border-color: var(--greener);
}

@media screen and (max-width: 1360px) {
  .sk-main {
    width: 96%;
    max-width: 96%;
  }
  .sk-navigation-box .sk-navigation-link {
    padding: 0 12px;
  }

  .sk-index-company-left {
    padding: 0 15px;
  }

  .sk-index-company--title {
    margin-bottom: 0px;
  }

  .sk-index-company-text {
    line-height: 26px;
  }
  .sk-content-left-box {
    padding: 20px 15px;
  }

  .sk-index-honor-box .owl-nav .owl-prev {
    left: 0;
  }

  .sk-index-honor-box .owl-nav .owl-next {
    right: 0;
  }
}
@media screen and (max-width: 1200px) {
  .sk-navigation-box .sk-navigation-link {
    font-size: 14px;
    padding: 0 12px;
  }

  .sk-header-logo img {
    max-height: 60px;
  }

  .sk-navigation-box .sk-navigation-link .iconfont {
    padding-left: 3px;
  }

  .sk-product-item .sk-product-link {
    font-size: 14px;
    width: 90%;
  }
  .sk-index-advantage-item .sk-index-advantage-item-info {
    padding: 30px 5% 0;
  }

  .sk-list-news-item-title a {
    font-size: 18px;
    line-height: 26px;
  }

  .sk-list-news-item-desc {
    line-height: 22px;
  }

  .sk-list-news-item-more {
    font-size: 12px;
  }

  .sk-list-news-item-title {
    margin-bottom: 10px;
  }

  .sk-list-news-item-info {
    padding-left: 12px;
  }

  .sk-footer-box-title {
    font-size: 24px;
    margin-bottom: 15px;
  }

  .sk-content-left-box {
    padding: 20px 12px;
  }
}

@media screen and (max-width: 1024px) {
  .sk-index-product {
    padding: 40px 0;
  }
  .sk-index-company,
  .sk-index-certificate,
  .sk-index-partner,
  .sk-index-advantage,
  .sk-index-blog {
    padding: 40px 0;
  }

  .sk-index-company-left {
    max-width: 100%;
    padding: 20px 0px;
  }

  .sk-index-company-text {
    margin-bottom: 15px;
  }

  .sk-index-cate-item span {
    font-size: 16px;
  }

  .sk-content-about-img {
    float: unset;
    margin-bottom: 20px;
    padding: 0;
    width: 100%;
    max-width: 100%;
  }

  .sk-index-title .sk-index-title-item {
    font-size: 32px;
  }

  .sk-index-title .sk-index-title-text {
    font-size: 12px;
  }

  .sk-index-advantage-item {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    grid-template-rows: repeat(1, 1fr);
    margin-bottom: 25px;
  }

  .sk-index-advantage-item:first-child .sk-index-advantage-item-info {
    order: 2;
  }

  .sk-index-advantage-item .sk-index-advantage-item-img {
    width: 100%;
  }

  .sk-index-advantage-item .sk-index-advantage-item-info {
    padding: 20px;
    width: 100%;
  }
  
  .sk-content-main {
    padding: 50px 0;
  }
  .sk-product-summary {
    margin-top: 30px;
  }
  .sk-products-title {
    font-size: 24px;
  }

  .sk-content-show .sk-content-show-title {
    font-size: 24px;
  }
  .sk-content-contact .sk-content-contact-box {
    height: auto;
    padding-right: 0;
  }

  .sk-footer-box {
    padding: 40px 0;
  }

  .sk-footer-box-contact,
  .sk-footer-box-follow {
    padding: 15px;
  }

  .sk-footer-box-title {
    margin-bottom: 10px;
  }

  .sk-content-message {
    padding: 20px;
  }

  .sk-content-contact {
    margin-bottom: 50px;
  }

  .sk-content-page-box {
    box-shadow: unset;
    padding: 0;
  }
  .sk-index-company--title{ font-size: 24px; margin-bottom: 20px; }
}
  
@media screen and (max-width: 868px) {
  .sk-product-tab-titcell .sk-product-tab-titcell-dost {
    font-size: 14px;
  }

  .sk-index-advantage-item .sk-index-advantage-item-info h3 {
    font-size: 24px;
  }

  .sk-index-advantage-item .sk-index-advantage-item-info p {
    font-size: 16px;
  }
}
@media screen and (max-width: 768px) {
  .sk-display-pc {
    display: none !important;
  }

  .sk-display-mobile {
    display: block !important;
  }
  .sk-index-company, .sk-index-certificate, .sk-index-partner, .sk-index-advantage, .sk-index-blog{
    padding: 30px 0;
  }
  .sk-index-msg{
    padding: 60px 0;
  }
  .sk-content-main {
    padding: 40px 0;
  }
  .sk-content-contact {
    margin-bottom: 40px;
  }

  .sk-index-cate-item {
    width: 31%;
  }
  
  .sk-index-cate-item a {
    padding: 20px 10px;
  }

  .sk-index-company-text {
    margin-bottom: 20px;
  }

  .sk-index-company-img {
    height: auto;
  }

  .sk-index-company-img img {
    height: auto;
    width: 100%;
    display: block;
  }
  .sk-content-left {
    padding-top: 35px;
  }

  .sk-content-message {
    padding: 15px;
  }

  .sk-pages-title {
    margin-bottom: 25px;
  }

  .sk-index-title .sk-index-title-text {
    font-size: 12px;
    line-height: 23px;
  }
}

@media screen and (max-width: 576px) {

  .sk-index-slide .sk-index-slide-box .owl-nav .owl-prev,
  .sk-index-slide .sk-index-slide-box .owl-nav .owl-next {
    width: 32px;
    height: 32px;
    line-height: 32px;
  }

  .sk-index-cate-item {
    width: 48%;
    margin-bottom: 20px;
  }

  .sk-position-crumbs .sk-main {
    display: block;
  }
  .sk-breadcrumb-title{
    font-size: 24px;
  }

  .sk-position-crumbs a,
  .sk-position-crumbs i {
    font-size: 12px;
  }

  .sk-content-main {
    padding: 30px 0;
  }

  .sk-content-page-main {
    line-height: 25px;
  }

  .sk-pages-title {
    font-size: 24px;
  }

  .sk-content-show .sk-content-show-title {
    line-height: 30px;
  }

  .sk-content-contact {
    margin-bottom: 30px;
  }

  .sk-index-title .sk-index-title-item {
    font-size: 24px;
    line-height: 30px;
  }

  .sk-index-honor-box .owl-dots {
    padding-top: 0;
  }

  .sk-index-honor-box .owl-dots .owl-dot span {
    width: 8px;
    height: 8px;
  }

  .sk-footer-copyright-text {
    font-size: 12px;
    line-height: 25px;
  }
}