@charset "UTF-8";

* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
*:before,
*:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
:root {
  --theme-color: #1e80ff;
}
html, body, div, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6, pre, code, form, fieldset, legend, input, textarea, p, blockquote, th, td, form, input, select, button, textarea, header, footer, nav, section, figure, article {
  margin: 0;
  padding: 0
}
body {
	font-family: -apple-system, BlinkMacSystemFont, Arial, sans-serif;
  font-size: 14px;
  font-weight: 400;
	color: #333;
	background-color: #fff;
}
h1, h2, h3, h4, h5, h6 {
  font-size: 100%;
}
ul, ol {
  list-style-type: none;
}
a {
  color: #272e47;
  text-decoration: none;
}
a:hover {
  color: #000;
  text-decoration: none;
}
a:focus,
input:focus,
button:focus,
textarea:focus {
  outline: 0;
}


.clearfix:before,
.clearfix:after {
  display: table;
  content: " ";
}
.clearfix:after {
  clear: both;
}

.d-none {
  display: none;
}
.d-block {
  display: block;
}
.d-flex {
  display: flex;
}
.align-items-center {
  align-items: center;
}
.justify-content-center {
  justify-content: center;
}
.justify-content-between {
  justify-content: space-between;
}
.flex-col {
  flex-direction: column;
}
.flexcol {
  flex: 1;
}
.row-reverse {
  flex-direction: row-reverse;
}
.column-reverse {
  flex-direction: column-reverse;
}
.flex-wrap {
  flex-wrap: wrap;
}
.d-flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

.text-center {
  text-align: center;
}
.text-right {
  text-align: right;
}

.w-100 {
  width: 100%;
  height: auto;
}

.ellipsis {
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}

.animated {
  -webkit-transition: all .25s;
  -moz-transition: all .25s;
  -ms-transition: all .25s;
  -o-transition: all .25s;
  transition: all .25s
}
.animated img {
  transition: transform .3s;
}
.animated:hover img {
  transform: scale(1.1);
}

.figure {
  overflow: hidden;
}
.figure a {
  display: block;
}
.figure img {
  display: block;
  max-width: 100%;
  height: auto;
}
.cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.figure .cover {
  height: 100%;
}
.imgfont {
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
.shadow {
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, .05);
}

.container {
	width: 100%;
	max-width: 1230px;
  padding-left: 15px;
  padding-right: 15px;
	margin-left: auto;
	margin-right: auto;
}

.hidden-sm {
  display: none !important;
}
@media (min-width: 768px) {
  .visible-sm {
    display: none !important;
  }
  .hidden-sm {
    display: block !important;
  }
}
@media (min-width: 992px) {
  .d-md-flex {
    display: flex;
  }
}


/********************************** Header S ***********************************/
.header {
  position: relative;
  z-index: 999;
	background-color: #eef1f6;
}
.header .nav {
  display: none;
}
.header .nav a {
  font-size: 16px;
  color: #050f29;
}
.header .nav > li {
  position: relative;
  z-index: 100;
}

