﻿@charset "utf-8";

/*
	CSS Document 
*/
.sk-display-pc {
  display: block !important;
}

.sk-display-mobile {
  display: none !important;
}

/* header start */
.sk-header {
  display: block;
	width: 100%;
	transition: all .6s;
	position: fixed;
	left: 0;
	top: 0;
	z-index: 999;
	background-color: rgba(255, 255, 255, .8);
}

.sk-header-logo {
  position: relative;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-shrink: 0;
  padding: 12px 0;
}

.sk-header-logo a {
	max-width: 230px;
  display: block;
  height: 60px;
}

.sk-header-logo img {
  width: 100%;
	display: block;
	height: 100%;
	object-fit: contain;
}

.sk-header-right{ display: flex; justify-content: flex-end; align-items: center; gap: 20px; }

.sk-header-search-item {
  cursor: pointer;
  flex-shrink: 0;
  text-align: center;
  transition: all .8s;
  color: var(--black);
  display: flex;
  justify-content: center;
  align-items: center;
	gap: 6px;
}

.sk-header-search-item .iconfont {
  display: block;
  font-size: 18px;
	font-weight: 700;
}

.sk-header-search-item:hover{ color: var(--red); }

/* search start */
.sk-header-search {
  position: fixed;
  top: 0px;
  left: 0;
  width: 100%;
  z-index: 1008;
  display: none;
	box-shadow: 0px 0px 10px rgba(0,0,0,0.1);
}

.sk-header-search-box {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
	background-color: var(--green);
	padding: 50px 10px;
}

.sk-header-search-form{
	position: relative;
	max-width: 1200px;
	width: 100%;
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 30px;
}

.sk-header-search-box form {
  flex: 1;
  display: block;
  position: relative;
}

.sk-search-group {
  width: 100%;
  display: block;
  position: relative;
}

.sk-search-group .sk-search-control {
  display: block;
  border: 2px solid var(--red);
  background-color: var(--white);
  outline: none;
  padding: 0 80px 0 20px;
  height: 54px;
  position: relative;
  font-size: 14px;
  width: 100%;
  z-index: 9;
  transition: all .6s;
  color: var(--black);
	border-radius: 50px;
}

.sk-search-group .sk-search-btn {
  border: 0px solid var(--black);
  background: transparent;
  width: 52px;
  height: 52px;
  color: var(--black);
  position: absolute;
  right: 1px;
  top: 1px;
  z-index: 10;
  transition: all .6s;
}

.sk-search-group .sk-search-btn span {
	font-size: 24px;
	font-weight: 500;
}

.sk-search-group .sk-search-btn:hover {
  color: var(--red);
}

.sk-search-group .sk-search-control:focus {
  border-color: var(--red);
}

.sk-header-search-close {
  width: 36px;
  height: 36px;
  line-height: 36px;
  display: block;
  cursor: pointer;
  color: var(--white);
  transition: all .8s;
	flex-shrink: 0;
}

.sk-header-search-close i {
  display: block;
  text-align: center;
  font-size: 30px;
  font-weight: 600;
}

.sk-header-search-close:hover {
  color: var(--red);
  transform: rotate(360deg);
}

@media screen and (max-width: 868px) {
	.sk-header-search-box{ padding: 30px 12px; }
}

@media screen and (max-width: 640px) {
	.sk-header-search-form{ flex-direction: column; align-items: flex-end; }
	.sk-header-search-box form{ width: 100%; }
}

.sk-header-language{ display: block; flex-shrink: 0; }
.sk-header-language-link{ display: flex; justify-content: center; align-items: center; gap: 5px; }
.sk-header-language-flag{ width: 21px; height: 21px; border-radius: 50%; overflow: hidden; }
.sk-header-language-flag img{ display: block; width: 100%; height: 100%; object-fit: cover; }
.sk-header-language-link span{ font-size: 16px; line-height: 21px; text-transform: capitalize; font-family: var(--fonts-two); display: block; font-weight: 400; color: var(--black); transition: all .8s; }
.sk-header-language-link:hover span{ color: var(--red); }

.sk-gettouch{ flex-shrink: 0; }
.sk-gettouch .sk-gettouch-header-btn{ transition: all .8s; display: flex; justify-content: center; align-items: center; gap: 5px; line-height: 23px; padding: 7px 15px; border-radius: 30px; color: var(--white); background-color: var(--green); }
.sk-gettouch .sk-gettouch-header-btn i{ font-size: 12px; }
.sk-gettouch .sk-gettouch-header-btn span{  font-size: 14px; font-weight: 400; font-family: var(--fonts-two); }
.sk-gettouch .sk-gettouch-header-btn:hover { color: var(--white); background-color: var(--red); }

.sk-header-box {
  position: relative;
} 

.sk-header-box .sk-navigation{
  display: flex;
  justify-content: space-between;
  position: relative;
  z-index: 65;
	gap: 30px;
}

/* navigation */
.sk-navigation-box {
  display: flex;
  justify-content: center;
  flex: 1;
  gap: 15px;
	transition: all .8s;
}

.sk-navigation-box .sk-navigation-li {
  position: relative;
}

.sk-navigation-box .sk-navigation-link {
  font-weight: 400;
  font-size: 18px;
	text-transform: capitalize;
  color: var(--grey);
  display: flex;
  justify-content: center;
	align-items: center;
  height: 100%;
  transition: all 500ms ease-in-out;
	position: relative;
	gap: 2px;
	padding: 0 8px;
}
.sk-navigation-box .sk-navigation-link i{ font-size: 14px; }

.sk-navigation-box .sk-navigation-sub {
  display: block;
  opacity: 0;
  position: absolute;
  top: 100%;
  left: 0px;
  z-index: 1000;
	padding: 5px 0;
  background-color: var(--white);
	border-top: 3px solid var(--red);
	box-shadow: 0 0 20px -1px rgb(0 0 0 / 5%);
  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;
	border-bottom-left-radius: 10px;
	border-bottom-right-radius: 10px;
}

.sk-navigation-box .sk-navigation-sub .sk-navigation-sub-li {
  position: relative;
  display: block;
}

.sk-navigation-box .sk-navigation-sub .sk-navigation-sub-link {
  padding: 8px 10px;
  color: var(--grey);
  font-weight: 400;
  font-size: 14px;
	line-height: 23px;
  display: flex;
  justify-content: space-between;
  align-items: center;
	transition: all .6s;
}

.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;
  background-color: var(--white);
	box-shadow: 0 0 20px -1px rgb(0 0 0 / 5%);
  z-index: 999;
  visibility: hidden;
  width: 250px;
  overflow-y: auto;
	border-top: 3px solid var(--red);
	padding: 5px 0;
	border-bottom-left-radius: 10px;
	border-bottom-right-radius: 10px;
}

.sk-navigation-child .sk-navigation-child-li {
  display: block;
  padding: 0;
  position: relative;
}

.sk-navigation-child .sk-navigation-child-link {
  color: var(--grey);
  padding: 8px 10px;
  text-transform: capitalize;
	font-weight: 400;
  font-size: 14px;
	line-height: 23px;
  overflow: hidden;
  display: block;
  transition: all .6s;
}

.sk-navigation-box .sk-navigation-link.active,
.sk-navigation-box .sk-navigation-li .sk-navigation-link:hover{
  color: var(--red) !important;
}

.sk-navigation-child .sk-navigation-child-link:hover,
.sk-navigation-box .sk-navigation-sub .sk-navigation-sub-link:hover{
  color: var(--red);
	background-color: var(--bgpro);
}

.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:hover{
	background-color: var(--white);
}

.sk-header-fixed {
  background-color: 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%);
}

/* header end */

/* mobile nav */
.sk-mobile-header {
  display: none;
}