.header .lang {
  margin-left: auto;
}
.lang{
	
	margin-right:30px;
}
.header .panel .btn {
  padding: 10px;
}
.header .panel .btn .icon-menu,
body.open .header .panel .btn .icon-close {
  display: block;
}
.header .panel .btn .icon-close,
body.open .header .panel .btn .icon-menu {
  display: none;
}
.header .panel .btn-link {
  display: none;
}
@media (max-width: 767px) {
	
	 .chatbox {
    position: fixed;
    z-index: 1000;
    bottom: 98px;
    right: 6px;
    display: block;
    padding-top: 4px;
    padding-bottom: 4px;
    min-width: 66px;
    font-size: 12px;
    color: #272e47;
    background-color: #fff;
    border-radius: 4px;
    box-shadow: 0 4px 10px 0 rgba(47,83,134,.12);
  }
  .chatbox li {
    position: relative;
  }
  .chatbox li a {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 12px 4px;
  }
  .chatbox li .chatpop {
    position: absolute;
    top: 50%;
    right: 110%;
    display: none;
    min-width: 128px;
    background-color: #fff;
    border-radius: 4px;
    box-shadow: 0 4px 10px rgba(47, 83, 134, .12);
    transform: translateY(-50%);
  }
  .chatbox li:hover .chatpop {
    display: block;
  }
  .chatbox li .chatpop .bd {
    padding: 12px 16px;
    line-height: 26px;
  }
  .chatbox li .arrow {
    box-shadow: 3px 3px 7px rgba(0,0,0,.07);
    transform: translateX(-11px) rotate(-45deg);
  }
  
  
  .header .nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: none;
    height: 100vh;
    padding: 30px 20px;
    background-color: #eef1f6;
  }
  body.open .header .nav {
    display: block;
  }
  .header .nav > li a {
    display: block;
    padding-top: 14px;
    padding-bottom: 14px;
  }
  .header .nav > li .arrow {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 10;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
  }
  .header .nav > li.fold .arrow {
    transform: rotate(90deg);
  }
  .header .nav > li .sub-menu {
    display: none;
    padding-left: 1em;
  }
  .header .nav > li.fold .sub-menu {
    display: block;
  }
}
@media (min-width: 768px) {
  .header .nav {
    display: flex;
  }
  .header .nav > li {
    padding-left: 16px;
    padding-right: 16px;
  }
  .header .nav > li .arrow {
    display: none;
  }
  .header .nav > li > a {
    position: relative;
    display: inline-block;
    line-height: 52px;
  }
  .header .nav > li > a:after {
    position: absolute;
    left: 8px;
    right: 8px;
    display: none;
    height: 2px;
    content: '';
    background-color: #050f29;
    transition: all .3s;
  }
  .header .nav > li.active > a:after,
  .header .nav > li > a:hover:after {
    display: block;
  }
  .header .nav > li.active > a {
    font-weight: 700;
  }
  .header .nav .sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    display: none;
    min-width: 250px;
    padding-top: 4px;
  }
  .header .nav > li:hover .sub-menu {
    display: block;
  }
  .header .nav .sub-menu ul {
    background-color: #fff;
    box-shadow: 0 3px 6px -4px rgba(0,0,0,.12),0 6px 16px 0 rgba(0,0,0,.08),0 9px 28px 8px rgba(0,0,0,.05);
  }
  .header .nav .sub-menu li {
    padding-top: 4px;
    padding-bottom: 4px;
  }
  .header .nav .sub-menu li:last-child {
    margin-bottom: 0;
  }
  .header .nav .sub-menu li a {
    display: block;
    padding: 7px 16px;
    white-space: nowrap;
    line-height: 22px;
    letter-spacing: .5px;
    color: #172235;
  }
  .header .nav .sub-menu li a:hover {
    background-color: #f0f2f7;
  }
  .header .panel .btn {
    display: none;
  }
  .header .panel .btn-link {
    display: inline-block;
    padding: 7px 10px;
    color: #fff;
    background-color: #050f29;
  }
}
/********************************** Header E ***********************************/

/********************************** Footer S ***********************************/
.footer {
	color: #545a6e;
}
.footer a {
	color: inherit;
}
.footer .widgets {
  padding-top: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #00000029;
}
.footer .widget {
  margin-bottom: 15px;
}
.footer .widget .widget-title {
  margin-bottom: 10px;
	font-size: 20px;
  font-weight: 700;
}
.footer .widget .widget-info {
	line-height: 2;
}
.footer .widget .widget-nav li {
  line-height: 2;
}
.footer .widget .widget-nav li a:hover {
  color: #000;
}
.footer .sitecopy {
  padding-top: 10px;
  padding-bottom: 10px;
}
.footer .sitecopy .logo {
  display: none;
}


@media (min-width: 768px) {
  .footer .widgets {
    display: flex;
    padding-top: 75px;
    padding-bottom: 70px;
  }
  .footer .widget {
    flex: 1;
    text-align: center;
  }

  .chatbox {
    position: fixed;
    z-index: 1000;
    top: 198px;
    right: 16px;
    display: block;
    padding-top: 4px;
    padding-bottom: 4px;
    min-width: 66px;
    font-size: 12px;
    color: #272e47;
    background-color: #fff;
    border-radius: 4px;
    box-shadow: 0 4px 10px 0 rgba(47,83,134,.12);
  }
  .chatbox li {
    position: relative;
  }
  .chatbox li a {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 12px 4px;
  }
  .chatbox li .chatpop {
    position: absolute;
    top: 50%;
    right: 110%;
    display: none;
    min-width: 128px;
    background-color: #fff;
    border-radius: 4px;
    box-shadow: 0 4px 10px rgba(47, 83, 134, .12);
    transform: translateY(-50%);
  }
  .chatbox li:hover .chatpop {
    display: block;
  }
  .chatbox li .chatpop .bd {
    padding: 12px 16px;
    line-height: 26px;
  }
  .chatbox li .arrow {
    box-shadow: 3px 3px 7px rgba(0,0,0,.07);
    transform: translateX(-11px) rotate(-45deg);
  }
}
@media (min-width: 992px) {
  .footer .sitecopy {
    padding-top: 30px;
    padding-bottom: 30px;
  }
  .footer .sitecopy .logo {
    display: block;
  }
  
  
}




.backtop {
  position: fixed;
  right: 32px;
  bottom: 32px;
  display: none;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 8px 16px rgba(47, 83, 134, .12);
  border-radius: 32px;
  cursor: pointer;
}
.backtop.active {
  display: flex;
}

.pop-form {
  display: none;
  min-width: 320px;
  max-height: calc(100vh - 30px);
  padding: 10px;
  background-color: #fff;
  box-shadow: 0 8px 16px rgba(47, 83, 134, .1);
  border-radius: 4px;
  user-select: none;
}
.pop-form .pop-title {
  margin-bottom: 24px;
  line-height: 26px;
  font-size: 18px;
  font-weight: 500;
  color: #232d47;
}
.form .form-group {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}
.form .form-group label {
  min-width: 84px;
  padding-right: 5px;
  text-align: right;
}
.form .form-group .iptxt {
  flex: 1;
  padding: 6px 11px;
  line-height: 1.5;
  color: #232d47;
  background-color: #f4f6f7;
  border: none;
  border-radius: 2px;
}
.form .form-group .iptxt:focus {
  box-shadow: 0 0 0 2px rgba(76,106,255,.2);
}
.form .form-group .ipbtn {
  flex: 1;
  margin-left: 84px;
  padding: 8px 15px;
  color: #fff;
  background-color: #7591ff;
  border: none;
  border-radius: 2px;
  cursor: pointer;
}
.form .form-group-code {
  justify-content: space-between;
}
.form .form-group-code .iptxt {
  max-width: 100px;
  margin-right: auto;
}
@media (min-width: 768px) {
  .pop-form {
    padding: 24px;
  }
  
  
  
  
  
  
  
  
  
  
  
  
}
/********************************** Footer E ***********************************/

.banner-home {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 450px;
  padding-left: 20px;
  padding-right: 20px;
  background-size: cover;
}
@media (min-width: 992px) {
  .banner-home {
    height: 730px;
  }
  .banner-home .swiper-container {
    width: 700px;
  }
}


.banner-page {
  min-height: 500px;
}
#banner-aboutus {
  min-height: 600px;
}
.banner-product {
  min-height: 730px;
  background: url(../images/banner-product.jpg) center no-repeat;
  background-size: cover;
}

.single {
  min-height: 400px;
}

.section {
  padding-top: 20px;
}
.section-title {
  margin-bottom: 20px;
  text-align: center;
  font-size: 30px;
  font-weight: 600;
  color: #272e47;
}
.section-info {
  margin-bottom: 30px;
  font-size: 20px;
}
.section-btn {
  display: inline-block;
  padding: 8px 15px;
  color: #fff;
  background-color: #272e47;
  border-radius: 4px;
}
.section-btn:hover {
  color: #fff;
}
#section-contact .info {
  padding-left: 10px;
}
#section-contact .info h4 {
  margin-bottom: 10px;
  font-weight: 18px;
  color: #3e5ed0;
}
#section-contact .info p {
  line-height: 2;
}
#section-contact .info .qrcode {
  display: block;
  max-width: 150px;
  margin-top: 10px;
}
@media (min-width: 768px) {
  .section {
    padding-top: 40px;
  }
  .section-title {
    margin-bottom: 40px;
    font-size: 48px;
  }
}