.sk-mobile-header-box {
	display: flex;
  justify-content: space-between;
  align-items: center;
	width: 100%;
  padding: 0 10px;
	box-shadow: 0 0 20px -1px rgb(0 0 0 / 10%);
	z-index: 103;
	position: fixed;
	top: 0;
	left: 0;
	transition: all .6s;
	background-color: rgb(255, 255, 255, .8);
}

.sk-mobile-header-logo {
  display: block;
  padding: 12px 0;
}

.sk-mobile-header-logo a{ display: block; max-width: 180px; }

.sk-mobile-header-logo img {
	max-width: 100%;
	max-height: 45px;
	display: block;
}
.sk-mobile-header-right {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 15px;
}

.sk-mobile-header-right .sk-header-search-item,.sk-mobile-header-right .sk-header-language-link span{ color: var(--black); }

.sk-mobile-caidan {
  display: block;
  width: 36px;
  height: 36px;
  line-height: 36px;
  overflow: hidden;
  color: var(--black);
  outline: none;
  cursor: pointer;
  transition: all .8s;
}

.sk-mobile-caidan .iconfont {
  display: block;
  width: 100%;
  height: 100%;
  text-align: center;
  font-size: 30px;
  font-weight: 400;
}

.sk-mobile-caidan:hover{ color: var(--red); }

.sk-header-mobile-top{
	padding: 10px;
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.sk-header-mobile-top .sk-mobile-header-logo{ padding: 0; }
.sk-header-colse {
  display: block;
  width: 36px;
  height: 36px;
  background-color: var(--black);
  color: var(--white);
  cursor: pointer;
}

.sk-header-colse .iconfont {
  display: block;
  text-align: center;
  line-height: 36px;
	font-size: 20px;
}

.sk-mobile-nav {
  position: fixed;
  width: 95%;
  height: 100vh;
  top: 0px;
  right: -120%;
  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.6s ease 0s;
}

.sk-mobile-nav-box {
  overflow-y: auto;
  max-height: calc(100% - 260px);
  margin-top: 10px;
	border-top: 2px solid var(--red);
}

.sk-mobile-nav-box .sk-mobile-nav-li {
  display: block;
}

.sk-mobile-nav-box .sk-mobile-nav-link {
  padding: 0 15px;
  line-height: 42px;
  font-size: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-transform: capitalize;
  border-bottom: 1px solid var(--border);
	font-family: var(--fonts-two);
  font-weight: 400;
}
.sk-mobile-nav-box .sk-mobile-nav-link a{ flex: 1; transition: all .6s; color: var(--black); }
.sk-mobile-nav-box .sk-mobile-nav-sub{ display: none; }
.sk-mobile-nav-box .sk-mobile-nav-sub-li {
  display: block;
}

.sk-mobile-nav-box .sk-mobile-nav-sub-link {
  padding: 7px 10px 7px 12px;
  line-height: 30px;
  font-size: 14px;
  text-transform: capitalize;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--border);
  font-weight: 400;
}
.sk-mobile-nav-box .sk-mobile-nav-sub-link a,.sk-mobile-nav-box .sk-mobile-nav-child-link a{ flex: 1; display: flex; justify-content: flex-start; line-height: 25px; transition: all .6s; color: var(--grey); }
.sk-mobile-nav-box .sk-mobile-nav-child{ display: none; }
.sk-mobile-nav-box .sk-mobile-nav-child-li {
  display: block;
}

.sk-mobile-nav-box .sk-mobile-nav-child-link {
  color: var(--grey);
  padding: 7px 12px 7px 25px;
  line-height: 30px;
  font-size: 14px;
  text-transform: capitalize;
  border-bottom: 1px dashed var(--border);
  font-weight: 400;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.sk-mobile-nav-box .sk-mobile-nav-child-link{ transition: all .6s; }

.sk-mobile-nav-box .sk-mobile-nav-link.active a,
.sk-mobile-nav-box .sk-mobile-nav-link:hover a,
.sk-mobile-nav-box .sk-mobile-nav-sub-link:hover a,
.sk-mobile-nav-box .sk-mobile-nav-child-link:hover a {
  color: var(--red);
}

.sk-mobile-nav-down{ width: 36px; text-align: center; }

.sk-mobile-block {
  opacity: 1;
  visibility: visible;
  transform: scaleX(1);
  right: 0;
}

.sk-mobile-header-box:hover { background-color: var(--white); }

.sk-mobile-fixed {
  background-color: var(--white);
  box-shadow: 0 0 20px -1px rgb(0 0 0 / 20%);
  -ms-box-shadow: 0 0 20px -1px rgba(0, 0, 0, .2);
  -moz-box-shadow: 0 0 20px -1px rgba(0, 0, 0, .2);
  -o-box-shadow: 0 0 20px -1px rgba(0, 0, 0, .2);
  -webkit-box-shadow: 0 0 20px -1px rgb(0 0 0 / 20%);
}

@media screen and (max-width: 1440px) {
	.sk-header-box .sk-navigation{ gap: 20px; }
  .sk-navigation-box{ gap: 5px; }
}
@media screen and (max-width: 1360px) {
	.sk-header-right{ gap: 10px; }
	.sk-navigation-box .sk-navigation-link{ font-size: 16px; }
}
@media screen and (max-width: 1200px) {
	.sk-gettouch{ display: none; }
	.sk-navigation-box .sk-navigation-link{ font-size: 14px; }
}
@media screen and (max-width: 1024px) {
  .sk-header {
    display: none;
  }
  .sk-mobile-header {
    display: block;
  }
}
@media screen and (max-width: 640px) {
  .sk-mobile-header-right{ gap: 12px; }
}
/* header end */

/* footer */
.sk-footer {
  background-color: var(--bgpro);
	border-top: 5px solid var(--red);
}

.sk-footer-box {
  padding: 60px 0 50px;
}

.sk-footer-box-logo{ display: block; margin-bottom: 30px; max-width: 300px; }
.sk-footer-box-logo img{ max-width: 100%; max-height: 60px; display: block; }

.sk-follow{ display: flex; justify-content: flex-end; flex-direction: column; align-items: flex-start; margin-top: 20px; }
.sk-follow-title{ font-size: 24px; line-height: 25px; color: var(--black); font-family: var(--fonts-two); font-weight: 500; margin-bottom: 15px; }
.sk-follow-box{ display: flex; justify-content: flex-start; flex-wrap: wrap; gap: 10px; }
.sk-follow-box a{ width: 30px; height: 30px; overflow: hidden; display: block; transition: all .6s; flex-shrink: 0; }
.sk-follow-box img{ width: 100%; height: auto; display: block; }
.sk-follow-box a:hover{ transform: rotate(20deg); }

.sk-footer-box-text{ font-size: 14px; font-weight: 400; color: var(--black-grey); line-height: 23px; padding-right: 30px; }

.sk-footer-box-title{
  color: var(--black);
  font-size: 24px;
	font-family: var(--fonts-two);
  line-height: 25px;
  font-weight: 500;
  margin-bottom: 15px;
  position: relative;
	text-transform: capitalize;
}

.sk-footer-box-contact,.sk-footer-box-nav{
  display: block;
}

.sk-footer-box-contact-item {
  display: flex;
  justify-content: flex-start;
  margin-block-end: 8px;
	gap: 3px;
}

.sk-footer-box-contact-item p{ font-size: 14px; line-height: 24px; color: var(--black-grey); font-family: var(--fonts-two); font-weight: 400; gap: 5px; display: flex; justify-content: flex-start; align-items: flex-start; }

.sk-footer-box-contact-item i{
  display: block;
  flex-shrink: 0;
  width: 20px;
  line-height: 25px;
  color: var(--black-grey);
  font-size: 18px;
}

.sk-footer-box-contact-info{ padding-left: 5px; display: flex; justify-content: flex-start; gap: 5px; }

.sk-footer-box-contact-info span,
.sk-footer-box-contact-info a {
  font-size: 14px;
  color: var(--black-grey);
  line-height: 23px;
  font-weight: 400;
}

.sk-footer-box-contact-info a:hover {
  color: var(--red);
}

.sk-footer-box-nav{ display: block; }

.sk-footer-box-nav-box li {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  margin-bottom: 5px;
  transition: 0.5s all ease;
}

.sk-footer-box-nav-box li span a{
  font-size: 14px;
	line-height: 23px;
  color: var(--black-grey);
  transition: all .8s;
  font-weight: 400;
}

.sk-footer-box-nav-box li:hover a {
  color: var(--red);
}
.sk-footer-box-nav-box li:hover{ padding-left: 10px; }

/* copyright */
.sk-footer-copyright {
  display: block;
	padding: 18px 0;
	background-color: var(--green);
}
.sk-footer-copyright-text{ display: flex; justify-content: center; gap: 15px; }

.sk-footer-copyright-text-begin{
	color: var(--white);
  font-size: 14px;
  line-height: 24px;
  text-align: center;
	font-weight: 400;
}
.sk-footer-copyright-text-nav{ display: flex; justify-content: center; gap: 15px; }
.sk-footer-copyright-text-nav a {
  color: var(--white);
  transition: all .6s;
	font-size: 14px;
	line-height: 24px;
	font-weight: 400;
}

.sk-footer-copyright-text a:hover {
  color: var(--red);
}

/* 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(--red);
	transition: all .6s;
}
.sk-meau-top i{ font-size: 24px; }
.sk-meau-top:hover{ background: var(--green); }

@media screen and (max-width: 1200px) {
	.sk-footer-box-nav,.sk-footer-box-contact{ margin-bottom: 30px; padding-right: 0; }
	.sk-footer-box-faceback{ margin-bottom: 30px; }
}

@media screen and (max-width: 1024px) {
	.sk-footer-box{ padding: 50px 0 40px; }
}

@media screen and (max-width: 868px) {
	.sk-footer-box{ padding: 40px 0 30px; }
	.sk-footer-copyright{ padding: 15px 0; }
	.sk-footer-copyright-text{ flex-direction: column; gap: 10px; }
	.sk-footer-box-text{ padding-right: 0; }
}

/* 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(--green);
}
.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(--green);
}

/* 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 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(--red);
}

.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(--red);
  background: unset;
  color: var(--red);
  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(--red);
}

/* 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(--red);
}

/* 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(--red);
  position: relative;
  padding-bottom: 5px;
  text-transform: uppercase;
  display: inline-block;
  border: 1px solid var(--red);
  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(--red);
}

.sk-list-news-item:hover .sk-list-news-item-more::after {
  background: var(--red);
  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(--red);
}

/* 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(--red);
}

.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(--green);
}

.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(--red);
}

.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(--red);
}

.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(--red);
}

.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(--red);
  border-color: var(--red);
  color: var(--white);
}

.sk-product-item:hover {
  border-color: var(--red);
}

/* 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(--red);
  outline: 0px solid var(--red);
  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(--green);
  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(--red);
}

/* 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(--red);
  border-bottom: 2px solid var(--red);
  padding: 15px 0;
}

.sk-product-parameter .sk-products-price {
  font-size: 24px;
  color: var(--red);
  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(--red);
  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(--red);
}

.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(--red);
}

.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(--red);
}

/* 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(--green);
}

.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(--green);
  font-size: 14px;
  color: var(--white);
  text-transform: uppercase;
  background-color: var(--green);
  border-radius: 2px;
}

.sk-index-company-link .iconfont {
  font-size: 15px;
  margin-left: 5px;
}

.sk-index-company-link:hover {
  background-color: var(--red);
  border-color: var(--red);
  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(--red) !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(--red);
}

/* 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(--red);
  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(--red);
  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(--red);
  color: var(--white);
  padding: 0 60px;
}

.sk-index-msg .sk-content-message-form .sk-content-message-form-button:hover {
  background-color: var(--green);
  color: var(--white);
  border-color: var(--green);
}

@media screen and (max-width: 1360px) {
  .sk-main {
    width: 96%;
    max-width: 96%;
  }

  .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-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;
  }
}