.list {
  padding-top: 30px;
}
.cat-title {
  margin-bottom: 30px;
  text-align: center;
  font-size: 30px;
  font-weight: 700;
  color: #272e47;
}

.grid-list li {
  width: 100%;
  margin-bottom: 30px;
}
.grid-list li .figure {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 68%;
  overflow: hidden;
}
.grid-list.product-list li .figure {
  padding-bottom: 100%;
}
.grid-list li .figure a {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
}
.grid-list li .text {
  padding-top: 15px;
}
.grid-list li .text a {
  font-size: 18px;
  font-weight: 700;
  color: #272e47;
}
.grid-list li .text p {
  margin-top: 15px;
}

.newslist li {
  padding: 10px;
  margin-bottom: 10px;
  border: 1px solid #e1e3e8;
  border-radius: 5px;
}
.newslist li .thumbnail {
  width: 25%;
}
.newslist li .figure {
  position: relative;
  width: 100%;
  height: 0;
  overflow: hidden;
  padding-bottom: 65%;
}
.newslist li .figure a {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
}
.newslist li .text {
  flex: 1;
  padding-left: 10px;
}
.newslist li .text a {
  font-size: 16px;
  font-weight: 500;
}
.newslist li .text p {
  padding-top: 16px;
  line-height: 1.5;
}
.newslist li .text span {
  display: block;
  margin-top: auto;
  color: #747a8c;
}
@media (min-width: 768px) {
  .list {
    padding-top: 70px;
  }
  .cat-title {
    font-size: 48px;
  }
  .grid-list li {
    width: 33.33%;
    padding-left: 15px;
    padding-right: 15px;
  }
  .newslist li {
    padding: 30px;
    margin-bottom: 30px;
    border-radius: 12px;
  }
  .newslist li .thumbnail {
    width: 288px;
  }
  .newslist li .text {
    padding-top: 16px;
    padding-bottom: 16px;
    padding-left: 40px;
  }
  .newslist li .text a {
    font-size: 18px;
    font-weight: 700;
  }

  #section-product .grid-list li {
    width: 25%;
  }
}

.pagination {
  padding-top: 30px;
  padding-bottom: 20px;
  gap: 3px;
}
.pagination a {
  display: block;
  padding: 7px 10px;
  border: 1px solid #eee;
}
.pagination .page-num-current {
  color: #fff;
  background-color: #050f29;
  border-color: #050f29;
}


.post .post-title {
  padding-top: 30px;
  text-align: center;
}
.post .post-title p {
  font-size: 20px;
  color: #545a6e;
}
.post .post-title h1 {
  padding: 15px 20px;
  line-height: 1.2;
  font-size: 24px;
  font-weight: 700;
  color: #272e47;
}
.post .post-body {
  overflow: hidden;
  font-size: 16px;
  line-height: 1.7;
}
.post .post-body p {
  margin-bottom: 15px;
}
.post .post-body img {
  max-width: 100%;
  height: auto;
}
@media (min-width: 768px) {
  .blog {
    padding-top: 85px;
    background: url(../images/banner-blog.jpg) center top no-repeat;
    background-size: contain;
  }
  .post {
    padding: 40px;
    background-color: #fff;
    border-radius: 6px;
    box-shadow: 0 4px 12.8px 0 rgba(0, 0, 0, .2);
  }
  .post .post-title h1 {
    padding-bottom: 70px;
    font-size: 48px;
  }
}
@media (min-width: 1300px) {
  .post {
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 80px;
    padding-right: 80px;
  }
}

#section-about .figure {
  padding-top: 25px;
}
#section-about .figure img {
  margin-left: auto;
  margin-right: auto;
}

.logo img.d-block{
	
	
	width: 70%;
}
